blob: 7b1e2abf0cea051016392976eb8c354d6f399759 [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
110/* length of time before we decide the hardware is borked,
111 * and dev->tx_timeout() should be called to fix the problem
112 */
Joe Perches63c3a662011-04-26 08:12:10 +0000113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define TG3_TX_TIMEOUT (5 * HZ)
115
116/* hardware minimum and maximum for a single frame's data payload */
117#define TG3_MIN_MTU 60
118#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000119 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/* These numbers seem to be hard coded in the NIC firmware somehow.
122 * You can't change the ring sizes, but you can change where you place
123 * them in the NIC onboard memory.
124 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000125#define TG3_RX_STD_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000126 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000127 TG3_RX_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000129#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000130 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000131 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define TG3_DEF_RX_JUMBO_RING_PENDING 100
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000133#define TG3_RSS_INDIR_TBL_SIZE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135/* Do not place this n-ring entries value into the tp struct itself,
136 * we really want to expose these constants to GCC so that modulo et
137 * al. operations are done with shifts and masks instead of with
138 * hw multiply/modulo instructions. Another solution would be to
139 * replace things like '% foo' with '& (foo - 1)'.
140 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142#define TG3_TX_RING_SIZE 512
143#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
144
Matt Carlson2c49a442010-09-30 10:34:35 +0000145#define TG3_RX_STD_RING_BYTES(tp) \
146 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
147#define TG3_RX_JMB_RING_BYTES(tp) \
148 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
149#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000150 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
152 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
154
Matt Carlson287be122009-08-28 13:58:46 +0000155#define TG3_DMA_BYTE_ENAB 64
156
157#define TG3_RX_STD_DMA_SZ 1536
158#define TG3_RX_JMB_DMA_SZ 9046
159
160#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
161
162#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
163#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Matt Carlson2c49a442010-09-30 10:34:35 +0000165#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
166 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000167
Matt Carlson2c49a442010-09-30 10:34:35 +0000168#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
169 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000170
Matt Carlsond2757fc2010-04-12 06:58:27 +0000171/* Due to a hardware bug, the 5701 can only DMA to memory addresses
172 * that are at least dword aligned when used in PCIX mode. The driver
173 * works around this bug by double copying the packet. This workaround
174 * is built into the normal double copy length check for efficiency.
175 *
176 * However, the double copy is only necessary on those architectures
177 * where unaligned memory accesses are inefficient. For those architectures
178 * where unaligned memory accesses incur little penalty, we can reintegrate
179 * the 5701 in the normal rx path. Doing so saves a device structure
180 * dereference by hardcoding the double copy threshold in place.
181 */
182#define TG3_RX_COPY_THRESHOLD 256
183#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
184 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
185#else
186 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
187#endif
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000190#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Matt Carlsonad829262008-11-21 17:16:16 -0800192#define TG3_RAW_IP_ALIGN 2
193
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000194#define TG3_FW_UPDATE_TIMEOUT_SEC 5
195
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800196#define FIRMWARE_TG3 "tigon/tg3.bin"
197#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
198#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static char version[] __devinitdata =
Joe Perches05dbe002010-02-17 19:44:19 +0000201 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
204MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
205MODULE_LICENSE("GPL");
206MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800207MODULE_FIRMWARE(FIRMWARE_TG3);
208MODULE_FIRMWARE(FIRMWARE_TG3TSO);
209MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
212module_param(tg3_debug, int, 0);
213MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
214
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000215static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700216 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
217 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
218 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
219 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
220 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
221 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
222 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
223 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
224 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
225 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
226 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
227 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
228 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
229 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
230 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
231 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700257 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
258 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
260 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
261 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700264 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
265 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
272 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000278 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
286 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Matt Carlson302b5002010-06-05 17:24:38 +0000287 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000288 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700289 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
290 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
291 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
292 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
293 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
294 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
295 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
Meelis Roos1dcb14d2011-05-25 05:43:47 +0000296 {PCI_DEVICE(0x10cf, 0x11a2)}, /* Fujitsu 1000base-SX with BCM5703SKHB */
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700297 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298};
299
300MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
301
Andreas Mohr50da8592006-08-14 23:54:30 -0700302static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000304} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 { "rx_octets" },
306 { "rx_fragments" },
307 { "rx_ucast_packets" },
308 { "rx_mcast_packets" },
309 { "rx_bcast_packets" },
310 { "rx_fcs_errors" },
311 { "rx_align_errors" },
312 { "rx_xon_pause_rcvd" },
313 { "rx_xoff_pause_rcvd" },
314 { "rx_mac_ctrl_rcvd" },
315 { "rx_xoff_entered" },
316 { "rx_frame_too_long_errors" },
317 { "rx_jabbers" },
318 { "rx_undersize_packets" },
319 { "rx_in_length_errors" },
320 { "rx_out_length_errors" },
321 { "rx_64_or_less_octet_packets" },
322 { "rx_65_to_127_octet_packets" },
323 { "rx_128_to_255_octet_packets" },
324 { "rx_256_to_511_octet_packets" },
325 { "rx_512_to_1023_octet_packets" },
326 { "rx_1024_to_1522_octet_packets" },
327 { "rx_1523_to_2047_octet_packets" },
328 { "rx_2048_to_4095_octet_packets" },
329 { "rx_4096_to_8191_octet_packets" },
330 { "rx_8192_to_9022_octet_packets" },
331
332 { "tx_octets" },
333 { "tx_collisions" },
334
335 { "tx_xon_sent" },
336 { "tx_xoff_sent" },
337 { "tx_flow_control" },
338 { "tx_mac_errors" },
339 { "tx_single_collisions" },
340 { "tx_mult_collisions" },
341 { "tx_deferred" },
342 { "tx_excessive_collisions" },
343 { "tx_late_collisions" },
344 { "tx_collide_2times" },
345 { "tx_collide_3times" },
346 { "tx_collide_4times" },
347 { "tx_collide_5times" },
348 { "tx_collide_6times" },
349 { "tx_collide_7times" },
350 { "tx_collide_8times" },
351 { "tx_collide_9times" },
352 { "tx_collide_10times" },
353 { "tx_collide_11times" },
354 { "tx_collide_12times" },
355 { "tx_collide_13times" },
356 { "tx_collide_14times" },
357 { "tx_collide_15times" },
358 { "tx_ucast_packets" },
359 { "tx_mcast_packets" },
360 { "tx_bcast_packets" },
361 { "tx_carrier_sense_errors" },
362 { "tx_discards" },
363 { "tx_errors" },
364
365 { "dma_writeq_full" },
366 { "dma_write_prioq_full" },
367 { "rxbds_empty" },
368 { "rx_discards" },
369 { "rx_errors" },
370 { "rx_threshold_hit" },
371
372 { "dma_readq_full" },
373 { "dma_read_prioq_full" },
374 { "tx_comp_queue_full" },
375
376 { "ring_set_send_prod_index" },
377 { "ring_status_update" },
378 { "nic_irqs" },
379 { "nic_avoided_irqs" },
Matt Carlson4452d092011-05-19 12:12:51 +0000380 { "nic_tx_threshold_hit" },
381
382 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383};
384
Matt Carlson48fa55a2011-04-13 11:05:06 +0000385#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
386
387
Andreas Mohr50da8592006-08-14 23:54:30 -0700388static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700389 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000390} ethtool_test_keys[] = {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700391 { "nvram test (online) " },
392 { "link test (online) " },
393 { "register test (offline)" },
394 { "memory test (offline)" },
395 { "loopback test (offline)" },
396 { "interrupt test (offline)" },
397};
398
Matt Carlson48fa55a2011-04-13 11:05:06 +0000399#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
400
401
Michael Chanb401e9e2005-12-19 16:27:04 -0800402static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
403{
404 writel(val, tp->regs + off);
405}
406
407static u32 tg3_read32(struct tg3 *tp, u32 off)
408{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000409 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800410}
411
Matt Carlson0d3031d2007-10-10 18:02:43 -0700412static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
413{
414 writel(val, tp->aperegs + off);
415}
416
417static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
418{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000419 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
423{
Michael Chan68929142005-08-09 20:17:14 -0700424 unsigned long flags;
425
426 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700427 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
428 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700429 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700430}
431
432static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
433{
434 writel(val, tp->regs + off);
435 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Michael Chan68929142005-08-09 20:17:14 -0700438static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
439{
440 unsigned long flags;
441 u32 val;
442
443 spin_lock_irqsave(&tp->indirect_lock, flags);
444 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
445 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
446 spin_unlock_irqrestore(&tp->indirect_lock, flags);
447 return val;
448}
449
450static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
451{
452 unsigned long flags;
453
454 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
455 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
456 TG3_64BIT_REG_LOW, val);
457 return;
458 }
Matt Carlson66711e62009-11-13 13:03:49 +0000459 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700460 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
461 TG3_64BIT_REG_LOW, val);
462 return;
463 }
464
465 spin_lock_irqsave(&tp->indirect_lock, flags);
466 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
467 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
468 spin_unlock_irqrestore(&tp->indirect_lock, flags);
469
470 /* In indirect mode when disabling interrupts, we also need
471 * to clear the interrupt bit in the GRC local ctrl register.
472 */
473 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
474 (val == 0x1)) {
475 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
476 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
477 }
478}
479
480static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
481{
482 unsigned long flags;
483 u32 val;
484
485 spin_lock_irqsave(&tp->indirect_lock, flags);
486 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
487 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
488 spin_unlock_irqrestore(&tp->indirect_lock, flags);
489 return val;
490}
491
Michael Chanb401e9e2005-12-19 16:27:04 -0800492/* usec_wait specifies the wait time in usec when writing to certain registers
493 * where it is unsafe to read back the register without some delay.
494 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
495 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
496 */
497static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Joe Perches63c3a662011-04-26 08:12:10 +0000499 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800500 /* Non-posted methods */
501 tp->write32(tp, off, val);
502 else {
503 /* Posted method */
504 tg3_write32(tp, off, val);
505 if (usec_wait)
506 udelay(usec_wait);
507 tp->read32(tp, off);
508 }
509 /* Wait again after the read for the posted method to guarantee that
510 * the wait time is met.
511 */
512 if (usec_wait)
513 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
Michael Chan09ee9292005-08-09 20:17:00 -0700516static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
517{
518 tp->write32_mbox(tp, off, val);
Joe Perches63c3a662011-04-26 08:12:10 +0000519 if (!tg3_flag(tp, MBOX_WRITE_REORDER) && !tg3_flag(tp, ICH_WORKAROUND))
Michael Chan68929142005-08-09 20:17:14 -0700520 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700521}
522
Michael Chan20094932005-08-09 20:16:32 -0700523static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 void __iomem *mbox = tp->regs + off;
526 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000527 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000529 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 readl(mbox);
531}
532
Michael Chanb5d37722006-09-27 16:06:21 -0700533static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
534{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000535 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700536}
537
538static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
539{
540 writel(val, tp->regs + off + GRCMBOX_BASE);
541}
542
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000543#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700544#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000545#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
546#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
547#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700548
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000549#define tw32(reg, val) tp->write32(tp, reg, val)
550#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
551#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
552#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
555{
Michael Chan68929142005-08-09 20:17:14 -0700556 unsigned long flags;
557
Matt Carlson6ff6f812011-05-19 12:12:54 +0000558 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700559 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
560 return;
561
Michael Chan68929142005-08-09 20:17:14 -0700562 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000563 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700564 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
565 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Michael Chanbbadf502006-04-06 21:46:34 -0700567 /* Always leave this as zero. */
568 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
569 } else {
570 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
571 tw32_f(TG3PCI_MEM_WIN_DATA, val);
572
573 /* Always leave this as zero. */
574 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
575 }
Michael Chan68929142005-08-09 20:17:14 -0700576 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
579static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
580{
Michael Chan68929142005-08-09 20:17:14 -0700581 unsigned long flags;
582
Matt Carlson6ff6f812011-05-19 12:12:54 +0000583 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700584 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
585 *val = 0;
586 return;
587 }
588
Michael Chan68929142005-08-09 20:17:14 -0700589 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000590 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700591 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
592 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Michael Chanbbadf502006-04-06 21:46:34 -0700594 /* Always leave this as zero. */
595 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
596 } else {
597 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
598 *val = tr32(TG3PCI_MEM_WIN_DATA);
599
600 /* Always leave this as zero. */
601 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
602 }
Michael Chan68929142005-08-09 20:17:14 -0700603 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Matt Carlson0d3031d2007-10-10 18:02:43 -0700606static void tg3_ape_lock_init(struct tg3 *tp)
607{
608 int i;
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000609 u32 regbase;
610
611 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
612 regbase = TG3_APE_LOCK_GRANT;
613 else
614 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700615
616 /* Make sure the driver hasn't any stale locks. */
617 for (i = 0; i < 8; i++)
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000618 tg3_ape_write32(tp, regbase + 4 * i, APE_LOCK_GRANT_DRIVER);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700619}
620
621static int tg3_ape_lock(struct tg3 *tp, int locknum)
622{
623 int i, off;
624 int ret = 0;
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000625 u32 status, req, gnt;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700626
Joe Perches63c3a662011-04-26 08:12:10 +0000627 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700628 return 0;
629
630 switch (locknum) {
Matt Carlson33f401a2010-04-05 10:19:27 +0000631 case TG3_APE_LOCK_GRC:
632 case TG3_APE_LOCK_MEM:
633 break;
634 default:
635 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700636 }
637
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000638 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
639 req = TG3_APE_LOCK_REQ;
640 gnt = TG3_APE_LOCK_GRANT;
641 } else {
642 req = TG3_APE_PER_LOCK_REQ;
643 gnt = TG3_APE_PER_LOCK_GRANT;
644 }
645
Matt Carlson0d3031d2007-10-10 18:02:43 -0700646 off = 4 * locknum;
647
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000648 tg3_ape_write32(tp, req + off, APE_LOCK_REQ_DRIVER);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700649
650 /* Wait for up to 1 millisecond to acquire lock. */
651 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000652 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700653 if (status == APE_LOCK_GRANT_DRIVER)
654 break;
655 udelay(10);
656 }
657
658 if (status != APE_LOCK_GRANT_DRIVER) {
659 /* Revoke the lock request. */
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000660 tg3_ape_write32(tp, gnt + off,
Matt Carlson0d3031d2007-10-10 18:02:43 -0700661 APE_LOCK_GRANT_DRIVER);
662
663 ret = -EBUSY;
664 }
665
666 return ret;
667}
668
669static void tg3_ape_unlock(struct tg3 *tp, int locknum)
670{
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000671 u32 gnt;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700672
Joe Perches63c3a662011-04-26 08:12:10 +0000673 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700674 return;
675
676 switch (locknum) {
Matt Carlson33f401a2010-04-05 10:19:27 +0000677 case TG3_APE_LOCK_GRC:
678 case TG3_APE_LOCK_MEM:
679 break;
680 default:
681 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700682 }
683
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000684 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
685 gnt = TG3_APE_LOCK_GRANT;
686 else
687 gnt = TG3_APE_PER_LOCK_GRANT;
688
689 tg3_ape_write32(tp, gnt + 4 * locknum, APE_LOCK_GRANT_DRIVER);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700690}
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692static void tg3_disable_ints(struct tg3 *tp)
693{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000694 int i;
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 tw32(TG3PCI_MISC_HOST_CTRL,
697 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000698 for (i = 0; i < tp->irq_max; i++)
699 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702static void tg3_enable_ints(struct tg3 *tp)
703{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000704 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000705
Michael Chanbbe832c2005-06-24 20:20:04 -0700706 tp->irq_sync = 0;
707 wmb();
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 tw32(TG3PCI_MISC_HOST_CTRL,
710 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000711
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000712 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000713 for (i = 0; i < tp->irq_cnt; i++) {
714 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000715
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000716 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +0000717 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000718 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
719
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000720 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000721 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000722
723 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +0000724 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000725 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
726 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
727 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000728 tw32(HOSTCC_MODE, tp->coal_now);
729
730 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
Matt Carlson17375d22009-08-28 14:02:18 +0000733static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700734{
Matt Carlson17375d22009-08-28 14:02:18 +0000735 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000736 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700737 unsigned int work_exists = 0;
738
739 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +0000740 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -0700741 if (sblk->status & SD_STATUS_LINK_CHG)
742 work_exists = 1;
743 }
744 /* check for RX/TX work to do */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000745 if (sblk->idx[0].tx_consumer != tnapi->tx_cons ||
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000746 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700747 work_exists = 1;
748
749 return work_exists;
750}
751
Matt Carlson17375d22009-08-28 14:02:18 +0000752/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700753 * similar to tg3_enable_ints, but it accurately determines whether there
754 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400755 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 */
Matt Carlson17375d22009-08-28 14:02:18 +0000757static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Matt Carlson17375d22009-08-28 14:02:18 +0000759 struct tg3 *tp = tnapi->tp;
760
Matt Carlson898a56f2009-08-28 14:02:40 +0000761 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 mmiowb();
763
David S. Millerfac9b832005-05-18 22:46:34 -0700764 /* When doing tagged status, this work check is unnecessary.
765 * The last_tag we write above tells the chip which piece of
766 * work we've completed.
767 */
Joe Perches63c3a662011-04-26 08:12:10 +0000768 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700769 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000770 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773static void tg3_switch_clocks(struct tg3 *tp)
774{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000775 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 u32 orig_clock_ctrl;
777
Joe Perches63c3a662011-04-26 08:12:10 +0000778 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700779 return;
780
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000781 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 orig_clock_ctrl = clock_ctrl;
784 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
785 CLOCK_CTRL_CLKRUN_OENABLE |
786 0x1f);
787 tp->pci_clock_ctrl = clock_ctrl;
788
Joe Perches63c3a662011-04-26 08:12:10 +0000789 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800791 tw32_wait_f(TG3PCI_CLOCK_CTRL,
792 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800795 tw32_wait_f(TG3PCI_CLOCK_CTRL,
796 clock_ctrl |
797 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
798 40);
799 tw32_wait_f(TG3PCI_CLOCK_CTRL,
800 clock_ctrl | (CLOCK_CTRL_ALTCLK),
801 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800803 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
806#define PHY_BUSY_LOOPS 5000
807
808static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
809{
810 u32 frame_val;
811 unsigned int loops;
812 int ret;
813
814 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
815 tw32_f(MAC_MI_MODE,
816 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
817 udelay(80);
818 }
819
820 *val = 0x0;
821
Matt Carlson882e9792009-09-01 13:21:36 +0000822 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 MI_COM_PHY_ADDR_MASK);
824 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
825 MI_COM_REG_ADDR_MASK);
826 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 tw32_f(MAC_MI_COM, frame_val);
829
830 loops = PHY_BUSY_LOOPS;
831 while (loops != 0) {
832 udelay(10);
833 frame_val = tr32(MAC_MI_COM);
834
835 if ((frame_val & MI_COM_BUSY) == 0) {
836 udelay(5);
837 frame_val = tr32(MAC_MI_COM);
838 break;
839 }
840 loops -= 1;
841 }
842
843 ret = -EBUSY;
844 if (loops != 0) {
845 *val = frame_val & MI_COM_DATA_MASK;
846 ret = 0;
847 }
848
849 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
850 tw32_f(MAC_MI_MODE, tp->mi_mode);
851 udelay(80);
852 }
853
854 return ret;
855}
856
857static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
858{
859 u32 frame_val;
860 unsigned int loops;
861 int ret;
862
Matt Carlsonf07e9af2010-08-02 11:26:07 +0000863 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Michael Chanb5d37722006-09-27 16:06:21 -0700864 (reg == MII_TG3_CTRL || reg == MII_TG3_AUX_CTRL))
865 return 0;
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
868 tw32_f(MAC_MI_MODE,
869 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
870 udelay(80);
871 }
872
Matt Carlson882e9792009-09-01 13:21:36 +0000873 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 MI_COM_PHY_ADDR_MASK);
875 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
876 MI_COM_REG_ADDR_MASK);
877 frame_val |= (val & MI_COM_DATA_MASK);
878 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 tw32_f(MAC_MI_COM, frame_val);
881
882 loops = PHY_BUSY_LOOPS;
883 while (loops != 0) {
884 udelay(10);
885 frame_val = tr32(MAC_MI_COM);
886 if ((frame_val & MI_COM_BUSY) == 0) {
887 udelay(5);
888 frame_val = tr32(MAC_MI_COM);
889 break;
890 }
891 loops -= 1;
892 }
893
894 ret = -EBUSY;
895 if (loops != 0)
896 ret = 0;
897
898 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
899 tw32_f(MAC_MI_MODE, tp->mi_mode);
900 udelay(80);
901 }
902
903 return ret;
904}
905
Matt Carlsonb0988c12011-04-20 07:57:39 +0000906static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
907{
908 int err;
909
910 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
911 if (err)
912 goto done;
913
914 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
915 if (err)
916 goto done;
917
918 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
919 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
920 if (err)
921 goto done;
922
923 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
924
925done:
926 return err;
927}
928
929static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
930{
931 int err;
932
933 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
934 if (err)
935 goto done;
936
937 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
938 if (err)
939 goto done;
940
941 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
942 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
943 if (err)
944 goto done;
945
946 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
947
948done:
949 return err;
950}
951
952static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
953{
954 int err;
955
956 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
957 if (!err)
958 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
959
960 return err;
961}
962
963static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
964{
965 int err;
966
967 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
968 if (!err)
969 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
970
971 return err;
972}
973
Matt Carlson15ee95c2011-04-20 07:57:40 +0000974static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
975{
976 int err;
977
978 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
979 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
980 MII_TG3_AUXCTL_SHDWSEL_MISC);
981 if (!err)
982 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
983
984 return err;
985}
986
Matt Carlsonb4bd2922011-04-20 07:57:41 +0000987static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
988{
989 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
990 set |= MII_TG3_AUXCTL_MISC_WREN;
991
992 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
993}
994
Matt Carlson1d36ba42011-04-20 07:57:42 +0000995#define TG3_PHY_AUXCTL_SMDSP_ENABLE(tp) \
996 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
997 MII_TG3_AUXCTL_ACTL_SMDSP_ENA | \
998 MII_TG3_AUXCTL_ACTL_TX_6DB)
999
1000#define TG3_PHY_AUXCTL_SMDSP_DISABLE(tp) \
1001 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1002 MII_TG3_AUXCTL_ACTL_TX_6DB);
1003
Matt Carlson95e28692008-05-25 23:44:14 -07001004static int tg3_bmcr_reset(struct tg3 *tp)
1005{
1006 u32 phy_control;
1007 int limit, err;
1008
1009 /* OK, reset it, and poll the BMCR_RESET bit until it
1010 * clears or we time out.
1011 */
1012 phy_control = BMCR_RESET;
1013 err = tg3_writephy(tp, MII_BMCR, phy_control);
1014 if (err != 0)
1015 return -EBUSY;
1016
1017 limit = 5000;
1018 while (limit--) {
1019 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1020 if (err != 0)
1021 return -EBUSY;
1022
1023 if ((phy_control & BMCR_RESET) == 0) {
1024 udelay(40);
1025 break;
1026 }
1027 udelay(10);
1028 }
Roel Kluind4675b52009-02-12 16:33:27 -08001029 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001030 return -EBUSY;
1031
1032 return 0;
1033}
1034
Matt Carlson158d7ab2008-05-29 01:37:54 -07001035static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1036{
Francois Romieu3d165432009-01-19 16:56:50 -08001037 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001038 u32 val;
1039
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001040 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001041
1042 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001043 val = -EIO;
1044
1045 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001046
1047 return val;
1048}
1049
1050static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1051{
Francois Romieu3d165432009-01-19 16:56:50 -08001052 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001053 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001054
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001055 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001056
1057 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001058 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001059
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001060 spin_unlock_bh(&tp->lock);
1061
1062 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001063}
1064
1065static int tg3_mdio_reset(struct mii_bus *bp)
1066{
1067 return 0;
1068}
1069
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001070static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001071{
1072 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001073 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001074
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001075 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001076 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001077 case PHY_ID_BCM50610:
1078 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001079 val = MAC_PHYCFG2_50610_LED_MODES;
1080 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001081 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001082 val = MAC_PHYCFG2_AC131_LED_MODES;
1083 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001084 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001085 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1086 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001087 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001088 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1089 break;
1090 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001091 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001092 }
1093
1094 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1095 tw32(MAC_PHYCFG2, val);
1096
1097 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001098 val &= ~(MAC_PHYCFG1_RGMII_INT |
1099 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1100 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001101 tw32(MAC_PHYCFG1, val);
1102
1103 return;
1104 }
1105
Joe Perches63c3a662011-04-26 08:12:10 +00001106 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001107 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1108 MAC_PHYCFG2_FMODE_MASK_MASK |
1109 MAC_PHYCFG2_GMODE_MASK_MASK |
1110 MAC_PHYCFG2_ACT_MASK_MASK |
1111 MAC_PHYCFG2_QUAL_MASK_MASK |
1112 MAC_PHYCFG2_INBAND_ENABLE;
1113
1114 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001115
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001116 val = tr32(MAC_PHYCFG1);
1117 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1118 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001119 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1120 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001121 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001122 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001123 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1124 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001125 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1126 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1127 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001128
Matt Carlsona9daf362008-05-25 23:49:44 -07001129 val = tr32(MAC_EXT_RGMII_MODE);
1130 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1131 MAC_RGMII_MODE_RX_QUALITY |
1132 MAC_RGMII_MODE_RX_ACTIVITY |
1133 MAC_RGMII_MODE_RX_ENG_DET |
1134 MAC_RGMII_MODE_TX_ENABLE |
1135 MAC_RGMII_MODE_TX_LOWPWR |
1136 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001137 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1138 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001139 val |= MAC_RGMII_MODE_RX_INT_B |
1140 MAC_RGMII_MODE_RX_QUALITY |
1141 MAC_RGMII_MODE_RX_ACTIVITY |
1142 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001143 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001144 val |= MAC_RGMII_MODE_TX_ENABLE |
1145 MAC_RGMII_MODE_TX_LOWPWR |
1146 MAC_RGMII_MODE_TX_RESET;
1147 }
1148 tw32(MAC_EXT_RGMII_MODE, val);
1149}
1150
Matt Carlson158d7ab2008-05-29 01:37:54 -07001151static void tg3_mdio_start(struct tg3 *tp)
1152{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001153 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1154 tw32_f(MAC_MI_MODE, tp->mi_mode);
1155 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001156
Joe Perches63c3a662011-04-26 08:12:10 +00001157 if (tg3_flag(tp, MDIOBUS_INITED) &&
Matt Carlson9ea48182010-02-17 15:17:01 +00001158 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1159 tg3_mdio_config_5785(tp);
1160}
1161
1162static int tg3_mdio_init(struct tg3 *tp)
1163{
1164 int i;
1165 u32 reg;
1166 struct phy_device *phydev;
1167
Joe Perches63c3a662011-04-26 08:12:10 +00001168 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001169 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001170
Matt Carlson9c7df912010-06-05 17:24:36 +00001171 tp->phy_addr = PCI_FUNC(tp->pdev->devfn) + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001172
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001173 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1174 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1175 else
1176 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1177 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001178 if (is_serdes)
1179 tp->phy_addr += 7;
1180 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001181 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001182
Matt Carlson158d7ab2008-05-29 01:37:54 -07001183 tg3_mdio_start(tp);
1184
Joe Perches63c3a662011-04-26 08:12:10 +00001185 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001186 return 0;
1187
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001188 tp->mdio_bus = mdiobus_alloc();
1189 if (tp->mdio_bus == NULL)
1190 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001191
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001192 tp->mdio_bus->name = "tg3 mdio bus";
1193 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001194 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001195 tp->mdio_bus->priv = tp;
1196 tp->mdio_bus->parent = &tp->pdev->dev;
1197 tp->mdio_bus->read = &tg3_mdio_read;
1198 tp->mdio_bus->write = &tg3_mdio_write;
1199 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001200 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001201 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001202
1203 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001204 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001205
1206 /* The bus registration will look for all the PHYs on the mdio bus.
1207 * Unfortunately, it does not ensure the PHY is powered up before
1208 * accessing the PHY ID registers. A chip reset is the
1209 * quickest way to bring the device back to an operational state..
1210 */
1211 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1212 tg3_bmcr_reset(tp);
1213
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001214 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001215 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001216 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001217 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001218 return i;
1219 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001220
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001221 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001222
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001223 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001224 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001225 mdiobus_unregister(tp->mdio_bus);
1226 mdiobus_free(tp->mdio_bus);
1227 return -ENODEV;
1228 }
1229
1230 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001231 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001232 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001233 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001234 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001235 case PHY_ID_BCM50610:
1236 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001237 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001238 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001239 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001240 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001241 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001242 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001243 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001244 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001245 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001246 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001247 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001248 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001249 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001250 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001251 case PHY_ID_RTL8201E:
1252 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001253 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e092009-11-02 14:31:11 +00001254 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001255 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001256 break;
1257 }
1258
Joe Perches63c3a662011-04-26 08:12:10 +00001259 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001260
1261 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1262 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001263
1264 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001265}
1266
1267static void tg3_mdio_fini(struct tg3 *tp)
1268{
Joe Perches63c3a662011-04-26 08:12:10 +00001269 if (tg3_flag(tp, MDIOBUS_INITED)) {
1270 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001271 mdiobus_unregister(tp->mdio_bus);
1272 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001273 }
1274}
1275
Matt Carlson95e28692008-05-25 23:44:14 -07001276/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001277static inline void tg3_generate_fw_event(struct tg3 *tp)
1278{
1279 u32 val;
1280
1281 val = tr32(GRC_RX_CPU_EVENT);
1282 val |= GRC_RX_CPU_DRIVER_EVENT;
1283 tw32_f(GRC_RX_CPU_EVENT, val);
1284
1285 tp->last_event_jiffies = jiffies;
1286}
1287
1288#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1289
1290/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001291static void tg3_wait_for_event_ack(struct tg3 *tp)
1292{
1293 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001294 unsigned int delay_cnt;
1295 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001296
Matt Carlson4ba526c2008-08-15 14:10:04 -07001297 /* If enough time has passed, no wait is necessary. */
1298 time_remain = (long)(tp->last_event_jiffies + 1 +
1299 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1300 (long)jiffies;
1301 if (time_remain < 0)
1302 return;
1303
1304 /* Check if we can shorten the wait time. */
1305 delay_cnt = jiffies_to_usecs(time_remain);
1306 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1307 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1308 delay_cnt = (delay_cnt >> 3) + 1;
1309
1310 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001311 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1312 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001313 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001314 }
1315}
1316
1317/* tp->lock is held. */
1318static void tg3_ump_link_report(struct tg3 *tp)
1319{
1320 u32 reg;
1321 u32 val;
1322
Joe Perches63c3a662011-04-26 08:12:10 +00001323 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson95e28692008-05-25 23:44:14 -07001324 return;
1325
1326 tg3_wait_for_event_ack(tp);
1327
1328 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1329
1330 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1331
1332 val = 0;
1333 if (!tg3_readphy(tp, MII_BMCR, &reg))
1334 val = reg << 16;
1335 if (!tg3_readphy(tp, MII_BMSR, &reg))
1336 val |= (reg & 0xffff);
1337 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, val);
1338
1339 val = 0;
1340 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1341 val = reg << 16;
1342 if (!tg3_readphy(tp, MII_LPA, &reg))
1343 val |= (reg & 0xffff);
1344 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 4, val);
1345
1346 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001347 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001348 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1349 val = reg << 16;
1350 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1351 val |= (reg & 0xffff);
1352 }
1353 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 8, val);
1354
1355 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1356 val = reg << 16;
1357 else
1358 val = 0;
1359 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 12, val);
1360
Matt Carlson4ba526c2008-08-15 14:10:04 -07001361 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001362}
1363
1364static void tg3_link_report(struct tg3 *tp)
1365{
1366 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001367 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001368 tg3_ump_link_report(tp);
1369 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001370 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1371 (tp->link_config.active_speed == SPEED_1000 ?
1372 1000 :
1373 (tp->link_config.active_speed == SPEED_100 ?
1374 100 : 10)),
1375 (tp->link_config.active_duplex == DUPLEX_FULL ?
1376 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001377
Joe Perches05dbe002010-02-17 19:44:19 +00001378 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1379 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1380 "on" : "off",
1381 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1382 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001383
1384 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1385 netdev_info(tp->dev, "EEE is %s\n",
1386 tp->setlpicnt ? "enabled" : "disabled");
1387
Matt Carlson95e28692008-05-25 23:44:14 -07001388 tg3_ump_link_report(tp);
1389 }
1390}
1391
1392static u16 tg3_advert_flowctrl_1000T(u8 flow_ctrl)
1393{
1394 u16 miireg;
1395
Steve Glendinninge18ce342008-12-16 02:00:00 -08001396 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001397 miireg = ADVERTISE_PAUSE_CAP;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001398 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001399 miireg = ADVERTISE_PAUSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001400 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001401 miireg = ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1402 else
1403 miireg = 0;
1404
1405 return miireg;
1406}
1407
1408static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1409{
1410 u16 miireg;
1411
Steve Glendinninge18ce342008-12-16 02:00:00 -08001412 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001413 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001414 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001415 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001416 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001417 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1418 else
1419 miireg = 0;
1420
1421 return miireg;
1422}
1423
Matt Carlson95e28692008-05-25 23:44:14 -07001424static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1425{
1426 u8 cap = 0;
1427
1428 if (lcladv & ADVERTISE_1000XPAUSE) {
1429 if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1430 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001431 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001432 else if (rmtadv & LPA_1000XPAUSE_ASYM)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001433 cap = FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001434 } else {
1435 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001436 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001437 }
1438 } else if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1439 if ((rmtadv & LPA_1000XPAUSE) && (rmtadv & LPA_1000XPAUSE_ASYM))
Steve Glendinninge18ce342008-12-16 02:00:00 -08001440 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001441 }
1442
1443 return cap;
1444}
1445
Matt Carlsonf51f3562008-05-25 23:45:08 -07001446static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001447{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001448 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001449 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001450 u32 old_rx_mode = tp->rx_mode;
1451 u32 old_tx_mode = tp->tx_mode;
1452
Joe Perches63c3a662011-04-26 08:12:10 +00001453 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001454 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001455 else
1456 autoneg = tp->link_config.autoneg;
1457
Joe Perches63c3a662011-04-26 08:12:10 +00001458 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001459 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001460 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001461 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001462 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001463 } else
1464 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001465
Matt Carlsonf51f3562008-05-25 23:45:08 -07001466 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001467
Steve Glendinninge18ce342008-12-16 02:00:00 -08001468 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001469 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1470 else
1471 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1472
Matt Carlsonf51f3562008-05-25 23:45:08 -07001473 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001474 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001475
Steve Glendinninge18ce342008-12-16 02:00:00 -08001476 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001477 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1478 else
1479 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1480
Matt Carlsonf51f3562008-05-25 23:45:08 -07001481 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001482 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001483}
1484
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001485static void tg3_adjust_link(struct net_device *dev)
1486{
1487 u8 oldflowctrl, linkmesg = 0;
1488 u32 mac_mode, lcl_adv, rmt_adv;
1489 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001490 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001491
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001492 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001493
1494 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1495 MAC_MODE_HALF_DUPLEX);
1496
1497 oldflowctrl = tp->link_config.active_flowctrl;
1498
1499 if (phydev->link) {
1500 lcl_adv = 0;
1501 rmt_adv = 0;
1502
1503 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1504 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001505 else if (phydev->speed == SPEED_1000 ||
1506 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001507 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001508 else
1509 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001510
1511 if (phydev->duplex == DUPLEX_HALF)
1512 mac_mode |= MAC_MODE_HALF_DUPLEX;
1513 else {
1514 lcl_adv = tg3_advert_flowctrl_1000T(
1515 tp->link_config.flowctrl);
1516
1517 if (phydev->pause)
1518 rmt_adv = LPA_PAUSE_CAP;
1519 if (phydev->asym_pause)
1520 rmt_adv |= LPA_PAUSE_ASYM;
1521 }
1522
1523 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1524 } else
1525 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1526
1527 if (mac_mode != tp->mac_mode) {
1528 tp->mac_mode = mac_mode;
1529 tw32_f(MAC_MODE, tp->mac_mode);
1530 udelay(40);
1531 }
1532
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001533 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1534 if (phydev->speed == SPEED_10)
1535 tw32(MAC_MI_STAT,
1536 MAC_MI_STAT_10MBPS_MODE |
1537 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1538 else
1539 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1540 }
1541
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001542 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1543 tw32(MAC_TX_LENGTHS,
1544 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1545 (6 << TX_LENGTHS_IPG_SHIFT) |
1546 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1547 else
1548 tw32(MAC_TX_LENGTHS,
1549 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1550 (6 << TX_LENGTHS_IPG_SHIFT) |
1551 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1552
1553 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1554 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1555 phydev->speed != tp->link_config.active_speed ||
1556 phydev->duplex != tp->link_config.active_duplex ||
1557 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001558 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001559
1560 tp->link_config.active_speed = phydev->speed;
1561 tp->link_config.active_duplex = phydev->duplex;
1562
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001563 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001564
1565 if (linkmesg)
1566 tg3_link_report(tp);
1567}
1568
1569static int tg3_phy_init(struct tg3 *tp)
1570{
1571 struct phy_device *phydev;
1572
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001573 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001574 return 0;
1575
1576 /* Bring the PHY back to a known state. */
1577 tg3_bmcr_reset(tp);
1578
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001579 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001580
1581 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad32008-11-10 13:55:14 -08001582 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001583 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001584 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001585 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001586 return PTR_ERR(phydev);
1587 }
1588
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001589 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001590 switch (phydev->interface) {
1591 case PHY_INTERFACE_MODE_GMII:
1592 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001593 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001594 phydev->supported &= (PHY_GBIT_FEATURES |
1595 SUPPORTED_Pause |
1596 SUPPORTED_Asym_Pause);
1597 break;
1598 }
1599 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001600 case PHY_INTERFACE_MODE_MII:
1601 phydev->supported &= (PHY_BASIC_FEATURES |
1602 SUPPORTED_Pause |
1603 SUPPORTED_Asym_Pause);
1604 break;
1605 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001606 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001607 return -EINVAL;
1608 }
1609
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001610 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001611
1612 phydev->advertising = phydev->supported;
1613
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001614 return 0;
1615}
1616
1617static void tg3_phy_start(struct tg3 *tp)
1618{
1619 struct phy_device *phydev;
1620
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001621 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001622 return;
1623
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001624 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001625
Matt Carlson80096062010-08-02 11:26:06 +00001626 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
1627 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001628 phydev->speed = tp->link_config.orig_speed;
1629 phydev->duplex = tp->link_config.orig_duplex;
1630 phydev->autoneg = tp->link_config.orig_autoneg;
1631 phydev->advertising = tp->link_config.orig_advertising;
1632 }
1633
1634 phy_start(phydev);
1635
1636 phy_start_aneg(phydev);
1637}
1638
1639static void tg3_phy_stop(struct tg3 *tp)
1640{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001641 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001642 return;
1643
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001644 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001645}
1646
1647static void tg3_phy_fini(struct tg3 *tp)
1648{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001649 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001650 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001651 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001652 }
1653}
1654
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001655static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1656{
1657 u32 phytest;
1658
1659 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1660 u32 phy;
1661
1662 tg3_writephy(tp, MII_TG3_FET_TEST,
1663 phytest | MII_TG3_FET_SHADOW_EN);
1664 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1665 if (enable)
1666 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1667 else
1668 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1669 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1670 }
1671 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1672 }
1673}
1674
Matt Carlson6833c042008-11-21 17:18:59 -08001675static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1676{
1677 u32 reg;
1678
Joe Perches63c3a662011-04-26 08:12:10 +00001679 if (!tg3_flag(tp, 5705_PLUS) ||
1680 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001681 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001682 return;
1683
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001684 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001685 tg3_phy_fet_toggle_apd(tp, enable);
1686 return;
1687 }
1688
Matt Carlson6833c042008-11-21 17:18:59 -08001689 reg = MII_TG3_MISC_SHDW_WREN |
1690 MII_TG3_MISC_SHDW_SCR5_SEL |
1691 MII_TG3_MISC_SHDW_SCR5_LPED |
1692 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1693 MII_TG3_MISC_SHDW_SCR5_SDTL |
1694 MII_TG3_MISC_SHDW_SCR5_C125OE;
1695 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
1696 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
1697
1698 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1699
1700
1701 reg = MII_TG3_MISC_SHDW_WREN |
1702 MII_TG3_MISC_SHDW_APD_SEL |
1703 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
1704 if (enable)
1705 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
1706
1707 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1708}
1709
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001710static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
1711{
1712 u32 phy;
1713
Joe Perches63c3a662011-04-26 08:12:10 +00001714 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001715 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001716 return;
1717
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001718 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001719 u32 ephy;
1720
Matt Carlson535ef6e2009-08-25 10:09:36 +00001721 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
1722 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
1723
1724 tg3_writephy(tp, MII_TG3_FET_TEST,
1725 ephy | MII_TG3_FET_SHADOW_EN);
1726 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001727 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00001728 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001729 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00001730 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
1731 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001732 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00001733 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001734 }
1735 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00001736 int ret;
1737
1738 ret = tg3_phy_auxctl_read(tp,
1739 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
1740 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001741 if (enable)
1742 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1743 else
1744 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001745 tg3_phy_auxctl_write(tp,
1746 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001747 }
1748 }
1749}
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751static void tg3_phy_set_wirespeed(struct tg3 *tp)
1752{
Matt Carlson15ee95c2011-04-20 07:57:40 +00001753 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 u32 val;
1755
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001756 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return;
1758
Matt Carlson15ee95c2011-04-20 07:57:40 +00001759 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
1760 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001761 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
1762 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
1764
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001765static void tg3_phy_apply_otp(struct tg3 *tp)
1766{
1767 u32 otp, phy;
1768
1769 if (!tp->phy_otp)
1770 return;
1771
1772 otp = tp->phy_otp;
1773
Matt Carlson1d36ba42011-04-20 07:57:42 +00001774 if (TG3_PHY_AUXCTL_SMDSP_ENABLE(tp))
1775 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001776
1777 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
1778 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
1779 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
1780
1781 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
1782 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
1783 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
1784
1785 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
1786 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
1787 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
1788
1789 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
1790 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
1791
1792 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
1793 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
1794
1795 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
1796 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
1797 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
1798
Matt Carlson1d36ba42011-04-20 07:57:42 +00001799 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001800}
1801
Matt Carlson52b02d02010-10-14 10:37:41 +00001802static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
1803{
1804 u32 val;
1805
1806 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
1807 return;
1808
1809 tp->setlpicnt = 0;
1810
1811 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
1812 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00001813 tp->link_config.active_duplex == DUPLEX_FULL &&
1814 (tp->link_config.active_speed == SPEED_100 ||
1815 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00001816 u32 eeectl;
1817
1818 if (tp->link_config.active_speed == SPEED_1000)
1819 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
1820 else
1821 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
1822
1823 tw32(TG3_CPMU_EEE_CTRL, eeectl);
1824
Matt Carlson3110f5f52010-12-06 08:28:50 +00001825 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
1826 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00001827
Matt Carlsonb0c59432011-05-19 12:12:48 +00001828 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
1829 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00001830 tp->setlpicnt = 2;
1831 }
1832
1833 if (!tp->setlpicnt) {
1834 val = tr32(TG3_CPMU_EEE_MODE);
1835 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
1836 }
1837}
1838
Matt Carlsonb0c59432011-05-19 12:12:48 +00001839static void tg3_phy_eee_enable(struct tg3 *tp)
1840{
1841 u32 val;
1842
1843 if (tp->link_config.active_speed == SPEED_1000 &&
1844 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
1845 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
1846 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) &&
1847 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
1848 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0003);
1849 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
1850 }
1851
1852 val = tr32(TG3_CPMU_EEE_MODE);
1853 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
1854}
1855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856static int tg3_wait_macro_done(struct tg3 *tp)
1857{
1858 int limit = 100;
1859
1860 while (limit--) {
1861 u32 tmp32;
1862
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001863 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 if ((tmp32 & 0x1000) == 0)
1865 break;
1866 }
1867 }
Roel Kluind4675b52009-02-12 16:33:27 -08001868 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 return -EBUSY;
1870
1871 return 0;
1872}
1873
1874static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
1875{
1876 static const u32 test_pat[4][6] = {
1877 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
1878 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
1879 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
1880 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
1881 };
1882 int chan;
1883
1884 for (chan = 0; chan < 4; chan++) {
1885 int i;
1886
1887 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1888 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001889 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891 for (i = 0; i < 6; i++)
1892 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
1893 test_pat[chan][i]);
1894
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001895 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 if (tg3_wait_macro_done(tp)) {
1897 *resetp = 1;
1898 return -EBUSY;
1899 }
1900
1901 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1902 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001903 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (tg3_wait_macro_done(tp)) {
1905 *resetp = 1;
1906 return -EBUSY;
1907 }
1908
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001909 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 if (tg3_wait_macro_done(tp)) {
1911 *resetp = 1;
1912 return -EBUSY;
1913 }
1914
1915 for (i = 0; i < 6; i += 2) {
1916 u32 low, high;
1917
1918 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
1919 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
1920 tg3_wait_macro_done(tp)) {
1921 *resetp = 1;
1922 return -EBUSY;
1923 }
1924 low &= 0x7fff;
1925 high &= 0x000f;
1926 if (low != test_pat[chan][i] ||
1927 high != test_pat[chan][i+1]) {
1928 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
1929 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
1930 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
1931
1932 return -EBUSY;
1933 }
1934 }
1935 }
1936
1937 return 0;
1938}
1939
1940static int tg3_phy_reset_chanpat(struct tg3 *tp)
1941{
1942 int chan;
1943
1944 for (chan = 0; chan < 4; chan++) {
1945 int i;
1946
1947 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1948 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001949 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 for (i = 0; i < 6; i++)
1951 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001952 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 if (tg3_wait_macro_done(tp))
1954 return -EBUSY;
1955 }
1956
1957 return 0;
1958}
1959
1960static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
1961{
1962 u32 reg32, phy9_orig;
1963 int retries, do_phy_reset, err;
1964
1965 retries = 10;
1966 do_phy_reset = 1;
1967 do {
1968 if (do_phy_reset) {
1969 err = tg3_bmcr_reset(tp);
1970 if (err)
1971 return err;
1972 do_phy_reset = 0;
1973 }
1974
1975 /* Disable transmitter and interrupt. */
1976 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
1977 continue;
1978
1979 reg32 |= 0x3000;
1980 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1981
1982 /* Set full-duplex, 1000 mbps. */
1983 tg3_writephy(tp, MII_BMCR,
1984 BMCR_FULLDPLX | TG3_BMCR_SPEED1000);
1985
1986 /* Set to master mode. */
1987 if (tg3_readphy(tp, MII_TG3_CTRL, &phy9_orig))
1988 continue;
1989
1990 tg3_writephy(tp, MII_TG3_CTRL,
1991 (MII_TG3_CTRL_AS_MASTER |
1992 MII_TG3_CTRL_ENABLE_AS_MASTER));
1993
Matt Carlson1d36ba42011-04-20 07:57:42 +00001994 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
1995 if (err)
1996 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00001999 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2002 if (!err)
2003 break;
2004 } while (--retries);
2005
2006 err = tg3_phy_reset_chanpat(tp);
2007 if (err)
2008 return err;
2009
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002010 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002013 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Matt Carlson1d36ba42011-04-20 07:57:42 +00002015 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017 tg3_writephy(tp, MII_TG3_CTRL, phy9_orig);
2018
2019 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2020 reg32 &= ~0x3000;
2021 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2022 } else if (!err)
2023 err = -EBUSY;
2024
2025 return err;
2026}
2027
2028/* This will reset the tigon3 PHY if there is no valid
2029 * link unless the FORCE argument is non-zero.
2030 */
2031static int tg3_phy_reset(struct tg3 *tp)
2032{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002033 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 int err;
2035
Michael Chan60189dd2006-12-17 17:08:07 -08002036 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002037 val = tr32(GRC_MISC_CFG);
2038 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2039 udelay(40);
2040 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002041 err = tg3_readphy(tp, MII_BMSR, &val);
2042 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if (err != 0)
2044 return -EBUSY;
2045
Michael Chanc8e1e822006-04-29 18:55:17 -07002046 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
2047 netif_carrier_off(tp->dev);
2048 tg3_link_report(tp);
2049 }
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2052 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2053 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
2054 err = tg3_phy_reset_5703_4_5(tp);
2055 if (err)
2056 return err;
2057 goto out;
2058 }
2059
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002060 cpmuctrl = 0;
2061 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
2062 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
2063 cpmuctrl = tr32(TG3_CPMU_CTRL);
2064 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2065 tw32(TG3_CPMU_CTRL,
2066 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2067 }
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 err = tg3_bmcr_reset(tp);
2070 if (err)
2071 return err;
2072
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002073 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002074 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2075 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002076
2077 tw32(TG3_CPMU_CTRL, cpmuctrl);
2078 }
2079
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002080 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2081 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002082 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2083 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2084 CPMU_LSPD_1000MB_MACCLK_12_5) {
2085 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2086 udelay(40);
2087 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2088 }
2089 }
2090
Joe Perches63c3a662011-04-26 08:12:10 +00002091 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002092 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002093 return 0;
2094
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002095 tg3_phy_apply_otp(tp);
2096
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002097 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002098 tg3_phy_toggle_apd(tp, true);
2099 else
2100 tg3_phy_toggle_apd(tp, false);
2101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002103 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
2104 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002105 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2106 tg3_phydsp_write(tp, 0x000a, 0x0323);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002107 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002109
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002110 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002111 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2112 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002114
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002115 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002116 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2117 tg3_phydsp_write(tp, 0x000a, 0x310b);
2118 tg3_phydsp_write(tp, 0x201f, 0x9506);
2119 tg3_phydsp_write(tp, 0x401f, 0x14e2);
2120 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2121 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002122 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002123 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2124 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2125 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2126 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2127 tg3_writephy(tp, MII_TG3_TEST1,
2128 MII_TG3_TEST1_TRIM_EN | 0x4);
2129 } else
2130 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2131
2132 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2133 }
Michael Chanc424cb22006-04-29 18:56:34 -07002134 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 /* Set Extended packet length bit (bit 14) on all chips that */
2137 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002138 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002140 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002141 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002143 err = tg3_phy_auxctl_read(tp,
2144 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2145 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002146 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2147 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 }
2149
2150 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2151 * jumbo frames transmission.
2152 */
Joe Perches63c3a662011-04-26 08:12:10 +00002153 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002154 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002155 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002156 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 }
2158
Michael Chan715116a2006-09-27 16:09:25 -07002159 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002160 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002161 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002162 }
2163
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002164 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 tg3_phy_set_wirespeed(tp);
2166 return 0;
2167}
2168
2169static void tg3_frob_aux_power(struct tg3 *tp)
2170{
Matt Carlson683644b2011-03-09 16:58:23 +00002171 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Matt Carlson334355a2010-01-20 16:58:10 +00002173 /* The GPIOs do something completely different on 57765. */
Joe Perches63c3a662011-04-26 08:12:10 +00002174 if (!tg3_flag(tp, IS_NIC) ||
Matt Carlsona50d0792010-06-05 17:24:37 +00002175 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Matt Carlson334355a2010-01-20 16:58:10 +00002176 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 return;
2178
Matt Carlson683644b2011-03-09 16:58:23 +00002179 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2180 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +00002181 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2182 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) &&
Matt Carlson683644b2011-03-09 16:58:23 +00002183 tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002184 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002186 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002187
Michael Chanbc1c7562006-03-20 17:48:03 -08002188 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002189 if (dev_peer) {
2190 struct tg3 *tp_peer = netdev_priv(dev_peer);
2191
Joe Perches63c3a662011-04-26 08:12:10 +00002192 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002193 return;
2194
Joe Perches63c3a662011-04-26 08:12:10 +00002195 if (tg3_flag(tp_peer, WOL_ENABLE) ||
2196 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002197 need_vaux = true;
2198 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Joe Perches63c3a662011-04-26 08:12:10 +00002201 if (tg3_flag(tp, WOL_ENABLE) || tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002202 need_vaux = true;
2203
2204 if (need_vaux) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2206 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08002207 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2208 (GRC_LCLCTRL_GPIO_OE0 |
2209 GRC_LCLCTRL_GPIO_OE1 |
2210 GRC_LCLCTRL_GPIO_OE2 |
2211 GRC_LCLCTRL_GPIO_OUTPUT0 |
2212 GRC_LCLCTRL_GPIO_OUTPUT1),
2213 100);
Matt Carlson8d519ab2009-04-20 06:58:01 +00002214 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2215 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -07002216 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2217 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2218 GRC_LCLCTRL_GPIO_OE1 |
2219 GRC_LCLCTRL_GPIO_OE2 |
2220 GRC_LCLCTRL_GPIO_OUTPUT0 |
2221 GRC_LCLCTRL_GPIO_OUTPUT1 |
2222 tp->grc_local_ctrl;
2223 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2224
2225 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2226 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2227
2228 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2229 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 } else {
2231 u32 no_gpio2;
Michael Chandc56b7d2005-12-19 16:26:28 -08002232 u32 grc_local_ctrl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Michael Chandc56b7d2005-12-19 16:26:28 -08002234 /* Workaround to prevent overdrawing Amps. */
2235 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2236 ASIC_REV_5714) {
2237 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chanb401e9e2005-12-19 16:27:04 -08002238 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2239 grc_local_ctrl, 100);
Michael Chandc56b7d2005-12-19 16:26:28 -08002240 }
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 /* On 5753 and variants, GPIO2 cannot be used. */
2243 no_gpio2 = tp->nic_sram_data_cfg &
2244 NIC_SRAM_DATA_CFG_NO_GPIO2;
2245
Michael Chandc56b7d2005-12-19 16:26:28 -08002246 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 GRC_LCLCTRL_GPIO_OE1 |
2248 GRC_LCLCTRL_GPIO_OE2 |
2249 GRC_LCLCTRL_GPIO_OUTPUT1 |
2250 GRC_LCLCTRL_GPIO_OUTPUT2;
2251 if (no_gpio2) {
2252 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2253 GRC_LCLCTRL_GPIO_OUTPUT2);
2254 }
Michael Chanb401e9e2005-12-19 16:27:04 -08002255 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2256 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2259
Michael Chanb401e9e2005-12-19 16:27:04 -08002260 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2261 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 if (!no_gpio2) {
2264 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chanb401e9e2005-12-19 16:27:04 -08002265 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2266 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
2268 }
2269 } else {
2270 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
2271 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08002272 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2273 (GRC_LCLCTRL_GPIO_OE1 |
2274 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Michael Chanb401e9e2005-12-19 16:27:04 -08002276 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2277 GRC_LCLCTRL_GPIO_OE1, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
Michael Chanb401e9e2005-12-19 16:27:04 -08002279 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2280 (GRC_LCLCTRL_GPIO_OE1 |
2281 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
2283 }
2284}
2285
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002286static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2287{
2288 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2289 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002290 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002291 if (speed != SPEED_10)
2292 return 1;
2293 } else if (speed == SPEED_10)
2294 return 1;
2295
2296 return 0;
2297}
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299static int tg3_setup_phy(struct tg3 *, int);
2300
2301#define RESET_KIND_SHUTDOWN 0
2302#define RESET_KIND_INIT 1
2303#define RESET_KIND_SUSPEND 2
2304
2305static void tg3_write_sig_post_reset(struct tg3 *, int);
2306static int tg3_halt_cpu(struct tg3 *, u32);
2307
Matt Carlson0a459aa2008-11-03 16:54:15 -08002308static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002309{
Matt Carlsonce057f02007-11-12 21:08:03 -08002310 u32 val;
2311
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002312 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Michael Chan51297242007-02-13 12:17:57 -08002313 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2314 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2315 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2316
2317 sg_dig_ctrl |=
2318 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2319 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2320 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2321 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002322 return;
Michael Chan51297242007-02-13 12:17:57 -08002323 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002324
Michael Chan60189dd2006-12-17 17:08:07 -08002325 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002326 tg3_bmcr_reset(tp);
2327 val = tr32(GRC_MISC_CFG);
2328 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2329 udelay(40);
2330 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002331 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002332 u32 phytest;
2333 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2334 u32 phy;
2335
2336 tg3_writephy(tp, MII_ADVERTISE, 0);
2337 tg3_writephy(tp, MII_BMCR,
2338 BMCR_ANENABLE | BMCR_ANRESTART);
2339
2340 tg3_writephy(tp, MII_TG3_FET_TEST,
2341 phytest | MII_TG3_FET_SHADOW_EN);
2342 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2343 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2344 tg3_writephy(tp,
2345 MII_TG3_FET_SHDW_AUXMODE4,
2346 phy);
2347 }
2348 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2349 }
2350 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002351 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002352 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2353 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002354
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002355 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2356 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2357 MII_TG3_AUXCTL_PCTL_VREG_11V;
2358 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002359 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002360
Michael Chan15c3b692006-03-22 01:06:52 -08002361 /* The PHY should not be powered down on some chips because
2362 * of bugs.
2363 */
2364 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2365 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2366 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002367 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Michael Chan15c3b692006-03-22 01:06:52 -08002368 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002369
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002370 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2371 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002372 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2373 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2374 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2375 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2376 }
2377
Michael Chan15c3b692006-03-22 01:06:52 -08002378 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2379}
2380
Matt Carlson3f007892008-11-03 16:51:36 -08002381/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002382static int tg3_nvram_lock(struct tg3 *tp)
2383{
Joe Perches63c3a662011-04-26 08:12:10 +00002384 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002385 int i;
2386
2387 if (tp->nvram_lock_cnt == 0) {
2388 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2389 for (i = 0; i < 8000; i++) {
2390 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2391 break;
2392 udelay(20);
2393 }
2394 if (i == 8000) {
2395 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2396 return -ENODEV;
2397 }
2398 }
2399 tp->nvram_lock_cnt++;
2400 }
2401 return 0;
2402}
2403
2404/* tp->lock is held. */
2405static void tg3_nvram_unlock(struct tg3 *tp)
2406{
Joe Perches63c3a662011-04-26 08:12:10 +00002407 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002408 if (tp->nvram_lock_cnt > 0)
2409 tp->nvram_lock_cnt--;
2410 if (tp->nvram_lock_cnt == 0)
2411 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2412 }
2413}
2414
2415/* tp->lock is held. */
2416static void tg3_enable_nvram_access(struct tg3 *tp)
2417{
Joe Perches63c3a662011-04-26 08:12:10 +00002418 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002419 u32 nvaccess = tr32(NVRAM_ACCESS);
2420
2421 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2422 }
2423}
2424
2425/* tp->lock is held. */
2426static void tg3_disable_nvram_access(struct tg3 *tp)
2427{
Joe Perches63c3a662011-04-26 08:12:10 +00002428 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002429 u32 nvaccess = tr32(NVRAM_ACCESS);
2430
2431 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2432 }
2433}
2434
2435static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2436 u32 offset, u32 *val)
2437{
2438 u32 tmp;
2439 int i;
2440
2441 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2442 return -EINVAL;
2443
2444 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2445 EEPROM_ADDR_DEVID_MASK |
2446 EEPROM_ADDR_READ);
2447 tw32(GRC_EEPROM_ADDR,
2448 tmp |
2449 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2450 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2451 EEPROM_ADDR_ADDR_MASK) |
2452 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2453
2454 for (i = 0; i < 1000; i++) {
2455 tmp = tr32(GRC_EEPROM_ADDR);
2456
2457 if (tmp & EEPROM_ADDR_COMPLETE)
2458 break;
2459 msleep(1);
2460 }
2461 if (!(tmp & EEPROM_ADDR_COMPLETE))
2462 return -EBUSY;
2463
Matt Carlson62cedd12009-04-20 14:52:29 -07002464 tmp = tr32(GRC_EEPROM_DATA);
2465
2466 /*
2467 * The data will always be opposite the native endian
2468 * format. Perform a blind byteswap to compensate.
2469 */
2470 *val = swab32(tmp);
2471
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002472 return 0;
2473}
2474
2475#define NVRAM_CMD_TIMEOUT 10000
2476
2477static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2478{
2479 int i;
2480
2481 tw32(NVRAM_CMD, nvram_cmd);
2482 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2483 udelay(10);
2484 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2485 udelay(10);
2486 break;
2487 }
2488 }
2489
2490 if (i == NVRAM_CMD_TIMEOUT)
2491 return -EBUSY;
2492
2493 return 0;
2494}
2495
2496static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2497{
Joe Perches63c3a662011-04-26 08:12:10 +00002498 if (tg3_flag(tp, NVRAM) &&
2499 tg3_flag(tp, NVRAM_BUFFERED) &&
2500 tg3_flag(tp, FLASH) &&
2501 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002502 (tp->nvram_jedecnum == JEDEC_ATMEL))
2503
2504 addr = ((addr / tp->nvram_pagesize) <<
2505 ATMEL_AT45DB0X1B_PAGE_POS) +
2506 (addr % tp->nvram_pagesize);
2507
2508 return addr;
2509}
2510
2511static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2512{
Joe Perches63c3a662011-04-26 08:12:10 +00002513 if (tg3_flag(tp, NVRAM) &&
2514 tg3_flag(tp, NVRAM_BUFFERED) &&
2515 tg3_flag(tp, FLASH) &&
2516 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002517 (tp->nvram_jedecnum == JEDEC_ATMEL))
2518
2519 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2520 tp->nvram_pagesize) +
2521 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2522
2523 return addr;
2524}
2525
Matt Carlsone4f34112009-02-25 14:25:00 +00002526/* NOTE: Data read in from NVRAM is byteswapped according to
2527 * the byteswapping settings for all other register accesses.
2528 * tg3 devices are BE devices, so on a BE machine, the data
2529 * returned will be exactly as it is seen in NVRAM. On a LE
2530 * machine, the 32-bit value will be byteswapped.
2531 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002532static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2533{
2534 int ret;
2535
Joe Perches63c3a662011-04-26 08:12:10 +00002536 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002537 return tg3_nvram_read_using_eeprom(tp, offset, val);
2538
2539 offset = tg3_nvram_phys_addr(tp, offset);
2540
2541 if (offset > NVRAM_ADDR_MSK)
2542 return -EINVAL;
2543
2544 ret = tg3_nvram_lock(tp);
2545 if (ret)
2546 return ret;
2547
2548 tg3_enable_nvram_access(tp);
2549
2550 tw32(NVRAM_ADDR, offset);
2551 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2552 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2553
2554 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002555 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002556
2557 tg3_disable_nvram_access(tp);
2558
2559 tg3_nvram_unlock(tp);
2560
2561 return ret;
2562}
2563
Matt Carlsona9dc5292009-02-25 14:25:30 +00002564/* Ensures NVRAM data is in bytestream format. */
2565static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002566{
2567 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002568 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002569 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002570 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002571 return res;
2572}
2573
2574/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08002575static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
2576{
2577 u32 addr_high, addr_low;
2578 int i;
2579
2580 addr_high = ((tp->dev->dev_addr[0] << 8) |
2581 tp->dev->dev_addr[1]);
2582 addr_low = ((tp->dev->dev_addr[2] << 24) |
2583 (tp->dev->dev_addr[3] << 16) |
2584 (tp->dev->dev_addr[4] << 8) |
2585 (tp->dev->dev_addr[5] << 0));
2586 for (i = 0; i < 4; i++) {
2587 if (i == 1 && skip_mac_1)
2588 continue;
2589 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
2590 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
2591 }
2592
2593 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2594 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2595 for (i = 0; i < 12; i++) {
2596 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
2597 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
2598 }
2599 }
2600
2601 addr_high = (tp->dev->dev_addr[0] +
2602 tp->dev->dev_addr[1] +
2603 tp->dev->dev_addr[2] +
2604 tp->dev->dev_addr[3] +
2605 tp->dev->dev_addr[4] +
2606 tp->dev->dev_addr[5]) &
2607 TX_BACKOFF_SEED_MASK;
2608 tw32(MAC_TX_BACKOFF_SEED, addr_high);
2609}
2610
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002611static void tg3_enable_register_access(struct tg3 *tp)
2612{
2613 /*
2614 * Make sure register accesses (indirect or otherwise) will function
2615 * correctly.
2616 */
2617 pci_write_config_dword(tp->pdev,
2618 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
2619}
2620
2621static int tg3_power_up(struct tg3 *tp)
2622{
2623 tg3_enable_register_access(tp);
2624
2625 pci_set_power_state(tp->pdev, PCI_D0);
2626
2627 /* Switch out of Vaux if it is a NIC */
Joe Perches63c3a662011-04-26 08:12:10 +00002628 if (tg3_flag(tp, IS_NIC))
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002629 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl, 100);
2630
2631 return 0;
2632}
2633
2634static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635{
2636 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002637 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002639 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002640
2641 /* Restore the CLKREQ setting. */
Joe Perches63c3a662011-04-26 08:12:10 +00002642 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002643 u16 lnkctl;
2644
2645 pci_read_config_word(tp->pdev,
2646 tp->pcie_cap + PCI_EXP_LNKCTL,
2647 &lnkctl);
2648 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
2649 pci_write_config_word(tp->pdev,
2650 tp->pcie_cap + PCI_EXP_LNKCTL,
2651 lnkctl);
2652 }
2653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
2655 tw32(TG3PCI_MISC_HOST_CTRL,
2656 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
2657
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002658 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00002659 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002660
Joe Perches63c3a662011-04-26 08:12:10 +00002661 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002662 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002663 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00002664 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002665 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002666 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002667
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002668 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002669
Matt Carlson80096062010-08-02 11:26:06 +00002670 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002671
2672 tp->link_config.orig_speed = phydev->speed;
2673 tp->link_config.orig_duplex = phydev->duplex;
2674 tp->link_config.orig_autoneg = phydev->autoneg;
2675 tp->link_config.orig_advertising = phydev->advertising;
2676
2677 advertising = ADVERTISED_TP |
2678 ADVERTISED_Pause |
2679 ADVERTISED_Autoneg |
2680 ADVERTISED_10baseT_Half;
2681
Joe Perches63c3a662011-04-26 08:12:10 +00002682 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
2683 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002684 advertising |=
2685 ADVERTISED_100baseT_Half |
2686 ADVERTISED_100baseT_Full |
2687 ADVERTISED_10baseT_Full;
2688 else
2689 advertising |= ADVERTISED_10baseT_Full;
2690 }
2691
2692 phydev->advertising = advertising;
2693
2694 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002695
2696 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00002697 if (phyid != PHY_ID_BCMAC131) {
2698 phyid &= PHY_BCM_OUI_MASK;
2699 if (phyid == PHY_BCM_OUI_1 ||
2700 phyid == PHY_BCM_OUI_2 ||
2701 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08002702 do_low_power = true;
2703 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002704 }
Matt Carlsondd477002008-05-25 23:45:58 -07002705 } else {
Matt Carlson20232762008-12-21 20:18:56 -08002706 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002707
Matt Carlson80096062010-08-02 11:26:06 +00002708 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
2709 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07002710 tp->link_config.orig_speed = tp->link_config.speed;
2711 tp->link_config.orig_duplex = tp->link_config.duplex;
2712 tp->link_config.orig_autoneg = tp->link_config.autoneg;
2713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002715 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Matt Carlsondd477002008-05-25 23:45:58 -07002716 tp->link_config.speed = SPEED_10;
2717 tp->link_config.duplex = DUPLEX_HALF;
2718 tp->link_config.autoneg = AUTONEG_ENABLE;
2719 tg3_setup_phy(tp, 0);
2720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 }
2722
Michael Chanb5d37722006-09-27 16:06:21 -07002723 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2724 u32 val;
2725
2726 val = tr32(GRC_VCPU_EXT_CTRL);
2727 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00002728 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08002729 int i;
2730 u32 val;
2731
2732 for (i = 0; i < 200; i++) {
2733 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
2734 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
2735 break;
2736 msleep(1);
2737 }
2738 }
Joe Perches63c3a662011-04-26 08:12:10 +00002739 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07002740 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
2741 WOL_DRV_STATE_SHUTDOWN |
2742 WOL_DRV_WOL |
2743 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08002744
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002745 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 u32 mac_mode;
2747
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002748 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002749 if (do_low_power &&
2750 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
2751 tg3_phy_auxctl_write(tp,
2752 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
2753 MII_TG3_AUXCTL_PCTL_WOL_EN |
2754 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2755 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07002756 udelay(40);
2757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002759 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07002760 mac_mode = MAC_MODE_PORT_MODE_GMII;
2761 else
2762 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002764 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
2765 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2766 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00002767 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002768 SPEED_100 : SPEED_10;
2769 if (tg3_5700_link_polarity(tp, speed))
2770 mac_mode |= MAC_MODE_LINK_POLARITY;
2771 else
2772 mac_mode &= ~MAC_MODE_LINK_POLARITY;
2773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 } else {
2775 mac_mode = MAC_MODE_PORT_MODE_TBI;
2776 }
2777
Joe Perches63c3a662011-04-26 08:12:10 +00002778 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 tw32(MAC_LED_CTRL, tp->led_ctrl);
2780
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002781 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00002782 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
2783 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002784 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Joe Perches63c3a662011-04-26 08:12:10 +00002786 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00002787 mac_mode |= MAC_MODE_APE_TX_EN |
2788 MAC_MODE_APE_RX_EN |
2789 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07002790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 tw32_f(MAC_MODE, mac_mode);
2792 udelay(100);
2793
2794 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
2795 udelay(10);
2796 }
2797
Joe Perches63c3a662011-04-26 08:12:10 +00002798 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2800 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
2801 u32 base_val;
2802
2803 base_val = tp->pci_clock_ctrl;
2804 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
2805 CLOCK_CTRL_TXCLK_DISABLE);
2806
Michael Chanb401e9e2005-12-19 16:27:04 -08002807 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
2808 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00002809 } else if (tg3_flag(tp, 5780_CLASS) ||
2810 tg3_flag(tp, CPMU_PRESENT) ||
Matt Carlson6ff6f812011-05-19 12:12:54 +00002811 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07002812 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00002813 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 u32 newbits1, newbits2;
2815
2816 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2817 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2818 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
2819 CLOCK_CTRL_TXCLK_DISABLE |
2820 CLOCK_CTRL_ALTCLK);
2821 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00002822 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 newbits1 = CLOCK_CTRL_625_CORE;
2824 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
2825 } else {
2826 newbits1 = CLOCK_CTRL_ALTCLK;
2827 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2828 }
2829
Michael Chanb401e9e2005-12-19 16:27:04 -08002830 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
2831 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
Michael Chanb401e9e2005-12-19 16:27:04 -08002833 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
2834 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Joe Perches63c3a662011-04-26 08:12:10 +00002836 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 u32 newbits3;
2838
2839 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2840 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2841 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
2842 CLOCK_CTRL_TXCLK_DISABLE |
2843 CLOCK_CTRL_44MHZ_CORE);
2844 } else {
2845 newbits3 = CLOCK_CTRL_44MHZ_CORE;
2846 }
2847
Michael Chanb401e9e2005-12-19 16:27:04 -08002848 tw32_wait_f(TG3PCI_CLOCK_CTRL,
2849 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 }
2851 }
2852
Joe Perches63c3a662011-04-26 08:12:10 +00002853 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08002854 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08002855
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 tg3_frob_aux_power(tp);
2857
2858 /* Workaround for unstable PLL clock */
2859 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
2860 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
2861 u32 val = tr32(0x7d00);
2862
2863 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
2864 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00002865 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08002866 int err;
2867
2868 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08002870 if (!err)
2871 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08002872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 }
2874
Michael Chanbbadf502006-04-06 21:46:34 -07002875 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return 0;
2878}
2879
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002880static void tg3_power_down(struct tg3 *tp)
2881{
2882 tg3_power_down_prepare(tp);
2883
Joe Perches63c3a662011-04-26 08:12:10 +00002884 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002885 pci_set_power_state(tp->pdev, PCI_D3hot);
2886}
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
2889{
2890 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
2891 case MII_TG3_AUX_STAT_10HALF:
2892 *speed = SPEED_10;
2893 *duplex = DUPLEX_HALF;
2894 break;
2895
2896 case MII_TG3_AUX_STAT_10FULL:
2897 *speed = SPEED_10;
2898 *duplex = DUPLEX_FULL;
2899 break;
2900
2901 case MII_TG3_AUX_STAT_100HALF:
2902 *speed = SPEED_100;
2903 *duplex = DUPLEX_HALF;
2904 break;
2905
2906 case MII_TG3_AUX_STAT_100FULL:
2907 *speed = SPEED_100;
2908 *duplex = DUPLEX_FULL;
2909 break;
2910
2911 case MII_TG3_AUX_STAT_1000HALF:
2912 *speed = SPEED_1000;
2913 *duplex = DUPLEX_HALF;
2914 break;
2915
2916 case MII_TG3_AUX_STAT_1000FULL:
2917 *speed = SPEED_1000;
2918 *duplex = DUPLEX_FULL;
2919 break;
2920
2921 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002922 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07002923 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
2924 SPEED_10;
2925 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
2926 DUPLEX_HALF;
2927 break;
2928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 *speed = SPEED_INVALID;
2930 *duplex = DUPLEX_INVALID;
2931 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933}
2934
Matt Carlson42b64a42011-05-19 12:12:49 +00002935static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
Matt Carlson42b64a42011-05-19 12:12:49 +00002937 int err = 0;
2938 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
Matt Carlson42b64a42011-05-19 12:12:49 +00002940 new_adv = ADVERTISE_CSMA;
2941 if (advertise & ADVERTISED_10baseT_Half)
2942 new_adv |= ADVERTISE_10HALF;
2943 if (advertise & ADVERTISED_10baseT_Full)
2944 new_adv |= ADVERTISE_10FULL;
2945 if (advertise & ADVERTISED_100baseT_Half)
2946 new_adv |= ADVERTISE_100HALF;
2947 if (advertise & ADVERTISED_100baseT_Full)
2948 new_adv |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
Matt Carlson42b64a42011-05-19 12:12:49 +00002950 new_adv |= tg3_advert_flowctrl_1000T(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
Matt Carlson42b64a42011-05-19 12:12:49 +00002952 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
2953 if (err)
2954 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Matt Carlson42b64a42011-05-19 12:12:49 +00002956 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
2957 goto done;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002958
Matt Carlson42b64a42011-05-19 12:12:49 +00002959 new_adv = 0;
2960 if (advertise & ADVERTISED_1000baseT_Half)
2961 new_adv |= MII_TG3_CTRL_ADV_1000_HALF;
2962 if (advertise & ADVERTISED_1000baseT_Full)
2963 new_adv |= MII_TG3_CTRL_ADV_1000_FULL;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002964
Matt Carlson42b64a42011-05-19 12:12:49 +00002965 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2966 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
2967 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2968 MII_TG3_CTRL_ENABLE_AS_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Matt Carlson42b64a42011-05-19 12:12:49 +00002970 err = tg3_writephy(tp, MII_TG3_CTRL, new_adv);
2971 if (err)
2972 goto done;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002973
Matt Carlson42b64a42011-05-19 12:12:49 +00002974 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2975 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Matt Carlson42b64a42011-05-19 12:12:49 +00002977 tw32(TG3_CPMU_EEE_MODE,
2978 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002979
Matt Carlson42b64a42011-05-19 12:12:49 +00002980 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
2981 if (!err) {
2982 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00002983
Matt Carlson21a00ab2011-01-25 15:58:55 +00002984 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
2985 case ASIC_REV_5717:
2986 case ASIC_REV_57765:
2987 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
2988 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
2989 MII_TG3_DSP_CH34TP2_HIBW01);
2990 /* Fall through */
2991 case ASIC_REV_5719:
2992 val = MII_TG3_DSP_TAP26_ALNOKO |
2993 MII_TG3_DSP_TAP26_RMRXSTO |
2994 MII_TG3_DSP_TAP26_OPCSINPT;
2995 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
2996 }
Matt Carlson52b02d02010-10-14 10:37:41 +00002997
Matt Carlsona6b68da2010-12-06 08:28:52 +00002998 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00002999 /* Advertise 100-BaseTX EEE ability */
3000 if (advertise & ADVERTISED_100baseT_Full)
3001 val |= MDIO_AN_EEE_ADV_100TX;
3002 /* Advertise 1000-BaseT EEE ability */
3003 if (advertise & ADVERTISED_1000baseT_Full)
3004 val |= MDIO_AN_EEE_ADV_1000T;
3005 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlson52b02d02010-10-14 10:37:41 +00003006
Matt Carlson42b64a42011-05-19 12:12:49 +00003007 err2 = TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
3008 if (!err)
3009 err = err2;
3010 }
3011
3012done:
3013 return err;
3014}
3015
3016static void tg3_phy_copper_begin(struct tg3 *tp)
3017{
3018 u32 new_adv;
3019 int i;
3020
3021 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
3022 new_adv = ADVERTISED_10baseT_Half |
3023 ADVERTISED_10baseT_Full;
3024 if (tg3_flag(tp, WOL_SPEED_100MB))
3025 new_adv |= ADVERTISED_100baseT_Half |
3026 ADVERTISED_100baseT_Full;
3027
3028 tg3_phy_autoneg_cfg(tp, new_adv,
3029 FLOW_CTRL_TX | FLOW_CTRL_RX);
3030 } else if (tp->link_config.speed == SPEED_INVALID) {
3031 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
3032 tp->link_config.advertising &=
3033 ~(ADVERTISED_1000baseT_Half |
3034 ADVERTISED_1000baseT_Full);
3035
3036 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
3037 tp->link_config.flowctrl);
3038 } else {
3039 /* Asking for a specific link mode. */
3040 if (tp->link_config.speed == SPEED_1000) {
3041 if (tp->link_config.duplex == DUPLEX_FULL)
3042 new_adv = ADVERTISED_1000baseT_Full;
3043 else
3044 new_adv = ADVERTISED_1000baseT_Half;
3045 } else if (tp->link_config.speed == SPEED_100) {
3046 if (tp->link_config.duplex == DUPLEX_FULL)
3047 new_adv = ADVERTISED_100baseT_Full;
3048 else
3049 new_adv = ADVERTISED_100baseT_Half;
3050 } else {
3051 if (tp->link_config.duplex == DUPLEX_FULL)
3052 new_adv = ADVERTISED_10baseT_Full;
3053 else
3054 new_adv = ADVERTISED_10baseT_Half;
3055 }
3056
3057 tg3_phy_autoneg_cfg(tp, new_adv,
3058 tp->link_config.flowctrl);
Matt Carlson52b02d02010-10-14 10:37:41 +00003059 }
3060
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
3062 tp->link_config.speed != SPEED_INVALID) {
3063 u32 bmcr, orig_bmcr;
3064
3065 tp->link_config.active_speed = tp->link_config.speed;
3066 tp->link_config.active_duplex = tp->link_config.duplex;
3067
3068 bmcr = 0;
3069 switch (tp->link_config.speed) {
3070 default:
3071 case SPEED_10:
3072 break;
3073
3074 case SPEED_100:
3075 bmcr |= BMCR_SPEED100;
3076 break;
3077
3078 case SPEED_1000:
3079 bmcr |= TG3_BMCR_SPEED1000;
3080 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
3083 if (tp->link_config.duplex == DUPLEX_FULL)
3084 bmcr |= BMCR_FULLDPLX;
3085
3086 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
3087 (bmcr != orig_bmcr)) {
3088 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
3089 for (i = 0; i < 1500; i++) {
3090 u32 tmp;
3091
3092 udelay(10);
3093 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
3094 tg3_readphy(tp, MII_BMSR, &tmp))
3095 continue;
3096 if (!(tmp & BMSR_LSTATUS)) {
3097 udelay(40);
3098 break;
3099 }
3100 }
3101 tg3_writephy(tp, MII_BMCR, bmcr);
3102 udelay(40);
3103 }
3104 } else {
3105 tg3_writephy(tp, MII_BMCR,
3106 BMCR_ANENABLE | BMCR_ANRESTART);
3107 }
3108}
3109
3110static int tg3_init_5401phy_dsp(struct tg3 *tp)
3111{
3112 int err;
3113
3114 /* Turn off tap power management. */
3115 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003116 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00003118 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
3119 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
3120 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
3121 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
3122 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
3124 udelay(40);
3125
3126 return err;
3127}
3128
Michael Chan3600d912006-12-07 00:21:48 -08003129static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130{
Michael Chan3600d912006-12-07 00:21:48 -08003131 u32 adv_reg, all_mask = 0;
3132
3133 if (mask & ADVERTISED_10baseT_Half)
3134 all_mask |= ADVERTISE_10HALF;
3135 if (mask & ADVERTISED_10baseT_Full)
3136 all_mask |= ADVERTISE_10FULL;
3137 if (mask & ADVERTISED_100baseT_Half)
3138 all_mask |= ADVERTISE_100HALF;
3139 if (mask & ADVERTISED_100baseT_Full)
3140 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
3142 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
3143 return 0;
3144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 if ((adv_reg & all_mask) != all_mask)
3146 return 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003147 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 u32 tg3_ctrl;
3149
Michael Chan3600d912006-12-07 00:21:48 -08003150 all_mask = 0;
3151 if (mask & ADVERTISED_1000baseT_Half)
3152 all_mask |= ADVERTISE_1000HALF;
3153 if (mask & ADVERTISED_1000baseT_Full)
3154 all_mask |= ADVERTISE_1000FULL;
3155
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 if (tg3_readphy(tp, MII_TG3_CTRL, &tg3_ctrl))
3157 return 0;
3158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 if ((tg3_ctrl & all_mask) != all_mask)
3160 return 0;
3161 }
3162 return 1;
3163}
3164
Matt Carlsonef167e22007-12-20 20:10:01 -08003165static int tg3_adv_1000T_flowctrl_ok(struct tg3 *tp, u32 *lcladv, u32 *rmtadv)
3166{
3167 u32 curadv, reqadv;
3168
3169 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
3170 return 1;
3171
3172 curadv = *lcladv & (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
3173 reqadv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
3174
3175 if (tp->link_config.active_duplex == DUPLEX_FULL) {
3176 if (curadv != reqadv)
3177 return 0;
3178
Joe Perches63c3a662011-04-26 08:12:10 +00003179 if (tg3_flag(tp, PAUSE_AUTONEG))
Matt Carlsonef167e22007-12-20 20:10:01 -08003180 tg3_readphy(tp, MII_LPA, rmtadv);
3181 } else {
3182 /* Reprogram the advertisement register, even if it
3183 * does not affect the current link. If the link
3184 * gets renegotiated in the future, we can save an
3185 * additional renegotiation cycle by advertising
3186 * it correctly in the first place.
3187 */
3188 if (curadv != reqadv) {
3189 *lcladv &= ~(ADVERTISE_PAUSE_CAP |
3190 ADVERTISE_PAUSE_ASYM);
3191 tg3_writephy(tp, MII_ADVERTISE, *lcladv | reqadv);
3192 }
3193 }
3194
3195 return 1;
3196}
3197
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
3199{
3200 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003201 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08003202 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 u16 current_speed;
3204 u8 current_duplex;
3205 int i, err;
3206
3207 tw32(MAC_EVENT, 0);
3208
3209 tw32_f(MAC_STATUS,
3210 (MAC_STATUS_SYNC_CHANGED |
3211 MAC_STATUS_CFG_CHANGED |
3212 MAC_STATUS_MI_COMPLETION |
3213 MAC_STATUS_LNKSTATE_CHANGED));
3214 udelay(40);
3215
Matt Carlson8ef21422008-05-02 16:47:53 -07003216 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
3217 tw32_f(MAC_MI_MODE,
3218 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
3219 udelay(80);
3220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003222 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
3224 /* Some third-party PHYs need to be reset on link going
3225 * down.
3226 */
3227 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3228 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
3229 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
3230 netif_carrier_ok(tp->dev)) {
3231 tg3_readphy(tp, MII_BMSR, &bmsr);
3232 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3233 !(bmsr & BMSR_LSTATUS))
3234 force_reset = 1;
3235 }
3236 if (force_reset)
3237 tg3_phy_reset(tp);
3238
Matt Carlson79eb6902010-02-17 15:17:03 +00003239 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 tg3_readphy(tp, MII_BMSR, &bmsr);
3241 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00003242 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 bmsr = 0;
3244
3245 if (!(bmsr & BMSR_LSTATUS)) {
3246 err = tg3_init_5401phy_dsp(tp);
3247 if (err)
3248 return err;
3249
3250 tg3_readphy(tp, MII_BMSR, &bmsr);
3251 for (i = 0; i < 1000; i++) {
3252 udelay(10);
3253 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3254 (bmsr & BMSR_LSTATUS)) {
3255 udelay(40);
3256 break;
3257 }
3258 }
3259
Matt Carlson79eb6902010-02-17 15:17:03 +00003260 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
3261 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 !(bmsr & BMSR_LSTATUS) &&
3263 tp->link_config.active_speed == SPEED_1000) {
3264 err = tg3_phy_reset(tp);
3265 if (!err)
3266 err = tg3_init_5401phy_dsp(tp);
3267 if (err)
3268 return err;
3269 }
3270 }
3271 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3272 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
3273 /* 5701 {A0,B0} CRC bug workaround */
3274 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00003275 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
3276 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
3277 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 }
3279
3280 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003281 tg3_readphy(tp, MII_TG3_ISTAT, &val);
3282 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003284 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003286 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 tg3_writephy(tp, MII_TG3_IMASK, ~0);
3288
3289 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3290 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3291 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
3292 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3293 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
3294 else
3295 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
3296 }
3297
3298 current_link_up = 0;
3299 current_speed = SPEED_INVALID;
3300 current_duplex = DUPLEX_INVALID;
3301
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003302 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00003303 err = tg3_phy_auxctl_read(tp,
3304 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3305 &val);
3306 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003307 tg3_phy_auxctl_write(tp,
3308 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3309 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 goto relink;
3311 }
3312 }
3313
3314 bmsr = 0;
3315 for (i = 0; i < 100; i++) {
3316 tg3_readphy(tp, MII_BMSR, &bmsr);
3317 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3318 (bmsr & BMSR_LSTATUS))
3319 break;
3320 udelay(40);
3321 }
3322
3323 if (bmsr & BMSR_LSTATUS) {
3324 u32 aux_stat, bmcr;
3325
3326 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
3327 for (i = 0; i < 2000; i++) {
3328 udelay(10);
3329 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
3330 aux_stat)
3331 break;
3332 }
3333
3334 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
3335 &current_speed,
3336 &current_duplex);
3337
3338 bmcr = 0;
3339 for (i = 0; i < 200; i++) {
3340 tg3_readphy(tp, MII_BMCR, &bmcr);
3341 if (tg3_readphy(tp, MII_BMCR, &bmcr))
3342 continue;
3343 if (bmcr && bmcr != 0x7fff)
3344 break;
3345 udelay(10);
3346 }
3347
Matt Carlsonef167e22007-12-20 20:10:01 -08003348 lcl_adv = 0;
3349 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
Matt Carlsonef167e22007-12-20 20:10:01 -08003351 tp->link_config.active_speed = current_speed;
3352 tp->link_config.active_duplex = current_duplex;
3353
3354 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3355 if ((bmcr & BMCR_ANENABLE) &&
3356 tg3_copper_is_advertising_all(tp,
3357 tp->link_config.advertising)) {
3358 if (tg3_adv_1000T_flowctrl_ok(tp, &lcl_adv,
3359 &rmt_adv))
3360 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 }
3362 } else {
3363 if (!(bmcr & BMCR_ANENABLE) &&
3364 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08003365 tp->link_config.duplex == current_duplex &&
3366 tp->link_config.flowctrl ==
3367 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 }
3370 }
3371
Matt Carlsonef167e22007-12-20 20:10:01 -08003372 if (current_link_up == 1 &&
3373 tp->link_config.active_duplex == DUPLEX_FULL)
3374 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 }
3376
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377relink:
Matt Carlson80096062010-08-02 11:26:06 +00003378 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 tg3_phy_copper_begin(tp);
3380
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003381 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00003382 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
3383 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 current_link_up = 1;
3385 }
3386
3387 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
3388 if (current_link_up == 1) {
3389 if (tp->link_config.active_speed == SPEED_100 ||
3390 tp->link_config.active_speed == SPEED_10)
3391 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3392 else
3393 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003394 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00003395 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3396 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
3398
3399 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
3400 if (tp->link_config.active_duplex == DUPLEX_HALF)
3401 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
3402
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003404 if (current_link_up == 1 &&
3405 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003407 else
3408 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 }
3410
3411 /* ??? Without this setting Netgear GA302T PHY does not
3412 * ??? send/receive packets...
3413 */
Matt Carlson79eb6902010-02-17 15:17:03 +00003414 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
3416 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
3417 tw32_f(MAC_MI_MODE, tp->mi_mode);
3418 udelay(80);
3419 }
3420
3421 tw32_f(MAC_MODE, tp->mac_mode);
3422 udelay(40);
3423
Matt Carlson52b02d02010-10-14 10:37:41 +00003424 tg3_phy_eee_adjust(tp, current_link_up);
3425
Joe Perches63c3a662011-04-26 08:12:10 +00003426 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 /* Polled via timer. */
3428 tw32_f(MAC_EVENT, 0);
3429 } else {
3430 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3431 }
3432 udelay(40);
3433
3434 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
3435 current_link_up == 1 &&
3436 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00003437 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 udelay(120);
3439 tw32_f(MAC_STATUS,
3440 (MAC_STATUS_SYNC_CHANGED |
3441 MAC_STATUS_CFG_CHANGED));
3442 udelay(40);
3443 tg3_write_mem(tp,
3444 NIC_SRAM_FIRMWARE_MBOX,
3445 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
3446 }
3447
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003448 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00003449 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003450 u16 oldlnkctl, newlnkctl;
3451
3452 pci_read_config_word(tp->pdev,
3453 tp->pcie_cap + PCI_EXP_LNKCTL,
3454 &oldlnkctl);
3455 if (tp->link_config.active_speed == SPEED_100 ||
3456 tp->link_config.active_speed == SPEED_10)
3457 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
3458 else
3459 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
3460 if (newlnkctl != oldlnkctl)
3461 pci_write_config_word(tp->pdev,
3462 tp->pcie_cap + PCI_EXP_LNKCTL,
3463 newlnkctl);
3464 }
3465
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 if (current_link_up != netif_carrier_ok(tp->dev)) {
3467 if (current_link_up)
3468 netif_carrier_on(tp->dev);
3469 else
3470 netif_carrier_off(tp->dev);
3471 tg3_link_report(tp);
3472 }
3473
3474 return 0;
3475}
3476
3477struct tg3_fiber_aneginfo {
3478 int state;
3479#define ANEG_STATE_UNKNOWN 0
3480#define ANEG_STATE_AN_ENABLE 1
3481#define ANEG_STATE_RESTART_INIT 2
3482#define ANEG_STATE_RESTART 3
3483#define ANEG_STATE_DISABLE_LINK_OK 4
3484#define ANEG_STATE_ABILITY_DETECT_INIT 5
3485#define ANEG_STATE_ABILITY_DETECT 6
3486#define ANEG_STATE_ACK_DETECT_INIT 7
3487#define ANEG_STATE_ACK_DETECT 8
3488#define ANEG_STATE_COMPLETE_ACK_INIT 9
3489#define ANEG_STATE_COMPLETE_ACK 10
3490#define ANEG_STATE_IDLE_DETECT_INIT 11
3491#define ANEG_STATE_IDLE_DETECT 12
3492#define ANEG_STATE_LINK_OK 13
3493#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
3494#define ANEG_STATE_NEXT_PAGE_WAIT 15
3495
3496 u32 flags;
3497#define MR_AN_ENABLE 0x00000001
3498#define MR_RESTART_AN 0x00000002
3499#define MR_AN_COMPLETE 0x00000004
3500#define MR_PAGE_RX 0x00000008
3501#define MR_NP_LOADED 0x00000010
3502#define MR_TOGGLE_TX 0x00000020
3503#define MR_LP_ADV_FULL_DUPLEX 0x00000040
3504#define MR_LP_ADV_HALF_DUPLEX 0x00000080
3505#define MR_LP_ADV_SYM_PAUSE 0x00000100
3506#define MR_LP_ADV_ASYM_PAUSE 0x00000200
3507#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
3508#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
3509#define MR_LP_ADV_NEXT_PAGE 0x00001000
3510#define MR_TOGGLE_RX 0x00002000
3511#define MR_NP_RX 0x00004000
3512
3513#define MR_LINK_OK 0x80000000
3514
3515 unsigned long link_time, cur_time;
3516
3517 u32 ability_match_cfg;
3518 int ability_match_count;
3519
3520 char ability_match, idle_match, ack_match;
3521
3522 u32 txconfig, rxconfig;
3523#define ANEG_CFG_NP 0x00000080
3524#define ANEG_CFG_ACK 0x00000040
3525#define ANEG_CFG_RF2 0x00000020
3526#define ANEG_CFG_RF1 0x00000010
3527#define ANEG_CFG_PS2 0x00000001
3528#define ANEG_CFG_PS1 0x00008000
3529#define ANEG_CFG_HD 0x00004000
3530#define ANEG_CFG_FD 0x00002000
3531#define ANEG_CFG_INVAL 0x00001f06
3532
3533};
3534#define ANEG_OK 0
3535#define ANEG_DONE 1
3536#define ANEG_TIMER_ENAB 2
3537#define ANEG_FAILED -1
3538
3539#define ANEG_STATE_SETTLE_TIME 10000
3540
3541static int tg3_fiber_aneg_smachine(struct tg3 *tp,
3542 struct tg3_fiber_aneginfo *ap)
3543{
Matt Carlson5be73b42007-12-20 20:09:29 -08003544 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 unsigned long delta;
3546 u32 rx_cfg_reg;
3547 int ret;
3548
3549 if (ap->state == ANEG_STATE_UNKNOWN) {
3550 ap->rxconfig = 0;
3551 ap->link_time = 0;
3552 ap->cur_time = 0;
3553 ap->ability_match_cfg = 0;
3554 ap->ability_match_count = 0;
3555 ap->ability_match = 0;
3556 ap->idle_match = 0;
3557 ap->ack_match = 0;
3558 }
3559 ap->cur_time++;
3560
3561 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
3562 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
3563
3564 if (rx_cfg_reg != ap->ability_match_cfg) {
3565 ap->ability_match_cfg = rx_cfg_reg;
3566 ap->ability_match = 0;
3567 ap->ability_match_count = 0;
3568 } else {
3569 if (++ap->ability_match_count > 1) {
3570 ap->ability_match = 1;
3571 ap->ability_match_cfg = rx_cfg_reg;
3572 }
3573 }
3574 if (rx_cfg_reg & ANEG_CFG_ACK)
3575 ap->ack_match = 1;
3576 else
3577 ap->ack_match = 0;
3578
3579 ap->idle_match = 0;
3580 } else {
3581 ap->idle_match = 1;
3582 ap->ability_match_cfg = 0;
3583 ap->ability_match_count = 0;
3584 ap->ability_match = 0;
3585 ap->ack_match = 0;
3586
3587 rx_cfg_reg = 0;
3588 }
3589
3590 ap->rxconfig = rx_cfg_reg;
3591 ret = ANEG_OK;
3592
Matt Carlson33f401a2010-04-05 10:19:27 +00003593 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 case ANEG_STATE_UNKNOWN:
3595 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
3596 ap->state = ANEG_STATE_AN_ENABLE;
3597
3598 /* fallthru */
3599 case ANEG_STATE_AN_ENABLE:
3600 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
3601 if (ap->flags & MR_AN_ENABLE) {
3602 ap->link_time = 0;
3603 ap->cur_time = 0;
3604 ap->ability_match_cfg = 0;
3605 ap->ability_match_count = 0;
3606 ap->ability_match = 0;
3607 ap->idle_match = 0;
3608 ap->ack_match = 0;
3609
3610 ap->state = ANEG_STATE_RESTART_INIT;
3611 } else {
3612 ap->state = ANEG_STATE_DISABLE_LINK_OK;
3613 }
3614 break;
3615
3616 case ANEG_STATE_RESTART_INIT:
3617 ap->link_time = ap->cur_time;
3618 ap->flags &= ~(MR_NP_LOADED);
3619 ap->txconfig = 0;
3620 tw32(MAC_TX_AUTO_NEG, 0);
3621 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3622 tw32_f(MAC_MODE, tp->mac_mode);
3623 udelay(40);
3624
3625 ret = ANEG_TIMER_ENAB;
3626 ap->state = ANEG_STATE_RESTART;
3627
3628 /* fallthru */
3629 case ANEG_STATE_RESTART:
3630 delta = ap->cur_time - ap->link_time;
Matt Carlson859a5882010-04-05 10:19:28 +00003631 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a5882010-04-05 10:19:28 +00003633 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 break;
3636
3637 case ANEG_STATE_DISABLE_LINK_OK:
3638 ret = ANEG_DONE;
3639 break;
3640
3641 case ANEG_STATE_ABILITY_DETECT_INIT:
3642 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08003643 ap->txconfig = ANEG_CFG_FD;
3644 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3645 if (flowctrl & ADVERTISE_1000XPAUSE)
3646 ap->txconfig |= ANEG_CFG_PS1;
3647 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3648 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3650 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3651 tw32_f(MAC_MODE, tp->mac_mode);
3652 udelay(40);
3653
3654 ap->state = ANEG_STATE_ABILITY_DETECT;
3655 break;
3656
3657 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a5882010-04-05 10:19:28 +00003658 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 break;
3661
3662 case ANEG_STATE_ACK_DETECT_INIT:
3663 ap->txconfig |= ANEG_CFG_ACK;
3664 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3665 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3666 tw32_f(MAC_MODE, tp->mac_mode);
3667 udelay(40);
3668
3669 ap->state = ANEG_STATE_ACK_DETECT;
3670
3671 /* fallthru */
3672 case ANEG_STATE_ACK_DETECT:
3673 if (ap->ack_match != 0) {
3674 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
3675 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
3676 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
3677 } else {
3678 ap->state = ANEG_STATE_AN_ENABLE;
3679 }
3680 } else if (ap->ability_match != 0 &&
3681 ap->rxconfig == 0) {
3682 ap->state = ANEG_STATE_AN_ENABLE;
3683 }
3684 break;
3685
3686 case ANEG_STATE_COMPLETE_ACK_INIT:
3687 if (ap->rxconfig & ANEG_CFG_INVAL) {
3688 ret = ANEG_FAILED;
3689 break;
3690 }
3691 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
3692 MR_LP_ADV_HALF_DUPLEX |
3693 MR_LP_ADV_SYM_PAUSE |
3694 MR_LP_ADV_ASYM_PAUSE |
3695 MR_LP_ADV_REMOTE_FAULT1 |
3696 MR_LP_ADV_REMOTE_FAULT2 |
3697 MR_LP_ADV_NEXT_PAGE |
3698 MR_TOGGLE_RX |
3699 MR_NP_RX);
3700 if (ap->rxconfig & ANEG_CFG_FD)
3701 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
3702 if (ap->rxconfig & ANEG_CFG_HD)
3703 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
3704 if (ap->rxconfig & ANEG_CFG_PS1)
3705 ap->flags |= MR_LP_ADV_SYM_PAUSE;
3706 if (ap->rxconfig & ANEG_CFG_PS2)
3707 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
3708 if (ap->rxconfig & ANEG_CFG_RF1)
3709 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
3710 if (ap->rxconfig & ANEG_CFG_RF2)
3711 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
3712 if (ap->rxconfig & ANEG_CFG_NP)
3713 ap->flags |= MR_LP_ADV_NEXT_PAGE;
3714
3715 ap->link_time = ap->cur_time;
3716
3717 ap->flags ^= (MR_TOGGLE_TX);
3718 if (ap->rxconfig & 0x0008)
3719 ap->flags |= MR_TOGGLE_RX;
3720 if (ap->rxconfig & ANEG_CFG_NP)
3721 ap->flags |= MR_NP_RX;
3722 ap->flags |= MR_PAGE_RX;
3723
3724 ap->state = ANEG_STATE_COMPLETE_ACK;
3725 ret = ANEG_TIMER_ENAB;
3726 break;
3727
3728 case ANEG_STATE_COMPLETE_ACK:
3729 if (ap->ability_match != 0 &&
3730 ap->rxconfig == 0) {
3731 ap->state = ANEG_STATE_AN_ENABLE;
3732 break;
3733 }
3734 delta = ap->cur_time - ap->link_time;
3735 if (delta > ANEG_STATE_SETTLE_TIME) {
3736 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
3737 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3738 } else {
3739 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
3740 !(ap->flags & MR_NP_RX)) {
3741 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3742 } else {
3743 ret = ANEG_FAILED;
3744 }
3745 }
3746 }
3747 break;
3748
3749 case ANEG_STATE_IDLE_DETECT_INIT:
3750 ap->link_time = ap->cur_time;
3751 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3752 tw32_f(MAC_MODE, tp->mac_mode);
3753 udelay(40);
3754
3755 ap->state = ANEG_STATE_IDLE_DETECT;
3756 ret = ANEG_TIMER_ENAB;
3757 break;
3758
3759 case ANEG_STATE_IDLE_DETECT:
3760 if (ap->ability_match != 0 &&
3761 ap->rxconfig == 0) {
3762 ap->state = ANEG_STATE_AN_ENABLE;
3763 break;
3764 }
3765 delta = ap->cur_time - ap->link_time;
3766 if (delta > ANEG_STATE_SETTLE_TIME) {
3767 /* XXX another gem from the Broadcom driver :( */
3768 ap->state = ANEG_STATE_LINK_OK;
3769 }
3770 break;
3771
3772 case ANEG_STATE_LINK_OK:
3773 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
3774 ret = ANEG_DONE;
3775 break;
3776
3777 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
3778 /* ??? unimplemented */
3779 break;
3780
3781 case ANEG_STATE_NEXT_PAGE_WAIT:
3782 /* ??? unimplemented */
3783 break;
3784
3785 default:
3786 ret = ANEG_FAILED;
3787 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
3790 return ret;
3791}
3792
Matt Carlson5be73b42007-12-20 20:09:29 -08003793static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794{
3795 int res = 0;
3796 struct tg3_fiber_aneginfo aninfo;
3797 int status = ANEG_FAILED;
3798 unsigned int tick;
3799 u32 tmp;
3800
3801 tw32_f(MAC_TX_AUTO_NEG, 0);
3802
3803 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
3804 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
3805 udelay(40);
3806
3807 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
3808 udelay(40);
3809
3810 memset(&aninfo, 0, sizeof(aninfo));
3811 aninfo.flags |= MR_AN_ENABLE;
3812 aninfo.state = ANEG_STATE_UNKNOWN;
3813 aninfo.cur_time = 0;
3814 tick = 0;
3815 while (++tick < 195000) {
3816 status = tg3_fiber_aneg_smachine(tp, &aninfo);
3817 if (status == ANEG_DONE || status == ANEG_FAILED)
3818 break;
3819
3820 udelay(1);
3821 }
3822
3823 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3824 tw32_f(MAC_MODE, tp->mac_mode);
3825 udelay(40);
3826
Matt Carlson5be73b42007-12-20 20:09:29 -08003827 *txflags = aninfo.txconfig;
3828 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
3830 if (status == ANEG_DONE &&
3831 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
3832 MR_LP_ADV_FULL_DUPLEX)))
3833 res = 1;
3834
3835 return res;
3836}
3837
3838static void tg3_init_bcm8002(struct tg3 *tp)
3839{
3840 u32 mac_status = tr32(MAC_STATUS);
3841 int i;
3842
3843 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00003844 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 !(mac_status & MAC_STATUS_PCS_SYNCED))
3846 return;
3847
3848 /* Set PLL lock range. */
3849 tg3_writephy(tp, 0x16, 0x8007);
3850
3851 /* SW reset */
3852 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
3853
3854 /* Wait for reset to complete. */
3855 /* XXX schedule_timeout() ... */
3856 for (i = 0; i < 500; i++)
3857 udelay(10);
3858
3859 /* Config mode; select PMA/Ch 1 regs. */
3860 tg3_writephy(tp, 0x10, 0x8411);
3861
3862 /* Enable auto-lock and comdet, select txclk for tx. */
3863 tg3_writephy(tp, 0x11, 0x0a10);
3864
3865 tg3_writephy(tp, 0x18, 0x00a0);
3866 tg3_writephy(tp, 0x16, 0x41ff);
3867
3868 /* Assert and deassert POR. */
3869 tg3_writephy(tp, 0x13, 0x0400);
3870 udelay(40);
3871 tg3_writephy(tp, 0x13, 0x0000);
3872
3873 tg3_writephy(tp, 0x11, 0x0a50);
3874 udelay(40);
3875 tg3_writephy(tp, 0x11, 0x0a10);
3876
3877 /* Wait for signal to stabilize */
3878 /* XXX schedule_timeout() ... */
3879 for (i = 0; i < 15000; i++)
3880 udelay(10);
3881
3882 /* Deselect the channel register so we can read the PHYID
3883 * later.
3884 */
3885 tg3_writephy(tp, 0x10, 0x8011);
3886}
3887
3888static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
3889{
Matt Carlson82cd3d12007-12-20 20:09:00 -08003890 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 u32 sg_dig_ctrl, sg_dig_status;
3892 u32 serdes_cfg, expected_sg_dig_ctrl;
3893 int workaround, port_a;
3894 int current_link_up;
3895
3896 serdes_cfg = 0;
3897 expected_sg_dig_ctrl = 0;
3898 workaround = 0;
3899 port_a = 1;
3900 current_link_up = 0;
3901
3902 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
3903 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
3904 workaround = 1;
3905 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
3906 port_a = 0;
3907
3908 /* preserve bits 0-11,13,14 for signal pre-emphasis */
3909 /* preserve bits 20-23 for voltage regulator */
3910 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
3911 }
3912
3913 sg_dig_ctrl = tr32(SG_DIG_CTRL);
3914
3915 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003916 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 if (workaround) {
3918 u32 val = serdes_cfg;
3919
3920 if (port_a)
3921 val |= 0xc010000;
3922 else
3923 val |= 0x4010000;
3924 tw32_f(MAC_SERDES_CFG, val);
3925 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003926
3927 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 }
3929 if (mac_status & MAC_STATUS_PCS_SYNCED) {
3930 tg3_setup_flow_control(tp, 0, 0);
3931 current_link_up = 1;
3932 }
3933 goto out;
3934 }
3935
3936 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003937 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
Matt Carlson82cd3d12007-12-20 20:09:00 -08003939 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3940 if (flowctrl & ADVERTISE_1000XPAUSE)
3941 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
3942 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3943 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
3945 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003946 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07003947 tp->serdes_counter &&
3948 ((mac_status & (MAC_STATUS_PCS_SYNCED |
3949 MAC_STATUS_RCVD_CFG)) ==
3950 MAC_STATUS_PCS_SYNCED)) {
3951 tp->serdes_counter--;
3952 current_link_up = 1;
3953 goto out;
3954 }
3955restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 if (workaround)
3957 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003958 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 udelay(5);
3960 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
3961
Michael Chan3d3ebe72006-09-27 15:59:15 -07003962 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003963 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
3965 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003966 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 mac_status = tr32(MAC_STATUS);
3968
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003969 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08003971 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972
Matt Carlson82cd3d12007-12-20 20:09:00 -08003973 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
3974 local_adv |= ADVERTISE_1000XPAUSE;
3975 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
3976 local_adv |= ADVERTISE_1000XPSE_ASYM;
3977
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003978 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003979 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003980 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003981 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
3983 tg3_setup_flow_control(tp, local_adv, remote_adv);
3984 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003985 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003986 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003987 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003988 if (tp->serdes_counter)
3989 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 else {
3991 if (workaround) {
3992 u32 val = serdes_cfg;
3993
3994 if (port_a)
3995 val |= 0xc010000;
3996 else
3997 val |= 0x4010000;
3998
3999 tw32_f(MAC_SERDES_CFG, val);
4000 }
4001
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004002 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 udelay(40);
4004
4005 /* Link parallel detection - link is up */
4006 /* only if we have PCS_SYNC and not */
4007 /* receiving config code words */
4008 mac_status = tr32(MAC_STATUS);
4009 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
4010 !(mac_status & MAC_STATUS_RCVD_CFG)) {
4011 tg3_setup_flow_control(tp, 0, 0);
4012 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004013 tp->phy_flags |=
4014 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004015 tp->serdes_counter =
4016 SERDES_PARALLEL_DET_TIMEOUT;
4017 } else
4018 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 }
4020 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07004021 } else {
4022 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004023 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 }
4025
4026out:
4027 return current_link_up;
4028}
4029
4030static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
4031{
4032 int current_link_up = 0;
4033
Michael Chan5cf64b82007-05-05 12:11:21 -07004034 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036
4037 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08004038 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004040
Matt Carlson5be73b42007-12-20 20:09:29 -08004041 if (fiber_autoneg(tp, &txflags, &rxflags)) {
4042 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Matt Carlson5be73b42007-12-20 20:09:29 -08004044 if (txflags & ANEG_CFG_PS1)
4045 local_adv |= ADVERTISE_1000XPAUSE;
4046 if (txflags & ANEG_CFG_PS2)
4047 local_adv |= ADVERTISE_1000XPSE_ASYM;
4048
4049 if (rxflags & MR_LP_ADV_SYM_PAUSE)
4050 remote_adv |= LPA_1000XPAUSE;
4051 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
4052 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053
4054 tg3_setup_flow_control(tp, local_adv, remote_adv);
4055
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 current_link_up = 1;
4057 }
4058 for (i = 0; i < 30; i++) {
4059 udelay(20);
4060 tw32_f(MAC_STATUS,
4061 (MAC_STATUS_SYNC_CHANGED |
4062 MAC_STATUS_CFG_CHANGED));
4063 udelay(40);
4064 if ((tr32(MAC_STATUS) &
4065 (MAC_STATUS_SYNC_CHANGED |
4066 MAC_STATUS_CFG_CHANGED)) == 0)
4067 break;
4068 }
4069
4070 mac_status = tr32(MAC_STATUS);
4071 if (current_link_up == 0 &&
4072 (mac_status & MAC_STATUS_PCS_SYNCED) &&
4073 !(mac_status & MAC_STATUS_RCVD_CFG))
4074 current_link_up = 1;
4075 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08004076 tg3_setup_flow_control(tp, 0, 0);
4077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 /* Forcing 1000FD link up. */
4079 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
4081 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
4082 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004083
4084 tw32_f(MAC_MODE, tp->mac_mode);
4085 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 }
4087
4088out:
4089 return current_link_up;
4090}
4091
4092static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
4093{
4094 u32 orig_pause_cfg;
4095 u16 orig_active_speed;
4096 u8 orig_active_duplex;
4097 u32 mac_status;
4098 int current_link_up;
4099 int i;
4100
Matt Carlson8d018622007-12-20 20:05:44 -08004101 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 orig_active_speed = tp->link_config.active_speed;
4103 orig_active_duplex = tp->link_config.active_duplex;
4104
Joe Perches63c3a662011-04-26 08:12:10 +00004105 if (!tg3_flag(tp, HW_AUTONEG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 netif_carrier_ok(tp->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00004107 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 mac_status = tr32(MAC_STATUS);
4109 mac_status &= (MAC_STATUS_PCS_SYNCED |
4110 MAC_STATUS_SIGNAL_DET |
4111 MAC_STATUS_CFG_CHANGED |
4112 MAC_STATUS_RCVD_CFG);
4113 if (mac_status == (MAC_STATUS_PCS_SYNCED |
4114 MAC_STATUS_SIGNAL_DET)) {
4115 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4116 MAC_STATUS_CFG_CHANGED));
4117 return 0;
4118 }
4119 }
4120
4121 tw32_f(MAC_TX_AUTO_NEG, 0);
4122
4123 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
4124 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
4125 tw32_f(MAC_MODE, tp->mac_mode);
4126 udelay(40);
4127
Matt Carlson79eb6902010-02-17 15:17:03 +00004128 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 tg3_init_bcm8002(tp);
4130
4131 /* Enable link change event even when serdes polling. */
4132 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4133 udelay(40);
4134
4135 current_link_up = 0;
4136 mac_status = tr32(MAC_STATUS);
4137
Joe Perches63c3a662011-04-26 08:12:10 +00004138 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
4140 else
4141 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
4142
Matt Carlson898a56f2009-08-28 14:02:40 +00004143 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00004145 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146
4147 for (i = 0; i < 100; i++) {
4148 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4149 MAC_STATUS_CFG_CHANGED));
4150 udelay(5);
4151 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07004152 MAC_STATUS_CFG_CHANGED |
4153 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 break;
4155 }
4156
4157 mac_status = tr32(MAC_STATUS);
4158 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
4159 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004160 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
4161 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 tw32_f(MAC_MODE, (tp->mac_mode |
4163 MAC_MODE_SEND_CONFIGS));
4164 udelay(1);
4165 tw32_f(MAC_MODE, tp->mac_mode);
4166 }
4167 }
4168
4169 if (current_link_up == 1) {
4170 tp->link_config.active_speed = SPEED_1000;
4171 tp->link_config.active_duplex = DUPLEX_FULL;
4172 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4173 LED_CTRL_LNKLED_OVERRIDE |
4174 LED_CTRL_1000MBPS_ON));
4175 } else {
4176 tp->link_config.active_speed = SPEED_INVALID;
4177 tp->link_config.active_duplex = DUPLEX_INVALID;
4178 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4179 LED_CTRL_LNKLED_OVERRIDE |
4180 LED_CTRL_TRAFFIC_OVERRIDE));
4181 }
4182
4183 if (current_link_up != netif_carrier_ok(tp->dev)) {
4184 if (current_link_up)
4185 netif_carrier_on(tp->dev);
4186 else
4187 netif_carrier_off(tp->dev);
4188 tg3_link_report(tp);
4189 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08004190 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 if (orig_pause_cfg != now_pause_cfg ||
4192 orig_active_speed != tp->link_config.active_speed ||
4193 orig_active_duplex != tp->link_config.active_duplex)
4194 tg3_link_report(tp);
4195 }
4196
4197 return 0;
4198}
4199
Michael Chan747e8f82005-07-25 12:33:22 -07004200static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
4201{
4202 int current_link_up, err = 0;
4203 u32 bmsr, bmcr;
4204 u16 current_speed;
4205 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08004206 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07004207
4208 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4209 tw32_f(MAC_MODE, tp->mac_mode);
4210 udelay(40);
4211
4212 tw32(MAC_EVENT, 0);
4213
4214 tw32_f(MAC_STATUS,
4215 (MAC_STATUS_SYNC_CHANGED |
4216 MAC_STATUS_CFG_CHANGED |
4217 MAC_STATUS_MI_COMPLETION |
4218 MAC_STATUS_LNKSTATE_CHANGED));
4219 udelay(40);
4220
4221 if (force_reset)
4222 tg3_phy_reset(tp);
4223
4224 current_link_up = 0;
4225 current_speed = SPEED_INVALID;
4226 current_duplex = DUPLEX_INVALID;
4227
4228 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4229 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004230 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
4231 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4232 bmsr |= BMSR_LSTATUS;
4233 else
4234 bmsr &= ~BMSR_LSTATUS;
4235 }
Michael Chan747e8f82005-07-25 12:33:22 -07004236
4237 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
4238
4239 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004240 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004241 /* do nothing, just check for link up at the end */
4242 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4243 u32 adv, new_adv;
4244
4245 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4246 new_adv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
4247 ADVERTISE_1000XPAUSE |
4248 ADVERTISE_1000XPSE_ASYM |
4249 ADVERTISE_SLCT);
4250
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004251 new_adv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Michael Chan747e8f82005-07-25 12:33:22 -07004252
4253 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
4254 new_adv |= ADVERTISE_1000XHALF;
4255 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
4256 new_adv |= ADVERTISE_1000XFULL;
4257
4258 if ((new_adv != adv) || !(bmcr & BMCR_ANENABLE)) {
4259 tg3_writephy(tp, MII_ADVERTISE, new_adv);
4260 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
4261 tg3_writephy(tp, MII_BMCR, bmcr);
4262
4263 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07004264 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004265 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004266
4267 return err;
4268 }
4269 } else {
4270 u32 new_bmcr;
4271
4272 bmcr &= ~BMCR_SPEED1000;
4273 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
4274
4275 if (tp->link_config.duplex == DUPLEX_FULL)
4276 new_bmcr |= BMCR_FULLDPLX;
4277
4278 if (new_bmcr != bmcr) {
4279 /* BMCR_SPEED1000 is a reserved bit that needs
4280 * to be set on write.
4281 */
4282 new_bmcr |= BMCR_SPEED1000;
4283
4284 /* Force a linkdown */
4285 if (netif_carrier_ok(tp->dev)) {
4286 u32 adv;
4287
4288 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4289 adv &= ~(ADVERTISE_1000XFULL |
4290 ADVERTISE_1000XHALF |
4291 ADVERTISE_SLCT);
4292 tg3_writephy(tp, MII_ADVERTISE, adv);
4293 tg3_writephy(tp, MII_BMCR, bmcr |
4294 BMCR_ANRESTART |
4295 BMCR_ANENABLE);
4296 udelay(10);
4297 netif_carrier_off(tp->dev);
4298 }
4299 tg3_writephy(tp, MII_BMCR, new_bmcr);
4300 bmcr = new_bmcr;
4301 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4302 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004303 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
4304 ASIC_REV_5714) {
4305 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4306 bmsr |= BMSR_LSTATUS;
4307 else
4308 bmsr &= ~BMSR_LSTATUS;
4309 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004310 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004311 }
4312 }
4313
4314 if (bmsr & BMSR_LSTATUS) {
4315 current_speed = SPEED_1000;
4316 current_link_up = 1;
4317 if (bmcr & BMCR_FULLDPLX)
4318 current_duplex = DUPLEX_FULL;
4319 else
4320 current_duplex = DUPLEX_HALF;
4321
Matt Carlsonef167e22007-12-20 20:10:01 -08004322 local_adv = 0;
4323 remote_adv = 0;
4324
Michael Chan747e8f82005-07-25 12:33:22 -07004325 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08004326 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07004327
4328 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
4329 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
4330 common = local_adv & remote_adv;
4331 if (common & (ADVERTISE_1000XHALF |
4332 ADVERTISE_1000XFULL)) {
4333 if (common & ADVERTISE_1000XFULL)
4334 current_duplex = DUPLEX_FULL;
4335 else
4336 current_duplex = DUPLEX_HALF;
Joe Perches63c3a662011-04-26 08:12:10 +00004337 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00004338 /* Link is up via parallel detect */
Matt Carlson859a5882010-04-05 10:19:28 +00004339 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07004340 current_link_up = 0;
Matt Carlson859a5882010-04-05 10:19:28 +00004341 }
Michael Chan747e8f82005-07-25 12:33:22 -07004342 }
4343 }
4344
Matt Carlsonef167e22007-12-20 20:10:01 -08004345 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
4346 tg3_setup_flow_control(tp, local_adv, remote_adv);
4347
Michael Chan747e8f82005-07-25 12:33:22 -07004348 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4349 if (tp->link_config.active_duplex == DUPLEX_HALF)
4350 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4351
4352 tw32_f(MAC_MODE, tp->mac_mode);
4353 udelay(40);
4354
4355 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4356
4357 tp->link_config.active_speed = current_speed;
4358 tp->link_config.active_duplex = current_duplex;
4359
4360 if (current_link_up != netif_carrier_ok(tp->dev)) {
4361 if (current_link_up)
4362 netif_carrier_on(tp->dev);
4363 else {
4364 netif_carrier_off(tp->dev);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004365 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004366 }
4367 tg3_link_report(tp);
4368 }
4369 return err;
4370}
4371
4372static void tg3_serdes_parallel_detect(struct tg3 *tp)
4373{
Michael Chan3d3ebe72006-09-27 15:59:15 -07004374 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07004375 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07004376 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07004377 return;
4378 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00004379
Michael Chan747e8f82005-07-25 12:33:22 -07004380 if (!netif_carrier_ok(tp->dev) &&
4381 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
4382 u32 bmcr;
4383
4384 tg3_readphy(tp, MII_BMCR, &bmcr);
4385 if (bmcr & BMCR_ANENABLE) {
4386 u32 phy1, phy2;
4387
4388 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004389 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
4390 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07004391
4392 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004393 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
4394 MII_TG3_DSP_EXP1_INT_STAT);
4395 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
4396 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07004397
4398 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
4399 /* We have signal detect and not receiving
4400 * config code words, link is up by parallel
4401 * detection.
4402 */
4403
4404 bmcr &= ~BMCR_ANENABLE;
4405 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
4406 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004407 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004408 }
4409 }
Matt Carlson859a5882010-04-05 10:19:28 +00004410 } else if (netif_carrier_ok(tp->dev) &&
4411 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004412 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004413 u32 phy2;
4414
4415 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004416 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
4417 MII_TG3_DSP_EXP1_INT_STAT);
4418 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07004419 if (phy2 & 0x20) {
4420 u32 bmcr;
4421
4422 /* Config code words received, turn on autoneg. */
4423 tg3_readphy(tp, MII_BMCR, &bmcr);
4424 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
4425
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004426 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004427
4428 }
4429 }
4430}
4431
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432static int tg3_setup_phy(struct tg3 *tp, int force_reset)
4433{
Matt Carlsonf2096f92011-04-05 14:22:48 +00004434 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 int err;
4436
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004437 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004439 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07004440 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a5882010-04-05 10:19:28 +00004441 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443
Matt Carlsonbcb37f62008-11-03 16:52:09 -08004444 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00004445 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08004446
4447 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
4448 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
4449 scale = 65;
4450 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
4451 scale = 6;
4452 else
4453 scale = 12;
4454
4455 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
4456 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
4457 tw32(GRC_MISC_CFG, val);
4458 }
4459
Matt Carlsonf2096f92011-04-05 14:22:48 +00004460 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
4461 (6 << TX_LENGTHS_IPG_SHIFT);
4462 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
4463 val |= tr32(MAC_TX_LENGTHS) &
4464 (TX_LENGTHS_JMB_FRM_LEN_MSK |
4465 TX_LENGTHS_CNT_DWN_VAL_MSK);
4466
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 if (tp->link_config.active_speed == SPEED_1000 &&
4468 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00004469 tw32(MAC_TX_LENGTHS, val |
4470 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00004472 tw32(MAC_TX_LENGTHS, val |
4473 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474
Joe Perches63c3a662011-04-26 08:12:10 +00004475 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 if (netif_carrier_ok(tp->dev)) {
4477 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07004478 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 } else {
4480 tw32(HOSTCC_STAT_COAL_TICKS, 0);
4481 }
4482 }
4483
Joe Perches63c3a662011-04-26 08:12:10 +00004484 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00004485 val = tr32(PCIE_PWR_MGMT_THRESH);
Matt Carlson8ed5d972007-05-07 00:25:49 -07004486 if (!netif_carrier_ok(tp->dev))
4487 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
4488 tp->pwrmgmt_thresh;
4489 else
4490 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
4491 tw32(PCIE_PWR_MGMT_THRESH, val);
4492 }
4493
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 return err;
4495}
4496
Matt Carlson66cfd1b2010-09-30 10:34:30 +00004497static inline int tg3_irq_sync(struct tg3 *tp)
4498{
4499 return tp->irq_sync;
4500}
4501
Matt Carlson97bd8e42011-04-13 11:05:04 +00004502static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
4503{
4504 int i;
4505
4506 dst = (u32 *)((u8 *)dst + off);
4507 for (i = 0; i < len; i += sizeof(u32))
4508 *dst++ = tr32(off + i);
4509}
4510
4511static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
4512{
4513 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
4514 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
4515 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
4516 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
4517 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
4518 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
4519 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
4520 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
4521 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
4522 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
4523 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
4524 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
4525 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
4526 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
4527 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
4528 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
4529 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
4530 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
4531 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
4532
Joe Perches63c3a662011-04-26 08:12:10 +00004533 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00004534 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
4535
4536 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
4537 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
4538 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
4539 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
4540 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
4541 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
4542 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
4543 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
4544
Joe Perches63c3a662011-04-26 08:12:10 +00004545 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00004546 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
4547 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
4548 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
4549 }
4550
4551 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
4552 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
4553 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
4554 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
4555 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
4556
Joe Perches63c3a662011-04-26 08:12:10 +00004557 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00004558 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
4559}
4560
4561static void tg3_dump_state(struct tg3 *tp)
4562{
4563 int i;
4564 u32 *regs;
4565
4566 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
4567 if (!regs) {
4568 netdev_err(tp->dev, "Failed allocating register dump buffer\n");
4569 return;
4570 }
4571
Joe Perches63c3a662011-04-26 08:12:10 +00004572 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00004573 /* Read up to but not including private PCI registers */
4574 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
4575 regs[i / sizeof(u32)] = tr32(i);
4576 } else
4577 tg3_dump_legacy_regs(tp, regs);
4578
4579 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
4580 if (!regs[i + 0] && !regs[i + 1] &&
4581 !regs[i + 2] && !regs[i + 3])
4582 continue;
4583
4584 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
4585 i * 4,
4586 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
4587 }
4588
4589 kfree(regs);
4590
4591 for (i = 0; i < tp->irq_cnt; i++) {
4592 struct tg3_napi *tnapi = &tp->napi[i];
4593
4594 /* SW status block */
4595 netdev_err(tp->dev,
4596 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
4597 i,
4598 tnapi->hw_status->status,
4599 tnapi->hw_status->status_tag,
4600 tnapi->hw_status->rx_jumbo_consumer,
4601 tnapi->hw_status->rx_consumer,
4602 tnapi->hw_status->rx_mini_consumer,
4603 tnapi->hw_status->idx[0].rx_producer,
4604 tnapi->hw_status->idx[0].tx_consumer);
4605
4606 netdev_err(tp->dev,
4607 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
4608 i,
4609 tnapi->last_tag, tnapi->last_irq_tag,
4610 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
4611 tnapi->rx_rcb_ptr,
4612 tnapi->prodring.rx_std_prod_idx,
4613 tnapi->prodring.rx_std_cons_idx,
4614 tnapi->prodring.rx_jmb_prod_idx,
4615 tnapi->prodring.rx_jmb_cons_idx);
4616 }
4617}
4618
Michael Chandf3e6542006-05-26 17:48:07 -07004619/* This is called whenever we suspect that the system chipset is re-
4620 * ordering the sequence of MMIO to the tx send mailbox. The symptom
4621 * is bogus tx completions. We try to recover by setting the
4622 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
4623 * in the workqueue.
4624 */
4625static void tg3_tx_recover(struct tg3 *tp)
4626{
Joe Perches63c3a662011-04-26 08:12:10 +00004627 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07004628 tp->write32_tx_mbox == tg3_write_indirect_mbox);
4629
Matt Carlson5129c3a2010-04-05 10:19:23 +00004630 netdev_warn(tp->dev,
4631 "The system may be re-ordering memory-mapped I/O "
4632 "cycles to the network device, attempting to recover. "
4633 "Please report the problem to the driver maintainer "
4634 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07004635
4636 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00004637 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07004638 spin_unlock(&tp->lock);
4639}
4640
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004641static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07004642{
Matt Carlsonf65aac12010-08-02 11:26:03 +00004643 /* Tell compiler to fetch tx indices from memory. */
4644 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004645 return tnapi->tx_pending -
4646 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07004647}
4648
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649/* Tigon3 never reports partial packet sends. So we do not
4650 * need special logic to handle SKBs that have not had all
4651 * of their frags sent yet, like SunGEM does.
4652 */
Matt Carlson17375d22009-08-28 14:02:18 +00004653static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654{
Matt Carlson17375d22009-08-28 14:02:18 +00004655 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00004656 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004657 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004658 struct netdev_queue *txq;
4659 int index = tnapi - tp->napi;
4660
Joe Perches63c3a662011-04-26 08:12:10 +00004661 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004662 index--;
4663
4664 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
4666 while (sw_idx != hw_idx) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00004667 struct ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07004669 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670
Michael Chandf3e6542006-05-26 17:48:07 -07004671 if (unlikely(skb == NULL)) {
4672 tg3_tx_recover(tp);
4673 return;
4674 }
4675
Alexander Duyckf4188d82009-12-02 16:48:38 +00004676 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004677 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00004678 skb_headlen(skb),
4679 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680
4681 ri->skb = NULL;
4682
4683 sw_idx = NEXT_TX(sw_idx);
4684
4685 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004686 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07004687 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
4688 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00004689
4690 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004691 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00004692 skb_shinfo(skb)->frags[i].size,
4693 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 sw_idx = NEXT_TX(sw_idx);
4695 }
4696
David S. Millerf47c11e2005-06-24 20:18:35 -07004697 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07004698
4699 if (unlikely(tx_bug)) {
4700 tg3_tx_recover(tp);
4701 return;
4702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 }
4704
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004705 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
Michael Chan1b2a7202006-08-07 21:46:02 -07004707 /* Need to make the tx_cons update visible to tg3_start_xmit()
4708 * before checking for netif_queue_stopped(). Without the
4709 * memory barrier, there is a small possibility that tg3_start_xmit()
4710 * will miss it and cause the queue to be stopped forever.
4711 */
4712 smp_mb();
4713
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004714 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004715 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004716 __netif_tx_lock(txq, smp_processor_id());
4717 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004718 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004719 netif_tx_wake_queue(txq);
4720 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07004721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722}
4723
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004724static void tg3_rx_skb_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
4725{
4726 if (!ri->skb)
4727 return;
4728
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004729 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004730 map_sz, PCI_DMA_FROMDEVICE);
4731 dev_kfree_skb_any(ri->skb);
4732 ri->skb = NULL;
4733}
4734
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735/* Returns size of skb allocated or < 0 on error.
4736 *
4737 * We only need to fill in the address because the other members
4738 * of the RX descriptor are invariant, see tg3_init_rings.
4739 *
4740 * Note the purposeful assymetry of cpu vs. chip accesses. For
4741 * posting buffers we only dirty the first cache line of the RX
4742 * descriptor (containing the address). Whereas for the RX status
4743 * buffers the cpu only reads the last cacheline of the RX descriptor
4744 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
4745 */
Matt Carlson86b21e52009-11-13 13:03:45 +00004746static int tg3_alloc_rx_skb(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Matt Carlsona3896162009-11-13 13:03:44 +00004747 u32 opaque_key, u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748{
4749 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00004750 struct ring_info *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 struct sk_buff *skb;
4752 dma_addr_t mapping;
4753 int skb_size, dest_idx;
4754
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 switch (opaque_key) {
4756 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00004757 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00004758 desc = &tpr->rx_std[dest_idx];
4759 map = &tpr->rx_std_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004760 skb_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 break;
4762
4763 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00004764 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00004765 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00004766 map = &tpr->rx_jmb_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004767 skb_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 break;
4769
4770 default:
4771 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
4774 /* Do not overwrite any of the map or rp information
4775 * until we are sure we can commit to a new buffer.
4776 *
4777 * Callers depend upon this behavior and assume that
4778 * we leave everything unchanged if we fail.
4779 */
Matt Carlson287be122009-08-28 13:58:46 +00004780 skb = netdev_alloc_skb(tp->dev, skb_size + tp->rx_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 if (skb == NULL)
4782 return -ENOMEM;
4783
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 skb_reserve(skb, tp->rx_offset);
4785
Matt Carlson287be122009-08-28 13:58:46 +00004786 mapping = pci_map_single(tp->pdev, skb->data, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 PCI_DMA_FROMDEVICE);
Matt Carlsona21771d2009-11-02 14:25:31 +00004788 if (pci_dma_mapping_error(tp->pdev, mapping)) {
4789 dev_kfree_skb(skb);
4790 return -EIO;
4791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792
4793 map->skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004794 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 desc->addr_hi = ((u64)mapping >> 32);
4797 desc->addr_lo = ((u64)mapping & 0xffffffff);
4798
4799 return skb_size;
4800}
4801
4802/* We only need to move over in the address because the other
4803 * members of the RX descriptor are invariant. See notes above
4804 * tg3_alloc_rx_skb for full details.
4805 */
Matt Carlsona3896162009-11-13 13:03:44 +00004806static void tg3_recycle_rx(struct tg3_napi *tnapi,
4807 struct tg3_rx_prodring_set *dpr,
4808 u32 opaque_key, int src_idx,
4809 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810{
Matt Carlson17375d22009-08-28 14:02:18 +00004811 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
4813 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00004814 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00004815 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816
4817 switch (opaque_key) {
4818 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00004819 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00004820 dest_desc = &dpr->rx_std[dest_idx];
4821 dest_map = &dpr->rx_std_buffers[dest_idx];
4822 src_desc = &spr->rx_std[src_idx];
4823 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 break;
4825
4826 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00004827 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00004828 dest_desc = &dpr->rx_jmb[dest_idx].std;
4829 dest_map = &dpr->rx_jmb_buffers[dest_idx];
4830 src_desc = &spr->rx_jmb[src_idx].std;
4831 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 break;
4833
4834 default:
4835 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837
4838 dest_map->skb = src_map->skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004839 dma_unmap_addr_set(dest_map, mapping,
4840 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 dest_desc->addr_hi = src_desc->addr_hi;
4842 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00004843
4844 /* Ensure that the update to the skb happens after the physical
4845 * addresses have been transferred to the new BD location.
4846 */
4847 smp_wmb();
4848
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 src_map->skb = NULL;
4850}
4851
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852/* The RX ring scheme is composed of multiple rings which post fresh
4853 * buffers to the chip, and one special ring the chip uses to report
4854 * status back to the host.
4855 *
4856 * The special ring reports the status of received packets to the
4857 * host. The chip does not write into the original descriptor the
4858 * RX buffer was obtained from. The chip simply takes the original
4859 * descriptor as provided by the host, updates the status and length
4860 * field, then writes this into the next status ring entry.
4861 *
4862 * Each ring the host uses to post buffers to the chip is described
4863 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
4864 * it is first placed into the on-chip ram. When the packet's length
4865 * is known, it walks down the TG3_BDINFO entries to select the ring.
4866 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
4867 * which is within the range of the new packet's length is chosen.
4868 *
4869 * The "separate ring for rx status" scheme may sound queer, but it makes
4870 * sense from a cache coherency perspective. If only the host writes
4871 * to the buffer post rings, and only the chip writes to the rx status
4872 * rings, then cache lines never move beyond shared-modified state.
4873 * If both the host and chip were to write into the same ring, cache line
4874 * eviction could occur since both entities want it in an exclusive state.
4875 */
Matt Carlson17375d22009-08-28 14:02:18 +00004876static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877{
Matt Carlson17375d22009-08-28 14:02:18 +00004878 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07004879 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00004880 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00004881 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07004882 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00004884 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004886 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 /*
4888 * We need to order the read of hw_idx and the read of
4889 * the opaque cookie.
4890 */
4891 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 work_mask = 0;
4893 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00004894 std_prod_idx = tpr->rx_std_prod_idx;
4895 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00004897 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00004898 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 unsigned int len;
4900 struct sk_buff *skb;
4901 dma_addr_t dma_addr;
4902 u32 opaque_key, desc_idx, *post_ptr;
4903
4904 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
4905 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
4906 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00004907 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004908 dma_addr = dma_unmap_addr(ri, mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00004909 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00004910 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07004911 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00004913 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004914 dma_addr = dma_unmap_addr(ri, mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00004915 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00004916 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00004917 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919
4920 work_mask |= opaque_key;
4921
4922 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
4923 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
4924 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00004925 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 desc_idx, *post_ptr);
4927 drop_it_no_recycle:
4928 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00004929 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 goto next_pkt;
4931 }
4932
Matt Carlsonad829262008-11-21 17:16:16 -08004933 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
4934 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
Matt Carlsond2757fc2010-04-12 06:58:27 +00004936 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 int skb_size;
4938
Matt Carlson86b21e52009-11-13 13:03:45 +00004939 skb_size = tg3_alloc_rx_skb(tp, tpr, opaque_key,
Matt Carlsonafc081f2009-11-13 13:03:43 +00004940 *post_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 if (skb_size < 0)
4942 goto drop_it;
4943
Matt Carlson287be122009-08-28 13:58:46 +00004944 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 PCI_DMA_FROMDEVICE);
4946
Matt Carlson61e800c2010-02-17 15:16:54 +00004947 /* Ensure that the update to the skb happens
4948 * after the usage of the old DMA mapping.
4949 */
4950 smp_wmb();
4951
4952 ri->skb = NULL;
4953
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 skb_put(skb, len);
4955 } else {
4956 struct sk_buff *copy_skb;
4957
Matt Carlsona3896162009-11-13 13:03:44 +00004958 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 desc_idx, *post_ptr);
4960
Matt Carlsonbf933c82011-01-25 15:58:49 +00004961 copy_skb = netdev_alloc_skb(tp->dev, len +
Matt Carlson9dc7a112010-04-12 06:58:28 +00004962 TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 if (copy_skb == NULL)
4964 goto drop_it_no_recycle;
4965
Matt Carlsonbf933c82011-01-25 15:58:49 +00004966 skb_reserve(copy_skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 skb_put(copy_skb, len);
4968 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03004969 skb_copy_from_linear_data(skb, copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
4971
4972 /* We'll reuse the original ring buffer. */
4973 skb = copy_skb;
4974 }
4975
Michał Mirosławdc668912011-04-07 03:35:07 +00004976 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
4978 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
4979 >> RXD_TCPCSUM_SHIFT) == 0xffff))
4980 skb->ip_summed = CHECKSUM_UNNECESSARY;
4981 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07004982 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983
4984 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00004985
4986 if (len > (tp->dev->mtu + ETH_HLEN) &&
4987 skb->protocol != htons(ETH_P_8021Q)) {
4988 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00004989 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00004990 }
4991
Matt Carlson9dc7a112010-04-12 06:58:28 +00004992 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00004993 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
4994 __vlan_hwaccel_put_tag(skb,
4995 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00004996
Matt Carlsonbf933c82011-01-25 15:58:49 +00004997 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 received++;
5000 budget--;
5001
5002next_pkt:
5003 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07005004
5005 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005006 tpr->rx_std_prod_idx = std_prod_idx &
5007 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00005008 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5009 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07005010 work_mask &= ~RXD_OPAQUE_RING_STD;
5011 rx_std_posted = 0;
5012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07005014 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00005015 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07005016
5017 /* Refresh hw_idx to see if there is new work */
5018 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005019 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07005020 rmb();
5021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 }
5023
5024 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00005025 tnapi->rx_rcb_ptr = sw_idx;
5026 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027
5028 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00005029 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005030 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005031 tpr->rx_std_prod_idx = std_prod_idx &
5032 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005033 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5034 tpr->rx_std_prod_idx);
5035 }
5036 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005037 tpr->rx_jmb_prod_idx = jmb_prod_idx &
5038 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005039 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5040 tpr->rx_jmb_prod_idx);
5041 }
5042 mmiowb();
5043 } else if (work_mask) {
5044 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
5045 * updated before the producer indices can be updated.
5046 */
5047 smp_wmb();
5048
Matt Carlson2c49a442010-09-30 10:34:35 +00005049 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
5050 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005051
Matt Carlsone4af1af2010-02-12 14:47:05 +00005052 if (tnapi != &tp->napi[1])
5053 napi_schedule(&tp->napi[1].napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
5056 return received;
5057}
5058
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005059static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00005062 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005063 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
5064
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065 if (sblk->status & SD_STATUS_LINK_CHG) {
5066 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005067 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07005068 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005069 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07005070 tw32_f(MAC_STATUS,
5071 (MAC_STATUS_SYNC_CHANGED |
5072 MAC_STATUS_CFG_CHANGED |
5073 MAC_STATUS_MI_COMPLETION |
5074 MAC_STATUS_LNKSTATE_CHANGED));
5075 udelay(40);
5076 } else
5077 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07005078 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 }
5080 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005081}
5082
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005083static int tg3_rx_prodring_xfer(struct tg3 *tp,
5084 struct tg3_rx_prodring_set *dpr,
5085 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005086{
5087 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005088 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005089
5090 while (1) {
5091 src_prod_idx = spr->rx_std_prod_idx;
5092
5093 /* Make sure updates to the rx_std_buffers[] entries and the
5094 * standard producer index are seen in the correct order.
5095 */
5096 smp_rmb();
5097
5098 if (spr->rx_std_cons_idx == src_prod_idx)
5099 break;
5100
5101 if (spr->rx_std_cons_idx < src_prod_idx)
5102 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
5103 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005104 cpycnt = tp->rx_std_ring_mask + 1 -
5105 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005106
Matt Carlson2c49a442010-09-30 10:34:35 +00005107 cpycnt = min(cpycnt,
5108 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005109
5110 si = spr->rx_std_cons_idx;
5111 di = dpr->rx_std_prod_idx;
5112
Matt Carlsone92967b2010-02-12 14:47:06 +00005113 for (i = di; i < di + cpycnt; i++) {
5114 if (dpr->rx_std_buffers[i].skb) {
5115 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005116 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005117 break;
5118 }
5119 }
5120
5121 if (!cpycnt)
5122 break;
5123
5124 /* Ensure that updates to the rx_std_buffers ring and the
5125 * shadowed hardware producer ring from tg3_recycle_skb() are
5126 * ordered correctly WRT the skb check above.
5127 */
5128 smp_rmb();
5129
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005130 memcpy(&dpr->rx_std_buffers[di],
5131 &spr->rx_std_buffers[si],
5132 cpycnt * sizeof(struct ring_info));
5133
5134 for (i = 0; i < cpycnt; i++, di++, si++) {
5135 struct tg3_rx_buffer_desc *sbd, *dbd;
5136 sbd = &spr->rx_std[si];
5137 dbd = &dpr->rx_std[di];
5138 dbd->addr_hi = sbd->addr_hi;
5139 dbd->addr_lo = sbd->addr_lo;
5140 }
5141
Matt Carlson2c49a442010-09-30 10:34:35 +00005142 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
5143 tp->rx_std_ring_mask;
5144 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
5145 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005146 }
5147
5148 while (1) {
5149 src_prod_idx = spr->rx_jmb_prod_idx;
5150
5151 /* Make sure updates to the rx_jmb_buffers[] entries and
5152 * the jumbo producer index are seen in the correct order.
5153 */
5154 smp_rmb();
5155
5156 if (spr->rx_jmb_cons_idx == src_prod_idx)
5157 break;
5158
5159 if (spr->rx_jmb_cons_idx < src_prod_idx)
5160 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
5161 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005162 cpycnt = tp->rx_jmb_ring_mask + 1 -
5163 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005164
5165 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00005166 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005167
5168 si = spr->rx_jmb_cons_idx;
5169 di = dpr->rx_jmb_prod_idx;
5170
Matt Carlsone92967b2010-02-12 14:47:06 +00005171 for (i = di; i < di + cpycnt; i++) {
5172 if (dpr->rx_jmb_buffers[i].skb) {
5173 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005174 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005175 break;
5176 }
5177 }
5178
5179 if (!cpycnt)
5180 break;
5181
5182 /* Ensure that updates to the rx_jmb_buffers ring and the
5183 * shadowed hardware producer ring from tg3_recycle_skb() are
5184 * ordered correctly WRT the skb check above.
5185 */
5186 smp_rmb();
5187
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005188 memcpy(&dpr->rx_jmb_buffers[di],
5189 &spr->rx_jmb_buffers[si],
5190 cpycnt * sizeof(struct ring_info));
5191
5192 for (i = 0; i < cpycnt; i++, di++, si++) {
5193 struct tg3_rx_buffer_desc *sbd, *dbd;
5194 sbd = &spr->rx_jmb[si].std;
5195 dbd = &dpr->rx_jmb[di].std;
5196 dbd->addr_hi = sbd->addr_hi;
5197 dbd->addr_lo = sbd->addr_lo;
5198 }
5199
Matt Carlson2c49a442010-09-30 10:34:35 +00005200 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
5201 tp->rx_jmb_ring_mask;
5202 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
5203 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005204 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005205
5206 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005207}
5208
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005209static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
5210{
5211 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212
5213 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005214 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00005215 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00005216 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07005217 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 }
5219
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220 /* run RX thread, within the bounds set by NAPI.
5221 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005222 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005224 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00005225 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226
Joe Perches63c3a662011-04-26 08:12:10 +00005227 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005228 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005229 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00005230 u32 std_prod_idx = dpr->rx_std_prod_idx;
5231 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005232
Matt Carlsone4af1af2010-02-12 14:47:05 +00005233 for (i = 1; i < tp->irq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005234 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00005235 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005236
5237 wmb();
5238
Matt Carlsone4af1af2010-02-12 14:47:05 +00005239 if (std_prod_idx != dpr->rx_std_prod_idx)
5240 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5241 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005242
Matt Carlsone4af1af2010-02-12 14:47:05 +00005243 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
5244 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5245 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005246
5247 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005248
5249 if (err)
5250 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005251 }
5252
David S. Miller6f535762007-10-11 18:08:29 -07005253 return work_done;
5254}
David S. Millerf7383c22005-05-18 22:50:53 -07005255
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005256static int tg3_poll_msix(struct napi_struct *napi, int budget)
5257{
5258 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5259 struct tg3 *tp = tnapi->tp;
5260 int work_done = 0;
5261 struct tg3_hw_status *sblk = tnapi->hw_status;
5262
5263 while (1) {
5264 work_done = tg3_poll_work(tnapi, work_done, budget);
5265
Joe Perches63c3a662011-04-26 08:12:10 +00005266 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005267 goto tx_recovery;
5268
5269 if (unlikely(work_done >= budget))
5270 break;
5271
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005272 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005273 * to tell the hw how much work has been processed,
5274 * so we must read it before checking for more work.
5275 */
5276 tnapi->last_tag = sblk->status_tag;
5277 tnapi->last_irq_tag = tnapi->last_tag;
5278 rmb();
5279
5280 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00005281 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
5282 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005283 napi_complete(napi);
5284 /* Reenable interrupts. */
5285 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
5286 mmiowb();
5287 break;
5288 }
5289 }
5290
5291 return work_done;
5292
5293tx_recovery:
5294 /* work_done is guaranteed to be less than budget. */
5295 napi_complete(napi);
5296 schedule_work(&tp->reset_task);
5297 return work_done;
5298}
5299
Matt Carlsone64de4e2011-04-13 11:05:05 +00005300static void tg3_process_error(struct tg3 *tp)
5301{
5302 u32 val;
5303 bool real_error = false;
5304
Joe Perches63c3a662011-04-26 08:12:10 +00005305 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00005306 return;
5307
5308 /* Check Flow Attention register */
5309 val = tr32(HOSTCC_FLOW_ATTN);
5310 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
5311 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
5312 real_error = true;
5313 }
5314
5315 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
5316 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
5317 real_error = true;
5318 }
5319
5320 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
5321 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
5322 real_error = true;
5323 }
5324
5325 if (!real_error)
5326 return;
5327
5328 tg3_dump_state(tp);
5329
Joe Perches63c3a662011-04-26 08:12:10 +00005330 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsone64de4e2011-04-13 11:05:05 +00005331 schedule_work(&tp->reset_task);
5332}
5333
David S. Miller6f535762007-10-11 18:08:29 -07005334static int tg3_poll(struct napi_struct *napi, int budget)
5335{
Matt Carlson8ef04422009-08-28 14:01:37 +00005336 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5337 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07005338 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00005339 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07005340
5341 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00005342 if (sblk->status & SD_STATUS_ERROR)
5343 tg3_process_error(tp);
5344
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005345 tg3_poll_link(tp);
5346
Matt Carlson17375d22009-08-28 14:02:18 +00005347 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07005348
Joe Perches63c3a662011-04-26 08:12:10 +00005349 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07005350 goto tx_recovery;
5351
5352 if (unlikely(work_done >= budget))
5353 break;
5354
Joe Perches63c3a662011-04-26 08:12:10 +00005355 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00005356 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07005357 * to tell the hw how much work has been processed,
5358 * so we must read it before checking for more work.
5359 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005360 tnapi->last_tag = sblk->status_tag;
5361 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07005362 rmb();
5363 } else
5364 sblk->status &= ~SD_STATUS_UPDATED;
5365
Matt Carlson17375d22009-08-28 14:02:18 +00005366 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005367 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00005368 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07005369 break;
5370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371 }
5372
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005373 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07005374
5375tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07005376 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08005377 napi_complete(napi);
David S. Miller6f535762007-10-11 18:08:29 -07005378 schedule_work(&tp->reset_task);
Michael Chan4fd7ab52007-10-12 01:39:50 -07005379 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380}
5381
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005382static void tg3_napi_disable(struct tg3 *tp)
5383{
5384 int i;
5385
5386 for (i = tp->irq_cnt - 1; i >= 0; i--)
5387 napi_disable(&tp->napi[i].napi);
5388}
5389
5390static void tg3_napi_enable(struct tg3 *tp)
5391{
5392 int i;
5393
5394 for (i = 0; i < tp->irq_cnt; i++)
5395 napi_enable(&tp->napi[i].napi);
5396}
5397
5398static void tg3_napi_init(struct tg3 *tp)
5399{
5400 int i;
5401
5402 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
5403 for (i = 1; i < tp->irq_cnt; i++)
5404 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
5405}
5406
5407static void tg3_napi_fini(struct tg3 *tp)
5408{
5409 int i;
5410
5411 for (i = 0; i < tp->irq_cnt; i++)
5412 netif_napi_del(&tp->napi[i].napi);
5413}
5414
5415static inline void tg3_netif_stop(struct tg3 *tp)
5416{
5417 tp->dev->trans_start = jiffies; /* prevent tx timeout */
5418 tg3_napi_disable(tp);
5419 netif_tx_disable(tp->dev);
5420}
5421
5422static inline void tg3_netif_start(struct tg3 *tp)
5423{
5424 /* NOTE: unconditional netif_tx_wake_all_queues is only
5425 * appropriate so long as all callers are assured to
5426 * have free tx slots (such as after tg3_init_hw)
5427 */
5428 netif_tx_wake_all_queues(tp->dev);
5429
5430 tg3_napi_enable(tp);
5431 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
5432 tg3_enable_ints(tp);
5433}
5434
David S. Millerf47c11e2005-06-24 20:18:35 -07005435static void tg3_irq_quiesce(struct tg3 *tp)
5436{
Matt Carlson4f125f42009-09-01 12:55:02 +00005437 int i;
5438
David S. Millerf47c11e2005-06-24 20:18:35 -07005439 BUG_ON(tp->irq_sync);
5440
5441 tp->irq_sync = 1;
5442 smp_mb();
5443
Matt Carlson4f125f42009-09-01 12:55:02 +00005444 for (i = 0; i < tp->irq_cnt; i++)
5445 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07005446}
5447
David S. Millerf47c11e2005-06-24 20:18:35 -07005448/* Fully shutdown all tg3 driver activity elsewhere in the system.
5449 * If irq_sync is non-zero, then the IRQ handler must be synchronized
5450 * with as well. Most of the time, this is not necessary except when
5451 * shutting down the device.
5452 */
5453static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
5454{
Michael Chan46966542007-07-11 19:47:19 -07005455 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07005456 if (irq_sync)
5457 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005458}
5459
5460static inline void tg3_full_unlock(struct tg3 *tp)
5461{
David S. Millerf47c11e2005-06-24 20:18:35 -07005462 spin_unlock_bh(&tp->lock);
5463}
5464
Michael Chanfcfa0a32006-03-20 22:28:41 -08005465/* One-shot MSI handler - Chip automatically disables interrupt
5466 * after sending MSI so driver doesn't have to do it.
5467 */
David Howells7d12e782006-10-05 14:55:46 +01005468static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08005469{
Matt Carlson09943a12009-08-28 14:01:57 +00005470 struct tg3_napi *tnapi = dev_id;
5471 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08005472
Matt Carlson898a56f2009-08-28 14:02:40 +00005473 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005474 if (tnapi->rx_rcb)
5475 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005476
5477 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005478 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005479
5480 return IRQ_HANDLED;
5481}
5482
Michael Chan88b06bc2005-04-21 17:13:25 -07005483/* MSI ISR - No need to check for interrupt sharing and no need to
5484 * flush status block and interrupt mailbox. PCI ordering rules
5485 * guarantee that MSI will arrive after the status block.
5486 */
David Howells7d12e782006-10-05 14:55:46 +01005487static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc2005-04-21 17:13:25 -07005488{
Matt Carlson09943a12009-08-28 14:01:57 +00005489 struct tg3_napi *tnapi = dev_id;
5490 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc2005-04-21 17:13:25 -07005491
Matt Carlson898a56f2009-08-28 14:02:40 +00005492 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005493 if (tnapi->rx_rcb)
5494 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc2005-04-21 17:13:25 -07005495 /*
David S. Millerfac9b832005-05-18 22:46:34 -07005496 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc2005-04-21 17:13:25 -07005497 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07005498 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc2005-04-21 17:13:25 -07005499 * NIC to stop sending us irqs, engaging "in-intr-handler"
5500 * event coalescing.
5501 */
5502 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07005503 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005504 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07005505
Michael Chan88b06bc2005-04-21 17:13:25 -07005506 return IRQ_RETVAL(1);
5507}
5508
David Howells7d12e782006-10-05 14:55:46 +01005509static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510{
Matt Carlson09943a12009-08-28 14:01:57 +00005511 struct tg3_napi *tnapi = dev_id;
5512 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005513 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514 unsigned int handled = 1;
5515
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516 /* In INTx mode, it is possible for the interrupt to arrive at
5517 * the CPU before the status block posted prior to the interrupt.
5518 * Reading the PCI State register will confirm whether the
5519 * interrupt is ours and will flush the status block.
5520 */
Michael Chand18edcb2007-03-24 20:57:11 -07005521 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00005522 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07005523 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5524 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005525 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07005526 }
Michael Chand18edcb2007-03-24 20:57:11 -07005527 }
5528
5529 /*
5530 * Writing any value to intr-mbox-0 clears PCI INTA# and
5531 * chip-internal interrupt pending events.
5532 * Writing non-zero to intr-mbox-0 additional tells the
5533 * NIC to stop sending us irqs, engaging "in-intr-handler"
5534 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005535 *
5536 * Flush the mailbox to de-assert the IRQ immediately to prevent
5537 * spurious interrupts. The flush impacts performance but
5538 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005539 */
Michael Chanc04cb342007-05-07 00:26:15 -07005540 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07005541 if (tg3_irq_sync(tp))
5542 goto out;
5543 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00005544 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00005545 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00005546 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07005547 } else {
5548 /* No work, shared interrupt perhaps? re-enable
5549 * interrupts, and flush that PCI write
5550 */
5551 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
5552 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07005553 }
David S. Millerf47c11e2005-06-24 20:18:35 -07005554out:
David S. Millerfac9b832005-05-18 22:46:34 -07005555 return IRQ_RETVAL(handled);
5556}
5557
David Howells7d12e782006-10-05 14:55:46 +01005558static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07005559{
Matt Carlson09943a12009-08-28 14:01:57 +00005560 struct tg3_napi *tnapi = dev_id;
5561 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005562 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07005563 unsigned int handled = 1;
5564
David S. Millerfac9b832005-05-18 22:46:34 -07005565 /* In INTx mode, it is possible for the interrupt to arrive at
5566 * the CPU before the status block posted prior to the interrupt.
5567 * Reading the PCI State register will confirm whether the
5568 * interrupt is ours and will flush the status block.
5569 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005570 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00005571 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07005572 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5573 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005574 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575 }
Michael Chand18edcb2007-03-24 20:57:11 -07005576 }
5577
5578 /*
5579 * writing any value to intr-mbox-0 clears PCI INTA# and
5580 * chip-internal interrupt pending events.
5581 * writing non-zero to intr-mbox-0 additional tells the
5582 * NIC to stop sending us irqs, engaging "in-intr-handler"
5583 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005584 *
5585 * Flush the mailbox to de-assert the IRQ immediately to prevent
5586 * spurious interrupts. The flush impacts performance but
5587 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005588 */
Michael Chanc04cb342007-05-07 00:26:15 -07005589 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00005590
5591 /*
5592 * In a shared interrupt configuration, sometimes other devices'
5593 * interrupts will scream. We record the current status tag here
5594 * so that the above check can report that the screaming interrupts
5595 * are unhandled. Eventually they will be silenced.
5596 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005597 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00005598
Michael Chand18edcb2007-03-24 20:57:11 -07005599 if (tg3_irq_sync(tp))
5600 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00005601
Matt Carlson72334482009-08-28 14:03:01 +00005602 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00005603
Matt Carlson09943a12009-08-28 14:01:57 +00005604 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00005605
David S. Millerf47c11e2005-06-24 20:18:35 -07005606out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 return IRQ_RETVAL(handled);
5608}
5609
Michael Chan79381092005-04-21 17:13:59 -07005610/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01005611static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07005612{
Matt Carlson09943a12009-08-28 14:01:57 +00005613 struct tg3_napi *tnapi = dev_id;
5614 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005615 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07005616
Michael Chanf9804dd2005-09-27 12:13:10 -07005617 if ((sblk->status & SD_STATUS_UPDATED) ||
5618 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07005619 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07005620 return IRQ_RETVAL(1);
5621 }
5622 return IRQ_RETVAL(0);
5623}
5624
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07005625static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07005626static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627
Michael Chanb9ec6c12006-07-25 16:37:27 -07005628/* Restart hardware after configuration changes, self-test, etc.
5629 * Invoked with tp->lock held.
5630 */
5631static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07005632 __releases(tp->lock)
5633 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005634{
5635 int err;
5636
5637 err = tg3_init_hw(tp, reset_phy);
5638 if (err) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00005639 netdev_err(tp->dev,
5640 "Failed to re-initialize device, aborting\n");
Michael Chanb9ec6c12006-07-25 16:37:27 -07005641 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
5642 tg3_full_unlock(tp);
5643 del_timer_sync(&tp->timer);
5644 tp->irq_sync = 0;
Matt Carlsonfed97812009-09-01 13:10:19 +00005645 tg3_napi_enable(tp);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005646 dev_close(tp->dev);
5647 tg3_full_lock(tp, 0);
5648 }
5649 return err;
5650}
5651
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652#ifdef CONFIG_NET_POLL_CONTROLLER
5653static void tg3_poll_controller(struct net_device *dev)
5654{
Matt Carlson4f125f42009-09-01 12:55:02 +00005655 int i;
Michael Chan88b06bc2005-04-21 17:13:25 -07005656 struct tg3 *tp = netdev_priv(dev);
5657
Matt Carlson4f125f42009-09-01 12:55:02 +00005658 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00005659 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660}
5661#endif
5662
David Howellsc4028952006-11-22 14:57:56 +00005663static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664{
David Howellsc4028952006-11-22 14:57:56 +00005665 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005666 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667 unsigned int restart_timer;
5668
Michael Chan7faa0062006-02-02 17:29:28 -08005669 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08005670
5671 if (!netif_running(tp->dev)) {
Michael Chan7faa0062006-02-02 17:29:28 -08005672 tg3_full_unlock(tp);
5673 return;
5674 }
5675
5676 tg3_full_unlock(tp);
5677
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005678 tg3_phy_stop(tp);
5679
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680 tg3_netif_stop(tp);
5681
David S. Millerf47c11e2005-06-24 20:18:35 -07005682 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683
Joe Perches63c3a662011-04-26 08:12:10 +00005684 restart_timer = tg3_flag(tp, RESTART_TIMER);
5685 tg3_flag_clear(tp, RESTART_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686
Joe Perches63c3a662011-04-26 08:12:10 +00005687 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
Michael Chandf3e6542006-05-26 17:48:07 -07005688 tp->write32_tx_mbox = tg3_write32_tx_mbox;
5689 tp->write32_rx_mbox = tg3_write_flush_reg32;
Joe Perches63c3a662011-04-26 08:12:10 +00005690 tg3_flag_set(tp, MBOX_WRITE_REORDER);
5691 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005692 }
5693
Michael Chan944d9802005-05-29 14:57:48 -07005694 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005695 err = tg3_init_hw(tp, 1);
5696 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005697 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698
5699 tg3_netif_start(tp);
5700
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701 if (restart_timer)
5702 mod_timer(&tp->timer, jiffies + 1);
Michael Chan7faa0062006-02-02 17:29:28 -08005703
Michael Chanb9ec6c12006-07-25 16:37:27 -07005704out:
Michael Chan7faa0062006-02-02 17:29:28 -08005705 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005706
5707 if (!err)
5708 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709}
5710
5711static void tg3_tx_timeout(struct net_device *dev)
5712{
5713 struct tg3 *tp = netdev_priv(dev);
5714
Michael Chanb0408752007-02-13 12:18:30 -08005715 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00005716 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00005717 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08005718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719
5720 schedule_work(&tp->reset_task);
5721}
5722
Michael Chanc58ec932005-09-17 00:46:27 -07005723/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
5724static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
5725{
5726 u32 base = (u32) mapping & 0xffffffff;
5727
Eric Dumazet807540b2010-09-23 05:40:09 +00005728 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07005729}
5730
Michael Chan72f2afb2006-03-06 19:28:35 -08005731/* Test for DMA addresses > 40-bit */
5732static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
5733 int len)
5734{
5735#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00005736 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00005737 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08005738 return 0;
5739#else
5740 return 0;
5741#endif
5742}
5743
Matt Carlson2ffcc982011-05-19 12:12:44 +00005744static void tg3_set_txd(struct tg3_napi *tnapi, int entry,
5745 dma_addr_t mapping, int len, u32 flags,
5746 u32 mss_and_is_end)
5747{
5748 struct tg3_tx_buffer_desc *txd = &tnapi->tx_ring[entry];
5749 int is_end = (mss_and_is_end & 0x1);
5750 u32 mss = (mss_and_is_end >> 1);
5751 u32 vlan_tag = 0;
5752
5753 if (is_end)
5754 flags |= TXD_FLAG_END;
5755 if (flags & TXD_FLAG_VLAN) {
5756 vlan_tag = flags >> 16;
5757 flags &= 0xffff;
5758 }
5759 vlan_tag |= (mss << TXD_MSS_SHIFT);
5760
5761 txd->addr_hi = ((u64) mapping >> 32);
5762 txd->addr_lo = ((u64) mapping & 0xffffffff);
5763 txd->len_flags = (len << TXD_LEN_SHIFT) | flags;
5764 txd->vlan_tag = vlan_tag << TXD_VLAN_TAG_SHIFT;
5765}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766
Matt Carlson432aa7e2011-05-19 12:12:45 +00005767static void tg3_skb_error_unmap(struct tg3_napi *tnapi,
5768 struct sk_buff *skb, int last)
5769{
5770 int i;
5771 u32 entry = tnapi->tx_prod;
5772 struct ring_info *txb = &tnapi->tx_buffers[entry];
5773
5774 pci_unmap_single(tnapi->tp->pdev,
5775 dma_unmap_addr(txb, mapping),
5776 skb_headlen(skb),
5777 PCI_DMA_TODEVICE);
Matt Carlson9a2e0fb2011-06-02 13:01:39 +00005778 for (i = 0; i < last; i++) {
Matt Carlson432aa7e2011-05-19 12:12:45 +00005779 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5780
5781 entry = NEXT_TX(entry);
5782 txb = &tnapi->tx_buffers[entry];
5783
5784 pci_unmap_page(tnapi->tp->pdev,
5785 dma_unmap_addr(txb, mapping),
5786 frag->size, PCI_DMA_TODEVICE);
5787 }
5788}
5789
Michael Chan72f2afb2006-03-06 19:28:35 -08005790/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005791static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
Matt Carlson432aa7e2011-05-19 12:12:45 +00005792 struct sk_buff *skb,
5793 u32 base_flags, u32 mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794{
Matt Carlson24f4efd2009-11-13 13:03:35 +00005795 struct tg3 *tp = tnapi->tp;
Matt Carlson41588ba2008-04-19 18:12:33 -07005796 struct sk_buff *new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07005797 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00005798 u32 entry = tnapi->tx_prod;
5799 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800
Matt Carlson41588ba2008-04-19 18:12:33 -07005801 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
5802 new_skb = skb_copy(skb, GFP_ATOMIC);
5803 else {
5804 int more_headroom = 4 - ((unsigned long)skb->data & 3);
5805
5806 new_skb = skb_copy_expand(skb,
5807 skb_headroom(skb) + more_headroom,
5808 skb_tailroom(skb), GFP_ATOMIC);
5809 }
5810
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07005812 ret = -1;
5813 } else {
5814 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00005815 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
5816 PCI_DMA_TODEVICE);
5817 /* Make sure the mapping succeeded */
5818 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
5819 ret = -1;
5820 dev_kfree_skb(new_skb);
David S. Miller90079ce2008-09-11 04:52:51 -07005821
Michael Chanc58ec932005-09-17 00:46:27 -07005822 /* Make sure new skb does not cross any 4G boundaries.
5823 * Drop the packet if it does.
5824 */
Matt Carlsoneb69d562011-06-13 13:38:57 +00005825 } else if (tg3_4g_overflow_test(new_addr, new_skb->len)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00005826 pci_unmap_single(tp->pdev, new_addr, new_skb->len,
5827 PCI_DMA_TODEVICE);
Michael Chanc58ec932005-09-17 00:46:27 -07005828 ret = -1;
5829 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07005830 } else {
Matt Carlson432aa7e2011-05-19 12:12:45 +00005831 tnapi->tx_buffers[entry].skb = new_skb;
5832 dma_unmap_addr_set(&tnapi->tx_buffers[entry],
5833 mapping, new_addr);
5834
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005835 tg3_set_txd(tnapi, entry, new_addr, new_skb->len,
Michael Chanc58ec932005-09-17 00:46:27 -07005836 base_flags, 1 | (mss << 1));
Michael Chanc58ec932005-09-17 00:46:27 -07005837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838 }
5839
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840 dev_kfree_skb(skb);
5841
Michael Chanc58ec932005-09-17 00:46:27 -07005842 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843}
5844
Matt Carlson2ffcc982011-05-19 12:12:44 +00005845static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07005846
5847/* Use GSO to workaround a rare TSO bug that may be triggered when the
5848 * TSO header is greater than 80 bytes.
5849 */
5850static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
5851{
5852 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005853 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07005854
5855 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005856 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07005857 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00005858
5859 /* netif_tx_stop_queue() must be done before checking
5860 * checking tx index in tg3_tx_avail() below, because in
5861 * tg3_tx(), we update tx index before checking for
5862 * netif_tx_queue_stopped().
5863 */
5864 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005865 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08005866 return NETDEV_TX_BUSY;
5867
5868 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07005869 }
5870
5871 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07005872 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07005873 goto tg3_tso_bug_end;
5874
5875 do {
5876 nskb = segs;
5877 segs = segs->next;
5878 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00005879 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07005880 } while (segs);
5881
5882tg3_tso_bug_end:
5883 dev_kfree_skb(skb);
5884
5885 return NETDEV_TX_OK;
5886}
Michael Chan52c0fd82006-06-29 20:15:54 -07005887
Michael Chan5a6f3072006-03-20 22:28:05 -08005888/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00005889 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08005890 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00005891static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08005892{
5893 struct tg3 *tp = netdev_priv(dev);
Michael Chan5a6f3072006-03-20 22:28:05 -08005894 u32 len, entry, base_flags, mss;
Matt Carlson432aa7e2011-05-19 12:12:45 +00005895 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07005896 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005897 struct tg3_napi *tnapi;
5898 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00005899 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005900
Matt Carlson24f4efd2009-11-13 13:03:35 +00005901 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
5902 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00005903 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00005904 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905
Michael Chan00b70502006-06-17 21:58:45 -07005906 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005907 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07005908 * interrupt. Furthermore, IRQ processing runs lockless so we have
5909 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005911 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00005912 if (!netif_tx_queue_stopped(txq)) {
5913 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08005914
5915 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00005916 netdev_err(dev,
5917 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08005918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919 return NETDEV_TX_BUSY;
5920 }
5921
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005922 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07005924 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005926
Matt Carlsonbe98da62010-07-11 09:31:46 +00005927 mss = skb_shinfo(skb)->gso_size;
5928 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005929 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00005930 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931
5932 if (skb_header_cloned(skb) &&
5933 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
5934 dev_kfree_skb(skb);
5935 goto out_unlock;
5936 }
5937
Matt Carlson34195c32010-07-11 09:31:42 +00005938 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07005939 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940
Matt Carlson02e96082010-09-15 08:59:59 +00005941 if (skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00005942 hdr_len = skb_headlen(skb) - ETH_HLEN;
5943 } else {
5944 u32 ip_tcp_len;
5945
5946 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
5947 hdr_len = ip_tcp_len + tcp_opt_len;
5948
5949 iph->check = 0;
5950 iph->tot_len = htons(mss + hdr_len);
5951 }
5952
Michael Chan52c0fd82006-06-29 20:15:54 -07005953 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00005954 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00005955 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07005956
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
5958 TXD_FLAG_CPU_POST_DMA);
5959
Joe Perches63c3a662011-04-26 08:12:10 +00005960 if (tg3_flag(tp, HW_TSO_1) ||
5961 tg3_flag(tp, HW_TSO_2) ||
5962 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005963 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005965 } else
5966 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5967 iph->daddr, 0,
5968 IPPROTO_TCP,
5969 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970
Joe Perches63c3a662011-04-26 08:12:10 +00005971 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00005972 mss |= (hdr_len & 0xc) << 12;
5973 if (hdr_len & 0x10)
5974 base_flags |= 0x00000010;
5975 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00005976 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005977 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00005978 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005979 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005980 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981 int tsflags;
5982
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005983 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984 mss |= (tsflags << 11);
5985 }
5986 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005987 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988 int tsflags;
5989
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005990 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991 base_flags |= tsflags << 12;
5992 }
5993 }
5994 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00005995
Jesse Grosseab6d182010-10-20 13:56:03 +00005996 if (vlan_tx_tag_present(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997 base_flags |= (TXD_FLAG_VLAN |
5998 (vlan_tx_tag_get(skb) << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
Joe Perches63c3a662011-04-26 08:12:10 +00006000 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
Matt Carlson8fc2f992010-12-06 08:28:49 +00006001 !mss && skb->len > VLAN_ETH_FRAME_LEN)
Matt Carlson615774f2009-11-13 13:03:39 +00006002 base_flags |= TXD_FLAG_JMB_PKT;
6003
Alexander Duyckf4188d82009-12-02 16:48:38 +00006004 len = skb_headlen(skb);
6005
6006 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
6007 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07006008 dev_kfree_skb(skb);
6009 goto out_unlock;
6010 }
6011
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006012 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006013 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014
6015 would_hit_hwbug = 0;
6016
Joe Perches63c3a662011-04-26 08:12:10 +00006017 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006018 would_hit_hwbug = 1;
6019
Matt Carlsoneb69d562011-06-13 13:38:57 +00006020 if (tg3_4g_overflow_test(mapping, len))
Matt Carlson41588ba2008-04-19 18:12:33 -07006021 would_hit_hwbug = 1;
Matt Carlson0e1406d2009-11-02 12:33:33 +00006022
Matt Carlsondaf9a552011-06-13 13:38:56 +00006023 if (tg3_40bit_overflow_test(tp, mapping, len))
Matt Carlson0e1406d2009-11-02 12:33:33 +00006024 would_hit_hwbug = 1;
6025
Joe Perches63c3a662011-04-26 08:12:10 +00006026 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07006027 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006029 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
6031
6032 entry = NEXT_TX(entry);
6033
6034 /* Now loop through additional data fragments, and queue them. */
6035 if (skb_shinfo(skb)->nr_frags > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036 last = skb_shinfo(skb)->nr_frags - 1;
6037 for (i = 0; i <= last; i++) {
6038 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6039
6040 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006041 mapping = pci_map_page(tp->pdev,
6042 frag->page,
6043 frag->page_offset,
6044 len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006046 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006047 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00006048 mapping);
6049 if (pci_dma_mapping_error(tp->pdev, mapping))
6050 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051
Joe Perches63c3a662011-04-26 08:12:10 +00006052 if (tg3_flag(tp, SHORT_DMA_BUG) &&
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006053 len <= 8)
6054 would_hit_hwbug = 1;
6055
Matt Carlsoneb69d562011-06-13 13:38:57 +00006056 if (tg3_4g_overflow_test(mapping, len))
Michael Chanc58ec932005-09-17 00:46:27 -07006057 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058
Matt Carlsondaf9a552011-06-13 13:38:56 +00006059 if (tg3_40bit_overflow_test(tp, mapping, len))
Michael Chan72f2afb2006-03-06 19:28:35 -08006060 would_hit_hwbug = 1;
6061
Joe Perches63c3a662011-04-26 08:12:10 +00006062 if (tg3_flag(tp, HW_TSO_1) ||
6063 tg3_flag(tp, HW_TSO_2) ||
6064 tg3_flag(tp, HW_TSO_3))
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006065 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 base_flags, (i == last)|(mss << 1));
6067 else
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006068 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069 base_flags, (i == last));
6070
6071 entry = NEXT_TX(entry);
6072 }
6073 }
6074
6075 if (would_hit_hwbug) {
Matt Carlson432aa7e2011-05-19 12:12:45 +00006076 tg3_skb_error_unmap(tnapi, skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077
6078 /* If the workaround fails due to memory/mapping
6079 * failure, silently drop this packet.
6080 */
Matt Carlson432aa7e2011-05-19 12:12:45 +00006081 if (tigon3_dma_hwbug_workaround(tnapi, skb, base_flags, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082 goto out_unlock;
6083
Matt Carlson432aa7e2011-05-19 12:12:45 +00006084 entry = NEXT_TX(tnapi->tx_prod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085 }
6086
6087 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006088 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089
Richard Cochran26690692011-06-12 02:19:02 +00006090 skb_tx_timestamp(skb);
6091
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006092 tnapi->tx_prod = entry;
6093 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006094 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006095
6096 /* netif_tx_stop_queue() must be done before checking
6097 * checking tx index in tg3_tx_avail() below, because in
6098 * tg3_tx(), we update tx index before checking for
6099 * netif_tx_queue_stopped().
6100 */
6101 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006102 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006103 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105
6106out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00006107 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108
6109 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006110
6111dma_error:
Matt Carlson432aa7e2011-05-19 12:12:45 +00006112 tg3_skb_error_unmap(tnapi, skb, i);
Alexander Duyckf4188d82009-12-02 16:48:38 +00006113 dev_kfree_skb(skb);
Matt Carlson432aa7e2011-05-19 12:12:45 +00006114 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006115 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116}
6117
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006118static void tg3_set_loopback(struct net_device *dev, u32 features)
6119{
6120 struct tg3 *tp = netdev_priv(dev);
6121
6122 if (features & NETIF_F_LOOPBACK) {
6123 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
6124 return;
6125
6126 /*
6127 * Clear MAC_MODE_HALF_DUPLEX or you won't get packets back in
6128 * loopback mode if Half-Duplex mode was negotiated earlier.
6129 */
6130 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
6131
6132 /* Enable internal MAC loopback mode */
6133 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
6134 spin_lock_bh(&tp->lock);
6135 tw32(MAC_MODE, tp->mac_mode);
6136 netif_carrier_on(tp->dev);
6137 spin_unlock_bh(&tp->lock);
6138 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
6139 } else {
6140 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
6141 return;
6142
6143 /* Disable internal MAC loopback mode */
6144 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
6145 spin_lock_bh(&tp->lock);
6146 tw32(MAC_MODE, tp->mac_mode);
6147 /* Force link status check */
6148 tg3_setup_phy(tp, 1);
6149 spin_unlock_bh(&tp->lock);
6150 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
6151 }
6152}
6153
Michał Mirosławdc668912011-04-07 03:35:07 +00006154static u32 tg3_fix_features(struct net_device *dev, u32 features)
6155{
6156 struct tg3 *tp = netdev_priv(dev);
6157
Joe Perches63c3a662011-04-26 08:12:10 +00006158 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00006159 features &= ~NETIF_F_ALL_TSO;
6160
6161 return features;
6162}
6163
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006164static int tg3_set_features(struct net_device *dev, u32 features)
6165{
6166 u32 changed = dev->features ^ features;
6167
6168 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
6169 tg3_set_loopback(dev, features);
6170
6171 return 0;
6172}
6173
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
6175 int new_mtu)
6176{
6177 dev->mtu = new_mtu;
6178
Michael Chanef7f5ec2005-07-25 12:32:25 -07006179 if (new_mtu > ETH_DATA_LEN) {
Joe Perches63c3a662011-04-26 08:12:10 +00006180 if (tg3_flag(tp, 5780_CLASS)) {
Michał Mirosławdc668912011-04-07 03:35:07 +00006181 netdev_update_features(dev);
Joe Perches63c3a662011-04-26 08:12:10 +00006182 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson859a5882010-04-05 10:19:28 +00006183 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006184 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Matt Carlson859a5882010-04-05 10:19:28 +00006185 }
Michael Chanef7f5ec2005-07-25 12:32:25 -07006186 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006187 if (tg3_flag(tp, 5780_CLASS)) {
6188 tg3_flag_set(tp, TSO_CAPABLE);
Michał Mirosławdc668912011-04-07 03:35:07 +00006189 netdev_update_features(dev);
6190 }
Joe Perches63c3a662011-04-26 08:12:10 +00006191 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
Michael Chanef7f5ec2005-07-25 12:32:25 -07006192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193}
6194
6195static int tg3_change_mtu(struct net_device *dev, int new_mtu)
6196{
6197 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07006198 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199
6200 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
6201 return -EINVAL;
6202
6203 if (!netif_running(dev)) {
6204 /* We'll just catch it later when the
6205 * device is up'd.
6206 */
6207 tg3_set_mtu(dev, tp, new_mtu);
6208 return 0;
6209 }
6210
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006211 tg3_phy_stop(tp);
6212
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006214
6215 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216
Michael Chan944d9802005-05-29 14:57:48 -07006217 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218
6219 tg3_set_mtu(dev, tp, new_mtu);
6220
Michael Chanb9ec6c12006-07-25 16:37:27 -07006221 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222
Michael Chanb9ec6c12006-07-25 16:37:27 -07006223 if (!err)
6224 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225
David S. Millerf47c11e2005-06-24 20:18:35 -07006226 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006228 if (!err)
6229 tg3_phy_start(tp);
6230
Michael Chanb9ec6c12006-07-25 16:37:27 -07006231 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232}
6233
Matt Carlson21f581a2009-08-28 14:00:25 +00006234static void tg3_rx_prodring_free(struct tg3 *tp,
6235 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237 int i;
6238
Matt Carlson8fea32b2010-09-15 08:59:58 +00006239 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006240 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006241 i = (i + 1) & tp->rx_std_ring_mask)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006242 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6243 tp->rx_pkt_map_sz);
6244
Joe Perches63c3a662011-04-26 08:12:10 +00006245 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006246 for (i = tpr->rx_jmb_cons_idx;
6247 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006248 i = (i + 1) & tp->rx_jmb_ring_mask) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006249 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6250 TG3_RX_JMB_MAP_SZ);
6251 }
6252 }
6253
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006254 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256
Matt Carlson2c49a442010-09-30 10:34:35 +00006257 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006258 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6259 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260
Joe Perches63c3a662011-04-26 08:12:10 +00006261 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006262 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006263 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6264 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265 }
6266}
6267
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006268/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269 *
6270 * The chip has been shut down and the driver detached from
6271 * the networking, so no interrupts or new tx packets will
6272 * end up in the driver. tp->{tx,}lock are held and thus
6273 * we may not sleep.
6274 */
Matt Carlson21f581a2009-08-28 14:00:25 +00006275static int tg3_rx_prodring_alloc(struct tg3 *tp,
6276 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277{
Matt Carlson287be122009-08-28 13:58:46 +00006278 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006280 tpr->rx_std_cons_idx = 0;
6281 tpr->rx_std_prod_idx = 0;
6282 tpr->rx_jmb_cons_idx = 0;
6283 tpr->rx_jmb_prod_idx = 0;
6284
Matt Carlson8fea32b2010-09-15 08:59:58 +00006285 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006286 memset(&tpr->rx_std_buffers[0], 0,
6287 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00006288 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006289 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00006290 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006291 goto done;
6292 }
6293
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00006295 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296
Matt Carlson287be122009-08-28 13:58:46 +00006297 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00006298 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00006299 tp->dev->mtu > ETH_DATA_LEN)
6300 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
6301 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07006302
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303 /* Initialize invariants of the rings, we only set this
6304 * stuff once. This works because the card does not
6305 * write into the rx buffer posting rings.
6306 */
Matt Carlson2c49a442010-09-30 10:34:35 +00006307 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308 struct tg3_rx_buffer_desc *rxd;
6309
Matt Carlson21f581a2009-08-28 14:00:25 +00006310 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00006311 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
6313 rxd->opaque = (RXD_OPAQUE_RING_STD |
6314 (i << RXD_OPAQUE_INDEX_SHIFT));
6315 }
6316
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006317 /* Now allocate fresh SKBs for each rx ring. */
6318 for (i = 0; i < tp->rx_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00006319 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006320 netdev_warn(tp->dev,
6321 "Using a smaller RX standard ring. Only "
6322 "%d out of %d buffers were allocated "
6323 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006324 if (i == 0)
6325 goto initfail;
6326 tp->rx_pending = i;
6327 break;
6328 }
6329 }
6330
Joe Perches63c3a662011-04-26 08:12:10 +00006331 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006332 goto done;
6333
Matt Carlson2c49a442010-09-30 10:34:35 +00006334 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006335
Joe Perches63c3a662011-04-26 08:12:10 +00006336 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00006337 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338
Matt Carlson2c49a442010-09-30 10:34:35 +00006339 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00006340 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341
Matt Carlson0d86df82010-02-17 15:17:00 +00006342 rxd = &tpr->rx_jmb[i].std;
6343 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
6344 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
6345 RXD_FLAG_JUMBO;
6346 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
6347 (i << RXD_OPAQUE_INDEX_SHIFT));
6348 }
6349
6350 for (i = 0; i < tp->rx_jumbo_pending; i++) {
6351 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006352 netdev_warn(tp->dev,
6353 "Using a smaller RX jumbo ring. Only %d "
6354 "out of %d buffers were allocated "
6355 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00006356 if (i == 0)
6357 goto initfail;
6358 tp->rx_jumbo_pending = i;
6359 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360 }
6361 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006362
6363done:
Michael Chan32d8c572006-07-25 16:38:29 -07006364 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006365
6366initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00006367 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006368 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369}
6370
Matt Carlson21f581a2009-08-28 14:00:25 +00006371static void tg3_rx_prodring_fini(struct tg3 *tp,
6372 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373{
Matt Carlson21f581a2009-08-28 14:00:25 +00006374 kfree(tpr->rx_std_buffers);
6375 tpr->rx_std_buffers = NULL;
6376 kfree(tpr->rx_jmb_buffers);
6377 tpr->rx_jmb_buffers = NULL;
6378 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006379 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
6380 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006381 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382 }
Matt Carlson21f581a2009-08-28 14:00:25 +00006383 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006384 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
6385 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006386 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006388}
6389
Matt Carlson21f581a2009-08-28 14:00:25 +00006390static int tg3_rx_prodring_init(struct tg3 *tp,
6391 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006392{
Matt Carlson2c49a442010-09-30 10:34:35 +00006393 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
6394 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006395 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006396 return -ENOMEM;
6397
Matt Carlson4bae65c2010-11-24 08:31:52 +00006398 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
6399 TG3_RX_STD_RING_BYTES(tp),
6400 &tpr->rx_std_mapping,
6401 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006402 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006403 goto err_out;
6404
Joe Perches63c3a662011-04-26 08:12:10 +00006405 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006406 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00006407 GFP_KERNEL);
6408 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006409 goto err_out;
6410
Matt Carlson4bae65c2010-11-24 08:31:52 +00006411 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
6412 TG3_RX_JMB_RING_BYTES(tp),
6413 &tpr->rx_jmb_mapping,
6414 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006415 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006416 goto err_out;
6417 }
6418
6419 return 0;
6420
6421err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00006422 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006423 return -ENOMEM;
6424}
6425
6426/* Free up pending packets in all rx/tx rings.
6427 *
6428 * The chip has been shut down and the driver detached from
6429 * the networking, so no interrupts or new tx packets will
6430 * end up in the driver. tp->{tx,}lock is not held and we are not
6431 * in an interrupt context and thus may sleep.
6432 */
6433static void tg3_free_rings(struct tg3 *tp)
6434{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006435 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006436
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006437 for (j = 0; j < tp->irq_cnt; j++) {
6438 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006439
Matt Carlson8fea32b2010-09-15 08:59:58 +00006440 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00006441
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006442 if (!tnapi->tx_buffers)
6443 continue;
6444
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006445 for (i = 0; i < TG3_TX_RING_SIZE; ) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006446 struct ring_info *txp;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006447 struct sk_buff *skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006448 unsigned int k;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006449
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006450 txp = &tnapi->tx_buffers[i];
6451 skb = txp->skb;
6452
6453 if (skb == NULL) {
6454 i++;
6455 continue;
6456 }
6457
Alexander Duyckf4188d82009-12-02 16:48:38 +00006458 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006459 dma_unmap_addr(txp, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006460 skb_headlen(skb),
6461 PCI_DMA_TODEVICE);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006462 txp->skb = NULL;
6463
Alexander Duyckf4188d82009-12-02 16:48:38 +00006464 i++;
6465
6466 for (k = 0; k < skb_shinfo(skb)->nr_frags; k++) {
6467 txp = &tnapi->tx_buffers[i & (TG3_TX_RING_SIZE - 1)];
6468 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006469 dma_unmap_addr(txp, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006470 skb_shinfo(skb)->frags[k].size,
6471 PCI_DMA_TODEVICE);
6472 i++;
6473 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006474
6475 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006476 }
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006477 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006478}
6479
6480/* Initialize tx/rx rings for packet processing.
6481 *
6482 * The chip has been shut down and the driver detached from
6483 * the networking, so no interrupts or new tx packets will
6484 * end up in the driver. tp->{tx,}lock are held and thus
6485 * we may not sleep.
6486 */
6487static int tg3_init_rings(struct tg3 *tp)
6488{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006489 int i;
Matt Carlson72334482009-08-28 14:03:01 +00006490
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006491 /* Free up all the SKBs. */
6492 tg3_free_rings(tp);
6493
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006494 for (i = 0; i < tp->irq_cnt; i++) {
6495 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006496
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006497 tnapi->last_tag = 0;
6498 tnapi->last_irq_tag = 0;
6499 tnapi->hw_status->status = 0;
6500 tnapi->hw_status->status_tag = 0;
6501 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6502
6503 tnapi->tx_prod = 0;
6504 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006505 if (tnapi->tx_ring)
6506 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006507
6508 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006509 if (tnapi->rx_rcb)
6510 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006511
Matt Carlson8fea32b2010-09-15 08:59:58 +00006512 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00006513 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006514 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006515 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006516 }
Matt Carlson72334482009-08-28 14:03:01 +00006517
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006518 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006519}
6520
6521/*
6522 * Must not be invoked with interrupt sources disabled and
6523 * the hardware shutdown down.
6524 */
6525static void tg3_free_consistent(struct tg3 *tp)
6526{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006527 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006528
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006529 for (i = 0; i < tp->irq_cnt; i++) {
6530 struct tg3_napi *tnapi = &tp->napi[i];
6531
6532 if (tnapi->tx_ring) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006533 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006534 tnapi->tx_ring, tnapi->tx_desc_mapping);
6535 tnapi->tx_ring = NULL;
6536 }
6537
6538 kfree(tnapi->tx_buffers);
6539 tnapi->tx_buffers = NULL;
6540
6541 if (tnapi->rx_rcb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006542 dma_free_coherent(&tp->pdev->dev,
6543 TG3_RX_RCB_RING_BYTES(tp),
6544 tnapi->rx_rcb,
6545 tnapi->rx_rcb_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006546 tnapi->rx_rcb = NULL;
6547 }
6548
Matt Carlson8fea32b2010-09-15 08:59:58 +00006549 tg3_rx_prodring_fini(tp, &tnapi->prodring);
6550
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006551 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006552 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
6553 tnapi->hw_status,
6554 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006555 tnapi->hw_status = NULL;
6556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006558
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006560 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
6561 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562 tp->hw_stats = NULL;
6563 }
6564}
6565
6566/*
6567 * Must not be invoked with interrupt sources disabled and
6568 * the hardware shutdown down. Can sleep.
6569 */
6570static int tg3_alloc_consistent(struct tg3 *tp)
6571{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006572 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006573
Matt Carlson4bae65c2010-11-24 08:31:52 +00006574 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
6575 sizeof(struct tg3_hw_stats),
6576 &tp->stats_mapping,
6577 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578 if (!tp->hw_stats)
6579 goto err_out;
6580
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6582
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006583 for (i = 0; i < tp->irq_cnt; i++) {
6584 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006585 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006586
Matt Carlson4bae65c2010-11-24 08:31:52 +00006587 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
6588 TG3_HW_STATUS_SIZE,
6589 &tnapi->status_mapping,
6590 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006591 if (!tnapi->hw_status)
6592 goto err_out;
6593
6594 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006595 sblk = tnapi->hw_status;
6596
Matt Carlson8fea32b2010-09-15 08:59:58 +00006597 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
6598 goto err_out;
6599
Matt Carlson19cfaec2009-12-03 08:36:20 +00006600 /* If multivector TSS is enabled, vector 0 does not handle
6601 * tx interrupts. Don't allocate any resources for it.
6602 */
Joe Perches63c3a662011-04-26 08:12:10 +00006603 if ((!i && !tg3_flag(tp, ENABLE_TSS)) ||
6604 (i && tg3_flag(tp, ENABLE_TSS))) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00006605 tnapi->tx_buffers = kzalloc(sizeof(struct ring_info) *
6606 TG3_TX_RING_SIZE,
6607 GFP_KERNEL);
6608 if (!tnapi->tx_buffers)
6609 goto err_out;
6610
Matt Carlson4bae65c2010-11-24 08:31:52 +00006611 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
6612 TG3_TX_RING_BYTES,
6613 &tnapi->tx_desc_mapping,
6614 GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00006615 if (!tnapi->tx_ring)
6616 goto err_out;
6617 }
6618
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006619 /*
6620 * When RSS is enabled, the status block format changes
6621 * slightly. The "rx_jumbo_consumer", "reserved",
6622 * and "rx_mini_consumer" members get mapped to the
6623 * other three rx return ring producer indexes.
6624 */
6625 switch (i) {
6626 default:
6627 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
6628 break;
6629 case 2:
6630 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
6631 break;
6632 case 3:
6633 tnapi->rx_rcb_prod_idx = &sblk->reserved;
6634 break;
6635 case 4:
6636 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
6637 break;
6638 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006639
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006640 /*
6641 * If multivector RSS is enabled, vector 0 does not handle
6642 * rx or tx interrupts. Don't allocate any resources for it.
6643 */
Joe Perches63c3a662011-04-26 08:12:10 +00006644 if (!i && tg3_flag(tp, ENABLE_RSS))
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006645 continue;
6646
Matt Carlson4bae65c2010-11-24 08:31:52 +00006647 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
6648 TG3_RX_RCB_RING_BYTES(tp),
6649 &tnapi->rx_rcb_mapping,
6650 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006651 if (!tnapi->rx_rcb)
6652 goto err_out;
6653
6654 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006655 }
6656
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 return 0;
6658
6659err_out:
6660 tg3_free_consistent(tp);
6661 return -ENOMEM;
6662}
6663
6664#define MAX_WAIT_CNT 1000
6665
6666/* To stop a block, clear the enable bit and poll till it
6667 * clears. tp->lock is held.
6668 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006669static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670{
6671 unsigned int i;
6672 u32 val;
6673
Joe Perches63c3a662011-04-26 08:12:10 +00006674 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675 switch (ofs) {
6676 case RCVLSC_MODE:
6677 case DMAC_MODE:
6678 case MBFREE_MODE:
6679 case BUFMGR_MODE:
6680 case MEMARB_MODE:
6681 /* We can't enable/disable these bits of the
6682 * 5705/5750, just say success.
6683 */
6684 return 0;
6685
6686 default:
6687 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006689 }
6690
6691 val = tr32(ofs);
6692 val &= ~enable_bit;
6693 tw32_f(ofs, val);
6694
6695 for (i = 0; i < MAX_WAIT_CNT; i++) {
6696 udelay(100);
6697 val = tr32(ofs);
6698 if ((val & enable_bit) == 0)
6699 break;
6700 }
6701
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006702 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00006703 dev_err(&tp->pdev->dev,
6704 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
6705 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706 return -ENODEV;
6707 }
6708
6709 return 0;
6710}
6711
6712/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006713static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006714{
6715 int i, err;
6716
6717 tg3_disable_ints(tp);
6718
6719 tp->rx_mode &= ~RX_MODE_ENABLE;
6720 tw32_f(MAC_RX_MODE, tp->rx_mode);
6721 udelay(10);
6722
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006723 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
6724 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
6725 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
6726 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
6727 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
6728 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006729
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006730 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
6731 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
6732 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
6733 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
6734 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
6735 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
6736 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737
6738 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
6739 tw32_f(MAC_MODE, tp->mac_mode);
6740 udelay(40);
6741
6742 tp->tx_mode &= ~TX_MODE_ENABLE;
6743 tw32_f(MAC_TX_MODE, tp->tx_mode);
6744
6745 for (i = 0; i < MAX_WAIT_CNT; i++) {
6746 udelay(100);
6747 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
6748 break;
6749 }
6750 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00006751 dev_err(&tp->pdev->dev,
6752 "%s timed out, TX_MODE_ENABLE will not clear "
6753 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07006754 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755 }
6756
Michael Chane6de8ad2005-05-05 14:42:41 -07006757 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006758 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
6759 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760
6761 tw32(FTQ_RESET, 0xffffffff);
6762 tw32(FTQ_RESET, 0x00000000);
6763
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006764 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
6765 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006767 for (i = 0; i < tp->irq_cnt; i++) {
6768 struct tg3_napi *tnapi = &tp->napi[i];
6769 if (tnapi->hw_status)
6770 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772 if (tp->hw_stats)
6773 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6774
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775 return err;
6776}
6777
Matt Carlson0d3031d2007-10-10 18:02:43 -07006778static void tg3_ape_send_event(struct tg3 *tp, u32 event)
6779{
6780 int i;
6781 u32 apedata;
6782
Matt Carlsondc6d0742010-09-15 08:59:55 +00006783 /* NCSI does not support APE events */
Joe Perches63c3a662011-04-26 08:12:10 +00006784 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsondc6d0742010-09-15 08:59:55 +00006785 return;
6786
Matt Carlson0d3031d2007-10-10 18:02:43 -07006787 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
6788 if (apedata != APE_SEG_SIG_MAGIC)
6789 return;
6790
6791 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
Matt Carlson731fd792008-08-15 14:07:51 -07006792 if (!(apedata & APE_FW_STATUS_READY))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006793 return;
6794
6795 /* Wait for up to 1 millisecond for APE to service previous event. */
6796 for (i = 0; i < 10; i++) {
6797 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
6798 return;
6799
6800 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
6801
6802 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6803 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
6804 event | APE_EVENT_STATUS_EVENT_PENDING);
6805
6806 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
6807
6808 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6809 break;
6810
6811 udelay(100);
6812 }
6813
6814 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6815 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
6816}
6817
6818static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
6819{
6820 u32 event;
6821 u32 apedata;
6822
Joe Perches63c3a662011-04-26 08:12:10 +00006823 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006824 return;
6825
6826 switch (kind) {
Matt Carlson33f401a2010-04-05 10:19:27 +00006827 case RESET_KIND_INIT:
6828 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
6829 APE_HOST_SEG_SIG_MAGIC);
6830 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
6831 APE_HOST_SEG_LEN_MAGIC);
6832 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
6833 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
6834 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
Matt Carlson6867c842010-07-11 09:31:44 +00006835 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
Matt Carlson33f401a2010-04-05 10:19:27 +00006836 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
6837 APE_HOST_BEHAV_NO_PHYLOCK);
Matt Carlsondc6d0742010-09-15 08:59:55 +00006838 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
6839 TG3_APE_HOST_DRVR_STATE_START);
Matt Carlson0d3031d2007-10-10 18:02:43 -07006840
Matt Carlson33f401a2010-04-05 10:19:27 +00006841 event = APE_EVENT_STATUS_STATE_START;
6842 break;
6843 case RESET_KIND_SHUTDOWN:
6844 /* With the interface we are currently using,
6845 * APE does not track driver state. Wiping
6846 * out the HOST SEGMENT SIGNATURE forces
6847 * the APE to assume OS absent status.
6848 */
6849 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
Matt Carlsonb2aee152008-11-03 16:51:11 -08006850
Matt Carlsondc6d0742010-09-15 08:59:55 +00006851 if (device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006852 tg3_flag(tp, WOL_ENABLE)) {
Matt Carlsondc6d0742010-09-15 08:59:55 +00006853 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
6854 TG3_APE_HOST_WOL_SPEED_AUTO);
6855 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
6856 } else
6857 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
6858
6859 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
6860
Matt Carlson33f401a2010-04-05 10:19:27 +00006861 event = APE_EVENT_STATUS_STATE_UNLOAD;
6862 break;
6863 case RESET_KIND_SUSPEND:
6864 event = APE_EVENT_STATUS_STATE_SUSPEND;
6865 break;
6866 default:
6867 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -07006868 }
6869
6870 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
6871
6872 tg3_ape_send_event(tp, event);
6873}
6874
Michael Chane6af3012005-04-21 17:12:05 -07006875/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
6877{
David S. Millerf49639e2006-06-09 11:58:36 -07006878 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
6879 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880
Joe Perches63c3a662011-04-26 08:12:10 +00006881 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882 switch (kind) {
6883 case RESET_KIND_INIT:
6884 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6885 DRV_STATE_START);
6886 break;
6887
6888 case RESET_KIND_SHUTDOWN:
6889 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6890 DRV_STATE_UNLOAD);
6891 break;
6892
6893 case RESET_KIND_SUSPEND:
6894 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6895 DRV_STATE_SUSPEND);
6896 break;
6897
6898 default:
6899 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006902
6903 if (kind == RESET_KIND_INIT ||
6904 kind == RESET_KIND_SUSPEND)
6905 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906}
6907
6908/* tp->lock is held. */
6909static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
6910{
Joe Perches63c3a662011-04-26 08:12:10 +00006911 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912 switch (kind) {
6913 case RESET_KIND_INIT:
6914 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6915 DRV_STATE_START_DONE);
6916 break;
6917
6918 case RESET_KIND_SHUTDOWN:
6919 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6920 DRV_STATE_UNLOAD_DONE);
6921 break;
6922
6923 default:
6924 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006927
6928 if (kind == RESET_KIND_SHUTDOWN)
6929 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930}
6931
6932/* tp->lock is held. */
6933static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
6934{
Joe Perches63c3a662011-04-26 08:12:10 +00006935 if (tg3_flag(tp, ENABLE_ASF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936 switch (kind) {
6937 case RESET_KIND_INIT:
6938 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6939 DRV_STATE_START);
6940 break;
6941
6942 case RESET_KIND_SHUTDOWN:
6943 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6944 DRV_STATE_UNLOAD);
6945 break;
6946
6947 case RESET_KIND_SUSPEND:
6948 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6949 DRV_STATE_SUSPEND);
6950 break;
6951
6952 default:
6953 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955 }
6956}
6957
Michael Chan7a6f4362006-09-27 16:03:31 -07006958static int tg3_poll_fw(struct tg3 *tp)
6959{
6960 int i;
6961 u32 val;
6962
Michael Chanb5d37722006-09-27 16:06:21 -07006963 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08006964 /* Wait up to 20ms for init done. */
6965 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07006966 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
6967 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08006968 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07006969 }
6970 return -ENODEV;
6971 }
6972
Michael Chan7a6f4362006-09-27 16:03:31 -07006973 /* Wait for firmware initialization to complete. */
6974 for (i = 0; i < 100000; i++) {
6975 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
6976 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
6977 break;
6978 udelay(10);
6979 }
6980
6981 /* Chip might not be fitted with firmware. Some Sun onboard
6982 * parts are configured like that. So don't signal the timeout
6983 * of the above loop as an error, but do report the lack of
6984 * running firmware once.
6985 */
Joe Perches63c3a662011-04-26 08:12:10 +00006986 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
6987 tg3_flag_set(tp, NO_FWARE_REPORTED);
Michael Chan7a6f4362006-09-27 16:03:31 -07006988
Joe Perches05dbe002010-02-17 19:44:19 +00006989 netdev_info(tp->dev, "No firmware running\n");
Michael Chan7a6f4362006-09-27 16:03:31 -07006990 }
6991
Matt Carlson6b10c162010-02-12 14:47:08 +00006992 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
6993 /* The 57765 A0 needs a little more
6994 * time to do some important work.
6995 */
6996 mdelay(10);
6997 }
6998
Michael Chan7a6f4362006-09-27 16:03:31 -07006999 return 0;
7000}
7001
Michael Chanee6a99b2007-07-18 21:49:10 -07007002/* Save PCI command register before chip reset */
7003static void tg3_save_pci_state(struct tg3 *tp)
7004{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007005 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007006}
7007
7008/* Restore PCI state after chip reset */
7009static void tg3_restore_pci_state(struct tg3 *tp)
7010{
7011 u32 val;
7012
7013 /* Re-enable indirect register accesses. */
7014 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7015 tp->misc_host_ctrl);
7016
7017 /* Set MAX PCI retry to zero. */
7018 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7019 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007020 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007021 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007022 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007023 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007024 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc2010-06-05 17:24:30 +00007025 PCISTATE_ALLOW_APE_SHMEM_WR |
7026 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007027 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7028
Matt Carlson8a6eac92007-10-21 16:17:55 -07007029 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007030
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007031 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +00007032 if (tg3_flag(tp, PCI_EXPRESS))
Matt Carlsoncf790032010-11-24 08:31:48 +00007033 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007034 else {
7035 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7036 tp->pci_cacheline_sz);
7037 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7038 tp->pci_lat_timer);
7039 }
Michael Chan114342f2007-10-15 02:12:26 -07007040 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007041
Michael Chanee6a99b2007-07-18 21:49:10 -07007042 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007043 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007044 u16 pcix_cmd;
7045
7046 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7047 &pcix_cmd);
7048 pcix_cmd &= ~PCI_X_CMD_ERO;
7049 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7050 pcix_cmd);
7051 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007052
Joe Perches63c3a662011-04-26 08:12:10 +00007053 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007054
7055 /* Chip reset on 5780 will reset MSI enable bit,
7056 * so need to restore it.
7057 */
Joe Perches63c3a662011-04-26 08:12:10 +00007058 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007059 u16 ctrl;
7060
7061 pci_read_config_word(tp->pdev,
7062 tp->msi_cap + PCI_MSI_FLAGS,
7063 &ctrl);
7064 pci_write_config_word(tp->pdev,
7065 tp->msi_cap + PCI_MSI_FLAGS,
7066 ctrl | PCI_MSI_FLAGS_ENABLE);
7067 val = tr32(MSGINT_MODE);
7068 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7069 }
7070 }
7071}
7072
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073static void tg3_stop_fw(struct tg3 *);
7074
7075/* tp->lock is held. */
7076static int tg3_chip_reset(struct tg3 *tp)
7077{
7078 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007079 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007080 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081
David S. Millerf49639e2006-06-09 11:58:36 -07007082 tg3_nvram_lock(tp);
7083
Matt Carlson77b483f2008-08-15 14:07:24 -07007084 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7085
David S. Millerf49639e2006-06-09 11:58:36 -07007086 /* No matching tg3_nvram_unlock() after this because
7087 * chip reset below will undo the nvram lock.
7088 */
7089 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090
Michael Chanee6a99b2007-07-18 21:49:10 -07007091 /* GRC_MISC_CFG core clock reset will clear the memory
7092 * enable bit in PCI register 4 and the MSI enable bit
7093 * on some chips, so we save relevant registers here.
7094 */
7095 tg3_save_pci_state(tp);
7096
Michael Chand9ab5ad2006-03-20 22:27:35 -08007097 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00007098 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad2006-03-20 22:27:35 -08007099 tw32(GRC_FASTBOOT_PC, 0);
7100
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101 /*
7102 * We must avoid the readl() that normally takes place.
7103 * It locks machines, causes machine checks, and other
7104 * fun things. So, temporarily disable the 5701
7105 * hardware workaround, while we do the reset.
7106 */
Michael Chan1ee582d2005-08-09 20:16:46 -07007107 write_op = tp->write32;
7108 if (write_op == tg3_write_flush_reg32)
7109 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110
Michael Chand18edcb2007-03-24 20:57:11 -07007111 /* Prevent the irq handler from reading or writing PCI registers
7112 * during chip reset when the memory enable bit in the PCI command
7113 * register may be cleared. The chip does not generate interrupt
7114 * at this time, but the irq handler may still be called due to irq
7115 * sharing or irqpoll.
7116 */
Joe Perches63c3a662011-04-26 08:12:10 +00007117 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007118 for (i = 0; i < tp->irq_cnt; i++) {
7119 struct tg3_napi *tnapi = &tp->napi[i];
7120 if (tnapi->hw_status) {
7121 tnapi->hw_status->status = 0;
7122 tnapi->hw_status->status_tag = 0;
7123 }
7124 tnapi->last_tag = 0;
7125 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07007126 }
Michael Chand18edcb2007-03-24 20:57:11 -07007127 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00007128
7129 for (i = 0; i < tp->irq_cnt; i++)
7130 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07007131
Matt Carlson255ca312009-08-25 10:07:27 +00007132 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7133 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7134 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
7135 }
7136
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137 /* do the reset */
7138 val = GRC_MISC_CFG_CORECLK_RESET;
7139
Joe Perches63c3a662011-04-26 08:12:10 +00007140 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00007141 /* Force PCIe 1.0a mode */
7142 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007143 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00007144 tr32(TG3_PCIE_PHY_TSTCTL) ==
7145 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
7146 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
7147
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
7149 tw32(GRC_MISC_CFG, (1 << 29));
7150 val |= (1 << 29);
7151 }
7152 }
7153
Michael Chanb5d37722006-09-27 16:06:21 -07007154 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7155 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
7156 tw32(GRC_VCPU_EXT_CTRL,
7157 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
7158 }
7159
Matt Carlsonf37500d2010-08-02 11:25:59 +00007160 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00007161 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007162 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00007163
Linus Torvalds1da177e2005-04-16 15:20:36 -07007164 tw32(GRC_MISC_CFG, val);
7165
Michael Chan1ee582d2005-08-09 20:16:46 -07007166 /* restore 5701 hardware bug workaround write method */
7167 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168
7169 /* Unfortunately, we have to delay before the PCI read back.
7170 * Some 575X chips even will not respond to a PCI cfg access
7171 * when the reset command is given to the chip.
7172 *
7173 * How do these hardware designers expect things to work
7174 * properly if the PCI write is posted for a long period
7175 * of time? It is always necessary to have some method by
7176 * which a register read back can occur to push the write
7177 * out which does the reset.
7178 *
7179 * For most tg3 variants the trick below was working.
7180 * Ho hum...
7181 */
7182 udelay(120);
7183
7184 /* Flush PCI posted writes. The normal MMIO registers
7185 * are inaccessible at this time so this is the only
7186 * way to make this reliably (actually, this is no longer
7187 * the case, see above). I tried to use indirect
7188 * register read/write but this upset some 5701 variants.
7189 */
7190 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
7191
7192 udelay(120);
7193
Joe Perches63c3a662011-04-26 08:12:10 +00007194 if (tg3_flag(tp, PCI_EXPRESS) && tp->pcie_cap) {
Matt Carlsone7126992009-08-25 10:08:16 +00007195 u16 val16;
7196
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
7198 int i;
7199 u32 cfg_val;
7200
7201 /* Wait for link training to complete. */
7202 for (i = 0; i < 5000; i++)
7203 udelay(100);
7204
7205 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
7206 pci_write_config_dword(tp->pdev, 0xc4,
7207 cfg_val | (1 << 15));
7208 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007209
Matt Carlsone7126992009-08-25 10:08:16 +00007210 /* Clear the "no snoop" and "relaxed ordering" bits. */
7211 pci_read_config_word(tp->pdev,
7212 tp->pcie_cap + PCI_EXP_DEVCTL,
7213 &val16);
7214 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
7215 PCI_EXP_DEVCTL_NOSNOOP_EN);
7216 /*
7217 * Older PCIe devices only support the 128 byte
7218 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007219 */
Joe Perches63c3a662011-04-26 08:12:10 +00007220 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00007221 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007222 pci_write_config_word(tp->pdev,
7223 tp->pcie_cap + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007224 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007225
Matt Carlsoncf790032010-11-24 08:31:48 +00007226 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007227
7228 /* Clear error status */
7229 pci_write_config_word(tp->pdev,
7230 tp->pcie_cap + PCI_EXP_DEVSTA,
7231 PCI_EXP_DEVSTA_CED |
7232 PCI_EXP_DEVSTA_NFED |
7233 PCI_EXP_DEVSTA_FED |
7234 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007235 }
7236
Michael Chanee6a99b2007-07-18 21:49:10 -07007237 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007238
Joe Perches63c3a662011-04-26 08:12:10 +00007239 tg3_flag_clear(tp, CHIP_RESETTING);
7240 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07007241
Michael Chanee6a99b2007-07-18 21:49:10 -07007242 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007243 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07007244 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07007245 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007246
7247 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
7248 tg3_stop_fw(tp);
7249 tw32(0x5000, 0x400);
7250 }
7251
7252 tw32(GRC_MODE, tp->grc_mode);
7253
7254 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007255 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007256
7257 tw32(0xc4, val | (1 << 15));
7258 }
7259
7260 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
7261 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
7262 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
7263 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
7264 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
7265 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7266 }
7267
Joe Perches63c3a662011-04-26 08:12:10 +00007268 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007269 tp->mac_mode = MAC_MODE_APE_TX_EN |
7270 MAC_MODE_APE_RX_EN |
7271 MAC_MODE_TDE_ENABLE;
7272
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007273 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007274 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
7275 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007276 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007277 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7278 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007280 val = 0;
7281
7282 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283 udelay(40);
7284
Matt Carlson77b483f2008-08-15 14:07:24 -07007285 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
7286
Michael Chan7a6f4362006-09-27 16:03:31 -07007287 err = tg3_poll_fw(tp);
7288 if (err)
7289 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007290
Matt Carlson0a9140c2009-08-28 12:27:50 +00007291 tg3_mdio_start(tp);
7292
Joe Perches63c3a662011-04-26 08:12:10 +00007293 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007294 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7295 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007296 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007297 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007298
7299 tw32(0x7c00, val | (1 << 25));
7300 }
7301
Matt Carlsond78b59f2011-04-05 14:22:46 +00007302 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
7303 val = tr32(TG3_CPMU_CLCK_ORIDE);
7304 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
7305 }
7306
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00007308 tg3_flag_clear(tp, ENABLE_ASF);
7309 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7311 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7312 u32 nic_cfg;
7313
7314 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7315 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00007316 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007317 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00007318 if (tg3_flag(tp, 5750_PLUS))
7319 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320 }
7321 }
7322
7323 return 0;
7324}
7325
7326/* tp->lock is held. */
7327static void tg3_stop_fw(struct tg3 *tp)
7328{
Joe Perches63c3a662011-04-26 08:12:10 +00007329 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07007330 /* Wait for RX cpu to ACK the previous event. */
7331 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332
7333 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007334
7335 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336
Matt Carlson7c5026a2008-05-02 16:49:29 -07007337 /* Wait for RX cpu to ACK this event. */
7338 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339 }
7340}
7341
7342/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007343static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344{
7345 int err;
7346
7347 tg3_stop_fw(tp);
7348
Michael Chan944d9802005-05-29 14:57:48 -07007349 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007351 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007352 err = tg3_chip_reset(tp);
7353
Matt Carlsondaba2a62009-04-20 06:58:52 +00007354 __tg3_set_mac_addr(tp, 0);
7355
Michael Chan944d9802005-05-29 14:57:48 -07007356 tg3_write_sig_legacy(tp, kind);
7357 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007358
7359 if (err)
7360 return err;
7361
7362 return 0;
7363}
7364
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365#define RX_CPU_SCRATCH_BASE 0x30000
7366#define RX_CPU_SCRATCH_SIZE 0x04000
7367#define TX_CPU_SCRATCH_BASE 0x34000
7368#define TX_CPU_SCRATCH_SIZE 0x04000
7369
7370/* tp->lock is held. */
7371static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
7372{
7373 int i;
7374
Joe Perches63c3a662011-04-26 08:12:10 +00007375 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376
Michael Chanb5d37722006-09-27 16:06:21 -07007377 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7378 u32 val = tr32(GRC_VCPU_EXT_CTRL);
7379
7380 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
7381 return 0;
7382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007383 if (offset == RX_CPU_BASE) {
7384 for (i = 0; i < 10000; i++) {
7385 tw32(offset + CPU_STATE, 0xffffffff);
7386 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7387 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7388 break;
7389 }
7390
7391 tw32(offset + CPU_STATE, 0xffffffff);
7392 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
7393 udelay(10);
7394 } else {
7395 for (i = 0; i < 10000; i++) {
7396 tw32(offset + CPU_STATE, 0xffffffff);
7397 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7398 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7399 break;
7400 }
7401 }
7402
7403 if (i >= 10000) {
Joe Perches05dbe002010-02-17 19:44:19 +00007404 netdev_err(tp->dev, "%s timed out, %s CPU\n",
7405 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007406 return -ENODEV;
7407 }
Michael Chanec41c7d2006-01-17 02:40:55 -08007408
7409 /* Clear firmware's nvram arbitration. */
Joe Perches63c3a662011-04-26 08:12:10 +00007410 if (tg3_flag(tp, NVRAM))
Michael Chanec41c7d2006-01-17 02:40:55 -08007411 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412 return 0;
7413}
7414
7415struct fw_info {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007416 unsigned int fw_base;
7417 unsigned int fw_len;
7418 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007419};
7420
7421/* tp->lock is held. */
7422static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
7423 int cpu_scratch_size, struct fw_info *info)
7424{
Michael Chanec41c7d2006-01-17 02:40:55 -08007425 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007426 void (*write_op)(struct tg3 *, u32, u32);
7427
Joe Perches63c3a662011-04-26 08:12:10 +00007428 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007429 netdev_err(tp->dev,
7430 "%s: Trying to load TX cpu firmware which is 5705\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007431 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007432 return -EINVAL;
7433 }
7434
Joe Perches63c3a662011-04-26 08:12:10 +00007435 if (tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436 write_op = tg3_write_mem;
7437 else
7438 write_op = tg3_write_indirect_reg32;
7439
Michael Chan1b628152005-05-29 14:59:49 -07007440 /* It is possible that bootcode is still loading at this point.
7441 * Get the nvram lock first before halting the cpu.
7442 */
Michael Chanec41c7d2006-01-17 02:40:55 -08007443 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007444 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08007445 if (!lock_err)
7446 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447 if (err)
7448 goto out;
7449
7450 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
7451 write_op(tp, cpu_scratch_base + i, 0);
7452 tw32(cpu_base + CPU_STATE, 0xffffffff);
7453 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007454 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455 write_op(tp, (cpu_scratch_base +
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007456 (info->fw_base & 0xffff) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07007457 (i * sizeof(u32))),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007458 be32_to_cpu(info->fw_data[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459
7460 err = 0;
7461
7462out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463 return err;
7464}
7465
7466/* tp->lock is held. */
7467static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
7468{
7469 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007470 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471 int err, i;
7472
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007473 fw_data = (void *)tp->fw->data;
7474
7475 /* Firmware blob starts with version numbers, followed by
7476 start address and length. We are setting complete length.
7477 length = end_address_of_bss - start_address_of_text.
7478 Remainder is the blob to be loaded contiguously
7479 from start address. */
7480
7481 info.fw_base = be32_to_cpu(fw_data[1]);
7482 info.fw_len = tp->fw->size - 12;
7483 info.fw_data = &fw_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007484
7485 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
7486 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
7487 &info);
7488 if (err)
7489 return err;
7490
7491 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
7492 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
7493 &info);
7494 if (err)
7495 return err;
7496
7497 /* Now startup only the RX cpu. */
7498 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007499 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500
7501 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007502 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503 break;
7504 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7505 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007506 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507 udelay(1000);
7508 }
7509 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007510 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
7511 "should be %08x\n", __func__,
Joe Perches05dbe002010-02-17 19:44:19 +00007512 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007513 return -ENODEV;
7514 }
7515 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7516 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
7517
7518 return 0;
7519}
7520
Linus Torvalds1da177e2005-04-16 15:20:36 -07007521/* tp->lock is held. */
7522static int tg3_load_tso_firmware(struct tg3 *tp)
7523{
7524 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007525 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007526 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
7527 int err, i;
7528
Joe Perches63c3a662011-04-26 08:12:10 +00007529 if (tg3_flag(tp, HW_TSO_1) ||
7530 tg3_flag(tp, HW_TSO_2) ||
7531 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007532 return 0;
7533
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007534 fw_data = (void *)tp->fw->data;
7535
7536 /* Firmware blob starts with version numbers, followed by
7537 start address and length. We are setting complete length.
7538 length = end_address_of_bss - start_address_of_text.
7539 Remainder is the blob to be loaded contiguously
7540 from start address. */
7541
7542 info.fw_base = be32_to_cpu(fw_data[1]);
7543 cpu_scratch_size = tp->fw_len;
7544 info.fw_len = tp->fw->size - 12;
7545 info.fw_data = &fw_data[3];
7546
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007548 cpu_base = RX_CPU_BASE;
7549 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007550 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551 cpu_base = TX_CPU_BASE;
7552 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
7553 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
7554 }
7555
7556 err = tg3_load_firmware_cpu(tp, cpu_base,
7557 cpu_scratch_base, cpu_scratch_size,
7558 &info);
7559 if (err)
7560 return err;
7561
7562 /* Now startup the cpu. */
7563 tw32(cpu_base + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007564 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007565
7566 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007567 if (tr32(cpu_base + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568 break;
7569 tw32(cpu_base + CPU_STATE, 0xffffffff);
7570 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007571 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572 udelay(1000);
7573 }
7574 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007575 netdev_err(tp->dev,
7576 "%s fails to set CPU PC, is %08x should be %08x\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007577 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007578 return -ENODEV;
7579 }
7580 tw32(cpu_base + CPU_STATE, 0xffffffff);
7581 tw32_f(cpu_base + CPU_MODE, 0x00000000);
7582 return 0;
7583}
7584
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585
Linus Torvalds1da177e2005-04-16 15:20:36 -07007586static int tg3_set_mac_addr(struct net_device *dev, void *p)
7587{
7588 struct tg3 *tp = netdev_priv(dev);
7589 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007590 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591
Michael Chanf9804dd2005-09-27 12:13:10 -07007592 if (!is_valid_ether_addr(addr->sa_data))
7593 return -EINVAL;
7594
Linus Torvalds1da177e2005-04-16 15:20:36 -07007595 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7596
Michael Chane75f7c92006-03-20 21:33:26 -08007597 if (!netif_running(dev))
7598 return 0;
7599
Joe Perches63c3a662011-04-26 08:12:10 +00007600 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007601 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007602
Michael Chan986e0ae2007-05-05 12:10:20 -07007603 addr0_high = tr32(MAC_ADDR_0_HIGH);
7604 addr0_low = tr32(MAC_ADDR_0_LOW);
7605 addr1_high = tr32(MAC_ADDR_1_HIGH);
7606 addr1_low = tr32(MAC_ADDR_1_LOW);
7607
7608 /* Skip MAC addr 1 if ASF is using it. */
7609 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7610 !(addr1_high == 0 && addr1_low == 0))
7611 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007612 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007613 spin_lock_bh(&tp->lock);
7614 __tg3_set_mac_addr(tp, skip_mac_1);
7615 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007616
Michael Chanb9ec6c12006-07-25 16:37:27 -07007617 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007618}
7619
7620/* tp->lock is held. */
7621static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7622 dma_addr_t mapping, u32 maxlen_flags,
7623 u32 nic_addr)
7624{
7625 tg3_write_mem(tp,
7626 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7627 ((u64) mapping >> 32));
7628 tg3_write_mem(tp,
7629 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7630 ((u64) mapping & 0xffffffff));
7631 tg3_write_mem(tp,
7632 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7633 maxlen_flags);
7634
Joe Perches63c3a662011-04-26 08:12:10 +00007635 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007636 tg3_write_mem(tp,
7637 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7638 nic_addr);
7639}
7640
7641static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007642static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007643{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007644 int i;
7645
Joe Perches63c3a662011-04-26 08:12:10 +00007646 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007647 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7648 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7649 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007650 } else {
7651 tw32(HOSTCC_TXCOL_TICKS, 0);
7652 tw32(HOSTCC_TXMAX_FRAMES, 0);
7653 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007654 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007655
Joe Perches63c3a662011-04-26 08:12:10 +00007656 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007657 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7658 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7659 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7660 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007661 tw32(HOSTCC_RXCOL_TICKS, 0);
7662 tw32(HOSTCC_RXMAX_FRAMES, 0);
7663 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07007664 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007665
Joe Perches63c3a662011-04-26 08:12:10 +00007666 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07007667 u32 val = ec->stats_block_coalesce_usecs;
7668
Matt Carlsonb6080e12009-09-01 13:12:00 +00007669 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
7670 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
7671
David S. Miller15f98502005-05-18 22:49:26 -07007672 if (!netif_carrier_ok(tp->dev))
7673 val = 0;
7674
7675 tw32(HOSTCC_STAT_COAL_TICKS, val);
7676 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007677
7678 for (i = 0; i < tp->irq_cnt - 1; i++) {
7679 u32 reg;
7680
7681 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
7682 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007683 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
7684 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007685 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
7686 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007687
Joe Perches63c3a662011-04-26 08:12:10 +00007688 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007689 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
7690 tw32(reg, ec->tx_coalesce_usecs);
7691 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
7692 tw32(reg, ec->tx_max_coalesced_frames);
7693 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
7694 tw32(reg, ec->tx_max_coalesced_frames_irq);
7695 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007696 }
7697
7698 for (; i < tp->irq_max - 1; i++) {
7699 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007700 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007701 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007702
Joe Perches63c3a662011-04-26 08:12:10 +00007703 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007704 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
7705 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
7706 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7707 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007708 }
David S. Miller15f98502005-05-18 22:49:26 -07007709}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007710
7711/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00007712static void tg3_rings_reset(struct tg3 *tp)
7713{
7714 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007715 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007716 struct tg3_napi *tnapi = &tp->napi[0];
7717
7718 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007719 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007720 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00007721 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00007722 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlsonb703df62009-12-03 08:36:21 +00007723 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
7724 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007725 else
7726 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7727
7728 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7729 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
7730 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
7731 BDINFO_FLAGS_DISABLED);
7732
7733
7734 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007735 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007736 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00007737 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007738 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007739 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7740 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson2d31eca2009-09-01 12:53:31 +00007741 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
7742 else
7743 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7744
7745 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7746 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
7747 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
7748 BDINFO_FLAGS_DISABLED);
7749
7750 /* Disable interrupts */
7751 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00007752 tp->napi[0].chk_msi_cnt = 0;
7753 tp->napi[0].last_rx_cons = 0;
7754 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007755
7756 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00007757 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00007758 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007759 tp->napi[i].tx_prod = 0;
7760 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007761 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007762 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007763 tw32_rx_mbox(tp->napi[i].consmbox, 0);
7764 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00007765 tp->napi[0].chk_msi_cnt = 0;
7766 tp->napi[i].last_rx_cons = 0;
7767 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007768 }
Joe Perches63c3a662011-04-26 08:12:10 +00007769 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007770 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007771 } else {
7772 tp->napi[0].tx_prod = 0;
7773 tp->napi[0].tx_cons = 0;
7774 tw32_mailbox(tp->napi[0].prodmbox, 0);
7775 tw32_rx_mbox(tp->napi[0].consmbox, 0);
7776 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007777
7778 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00007779 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00007780 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
7781 for (i = 0; i < 16; i++)
7782 tw32_tx_mbox(mbox + i * 8, 0);
7783 }
7784
7785 txrcb = NIC_SRAM_SEND_RCB;
7786 rxrcb = NIC_SRAM_RCV_RET_RCB;
7787
7788 /* Clear status block in ram. */
7789 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7790
7791 /* Set status block DMA address */
7792 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7793 ((u64) tnapi->status_mapping >> 32));
7794 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7795 ((u64) tnapi->status_mapping & 0xffffffff));
7796
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007797 if (tnapi->tx_ring) {
7798 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7799 (TG3_TX_RING_SIZE <<
7800 BDINFO_FLAGS_MAXLEN_SHIFT),
7801 NIC_SRAM_TX_BUFFER_DESC);
7802 txrcb += TG3_BDINFO_SIZE;
7803 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007804
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007805 if (tnapi->rx_rcb) {
7806 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00007807 (tp->rx_ret_ring_mask + 1) <<
7808 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007809 rxrcb += TG3_BDINFO_SIZE;
7810 }
7811
7812 stblk = HOSTCC_STATBLCK_RING1;
7813
7814 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
7815 u64 mapping = (u64)tnapi->status_mapping;
7816 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
7817 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
7818
7819 /* Clear status block in ram. */
7820 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7821
Matt Carlson19cfaec2009-12-03 08:36:20 +00007822 if (tnapi->tx_ring) {
7823 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7824 (TG3_TX_RING_SIZE <<
7825 BDINFO_FLAGS_MAXLEN_SHIFT),
7826 NIC_SRAM_TX_BUFFER_DESC);
7827 txrcb += TG3_BDINFO_SIZE;
7828 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007829
7830 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00007831 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007832 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7833
7834 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007835 rxrcb += TG3_BDINFO_SIZE;
7836 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007837}
7838
Matt Carlsoneb07a942011-04-20 07:57:36 +00007839static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
7840{
7841 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
7842
Joe Perches63c3a662011-04-26 08:12:10 +00007843 if (!tg3_flag(tp, 5750_PLUS) ||
7844 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00007845 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
7846 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
7847 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
7848 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7849 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
7850 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
7851 else
7852 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
7853
7854 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
7855 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
7856
7857 val = min(nic_rep_thresh, host_rep_thresh);
7858 tw32(RCVBDI_STD_THRESH, val);
7859
Joe Perches63c3a662011-04-26 08:12:10 +00007860 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007861 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
7862
Joe Perches63c3a662011-04-26 08:12:10 +00007863 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007864 return;
7865
Joe Perches63c3a662011-04-26 08:12:10 +00007866 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007867 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
7868 else
7869 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5717;
7870
7871 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
7872
7873 val = min(bdcache_maxcnt / 2, host_rep_thresh);
7874 tw32(RCVBDI_JUMBO_THRESH, val);
7875
Joe Perches63c3a662011-04-26 08:12:10 +00007876 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007877 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
7878}
7879
Matt Carlson2d31eca2009-09-01 12:53:31 +00007880/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007881static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882{
7883 u32 val, rdmac_mode;
7884 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00007885 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886
7887 tg3_disable_ints(tp);
7888
7889 tg3_stop_fw(tp);
7890
7891 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
7892
Joe Perches63c3a662011-04-26 08:12:10 +00007893 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07007894 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895
Matt Carlson699c0192010-12-06 08:28:51 +00007896 /* Enable MAC control of LPI */
7897 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
7898 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
7899 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
7900 TG3_CPMU_EEE_LNKIDL_UART_IDL);
7901
7902 tw32_f(TG3_CPMU_EEE_CTRL,
7903 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
7904
Matt Carlsona386b902010-12-06 08:28:53 +00007905 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
7906 TG3_CPMU_EEEMD_LPI_IN_TX |
7907 TG3_CPMU_EEEMD_LPI_IN_RX |
7908 TG3_CPMU_EEEMD_EEE_ENABLE;
7909
7910 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
7911 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
7912
Joe Perches63c3a662011-04-26 08:12:10 +00007913 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00007914 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
7915
7916 tw32_f(TG3_CPMU_EEE_MODE, val);
7917
7918 tw32_f(TG3_CPMU_EEE_DBTMR1,
7919 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
7920 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
7921
7922 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00007923 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00007924 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00007925 }
7926
Matt Carlson603f1172010-02-12 14:47:10 +00007927 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08007928 tg3_phy_reset(tp);
7929
Linus Torvalds1da177e2005-04-16 15:20:36 -07007930 err = tg3_chip_reset(tp);
7931 if (err)
7932 return err;
7933
7934 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
7935
Matt Carlsonbcb37f62008-11-03 16:52:09 -08007936 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007937 val = tr32(TG3_CPMU_CTRL);
7938 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
7939 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08007940
7941 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
7942 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
7943 val |= CPMU_LSPD_10MB_MACCLK_6_25;
7944 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
7945
7946 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
7947 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
7948 val |= CPMU_LNK_AWARE_MACCLK_6_25;
7949 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
7950
7951 val = tr32(TG3_CPMU_HST_ACC);
7952 val &= ~CPMU_HST_ACC_MACCLK_MASK;
7953 val |= CPMU_HST_ACC_MACCLK_6_25;
7954 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07007955 }
7956
Matt Carlson33466d92009-04-20 06:57:41 +00007957 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7958 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
7959 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
7960 PCIE_PWR_MGMT_L1_THRESH_4MS;
7961 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00007962
7963 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
7964 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
7965
7966 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00007967
Matt Carlsonf40386c2009-11-02 14:24:02 +00007968 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7969 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00007970 }
7971
Joe Perches63c3a662011-04-26 08:12:10 +00007972 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b05902010-01-20 16:58:02 +00007973 u32 grc_mode = tr32(GRC_MODE);
7974
7975 /* Access the lower 1K of PL PCIE block registers. */
7976 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
7977 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
7978
7979 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
7980 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
7981 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
7982
7983 tw32(GRC_MODE, grc_mode);
7984 }
7985
Matt Carlson5093eed2010-11-24 08:31:45 +00007986 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
7987 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
7988 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00007989
Matt Carlson5093eed2010-11-24 08:31:45 +00007990 /* Access the lower 1K of PL PCIE block registers. */
7991 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
7992 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00007993
Matt Carlson5093eed2010-11-24 08:31:45 +00007994 val = tr32(TG3_PCIE_TLDLPL_PORT +
7995 TG3_PCIE_PL_LO_PHYCTL5);
7996 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
7997 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00007998
Matt Carlson5093eed2010-11-24 08:31:45 +00007999 tw32(GRC_MODE, grc_mode);
8000 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008001
Matt Carlson1ff30a52011-05-19 12:12:46 +00008002 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_57765_AX) {
8003 u32 grc_mode = tr32(GRC_MODE);
8004
8005 /* Access the lower 1K of DL PCIE block registers. */
8006 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8007 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
8008
8009 val = tr32(TG3_PCIE_TLDLPL_PORT +
8010 TG3_PCIE_DL_LO_FTSMAX);
8011 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
8012 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
8013 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
8014
8015 tw32(GRC_MODE, grc_mode);
8016 }
8017
Matt Carlsona977dbe2010-04-12 06:58:26 +00008018 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8019 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8020 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8021 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008022 }
8023
Linus Torvalds1da177e2005-04-16 15:20:36 -07008024 /* This works around an issue with Athlon chipsets on
8025 * B3 tigon3 silicon. This bit has no effect on any
8026 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008027 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028 */
Joe Perches63c3a662011-04-26 08:12:10 +00008029 if (!tg3_flag(tp, CPMU_PRESENT)) {
8030 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008031 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8032 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034
8035 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008036 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008037 val = tr32(TG3PCI_PCISTATE);
8038 val |= PCISTATE_RETRY_SAME_DMA;
8039 tw32(TG3PCI_PCISTATE, val);
8040 }
8041
Joe Perches63c3a662011-04-26 08:12:10 +00008042 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008043 /* Allow reads and writes to the
8044 * APE register and memory space.
8045 */
8046 val = tr32(TG3PCI_PCISTATE);
8047 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc2010-06-05 17:24:30 +00008048 PCISTATE_ALLOW_APE_SHMEM_WR |
8049 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008050 tw32(TG3PCI_PCISTATE, val);
8051 }
8052
Linus Torvalds1da177e2005-04-16 15:20:36 -07008053 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8054 /* Enable some hw fixes. */
8055 val = tr32(TG3PCI_MSI_DATA);
8056 val |= (1 << 26) | (1 << 28) | (1 << 29);
8057 tw32(TG3PCI_MSI_DATA, val);
8058 }
8059
8060 /* Descriptor ring init may make accesses to the
8061 * NIC SRAM area to setup the TX descriptors, so we
8062 * can only do this after the hardware has been
8063 * successfully reset.
8064 */
Michael Chan32d8c572006-07-25 16:38:29 -07008065 err = tg3_init_rings(tp);
8066 if (err)
8067 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008068
Joe Perches63c3a662011-04-26 08:12:10 +00008069 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008070 val = tr32(TG3PCI_DMA_RW_CTRL) &
8071 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008072 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8073 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson0aebff42011-04-25 12:42:45 +00008074 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765 &&
8075 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8076 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008077 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8078 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8079 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008080 /* This value is determined during the probe time DMA
8081 * engine test, tg3_test_dma.
8082 */
8083 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008085
8086 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8087 GRC_MODE_4X_NIC_SEND_RINGS |
8088 GRC_MODE_NO_TX_PHDR_CSUM |
8089 GRC_MODE_NO_RX_PHDR_CSUM);
8090 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008091
8092 /* Pseudo-header checksum is done by hardware logic and not
8093 * the offload processers, so make the chip do the pseudo-
8094 * header checksums on receive. For transmit it is more
8095 * convenient to do the pseudo-header checksum in software
8096 * as Linux does that on transmit for us in all cases.
8097 */
8098 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008099
8100 tw32(GRC_MODE,
8101 tp->grc_mode |
8102 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8103
8104 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8105 val = tr32(GRC_MISC_CFG);
8106 val &= ~0xff;
8107 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8108 tw32(GRC_MISC_CFG, val);
8109
8110 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008111 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008112 /* Do nothing. */
8113 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8114 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8115 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8116 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8117 else
8118 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8119 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8120 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008121 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122 int fw_len;
8123
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008124 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8126 tw32(BUFMGR_MB_POOL_ADDR,
8127 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8128 tw32(BUFMGR_MB_POOL_SIZE,
8129 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008131
Michael Chan0f893dc2005-07-25 12:30:38 -07008132 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008133 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8134 tp->bufmgr_config.mbuf_read_dma_low_water);
8135 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8136 tp->bufmgr_config.mbuf_mac_rx_low_water);
8137 tw32(BUFMGR_MB_HIGH_WATER,
8138 tp->bufmgr_config.mbuf_high_water);
8139 } else {
8140 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8141 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8142 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8143 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8144 tw32(BUFMGR_MB_HIGH_WATER,
8145 tp->bufmgr_config.mbuf_high_water_jumbo);
8146 }
8147 tw32(BUFMGR_DMA_LOW_WATER,
8148 tp->bufmgr_config.dma_low_water);
8149 tw32(BUFMGR_DMA_HIGH_WATER,
8150 tp->bufmgr_config.dma_high_water);
8151
Matt Carlsond309a462010-09-30 10:34:31 +00008152 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8153 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8154 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008155 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8156 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8157 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8158 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008159 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160 for (i = 0; i < 2000; i++) {
8161 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8162 break;
8163 udelay(10);
8164 }
8165 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008166 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008167 return -ENODEV;
8168 }
8169
Matt Carlsoneb07a942011-04-20 07:57:36 +00008170 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8171 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008172
Matt Carlsoneb07a942011-04-20 07:57:36 +00008173 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008174
8175 /* Initialize TG3_BDINFO's at:
8176 * RCVDBDI_STD_BD: standard eth size rx ring
8177 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8178 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8179 *
8180 * like so:
8181 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
8182 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
8183 * ring attribute flags
8184 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
8185 *
8186 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
8187 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
8188 *
8189 * The size of each ring is fixed in the firmware, but the location is
8190 * configurable.
8191 */
8192 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008193 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008195 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00008196 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00008197 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
8198 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008200 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00008201 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
8203 BDINFO_FLAGS_DISABLED);
8204
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008205 /* Program the jumbo buffer descriptor ring control
8206 * blocks on those devices that have them.
8207 */
Matt Carlsonbb18bb92011-03-09 16:58:19 +00008208 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008209 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210
Joe Perches63c3a662011-04-26 08:12:10 +00008211 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008212 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008213 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008214 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008215 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00008216 val = TG3_RX_JMB_RING_SIZE(tp) <<
8217 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008218 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00008219 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00008220 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlsona50d0792010-06-05 17:24:37 +00008221 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson87668d32009-11-13 13:03:34 +00008222 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
8223 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224 } else {
8225 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
8226 BDINFO_FLAGS_DISABLED);
8227 }
8228
Joe Perches63c3a662011-04-26 08:12:10 +00008229 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008230 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsonde9f5232011-04-05 14:22:43 +00008231 val = TG3_RX_STD_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008232 else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008233 val = TG3_RX_STD_MAX_SIZE_5717;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008234 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
8235 val |= (TG3_RX_STD_DMA_SZ << 2);
8236 } else
Matt Carlson04380d42010-04-12 06:58:29 +00008237 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008238 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008239 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008240
8241 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008242
Matt Carlson411da642009-11-13 13:03:46 +00008243 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00008244 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008245
Joe Perches63c3a662011-04-26 08:12:10 +00008246 tpr->rx_jmb_prod_idx =
8247 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00008248 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249
Matt Carlson2d31eca2009-09-01 12:53:31 +00008250 tg3_rings_reset(tp);
8251
Linus Torvalds1da177e2005-04-16 15:20:36 -07008252 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07008253 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254
8255 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00008256 tw32(MAC_RX_MTU_SIZE,
8257 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008258
8259 /* The slot time is changed by tg3_setup_phy if we
8260 * run at gigabit with half duplex.
8261 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00008262 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
8263 (6 << TX_LENGTHS_IPG_SHIFT) |
8264 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
8265
8266 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8267 val |= tr32(MAC_TX_LENGTHS) &
8268 (TX_LENGTHS_JMB_FRM_LEN_MSK |
8269 TX_LENGTHS_CNT_DWN_VAL_MSK);
8270
8271 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008272
8273 /* Receive rules. */
8274 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
8275 tw32(RCVLPC_CONFIG, 0x0181);
8276
8277 /* Calculate RDMAC_MODE setting early, we need it to determine
8278 * the RCVLPC_STATE_ENABLE mask.
8279 */
8280 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
8281 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
8282 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
8283 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
8284 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07008285
Matt Carlsondeabaac2010-11-24 08:31:50 +00008286 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00008287 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
8288
Matt Carlson57e69832008-05-25 23:48:31 -07008289 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08008290 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8291 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07008292 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
8293 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
8294 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
8295
Matt Carlsonc5908932011-03-09 16:58:25 +00008296 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8297 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008298 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07008299 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
8301 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008302 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008303 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8304 }
8305 }
8306
Joe Perches63c3a662011-04-26 08:12:10 +00008307 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07008308 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8309
Joe Perches63c3a662011-04-26 08:12:10 +00008310 if (tg3_flag(tp, HW_TSO_1) ||
8311 tg3_flag(tp, HW_TSO_2) ||
8312 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08008313 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
8314
Matt Carlson108a6c12011-05-19 12:12:47 +00008315 if (tg3_flag(tp, 57765_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00008316 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08008317 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
8318 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008319
Matt Carlsonf2096f92011-04-05 14:22:48 +00008320 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8321 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
8322
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008323 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
8324 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8325 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8326 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008327 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008328 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Matt Carlsond78b59f2011-04-05 14:22:46 +00008329 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8330 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00008331 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
8332 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
8333 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
8334 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
8335 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
8336 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00008337 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008338 tw32(TG3_RDMA_RSRVCTRL_REG,
8339 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
8340 }
8341
Matt Carlsond78b59f2011-04-05 14:22:46 +00008342 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8343 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00008344 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
8345 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
8346 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
8347 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
8348 }
8349
Linus Torvalds1da177e2005-04-16 15:20:36 -07008350 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00008351 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07008352 val = tr32(RCVLPC_STATS_ENABLE);
8353 val &= ~RCVLPC_STATSENAB_DACK_FIX;
8354 tw32(RCVLPC_STATS_ENABLE, val);
8355 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008356 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008357 val = tr32(RCVLPC_STATS_ENABLE);
8358 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
8359 tw32(RCVLPC_STATS_ENABLE, val);
8360 } else {
8361 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
8362 }
8363 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
8364 tw32(SNDDATAI_STATSENAB, 0xffffff);
8365 tw32(SNDDATAI_STATSCTRL,
8366 (SNDDATAI_SCTRL_ENABLE |
8367 SNDDATAI_SCTRL_FASTUPD));
8368
8369 /* Setup host coalescing engine. */
8370 tw32(HOSTCC_MODE, 0);
8371 for (i = 0; i < 2000; i++) {
8372 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
8373 break;
8374 udelay(10);
8375 }
8376
Michael Chand244c892005-07-05 14:42:33 -07008377 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008378
Joe Perches63c3a662011-04-26 08:12:10 +00008379 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008380 /* Status/statistics block address. See tg3_timer,
8381 * the tg3_periodic_fetch_stats call there, and
8382 * tg3_get_stats to see how this works for 5705/5750 chips.
8383 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8385 ((u64) tp->stats_mapping >> 32));
8386 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8387 ((u64) tp->stats_mapping & 0xffffffff));
8388 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008389
Linus Torvalds1da177e2005-04-16 15:20:36 -07008390 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008391
8392 /* Clear statistics and status block memory areas */
8393 for (i = NIC_SRAM_STATS_BLK;
8394 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
8395 i += sizeof(u32)) {
8396 tg3_write_mem(tp, i, 0);
8397 udelay(40);
8398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008399 }
8400
8401 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
8402
8403 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
8404 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008405 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008406 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
8407
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008408 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
8409 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07008410 /* reset to prevent losing 1st rx packet intermittently */
8411 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8412 udelay(10);
8413 }
8414
Joe Perches63c3a662011-04-26 08:12:10 +00008415 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008416 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -07008417 else
8418 tp->mac_mode = 0;
8419 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008421 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008422 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07008423 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8424 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008425 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8426 udelay(40);
8427
Michael Chan314fba32005-04-21 17:07:04 -07008428 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00008429 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008430 * register to preserve the GPIO settings for LOMs. The GPIOs,
8431 * whether used as inputs or outputs, are set by boot code after
8432 * reset.
8433 */
Joe Perches63c3a662011-04-26 08:12:10 +00008434 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008435 u32 gpio_mask;
8436
Michael Chan9d26e212006-12-07 00:21:14 -08008437 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8438 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8439 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008440
8441 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8442 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8443 GRC_LCLCTRL_GPIO_OUTPUT3;
8444
Michael Chanaf36e6b2006-03-23 01:28:06 -08008445 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8446 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8447
Gary Zambranoaaf84462007-05-05 11:51:45 -07008448 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008449 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8450
8451 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00008452 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08008453 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8454 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008456 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8457 udelay(100);
8458
Joe Perches63c3a662011-04-26 08:12:10 +00008459 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008460 val = tr32(MSGINT_MODE);
8461 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
8462 tw32(MSGINT_MODE, val);
8463 }
8464
Joe Perches63c3a662011-04-26 08:12:10 +00008465 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8467 udelay(40);
8468 }
8469
8470 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8471 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8472 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8473 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8474 WDMAC_MODE_LNGREAD_ENAB);
8475
Matt Carlsonc5908932011-03-09 16:58:25 +00008476 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8477 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008478 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8480 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8481 /* nothing */
8482 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008483 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008484 val |= WDMAC_MODE_RX_ACCEL;
8485 }
8486 }
8487
Michael Chand9ab5ad2006-03-20 22:27:35 -08008488 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00008489 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07008490 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad2006-03-20 22:27:35 -08008491
Matt Carlson788a0352009-11-02 14:26:03 +00008492 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8493 val |= WDMAC_MODE_BURST_ALL_DATA;
8494
Linus Torvalds1da177e2005-04-16 15:20:36 -07008495 tw32_f(WDMAC_MODE, val);
8496 udelay(40);
8497
Joe Perches63c3a662011-04-26 08:12:10 +00008498 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008499 u16 pcix_cmd;
8500
8501 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8502 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008503 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008504 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8505 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008507 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8508 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008509 }
Matt Carlson9974a352007-10-07 23:27:28 -07008510 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8511 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008512 }
8513
8514 tw32_f(RDMAC_MODE, rdmac_mode);
8515 udelay(40);
8516
8517 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008518 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008519 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008520
8521 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8522 tw32(SNDDATAC_MODE,
8523 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8524 else
8525 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8526
Linus Torvalds1da177e2005-04-16 15:20:36 -07008527 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8528 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008529 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008530 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008531 val |= RCVDBDI_MODE_LRG_RING_SZ;
8532 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008533 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008534 if (tg3_flag(tp, HW_TSO_1) ||
8535 tg3_flag(tp, HW_TSO_2) ||
8536 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008537 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008538 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008539 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008540 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8541 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008542 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8543
8544 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8545 err = tg3_load_5701_a0_firmware_fix(tp);
8546 if (err)
8547 return err;
8548 }
8549
Joe Perches63c3a662011-04-26 08:12:10 +00008550 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008551 err = tg3_load_tso_firmware(tp);
8552 if (err)
8553 return err;
8554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008555
8556 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008557
Joe Perches63c3a662011-04-26 08:12:10 +00008558 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00008559 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
8560 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008561
8562 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8563 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
8564 tp->tx_mode &= ~val;
8565 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
8566 }
8567
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568 tw32_f(MAC_TX_MODE, tp->tx_mode);
8569 udelay(100);
8570
Joe Perches63c3a662011-04-26 08:12:10 +00008571 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008572 u32 reg = MAC_RSS_INDIR_TBL_0;
8573 u8 *ent = (u8 *)&val;
8574
8575 /* Setup the indirection table */
8576 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8577 int idx = i % sizeof(val);
8578
Matt Carlson5efeeea2010-07-11 09:31:40 +00008579 ent[idx] = i % (tp->irq_cnt - 1);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008580 if (idx == sizeof(val) - 1) {
8581 tw32(reg, val);
8582 reg += 4;
8583 }
8584 }
8585
8586 /* Setup the "secret" hash key. */
8587 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8588 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8589 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8590 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8591 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8592 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8593 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8594 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8595 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8596 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8597 }
8598
Linus Torvalds1da177e2005-04-16 15:20:36 -07008599 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008600 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08008601 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8602
Joe Perches63c3a662011-04-26 08:12:10 +00008603 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008604 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8605 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8606 RX_MODE_RSS_IPV6_HASH_EN |
8607 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8608 RX_MODE_RSS_IPV4_HASH_EN |
8609 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8610
Linus Torvalds1da177e2005-04-16 15:20:36 -07008611 tw32_f(MAC_RX_MODE, tp->rx_mode);
8612 udelay(10);
8613
Linus Torvalds1da177e2005-04-16 15:20:36 -07008614 tw32(MAC_LED_CTRL, tp->led_ctrl);
8615
8616 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008617 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008618 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8619 udelay(10);
8620 }
8621 tw32_f(MAC_RX_MODE, tp->rx_mode);
8622 udelay(10);
8623
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008624 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008625 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008626 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008627 /* Set drive transmission level to 1.2V */
8628 /* only if the signal pre-emphasis bit is not set */
8629 val = tr32(MAC_SERDES_CFG);
8630 val &= 0xfffff000;
8631 val |= 0x880;
8632 tw32(MAC_SERDES_CFG, val);
8633 }
8634 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8635 tw32(MAC_SERDES_CFG, 0x616000);
8636 }
8637
8638 /* Prevent chip from dropping frames when flow control
8639 * is enabled.
8640 */
Matt Carlson666bc832010-01-20 16:58:03 +00008641 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8642 val = 1;
8643 else
8644 val = 2;
8645 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008646
8647 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008648 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008649 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00008650 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008651 }
8652
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008653 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +00008654 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08008655 u32 tmp;
8656
8657 tmp = tr32(SERDES_RX_CTRL);
8658 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
8659 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
8660 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
8661 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8662 }
8663
Joe Perches63c3a662011-04-26 08:12:10 +00008664 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson80096062010-08-02 11:26:06 +00008665 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
8666 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07008667 tp->link_config.speed = tp->link_config.orig_speed;
8668 tp->link_config.duplex = tp->link_config.orig_duplex;
8669 tp->link_config.autoneg = tp->link_config.orig_autoneg;
8670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008671
Matt Carlsondd477002008-05-25 23:45:58 -07008672 err = tg3_setup_phy(tp, 0);
8673 if (err)
8674 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008675
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008676 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
8677 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07008678 u32 tmp;
8679
8680 /* Clear CRC stats. */
8681 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
8682 tg3_writephy(tp, MII_TG3_TEST1,
8683 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00008684 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07008685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008686 }
8687 }
8688
8689 __tg3_set_rx_mode(tp->dev);
8690
8691 /* Initialize receive rules. */
8692 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
8693 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
8694 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
8695 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
8696
Joe Perches63c3a662011-04-26 08:12:10 +00008697 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008698 limit = 8;
8699 else
8700 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008701 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008702 limit -= 4;
8703 switch (limit) {
8704 case 16:
8705 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
8706 case 15:
8707 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
8708 case 14:
8709 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
8710 case 13:
8711 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
8712 case 12:
8713 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
8714 case 11:
8715 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
8716 case 10:
8717 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
8718 case 9:
8719 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
8720 case 8:
8721 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
8722 case 7:
8723 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
8724 case 6:
8725 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
8726 case 5:
8727 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
8728 case 4:
8729 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
8730 case 3:
8731 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
8732 case 2:
8733 case 1:
8734
8735 default:
8736 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008738
Joe Perches63c3a662011-04-26 08:12:10 +00008739 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07008740 /* Write our heartbeat update interval to APE. */
8741 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
8742 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07008743
Linus Torvalds1da177e2005-04-16 15:20:36 -07008744 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
8745
Linus Torvalds1da177e2005-04-16 15:20:36 -07008746 return 0;
8747}
8748
8749/* Called at device open time to get the chip ready for
8750 * packet processing. Invoked with tp->lock held.
8751 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008752static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008753{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008754 tg3_switch_clocks(tp);
8755
8756 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
8757
Matt Carlson2f751b62008-08-04 23:17:34 -07008758 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008759}
8760
8761#define TG3_STAT_ADD32(PSTAT, REG) \
8762do { u32 __val = tr32(REG); \
8763 (PSTAT)->low += __val; \
8764 if ((PSTAT)->low < __val) \
8765 (PSTAT)->high += 1; \
8766} while (0)
8767
8768static void tg3_periodic_fetch_stats(struct tg3 *tp)
8769{
8770 struct tg3_hw_stats *sp = tp->hw_stats;
8771
8772 if (!netif_carrier_ok(tp->dev))
8773 return;
8774
8775 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
8776 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
8777 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
8778 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
8779 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
8780 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
8781 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
8782 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
8783 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
8784 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
8785 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
8786 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
8787 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
8788
8789 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
8790 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
8791 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
8792 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
8793 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
8794 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
8795 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
8796 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
8797 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
8798 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
8799 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
8800 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
8801 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
8802 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07008803
8804 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson310050f2011-05-19 12:12:55 +00008805 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
8806 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0 &&
8807 tp->pci_chip_rev_id != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +00008808 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
8809 } else {
8810 u32 val = tr32(HOSTCC_FLOW_ATTN);
8811 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
8812 if (val) {
8813 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
8814 sp->rx_discards.low += val;
8815 if (sp->rx_discards.low < val)
8816 sp->rx_discards.high += 1;
8817 }
8818 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
8819 }
Michael Chan463d3052006-05-22 16:36:27 -07008820 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008821}
8822
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008823static void tg3_chk_missed_msi(struct tg3 *tp)
8824{
8825 u32 i;
8826
8827 for (i = 0; i < tp->irq_cnt; i++) {
8828 struct tg3_napi *tnapi = &tp->napi[i];
8829
8830 if (tg3_has_work(tnapi)) {
8831 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
8832 tnapi->last_tx_cons == tnapi->tx_cons) {
8833 if (tnapi->chk_msi_cnt < 1) {
8834 tnapi->chk_msi_cnt++;
8835 return;
8836 }
8837 tw32_mailbox(tnapi->int_mbox,
8838 tnapi->last_tag << 24);
8839 }
8840 }
8841 tnapi->chk_msi_cnt = 0;
8842 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
8843 tnapi->last_tx_cons = tnapi->tx_cons;
8844 }
8845}
8846
Linus Torvalds1da177e2005-04-16 15:20:36 -07008847static void tg3_timer(unsigned long __opaque)
8848{
8849 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008850
Michael Chanf475f162006-03-27 23:20:14 -08008851 if (tp->irq_sync)
8852 goto restart_timer;
8853
David S. Millerf47c11e2005-06-24 20:18:35 -07008854 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008855
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008856 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8857 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8858 tg3_chk_missed_msi(tp);
8859
Joe Perches63c3a662011-04-26 08:12:10 +00008860 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07008861 /* All of this garbage is because when using non-tagged
8862 * IRQ status the mailbox/status_block protocol the chip
8863 * uses with the cpu is race prone.
8864 */
Matt Carlson898a56f2009-08-28 14:02:40 +00008865 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07008866 tw32(GRC_LOCAL_CTRL,
8867 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
8868 } else {
8869 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008870 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07008871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008872
David S. Millerfac9b832005-05-18 22:46:34 -07008873 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +00008874 tg3_flag_set(tp, RESTART_TIMER);
David S. Millerf47c11e2005-06-24 20:18:35 -07008875 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07008876 schedule_work(&tp->reset_task);
8877 return;
8878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008879 }
8880
Linus Torvalds1da177e2005-04-16 15:20:36 -07008881 /* This part only runs once per second. */
8882 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00008883 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07008884 tg3_periodic_fetch_stats(tp);
8885
Matt Carlsonb0c59432011-05-19 12:12:48 +00008886 if (tp->setlpicnt && !--tp->setlpicnt)
8887 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00008888
Joe Perches63c3a662011-04-26 08:12:10 +00008889 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008890 u32 mac_stat;
8891 int phy_event;
8892
8893 mac_stat = tr32(MAC_STATUS);
8894
8895 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008896 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008897 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
8898 phy_event = 1;
8899 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
8900 phy_event = 1;
8901
8902 if (phy_event)
8903 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00008904 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008905 u32 mac_stat = tr32(MAC_STATUS);
8906 int need_setup = 0;
8907
8908 if (netif_carrier_ok(tp->dev) &&
8909 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
8910 need_setup = 1;
8911 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00008912 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008913 (mac_stat & (MAC_STATUS_PCS_SYNCED |
8914 MAC_STATUS_SIGNAL_DET))) {
8915 need_setup = 1;
8916 }
8917 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07008918 if (!tp->serdes_counter) {
8919 tw32_f(MAC_MODE,
8920 (tp->mac_mode &
8921 ~MAC_MODE_PORT_MODE_MASK));
8922 udelay(40);
8923 tw32_f(MAC_MODE, tp->mac_mode);
8924 udelay(40);
8925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008926 tg3_setup_phy(tp, 0);
8927 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008928 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008929 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07008930 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00008931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008932
8933 tp->timer_counter = tp->timer_multiplier;
8934 }
8935
Michael Chan130b8e42006-09-27 16:00:40 -07008936 /* Heartbeat is only sent once every 2 seconds.
8937 *
8938 * The heartbeat is to tell the ASF firmware that the host
8939 * driver is still alive. In the event that the OS crashes,
8940 * ASF needs to reset the hardware to free up the FIFO space
8941 * that may be filled with rx packets destined for the host.
8942 * If the FIFO is full, ASF will no longer function properly.
8943 *
8944 * Unintended resets have been reported on real time kernels
8945 * where the timer doesn't run on time. Netpoll will also have
8946 * same problem.
8947 *
8948 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
8949 * to check the ring condition when the heartbeat is expiring
8950 * before doing the reset. This will prevent most unintended
8951 * resets.
8952 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008953 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00008954 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07008955 tg3_wait_for_event_ack(tp);
8956
Michael Chanbbadf502006-04-06 21:46:34 -07008957 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07008958 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07008959 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00008960 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
8961 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008962
8963 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008964 }
8965 tp->asf_counter = tp->asf_multiplier;
8966 }
8967
David S. Millerf47c11e2005-06-24 20:18:35 -07008968 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008969
Michael Chanf475f162006-03-27 23:20:14 -08008970restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07008971 tp->timer.expires = jiffies + tp->timer_offset;
8972 add_timer(&tp->timer);
8973}
8974
Matt Carlson4f125f42009-09-01 12:55:02 +00008975static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08008976{
David Howells7d12e782006-10-05 14:55:46 +01008977 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008978 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00008979 char *name;
8980 struct tg3_napi *tnapi = &tp->napi[irq_num];
8981
8982 if (tp->irq_cnt == 1)
8983 name = tp->dev->name;
8984 else {
8985 name = &tnapi->irq_lbl[0];
8986 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
8987 name[IFNAMSIZ-1] = 0;
8988 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008989
Joe Perches63c3a662011-04-26 08:12:10 +00008990 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08008991 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +00008992 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -08008993 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00008994 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008995 } else {
8996 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +00008997 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -08008998 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00008999 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009000 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009001
9002 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009003}
9004
Michael Chan79381092005-04-21 17:13:59 -07009005static int tg3_test_interrupt(struct tg3 *tp)
9006{
Matt Carlson09943a12009-08-28 14:01:57 +00009007 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07009008 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07009009 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009010 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07009011
Michael Chand4bc3922005-05-29 14:59:20 -07009012 if (!netif_running(dev))
9013 return -ENODEV;
9014
Michael Chan79381092005-04-21 17:13:59 -07009015 tg3_disable_ints(tp);
9016
Matt Carlson4f125f42009-09-01 12:55:02 +00009017 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009018
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009019 /*
9020 * Turn off MSI one shot mode. Otherwise this test has no
9021 * observable way to know whether the interrupt was delivered.
9022 */
Joe Perches63c3a662011-04-26 08:12:10 +00009023 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009024 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
9025 tw32(MSGINT_MODE, val);
9026 }
9027
Matt Carlson4f125f42009-09-01 12:55:02 +00009028 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00009029 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009030 if (err)
9031 return err;
9032
Matt Carlson898a56f2009-08-28 14:02:40 +00009033 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07009034 tg3_enable_ints(tp);
9035
9036 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009037 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07009038
9039 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07009040 u32 int_mbox, misc_host_ctrl;
9041
Matt Carlson898a56f2009-08-28 14:02:40 +00009042 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07009043 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
9044
9045 if ((int_mbox != 0) ||
9046 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
9047 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07009048 break;
Michael Chanb16250e2006-09-27 16:10:14 -07009049 }
9050
Michael Chan79381092005-04-21 17:13:59 -07009051 msleep(10);
9052 }
9053
9054 tg3_disable_ints(tp);
9055
Matt Carlson4f125f42009-09-01 12:55:02 +00009056 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009057
Matt Carlson4f125f42009-09-01 12:55:02 +00009058 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009059
9060 if (err)
9061 return err;
9062
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009063 if (intr_ok) {
9064 /* Reenable MSI one shot mode. */
Joe Perches63c3a662011-04-26 08:12:10 +00009065 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009066 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
9067 tw32(MSGINT_MODE, val);
9068 }
Michael Chan79381092005-04-21 17:13:59 -07009069 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009070 }
Michael Chan79381092005-04-21 17:13:59 -07009071
9072 return -EIO;
9073}
9074
9075/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
9076 * successfully restored
9077 */
9078static int tg3_test_msi(struct tg3 *tp)
9079{
Michael Chan79381092005-04-21 17:13:59 -07009080 int err;
9081 u16 pci_cmd;
9082
Joe Perches63c3a662011-04-26 08:12:10 +00009083 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -07009084 return 0;
9085
9086 /* Turn off SERR reporting in case MSI terminates with Master
9087 * Abort.
9088 */
9089 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9090 pci_write_config_word(tp->pdev, PCI_COMMAND,
9091 pci_cmd & ~PCI_COMMAND_SERR);
9092
9093 err = tg3_test_interrupt(tp);
9094
9095 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9096
9097 if (!err)
9098 return 0;
9099
9100 /* other failures */
9101 if (err != -EIO)
9102 return err;
9103
9104 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009105 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
9106 "to INTx mode. Please report this failure to the PCI "
9107 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07009108
Matt Carlson4f125f42009-09-01 12:55:02 +00009109 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00009110
Michael Chan79381092005-04-21 17:13:59 -07009111 pci_disable_msi(tp->pdev);
9112
Joe Perches63c3a662011-04-26 08:12:10 +00009113 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +00009114 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -07009115
Matt Carlson4f125f42009-09-01 12:55:02 +00009116 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009117 if (err)
9118 return err;
9119
9120 /* Need to reset the chip because the MSI cycle may have terminated
9121 * with Master Abort.
9122 */
David S. Millerf47c11e2005-06-24 20:18:35 -07009123 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009124
Michael Chan944d9802005-05-29 14:57:48 -07009125 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009126 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009127
David S. Millerf47c11e2005-06-24 20:18:35 -07009128 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009129
9130 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00009131 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07009132
9133 return err;
9134}
9135
Matt Carlson9e9fd122009-01-19 16:57:45 -08009136static int tg3_request_firmware(struct tg3 *tp)
9137{
9138 const __be32 *fw_data;
9139
9140 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009141 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
9142 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009143 return -ENOENT;
9144 }
9145
9146 fw_data = (void *)tp->fw->data;
9147
9148 /* Firmware blob starts with version numbers, followed by
9149 * start address and _full_ length including BSS sections
9150 * (which must be longer than the actual data, of course
9151 */
9152
9153 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
9154 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009155 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
9156 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009157 release_firmware(tp->fw);
9158 tp->fw = NULL;
9159 return -EINVAL;
9160 }
9161
9162 /* We no longer need firmware; we have it. */
9163 tp->fw_needed = NULL;
9164 return 0;
9165}
9166
Matt Carlson679563f2009-09-01 12:55:46 +00009167static bool tg3_enable_msix(struct tg3 *tp)
9168{
9169 int i, rc, cpus = num_online_cpus();
9170 struct msix_entry msix_ent[tp->irq_max];
9171
9172 if (cpus == 1)
9173 /* Just fallback to the simpler MSI mode. */
9174 return false;
9175
9176 /*
9177 * We want as many rx rings enabled as there are cpus.
9178 * The first MSIX vector only deals with link interrupts, etc,
9179 * so we add one to the number of vectors we are requesting.
9180 */
9181 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
9182
9183 for (i = 0; i < tp->irq_max; i++) {
9184 msix_ent[i].entry = i;
9185 msix_ent[i].vector = 0;
9186 }
9187
9188 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +00009189 if (rc < 0) {
9190 return false;
9191 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +00009192 if (pci_enable_msix(tp->pdev, msix_ent, rc))
9193 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00009194 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
9195 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00009196 tp->irq_cnt = rc;
9197 }
9198
9199 for (i = 0; i < tp->irq_max; i++)
9200 tp->napi[i].irq_vec = msix_ent[i].vector;
9201
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009202 netif_set_real_num_tx_queues(tp->dev, 1);
9203 rc = tp->irq_cnt > 1 ? tp->irq_cnt - 1 : 1;
9204 if (netif_set_real_num_rx_queues(tp->dev, rc)) {
9205 pci_disable_msix(tp->pdev);
9206 return false;
9207 }
Matt Carlsonb92b9042010-11-24 08:31:51 +00009208
9209 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +00009210 tg3_flag_set(tp, ENABLE_RSS);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009211
9212 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9213 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Joe Perches63c3a662011-04-26 08:12:10 +00009214 tg3_flag_set(tp, ENABLE_TSS);
Matt Carlsonb92b9042010-11-24 08:31:51 +00009215 netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1);
9216 }
9217 }
Matt Carlson2430b032010-06-05 17:24:34 +00009218
Matt Carlson679563f2009-09-01 12:55:46 +00009219 return true;
9220}
9221
Matt Carlson07b01732009-08-28 14:01:15 +00009222static void tg3_ints_init(struct tg3 *tp)
9223{
Joe Perches63c3a662011-04-26 08:12:10 +00009224 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
9225 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00009226 /* All MSI supporting chips should support tagged
9227 * status. Assert that this is the case.
9228 */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009229 netdev_warn(tp->dev,
9230 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00009231 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00009232 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009233
Joe Perches63c3a662011-04-26 08:12:10 +00009234 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
9235 tg3_flag_set(tp, USING_MSIX);
9236 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
9237 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +00009238
Joe Perches63c3a662011-04-26 08:12:10 +00009239 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009240 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +00009241 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009242 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson679563f2009-09-01 12:55:46 +00009243 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
9244 }
9245defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +00009246 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009247 tp->irq_cnt = 1;
9248 tp->napi[0].irq_vec = tp->pdev->irq;
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009249 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -07009250 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +00009251 }
Matt Carlson07b01732009-08-28 14:01:15 +00009252}
9253
9254static void tg3_ints_fini(struct tg3 *tp)
9255{
Joe Perches63c3a662011-04-26 08:12:10 +00009256 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +00009257 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009258 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +00009259 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009260 tg3_flag_clear(tp, USING_MSI);
9261 tg3_flag_clear(tp, USING_MSIX);
9262 tg3_flag_clear(tp, ENABLE_RSS);
9263 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +00009264}
9265
Linus Torvalds1da177e2005-04-16 15:20:36 -07009266static int tg3_open(struct net_device *dev)
9267{
9268 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00009269 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009270
Matt Carlson9e9fd122009-01-19 16:57:45 -08009271 if (tp->fw_needed) {
9272 err = tg3_request_firmware(tp);
9273 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9274 if (err)
9275 return err;
9276 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00009277 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009278 tg3_flag_clear(tp, TSO_CAPABLE);
9279 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009280 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009281 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009282 }
9283 }
9284
Michael Chanc49a1562006-12-17 17:07:29 -08009285 netif_carrier_off(tp->dev);
9286
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009287 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -07009288 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08009289 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07009290
9291 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08009292
Linus Torvalds1da177e2005-04-16 15:20:36 -07009293 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009294 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009295
David S. Millerf47c11e2005-06-24 20:18:35 -07009296 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009297
Matt Carlson679563f2009-09-01 12:55:46 +00009298 /*
9299 * Setup interrupts first so we know how
9300 * many NAPI resources to allocate
9301 */
9302 tg3_ints_init(tp);
9303
Linus Torvalds1da177e2005-04-16 15:20:36 -07009304 /* The placement of this call is tied
9305 * to the setup and use of Host TX descriptors.
9306 */
9307 err = tg3_alloc_consistent(tp);
9308 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009309 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009310
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009311 tg3_napi_init(tp);
9312
Matt Carlsonfed97812009-09-01 13:10:19 +00009313 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07009314
Matt Carlson4f125f42009-09-01 12:55:02 +00009315 for (i = 0; i < tp->irq_cnt; i++) {
9316 struct tg3_napi *tnapi = &tp->napi[i];
9317 err = tg3_request_irq(tp, i);
9318 if (err) {
9319 for (i--; i >= 0; i--)
9320 free_irq(tnapi->irq_vec, tnapi);
9321 break;
9322 }
9323 }
Matt Carlson07b01732009-08-28 14:01:15 +00009324
9325 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009326 goto err_out2;
Matt Carlson07b01732009-08-28 14:01:15 +00009327
David S. Millerf47c11e2005-06-24 20:18:35 -07009328 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009329
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009330 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009331 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07009332 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009333 tg3_free_rings(tp);
9334 } else {
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009335 if (tg3_flag(tp, TAGGED_STATUS) &&
9336 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9337 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765)
David S. Millerfac9b832005-05-18 22:46:34 -07009338 tp->timer_offset = HZ;
9339 else
9340 tp->timer_offset = HZ / 10;
9341
9342 BUG_ON(tp->timer_offset > HZ);
9343 tp->timer_counter = tp->timer_multiplier =
9344 (HZ / tp->timer_offset);
9345 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07009346 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009347
9348 init_timer(&tp->timer);
9349 tp->timer.expires = jiffies + tp->timer_offset;
9350 tp->timer.data = (unsigned long) tp;
9351 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009352 }
9353
David S. Millerf47c11e2005-06-24 20:18:35 -07009354 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009355
Matt Carlson07b01732009-08-28 14:01:15 +00009356 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009357 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009358
Joe Perches63c3a662011-04-26 08:12:10 +00009359 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -07009360 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07009361
Michael Chan79381092005-04-21 17:13:59 -07009362 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009363 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07009364 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07009365 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07009366 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009367
Matt Carlson679563f2009-09-01 12:55:46 +00009368 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07009369 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009370
Joe Perches63c3a662011-04-26 08:12:10 +00009371 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009372 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009373
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009374 tw32(PCIE_TRANSACTION_CFG,
9375 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009376 }
Michael Chan79381092005-04-21 17:13:59 -07009377 }
9378
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009379 tg3_phy_start(tp);
9380
David S. Millerf47c11e2005-06-24 20:18:35 -07009381 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009382
Michael Chan79381092005-04-21 17:13:59 -07009383 add_timer(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +00009384 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009385 tg3_enable_ints(tp);
9386
David S. Millerf47c11e2005-06-24 20:18:35 -07009387 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009388
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009389 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009390
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00009391 /*
9392 * Reset loopback feature if it was turned on while the device was down
9393 * make sure that it's installed properly now.
9394 */
9395 if (dev->features & NETIF_F_LOOPBACK)
9396 tg3_set_loopback(dev, dev->features);
9397
Linus Torvalds1da177e2005-04-16 15:20:36 -07009398 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00009399
Matt Carlson679563f2009-09-01 12:55:46 +00009400err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00009401 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9402 struct tg3_napi *tnapi = &tp->napi[i];
9403 free_irq(tnapi->irq_vec, tnapi);
9404 }
Matt Carlson07b01732009-08-28 14:01:15 +00009405
Matt Carlson679563f2009-09-01 12:55:46 +00009406err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00009407 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009408 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009409 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00009410
9411err_out1:
9412 tg3_ints_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009413 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009414}
9415
Eric Dumazet511d2222010-07-07 20:44:24 +00009416static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *,
9417 struct rtnl_link_stats64 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009418static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
9419
9420static int tg3_close(struct net_device *dev)
9421{
Matt Carlson4f125f42009-09-01 12:55:02 +00009422 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009423 struct tg3 *tp = netdev_priv(dev);
9424
Matt Carlsonfed97812009-09-01 13:10:19 +00009425 tg3_napi_disable(tp);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07009426 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08009427
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009428 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009429
9430 del_timer_sync(&tp->timer);
9431
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009432 tg3_phy_stop(tp);
9433
David S. Millerf47c11e2005-06-24 20:18:35 -07009434 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009435
9436 tg3_disable_ints(tp);
9437
Michael Chan944d9802005-05-29 14:57:48 -07009438 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009439 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009440 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009441
David S. Millerf47c11e2005-06-24 20:18:35 -07009442 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009443
Matt Carlson4f125f42009-09-01 12:55:02 +00009444 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9445 struct tg3_napi *tnapi = &tp->napi[i];
9446 free_irq(tnapi->irq_vec, tnapi);
9447 }
Matt Carlson07b01732009-08-28 14:01:15 +00009448
9449 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009450
Eric Dumazet511d2222010-07-07 20:44:24 +00009451 tg3_get_stats64(tp->dev, &tp->net_stats_prev);
9452
Linus Torvalds1da177e2005-04-16 15:20:36 -07009453 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9454 sizeof(tp->estats_prev));
9455
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009456 tg3_napi_fini(tp);
9457
Linus Torvalds1da177e2005-04-16 15:20:36 -07009458 tg3_free_consistent(tp);
9459
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009460 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -08009461
9462 netif_carrier_off(tp->dev);
9463
Linus Torvalds1da177e2005-04-16 15:20:36 -07009464 return 0;
9465}
9466
Eric Dumazet511d2222010-07-07 20:44:24 +00009467static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -07009468{
9469 return ((u64)val->high << 32) | ((u64)val->low);
9470}
9471
Eric Dumazet511d2222010-07-07 20:44:24 +00009472static u64 calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009473{
9474 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9475
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009476 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009477 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9478 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009479 u32 val;
9480
David S. Millerf47c11e2005-06-24 20:18:35 -07009481 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009482 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9483 tg3_writephy(tp, MII_TG3_TEST1,
9484 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009485 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009486 } else
9487 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009488 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009489
9490 tp->phy_crc_errors += val;
9491
9492 return tp->phy_crc_errors;
9493 }
9494
9495 return get_stat64(&hw_stats->rx_fcs_errors);
9496}
9497
9498#define ESTAT_ADD(member) \
9499 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +00009500 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009501
9502static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9503{
9504 struct tg3_ethtool_stats *estats = &tp->estats;
9505 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9506 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9507
9508 if (!hw_stats)
9509 return old_estats;
9510
9511 ESTAT_ADD(rx_octets);
9512 ESTAT_ADD(rx_fragments);
9513 ESTAT_ADD(rx_ucast_packets);
9514 ESTAT_ADD(rx_mcast_packets);
9515 ESTAT_ADD(rx_bcast_packets);
9516 ESTAT_ADD(rx_fcs_errors);
9517 ESTAT_ADD(rx_align_errors);
9518 ESTAT_ADD(rx_xon_pause_rcvd);
9519 ESTAT_ADD(rx_xoff_pause_rcvd);
9520 ESTAT_ADD(rx_mac_ctrl_rcvd);
9521 ESTAT_ADD(rx_xoff_entered);
9522 ESTAT_ADD(rx_frame_too_long_errors);
9523 ESTAT_ADD(rx_jabbers);
9524 ESTAT_ADD(rx_undersize_packets);
9525 ESTAT_ADD(rx_in_length_errors);
9526 ESTAT_ADD(rx_out_length_errors);
9527 ESTAT_ADD(rx_64_or_less_octet_packets);
9528 ESTAT_ADD(rx_65_to_127_octet_packets);
9529 ESTAT_ADD(rx_128_to_255_octet_packets);
9530 ESTAT_ADD(rx_256_to_511_octet_packets);
9531 ESTAT_ADD(rx_512_to_1023_octet_packets);
9532 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9533 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9534 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9535 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9536 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9537
9538 ESTAT_ADD(tx_octets);
9539 ESTAT_ADD(tx_collisions);
9540 ESTAT_ADD(tx_xon_sent);
9541 ESTAT_ADD(tx_xoff_sent);
9542 ESTAT_ADD(tx_flow_control);
9543 ESTAT_ADD(tx_mac_errors);
9544 ESTAT_ADD(tx_single_collisions);
9545 ESTAT_ADD(tx_mult_collisions);
9546 ESTAT_ADD(tx_deferred);
9547 ESTAT_ADD(tx_excessive_collisions);
9548 ESTAT_ADD(tx_late_collisions);
9549 ESTAT_ADD(tx_collide_2times);
9550 ESTAT_ADD(tx_collide_3times);
9551 ESTAT_ADD(tx_collide_4times);
9552 ESTAT_ADD(tx_collide_5times);
9553 ESTAT_ADD(tx_collide_6times);
9554 ESTAT_ADD(tx_collide_7times);
9555 ESTAT_ADD(tx_collide_8times);
9556 ESTAT_ADD(tx_collide_9times);
9557 ESTAT_ADD(tx_collide_10times);
9558 ESTAT_ADD(tx_collide_11times);
9559 ESTAT_ADD(tx_collide_12times);
9560 ESTAT_ADD(tx_collide_13times);
9561 ESTAT_ADD(tx_collide_14times);
9562 ESTAT_ADD(tx_collide_15times);
9563 ESTAT_ADD(tx_ucast_packets);
9564 ESTAT_ADD(tx_mcast_packets);
9565 ESTAT_ADD(tx_bcast_packets);
9566 ESTAT_ADD(tx_carrier_sense_errors);
9567 ESTAT_ADD(tx_discards);
9568 ESTAT_ADD(tx_errors);
9569
9570 ESTAT_ADD(dma_writeq_full);
9571 ESTAT_ADD(dma_write_prioq_full);
9572 ESTAT_ADD(rxbds_empty);
9573 ESTAT_ADD(rx_discards);
9574 ESTAT_ADD(rx_errors);
9575 ESTAT_ADD(rx_threshold_hit);
9576
9577 ESTAT_ADD(dma_readq_full);
9578 ESTAT_ADD(dma_read_prioq_full);
9579 ESTAT_ADD(tx_comp_queue_full);
9580
9581 ESTAT_ADD(ring_set_send_prod_index);
9582 ESTAT_ADD(ring_status_update);
9583 ESTAT_ADD(nic_irqs);
9584 ESTAT_ADD(nic_avoided_irqs);
9585 ESTAT_ADD(nic_tx_threshold_hit);
9586
Matt Carlson4452d092011-05-19 12:12:51 +00009587 ESTAT_ADD(mbuf_lwm_thresh_hit);
9588
Linus Torvalds1da177e2005-04-16 15:20:36 -07009589 return estats;
9590}
9591
Eric Dumazet511d2222010-07-07 20:44:24 +00009592static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
9593 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009594{
9595 struct tg3 *tp = netdev_priv(dev);
Eric Dumazet511d2222010-07-07 20:44:24 +00009596 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009597 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9598
9599 if (!hw_stats)
9600 return old_stats;
9601
9602 stats->rx_packets = old_stats->rx_packets +
9603 get_stat64(&hw_stats->rx_ucast_packets) +
9604 get_stat64(&hw_stats->rx_mcast_packets) +
9605 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009606
Linus Torvalds1da177e2005-04-16 15:20:36 -07009607 stats->tx_packets = old_stats->tx_packets +
9608 get_stat64(&hw_stats->tx_ucast_packets) +
9609 get_stat64(&hw_stats->tx_mcast_packets) +
9610 get_stat64(&hw_stats->tx_bcast_packets);
9611
9612 stats->rx_bytes = old_stats->rx_bytes +
9613 get_stat64(&hw_stats->rx_octets);
9614 stats->tx_bytes = old_stats->tx_bytes +
9615 get_stat64(&hw_stats->tx_octets);
9616
9617 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009618 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009619 stats->tx_errors = old_stats->tx_errors +
9620 get_stat64(&hw_stats->tx_errors) +
9621 get_stat64(&hw_stats->tx_mac_errors) +
9622 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9623 get_stat64(&hw_stats->tx_discards);
9624
9625 stats->multicast = old_stats->multicast +
9626 get_stat64(&hw_stats->rx_mcast_packets);
9627 stats->collisions = old_stats->collisions +
9628 get_stat64(&hw_stats->tx_collisions);
9629
9630 stats->rx_length_errors = old_stats->rx_length_errors +
9631 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9632 get_stat64(&hw_stats->rx_undersize_packets);
9633
9634 stats->rx_over_errors = old_stats->rx_over_errors +
9635 get_stat64(&hw_stats->rxbds_empty);
9636 stats->rx_frame_errors = old_stats->rx_frame_errors +
9637 get_stat64(&hw_stats->rx_align_errors);
9638 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
9639 get_stat64(&hw_stats->tx_discards);
9640 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
9641 get_stat64(&hw_stats->tx_carrier_sense_errors);
9642
9643 stats->rx_crc_errors = old_stats->rx_crc_errors +
9644 calc_crc_errors(tp);
9645
John W. Linville4f63b872005-09-12 14:43:18 -07009646 stats->rx_missed_errors = old_stats->rx_missed_errors +
9647 get_stat64(&hw_stats->rx_discards);
9648
Eric Dumazetb0057c52010-10-10 19:55:52 +00009649 stats->rx_dropped = tp->rx_dropped;
9650
Linus Torvalds1da177e2005-04-16 15:20:36 -07009651 return stats;
9652}
9653
9654static inline u32 calc_crc(unsigned char *buf, int len)
9655{
9656 u32 reg;
9657 u32 tmp;
9658 int j, k;
9659
9660 reg = 0xffffffff;
9661
9662 for (j = 0; j < len; j++) {
9663 reg ^= buf[j];
9664
9665 for (k = 0; k < 8; k++) {
9666 tmp = reg & 0x01;
9667
9668 reg >>= 1;
9669
Matt Carlson859a5882010-04-05 10:19:28 +00009670 if (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009671 reg ^= 0xedb88320;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009672 }
9673 }
9674
9675 return ~reg;
9676}
9677
9678static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9679{
9680 /* accept or reject all multicast frames */
9681 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9682 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9683 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9684 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9685}
9686
9687static void __tg3_set_rx_mode(struct net_device *dev)
9688{
9689 struct tg3 *tp = netdev_priv(dev);
9690 u32 rx_mode;
9691
9692 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9693 RX_MODE_KEEP_VLAN_TAG);
9694
Matt Carlsonbf933c82011-01-25 15:58:49 +00009695#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009696 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9697 * flag clear.
9698 */
Joe Perches63c3a662011-04-26 08:12:10 +00009699 if (!tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009700 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9701#endif
9702
9703 if (dev->flags & IFF_PROMISC) {
9704 /* Promiscuous mode. */
9705 rx_mode |= RX_MODE_PROMISC;
9706 } else if (dev->flags & IFF_ALLMULTI) {
9707 /* Accept all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009708 tg3_set_multi(tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00009709 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009710 /* Reject all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009711 tg3_set_multi(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009712 } else {
9713 /* Accept one or more multicast(s). */
Jiri Pirko22bedad2010-04-01 21:22:57 +00009714 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009715 u32 mc_filter[4] = { 0, };
9716 u32 regidx;
9717 u32 bit;
9718 u32 crc;
9719
Jiri Pirko22bedad2010-04-01 21:22:57 +00009720 netdev_for_each_mc_addr(ha, dev) {
9721 crc = calc_crc(ha->addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009722 bit = ~crc & 0x7f;
9723 regidx = (bit & 0x60) >> 5;
9724 bit &= 0x1f;
9725 mc_filter[regidx] |= (1 << bit);
9726 }
9727
9728 tw32(MAC_HASH_REG_0, mc_filter[0]);
9729 tw32(MAC_HASH_REG_1, mc_filter[1]);
9730 tw32(MAC_HASH_REG_2, mc_filter[2]);
9731 tw32(MAC_HASH_REG_3, mc_filter[3]);
9732 }
9733
9734 if (rx_mode != tp->rx_mode) {
9735 tp->rx_mode = rx_mode;
9736 tw32_f(MAC_RX_MODE, rx_mode);
9737 udelay(10);
9738 }
9739}
9740
9741static void tg3_set_rx_mode(struct net_device *dev)
9742{
9743 struct tg3 *tp = netdev_priv(dev);
9744
Michael Chane75f7c92006-03-20 21:33:26 -08009745 if (!netif_running(dev))
9746 return;
9747
David S. Millerf47c11e2005-06-24 20:18:35 -07009748 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009749 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07009750 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009751}
9752
Linus Torvalds1da177e2005-04-16 15:20:36 -07009753static int tg3_get_regs_len(struct net_device *dev)
9754{
Matt Carlson97bd8e42011-04-13 11:05:04 +00009755 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009756}
9757
9758static void tg3_get_regs(struct net_device *dev,
9759 struct ethtool_regs *regs, void *_p)
9760{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009761 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009762
9763 regs->version = 0;
9764
Matt Carlson97bd8e42011-04-13 11:05:04 +00009765 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009766
Matt Carlson80096062010-08-02 11:26:06 +00009767 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009768 return;
9769
David S. Millerf47c11e2005-06-24 20:18:35 -07009770 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009771
Matt Carlson97bd8e42011-04-13 11:05:04 +00009772 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009773
David S. Millerf47c11e2005-06-24 20:18:35 -07009774 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009775}
9776
9777static int tg3_get_eeprom_len(struct net_device *dev)
9778{
9779 struct tg3 *tp = netdev_priv(dev);
9780
9781 return tp->nvram_size;
9782}
9783
Linus Torvalds1da177e2005-04-16 15:20:36 -07009784static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9785{
9786 struct tg3 *tp = netdev_priv(dev);
9787 int ret;
9788 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -08009789 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009790 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009791
Joe Perches63c3a662011-04-26 08:12:10 +00009792 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +00009793 return -EINVAL;
9794
Matt Carlson80096062010-08-02 11:26:06 +00009795 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009796 return -EAGAIN;
9797
Linus Torvalds1da177e2005-04-16 15:20:36 -07009798 offset = eeprom->offset;
9799 len = eeprom->len;
9800 eeprom->len = 0;
9801
9802 eeprom->magic = TG3_EEPROM_MAGIC;
9803
9804 if (offset & 3) {
9805 /* adjustments to start on required 4 byte boundary */
9806 b_offset = offset & 3;
9807 b_count = 4 - b_offset;
9808 if (b_count > len) {
9809 /* i.e. offset=1 len=2 */
9810 b_count = len;
9811 }
Matt Carlsona9dc5292009-02-25 14:25:30 +00009812 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009813 if (ret)
9814 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +00009815 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009816 len -= b_count;
9817 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009818 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009819 }
9820
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009821 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009822 pd = &data[eeprom->len];
9823 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +00009824 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009825 if (ret) {
9826 eeprom->len += i;
9827 return ret;
9828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009829 memcpy(pd + i, &val, 4);
9830 }
9831 eeprom->len += i;
9832
9833 if (len & 3) {
9834 /* read last bytes not ending on 4 byte boundary */
9835 pd = &data[eeprom->len];
9836 b_count = len & 3;
9837 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009838 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009839 if (ret)
9840 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009841 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009842 eeprom->len += b_count;
9843 }
9844 return 0;
9845}
9846
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009847static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009848
9849static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9850{
9851 struct tg3 *tp = netdev_priv(dev);
9852 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009853 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009854 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009855 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009856
Matt Carlson80096062010-08-02 11:26:06 +00009857 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009858 return -EAGAIN;
9859
Joe Perches63c3a662011-04-26 08:12:10 +00009860 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +00009861 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009862 return -EINVAL;
9863
9864 offset = eeprom->offset;
9865 len = eeprom->len;
9866
9867 if ((b_offset = (offset & 3))) {
9868 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +00009869 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009870 if (ret)
9871 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009872 len += b_offset;
9873 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -07009874 if (len < 4)
9875 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009876 }
9877
9878 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -07009879 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009880 /* adjustments to end on required 4 byte boundary */
9881 odd_len = 1;
9882 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009883 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009884 if (ret)
9885 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009886 }
9887
9888 buf = data;
9889 if (b_offset || odd_len) {
9890 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009891 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009892 return -ENOMEM;
9893 if (b_offset)
9894 memcpy(buf, &start, 4);
9895 if (odd_len)
9896 memcpy(buf+len-4, &end, 4);
9897 memcpy(buf + b_offset, data, eeprom->len);
9898 }
9899
9900 ret = tg3_nvram_write_block(tp, offset, len, buf);
9901
9902 if (buf != data)
9903 kfree(buf);
9904
9905 return ret;
9906}
9907
9908static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9909{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009910 struct tg3 *tp = netdev_priv(dev);
9911
Joe Perches63c3a662011-04-26 08:12:10 +00009912 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009913 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009914 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009915 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009916 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9917 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009918 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009919
Linus Torvalds1da177e2005-04-16 15:20:36 -07009920 cmd->supported = (SUPPORTED_Autoneg);
9921
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009922 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009923 cmd->supported |= (SUPPORTED_1000baseT_Half |
9924 SUPPORTED_1000baseT_Full);
9925
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009926 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009927 cmd->supported |= (SUPPORTED_100baseT_Half |
9928 SUPPORTED_100baseT_Full |
9929 SUPPORTED_10baseT_Half |
9930 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -08009931 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -07009932 cmd->port = PORT_TP;
9933 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009934 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -07009935 cmd->port = PORT_FIBRE;
9936 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009937
Linus Torvalds1da177e2005-04-16 15:20:36 -07009938 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +00009939 if (tg3_flag(tp, PAUSE_AUTONEG)) {
9940 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
9941 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
9942 cmd->advertising |= ADVERTISED_Pause;
9943 } else {
9944 cmd->advertising |= ADVERTISED_Pause |
9945 ADVERTISED_Asym_Pause;
9946 }
9947 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
9948 cmd->advertising |= ADVERTISED_Asym_Pause;
9949 }
9950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009951 if (netif_running(dev)) {
David Decotigny70739492011-04-27 18:32:40 +00009952 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009953 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson64c22182010-10-14 10:37:44 +00009954 } else {
David Decotigny70739492011-04-27 18:32:40 +00009955 ethtool_cmd_speed_set(cmd, SPEED_INVALID);
Matt Carlson64c22182010-10-14 10:37:44 +00009956 cmd->duplex = DUPLEX_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009957 }
Matt Carlson882e9792009-09-01 13:21:36 +00009958 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009959 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009960 cmd->autoneg = tp->link_config.autoneg;
9961 cmd->maxtxpkt = 0;
9962 cmd->maxrxpkt = 0;
9963 return 0;
9964}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009965
Linus Torvalds1da177e2005-04-16 15:20:36 -07009966static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9967{
9968 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +00009969 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009970
Joe Perches63c3a662011-04-26 08:12:10 +00009971 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009972 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009973 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009974 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009975 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9976 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009977 }
9978
Matt Carlson7e5856b2009-02-25 14:23:01 +00009979 if (cmd->autoneg != AUTONEG_ENABLE &&
9980 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -07009981 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009982
9983 if (cmd->autoneg == AUTONEG_DISABLE &&
9984 cmd->duplex != DUPLEX_FULL &&
9985 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -07009986 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009987
Matt Carlson7e5856b2009-02-25 14:23:01 +00009988 if (cmd->autoneg == AUTONEG_ENABLE) {
9989 u32 mask = ADVERTISED_Autoneg |
9990 ADVERTISED_Pause |
9991 ADVERTISED_Asym_Pause;
9992
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009993 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +00009994 mask |= ADVERTISED_1000baseT_Half |
9995 ADVERTISED_1000baseT_Full;
9996
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009997 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +00009998 mask |= ADVERTISED_100baseT_Half |
9999 ADVERTISED_100baseT_Full |
10000 ADVERTISED_10baseT_Half |
10001 ADVERTISED_10baseT_Full |
10002 ADVERTISED_TP;
10003 else
10004 mask |= ADVERTISED_FIBRE;
10005
10006 if (cmd->advertising & ~mask)
10007 return -EINVAL;
10008
10009 mask &= (ADVERTISED_1000baseT_Half |
10010 ADVERTISED_1000baseT_Full |
10011 ADVERTISED_100baseT_Half |
10012 ADVERTISED_100baseT_Full |
10013 ADVERTISED_10baseT_Half |
10014 ADVERTISED_10baseT_Full);
10015
10016 cmd->advertising &= mask;
10017 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010018 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000010019 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010020 return -EINVAL;
10021
10022 if (cmd->duplex != DUPLEX_FULL)
10023 return -EINVAL;
10024 } else {
David Decotigny25db0332011-04-27 18:32:39 +000010025 if (speed != SPEED_100 &&
10026 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010027 return -EINVAL;
10028 }
10029 }
10030
David S. Millerf47c11e2005-06-24 20:18:35 -070010031 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010032
10033 tp->link_config.autoneg = cmd->autoneg;
10034 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070010035 tp->link_config.advertising = (cmd->advertising |
10036 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010037 tp->link_config.speed = SPEED_INVALID;
10038 tp->link_config.duplex = DUPLEX_INVALID;
10039 } else {
10040 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000010041 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010042 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010043 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010044
Michael Chan24fcad62006-12-17 17:06:46 -080010045 tp->link_config.orig_speed = tp->link_config.speed;
10046 tp->link_config.orig_duplex = tp->link_config.duplex;
10047 tp->link_config.orig_autoneg = tp->link_config.autoneg;
10048
Linus Torvalds1da177e2005-04-16 15:20:36 -070010049 if (netif_running(dev))
10050 tg3_setup_phy(tp, 1);
10051
David S. Millerf47c11e2005-06-24 20:18:35 -070010052 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010053
Linus Torvalds1da177e2005-04-16 15:20:36 -070010054 return 0;
10055}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010056
Linus Torvalds1da177e2005-04-16 15:20:36 -070010057static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
10058{
10059 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010060
Linus Torvalds1da177e2005-04-16 15:20:36 -070010061 strcpy(info->driver, DRV_MODULE_NAME);
10062 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -080010063 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010064 strcpy(info->bus_info, pci_name(tp->pdev));
10065}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010066
Linus Torvalds1da177e2005-04-16 15:20:36 -070010067static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10068{
10069 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010070
Joe Perches63c3a662011-04-26 08:12:10 +000010071 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070010072 wol->supported = WAKE_MAGIC;
10073 else
10074 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010075 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010076 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010077 wol->wolopts = WAKE_MAGIC;
10078 memset(&wol->sopass, 0, sizeof(wol->sopass));
10079}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010080
Linus Torvalds1da177e2005-04-16 15:20:36 -070010081static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10082{
10083 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070010084 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010085
Linus Torvalds1da177e2005-04-16 15:20:36 -070010086 if (wol->wolopts & ~WAKE_MAGIC)
10087 return -EINVAL;
10088 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010089 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010090 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010091
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010092 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
10093
David S. Millerf47c11e2005-06-24 20:18:35 -070010094 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010095 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000010096 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010097 else
Joe Perches63c3a662011-04-26 08:12:10 +000010098 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070010099 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010100
Linus Torvalds1da177e2005-04-16 15:20:36 -070010101 return 0;
10102}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010103
Linus Torvalds1da177e2005-04-16 15:20:36 -070010104static u32 tg3_get_msglevel(struct net_device *dev)
10105{
10106 struct tg3 *tp = netdev_priv(dev);
10107 return tp->msg_enable;
10108}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010109
Linus Torvalds1da177e2005-04-16 15:20:36 -070010110static void tg3_set_msglevel(struct net_device *dev, u32 value)
10111{
10112 struct tg3 *tp = netdev_priv(dev);
10113 tp->msg_enable = value;
10114}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010115
Linus Torvalds1da177e2005-04-16 15:20:36 -070010116static int tg3_nway_reset(struct net_device *dev)
10117{
10118 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010119 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010120
Linus Torvalds1da177e2005-04-16 15:20:36 -070010121 if (!netif_running(dev))
10122 return -EAGAIN;
10123
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010124 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070010125 return -EINVAL;
10126
Joe Perches63c3a662011-04-26 08:12:10 +000010127 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010128 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010129 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010130 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010131 } else {
10132 u32 bmcr;
10133
10134 spin_lock_bh(&tp->lock);
10135 r = -EINVAL;
10136 tg3_readphy(tp, MII_BMCR, &bmcr);
10137 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
10138 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010139 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010140 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
10141 BMCR_ANENABLE);
10142 r = 0;
10143 }
10144 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010145 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010146
Linus Torvalds1da177e2005-04-16 15:20:36 -070010147 return r;
10148}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010149
Linus Torvalds1da177e2005-04-16 15:20:36 -070010150static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10151{
10152 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010153
Matt Carlson2c49a442010-09-30 10:34:35 +000010154 ering->rx_max_pending = tp->rx_std_ring_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010155 ering->rx_mini_max_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010156 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000010157 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080010158 else
10159 ering->rx_jumbo_max_pending = 0;
10160
10161 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010162
10163 ering->rx_pending = tp->rx_pending;
10164 ering->rx_mini_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010165 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080010166 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10167 else
10168 ering->rx_jumbo_pending = 0;
10169
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010170 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010171}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010172
Linus Torvalds1da177e2005-04-16 15:20:36 -070010173static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10174{
10175 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010176 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010177
Matt Carlson2c49a442010-09-30 10:34:35 +000010178 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
10179 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010180 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10181 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000010182 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010183 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010184 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010185
Michael Chanbbe832c2005-06-24 20:20:04 -070010186 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010187 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010188 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010189 irq_sync = 1;
10190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191
Michael Chanbbe832c2005-06-24 20:20:04 -070010192 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010193
Linus Torvalds1da177e2005-04-16 15:20:36 -070010194 tp->rx_pending = ering->rx_pending;
10195
Joe Perches63c3a662011-04-26 08:12:10 +000010196 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010197 tp->rx_pending > 63)
10198 tp->rx_pending = 63;
10199 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010200
Matt Carlson6fd45cb2010-09-15 08:59:57 +000010201 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000010202 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010203
10204 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010205 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010206 err = tg3_restart_hw(tp, 1);
10207 if (!err)
10208 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010209 }
10210
David S. Millerf47c11e2005-06-24 20:18:35 -070010211 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010212
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010213 if (irq_sync && !err)
10214 tg3_phy_start(tp);
10215
Michael Chanb9ec6c12006-07-25 16:37:27 -070010216 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010217}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010218
Linus Torvalds1da177e2005-04-16 15:20:36 -070010219static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10220{
10221 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010222
Joe Perches63c3a662011-04-26 08:12:10 +000010223 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080010224
Steve Glendinninge18ce342008-12-16 02:00:00 -080010225 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010226 epause->rx_pause = 1;
10227 else
10228 epause->rx_pause = 0;
10229
Steve Glendinninge18ce342008-12-16 02:00:00 -080010230 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010231 epause->tx_pause = 1;
10232 else
10233 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010234}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010235
Linus Torvalds1da177e2005-04-16 15:20:36 -070010236static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10237{
10238 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010239 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010240
Joe Perches63c3a662011-04-26 08:12:10 +000010241 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000010242 u32 newadv;
10243 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010244
Matt Carlson27121682010-02-17 15:16:57 +000010245 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010246
Matt Carlson27121682010-02-17 15:16:57 +000010247 if (!(phydev->supported & SUPPORTED_Pause) ||
10248 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000010249 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000010250 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010251
Matt Carlson27121682010-02-17 15:16:57 +000010252 tp->link_config.flowctrl = 0;
10253 if (epause->rx_pause) {
10254 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010255
Matt Carlson27121682010-02-17 15:16:57 +000010256 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010257 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010258 newadv = ADVERTISED_Pause;
10259 } else
10260 newadv = ADVERTISED_Pause |
10261 ADVERTISED_Asym_Pause;
10262 } else if (epause->tx_pause) {
10263 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10264 newadv = ADVERTISED_Asym_Pause;
10265 } else
10266 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010267
Matt Carlson27121682010-02-17 15:16:57 +000010268 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010269 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010270 else
Joe Perches63c3a662011-04-26 08:12:10 +000010271 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010272
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010273 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000010274 u32 oldadv = phydev->advertising &
10275 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10276 if (oldadv != newadv) {
10277 phydev->advertising &=
10278 ~(ADVERTISED_Pause |
10279 ADVERTISED_Asym_Pause);
10280 phydev->advertising |= newadv;
10281 if (phydev->autoneg) {
10282 /*
10283 * Always renegotiate the link to
10284 * inform our link partner of our
10285 * flow control settings, even if the
10286 * flow control is forced. Let
10287 * tg3_adjust_link() do the final
10288 * flow control setup.
10289 */
10290 return phy_start_aneg(phydev);
10291 }
10292 }
10293
10294 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010295 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010296 } else {
10297 tp->link_config.orig_advertising &=
10298 ~(ADVERTISED_Pause |
10299 ADVERTISED_Asym_Pause);
10300 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010301 }
10302 } else {
10303 int irq_sync = 0;
10304
10305 if (netif_running(dev)) {
10306 tg3_netif_stop(tp);
10307 irq_sync = 1;
10308 }
10309
10310 tg3_full_lock(tp, irq_sync);
10311
10312 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010313 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010314 else
Joe Perches63c3a662011-04-26 08:12:10 +000010315 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010316 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010317 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010318 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010319 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010320 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010321 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010322 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010323 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010324
10325 if (netif_running(dev)) {
10326 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10327 err = tg3_restart_hw(tp, 1);
10328 if (!err)
10329 tg3_netif_start(tp);
10330 }
10331
10332 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010334
Michael Chanb9ec6c12006-07-25 16:37:27 -070010335 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010336}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010337
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010338static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010339{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010340 switch (sset) {
10341 case ETH_SS_TEST:
10342 return TG3_NUM_TEST;
10343 case ETH_SS_STATS:
10344 return TG3_NUM_STATS;
10345 default:
10346 return -EOPNOTSUPP;
10347 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010348}
10349
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010350static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010351{
10352 switch (stringset) {
10353 case ETH_SS_STATS:
10354 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10355 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010356 case ETH_SS_TEST:
10357 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10358 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010359 default:
10360 WARN_ON(1); /* we need a WARN() */
10361 break;
10362 }
10363}
10364
stephen hemminger81b87092011-04-04 08:43:50 +000010365static int tg3_set_phys_id(struct net_device *dev,
10366 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070010367{
10368 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070010369
10370 if (!netif_running(tp->dev))
10371 return -EAGAIN;
10372
stephen hemminger81b87092011-04-04 08:43:50 +000010373 switch (state) {
10374 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000010375 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070010376
stephen hemminger81b87092011-04-04 08:43:50 +000010377 case ETHTOOL_ID_ON:
10378 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10379 LED_CTRL_1000MBPS_ON |
10380 LED_CTRL_100MBPS_ON |
10381 LED_CTRL_10MBPS_ON |
10382 LED_CTRL_TRAFFIC_OVERRIDE |
10383 LED_CTRL_TRAFFIC_BLINK |
10384 LED_CTRL_TRAFFIC_LED);
10385 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010386
stephen hemminger81b87092011-04-04 08:43:50 +000010387 case ETHTOOL_ID_OFF:
10388 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10389 LED_CTRL_TRAFFIC_OVERRIDE);
10390 break;
Michael Chan4009a932005-09-05 17:52:54 -070010391
stephen hemminger81b87092011-04-04 08:43:50 +000010392 case ETHTOOL_ID_INACTIVE:
10393 tw32(MAC_LED_CTRL, tp->led_ctrl);
10394 break;
Michael Chan4009a932005-09-05 17:52:54 -070010395 }
stephen hemminger81b87092011-04-04 08:43:50 +000010396
Michael Chan4009a932005-09-05 17:52:54 -070010397 return 0;
10398}
10399
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010400static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010401 struct ethtool_stats *estats, u64 *tmp_stats)
10402{
10403 struct tg3 *tp = netdev_priv(dev);
10404 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10405}
10406
Matt Carlsonc3e94502011-04-13 11:05:08 +000010407static __be32 * tg3_vpd_readblock(struct tg3 *tp)
10408{
10409 int i;
10410 __be32 *buf;
10411 u32 offset = 0, len = 0;
10412 u32 magic, val;
10413
Joe Perches63c3a662011-04-26 08:12:10 +000010414 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000010415 return NULL;
10416
10417 if (magic == TG3_EEPROM_MAGIC) {
10418 for (offset = TG3_NVM_DIR_START;
10419 offset < TG3_NVM_DIR_END;
10420 offset += TG3_NVM_DIRENT_SIZE) {
10421 if (tg3_nvram_read(tp, offset, &val))
10422 return NULL;
10423
10424 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
10425 TG3_NVM_DIRTYPE_EXTVPD)
10426 break;
10427 }
10428
10429 if (offset != TG3_NVM_DIR_END) {
10430 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
10431 if (tg3_nvram_read(tp, offset + 4, &offset))
10432 return NULL;
10433
10434 offset = tg3_nvram_logical_addr(tp, offset);
10435 }
10436 }
10437
10438 if (!offset || !len) {
10439 offset = TG3_NVM_VPD_OFF;
10440 len = TG3_NVM_VPD_LEN;
10441 }
10442
10443 buf = kmalloc(len, GFP_KERNEL);
10444 if (buf == NULL)
10445 return NULL;
10446
10447 if (magic == TG3_EEPROM_MAGIC) {
10448 for (i = 0; i < len; i += 4) {
10449 /* The data is in little-endian format in NVRAM.
10450 * Use the big-endian read routines to preserve
10451 * the byte order as it exists in NVRAM.
10452 */
10453 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
10454 goto error;
10455 }
10456 } else {
10457 u8 *ptr;
10458 ssize_t cnt;
10459 unsigned int pos = 0;
10460
10461 ptr = (u8 *)&buf[0];
10462 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
10463 cnt = pci_read_vpd(tp->pdev, pos,
10464 len - pos, ptr);
10465 if (cnt == -ETIMEDOUT || cnt == -EINTR)
10466 cnt = 0;
10467 else if (cnt < 0)
10468 goto error;
10469 }
10470 if (pos != len)
10471 goto error;
10472 }
10473
10474 return buf;
10475
10476error:
10477 kfree(buf);
10478 return NULL;
10479}
10480
Michael Chan566f86a2005-05-29 14:56:58 -070010481#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010482#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10483#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10484#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000010485#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
10486#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
10487#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x4c
Michael Chanb16250e2006-09-27 16:10:14 -070010488#define NVRAM_SELFBOOT_HW_SIZE 0x20
10489#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010490
10491static int tg3_test_nvram(struct tg3 *tp)
10492{
Al Virob9fc7dc2007-12-17 22:59:57 -080010493 u32 csum, magic;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010494 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010495 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010496
Joe Perches63c3a662011-04-26 08:12:10 +000010497 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010498 return 0;
10499
Matt Carlsone4f34112009-02-25 14:25:00 +000010500 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010501 return -EIO;
10502
Michael Chan1b277772006-03-20 22:27:48 -080010503 if (magic == TG3_EEPROM_MAGIC)
10504 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010505 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010506 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10507 TG3_EEPROM_SB_FORMAT_1) {
10508 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10509 case TG3_EEPROM_SB_REVISION_0:
10510 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10511 break;
10512 case TG3_EEPROM_SB_REVISION_2:
10513 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10514 break;
10515 case TG3_EEPROM_SB_REVISION_3:
10516 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10517 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000010518 case TG3_EEPROM_SB_REVISION_4:
10519 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
10520 break;
10521 case TG3_EEPROM_SB_REVISION_5:
10522 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
10523 break;
10524 case TG3_EEPROM_SB_REVISION_6:
10525 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
10526 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080010527 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000010528 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080010529 }
10530 } else
Michael Chan1b277772006-03-20 22:27:48 -080010531 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010532 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10533 size = NVRAM_SELFBOOT_HW_SIZE;
10534 else
Michael Chan1b277772006-03-20 22:27:48 -080010535 return -EIO;
10536
10537 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010538 if (buf == NULL)
10539 return -ENOMEM;
10540
Michael Chan1b277772006-03-20 22:27:48 -080010541 err = -EIO;
10542 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010543 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10544 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010545 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010546 }
Michael Chan1b277772006-03-20 22:27:48 -080010547 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010548 goto out;
10549
Michael Chan1b277772006-03-20 22:27:48 -080010550 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010551 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010552 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010553 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010554 u8 *buf8 = (u8 *) buf, csum8 = 0;
10555
Al Virob9fc7dc2007-12-17 22:59:57 -080010556 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010557 TG3_EEPROM_SB_REVISION_2) {
10558 /* For rev 2, the csum doesn't include the MBA. */
10559 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10560 csum8 += buf8[i];
10561 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10562 csum8 += buf8[i];
10563 } else {
10564 for (i = 0; i < size; i++)
10565 csum8 += buf8[i];
10566 }
Michael Chan1b277772006-03-20 22:27:48 -080010567
Adrian Bunkad96b482006-04-05 22:21:04 -070010568 if (csum8 == 0) {
10569 err = 0;
10570 goto out;
10571 }
10572
10573 err = -EIO;
10574 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010575 }
Michael Chan566f86a2005-05-29 14:56:58 -070010576
Al Virob9fc7dc2007-12-17 22:59:57 -080010577 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010578 TG3_EEPROM_MAGIC_HW) {
10579 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010580 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010581 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010582
10583 /* Separate the parity bits and the data bytes. */
10584 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10585 if ((i == 0) || (i == 8)) {
10586 int l;
10587 u8 msk;
10588
10589 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10590 parity[k++] = buf8[i] & msk;
10591 i++;
Matt Carlson859a5882010-04-05 10:19:28 +000010592 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070010593 int l;
10594 u8 msk;
10595
10596 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10597 parity[k++] = buf8[i] & msk;
10598 i++;
10599
10600 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10601 parity[k++] = buf8[i] & msk;
10602 i++;
10603 }
10604 data[j++] = buf8[i];
10605 }
10606
10607 err = -EIO;
10608 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10609 u8 hw8 = hweight8(data[i]);
10610
10611 if ((hw8 & 0x1) && parity[i])
10612 goto out;
10613 else if (!(hw8 & 0x1) && !parity[i])
10614 goto out;
10615 }
10616 err = 0;
10617 goto out;
10618 }
10619
Matt Carlson01c3a392011-03-09 16:58:20 +000010620 err = -EIO;
10621
Michael Chan566f86a2005-05-29 14:56:58 -070010622 /* Bootstrap checksum at offset 0x10 */
10623 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000010624 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010625 goto out;
10626
10627 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10628 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000010629 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000010630 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070010631
Matt Carlsonc3e94502011-04-13 11:05:08 +000010632 kfree(buf);
10633
10634 buf = tg3_vpd_readblock(tp);
10635 if (!buf)
10636 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000010637
10638 i = pci_vpd_find_tag((u8 *)buf, 0, TG3_NVM_VPD_LEN,
10639 PCI_VPD_LRDT_RO_DATA);
10640 if (i > 0) {
10641 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
10642 if (j < 0)
10643 goto out;
10644
10645 if (i + PCI_VPD_LRDT_TAG_SIZE + j > TG3_NVM_VPD_LEN)
10646 goto out;
10647
10648 i += PCI_VPD_LRDT_TAG_SIZE;
10649 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
10650 PCI_VPD_RO_KEYWORD_CHKSUM);
10651 if (j > 0) {
10652 u8 csum8 = 0;
10653
10654 j += PCI_VPD_INFO_FLD_HDR_SIZE;
10655
10656 for (i = 0; i <= j; i++)
10657 csum8 += ((u8 *)buf)[i];
10658
10659 if (csum8)
10660 goto out;
10661 }
10662 }
10663
Michael Chan566f86a2005-05-29 14:56:58 -070010664 err = 0;
10665
10666out:
10667 kfree(buf);
10668 return err;
10669}
10670
Michael Chanca430072005-05-29 14:57:23 -070010671#define TG3_SERDES_TIMEOUT_SEC 2
10672#define TG3_COPPER_TIMEOUT_SEC 6
10673
10674static int tg3_test_link(struct tg3 *tp)
10675{
10676 int i, max;
10677
10678 if (!netif_running(tp->dev))
10679 return -ENODEV;
10680
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010681 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070010682 max = TG3_SERDES_TIMEOUT_SEC;
10683 else
10684 max = TG3_COPPER_TIMEOUT_SEC;
10685
10686 for (i = 0; i < max; i++) {
10687 if (netif_carrier_ok(tp->dev))
10688 return 0;
10689
10690 if (msleep_interruptible(1000))
10691 break;
10692 }
10693
10694 return -EIO;
10695}
10696
Michael Chana71116d2005-05-29 14:58:11 -070010697/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080010698static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070010699{
Michael Chanb16250e2006-09-27 16:10:14 -070010700 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070010701 u32 offset, read_mask, write_mask, val, save_val, read_val;
10702 static struct {
10703 u16 offset;
10704 u16 flags;
10705#define TG3_FL_5705 0x1
10706#define TG3_FL_NOT_5705 0x2
10707#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070010708#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070010709 u32 read_mask;
10710 u32 write_mask;
10711 } reg_tbl[] = {
10712 /* MAC Control Registers */
10713 { MAC_MODE, TG3_FL_NOT_5705,
10714 0x00000000, 0x00ef6f8c },
10715 { MAC_MODE, TG3_FL_5705,
10716 0x00000000, 0x01ef6b8c },
10717 { MAC_STATUS, TG3_FL_NOT_5705,
10718 0x03800107, 0x00000000 },
10719 { MAC_STATUS, TG3_FL_5705,
10720 0x03800100, 0x00000000 },
10721 { MAC_ADDR_0_HIGH, 0x0000,
10722 0x00000000, 0x0000ffff },
10723 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010724 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070010725 { MAC_RX_MTU_SIZE, 0x0000,
10726 0x00000000, 0x0000ffff },
10727 { MAC_TX_MODE, 0x0000,
10728 0x00000000, 0x00000070 },
10729 { MAC_TX_LENGTHS, 0x0000,
10730 0x00000000, 0x00003fff },
10731 { MAC_RX_MODE, TG3_FL_NOT_5705,
10732 0x00000000, 0x000007fc },
10733 { MAC_RX_MODE, TG3_FL_5705,
10734 0x00000000, 0x000007dc },
10735 { MAC_HASH_REG_0, 0x0000,
10736 0x00000000, 0xffffffff },
10737 { MAC_HASH_REG_1, 0x0000,
10738 0x00000000, 0xffffffff },
10739 { MAC_HASH_REG_2, 0x0000,
10740 0x00000000, 0xffffffff },
10741 { MAC_HASH_REG_3, 0x0000,
10742 0x00000000, 0xffffffff },
10743
10744 /* Receive Data and Receive BD Initiator Control Registers. */
10745 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
10746 0x00000000, 0xffffffff },
10747 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
10748 0x00000000, 0xffffffff },
10749 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
10750 0x00000000, 0x00000003 },
10751 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
10752 0x00000000, 0xffffffff },
10753 { RCVDBDI_STD_BD+0, 0x0000,
10754 0x00000000, 0xffffffff },
10755 { RCVDBDI_STD_BD+4, 0x0000,
10756 0x00000000, 0xffffffff },
10757 { RCVDBDI_STD_BD+8, 0x0000,
10758 0x00000000, 0xffff0002 },
10759 { RCVDBDI_STD_BD+0xc, 0x0000,
10760 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010761
Michael Chana71116d2005-05-29 14:58:11 -070010762 /* Receive BD Initiator Control Registers. */
10763 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
10764 0x00000000, 0xffffffff },
10765 { RCVBDI_STD_THRESH, TG3_FL_5705,
10766 0x00000000, 0x000003ff },
10767 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
10768 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010769
Michael Chana71116d2005-05-29 14:58:11 -070010770 /* Host Coalescing Control Registers. */
10771 { HOSTCC_MODE, TG3_FL_NOT_5705,
10772 0x00000000, 0x00000004 },
10773 { HOSTCC_MODE, TG3_FL_5705,
10774 0x00000000, 0x000000f6 },
10775 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
10776 0x00000000, 0xffffffff },
10777 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
10778 0x00000000, 0x000003ff },
10779 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
10780 0x00000000, 0xffffffff },
10781 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
10782 0x00000000, 0x000003ff },
10783 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
10784 0x00000000, 0xffffffff },
10785 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10786 0x00000000, 0x000000ff },
10787 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
10788 0x00000000, 0xffffffff },
10789 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10790 0x00000000, 0x000000ff },
10791 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
10792 0x00000000, 0xffffffff },
10793 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
10794 0x00000000, 0xffffffff },
10795 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10796 0x00000000, 0xffffffff },
10797 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10798 0x00000000, 0x000000ff },
10799 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10800 0x00000000, 0xffffffff },
10801 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10802 0x00000000, 0x000000ff },
10803 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
10804 0x00000000, 0xffffffff },
10805 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
10806 0x00000000, 0xffffffff },
10807 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
10808 0x00000000, 0xffffffff },
10809 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
10810 0x00000000, 0xffffffff },
10811 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
10812 0x00000000, 0xffffffff },
10813 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
10814 0xffffffff, 0x00000000 },
10815 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
10816 0xffffffff, 0x00000000 },
10817
10818 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070010819 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010820 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070010821 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010822 0x00000000, 0x007fffff },
10823 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
10824 0x00000000, 0x0000003f },
10825 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
10826 0x00000000, 0x000001ff },
10827 { BUFMGR_MB_HIGH_WATER, 0x0000,
10828 0x00000000, 0x000001ff },
10829 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
10830 0xffffffff, 0x00000000 },
10831 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
10832 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010833
Michael Chana71116d2005-05-29 14:58:11 -070010834 /* Mailbox Registers */
10835 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
10836 0x00000000, 0x000001ff },
10837 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
10838 0x00000000, 0x000001ff },
10839 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
10840 0x00000000, 0x000007ff },
10841 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
10842 0x00000000, 0x000001ff },
10843
10844 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
10845 };
10846
Michael Chanb16250e2006-09-27 16:10:14 -070010847 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010848 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070010849 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000010850 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070010851 is_5750 = 1;
10852 }
Michael Chana71116d2005-05-29 14:58:11 -070010853
10854 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
10855 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
10856 continue;
10857
10858 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
10859 continue;
10860
Joe Perches63c3a662011-04-26 08:12:10 +000010861 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070010862 (reg_tbl[i].flags & TG3_FL_NOT_5788))
10863 continue;
10864
Michael Chanb16250e2006-09-27 16:10:14 -070010865 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
10866 continue;
10867
Michael Chana71116d2005-05-29 14:58:11 -070010868 offset = (u32) reg_tbl[i].offset;
10869 read_mask = reg_tbl[i].read_mask;
10870 write_mask = reg_tbl[i].write_mask;
10871
10872 /* Save the original register content */
10873 save_val = tr32(offset);
10874
10875 /* Determine the read-only value. */
10876 read_val = save_val & read_mask;
10877
10878 /* Write zero to the register, then make sure the read-only bits
10879 * are not changed and the read/write bits are all zeros.
10880 */
10881 tw32(offset, 0);
10882
10883 val = tr32(offset);
10884
10885 /* Test the read-only and read/write bits. */
10886 if (((val & read_mask) != read_val) || (val & write_mask))
10887 goto out;
10888
10889 /* Write ones to all the bits defined by RdMask and WrMask, then
10890 * make sure the read-only bits are not changed and the
10891 * read/write bits are all ones.
10892 */
10893 tw32(offset, read_mask | write_mask);
10894
10895 val = tr32(offset);
10896
10897 /* Test the read-only bits. */
10898 if ((val & read_mask) != read_val)
10899 goto out;
10900
10901 /* Test the read/write bits. */
10902 if ((val & write_mask) != write_mask)
10903 goto out;
10904
10905 tw32(offset, save_val);
10906 }
10907
10908 return 0;
10909
10910out:
Michael Chan9f88f292006-12-07 00:22:54 -080010911 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000010912 netdev_err(tp->dev,
10913 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070010914 tw32(offset, save_val);
10915 return -EIO;
10916}
10917
Michael Chan7942e1d2005-05-29 14:58:36 -070010918static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
10919{
Arjan van de Venf71e1302006-03-03 21:33:57 -050010920 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070010921 int i;
10922 u32 j;
10923
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020010924 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070010925 for (j = 0; j < len; j += 4) {
10926 u32 val;
10927
10928 tg3_write_mem(tp, offset + j, test_pattern[i]);
10929 tg3_read_mem(tp, offset + j, &val);
10930 if (val != test_pattern[i])
10931 return -EIO;
10932 }
10933 }
10934 return 0;
10935}
10936
10937static int tg3_test_memory(struct tg3 *tp)
10938{
10939 static struct mem_entry {
10940 u32 offset;
10941 u32 len;
10942 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080010943 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070010944 { 0x00002000, 0x1c000},
10945 { 0xffffffff, 0x00000}
10946 }, mem_tbl_5705[] = {
10947 { 0x00000100, 0x0000c},
10948 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070010949 { 0x00004000, 0x00800},
10950 { 0x00006000, 0x01000},
10951 { 0x00008000, 0x02000},
10952 { 0x00010000, 0x0e000},
10953 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080010954 }, mem_tbl_5755[] = {
10955 { 0x00000200, 0x00008},
10956 { 0x00004000, 0x00800},
10957 { 0x00006000, 0x00800},
10958 { 0x00008000, 0x02000},
10959 { 0x00010000, 0x0c000},
10960 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070010961 }, mem_tbl_5906[] = {
10962 { 0x00000200, 0x00008},
10963 { 0x00004000, 0x00400},
10964 { 0x00006000, 0x00400},
10965 { 0x00008000, 0x01000},
10966 { 0x00010000, 0x01000},
10967 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010968 }, mem_tbl_5717[] = {
10969 { 0x00000200, 0x00008},
10970 { 0x00010000, 0x0a000},
10971 { 0x00020000, 0x13c00},
10972 { 0xffffffff, 0x00000}
10973 }, mem_tbl_57765[] = {
10974 { 0x00000200, 0x00008},
10975 { 0x00004000, 0x00800},
10976 { 0x00006000, 0x09800},
10977 { 0x00010000, 0x0a000},
10978 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070010979 };
10980 struct mem_entry *mem_tbl;
10981 int err = 0;
10982 int i;
10983
Joe Perches63c3a662011-04-26 08:12:10 +000010984 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010985 mem_tbl = mem_tbl_5717;
10986 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
10987 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000010988 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080010989 mem_tbl = mem_tbl_5755;
10990 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10991 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000010992 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080010993 mem_tbl = mem_tbl_5705;
10994 else
Michael Chan7942e1d2005-05-29 14:58:36 -070010995 mem_tbl = mem_tbl_570x;
10996
10997 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000010998 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
10999 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070011000 break;
11001 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011002
Michael Chan7942e1d2005-05-29 14:58:36 -070011003 return err;
11004}
11005
Michael Chan9f40dea2005-09-05 17:53:06 -070011006#define TG3_MAC_LOOPBACK 0
11007#define TG3_PHY_LOOPBACK 1
Matt Carlsonbb158d62011-04-25 12:42:47 +000011008#define TG3_TSO_LOOPBACK 2
11009
11010#define TG3_TSO_MSS 500
11011
11012#define TG3_TSO_IP_HDR_LEN 20
11013#define TG3_TSO_TCP_HDR_LEN 20
11014#define TG3_TSO_TCP_OPT_LEN 12
11015
11016static const u8 tg3_tso_header[] = {
110170x08, 0x00,
110180x45, 0x00, 0x00, 0x00,
110190x00, 0x00, 0x40, 0x00,
110200x40, 0x06, 0x00, 0x00,
110210x0a, 0x00, 0x00, 0x01,
110220x0a, 0x00, 0x00, 0x02,
110230x0d, 0x00, 0xe0, 0x00,
110240x00, 0x00, 0x01, 0x00,
110250x00, 0x00, 0x02, 0x00,
110260x80, 0x10, 0x10, 0x00,
110270x14, 0x09, 0x00, 0x00,
110280x01, 0x01, 0x08, 0x0a,
110290x11, 0x11, 0x11, 0x11,
110300x11, 0x11, 0x11, 0x11,
11031};
Michael Chan9f40dea2005-09-05 17:53:06 -070011032
Matt Carlson4852a862011-04-13 11:05:07 +000011033static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -070011034{
Michael Chan9f40dea2005-09-05 17:53:06 -070011035 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011036 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Michael Chanc76949a2005-05-29 14:58:59 -070011037 struct sk_buff *skb, *rx_skb;
11038 u8 *tx_data;
11039 dma_addr_t map;
11040 int num_pkts, tx_len, rx_len, i, err;
11041 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000011042 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000011043 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070011044
Matt Carlsonc8873402010-02-12 14:47:11 +000011045 tnapi = &tp->napi[0];
11046 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011047 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000011048 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000011049 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000011050 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000011051 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011052 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011053 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000011054
Michael Chan9f40dea2005-09-05 17:53:06 -070011055 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -070011056 /* HW errata - mac loopback fails in some cases on 5780.
11057 * Normal traffic and PHY loopback are not affected by
Matt Carlsonaba49f22011-01-25 15:58:53 +000011058 * errata. Also, the MAC loopback test is deprecated for
11059 * all newer ASIC revisions.
Michael Chanc94e3942005-09-27 12:12:42 -070011060 */
Matt Carlsonaba49f22011-01-25 15:58:53 +000011061 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000011062 tg3_flag(tp, CPMU_PRESENT))
Michael Chanc94e3942005-09-27 12:12:42 -070011063 return 0;
11064
Matt Carlson49692ca2011-01-25 15:58:52 +000011065 mac_mode = tp->mac_mode &
11066 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
11067 mac_mode |= MAC_MODE_PORT_INT_LPBACK;
Joe Perches63c3a662011-04-26 08:12:10 +000011068 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011069 mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011070 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
Michael Chan3f7045c2006-09-27 16:02:29 -070011071 mac_mode |= MAC_MODE_PORT_MODE_MII;
11072 else
11073 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -070011074 tw32(MAC_MODE, mac_mode);
Matt Carlsonbb158d62011-04-25 12:42:47 +000011075 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011076 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +000011077 tg3_phy_fet_toggle_apd(tp, false);
Michael Chan5d64ad32006-12-07 00:19:40 -080011078 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
11079 } else
11080 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -070011081
Matt Carlson9ef8ca92007-07-11 19:48:29 -070011082 tg3_phy_toggle_automdix(tp, 0);
11083
Michael Chan3f7045c2006-09-27 16:02:29 -070011084 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -070011085 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -080011086
Matt Carlson49692ca2011-01-25 15:58:52 +000011087 mac_mode = tp->mac_mode &
11088 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011089 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson1061b7c2010-02-12 14:47:12 +000011090 tg3_writephy(tp, MII_TG3_FET_PTEST,
11091 MII_TG3_FET_PTEST_FRC_TX_LINK |
11092 MII_TG3_FET_PTEST_FRC_TX_LOCK);
11093 /* The write needs to be flushed for the AC131 */
11094 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
11095 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
Michael Chan5d64ad32006-12-07 00:19:40 -080011096 mac_mode |= MAC_MODE_PORT_MODE_MII;
11097 } else
11098 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -070011099
Michael Chanc94e3942005-09-27 12:12:42 -070011100 /* reset to prevent losing 1st rx packet intermittently */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011101 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Michael Chanc94e3942005-09-27 12:12:42 -070011102 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
11103 udelay(10);
11104 tw32_f(MAC_RX_MODE, tp->rx_mode);
11105 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011106 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlson79eb6902010-02-17 15:17:03 +000011107 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
11108 if (masked_phy_id == TG3_PHY_ID_BCM5401)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011109 mac_mode &= ~MAC_MODE_LINK_POLARITY;
Matt Carlson79eb6902010-02-17 15:17:03 +000011110 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011111 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -080011112 tg3_writephy(tp, MII_TG3_EXT_CTRL,
11113 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
11114 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011115 tw32(MAC_MODE, mac_mode);
Matt Carlson49692ca2011-01-25 15:58:52 +000011116
11117 /* Wait for link */
11118 for (i = 0; i < 100; i++) {
11119 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
11120 break;
11121 mdelay(1);
11122 }
Matt Carlson859a5882010-04-05 10:19:28 +000011123 }
Michael Chanc76949a2005-05-29 14:58:59 -070011124
11125 err = -EIO;
11126
Matt Carlson4852a862011-04-13 11:05:07 +000011127 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070011128 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070011129 if (!skb)
11130 return -ENOMEM;
11131
Michael Chanc76949a2005-05-29 14:58:59 -070011132 tx_data = skb_put(skb, tx_len);
11133 memcpy(tx_data, tp->dev->dev_addr, 6);
11134 memset(tx_data + 6, 0x0, 8);
11135
Matt Carlson4852a862011-04-13 11:05:07 +000011136 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070011137
Matt Carlsonbb158d62011-04-25 12:42:47 +000011138 if (loopback_mode == TG3_TSO_LOOPBACK) {
11139 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
11140
11141 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
11142 TG3_TSO_TCP_OPT_LEN;
11143
11144 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
11145 sizeof(tg3_tso_header));
11146 mss = TG3_TSO_MSS;
11147
11148 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
11149 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
11150
11151 /* Set the total length field in the IP header */
11152 iph->tot_len = htons((u16)(mss + hdr_len));
11153
11154 base_flags = (TXD_FLAG_CPU_PRE_DMA |
11155 TXD_FLAG_CPU_POST_DMA);
11156
Joe Perches63c3a662011-04-26 08:12:10 +000011157 if (tg3_flag(tp, HW_TSO_1) ||
11158 tg3_flag(tp, HW_TSO_2) ||
11159 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011160 struct tcphdr *th;
11161 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
11162 th = (struct tcphdr *)&tx_data[val];
11163 th->check = 0;
11164 } else
11165 base_flags |= TXD_FLAG_TCPUDP_CSUM;
11166
Joe Perches63c3a662011-04-26 08:12:10 +000011167 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011168 mss |= (hdr_len & 0xc) << 12;
11169 if (hdr_len & 0x10)
11170 base_flags |= 0x00000010;
11171 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000011172 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011173 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000011174 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000011175 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
11176 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
11177 } else {
11178 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
11179 }
11180
11181 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
11182 } else {
11183 num_pkts = 1;
11184 data_off = ETH_HLEN;
11185 }
11186
11187 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070011188 tx_data[i] = (u8) (i & 0xff);
11189
Alexander Duyckf4188d82009-12-02 16:48:38 +000011190 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
11191 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000011192 dev_kfree_skb(skb);
11193 return -EIO;
11194 }
Michael Chanc76949a2005-05-29 14:58:59 -070011195
11196 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011197 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011198
11199 udelay(10);
11200
Matt Carlson898a56f2009-08-28 14:02:40 +000011201 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070011202
Matt Carlsonbb158d62011-04-25 12:42:47 +000011203 tg3_set_txd(tnapi, tnapi->tx_prod, map, tx_len,
11204 base_flags, (mss << 1) | 1);
Michael Chanc76949a2005-05-29 14:58:59 -070011205
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011206 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070011207
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011208 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
11209 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070011210
11211 udelay(10);
11212
Matt Carlson303fc922009-11-02 14:27:34 +000011213 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
11214 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070011215 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011216 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011217
11218 udelay(10);
11219
Matt Carlson898a56f2009-08-28 14:02:40 +000011220 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
11221 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011222 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070011223 (rx_idx == (rx_start_idx + num_pkts)))
11224 break;
11225 }
11226
Alexander Duyckf4188d82009-12-02 16:48:38 +000011227 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
Michael Chanc76949a2005-05-29 14:58:59 -070011228 dev_kfree_skb(skb);
11229
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011230 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070011231 goto out;
11232
11233 if (rx_idx != rx_start_idx + num_pkts)
11234 goto out;
11235
Matt Carlsonbb158d62011-04-25 12:42:47 +000011236 val = data_off;
11237 while (rx_idx != rx_start_idx) {
11238 desc = &rnapi->rx_rcb[rx_start_idx++];
11239 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
11240 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070011241
Matt Carlsonbb158d62011-04-25 12:42:47 +000011242 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
11243 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000011244 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070011245
Matt Carlsonbb158d62011-04-25 12:42:47 +000011246 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
11247 - ETH_FCS_LEN;
11248
11249 if (loopback_mode != TG3_TSO_LOOPBACK) {
11250 if (rx_len != tx_len)
11251 goto out;
11252
11253 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
11254 if (opaque_key != RXD_OPAQUE_RING_STD)
11255 goto out;
11256 } else {
11257 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
11258 goto out;
11259 }
11260 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
11261 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000011262 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011263 goto out;
11264 }
11265
11266 if (opaque_key == RXD_OPAQUE_RING_STD) {
11267 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
11268 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
11269 mapping);
11270 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
11271 rx_skb = tpr->rx_jmb_buffers[desc_idx].skb;
11272 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
11273 mapping);
11274 } else
Matt Carlson4852a862011-04-13 11:05:07 +000011275 goto out;
11276
Matt Carlsonbb158d62011-04-25 12:42:47 +000011277 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
11278 PCI_DMA_FROMDEVICE);
11279
11280 for (i = data_off; i < rx_len; i++, val++) {
11281 if (*(rx_skb->data + i) != (u8) (val & 0xff))
11282 goto out;
11283 }
Matt Carlson4852a862011-04-13 11:05:07 +000011284 }
11285
Michael Chanc76949a2005-05-29 14:58:59 -070011286 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011287
Michael Chanc76949a2005-05-29 14:58:59 -070011288 /* tg3_free_rings will unmap and free the rx_skb */
11289out:
11290 return err;
11291}
11292
Matt Carlson00c266b2011-04-25 12:42:46 +000011293#define TG3_STD_LOOPBACK_FAILED 1
11294#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000011295#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson00c266b2011-04-25 12:42:46 +000011296
11297#define TG3_MAC_LOOPBACK_SHIFT 0
11298#define TG3_PHY_LOOPBACK_SHIFT 4
Matt Carlsonbb158d62011-04-25 12:42:47 +000011299#define TG3_LOOPBACK_FAILED 0x00000077
Michael Chan9f40dea2005-09-05 17:53:06 -070011300
11301static int tg3_test_loopback(struct tg3 *tp)
11302{
11303 int err = 0;
Matt Carlsonab789042011-01-25 15:58:54 +000011304 u32 eee_cap, cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070011305
11306 if (!netif_running(tp->dev))
11307 return TG3_LOOPBACK_FAILED;
11308
Matt Carlsonab789042011-01-25 15:58:54 +000011309 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
11310 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11311
Michael Chanb9ec6c12006-07-25 16:37:27 -070011312 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000011313 if (err) {
11314 err = TG3_LOOPBACK_FAILED;
11315 goto done;
11316 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011317
Joe Perches63c3a662011-04-26 08:12:10 +000011318 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000011319 int i;
11320
11321 /* Reroute all rx packets to the 1st queue */
11322 for (i = MAC_RSS_INDIR_TBL_0;
11323 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
11324 tw32(i, 0x0);
11325 }
11326
Matt Carlson6833c042008-11-21 17:18:59 -080011327 /* Turn off gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011328 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011329 tg3_phy_toggle_apd(tp, false);
11330
Joe Perches63c3a662011-04-26 08:12:10 +000011331 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011332 int i;
11333 u32 status;
11334
11335 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
11336
11337 /* Wait for up to 40 microseconds to acquire lock. */
11338 for (i = 0; i < 4; i++) {
11339 status = tr32(TG3_CPMU_MUTEX_GNT);
11340 if (status == CPMU_MUTEX_GNT_DRIVER)
11341 break;
11342 udelay(10);
11343 }
11344
Matt Carlsonab789042011-01-25 15:58:54 +000011345 if (status != CPMU_MUTEX_GNT_DRIVER) {
11346 err = TG3_LOOPBACK_FAILED;
11347 goto done;
11348 }
Matt Carlson9936bcf2007-10-10 18:03:07 -070011349
Matt Carlsonb2a5c192008-04-03 21:44:44 -070011350 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080011351 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070011352 tw32(TG3_CPMU_CTRL,
11353 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
11354 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070011355 }
11356
Matt Carlson4852a862011-04-13 11:05:07 +000011357 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011358 err |= TG3_STD_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson9936bcf2007-10-10 18:03:07 -070011359
Joe Perches63c3a662011-04-26 08:12:10 +000011360 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011361 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011362 err |= TG3_JMB_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson4852a862011-04-13 11:05:07 +000011363
Joe Perches63c3a662011-04-26 08:12:10 +000011364 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011365 tw32(TG3_CPMU_CTRL, cpmuctrl);
11366
11367 /* Release the mutex */
11368 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
11369 }
11370
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011371 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011372 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson4852a862011-04-13 11:05:07 +000011373 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011374 err |= TG3_STD_LOOPBACK_FAILED <<
11375 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011376 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonbb158d62011-04-25 12:42:47 +000011377 tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_TSO_LOOPBACK))
11378 err |= TG3_TSO_LOOPBACK_FAILED <<
11379 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011380 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011381 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011382 err |= TG3_JMB_LOOPBACK_FAILED <<
11383 TG3_PHY_LOOPBACK_SHIFT;
Michael Chan9f40dea2005-09-05 17:53:06 -070011384 }
11385
Matt Carlson6833c042008-11-21 17:18:59 -080011386 /* Re-enable gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011387 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011388 tg3_phy_toggle_apd(tp, true);
11389
Matt Carlsonab789042011-01-25 15:58:54 +000011390done:
11391 tp->phy_flags |= eee_cap;
11392
Michael Chan9f40dea2005-09-05 17:53:06 -070011393 return err;
11394}
11395
Michael Chan4cafd3f2005-05-29 14:56:34 -070011396static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
11397 u64 *data)
11398{
Michael Chan566f86a2005-05-29 14:56:58 -070011399 struct tg3 *tp = netdev_priv(dev);
11400
Matt Carlson80096062010-08-02 11:26:06 +000011401 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011402 tg3_power_up(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011403
Michael Chan566f86a2005-05-29 14:56:58 -070011404 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11405
11406 if (tg3_test_nvram(tp) != 0) {
11407 etest->flags |= ETH_TEST_FL_FAILED;
11408 data[0] = 1;
11409 }
Michael Chanca430072005-05-29 14:57:23 -070011410 if (tg3_test_link(tp) != 0) {
11411 etest->flags |= ETH_TEST_FL_FAILED;
11412 data[1] = 1;
11413 }
Michael Chana71116d2005-05-29 14:58:11 -070011414 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011415 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011416
Michael Chanbbe832c2005-06-24 20:20:04 -070011417 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011418 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011419 tg3_netif_stop(tp);
11420 irq_sync = 1;
11421 }
11422
11423 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011424
11425 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011426 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011427 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000011428 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070011429 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011430 if (!err)
11431 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011432
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011433 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad2006-03-20 22:27:35 -080011434 tg3_phy_reset(tp);
11435
Michael Chana71116d2005-05-29 14:58:11 -070011436 if (tg3_test_registers(tp) != 0) {
11437 etest->flags |= ETH_TEST_FL_FAILED;
11438 data[2] = 1;
11439 }
Michael Chan7942e1d2005-05-29 14:58:36 -070011440 if (tg3_test_memory(tp) != 0) {
11441 etest->flags |= ETH_TEST_FL_FAILED;
11442 data[3] = 1;
11443 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011444 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070011445 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011446
David S. Millerf47c11e2005-06-24 20:18:35 -070011447 tg3_full_unlock(tp);
11448
Michael Chand4bc3922005-05-29 14:59:20 -070011449 if (tg3_test_interrupt(tp) != 0) {
11450 etest->flags |= ETH_TEST_FL_FAILED;
11451 data[5] = 1;
11452 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011453
11454 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011455
Michael Chana71116d2005-05-29 14:58:11 -070011456 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11457 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011458 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011459 err2 = tg3_restart_hw(tp, 1);
11460 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011461 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011462 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011463
11464 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011465
11466 if (irq_sync && !err2)
11467 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011468 }
Matt Carlson80096062010-08-02 11:26:06 +000011469 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011470 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011471
Michael Chan4cafd3f2005-05-29 14:56:34 -070011472}
11473
Linus Torvalds1da177e2005-04-16 15:20:36 -070011474static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11475{
11476 struct mii_ioctl_data *data = if_mii(ifr);
11477 struct tg3 *tp = netdev_priv(dev);
11478 int err;
11479
Joe Perches63c3a662011-04-26 08:12:10 +000011480 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011481 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011482 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011483 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011484 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000011485 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011486 }
11487
Matt Carlson33f401a2010-04-05 10:19:27 +000011488 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011489 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011490 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011491
11492 /* fallthru */
11493 case SIOCGMIIREG: {
11494 u32 mii_regval;
11495
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011496 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011497 break; /* We have no PHY */
11498
Matt Carlson34eea5a2011-04-20 07:57:38 +000011499 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011500 return -EAGAIN;
11501
David S. Millerf47c11e2005-06-24 20:18:35 -070011502 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011503 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011504 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011505
11506 data->val_out = mii_regval;
11507
11508 return err;
11509 }
11510
11511 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011512 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011513 break; /* We have no PHY */
11514
Matt Carlson34eea5a2011-04-20 07:57:38 +000011515 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011516 return -EAGAIN;
11517
David S. Millerf47c11e2005-06-24 20:18:35 -070011518 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011519 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011520 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011521
11522 return err;
11523
11524 default:
11525 /* do nothing */
11526 break;
11527 }
11528 return -EOPNOTSUPP;
11529}
11530
David S. Miller15f98502005-05-18 22:49:26 -070011531static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11532{
11533 struct tg3 *tp = netdev_priv(dev);
11534
11535 memcpy(ec, &tp->coal, sizeof(*ec));
11536 return 0;
11537}
11538
Michael Chand244c892005-07-05 14:42:33 -070011539static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11540{
11541 struct tg3 *tp = netdev_priv(dev);
11542 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11543 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11544
Joe Perches63c3a662011-04-26 08:12:10 +000011545 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070011546 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11547 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11548 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11549 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11550 }
11551
11552 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11553 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11554 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11555 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11556 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11557 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11558 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11559 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11560 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11561 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11562 return -EINVAL;
11563
11564 /* No rx interrupts will be generated if both are zero */
11565 if ((ec->rx_coalesce_usecs == 0) &&
11566 (ec->rx_max_coalesced_frames == 0))
11567 return -EINVAL;
11568
11569 /* No tx interrupts will be generated if both are zero */
11570 if ((ec->tx_coalesce_usecs == 0) &&
11571 (ec->tx_max_coalesced_frames == 0))
11572 return -EINVAL;
11573
11574 /* Only copy relevant parameters, ignore all others. */
11575 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11576 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11577 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11578 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11579 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11580 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11581 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11582 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11583 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11584
11585 if (netif_running(dev)) {
11586 tg3_full_lock(tp, 0);
11587 __tg3_set_coalesce(tp, &tp->coal);
11588 tg3_full_unlock(tp);
11589 }
11590 return 0;
11591}
11592
Jeff Garzik7282d492006-09-13 14:30:00 -040011593static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011594 .get_settings = tg3_get_settings,
11595 .set_settings = tg3_set_settings,
11596 .get_drvinfo = tg3_get_drvinfo,
11597 .get_regs_len = tg3_get_regs_len,
11598 .get_regs = tg3_get_regs,
11599 .get_wol = tg3_get_wol,
11600 .set_wol = tg3_set_wol,
11601 .get_msglevel = tg3_get_msglevel,
11602 .set_msglevel = tg3_set_msglevel,
11603 .nway_reset = tg3_nway_reset,
11604 .get_link = ethtool_op_get_link,
11605 .get_eeprom_len = tg3_get_eeprom_len,
11606 .get_eeprom = tg3_get_eeprom,
11607 .set_eeprom = tg3_set_eeprom,
11608 .get_ringparam = tg3_get_ringparam,
11609 .set_ringparam = tg3_set_ringparam,
11610 .get_pauseparam = tg3_get_pauseparam,
11611 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011612 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011613 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000011614 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011615 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011616 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011617 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011618 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011619};
11620
11621static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11622{
Michael Chan1b277772006-03-20 22:27:48 -080011623 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011624
11625 tp->nvram_size = EEPROM_CHIP_SIZE;
11626
Matt Carlsone4f34112009-02-25 14:25:00 +000011627 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011628 return;
11629
Michael Chanb16250e2006-09-27 16:10:14 -070011630 if ((magic != TG3_EEPROM_MAGIC) &&
11631 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11632 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011633 return;
11634
11635 /*
11636 * Size the chip by reading offsets at increasing powers of two.
11637 * When we encounter our validation signature, we know the addressing
11638 * has wrapped around, and thus have our chip size.
11639 */
Michael Chan1b277772006-03-20 22:27:48 -080011640 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011641
11642 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011643 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011644 return;
11645
Michael Chan18201802006-03-20 22:29:15 -080011646 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011647 break;
11648
11649 cursize <<= 1;
11650 }
11651
11652 tp->nvram_size = cursize;
11653}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011654
Linus Torvalds1da177e2005-04-16 15:20:36 -070011655static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11656{
11657 u32 val;
11658
Joe Perches63c3a662011-04-26 08:12:10 +000011659 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011660 return;
11661
11662 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011663 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011664 tg3_get_eeprom_size(tp);
11665 return;
11666 }
11667
Matt Carlson6d348f22009-02-25 14:25:52 +000011668 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011669 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011670 /* This is confusing. We want to operate on the
11671 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11672 * call will read from NVRAM and byteswap the data
11673 * according to the byteswapping settings for all
11674 * other register accesses. This ensures the data we
11675 * want will always reside in the lower 16-bits.
11676 * However, the data in NVRAM is in LE format, which
11677 * means the data from the NVRAM read will always be
11678 * opposite the endianness of the CPU. The 16-bit
11679 * byteswap then brings the data to CPU endianness.
11680 */
11681 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011682 return;
11683 }
11684 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070011685 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011686}
11687
11688static void __devinit tg3_get_nvram_info(struct tg3 *tp)
11689{
11690 u32 nvcfg1;
11691
11692 nvcfg1 = tr32(NVRAM_CFG1);
11693 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000011694 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011695 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011696 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11697 tw32(NVRAM_CFG1, nvcfg1);
11698 }
11699
Matt Carlson6ff6f812011-05-19 12:12:54 +000011700 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000011701 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011702 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011703 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
11704 tp->nvram_jedecnum = JEDEC_ATMEL;
11705 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011706 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011707 break;
11708 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
11709 tp->nvram_jedecnum = JEDEC_ATMEL;
11710 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
11711 break;
11712 case FLASH_VENDOR_ATMEL_EEPROM:
11713 tp->nvram_jedecnum = JEDEC_ATMEL;
11714 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011715 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011716 break;
11717 case FLASH_VENDOR_ST:
11718 tp->nvram_jedecnum = JEDEC_ST;
11719 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011720 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011721 break;
11722 case FLASH_VENDOR_SAIFUN:
11723 tp->nvram_jedecnum = JEDEC_SAIFUN;
11724 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
11725 break;
11726 case FLASH_VENDOR_SST_SMALL:
11727 case FLASH_VENDOR_SST_LARGE:
11728 tp->nvram_jedecnum = JEDEC_SST;
11729 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
11730 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011731 }
Matt Carlson8590a602009-08-28 12:29:16 +000011732 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011733 tp->nvram_jedecnum = JEDEC_ATMEL;
11734 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011735 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011736 }
11737}
11738
Matt Carlsona1b950d2009-09-01 13:20:17 +000011739static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
11740{
11741 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
11742 case FLASH_5752PAGE_SIZE_256:
11743 tp->nvram_pagesize = 256;
11744 break;
11745 case FLASH_5752PAGE_SIZE_512:
11746 tp->nvram_pagesize = 512;
11747 break;
11748 case FLASH_5752PAGE_SIZE_1K:
11749 tp->nvram_pagesize = 1024;
11750 break;
11751 case FLASH_5752PAGE_SIZE_2K:
11752 tp->nvram_pagesize = 2048;
11753 break;
11754 case FLASH_5752PAGE_SIZE_4K:
11755 tp->nvram_pagesize = 4096;
11756 break;
11757 case FLASH_5752PAGE_SIZE_264:
11758 tp->nvram_pagesize = 264;
11759 break;
11760 case FLASH_5752PAGE_SIZE_528:
11761 tp->nvram_pagesize = 528;
11762 break;
11763 }
11764}
11765
Michael Chan361b4ac2005-04-21 17:11:21 -070011766static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
11767{
11768 u32 nvcfg1;
11769
11770 nvcfg1 = tr32(NVRAM_CFG1);
11771
Michael Chane6af3012005-04-21 17:12:05 -070011772 /* NVRAM protection for TPM */
11773 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000011774 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070011775
Michael Chan361b4ac2005-04-21 17:11:21 -070011776 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011777 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
11778 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
11779 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011780 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011781 break;
11782 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11783 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011784 tg3_flag_set(tp, NVRAM_BUFFERED);
11785 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011786 break;
11787 case FLASH_5752VENDOR_ST_M45PE10:
11788 case FLASH_5752VENDOR_ST_M45PE20:
11789 case FLASH_5752VENDOR_ST_M45PE40:
11790 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011791 tg3_flag_set(tp, NVRAM_BUFFERED);
11792 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011793 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070011794 }
11795
Joe Perches63c3a662011-04-26 08:12:10 +000011796 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000011797 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000011798 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070011799 /* For eeprom, set pagesize to maximum eeprom size */
11800 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11801
11802 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11803 tw32(NVRAM_CFG1, nvcfg1);
11804 }
11805}
11806
Michael Chand3c7b882006-03-23 01:28:25 -080011807static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
11808{
Matt Carlson989a9d22007-05-05 11:51:05 -070011809 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080011810
11811 nvcfg1 = tr32(NVRAM_CFG1);
11812
11813 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070011814 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011815 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070011816 protect = 1;
11817 }
Michael Chand3c7b882006-03-23 01:28:25 -080011818
Matt Carlson989a9d22007-05-05 11:51:05 -070011819 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11820 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011821 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11822 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11823 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11824 case FLASH_5755VENDOR_ATMEL_FLASH_5:
11825 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011826 tg3_flag_set(tp, NVRAM_BUFFERED);
11827 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011828 tp->nvram_pagesize = 264;
11829 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
11830 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
11831 tp->nvram_size = (protect ? 0x3e200 :
11832 TG3_NVRAM_SIZE_512KB);
11833 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
11834 tp->nvram_size = (protect ? 0x1f200 :
11835 TG3_NVRAM_SIZE_256KB);
11836 else
11837 tp->nvram_size = (protect ? 0x1f200 :
11838 TG3_NVRAM_SIZE_128KB);
11839 break;
11840 case FLASH_5752VENDOR_ST_M45PE10:
11841 case FLASH_5752VENDOR_ST_M45PE20:
11842 case FLASH_5752VENDOR_ST_M45PE40:
11843 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011844 tg3_flag_set(tp, NVRAM_BUFFERED);
11845 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011846 tp->nvram_pagesize = 256;
11847 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
11848 tp->nvram_size = (protect ?
11849 TG3_NVRAM_SIZE_64KB :
11850 TG3_NVRAM_SIZE_128KB);
11851 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
11852 tp->nvram_size = (protect ?
11853 TG3_NVRAM_SIZE_64KB :
11854 TG3_NVRAM_SIZE_256KB);
11855 else
11856 tp->nvram_size = (protect ?
11857 TG3_NVRAM_SIZE_128KB :
11858 TG3_NVRAM_SIZE_512KB);
11859 break;
Michael Chand3c7b882006-03-23 01:28:25 -080011860 }
11861}
11862
Michael Chan1b277772006-03-20 22:27:48 -080011863static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
11864{
11865 u32 nvcfg1;
11866
11867 nvcfg1 = tr32(NVRAM_CFG1);
11868
11869 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011870 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
11871 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11872 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
11873 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11874 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011875 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011876 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080011877
Matt Carlson8590a602009-08-28 12:29:16 +000011878 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11879 tw32(NVRAM_CFG1, nvcfg1);
11880 break;
11881 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11882 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11883 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11884 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11885 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011886 tg3_flag_set(tp, NVRAM_BUFFERED);
11887 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011888 tp->nvram_pagesize = 264;
11889 break;
11890 case FLASH_5752VENDOR_ST_M45PE10:
11891 case FLASH_5752VENDOR_ST_M45PE20:
11892 case FLASH_5752VENDOR_ST_M45PE40:
11893 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011894 tg3_flag_set(tp, NVRAM_BUFFERED);
11895 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011896 tp->nvram_pagesize = 256;
11897 break;
Michael Chan1b277772006-03-20 22:27:48 -080011898 }
11899}
11900
Matt Carlson6b91fa02007-10-10 18:01:09 -070011901static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
11902{
11903 u32 nvcfg1, protect = 0;
11904
11905 nvcfg1 = tr32(NVRAM_CFG1);
11906
11907 /* NVRAM protection for TPM */
11908 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011909 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070011910 protect = 1;
11911 }
11912
11913 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11914 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011915 case FLASH_5761VENDOR_ATMEL_ADB021D:
11916 case FLASH_5761VENDOR_ATMEL_ADB041D:
11917 case FLASH_5761VENDOR_ATMEL_ADB081D:
11918 case FLASH_5761VENDOR_ATMEL_ADB161D:
11919 case FLASH_5761VENDOR_ATMEL_MDB021D:
11920 case FLASH_5761VENDOR_ATMEL_MDB041D:
11921 case FLASH_5761VENDOR_ATMEL_MDB081D:
11922 case FLASH_5761VENDOR_ATMEL_MDB161D:
11923 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011924 tg3_flag_set(tp, NVRAM_BUFFERED);
11925 tg3_flag_set(tp, FLASH);
11926 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000011927 tp->nvram_pagesize = 256;
11928 break;
11929 case FLASH_5761VENDOR_ST_A_M45PE20:
11930 case FLASH_5761VENDOR_ST_A_M45PE40:
11931 case FLASH_5761VENDOR_ST_A_M45PE80:
11932 case FLASH_5761VENDOR_ST_A_M45PE16:
11933 case FLASH_5761VENDOR_ST_M_M45PE20:
11934 case FLASH_5761VENDOR_ST_M_M45PE40:
11935 case FLASH_5761VENDOR_ST_M_M45PE80:
11936 case FLASH_5761VENDOR_ST_M_M45PE16:
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 tp->nvram_pagesize = 256;
11941 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011942 }
11943
11944 if (protect) {
11945 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
11946 } else {
11947 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011948 case FLASH_5761VENDOR_ATMEL_ADB161D:
11949 case FLASH_5761VENDOR_ATMEL_MDB161D:
11950 case FLASH_5761VENDOR_ST_A_M45PE16:
11951 case FLASH_5761VENDOR_ST_M_M45PE16:
11952 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
11953 break;
11954 case FLASH_5761VENDOR_ATMEL_ADB081D:
11955 case FLASH_5761VENDOR_ATMEL_MDB081D:
11956 case FLASH_5761VENDOR_ST_A_M45PE80:
11957 case FLASH_5761VENDOR_ST_M_M45PE80:
11958 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
11959 break;
11960 case FLASH_5761VENDOR_ATMEL_ADB041D:
11961 case FLASH_5761VENDOR_ATMEL_MDB041D:
11962 case FLASH_5761VENDOR_ST_A_M45PE40:
11963 case FLASH_5761VENDOR_ST_M_M45PE40:
11964 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11965 break;
11966 case FLASH_5761VENDOR_ATMEL_ADB021D:
11967 case FLASH_5761VENDOR_ATMEL_MDB021D:
11968 case FLASH_5761VENDOR_ST_A_M45PE20:
11969 case FLASH_5761VENDOR_ST_M_M45PE20:
11970 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11971 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011972 }
11973 }
11974}
11975
Michael Chanb5d37722006-09-27 16:06:21 -070011976static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
11977{
11978 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011979 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070011980 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11981}
11982
Matt Carlson321d32a2008-11-21 17:22:19 -080011983static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
11984{
11985 u32 nvcfg1;
11986
11987 nvcfg1 = tr32(NVRAM_CFG1);
11988
11989 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11990 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11991 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11992 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011993 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080011994 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11995
11996 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11997 tw32(NVRAM_CFG1, nvcfg1);
11998 return;
11999 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12000 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12001 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12002 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12003 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12004 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12005 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12006 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012007 tg3_flag_set(tp, NVRAM_BUFFERED);
12008 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012009
12010 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12011 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12012 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12013 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12014 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12015 break;
12016 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12017 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12018 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12019 break;
12020 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12021 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12022 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12023 break;
12024 }
12025 break;
12026 case FLASH_5752VENDOR_ST_M45PE10:
12027 case FLASH_5752VENDOR_ST_M45PE20:
12028 case FLASH_5752VENDOR_ST_M45PE40:
12029 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012030 tg3_flag_set(tp, NVRAM_BUFFERED);
12031 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012032
12033 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12034 case FLASH_5752VENDOR_ST_M45PE10:
12035 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12036 break;
12037 case FLASH_5752VENDOR_ST_M45PE20:
12038 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12039 break;
12040 case FLASH_5752VENDOR_ST_M45PE40:
12041 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12042 break;
12043 }
12044 break;
12045 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012046 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080012047 return;
12048 }
12049
Matt Carlsona1b950d2009-09-01 13:20:17 +000012050 tg3_nvram_get_pagesize(tp, nvcfg1);
12051 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012052 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012053}
12054
12055
12056static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
12057{
12058 u32 nvcfg1;
12059
12060 nvcfg1 = tr32(NVRAM_CFG1);
12061
12062 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12063 case FLASH_5717VENDOR_ATMEL_EEPROM:
12064 case FLASH_5717VENDOR_MICRO_EEPROM:
12065 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012066 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012067 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12068
12069 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12070 tw32(NVRAM_CFG1, nvcfg1);
12071 return;
12072 case FLASH_5717VENDOR_ATMEL_MDB011D:
12073 case FLASH_5717VENDOR_ATMEL_ADB011B:
12074 case FLASH_5717VENDOR_ATMEL_ADB011D:
12075 case FLASH_5717VENDOR_ATMEL_MDB021D:
12076 case FLASH_5717VENDOR_ATMEL_ADB021B:
12077 case FLASH_5717VENDOR_ATMEL_ADB021D:
12078 case FLASH_5717VENDOR_ATMEL_45USPT:
12079 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012080 tg3_flag_set(tp, NVRAM_BUFFERED);
12081 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012082
12083 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12084 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012085 /* Detect size with tg3_nvram_get_size() */
12086 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012087 case FLASH_5717VENDOR_ATMEL_ADB021B:
12088 case FLASH_5717VENDOR_ATMEL_ADB021D:
12089 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12090 break;
12091 default:
12092 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12093 break;
12094 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012095 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012096 case FLASH_5717VENDOR_ST_M_M25PE10:
12097 case FLASH_5717VENDOR_ST_A_M25PE10:
12098 case FLASH_5717VENDOR_ST_M_M45PE10:
12099 case FLASH_5717VENDOR_ST_A_M45PE10:
12100 case FLASH_5717VENDOR_ST_M_M25PE20:
12101 case FLASH_5717VENDOR_ST_A_M25PE20:
12102 case FLASH_5717VENDOR_ST_M_M45PE20:
12103 case FLASH_5717VENDOR_ST_A_M45PE20:
12104 case FLASH_5717VENDOR_ST_25USPT:
12105 case FLASH_5717VENDOR_ST_45USPT:
12106 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012107 tg3_flag_set(tp, NVRAM_BUFFERED);
12108 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012109
12110 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12111 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012112 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012113 /* Detect size with tg3_nvram_get_size() */
12114 break;
12115 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012116 case FLASH_5717VENDOR_ST_A_M45PE20:
12117 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12118 break;
12119 default:
12120 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12121 break;
12122 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012123 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012124 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012125 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012126 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080012127 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000012128
12129 tg3_nvram_get_pagesize(tp, nvcfg1);
12130 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012131 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080012132}
12133
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012134static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
12135{
12136 u32 nvcfg1, nvmpinstrp;
12137
12138 nvcfg1 = tr32(NVRAM_CFG1);
12139 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
12140
12141 switch (nvmpinstrp) {
12142 case FLASH_5720_EEPROM_HD:
12143 case FLASH_5720_EEPROM_LD:
12144 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012145 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012146
12147 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12148 tw32(NVRAM_CFG1, nvcfg1);
12149 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
12150 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12151 else
12152 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
12153 return;
12154 case FLASH_5720VENDOR_M_ATMEL_DB011D:
12155 case FLASH_5720VENDOR_A_ATMEL_DB011B:
12156 case FLASH_5720VENDOR_A_ATMEL_DB011D:
12157 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12158 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12159 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12160 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12161 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12162 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12163 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12164 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12165 case FLASH_5720VENDOR_ATMEL_45USPT:
12166 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012167 tg3_flag_set(tp, NVRAM_BUFFERED);
12168 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012169
12170 switch (nvmpinstrp) {
12171 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12172 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12173 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12174 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12175 break;
12176 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12177 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12178 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12179 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12180 break;
12181 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12182 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12183 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12184 break;
12185 default:
12186 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12187 break;
12188 }
12189 break;
12190 case FLASH_5720VENDOR_M_ST_M25PE10:
12191 case FLASH_5720VENDOR_M_ST_M45PE10:
12192 case FLASH_5720VENDOR_A_ST_M25PE10:
12193 case FLASH_5720VENDOR_A_ST_M45PE10:
12194 case FLASH_5720VENDOR_M_ST_M25PE20:
12195 case FLASH_5720VENDOR_M_ST_M45PE20:
12196 case FLASH_5720VENDOR_A_ST_M25PE20:
12197 case FLASH_5720VENDOR_A_ST_M45PE20:
12198 case FLASH_5720VENDOR_M_ST_M25PE40:
12199 case FLASH_5720VENDOR_M_ST_M45PE40:
12200 case FLASH_5720VENDOR_A_ST_M25PE40:
12201 case FLASH_5720VENDOR_A_ST_M45PE40:
12202 case FLASH_5720VENDOR_M_ST_M25PE80:
12203 case FLASH_5720VENDOR_M_ST_M45PE80:
12204 case FLASH_5720VENDOR_A_ST_M25PE80:
12205 case FLASH_5720VENDOR_A_ST_M45PE80:
12206 case FLASH_5720VENDOR_ST_25USPT:
12207 case FLASH_5720VENDOR_ST_45USPT:
12208 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012209 tg3_flag_set(tp, NVRAM_BUFFERED);
12210 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012211
12212 switch (nvmpinstrp) {
12213 case FLASH_5720VENDOR_M_ST_M25PE20:
12214 case FLASH_5720VENDOR_M_ST_M45PE20:
12215 case FLASH_5720VENDOR_A_ST_M25PE20:
12216 case FLASH_5720VENDOR_A_ST_M45PE20:
12217 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12218 break;
12219 case FLASH_5720VENDOR_M_ST_M25PE40:
12220 case FLASH_5720VENDOR_M_ST_M45PE40:
12221 case FLASH_5720VENDOR_A_ST_M25PE40:
12222 case FLASH_5720VENDOR_A_ST_M45PE40:
12223 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12224 break;
12225 case FLASH_5720VENDOR_M_ST_M25PE80:
12226 case FLASH_5720VENDOR_M_ST_M45PE80:
12227 case FLASH_5720VENDOR_A_ST_M25PE80:
12228 case FLASH_5720VENDOR_A_ST_M45PE80:
12229 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12230 break;
12231 default:
12232 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12233 break;
12234 }
12235 break;
12236 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012237 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012238 return;
12239 }
12240
12241 tg3_nvram_get_pagesize(tp, nvcfg1);
12242 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012243 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012244}
12245
Linus Torvalds1da177e2005-04-16 15:20:36 -070012246/* Chips other than 5700/5701 use the NVRAM for fetching info. */
12247static void __devinit tg3_nvram_init(struct tg3 *tp)
12248{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012249 tw32_f(GRC_EEPROM_ADDR,
12250 (EEPROM_ADDR_FSM_RESET |
12251 (EEPROM_DEFAULT_CLOCK_PERIOD <<
12252 EEPROM_ADDR_CLKPERD_SHIFT)));
12253
Michael Chan9d57f012006-12-07 00:23:25 -080012254 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012255
12256 /* Enable seeprom accesses. */
12257 tw32_f(GRC_LOCAL_CTRL,
12258 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
12259 udelay(100);
12260
12261 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12262 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000012263 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012264
Michael Chanec41c7d2006-01-17 02:40:55 -080012265 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000012266 netdev_warn(tp->dev,
12267 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000012268 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080012269 return;
12270 }
Michael Chane6af3012005-04-21 17:12:05 -070012271 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012272
Matt Carlson989a9d22007-05-05 11:51:05 -070012273 tp->nvram_size = 0;
12274
Michael Chan361b4ac2005-04-21 17:11:21 -070012275 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
12276 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080012277 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
12278 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070012279 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012280 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
12281 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080012282 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012283 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
12284 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070012285 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12286 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000012287 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
12288 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080012289 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012290 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
12291 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000012292 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012293 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
12294 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070012295 else
12296 tg3_get_nvram_info(tp);
12297
Matt Carlson989a9d22007-05-05 11:51:05 -070012298 if (tp->nvram_size == 0)
12299 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012300
Michael Chane6af3012005-04-21 17:12:05 -070012301 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080012302 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012303
12304 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012305 tg3_flag_clear(tp, NVRAM);
12306 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012307
12308 tg3_get_eeprom_size(tp);
12309 }
12310}
12311
Linus Torvalds1da177e2005-04-16 15:20:36 -070012312static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
12313 u32 offset, u32 len, u8 *buf)
12314{
12315 int i, j, rc = 0;
12316 u32 val;
12317
12318 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012319 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012320 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012321
12322 addr = offset + i;
12323
12324 memcpy(&data, buf + i, 4);
12325
Matt Carlson62cedd12009-04-20 14:52:29 -070012326 /*
12327 * The SEEPROM interface expects the data to always be opposite
12328 * the native endian format. We accomplish this by reversing
12329 * all the operations that would have been performed on the
12330 * data from a call to tg3_nvram_read_be32().
12331 */
12332 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012333
12334 val = tr32(GRC_EEPROM_ADDR);
12335 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
12336
12337 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
12338 EEPROM_ADDR_READ);
12339 tw32(GRC_EEPROM_ADDR, val |
12340 (0 << EEPROM_ADDR_DEVID_SHIFT) |
12341 (addr & EEPROM_ADDR_ADDR_MASK) |
12342 EEPROM_ADDR_START |
12343 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012344
Michael Chan9d57f012006-12-07 00:23:25 -080012345 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012346 val = tr32(GRC_EEPROM_ADDR);
12347
12348 if (val & EEPROM_ADDR_COMPLETE)
12349 break;
Michael Chan9d57f012006-12-07 00:23:25 -080012350 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012351 }
12352 if (!(val & EEPROM_ADDR_COMPLETE)) {
12353 rc = -EBUSY;
12354 break;
12355 }
12356 }
12357
12358 return rc;
12359}
12360
12361/* offset and length are dword aligned */
12362static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
12363 u8 *buf)
12364{
12365 int ret = 0;
12366 u32 pagesize = tp->nvram_pagesize;
12367 u32 pagemask = pagesize - 1;
12368 u32 nvram_cmd;
12369 u8 *tmp;
12370
12371 tmp = kmalloc(pagesize, GFP_KERNEL);
12372 if (tmp == NULL)
12373 return -ENOMEM;
12374
12375 while (len) {
12376 int j;
Michael Chane6af3012005-04-21 17:12:05 -070012377 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012378
12379 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012380
Linus Torvalds1da177e2005-04-16 15:20:36 -070012381 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012382 ret = tg3_nvram_read_be32(tp, phy_addr + j,
12383 (__be32 *) (tmp + j));
12384 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012385 break;
12386 }
12387 if (ret)
12388 break;
12389
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012390 page_off = offset & pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012391 size = pagesize;
12392 if (len < size)
12393 size = len;
12394
12395 len -= size;
12396
12397 memcpy(tmp + page_off, buf, size);
12398
12399 offset = offset + (pagesize - page_off);
12400
Michael Chane6af3012005-04-21 17:12:05 -070012401 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012402
12403 /*
12404 * Before we can erase the flash page, we need
12405 * to issue a special "write enable" command.
12406 */
12407 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12408
12409 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12410 break;
12411
12412 /* Erase the target page */
12413 tw32(NVRAM_ADDR, phy_addr);
12414
12415 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
12416 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
12417
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012418 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012419 break;
12420
12421 /* Issue another write enable to start the write. */
12422 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12423
12424 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12425 break;
12426
12427 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012428 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012429
Al Virob9fc7dc2007-12-17 22:59:57 -080012430 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000012431
Al Virob9fc7dc2007-12-17 22:59:57 -080012432 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012433
12434 tw32(NVRAM_ADDR, phy_addr + j);
12435
12436 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
12437 NVRAM_CMD_WR;
12438
12439 if (j == 0)
12440 nvram_cmd |= NVRAM_CMD_FIRST;
12441 else if (j == (pagesize - 4))
12442 nvram_cmd |= NVRAM_CMD_LAST;
12443
12444 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12445 break;
12446 }
12447 if (ret)
12448 break;
12449 }
12450
12451 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12452 tg3_nvram_exec_cmd(tp, nvram_cmd);
12453
12454 kfree(tmp);
12455
12456 return ret;
12457}
12458
12459/* offset and length are dword aligned */
12460static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
12461 u8 *buf)
12462{
12463 int i, ret = 0;
12464
12465 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012466 u32 page_off, phy_addr, nvram_cmd;
12467 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012468
12469 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080012470 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012471
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012472 page_off = offset % tp->nvram_pagesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012473
Michael Chan18201802006-03-20 22:29:15 -080012474 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012475
12476 tw32(NVRAM_ADDR, phy_addr);
12477
12478 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
12479
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012480 if (page_off == 0 || i == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012481 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070012482 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012483 nvram_cmd |= NVRAM_CMD_LAST;
12484
12485 if (i == (len - 4))
12486 nvram_cmd |= NVRAM_CMD_LAST;
12487
Matt Carlson321d32a2008-11-21 17:22:19 -080012488 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012489 !tg3_flag(tp, 5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070012490 (tp->nvram_jedecnum == JEDEC_ST) &&
12491 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012492
12493 if ((ret = tg3_nvram_exec_cmd(tp,
12494 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12495 NVRAM_CMD_DONE)))
12496
12497 break;
12498 }
Joe Perches63c3a662011-04-26 08:12:10 +000012499 if (!tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012500 /* We always do complete word writes to eeprom. */
12501 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12502 }
12503
12504 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12505 break;
12506 }
12507 return ret;
12508}
12509
12510/* offset and length are dword aligned */
12511static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12512{
12513 int ret;
12514
Joe Perches63c3a662011-04-26 08:12:10 +000012515 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012516 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12517 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012518 udelay(40);
12519 }
12520
Joe Perches63c3a662011-04-26 08:12:10 +000012521 if (!tg3_flag(tp, NVRAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012522 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
Matt Carlson859a5882010-04-05 10:19:28 +000012523 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012524 u32 grc_mode;
12525
Michael Chanec41c7d2006-01-17 02:40:55 -080012526 ret = tg3_nvram_lock(tp);
12527 if (ret)
12528 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012529
Michael Chane6af3012005-04-21 17:12:05 -070012530 tg3_enable_nvram_access(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000012531 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012532 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012533
12534 grc_mode = tr32(GRC_MODE);
12535 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12536
Joe Perches63c3a662011-04-26 08:12:10 +000012537 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012538 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12539 buf);
Matt Carlson859a5882010-04-05 10:19:28 +000012540 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012541 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12542 buf);
12543 }
12544
12545 grc_mode = tr32(GRC_MODE);
12546 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12547
Michael Chane6af3012005-04-21 17:12:05 -070012548 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012549 tg3_nvram_unlock(tp);
12550 }
12551
Joe Perches63c3a662011-04-26 08:12:10 +000012552 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012553 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012554 udelay(40);
12555 }
12556
12557 return ret;
12558}
12559
12560struct subsys_tbl_ent {
12561 u16 subsys_vendor, subsys_devid;
12562 u32 phy_id;
12563};
12564
Matt Carlson24daf2b2010-02-17 15:17:02 +000012565static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012566 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012567 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012568 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012569 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012570 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012571 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012572 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012573 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12574 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
12575 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012576 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012577 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012578 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012579 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12580 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
12581 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012582 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012583 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012584 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012585 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012586 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012587 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012588 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012589
12590 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012591 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012592 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012593 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012594 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012595 { TG3PCI_SUBVENDOR_ID_3COM,
12596 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
12597 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012598 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012599 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012600 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012601
12602 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012603 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012604 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012605 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012606 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012607 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012608 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012609 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012610 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012611
12612 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012613 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012614 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012615 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012616 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012617 { TG3PCI_SUBVENDOR_ID_COMPAQ,
12618 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
12619 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012620 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012621 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012622 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012623
12624 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012625 { TG3PCI_SUBVENDOR_ID_IBM,
12626 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012627};
12628
Matt Carlson24daf2b2010-02-17 15:17:02 +000012629static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012630{
12631 int i;
12632
12633 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
12634 if ((subsys_id_to_phy_id[i].subsys_vendor ==
12635 tp->pdev->subsystem_vendor) &&
12636 (subsys_id_to_phy_id[i].subsys_devid ==
12637 tp->pdev->subsystem_device))
12638 return &subsys_id_to_phy_id[i];
12639 }
12640 return NULL;
12641}
12642
Michael Chan7d0c41e2005-04-21 17:06:20 -070012643static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012644{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012645 u32 val;
Michael Chancaf636c72006-03-22 01:05:31 -080012646 u16 pmcsr;
12647
12648 /* On some early chips the SRAM cannot be accessed in D3hot state,
12649 * so need make sure we're in D0.
12650 */
12651 pci_read_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, &pmcsr);
12652 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
12653 pci_write_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, pmcsr);
12654 msleep(1);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012655
12656 /* Make sure register accesses (indirect or otherwise)
12657 * will function correctly.
12658 */
12659 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12660 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012661
David S. Millerf49639e2006-06-09 11:58:36 -070012662 /* The memory arbiter has to be enabled in order for SRAM accesses
12663 * to succeed. Normally on powerup the tg3 chip firmware will make
12664 * sure it is enabled, but other entities such as system netboot
12665 * code might disable it.
12666 */
12667 val = tr32(MEMARB_MODE);
12668 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
12669
Matt Carlson79eb6902010-02-17 15:17:03 +000012670 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012671 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12672
Gary Zambranoa85feb82007-05-05 11:52:19 -070012673 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000012674 tg3_flag_set(tp, EEPROM_WRITE_PROT);
12675 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080012676
Michael Chanb5d37722006-09-27 16:06:21 -070012677 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080012678 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012679 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12680 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012681 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012682 val = tr32(VCPU_CFGSHDW);
12683 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000012684 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070012685 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012686 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012687 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012688 device_set_wakeup_enable(&tp->pdev->dev, true);
12689 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012690 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070012691 }
12692
Linus Torvalds1da177e2005-04-16 15:20:36 -070012693 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
12694 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
12695 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070012696 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012697 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012698
12699 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
12700 tp->nic_sram_data_cfg = nic_cfg;
12701
12702 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
12703 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Matt Carlson6ff6f812011-05-19 12:12:54 +000012704 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12705 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
12706 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012707 (ver > 0) && (ver < 0x100))
12708 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
12709
Matt Carlsona9daf362008-05-25 23:49:44 -070012710 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
12711 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
12712
Linus Torvalds1da177e2005-04-16 15:20:36 -070012713 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
12714 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
12715 eeprom_phy_serdes = 1;
12716
12717 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
12718 if (nic_phy_id != 0) {
12719 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
12720 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
12721
12722 eeprom_phy_id = (id1 >> 16) << 10;
12723 eeprom_phy_id |= (id2 & 0xfc00) << 16;
12724 eeprom_phy_id |= (id2 & 0x03ff) << 0;
12725 } else
12726 eeprom_phy_id = 0;
12727
Michael Chan7d0c41e2005-04-21 17:06:20 -070012728 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070012729 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000012730 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012731 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000012732 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012733 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070012734 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070012735
Joe Perches63c3a662011-04-26 08:12:10 +000012736 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012737 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
12738 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070012739 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070012740 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
12741
12742 switch (led_cfg) {
12743 default:
12744 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
12745 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12746 break;
12747
12748 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
12749 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12750 break;
12751
12752 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
12753 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070012754
12755 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
12756 * read on some older 5700/5701 bootcode.
12757 */
12758 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12759 ASIC_REV_5700 ||
12760 GET_ASIC_REV(tp->pci_chip_rev_id) ==
12761 ASIC_REV_5701)
12762 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12763
Linus Torvalds1da177e2005-04-16 15:20:36 -070012764 break;
12765
12766 case SHASTA_EXT_LED_SHARED:
12767 tp->led_ctrl = LED_CTRL_MODE_SHARED;
12768 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
12769 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
12770 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12771 LED_CTRL_MODE_PHY_2);
12772 break;
12773
12774 case SHASTA_EXT_LED_MAC:
12775 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
12776 break;
12777
12778 case SHASTA_EXT_LED_COMBO:
12779 tp->led_ctrl = LED_CTRL_MODE_COMBO;
12780 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
12781 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12782 LED_CTRL_MODE_PHY_2);
12783 break;
12784
Stephen Hemminger855e1112008-04-16 16:37:28 -070012785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012786
12787 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12788 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
12789 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
12790 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12791
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012792 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
12793 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080012794
Michael Chan9d26e212006-12-07 00:21:14 -080012795 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000012796 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080012797 if ((tp->pdev->subsystem_vendor ==
12798 PCI_VENDOR_ID_ARIMA) &&
12799 (tp->pdev->subsystem_device == 0x205a ||
12800 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000012801 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080012802 } else {
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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012806
12807 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000012808 tg3_flag_set(tp, ENABLE_ASF);
12809 if (tg3_flag(tp, 5750_PLUS))
12810 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012811 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012812
12813 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012814 tg3_flag(tp, 5750_PLUS))
12815 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012816
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012817 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070012818 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000012819 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012820
Joe Perches63c3a662011-04-26 08:12:10 +000012821 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012822 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012823 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012824 device_set_wakeup_enable(&tp->pdev->dev, true);
12825 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012826
Linus Torvalds1da177e2005-04-16 15:20:36 -070012827 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012828 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012829
12830 /* serdes signal pre-emphasis in register 0x590 set by */
12831 /* bootcode if bit 18 is set */
12832 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012833 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070012834
Joe Perches63c3a662011-04-26 08:12:10 +000012835 if ((tg3_flag(tp, 57765_PLUS) ||
12836 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
12837 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080012838 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012839 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080012840
Joe Perches63c3a662011-04-26 08:12:10 +000012841 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000012842 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012843 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070012844 u32 cfg3;
12845
12846 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
12847 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000012848 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070012849 }
Matt Carlsona9daf362008-05-25 23:49:44 -070012850
Matt Carlson14417062010-02-17 15:16:59 +000012851 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000012852 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070012853 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000012854 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070012855 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000012856 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012857 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012858done:
Joe Perches63c3a662011-04-26 08:12:10 +000012859 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000012860 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000012861 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000012862 else
12863 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012864}
12865
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012866static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
12867{
12868 int i;
12869 u32 val;
12870
12871 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
12872 tw32(OTP_CTRL, cmd);
12873
12874 /* Wait for up to 1 ms for command to execute. */
12875 for (i = 0; i < 100; i++) {
12876 val = tr32(OTP_STATUS);
12877 if (val & OTP_STATUS_CMD_DONE)
12878 break;
12879 udelay(10);
12880 }
12881
12882 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
12883}
12884
12885/* Read the gphy configuration from the OTP region of the chip. The gphy
12886 * configuration is a 32-bit value that straddles the alignment boundary.
12887 * We do two 32-bit reads and then shift and merge the results.
12888 */
12889static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
12890{
12891 u32 bhalf_otp, thalf_otp;
12892
12893 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
12894
12895 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
12896 return 0;
12897
12898 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
12899
12900 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12901 return 0;
12902
12903 thalf_otp = tr32(OTP_READ_DATA);
12904
12905 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
12906
12907 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12908 return 0;
12909
12910 bhalf_otp = tr32(OTP_READ_DATA);
12911
12912 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
12913}
12914
Matt Carlsone256f8a2011-03-09 16:58:24 +000012915static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
12916{
12917 u32 adv = ADVERTISED_Autoneg |
12918 ADVERTISED_Pause;
12919
12920 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
12921 adv |= ADVERTISED_1000baseT_Half |
12922 ADVERTISED_1000baseT_Full;
12923
12924 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
12925 adv |= ADVERTISED_100baseT_Half |
12926 ADVERTISED_100baseT_Full |
12927 ADVERTISED_10baseT_Half |
12928 ADVERTISED_10baseT_Full |
12929 ADVERTISED_TP;
12930 else
12931 adv |= ADVERTISED_FIBRE;
12932
12933 tp->link_config.advertising = adv;
12934 tp->link_config.speed = SPEED_INVALID;
12935 tp->link_config.duplex = DUPLEX_INVALID;
12936 tp->link_config.autoneg = AUTONEG_ENABLE;
12937 tp->link_config.active_speed = SPEED_INVALID;
12938 tp->link_config.active_duplex = DUPLEX_INVALID;
12939 tp->link_config.orig_speed = SPEED_INVALID;
12940 tp->link_config.orig_duplex = DUPLEX_INVALID;
12941 tp->link_config.orig_autoneg = AUTONEG_INVALID;
12942}
12943
Michael Chan7d0c41e2005-04-21 17:06:20 -070012944static int __devinit tg3_phy_probe(struct tg3 *tp)
12945{
12946 u32 hw_phy_id_1, hw_phy_id_2;
12947 u32 hw_phy_id, hw_phy_id_masked;
12948 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012949
Matt Carlsone256f8a2011-03-09 16:58:24 +000012950 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000012951 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000012952 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
12953
Joe Perches63c3a662011-04-26 08:12:10 +000012954 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012955 return tg3_phy_init(tp);
12956
Linus Torvalds1da177e2005-04-16 15:20:36 -070012957 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010012958 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012959 */
12960 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000012961 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000012962 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012963 } else {
12964 /* Now read the physical PHY_ID from the chip and verify
12965 * that it is sane. If it doesn't look good, we fall back
12966 * to either the hard-coded table based PHY_ID and failing
12967 * that the value found in the eeprom area.
12968 */
12969 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
12970 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
12971
12972 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
12973 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
12974 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
12975
Matt Carlson79eb6902010-02-17 15:17:03 +000012976 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012977 }
12978
Matt Carlson79eb6902010-02-17 15:17:03 +000012979 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012980 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000012981 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012982 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070012983 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012984 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012985 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000012986 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070012987 /* Do nothing, phy ID already set up in
12988 * tg3_get_eeprom_hw_cfg().
12989 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012990 } else {
12991 struct subsys_tbl_ent *p;
12992
12993 /* No eeprom signature? Try the hardcoded
12994 * subsys device table.
12995 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012996 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012997 if (!p)
12998 return -ENODEV;
12999
13000 tp->phy_id = p->phy_id;
13001 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000013002 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013003 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013004 }
13005 }
13006
Matt Carlsona6b68da2010-12-06 08:28:52 +000013007 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
13008 ((tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
13009 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
13010 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
13011 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000013012 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
13013
Matt Carlsone256f8a2011-03-09 16:58:24 +000013014 tg3_phy_init_link_config(tp);
13015
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013016 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013017 !tg3_flag(tp, ENABLE_APE) &&
13018 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013019 u32 bmsr, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013020
13021 tg3_readphy(tp, MII_BMSR, &bmsr);
13022 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
13023 (bmsr & BMSR_LSTATUS))
13024 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013025
Linus Torvalds1da177e2005-04-16 15:20:36 -070013026 err = tg3_phy_reset(tp);
13027 if (err)
13028 return err;
13029
Matt Carlson42b64a42011-05-19 12:12:49 +000013030 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013031
Michael Chan3600d912006-12-07 00:21:48 -080013032 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
13033 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
13034 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
13035 if (!tg3_copper_is_advertising_all(tp, mask)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013036 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
13037 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013038
13039 tg3_writephy(tp, MII_BMCR,
13040 BMCR_ANENABLE | BMCR_ANRESTART);
13041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013042 }
13043
13044skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013045 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013046 err = tg3_init_5401phy_dsp(tp);
13047 if (err)
13048 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013049
Linus Torvalds1da177e2005-04-16 15:20:36 -070013050 err = tg3_init_5401phy_dsp(tp);
13051 }
13052
Linus Torvalds1da177e2005-04-16 15:20:36 -070013053 return err;
13054}
13055
Matt Carlson184b8902010-04-05 10:19:25 +000013056static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013057{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013058 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013059 unsigned int block_end, rosize, len;
Matt Carlson184b8902010-04-05 10:19:25 +000013060 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013061
Matt Carlsonc3e94502011-04-13 11:05:08 +000013062 vpd_data = (u8 *)tg3_vpd_readblock(tp);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013063 if (!vpd_data)
13064 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013065
Matt Carlson4181b2c2010-02-26 14:04:45 +000013066 i = pci_vpd_find_tag(vpd_data, 0, TG3_NVM_VPD_LEN,
13067 PCI_VPD_LRDT_RO_DATA);
13068 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013069 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013070
13071 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13072 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13073 i += PCI_VPD_LRDT_TAG_SIZE;
13074
13075 if (block_end > TG3_NVM_VPD_LEN)
13076 goto out_not_found;
13077
Matt Carlson184b8902010-04-05 10:19:25 +000013078 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13079 PCI_VPD_RO_KEYWORD_MFR_ID);
13080 if (j > 0) {
13081 len = pci_vpd_info_field_size(&vpd_data[j]);
13082
13083 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13084 if (j + len > block_end || len != 4 ||
13085 memcmp(&vpd_data[j], "1028", 4))
13086 goto partno;
13087
13088 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13089 PCI_VPD_RO_KEYWORD_VENDOR0);
13090 if (j < 0)
13091 goto partno;
13092
13093 len = pci_vpd_info_field_size(&vpd_data[j]);
13094
13095 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13096 if (j + len > block_end)
13097 goto partno;
13098
13099 memcpy(tp->fw_ver, &vpd_data[j], len);
13100 strncat(tp->fw_ver, " bc ", TG3_NVM_VPD_LEN - len - 1);
13101 }
13102
13103partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013104 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13105 PCI_VPD_RO_KEYWORD_PARTNO);
13106 if (i < 0)
13107 goto out_not_found;
13108
13109 len = pci_vpd_info_field_size(&vpd_data[i]);
13110
13111 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13112 if (len > TG3_BPN_SIZE ||
13113 (len + i) > TG3_NVM_VPD_LEN)
13114 goto out_not_found;
13115
13116 memcpy(tp->board_part_number, &vpd_data[i], len);
13117
Linus Torvalds1da177e2005-04-16 15:20:36 -070013118out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013119 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013120 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013121 return;
13122
13123out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013124 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13125 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13126 strcpy(tp->board_part_number, "BCM5717");
13127 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13128 strcpy(tp->board_part_number, "BCM5718");
13129 else
13130 goto nomatch;
13131 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13132 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13133 strcpy(tp->board_part_number, "BCM57780");
13134 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13135 strcpy(tp->board_part_number, "BCM57760");
13136 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13137 strcpy(tp->board_part_number, "BCM57790");
13138 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13139 strcpy(tp->board_part_number, "BCM57788");
13140 else
13141 goto nomatch;
13142 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13143 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13144 strcpy(tp->board_part_number, "BCM57761");
13145 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
13146 strcpy(tp->board_part_number, "BCM57765");
13147 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
13148 strcpy(tp->board_part_number, "BCM57781");
13149 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
13150 strcpy(tp->board_part_number, "BCM57785");
13151 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
13152 strcpy(tp->board_part_number, "BCM57791");
13153 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13154 strcpy(tp->board_part_number, "BCM57795");
13155 else
13156 goto nomatch;
13157 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070013158 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000013159 } else {
13160nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070013161 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000013162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013163}
13164
Matt Carlson9c8a6202007-10-21 16:16:08 -070013165static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
13166{
13167 u32 val;
13168
Matt Carlsone4f34112009-02-25 14:25:00 +000013169 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013170 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013171 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013172 val != 0)
13173 return 0;
13174
13175 return 1;
13176}
13177
Matt Carlsonacd9c112009-02-25 14:26:33 +000013178static void __devinit tg3_read_bc_ver(struct tg3 *tp)
13179{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013180 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000013181 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013182 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013183
13184 if (tg3_nvram_read(tp, 0xc, &offset) ||
13185 tg3_nvram_read(tp, 0x4, &start))
13186 return;
13187
13188 offset = tg3_nvram_logical_addr(tp, offset);
13189
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013190 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013191 return;
13192
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013193 if ((val & 0xfc000000) == 0x0c000000) {
13194 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013195 return;
13196
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013197 if (val == 0)
13198 newver = true;
13199 }
13200
Matt Carlson75f99362010-04-05 10:19:24 +000013201 dst_off = strlen(tp->fw_ver);
13202
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013203 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000013204 if (TG3_VER_SIZE - dst_off < 16 ||
13205 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013206 return;
13207
13208 offset = offset + ver_offset - start;
13209 for (i = 0; i < 16; i += 4) {
13210 __be32 v;
13211 if (tg3_nvram_read_be32(tp, offset + i, &v))
13212 return;
13213
Matt Carlson75f99362010-04-05 10:19:24 +000013214 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013215 }
13216 } else {
13217 u32 major, minor;
13218
13219 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
13220 return;
13221
13222 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
13223 TG3_NVM_BCVER_MAJSFT;
13224 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000013225 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
13226 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013227 }
13228}
13229
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013230static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
13231{
13232 u32 val, major, minor;
13233
13234 /* Use native endian representation */
13235 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
13236 return;
13237
13238 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
13239 TG3_NVM_HWSB_CFG1_MAJSFT;
13240 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
13241 TG3_NVM_HWSB_CFG1_MINSFT;
13242
13243 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
13244}
13245
Matt Carlsondfe00d72008-11-21 17:19:41 -080013246static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
13247{
13248 u32 offset, major, minor, build;
13249
Matt Carlson75f99362010-04-05 10:19:24 +000013250 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013251
13252 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
13253 return;
13254
13255 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
13256 case TG3_EEPROM_SB_REVISION_0:
13257 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
13258 break;
13259 case TG3_EEPROM_SB_REVISION_2:
13260 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
13261 break;
13262 case TG3_EEPROM_SB_REVISION_3:
13263 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
13264 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000013265 case TG3_EEPROM_SB_REVISION_4:
13266 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
13267 break;
13268 case TG3_EEPROM_SB_REVISION_5:
13269 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
13270 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000013271 case TG3_EEPROM_SB_REVISION_6:
13272 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
13273 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013274 default:
13275 return;
13276 }
13277
Matt Carlsone4f34112009-02-25 14:25:00 +000013278 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080013279 return;
13280
13281 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
13282 TG3_EEPROM_SB_EDH_BLD_SHFT;
13283 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
13284 TG3_EEPROM_SB_EDH_MAJ_SHFT;
13285 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
13286
13287 if (minor > 99 || build > 26)
13288 return;
13289
Matt Carlson75f99362010-04-05 10:19:24 +000013290 offset = strlen(tp->fw_ver);
13291 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
13292 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013293
13294 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000013295 offset = strlen(tp->fw_ver);
13296 if (offset < TG3_VER_SIZE - 1)
13297 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013298 }
13299}
13300
Matt Carlsonacd9c112009-02-25 14:26:33 +000013301static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080013302{
13303 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013304 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070013305
13306 for (offset = TG3_NVM_DIR_START;
13307 offset < TG3_NVM_DIR_END;
13308 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013309 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013310 return;
13311
13312 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
13313 break;
13314 }
13315
13316 if (offset == TG3_NVM_DIR_END)
13317 return;
13318
Joe Perches63c3a662011-04-26 08:12:10 +000013319 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013320 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000013321 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013322 return;
13323
Matt Carlsone4f34112009-02-25 14:25:00 +000013324 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013325 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013326 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013327 return;
13328
13329 offset += val - start;
13330
Matt Carlsonacd9c112009-02-25 14:26:33 +000013331 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013332
Matt Carlsonacd9c112009-02-25 14:26:33 +000013333 tp->fw_ver[vlen++] = ',';
13334 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070013335
13336 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000013337 __be32 v;
13338 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013339 return;
13340
Al Virob9fc7dc2007-12-17 22:59:57 -080013341 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013342
Matt Carlsonacd9c112009-02-25 14:26:33 +000013343 if (vlen > TG3_VER_SIZE - sizeof(v)) {
13344 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013345 break;
13346 }
13347
Matt Carlsonacd9c112009-02-25 14:26:33 +000013348 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
13349 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013350 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000013351}
13352
Matt Carlson7fd76442009-02-25 14:27:20 +000013353static void __devinit tg3_read_dash_ver(struct tg3 *tp)
13354{
13355 int vlen;
13356 u32 apedata;
Matt Carlsonecc79642010-08-02 11:26:01 +000013357 char *fwtype;
Matt Carlson7fd76442009-02-25 14:27:20 +000013358
Joe Perches63c3a662011-04-26 08:12:10 +000013359 if (!tg3_flag(tp, ENABLE_APE) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000013360 return;
13361
13362 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
13363 if (apedata != APE_SEG_SIG_MAGIC)
13364 return;
13365
13366 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
13367 if (!(apedata & APE_FW_STATUS_READY))
13368 return;
13369
13370 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
13371
Matt Carlsondc6d0742010-09-15 08:59:55 +000013372 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI) {
Joe Perches63c3a662011-04-26 08:12:10 +000013373 tg3_flag_set(tp, APE_HAS_NCSI);
Matt Carlsonecc79642010-08-02 11:26:01 +000013374 fwtype = "NCSI";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013375 } else {
Matt Carlsonecc79642010-08-02 11:26:01 +000013376 fwtype = "DASH";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013377 }
Matt Carlsonecc79642010-08-02 11:26:01 +000013378
Matt Carlson7fd76442009-02-25 14:27:20 +000013379 vlen = strlen(tp->fw_ver);
13380
Matt Carlsonecc79642010-08-02 11:26:01 +000013381 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
13382 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000013383 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
13384 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
13385 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
13386 (apedata & APE_FW_VERSION_BLDMSK));
13387}
13388
Matt Carlsonacd9c112009-02-25 14:26:33 +000013389static void __devinit tg3_read_fw_ver(struct tg3 *tp)
13390{
13391 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000013392 bool vpd_vers = false;
13393
13394 if (tp->fw_ver[0] != 0)
13395 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013396
Joe Perches63c3a662011-04-26 08:12:10 +000013397 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000013398 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000013399 return;
13400 }
13401
Matt Carlsonacd9c112009-02-25 14:26:33 +000013402 if (tg3_nvram_read(tp, 0, &val))
13403 return;
13404
13405 if (val == TG3_EEPROM_MAGIC)
13406 tg3_read_bc_ver(tp);
13407 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
13408 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013409 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
13410 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013411 else
13412 return;
13413
Joe Perches63c3a662011-04-26 08:12:10 +000013414 if (!tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || vpd_vers)
Matt Carlson75f99362010-04-05 10:19:24 +000013415 goto done;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013416
13417 tg3_read_mgmtfw_ver(tp);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013418
Matt Carlson75f99362010-04-05 10:19:24 +000013419done:
Matt Carlson9c8a6202007-10-21 16:16:08 -070013420 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080013421}
13422
Michael Chan7544b092007-05-05 13:08:32 -070013423static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
13424
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013425static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
13426{
Joe Perches63c3a662011-04-26 08:12:10 +000013427 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013428 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000013429 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013430 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013431 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000013432 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013433}
13434
Matt Carlson41434702011-03-09 16:58:22 +000013435static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080013436 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
13437 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
13438 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
13439 { },
13440};
13441
Linus Torvalds1da177e2005-04-16 15:20:36 -070013442static int __devinit tg3_get_invariants(struct tg3 *tp)
13443{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013444 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013445 u32 pci_state_reg, grc_misc_cfg;
13446 u32 val;
13447 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013448 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013449
Linus Torvalds1da177e2005-04-16 15:20:36 -070013450 /* Force memory write invalidate off. If we leave it on,
13451 * then on 5700_BX chips we have to enable a workaround.
13452 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
13453 * to match the cacheline size. The Broadcom driver have this
13454 * workaround but turns MWI off all the times so never uses
13455 * it. This seems to suggest that the workaround is insufficient.
13456 */
13457 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13458 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
13459 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13460
13461 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
13462 * has the register indirect write enable bit set before
13463 * we try to access any of the MMIO registers. It is also
13464 * critical that the PCI-X hw workaround situation is decided
13465 * before that as well.
13466 */
13467 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13468 &misc_ctrl_reg);
13469
13470 tp->pci_chip_rev_id = (misc_ctrl_reg >>
13471 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070013472 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
13473 u32 prod_id_asic_rev;
13474
Matt Carlson5001e2f2009-11-13 13:03:51 +000013475 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
13476 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013477 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
13478 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013479 pci_read_config_dword(tp->pdev,
13480 TG3PCI_GEN2_PRODID_ASICREV,
13481 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000013482 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
13483 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
13484 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
13485 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
13486 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13487 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13488 pci_read_config_dword(tp->pdev,
13489 TG3PCI_GEN15_PRODID_ASICREV,
13490 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013491 else
13492 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
13493 &prod_id_asic_rev);
13494
Matt Carlson321d32a2008-11-21 17:22:19 -080013495 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070013496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013497
Michael Chanff645be2005-04-21 17:09:53 -070013498 /* Wrong chip ID in 5752 A0. This code can be removed later
13499 * as A0 is not in production.
13500 */
13501 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
13502 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
13503
Michael Chan68929142005-08-09 20:17:14 -070013504 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
13505 * we need to disable memory and use config. cycles
13506 * only to access all registers. The 5702/03 chips
13507 * can mistakenly decode the special cycles from the
13508 * ICH chipsets as memory write cycles, causing corruption
13509 * of register and memory space. Only certain ICH bridges
13510 * will drive special cycles with non-zero data during the
13511 * address phase which can fall within the 5703's address
13512 * range. This is not an ICH bug as the PCI spec allows
13513 * non-zero address during special cycles. However, only
13514 * these ICH bridges are known to drive non-zero addresses
13515 * during special cycles.
13516 *
13517 * Since special cycles do not cross PCI bridges, we only
13518 * enable this workaround if the 5703 is on the secondary
13519 * bus of these ICH bridges.
13520 */
13521 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
13522 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
13523 static struct tg3_dev_id {
13524 u32 vendor;
13525 u32 device;
13526 u32 rev;
13527 } ich_chipsets[] = {
13528 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
13529 PCI_ANY_ID },
13530 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
13531 PCI_ANY_ID },
13532 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
13533 0xa },
13534 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
13535 PCI_ANY_ID },
13536 { },
13537 };
13538 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13539 struct pci_dev *bridge = NULL;
13540
13541 while (pci_id->vendor != 0) {
13542 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13543 bridge);
13544 if (!bridge) {
13545 pci_id++;
13546 continue;
13547 }
13548 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013549 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013550 continue;
13551 }
13552 if (bridge->subordinate &&
13553 (bridge->subordinate->number ==
13554 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013555 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070013556 pci_dev_put(bridge);
13557 break;
13558 }
13559 }
13560 }
13561
Matt Carlson6ff6f812011-05-19 12:12:54 +000013562 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070013563 static struct tg3_dev_id {
13564 u32 vendor;
13565 u32 device;
13566 } bridge_chipsets[] = {
13567 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13568 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13569 { },
13570 };
13571 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13572 struct pci_dev *bridge = NULL;
13573
13574 while (pci_id->vendor != 0) {
13575 bridge = pci_get_device(pci_id->vendor,
13576 pci_id->device,
13577 bridge);
13578 if (!bridge) {
13579 pci_id++;
13580 continue;
13581 }
13582 if (bridge->subordinate &&
13583 (bridge->subordinate->number <=
13584 tp->pdev->bus->number) &&
13585 (bridge->subordinate->subordinate >=
13586 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013587 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070013588 pci_dev_put(bridge);
13589 break;
13590 }
13591 }
13592 }
13593
Michael Chan4a29cc22006-03-19 13:21:12 -080013594 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
13595 * DMA addresses > 40-bit. This bridge may have other additional
13596 * 57xx devices behind it in some 4-port NIC designs for example.
13597 * Any tg3 device found behind the bridge will also need the 40-bit
13598 * DMA workaround.
13599 */
Michael Chana4e2b342005-10-26 15:46:52 -070013600 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
13601 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Joe Perches63c3a662011-04-26 08:12:10 +000013602 tg3_flag_set(tp, 5780_CLASS);
13603 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070013604 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a5882010-04-05 10:19:28 +000013605 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080013606 struct pci_dev *bridge = NULL;
13607
13608 do {
13609 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
13610 PCI_DEVICE_ID_SERVERWORKS_EPB,
13611 bridge);
13612 if (bridge && bridge->subordinate &&
13613 (bridge->subordinate->number <=
13614 tp->pdev->bus->number) &&
13615 (bridge->subordinate->subordinate >=
13616 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013617 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080013618 pci_dev_put(bridge);
13619 break;
13620 }
13621 } while (bridge);
13622 }
Michael Chan4cf78e42005-07-25 12:29:19 -070013623
Linus Torvalds1da177e2005-04-16 15:20:36 -070013624 /* Initialize misc host control in PCI block. */
13625 tp->misc_host_ctrl |= (misc_ctrl_reg &
13626 MISC_HOST_CTRL_CHIPREV);
13627 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13628 tp->misc_host_ctrl);
13629
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013630 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
13631 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013632 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13633 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Michael Chan7544b092007-05-05 13:08:32 -070013634 tp->pdev_peer = tg3_find_peer(tp);
13635
Matt Carlsonc885e822010-08-02 11:25:57 +000013636 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013637 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13638 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000013639 tg3_flag_set(tp, 5717_PLUS);
Matt Carlson0a58d662011-04-05 14:22:45 +000013640
13641 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013642 tg3_flag(tp, 5717_PLUS))
13643 tg3_flag_set(tp, 57765_PLUS);
Matt Carlsonc885e822010-08-02 11:25:57 +000013644
Matt Carlson321d32a2008-11-21 17:22:19 -080013645 /* Intentionally exclude ASIC_REV_5906 */
13646 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad2006-03-20 22:27:35 -080013647 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013648 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013649 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013650 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013651 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013652 tg3_flag(tp, 57765_PLUS))
13653 tg3_flag_set(tp, 5755_PLUS);
Matt Carlson321d32a2008-11-21 17:22:19 -080013654
13655 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13656 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070013657 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013658 tg3_flag(tp, 5755_PLUS) ||
13659 tg3_flag(tp, 5780_CLASS))
13660 tg3_flag_set(tp, 5750_PLUS);
John W. Linville6708e5c2005-04-21 17:00:52 -070013661
Matt Carlson6ff6f812011-05-19 12:12:54 +000013662 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013663 tg3_flag(tp, 5750_PLUS))
13664 tg3_flag_set(tp, 5705_PLUS);
John W. Linville1b440c562005-04-21 17:03:18 -070013665
Matt Carlson507399f2009-11-13 13:03:37 +000013666 /* Determine TSO capabilities */
Matt Carlson2866d952011-02-10 20:06:46 -080013667 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlson4d163b72011-01-25 15:58:48 +000013668 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000013669 else if (tg3_flag(tp, 57765_PLUS))
13670 tg3_flag_set(tp, HW_TSO_3);
13671 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000013672 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013673 tg3_flag_set(tp, HW_TSO_2);
13674 else if (tg3_flag(tp, 5750_PLUS)) {
13675 tg3_flag_set(tp, HW_TSO_1);
13676 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013677 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
13678 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000013679 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013680 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13681 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13682 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013683 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013684 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
13685 tp->fw_needed = FIRMWARE_TG3TSO5;
13686 else
13687 tp->fw_needed = FIRMWARE_TG3TSO;
13688 }
13689
Matt Carlsondabc5c62011-05-19 12:12:52 +000013690 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000013691 if (tg3_flag(tp, HW_TSO_1) ||
13692 tg3_flag(tp, HW_TSO_2) ||
13693 tg3_flag(tp, HW_TSO_3) ||
Matt Carlsondabc5c62011-05-19 12:12:52 +000013694 (tp->fw_needed && !tg3_flag(tp, ENABLE_ASF)))
13695 tg3_flag_set(tp, TSO_CAPABLE);
13696 else {
13697 tg3_flag_clear(tp, TSO_CAPABLE);
13698 tg3_flag_clear(tp, TSO_BUG);
13699 tp->fw_needed = NULL;
13700 }
13701
13702 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
13703 tp->fw_needed = FIRMWARE_TG3;
13704
Matt Carlson507399f2009-11-13 13:03:37 +000013705 tp->irq_max = 1;
13706
Joe Perches63c3a662011-04-26 08:12:10 +000013707 if (tg3_flag(tp, 5750_PLUS)) {
13708 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013709 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
13710 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
13711 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
13712 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
13713 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000013714 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013715
Joe Perches63c3a662011-04-26 08:12:10 +000013716 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070013717 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000013718 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070013719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013720
Joe Perches63c3a662011-04-26 08:12:10 +000013721 if (tg3_flag(tp, 57765_PLUS)) {
13722 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000013723 tp->irq_max = TG3_IRQ_MAX_VECS;
13724 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013725 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000013726
Matt Carlson2ffcc982011-05-19 12:12:44 +000013727 if (tg3_flag(tp, 5755_PLUS))
Joe Perches63c3a662011-04-26 08:12:10 +000013728 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013729
Joe Perches63c3a662011-04-26 08:12:10 +000013730 if (tg3_flag(tp, 5717_PLUS))
13731 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000013732
Joe Perches63c3a662011-04-26 08:12:10 +000013733 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlson2866d952011-02-10 20:06:46 -080013734 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5719)
Joe Perches63c3a662011-04-26 08:12:10 +000013735 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000013736
Joe Perches63c3a662011-04-26 08:12:10 +000013737 if (!tg3_flag(tp, 5705_PLUS) ||
13738 tg3_flag(tp, 5780_CLASS) ||
13739 tg3_flag(tp, USE_JUMBO_BDFLAG))
13740 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070013741
Matt Carlson52f44902008-11-21 17:17:04 -080013742 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13743 &pci_state_reg);
13744
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013745 tp->pcie_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_EXP);
13746 if (tp->pcie_cap != 0) {
13747 u16 lnkctl;
13748
Joe Perches63c3a662011-04-26 08:12:10 +000013749 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013750
Matt Carlsoncf790032010-11-24 08:31:48 +000013751 tp->pcie_readrq = 4096;
Matt Carlsond78b59f2011-04-05 14:22:46 +000013752 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13753 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Matt Carlsonb4495ed2011-01-25 15:58:47 +000013754 tp->pcie_readrq = 2048;
Matt Carlsoncf790032010-11-24 08:31:48 +000013755
13756 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013757
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013758 pci_read_config_word(tp->pdev,
13759 tp->pcie_cap + PCI_EXP_LNKCTL,
13760 &lnkctl);
13761 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Matt Carlson7196cd62011-05-19 16:02:44 +000013762 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
13763 ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000013764 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000013765 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000013766 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013767 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013768 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000013769 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
13770 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000013771 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b05902010-01-20 16:58:02 +000013772 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013773 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080013774 }
Matt Carlson52f44902008-11-21 17:17:04 -080013775 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +000013776 tg3_flag_set(tp, PCI_EXPRESS);
13777 } else if (!tg3_flag(tp, 5705_PLUS) ||
13778 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080013779 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
13780 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000013781 dev_err(&tp->pdev->dev,
13782 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080013783 return -EIO;
13784 }
13785
13786 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000013787 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080013788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013789
Michael Chan399de502005-10-03 14:02:39 -070013790 /* If we have an AMD 762 or VIA K8T800 chipset, write
13791 * reordering to the mailbox registers done by the host
13792 * controller can cause major troubles. We read back from
13793 * every mailbox register write to force the writes to be
13794 * posted to the chip in order.
13795 */
Matt Carlson41434702011-03-09 16:58:22 +000013796 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013797 !tg3_flag(tp, PCI_EXPRESS))
13798 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070013799
Matt Carlson69fc4052008-12-21 20:19:57 -080013800 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
13801 &tp->pci_cacheline_sz);
13802 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13803 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013804 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13805 tp->pci_lat_timer < 64) {
13806 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080013807 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13808 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013809 }
13810
Matt Carlson52f44902008-11-21 17:17:04 -080013811 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
13812 /* 5700 BX chips need to have their TX producer index
13813 * mailboxes written twice to workaround a bug.
13814 */
Joe Perches63c3a662011-04-26 08:12:10 +000013815 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070013816
Matt Carlson52f44902008-11-21 17:17:04 -080013817 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013818 *
13819 * The workaround is to use indirect register accesses
13820 * for all chip writes not to mailbox registers.
13821 */
Joe Perches63c3a662011-04-26 08:12:10 +000013822 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013823 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013824
Joe Perches63c3a662011-04-26 08:12:10 +000013825 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013826
13827 /* The chip can have it's power management PCI config
13828 * space registers clobbered due to this bug.
13829 * So explicitly force the chip into D0 here.
13830 */
Matt Carlson9974a352007-10-07 23:27:28 -070013831 pci_read_config_dword(tp->pdev,
13832 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013833 &pm_reg);
13834 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
13835 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070013836 pci_write_config_dword(tp->pdev,
13837 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013838 pm_reg);
13839
13840 /* Also, force SERR#/PERR# in PCI command. */
13841 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13842 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
13843 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13844 }
13845 }
13846
Linus Torvalds1da177e2005-04-16 15:20:36 -070013847 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000013848 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013849 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000013850 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013851
13852 /* Chip-specific fixup from Broadcom driver */
13853 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
13854 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
13855 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
13856 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
13857 }
13858
Michael Chan1ee582d2005-08-09 20:16:46 -070013859 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070013860 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013861 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070013862 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070013863 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013864 tp->write32_tx_mbox = tg3_write32;
13865 tp->write32_rx_mbox = tg3_write32;
13866
13867 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000013868 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070013869 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013870 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013871 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070013872 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
13873 /*
13874 * Back to back register writes can cause problems on these
13875 * chips, the workaround is to read back all reg writes
13876 * except those to mailbox regs.
13877 *
13878 * See tg3_write_indirect_reg32().
13879 */
Michael Chan1ee582d2005-08-09 20:16:46 -070013880 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013881 }
13882
Joe Perches63c3a662011-04-26 08:12:10 +000013883 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070013884 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000013885 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070013886 tp->write32_rx_mbox = tg3_write_flush_reg32;
13887 }
Michael Chan20094932005-08-09 20:16:32 -070013888
Joe Perches63c3a662011-04-26 08:12:10 +000013889 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070013890 tp->read32 = tg3_read_indirect_reg32;
13891 tp->write32 = tg3_write_indirect_reg32;
13892 tp->read32_mbox = tg3_read_indirect_mbox;
13893 tp->write32_mbox = tg3_write_indirect_mbox;
13894 tp->write32_tx_mbox = tg3_write_indirect_mbox;
13895 tp->write32_rx_mbox = tg3_write_indirect_mbox;
13896
13897 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070013898 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070013899
13900 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13901 pci_cmd &= ~PCI_COMMAND_MEMORY;
13902 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13903 }
Michael Chanb5d37722006-09-27 16:06:21 -070013904 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
13905 tp->read32_mbox = tg3_read32_mbox_5906;
13906 tp->write32_mbox = tg3_write32_mbox_5906;
13907 tp->write32_tx_mbox = tg3_write32_mbox_5906;
13908 tp->write32_rx_mbox = tg3_write32_mbox_5906;
13909 }
Michael Chan68929142005-08-09 20:17:14 -070013910
Michael Chanbbadf502006-04-06 21:46:34 -070013911 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013912 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070013913 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070013914 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000013915 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070013916
Michael Chan7d0c41e2005-04-21 17:06:20 -070013917 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000013918 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070013919 * determined before calling tg3_set_power_state() so that
13920 * we know whether or not to switch out of Vaux power.
13921 * When the flag is set, it means that GPIO1 is used for eeprom
13922 * write protect and also implies that it is a LOM where GPIOs
13923 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013924 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070013925 tg3_get_eeprom_hw_cfg(tp);
13926
Joe Perches63c3a662011-04-26 08:12:10 +000013927 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070013928 /* Allow reads and writes to the
13929 * APE register and memory space.
13930 */
13931 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc2010-06-05 17:24:30 +000013932 PCISTATE_ALLOW_APE_SHMEM_WR |
13933 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070013934 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
13935 pci_state_reg);
13936 }
13937
Matt Carlson9936bcf2007-10-10 18:03:07 -070013938 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013939 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013940 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013941 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013942 tg3_flag(tp, 57765_PLUS))
13943 tg3_flag_set(tp, CPMU_PRESENT);
Matt Carlsond30cdd22007-10-07 23:28:35 -070013944
Matt Carlsonbea8a632011-04-25 12:42:49 +000013945 /* Set up tp->grc_local_ctrl before calling tg3_power_up().
Michael Chan314fba32005-04-21 17:07:04 -070013946 * GPIO1 driven high will bring 5700's external PHY out of reset.
13947 * It is also used as eeprom write protect on LOMs.
13948 */
13949 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Matt Carlson6ff6f812011-05-19 12:12:54 +000013950 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013951 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070013952 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
13953 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070013954 /* Unused GPIO3 must be driven as output on 5752 because there
13955 * are no pull-up resistors on unused GPIO pins.
13956 */
13957 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13958 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070013959
Matt Carlson321d32a2008-11-21 17:22:19 -080013960 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000013961 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
13962 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Michael Chanaf36e6b2006-03-23 01:28:06 -080013963 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13964
Matt Carlson8d519ab2009-04-20 06:58:01 +000013965 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
13966 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070013967 /* Turn off the debug UART. */
13968 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013969 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070013970 /* Keep VMain power. */
13971 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
13972 GRC_LCLCTRL_GPIO_OUTPUT0;
13973 }
13974
Linus Torvalds1da177e2005-04-16 15:20:36 -070013975 /* Force the chip into D0. */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000013976 err = tg3_power_up(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013977 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000013978 dev_err(&tp->pdev->dev, "Transition to D0 failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070013979 return err;
13980 }
13981
Linus Torvalds1da177e2005-04-16 15:20:36 -070013982 /* Derive initial jumbo mode from MTU assigned in
13983 * ether_setup() via the alloc_etherdev() call
13984 */
Joe Perches63c3a662011-04-26 08:12:10 +000013985 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
13986 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013987
13988 /* Determine WakeOnLan speed to use. */
13989 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13990 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
13991 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
13992 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000013993 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013994 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013995 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013996 }
13997
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013998 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013999 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014000
Linus Torvalds1da177e2005-04-16 15:20:36 -070014001 /* A few boards don't want Ethernet@WireSpeed phy feature */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014002 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14003 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014004 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070014005 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014006 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
14007 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14008 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014009
14010 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
14011 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014012 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014013 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014014 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014015
Joe Perches63c3a662011-04-26 08:12:10 +000014016 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014017 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080014018 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014019 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014020 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070014021 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070014022 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070014023 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14024 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080014025 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
14026 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014027 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080014028 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014029 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080014030 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014031 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070014032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014033
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014034 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14035 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
14036 tp->phy_otp = tg3_read_otp_phycfg(tp);
14037 if (tp->phy_otp == 0)
14038 tp->phy_otp = TG3_OTP_DEFAULT;
14039 }
14040
Joe Perches63c3a662011-04-26 08:12:10 +000014041 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070014042 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
14043 else
14044 tp->mi_mode = MAC_MI_MODE_BASE;
14045
Linus Torvalds1da177e2005-04-16 15:20:36 -070014046 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014047 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
14048 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
14049 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
14050
Matt Carlson4d958472011-04-20 07:57:35 +000014051 /* Set these bits to enable statistics workaround. */
14052 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14053 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
14054 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
14055 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
14056 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
14057 }
14058
Matt Carlson321d32a2008-11-21 17:22:19 -080014059 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14060 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000014061 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070014062
Matt Carlson158d7ab2008-05-29 01:37:54 -070014063 err = tg3_mdio_init(tp);
14064 if (err)
14065 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014066
14067 /* Initialize data/descriptor byte/word swapping. */
14068 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000014069 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14070 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
14071 GRC_MODE_WORD_SWAP_B2HRX_DATA |
14072 GRC_MODE_B2HRX_ENABLE |
14073 GRC_MODE_HTX2B_ENABLE |
14074 GRC_MODE_HOST_STACKUP);
14075 else
14076 val &= GRC_MODE_HOST_STACKUP;
14077
Linus Torvalds1da177e2005-04-16 15:20:36 -070014078 tw32(GRC_MODE, val | tp->grc_mode);
14079
14080 tg3_switch_clocks(tp);
14081
14082 /* Clear this out for sanity. */
14083 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
14084
14085 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14086 &pci_state_reg);
14087 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014088 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014089 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
14090
14091 if (chiprevid == CHIPREV_ID_5701_A0 ||
14092 chiprevid == CHIPREV_ID_5701_B0 ||
14093 chiprevid == CHIPREV_ID_5701_B2 ||
14094 chiprevid == CHIPREV_ID_5701_B5) {
14095 void __iomem *sram_base;
14096
14097 /* Write some dummy words into the SRAM status block
14098 * area, see if it reads back correctly. If the return
14099 * value is bad, force enable the PCIX workaround.
14100 */
14101 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
14102
14103 writel(0x00000000, sram_base);
14104 writel(0x00000000, sram_base + 4);
14105 writel(0xffffffff, sram_base + 4);
14106 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000014107 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014108 }
14109 }
14110
14111 udelay(50);
14112 tg3_nvram_init(tp);
14113
14114 grc_misc_cfg = tr32(GRC_MISC_CFG);
14115 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
14116
Linus Torvalds1da177e2005-04-16 15:20:36 -070014117 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14118 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
14119 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000014120 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014121
Joe Perches63c3a662011-04-26 08:12:10 +000014122 if (!tg3_flag(tp, IS_5788) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +000014123 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014124 tg3_flag_set(tp, TAGGED_STATUS);
14125 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070014126 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
14127 HOSTCC_MODE_CLRTICK_TXBD);
14128
14129 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
14130 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14131 tp->misc_host_ctrl);
14132 }
14133
Matt Carlson3bda1252008-08-15 14:08:22 -070014134 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000014135 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000014136 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070014137 else
14138 tp->mac_mode = TG3_DEF_MAC_MODE;
14139
Linus Torvalds1da177e2005-04-16 15:20:36 -070014140 /* these are limited to 10/100 only */
14141 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14142 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
14143 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14144 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14145 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
14146 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
14147 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
14148 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14149 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080014150 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
14151 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014152 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000014153 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14154 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014155 (tp->phy_flags & TG3_PHYFLG_IS_FET))
14156 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014157
14158 err = tg3_phy_probe(tp);
14159 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014160 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014161 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014162 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014163 }
14164
Matt Carlson184b8902010-04-05 10:19:25 +000014165 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080014166 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014167
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014168 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
14169 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014170 } else {
14171 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014172 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014173 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014174 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014175 }
14176
14177 /* 5700 {AX,BX} chips have a broken status block link
14178 * change bit implementation, so we must use the
14179 * status register in those cases.
14180 */
14181 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014182 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014183 else
Joe Perches63c3a662011-04-26 08:12:10 +000014184 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014185
14186 /* The led_ctrl is set during tg3_phy_probe, here we might
14187 * have to force the link status polling mechanism based
14188 * upon subsystem IDs.
14189 */
14190 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070014191 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014192 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
14193 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000014194 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014195 }
14196
14197 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014198 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000014199 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014200 else
Joe Perches63c3a662011-04-26 08:12:10 +000014201 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014202
Matt Carlsonbf933c82011-01-25 15:58:49 +000014203 tp->rx_offset = NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014204 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014205 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014206 tg3_flag(tp, PCIX_MODE)) {
Matt Carlsonbf933c82011-01-25 15:58:49 +000014207 tp->rx_offset = 0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014208#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000014209 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014210#endif
14211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014212
Matt Carlson2c49a442010-09-30 10:34:35 +000014213 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
14214 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014215 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
14216
Matt Carlson2c49a442010-09-30 10:34:35 +000014217 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070014218
14219 /* Increment the rx prod index on the rx std ring by at most
14220 * 8 for these chips to workaround hw errata.
14221 */
14222 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14223 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14224 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
14225 tp->rx_std_max_post = 8;
14226
Joe Perches63c3a662011-04-26 08:12:10 +000014227 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070014228 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
14229 PCIE_PWR_MGMT_L1_THRESH_MSK;
14230
Linus Torvalds1da177e2005-04-16 15:20:36 -070014231 return err;
14232}
14233
David S. Miller49b6e95f2007-03-29 01:38:42 -070014234#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014235static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
14236{
14237 struct net_device *dev = tp->dev;
14238 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014239 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070014240 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014241 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014242
David S. Miller49b6e95f2007-03-29 01:38:42 -070014243 addr = of_get_property(dp, "local-mac-address", &len);
14244 if (addr && len == 6) {
14245 memcpy(dev->dev_addr, addr, 6);
14246 memcpy(dev->perm_addr, dev->dev_addr, 6);
14247 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014248 }
14249 return -ENODEV;
14250}
14251
14252static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
14253{
14254 struct net_device *dev = tp->dev;
14255
14256 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070014257 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014258 return 0;
14259}
14260#endif
14261
14262static int __devinit tg3_get_device_address(struct tg3 *tp)
14263{
14264 struct net_device *dev = tp->dev;
14265 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080014266 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014267
David S. Miller49b6e95f2007-03-29 01:38:42 -070014268#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014269 if (!tg3_get_macaddr_sparc(tp))
14270 return 0;
14271#endif
14272
14273 mac_offset = 0x7c;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014274 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014275 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014276 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
14277 mac_offset = 0xcc;
14278 if (tg3_nvram_lock(tp))
14279 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
14280 else
14281 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000014282 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlsona50d0792010-06-05 17:24:37 +000014283 if (PCI_FUNC(tp->pdev->devfn) & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014284 mac_offset = 0xcc;
Matt Carlsona50d0792010-06-05 17:24:37 +000014285 if (PCI_FUNC(tp->pdev->devfn) > 1)
14286 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014287 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014288 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014289
14290 /* First try to get it from MAC address mailbox. */
14291 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
14292 if ((hi >> 16) == 0x484b) {
14293 dev->dev_addr[0] = (hi >> 8) & 0xff;
14294 dev->dev_addr[1] = (hi >> 0) & 0xff;
14295
14296 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
14297 dev->dev_addr[2] = (lo >> 24) & 0xff;
14298 dev->dev_addr[3] = (lo >> 16) & 0xff;
14299 dev->dev_addr[4] = (lo >> 8) & 0xff;
14300 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014301
Michael Chan008652b2006-03-27 23:14:53 -080014302 /* Some old bootcode may report a 0 MAC address in SRAM */
14303 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
14304 }
14305 if (!addr_ok) {
14306 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000014307 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000014308 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000014309 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070014310 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
14311 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080014312 }
14313 /* Finally just fetch it out of the MAC control regs. */
14314 else {
14315 hi = tr32(MAC_ADDR_0_HIGH);
14316 lo = tr32(MAC_ADDR_0_LOW);
14317
14318 dev->dev_addr[5] = lo & 0xff;
14319 dev->dev_addr[4] = (lo >> 8) & 0xff;
14320 dev->dev_addr[3] = (lo >> 16) & 0xff;
14321 dev->dev_addr[2] = (lo >> 24) & 0xff;
14322 dev->dev_addr[1] = hi & 0xff;
14323 dev->dev_addr[0] = (hi >> 8) & 0xff;
14324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014325 }
14326
14327 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070014328#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014329 if (!tg3_get_default_macaddr_sparc(tp))
14330 return 0;
14331#endif
14332 return -EINVAL;
14333 }
John W. Linville2ff43692005-09-12 14:44:20 -070014334 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014335 return 0;
14336}
14337
David S. Miller59e6b432005-05-18 22:50:10 -070014338#define BOUNDARY_SINGLE_CACHELINE 1
14339#define BOUNDARY_MULTI_CACHELINE 2
14340
14341static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
14342{
14343 int cacheline_size;
14344 u8 byte;
14345 int goal;
14346
14347 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
14348 if (byte == 0)
14349 cacheline_size = 1024;
14350 else
14351 cacheline_size = (int) byte * 4;
14352
14353 /* On 5703 and later chips, the boundary bits have no
14354 * effect.
14355 */
14356 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14357 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014358 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070014359 goto out;
14360
14361#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
14362 goal = BOUNDARY_MULTI_CACHELINE;
14363#else
14364#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
14365 goal = BOUNDARY_SINGLE_CACHELINE;
14366#else
14367 goal = 0;
14368#endif
14369#endif
14370
Joe Perches63c3a662011-04-26 08:12:10 +000014371 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014372 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
14373 goto out;
14374 }
14375
David S. Miller59e6b432005-05-18 22:50:10 -070014376 if (!goal)
14377 goto out;
14378
14379 /* PCI controllers on most RISC systems tend to disconnect
14380 * when a device tries to burst across a cache-line boundary.
14381 * Therefore, letting tg3 do so just wastes PCI bandwidth.
14382 *
14383 * Unfortunately, for PCI-E there are only limited
14384 * write-side controls for this, and thus for reads
14385 * we will still get the disconnects. We'll also waste
14386 * these PCI cycles for both read and write for chips
14387 * other than 5700 and 5701 which do not implement the
14388 * boundary bits.
14389 */
Joe Perches63c3a662011-04-26 08:12:10 +000014390 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014391 switch (cacheline_size) {
14392 case 16:
14393 case 32:
14394 case 64:
14395 case 128:
14396 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14397 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
14398 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
14399 } else {
14400 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14401 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14402 }
14403 break;
14404
14405 case 256:
14406 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
14407 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
14408 break;
14409
14410 default:
14411 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14412 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14413 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014414 }
Joe Perches63c3a662011-04-26 08:12:10 +000014415 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014416 switch (cacheline_size) {
14417 case 16:
14418 case 32:
14419 case 64:
14420 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14421 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14422 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
14423 break;
14424 }
14425 /* fallthrough */
14426 case 128:
14427 default:
14428 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14429 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
14430 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014431 }
David S. Miller59e6b432005-05-18 22:50:10 -070014432 } else {
14433 switch (cacheline_size) {
14434 case 16:
14435 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14436 val |= (DMA_RWCTRL_READ_BNDRY_16 |
14437 DMA_RWCTRL_WRITE_BNDRY_16);
14438 break;
14439 }
14440 /* fallthrough */
14441 case 32:
14442 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14443 val |= (DMA_RWCTRL_READ_BNDRY_32 |
14444 DMA_RWCTRL_WRITE_BNDRY_32);
14445 break;
14446 }
14447 /* fallthrough */
14448 case 64:
14449 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14450 val |= (DMA_RWCTRL_READ_BNDRY_64 |
14451 DMA_RWCTRL_WRITE_BNDRY_64);
14452 break;
14453 }
14454 /* fallthrough */
14455 case 128:
14456 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14457 val |= (DMA_RWCTRL_READ_BNDRY_128 |
14458 DMA_RWCTRL_WRITE_BNDRY_128);
14459 break;
14460 }
14461 /* fallthrough */
14462 case 256:
14463 val |= (DMA_RWCTRL_READ_BNDRY_256 |
14464 DMA_RWCTRL_WRITE_BNDRY_256);
14465 break;
14466 case 512:
14467 val |= (DMA_RWCTRL_READ_BNDRY_512 |
14468 DMA_RWCTRL_WRITE_BNDRY_512);
14469 break;
14470 case 1024:
14471 default:
14472 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
14473 DMA_RWCTRL_WRITE_BNDRY_1024);
14474 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014475 }
David S. Miller59e6b432005-05-18 22:50:10 -070014476 }
14477
14478out:
14479 return val;
14480}
14481
Linus Torvalds1da177e2005-04-16 15:20:36 -070014482static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
14483{
14484 struct tg3_internal_buffer_desc test_desc;
14485 u32 sram_dma_descs;
14486 int i, ret;
14487
14488 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
14489
14490 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
14491 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
14492 tw32(RDMAC_STATUS, 0);
14493 tw32(WDMAC_STATUS, 0);
14494
14495 tw32(BUFMGR_MODE, 0);
14496 tw32(FTQ_RESET, 0);
14497
14498 test_desc.addr_hi = ((u64) buf_dma) >> 32;
14499 test_desc.addr_lo = buf_dma & 0xffffffff;
14500 test_desc.nic_mbuf = 0x00002100;
14501 test_desc.len = size;
14502
14503 /*
14504 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
14505 * the *second* time the tg3 driver was getting loaded after an
14506 * initial scan.
14507 *
14508 * Broadcom tells me:
14509 * ...the DMA engine is connected to the GRC block and a DMA
14510 * reset may affect the GRC block in some unpredictable way...
14511 * The behavior of resets to individual blocks has not been tested.
14512 *
14513 * Broadcom noted the GRC reset will also reset all sub-components.
14514 */
14515 if (to_device) {
14516 test_desc.cqid_sqid = (13 << 8) | 2;
14517
14518 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
14519 udelay(40);
14520 } else {
14521 test_desc.cqid_sqid = (16 << 8) | 7;
14522
14523 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
14524 udelay(40);
14525 }
14526 test_desc.flags = 0x00000005;
14527
14528 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
14529 u32 val;
14530
14531 val = *(((u32 *)&test_desc) + i);
14532 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
14533 sram_dma_descs + (i * sizeof(u32)));
14534 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
14535 }
14536 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
14537
Matt Carlson859a5882010-04-05 10:19:28 +000014538 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014539 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a5882010-04-05 10:19:28 +000014540 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014541 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014542
14543 ret = -ENODEV;
14544 for (i = 0; i < 40; i++) {
14545 u32 val;
14546
14547 if (to_device)
14548 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
14549 else
14550 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
14551 if ((val & 0xffff) == sram_dma_descs) {
14552 ret = 0;
14553 break;
14554 }
14555
14556 udelay(100);
14557 }
14558
14559 return ret;
14560}
14561
David S. Millerded73402005-05-23 13:59:47 -070014562#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070014563
Matt Carlson41434702011-03-09 16:58:22 +000014564static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080014565 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
14566 { },
14567};
14568
Linus Torvalds1da177e2005-04-16 15:20:36 -070014569static int __devinit tg3_test_dma(struct tg3 *tp)
14570{
14571 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070014572 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014573 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014574
Matt Carlson4bae65c2010-11-24 08:31:52 +000014575 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
14576 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014577 if (!buf) {
14578 ret = -ENOMEM;
14579 goto out_nofree;
14580 }
14581
14582 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
14583 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
14584
David S. Miller59e6b432005-05-18 22:50:10 -070014585 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014586
Joe Perches63c3a662011-04-26 08:12:10 +000014587 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014588 goto out;
14589
Joe Perches63c3a662011-04-26 08:12:10 +000014590 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014591 /* DMA read watermark not used on PCIE */
14592 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000014593 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070014594 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14595 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014596 tp->dma_rwctrl |= 0x003f0000;
14597 else
14598 tp->dma_rwctrl |= 0x003f000f;
14599 } else {
14600 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14601 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
14602 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080014603 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014604
Michael Chan4a29cc22006-03-19 13:21:12 -080014605 /* If the 5704 is behind the EPB bridge, we can
14606 * do the less restrictive ONE_DMA workaround for
14607 * better performance.
14608 */
Joe Perches63c3a662011-04-26 08:12:10 +000014609 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080014610 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14611 tp->dma_rwctrl |= 0x8000;
14612 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014613 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
14614
Michael Chan49afdeb2007-02-13 12:17:03 -080014615 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
14616 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070014617 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080014618 tp->dma_rwctrl |=
14619 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
14620 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
14621 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070014622 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
14623 /* 5780 always in PCIX mode */
14624 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070014625 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
14626 /* 5714 always in PCIX mode */
14627 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014628 } else {
14629 tp->dma_rwctrl |= 0x001b000f;
14630 }
14631 }
14632
14633 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14634 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14635 tp->dma_rwctrl &= 0xfffffff0;
14636
14637 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14638 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
14639 /* Remove this if it causes problems for some boards. */
14640 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
14641
14642 /* On 5700/5701 chips, we need to set this bit.
14643 * Otherwise the chip will issue cacheline transactions
14644 * to streamable DMA memory with not all the byte
14645 * enables turned on. This is an error on several
14646 * RISC PCI controllers, in particular sparc64.
14647 *
14648 * On 5703/5704 chips, this bit has been reassigned
14649 * a different meaning. In particular, it is used
14650 * on those chips to enable a PCI-X workaround.
14651 */
14652 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
14653 }
14654
14655 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14656
14657#if 0
14658 /* Unneeded, already done by tg3_get_invariants. */
14659 tg3_switch_clocks(tp);
14660#endif
14661
Linus Torvalds1da177e2005-04-16 15:20:36 -070014662 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14663 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
14664 goto out;
14665
David S. Miller59e6b432005-05-18 22:50:10 -070014666 /* It is best to perform DMA test with maximum write burst size
14667 * to expose the 5700/5701 write DMA bug.
14668 */
14669 saved_dma_rwctrl = tp->dma_rwctrl;
14670 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14671 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14672
Linus Torvalds1da177e2005-04-16 15:20:36 -070014673 while (1) {
14674 u32 *p = buf, i;
14675
14676 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
14677 p[i] = i;
14678
14679 /* Send the buffer to the chip. */
14680 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
14681 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000014682 dev_err(&tp->pdev->dev,
14683 "%s: Buffer write failed. err = %d\n",
14684 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014685 break;
14686 }
14687
14688#if 0
14689 /* validate data reached card RAM correctly. */
14690 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14691 u32 val;
14692 tg3_read_mem(tp, 0x2100 + (i*4), &val);
14693 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000014694 dev_err(&tp->pdev->dev,
14695 "%s: Buffer corrupted on device! "
14696 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014697 /* ret = -ENODEV here? */
14698 }
14699 p[i] = 0;
14700 }
14701#endif
14702 /* Now read it back. */
14703 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
14704 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014705 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
14706 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014707 break;
14708 }
14709
14710 /* Verify it. */
14711 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14712 if (p[i] == i)
14713 continue;
14714
David S. Miller59e6b432005-05-18 22:50:10 -070014715 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14716 DMA_RWCTRL_WRITE_BNDRY_16) {
14717 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014718 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14719 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14720 break;
14721 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000014722 dev_err(&tp->pdev->dev,
14723 "%s: Buffer corrupted on read back! "
14724 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014725 ret = -ENODEV;
14726 goto out;
14727 }
14728 }
14729
14730 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
14731 /* Success. */
14732 ret = 0;
14733 break;
14734 }
14735 }
David S. Miller59e6b432005-05-18 22:50:10 -070014736 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14737 DMA_RWCTRL_WRITE_BNDRY_16) {
14738 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070014739 * now look for chipsets that are known to expose the
14740 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070014741 */
Matt Carlson41434702011-03-09 16:58:22 +000014742 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014743 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14744 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a5882010-04-05 10:19:28 +000014745 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014746 /* Safe to use the calculated DMA boundary. */
14747 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a5882010-04-05 10:19:28 +000014748 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070014749
David S. Miller59e6b432005-05-18 22:50:10 -070014750 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014752
14753out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000014754 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014755out_nofree:
14756 return ret;
14757}
14758
Linus Torvalds1da177e2005-04-16 15:20:36 -070014759static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
14760{
Joe Perches63c3a662011-04-26 08:12:10 +000014761 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000014762 tp->bufmgr_config.mbuf_read_dma_low_water =
14763 DEFAULT_MB_RDMA_LOW_WATER_5705;
14764 tp->bufmgr_config.mbuf_mac_rx_low_water =
14765 DEFAULT_MB_MACRX_LOW_WATER_57765;
14766 tp->bufmgr_config.mbuf_high_water =
14767 DEFAULT_MB_HIGH_WATER_57765;
14768
14769 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14770 DEFAULT_MB_RDMA_LOW_WATER_5705;
14771 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14772 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
14773 tp->bufmgr_config.mbuf_high_water_jumbo =
14774 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000014775 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec172005-07-25 12:31:48 -070014776 tp->bufmgr_config.mbuf_read_dma_low_water =
14777 DEFAULT_MB_RDMA_LOW_WATER_5705;
14778 tp->bufmgr_config.mbuf_mac_rx_low_water =
14779 DEFAULT_MB_MACRX_LOW_WATER_5705;
14780 tp->bufmgr_config.mbuf_high_water =
14781 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070014782 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14783 tp->bufmgr_config.mbuf_mac_rx_low_water =
14784 DEFAULT_MB_MACRX_LOW_WATER_5906;
14785 tp->bufmgr_config.mbuf_high_water =
14786 DEFAULT_MB_HIGH_WATER_5906;
14787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014788
Michael Chanfdfec172005-07-25 12:31:48 -070014789 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14790 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
14791 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14792 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
14793 tp->bufmgr_config.mbuf_high_water_jumbo =
14794 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
14795 } else {
14796 tp->bufmgr_config.mbuf_read_dma_low_water =
14797 DEFAULT_MB_RDMA_LOW_WATER;
14798 tp->bufmgr_config.mbuf_mac_rx_low_water =
14799 DEFAULT_MB_MACRX_LOW_WATER;
14800 tp->bufmgr_config.mbuf_high_water =
14801 DEFAULT_MB_HIGH_WATER;
14802
14803 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14804 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
14805 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14806 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
14807 tp->bufmgr_config.mbuf_high_water_jumbo =
14808 DEFAULT_MB_HIGH_WATER_JUMBO;
14809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014810
14811 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
14812 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
14813}
14814
14815static char * __devinit tg3_phy_string(struct tg3 *tp)
14816{
Matt Carlson79eb6902010-02-17 15:17:03 +000014817 switch (tp->phy_id & TG3_PHY_ID_MASK) {
14818 case TG3_PHY_ID_BCM5400: return "5400";
14819 case TG3_PHY_ID_BCM5401: return "5401";
14820 case TG3_PHY_ID_BCM5411: return "5411";
14821 case TG3_PHY_ID_BCM5701: return "5701";
14822 case TG3_PHY_ID_BCM5703: return "5703";
14823 case TG3_PHY_ID_BCM5704: return "5704";
14824 case TG3_PHY_ID_BCM5705: return "5705";
14825 case TG3_PHY_ID_BCM5750: return "5750";
14826 case TG3_PHY_ID_BCM5752: return "5752";
14827 case TG3_PHY_ID_BCM5714: return "5714";
14828 case TG3_PHY_ID_BCM5780: return "5780";
14829 case TG3_PHY_ID_BCM5755: return "5755";
14830 case TG3_PHY_ID_BCM5787: return "5787";
14831 case TG3_PHY_ID_BCM5784: return "5784";
14832 case TG3_PHY_ID_BCM5756: return "5722/5756";
14833 case TG3_PHY_ID_BCM5906: return "5906";
14834 case TG3_PHY_ID_BCM5761: return "5761";
14835 case TG3_PHY_ID_BCM5718C: return "5718C";
14836 case TG3_PHY_ID_BCM5718S: return "5718S";
14837 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000014838 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000014839 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000014840 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070014841 case 0: return "serdes";
14842 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070014843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014844}
14845
Michael Chanf9804dd2005-09-27 12:13:10 -070014846static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
14847{
Joe Perches63c3a662011-04-26 08:12:10 +000014848 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070014849 strcpy(str, "PCI Express");
14850 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000014851 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070014852 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
14853
14854 strcpy(str, "PCIX:");
14855
14856 if ((clock_ctrl == 7) ||
14857 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
14858 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
14859 strcat(str, "133MHz");
14860 else if (clock_ctrl == 0)
14861 strcat(str, "33MHz");
14862 else if (clock_ctrl == 2)
14863 strcat(str, "50MHz");
14864 else if (clock_ctrl == 4)
14865 strcat(str, "66MHz");
14866 else if (clock_ctrl == 6)
14867 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070014868 } else {
14869 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000014870 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070014871 strcat(str, "66MHz");
14872 else
14873 strcat(str, "33MHz");
14874 }
Joe Perches63c3a662011-04-26 08:12:10 +000014875 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070014876 strcat(str, ":32-bit");
14877 else
14878 strcat(str, ":64-bit");
14879 return str;
14880}
14881
Michael Chan8c2dc7e2005-12-19 16:26:02 -080014882static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014883{
14884 struct pci_dev *peer;
14885 unsigned int func, devnr = tp->pdev->devfn & ~7;
14886
14887 for (func = 0; func < 8; func++) {
14888 peer = pci_get_slot(tp->pdev->bus, devnr | func);
14889 if (peer && peer != tp->pdev)
14890 break;
14891 pci_dev_put(peer);
14892 }
Michael Chan16fe9d72005-12-13 21:09:54 -080014893 /* 5704 can be configured in single-port mode, set peer to
14894 * tp->pdev in that case.
14895 */
14896 if (!peer) {
14897 peer = tp->pdev;
14898 return peer;
14899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014900
14901 /*
14902 * We don't need to keep the refcount elevated; there's no way
14903 * to remove one half of this device without removing the other
14904 */
14905 pci_dev_put(peer);
14906
14907 return peer;
14908}
14909
David S. Miller15f98502005-05-18 22:49:26 -070014910static void __devinit tg3_init_coal(struct tg3 *tp)
14911{
14912 struct ethtool_coalesce *ec = &tp->coal;
14913
14914 memset(ec, 0, sizeof(*ec));
14915 ec->cmd = ETHTOOL_GCOALESCE;
14916 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
14917 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
14918 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
14919 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
14920 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
14921 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
14922 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
14923 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
14924 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
14925
14926 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
14927 HOSTCC_MODE_CLRTICK_TXBD)) {
14928 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
14929 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
14930 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
14931 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
14932 }
Michael Chand244c892005-07-05 14:42:33 -070014933
Joe Perches63c3a662011-04-26 08:12:10 +000014934 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070014935 ec->rx_coalesce_usecs_irq = 0;
14936 ec->tx_coalesce_usecs_irq = 0;
14937 ec->stats_block_coalesce_usecs = 0;
14938 }
David S. Miller15f98502005-05-18 22:49:26 -070014939}
14940
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014941static const struct net_device_ops tg3_netdev_ops = {
14942 .ndo_open = tg3_open,
14943 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080014944 .ndo_start_xmit = tg3_start_xmit,
Eric Dumazet511d2222010-07-07 20:44:24 +000014945 .ndo_get_stats64 = tg3_get_stats64,
Stephen Hemminger00829822008-11-20 20:14:53 -080014946 .ndo_validate_addr = eth_validate_addr,
14947 .ndo_set_multicast_list = tg3_set_rx_mode,
14948 .ndo_set_mac_address = tg3_set_mac_addr,
14949 .ndo_do_ioctl = tg3_ioctl,
14950 .ndo_tx_timeout = tg3_tx_timeout,
14951 .ndo_change_mtu = tg3_change_mtu,
Michał Mirosławdc668912011-04-07 03:35:07 +000014952 .ndo_fix_features = tg3_fix_features,
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000014953 .ndo_set_features = tg3_set_features,
Stephen Hemminger00829822008-11-20 20:14:53 -080014954#ifdef CONFIG_NET_POLL_CONTROLLER
14955 .ndo_poll_controller = tg3_poll_controller,
14956#endif
14957};
14958
Linus Torvalds1da177e2005-04-16 15:20:36 -070014959static int __devinit tg3_init_one(struct pci_dev *pdev,
14960 const struct pci_device_id *ent)
14961{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014962 struct net_device *dev;
14963 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000014964 int i, err, pm_cap;
14965 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070014966 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080014967 u64 dma_mask, persist_dma_mask;
Matt Carlson0da06062011-05-19 12:12:53 +000014968 u32 features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014969
Joe Perches05dbe002010-02-17 19:44:19 +000014970 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014971
14972 err = pci_enable_device(pdev);
14973 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014974 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014975 return err;
14976 }
14977
Linus Torvalds1da177e2005-04-16 15:20:36 -070014978 err = pci_request_regions(pdev, DRV_MODULE_NAME);
14979 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014980 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014981 goto err_out_disable_pdev;
14982 }
14983
14984 pci_set_master(pdev);
14985
14986 /* Find power-management capability. */
14987 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
14988 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000014989 dev_err(&pdev->dev,
14990 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014991 err = -EIO;
14992 goto err_out_free_res;
14993 }
14994
Matt Carlsonfe5f5782009-09-01 13:09:39 +000014995 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014996 if (!dev) {
Matt Carlson2445e462010-04-05 10:19:21 +000014997 dev_err(&pdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014998 err = -ENOMEM;
14999 goto err_out_free_res;
15000 }
15001
Linus Torvalds1da177e2005-04-16 15:20:36 -070015002 SET_NETDEV_DEV(dev, &pdev->dev);
15003
Linus Torvalds1da177e2005-04-16 15:20:36 -070015004 tp = netdev_priv(dev);
15005 tp->pdev = pdev;
15006 tp->dev = dev;
15007 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015008 tp->rx_mode = TG3_DEF_RX_MODE;
15009 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070015010
Linus Torvalds1da177e2005-04-16 15:20:36 -070015011 if (tg3_debug > 0)
15012 tp->msg_enable = tg3_debug;
15013 else
15014 tp->msg_enable = TG3_DEF_MSG_ENABLE;
15015
15016 /* The word/byte swap controls here control register access byte
15017 * swapping. DMA data byte swapping is controlled in the GRC_MODE
15018 * setting below.
15019 */
15020 tp->misc_host_ctrl =
15021 MISC_HOST_CTRL_MASK_PCI_INT |
15022 MISC_HOST_CTRL_WORD_SWAP |
15023 MISC_HOST_CTRL_INDIR_ACCESS |
15024 MISC_HOST_CTRL_PCISTATE_RW;
15025
15026 /* The NONFRM (non-frame) byte/word swap controls take effect
15027 * on descriptor entries, anything which isn't packet data.
15028 *
15029 * The StrongARM chips on the board (one for tx, one for rx)
15030 * are running in big-endian mode.
15031 */
15032 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
15033 GRC_MODE_WSWAP_NONFRM_DATA);
15034#ifdef __BIG_ENDIAN
15035 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
15036#endif
15037 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015038 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000015039 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015040
Matt Carlsond5fe4882008-11-21 17:20:32 -080015041 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010015042 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015043 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015044 err = -ENOMEM;
15045 goto err_out_free_dev;
15046 }
15047
Linus Torvalds1da177e2005-04-16 15:20:36 -070015048 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
15049 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015050
Linus Torvalds1da177e2005-04-16 15:20:36 -070015051 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015052 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000015053 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015054 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015055
15056 err = tg3_get_invariants(tp);
15057 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015058 dev_err(&pdev->dev,
15059 "Problem fetching invariants of chip, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015060 goto err_out_iounmap;
15061 }
15062
Michael Chan4a29cc22006-03-19 13:21:12 -080015063 /* The EPB bridge inside 5714, 5715, and 5780 and any
15064 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015065 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
15066 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
15067 * do DMA address check in tg3_start_xmit().
15068 */
Joe Perches63c3a662011-04-26 08:12:10 +000015069 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070015070 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000015071 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070015072 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080015073#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070015074 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015075#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080015076 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070015077 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015078
15079 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070015080 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080015081 err = pci_set_dma_mask(pdev, dma_mask);
15082 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000015083 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080015084 err = pci_set_consistent_dma_mask(pdev,
15085 persist_dma_mask);
15086 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015087 dev_err(&pdev->dev, "Unable to obtain 64 bit "
15088 "DMA for consistent allocations\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080015089 goto err_out_iounmap;
15090 }
15091 }
15092 }
Yang Hongyang284901a2009-04-06 19:01:15 -070015093 if (err || dma_mask == DMA_BIT_MASK(32)) {
15094 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080015095 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015096 dev_err(&pdev->dev,
15097 "No usable DMA configuration, aborting\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080015098 goto err_out_iounmap;
15099 }
15100 }
15101
Michael Chanfdfec172005-07-25 12:31:48 -070015102 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015103
Matt Carlson0da06062011-05-19 12:12:53 +000015104 features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
15105
15106 /* 5700 B0 chips do not support checksumming correctly due
15107 * to hardware bugs.
15108 */
15109 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
15110 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
15111
15112 if (tg3_flag(tp, 5755_PLUS))
15113 features |= NETIF_F_IPV6_CSUM;
15114 }
15115
Michael Chan4e3a7aa2006-03-20 17:47:44 -080015116 /* TSO is on by default on chips that support hardware TSO.
15117 * Firmware TSO on older chips gives lower performance, so it
15118 * is off by default, but can be enabled using ethtool.
15119 */
Joe Perches63c3a662011-04-26 08:12:10 +000015120 if ((tg3_flag(tp, HW_TSO_1) ||
15121 tg3_flag(tp, HW_TSO_2) ||
15122 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000015123 (features & NETIF_F_IP_CSUM))
15124 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000015125 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000015126 if (features & NETIF_F_IPV6_CSUM)
15127 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000015128 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000015129 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070015130 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15131 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000015132 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000015133 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000015134 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070015135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015136
Matt Carlsond542fe22011-05-19 16:02:43 +000015137 dev->features |= features;
15138 dev->vlan_features |= features;
15139
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015140 /*
15141 * Add loopback capability only for a subset of devices that support
15142 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
15143 * loopback for the remaining devices.
15144 */
15145 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
15146 !tg3_flag(tp, CPMU_PRESENT))
15147 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000015148 features |= NETIF_F_LOOPBACK;
15149
Matt Carlson0da06062011-05-19 12:12:53 +000015150 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015151
Linus Torvalds1da177e2005-04-16 15:20:36 -070015152 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015153 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015154 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015155 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015156 tp->rx_pending = 63;
15157 }
15158
Linus Torvalds1da177e2005-04-16 15:20:36 -070015159 err = tg3_get_device_address(tp);
15160 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015161 dev_err(&pdev->dev,
15162 "Could not obtain valid ethernet address, aborting\n");
Matt Carlson026a6c22009-12-03 08:36:24 +000015163 goto err_out_iounmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015164 }
15165
Joe Perches63c3a662011-04-26 08:12:10 +000015166 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson63532392008-11-03 16:49:57 -080015167 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
Al Viro79ea13c2008-01-24 02:06:46 -080015168 if (!tp->aperegs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015169 dev_err(&pdev->dev,
15170 "Cannot map APE registers, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015171 err = -ENOMEM;
Matt Carlson026a6c22009-12-03 08:36:24 +000015172 goto err_out_iounmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015173 }
15174
15175 tg3_ape_lock_init(tp);
Matt Carlson7fd76442009-02-25 14:27:20 +000015176
Joe Perches63c3a662011-04-26 08:12:10 +000015177 if (tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000015178 tg3_read_dash_ver(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015179 }
15180
Matt Carlsonc88864d2007-11-12 21:07:01 -080015181 /*
15182 * Reset chip in case UNDI or EFI driver did not shutdown
15183 * DMA self test will enable WDMAC and we'll see (spurious)
15184 * pending DMA on the PCI bus at that point.
15185 */
15186 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
15187 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
15188 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
15189 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
15190 }
15191
15192 err = tg3_test_dma(tp);
15193 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015194 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080015195 goto err_out_apeunmap;
15196 }
15197
Matt Carlson78f90dc2009-11-13 13:03:42 +000015198 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
15199 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
15200 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000015201 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000015202 struct tg3_napi *tnapi = &tp->napi[i];
15203
15204 tnapi->tp = tp;
15205 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
15206
15207 tnapi->int_mbox = intmbx;
15208 if (i < 4)
15209 intmbx += 0x8;
15210 else
15211 intmbx += 0x4;
15212
15213 tnapi->consmbox = rcvmbx;
15214 tnapi->prodmbox = sndmbx;
15215
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015216 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015217 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015218 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000015219 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000015220
Joe Perches63c3a662011-04-26 08:12:10 +000015221 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000015222 break;
15223
15224 /*
15225 * If we support MSIX, we'll be using RSS. If we're using
15226 * RSS, the first vector only handles link interrupts and the
15227 * remaining vectors handle rx and tx interrupts. Reuse the
15228 * mailbox values for the next iteration. The values we setup
15229 * above are still useful for the single vectored mode.
15230 */
15231 if (!i)
15232 continue;
15233
15234 rcvmbx += 0x8;
15235
15236 if (sndmbx & 0x4)
15237 sndmbx -= 0x4;
15238 else
15239 sndmbx += 0xc;
15240 }
15241
Matt Carlsonc88864d2007-11-12 21:07:01 -080015242 tg3_init_coal(tp);
15243
Michael Chanc49a1562006-12-17 17:07:29 -080015244 pci_set_drvdata(pdev, dev);
15245
Linus Torvalds1da177e2005-04-16 15:20:36 -070015246 err = register_netdev(dev);
15247 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015248 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015249 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015250 }
15251
Joe Perches05dbe002010-02-17 19:44:19 +000015252 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
15253 tp->board_part_number,
15254 tp->pci_chip_rev_id,
15255 tg3_bus_string(tp, str),
15256 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015257
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015258 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000015259 struct phy_device *phydev;
15260 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000015261 netdev_info(dev,
15262 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000015263 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015264 } else {
15265 char *ethtype;
15266
15267 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
15268 ethtype = "10/100Base-TX";
15269 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
15270 ethtype = "1000Base-SX";
15271 else
15272 ethtype = "10/100/1000Base-T";
15273
Matt Carlson5129c3a2010-04-05 10:19:23 +000015274 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000015275 "(WireSpeed[%d], EEE[%d])\n",
15276 tg3_phy_string(tp), ethtype,
15277 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
15278 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015279 }
Matt Carlsondf59c942008-11-03 16:52:56 -080015280
Joe Perches05dbe002010-02-17 19:44:19 +000015281 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000015282 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015283 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015284 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015285 tg3_flag(tp, ENABLE_ASF) != 0,
15286 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000015287 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
15288 tp->dma_rwctrl,
15289 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
15290 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015291
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015292 pci_save_state(pdev);
15293
Linus Torvalds1da177e2005-04-16 15:20:36 -070015294 return 0;
15295
Matt Carlson0d3031d2007-10-10 18:02:43 -070015296err_out_apeunmap:
15297 if (tp->aperegs) {
15298 iounmap(tp->aperegs);
15299 tp->aperegs = NULL;
15300 }
15301
Linus Torvalds1da177e2005-04-16 15:20:36 -070015302err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070015303 if (tp->regs) {
15304 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015305 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015307
15308err_out_free_dev:
15309 free_netdev(dev);
15310
15311err_out_free_res:
15312 pci_release_regions(pdev);
15313
15314err_out_disable_pdev:
15315 pci_disable_device(pdev);
15316 pci_set_drvdata(pdev, NULL);
15317 return err;
15318}
15319
15320static void __devexit tg3_remove_one(struct pci_dev *pdev)
15321{
15322 struct net_device *dev = pci_get_drvdata(pdev);
15323
15324 if (dev) {
15325 struct tg3 *tp = netdev_priv(dev);
15326
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015327 if (tp->fw)
15328 release_firmware(tp->fw);
15329
Tejun Heo23f333a2010-12-12 16:45:14 +010015330 cancel_work_sync(&tp->reset_task);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015331
Joe Perches63c3a662011-04-26 08:12:10 +000015332 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015333 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015334 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015335 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070015336
Linus Torvalds1da177e2005-04-16 15:20:36 -070015337 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015338 if (tp->aperegs) {
15339 iounmap(tp->aperegs);
15340 tp->aperegs = NULL;
15341 }
Michael Chan68929142005-08-09 20:17:14 -070015342 if (tp->regs) {
15343 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015344 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015346 free_netdev(dev);
15347 pci_release_regions(pdev);
15348 pci_disable_device(pdev);
15349 pci_set_drvdata(pdev, NULL);
15350 }
15351}
15352
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015353#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015354static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015355{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015356 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015357 struct net_device *dev = pci_get_drvdata(pdev);
15358 struct tg3 *tp = netdev_priv(dev);
15359 int err;
15360
15361 if (!netif_running(dev))
15362 return 0;
15363
Tejun Heo23f333a2010-12-12 16:45:14 +010015364 flush_work_sync(&tp->reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015365 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015366 tg3_netif_stop(tp);
15367
15368 del_timer_sync(&tp->timer);
15369
David S. Millerf47c11e2005-06-24 20:18:35 -070015370 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015371 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070015372 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015373
15374 netif_device_detach(dev);
15375
David S. Millerf47c11e2005-06-24 20:18:35 -070015376 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070015377 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000015378 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070015379 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015380
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015381 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015382 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015383 int err2;
15384
David S. Millerf47c11e2005-06-24 20:18:35 -070015385 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015386
Joe Perches63c3a662011-04-26 08:12:10 +000015387 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015388 err2 = tg3_restart_hw(tp, 1);
15389 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070015390 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015391
15392 tp->timer.expires = jiffies + tp->timer_offset;
15393 add_timer(&tp->timer);
15394
15395 netif_device_attach(dev);
15396 tg3_netif_start(tp);
15397
Michael Chanb9ec6c12006-07-25 16:37:27 -070015398out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015399 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015400
15401 if (!err2)
15402 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015403 }
15404
15405 return err;
15406}
15407
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015408static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015409{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015410 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015411 struct net_device *dev = pci_get_drvdata(pdev);
15412 struct tg3 *tp = netdev_priv(dev);
15413 int err;
15414
15415 if (!netif_running(dev))
15416 return 0;
15417
Linus Torvalds1da177e2005-04-16 15:20:36 -070015418 netif_device_attach(dev);
15419
David S. Millerf47c11e2005-06-24 20:18:35 -070015420 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015421
Joe Perches63c3a662011-04-26 08:12:10 +000015422 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070015423 err = tg3_restart_hw(tp, 1);
15424 if (err)
15425 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015426
15427 tp->timer.expires = jiffies + tp->timer_offset;
15428 add_timer(&tp->timer);
15429
Linus Torvalds1da177e2005-04-16 15:20:36 -070015430 tg3_netif_start(tp);
15431
Michael Chanb9ec6c12006-07-25 16:37:27 -070015432out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015433 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015434
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015435 if (!err)
15436 tg3_phy_start(tp);
15437
Michael Chanb9ec6c12006-07-25 16:37:27 -070015438 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015439}
15440
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015441static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015442#define TG3_PM_OPS (&tg3_pm_ops)
15443
15444#else
15445
15446#define TG3_PM_OPS NULL
15447
15448#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015449
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015450/**
15451 * tg3_io_error_detected - called when PCI error is detected
15452 * @pdev: Pointer to PCI device
15453 * @state: The current pci connection state
15454 *
15455 * This function is called after a PCI bus error affecting
15456 * this device has been detected.
15457 */
15458static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
15459 pci_channel_state_t state)
15460{
15461 struct net_device *netdev = pci_get_drvdata(pdev);
15462 struct tg3 *tp = netdev_priv(netdev);
15463 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
15464
15465 netdev_info(netdev, "PCI I/O error detected\n");
15466
15467 rtnl_lock();
15468
15469 if (!netif_running(netdev))
15470 goto done;
15471
15472 tg3_phy_stop(tp);
15473
15474 tg3_netif_stop(tp);
15475
15476 del_timer_sync(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +000015477 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015478
15479 /* Want to make sure that the reset task doesn't run */
15480 cancel_work_sync(&tp->reset_task);
Joe Perches63c3a662011-04-26 08:12:10 +000015481 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
15482 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015483
15484 netif_device_detach(netdev);
15485
15486 /* Clean up software state, even if MMIO is blocked */
15487 tg3_full_lock(tp, 0);
15488 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
15489 tg3_full_unlock(tp);
15490
15491done:
15492 if (state == pci_channel_io_perm_failure)
15493 err = PCI_ERS_RESULT_DISCONNECT;
15494 else
15495 pci_disable_device(pdev);
15496
15497 rtnl_unlock();
15498
15499 return err;
15500}
15501
15502/**
15503 * tg3_io_slot_reset - called after the pci bus has been reset.
15504 * @pdev: Pointer to PCI device
15505 *
15506 * Restart the card from scratch, as if from a cold-boot.
15507 * At this point, the card has exprienced a hard reset,
15508 * followed by fixups by BIOS, and has its config space
15509 * set up identically to what it was at cold boot.
15510 */
15511static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
15512{
15513 struct net_device *netdev = pci_get_drvdata(pdev);
15514 struct tg3 *tp = netdev_priv(netdev);
15515 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
15516 int err;
15517
15518 rtnl_lock();
15519
15520 if (pci_enable_device(pdev)) {
15521 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
15522 goto done;
15523 }
15524
15525 pci_set_master(pdev);
15526 pci_restore_state(pdev);
15527 pci_save_state(pdev);
15528
15529 if (!netif_running(netdev)) {
15530 rc = PCI_ERS_RESULT_RECOVERED;
15531 goto done;
15532 }
15533
15534 err = tg3_power_up(tp);
15535 if (err) {
15536 netdev_err(netdev, "Failed to restore register access.\n");
15537 goto done;
15538 }
15539
15540 rc = PCI_ERS_RESULT_RECOVERED;
15541
15542done:
15543 rtnl_unlock();
15544
15545 return rc;
15546}
15547
15548/**
15549 * tg3_io_resume - called when traffic can start flowing again.
15550 * @pdev: Pointer to PCI device
15551 *
15552 * This callback is called when the error recovery driver tells
15553 * us that its OK to resume normal operation.
15554 */
15555static void tg3_io_resume(struct pci_dev *pdev)
15556{
15557 struct net_device *netdev = pci_get_drvdata(pdev);
15558 struct tg3 *tp = netdev_priv(netdev);
15559 int err;
15560
15561 rtnl_lock();
15562
15563 if (!netif_running(netdev))
15564 goto done;
15565
15566 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000015567 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015568 err = tg3_restart_hw(tp, 1);
15569 tg3_full_unlock(tp);
15570 if (err) {
15571 netdev_err(netdev, "Cannot restart hardware after reset.\n");
15572 goto done;
15573 }
15574
15575 netif_device_attach(netdev);
15576
15577 tp->timer.expires = jiffies + tp->timer_offset;
15578 add_timer(&tp->timer);
15579
15580 tg3_netif_start(tp);
15581
15582 tg3_phy_start(tp);
15583
15584done:
15585 rtnl_unlock();
15586}
15587
15588static struct pci_error_handlers tg3_err_handler = {
15589 .error_detected = tg3_io_error_detected,
15590 .slot_reset = tg3_io_slot_reset,
15591 .resume = tg3_io_resume
15592};
15593
Linus Torvalds1da177e2005-04-16 15:20:36 -070015594static struct pci_driver tg3_driver = {
15595 .name = DRV_MODULE_NAME,
15596 .id_table = tg3_pci_tbl,
15597 .probe = tg3_init_one,
15598 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015599 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015600 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015601};
15602
15603static int __init tg3_init(void)
15604{
Jeff Garzik29917622006-08-19 17:48:59 -040015605 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015606}
15607
15608static void __exit tg3_cleanup(void)
15609{
15610 pci_unregister_driver(&tg3_driver);
15611}
15612
15613module_init(tg3_init);
15614module_exit(tg3_cleanup);