blob: cc7349fd7fcda5db713bb409aff187201d011034 [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 Carlsoneaa36662011-08-19 13:58:24 +000092#define TG3_MIN_NUM 120
Matt Carlson6867c842010-07-11 09:31:44 +000093#define DRV_MODULE_VERSION \
94 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Matt Carlsoneaa36662011-08-19 13:58:24 +000095#define DRV_MODULE_RELDATE "August 18, 2011"
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Matt Carlsonfd6d3f02011-08-31 11:44:52 +000097#define RESET_KIND_SHUTDOWN 0
98#define RESET_KIND_INIT 1
99#define RESET_KIND_SUSPEND 2
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#define TG3_DEF_RX_MODE 0
102#define TG3_DEF_TX_MODE 0
103#define TG3_DEF_MSG_ENABLE \
104 (NETIF_MSG_DRV | \
105 NETIF_MSG_PROBE | \
106 NETIF_MSG_LINK | \
107 NETIF_MSG_TIMER | \
108 NETIF_MSG_IFDOWN | \
109 NETIF_MSG_IFUP | \
110 NETIF_MSG_RX_ERR | \
111 NETIF_MSG_TX_ERR)
112
Matt Carlson520b2752011-06-13 13:39:02 +0000113#define TG3_GRC_LCLCTL_PWRSW_DELAY 100
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/* length of time before we decide the hardware is borked,
116 * and dev->tx_timeout() should be called to fix the problem
117 */
Joe Perches63c3a662011-04-26 08:12:10 +0000118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#define TG3_TX_TIMEOUT (5 * HZ)
120
121/* hardware minimum and maximum for a single frame's data payload */
122#define TG3_MIN_MTU 60
123#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000124 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/* These numbers seem to be hard coded in the NIC firmware somehow.
127 * You can't change the ring sizes, but you can change where you place
128 * them in the NIC onboard memory.
129 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000130#define TG3_RX_STD_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000131 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000132 TG3_RX_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000134#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000135 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000136 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define TG3_DEF_RX_JUMBO_RING_PENDING 100
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000138#define TG3_RSS_INDIR_TBL_SIZE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/* Do not place this n-ring entries value into the tp struct itself,
141 * we really want to expose these constants to GCC so that modulo et
142 * al. operations are done with shifts and masks instead of with
143 * hw multiply/modulo instructions. Another solution would be to
144 * replace things like '% foo' with '& (foo - 1)'.
145 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147#define TG3_TX_RING_SIZE 512
148#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
149
Matt Carlson2c49a442010-09-30 10:34:35 +0000150#define TG3_RX_STD_RING_BYTES(tp) \
151 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
152#define TG3_RX_JMB_RING_BYTES(tp) \
153 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
154#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000155 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
157 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
159
Matt Carlson287be122009-08-28 13:58:46 +0000160#define TG3_DMA_BYTE_ENAB 64
161
162#define TG3_RX_STD_DMA_SZ 1536
163#define TG3_RX_JMB_DMA_SZ 9046
164
165#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
166
167#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
168#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Matt Carlson2c49a442010-09-30 10:34:35 +0000170#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
171 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000172
Matt Carlson2c49a442010-09-30 10:34:35 +0000173#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
174 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000175
Matt Carlsond2757fc2010-04-12 06:58:27 +0000176/* Due to a hardware bug, the 5701 can only DMA to memory addresses
177 * that are at least dword aligned when used in PCIX mode. The driver
178 * works around this bug by double copying the packet. This workaround
179 * is built into the normal double copy length check for efficiency.
180 *
181 * However, the double copy is only necessary on those architectures
182 * where unaligned memory accesses are inefficient. For those architectures
183 * where unaligned memory accesses incur little penalty, we can reintegrate
184 * the 5701 in the normal rx path. Doing so saves a device structure
185 * dereference by hardcoding the double copy threshold in place.
186 */
187#define TG3_RX_COPY_THRESHOLD 256
188#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
189 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
190#else
191 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
192#endif
193
Matt Carlson81389f52011-08-31 11:44:49 +0000194#if (NET_IP_ALIGN != 0)
195#define TG3_RX_OFFSET(tp) ((tp)->rx_offset)
196#else
197#define TG3_RX_OFFSET(tp) 0
198#endif
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000201#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Matt Carlsone31aa982011-07-27 14:20:53 +0000202#define TG3_TX_BD_DMA_MAX 4096
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Matt Carlsonad829262008-11-21 17:16:16 -0800204#define TG3_RAW_IP_ALIGN 2
205
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000206#define TG3_FW_UPDATE_TIMEOUT_SEC 5
207
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800208#define FIRMWARE_TG3 "tigon/tg3.bin"
209#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
210#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212static char version[] __devinitdata =
Joe Perches05dbe002010-02-17 19:44:19 +0000213 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
216MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
217MODULE_LICENSE("GPL");
218MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800219MODULE_FIRMWARE(FIRMWARE_TG3);
220MODULE_FIRMWARE(FIRMWARE_TG3TSO);
221MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
224module_param(tg3_debug, int, 0);
225MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
226
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000227static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700228 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
229 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
230 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
231 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
257 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
258 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
260 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
261 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700264 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700265 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
272 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700278 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
286 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800287 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
288 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
289 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000290 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000291 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
292 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000293 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
294 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
295 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
296 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
297 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
298 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Matt Carlson302b5002010-06-05 17:24:38 +0000299 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000300 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700301 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
302 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
303 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
304 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
305 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
306 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
307 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
Meelis Roos1dcb14d2011-05-25 05:43:47 +0000308 {PCI_DEVICE(0x10cf, 0x11a2)}, /* Fujitsu 1000base-SX with BCM5703SKHB */
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700309 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310};
311
312MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
313
Andreas Mohr50da8592006-08-14 23:54:30 -0700314static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000316} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 { "rx_octets" },
318 { "rx_fragments" },
319 { "rx_ucast_packets" },
320 { "rx_mcast_packets" },
321 { "rx_bcast_packets" },
322 { "rx_fcs_errors" },
323 { "rx_align_errors" },
324 { "rx_xon_pause_rcvd" },
325 { "rx_xoff_pause_rcvd" },
326 { "rx_mac_ctrl_rcvd" },
327 { "rx_xoff_entered" },
328 { "rx_frame_too_long_errors" },
329 { "rx_jabbers" },
330 { "rx_undersize_packets" },
331 { "rx_in_length_errors" },
332 { "rx_out_length_errors" },
333 { "rx_64_or_less_octet_packets" },
334 { "rx_65_to_127_octet_packets" },
335 { "rx_128_to_255_octet_packets" },
336 { "rx_256_to_511_octet_packets" },
337 { "rx_512_to_1023_octet_packets" },
338 { "rx_1024_to_1522_octet_packets" },
339 { "rx_1523_to_2047_octet_packets" },
340 { "rx_2048_to_4095_octet_packets" },
341 { "rx_4096_to_8191_octet_packets" },
342 { "rx_8192_to_9022_octet_packets" },
343
344 { "tx_octets" },
345 { "tx_collisions" },
346
347 { "tx_xon_sent" },
348 { "tx_xoff_sent" },
349 { "tx_flow_control" },
350 { "tx_mac_errors" },
351 { "tx_single_collisions" },
352 { "tx_mult_collisions" },
353 { "tx_deferred" },
354 { "tx_excessive_collisions" },
355 { "tx_late_collisions" },
356 { "tx_collide_2times" },
357 { "tx_collide_3times" },
358 { "tx_collide_4times" },
359 { "tx_collide_5times" },
360 { "tx_collide_6times" },
361 { "tx_collide_7times" },
362 { "tx_collide_8times" },
363 { "tx_collide_9times" },
364 { "tx_collide_10times" },
365 { "tx_collide_11times" },
366 { "tx_collide_12times" },
367 { "tx_collide_13times" },
368 { "tx_collide_14times" },
369 { "tx_collide_15times" },
370 { "tx_ucast_packets" },
371 { "tx_mcast_packets" },
372 { "tx_bcast_packets" },
373 { "tx_carrier_sense_errors" },
374 { "tx_discards" },
375 { "tx_errors" },
376
377 { "dma_writeq_full" },
378 { "dma_write_prioq_full" },
379 { "rxbds_empty" },
380 { "rx_discards" },
381 { "rx_errors" },
382 { "rx_threshold_hit" },
383
384 { "dma_readq_full" },
385 { "dma_read_prioq_full" },
386 { "tx_comp_queue_full" },
387
388 { "ring_set_send_prod_index" },
389 { "ring_status_update" },
390 { "nic_irqs" },
391 { "nic_avoided_irqs" },
Matt Carlson4452d092011-05-19 12:12:51 +0000392 { "nic_tx_threshold_hit" },
393
394 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
Matt Carlson48fa55a2011-04-13 11:05:06 +0000397#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
398
399
Andreas Mohr50da8592006-08-14 23:54:30 -0700400static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700401 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000402} ethtool_test_keys[] = {
Matt Carlson28a45952011-08-19 13:58:22 +0000403 { "nvram test (online) " },
404 { "link test (online) " },
405 { "register test (offline)" },
406 { "memory test (offline)" },
407 { "mac loopback test (offline)" },
408 { "phy loopback test (offline)" },
Matt Carlson941ec902011-08-19 13:58:23 +0000409 { "ext loopback test (offline)" },
Matt Carlson28a45952011-08-19 13:58:22 +0000410 { "interrupt test (offline)" },
Michael Chan4cafd3f2005-05-29 14:56:34 -0700411};
412
Matt Carlson48fa55a2011-04-13 11:05:06 +0000413#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
414
415
Michael Chanb401e9e2005-12-19 16:27:04 -0800416static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
417{
418 writel(val, tp->regs + off);
419}
420
421static u32 tg3_read32(struct tg3 *tp, u32 off)
422{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000423 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800424}
425
Matt Carlson0d3031d2007-10-10 18:02:43 -0700426static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
427{
428 writel(val, tp->aperegs + off);
429}
430
431static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
432{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000433 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
437{
Michael Chan68929142005-08-09 20:17:14 -0700438 unsigned long flags;
439
440 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700441 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
442 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700443 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700444}
445
446static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
447{
448 writel(val, tp->regs + off);
449 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
Michael Chan68929142005-08-09 20:17:14 -0700452static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
453{
454 unsigned long flags;
455 u32 val;
456
457 spin_lock_irqsave(&tp->indirect_lock, flags);
458 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
459 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
460 spin_unlock_irqrestore(&tp->indirect_lock, flags);
461 return val;
462}
463
464static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
465{
466 unsigned long flags;
467
468 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
469 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
470 TG3_64BIT_REG_LOW, val);
471 return;
472 }
Matt Carlson66711e62009-11-13 13:03:49 +0000473 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700474 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
475 TG3_64BIT_REG_LOW, val);
476 return;
477 }
478
479 spin_lock_irqsave(&tp->indirect_lock, flags);
480 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
481 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
482 spin_unlock_irqrestore(&tp->indirect_lock, flags);
483
484 /* In indirect mode when disabling interrupts, we also need
485 * to clear the interrupt bit in the GRC local ctrl register.
486 */
487 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
488 (val == 0x1)) {
489 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
490 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
491 }
492}
493
494static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
495{
496 unsigned long flags;
497 u32 val;
498
499 spin_lock_irqsave(&tp->indirect_lock, flags);
500 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
501 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
502 spin_unlock_irqrestore(&tp->indirect_lock, flags);
503 return val;
504}
505
Michael Chanb401e9e2005-12-19 16:27:04 -0800506/* usec_wait specifies the wait time in usec when writing to certain registers
507 * where it is unsafe to read back the register without some delay.
508 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
509 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
510 */
511static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Joe Perches63c3a662011-04-26 08:12:10 +0000513 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800514 /* Non-posted methods */
515 tp->write32(tp, off, val);
516 else {
517 /* Posted method */
518 tg3_write32(tp, off, val);
519 if (usec_wait)
520 udelay(usec_wait);
521 tp->read32(tp, off);
522 }
523 /* Wait again after the read for the posted method to guarantee that
524 * the wait time is met.
525 */
526 if (usec_wait)
527 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Michael Chan09ee9292005-08-09 20:17:00 -0700530static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
531{
532 tp->write32_mbox(tp, off, val);
Joe Perches63c3a662011-04-26 08:12:10 +0000533 if (!tg3_flag(tp, MBOX_WRITE_REORDER) && !tg3_flag(tp, ICH_WORKAROUND))
Michael Chan68929142005-08-09 20:17:14 -0700534 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700535}
536
Michael Chan20094932005-08-09 20:16:32 -0700537static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 void __iomem *mbox = tp->regs + off;
540 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000541 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000543 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 readl(mbox);
545}
546
Michael Chanb5d37722006-09-27 16:06:21 -0700547static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
548{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000549 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700550}
551
552static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
553{
554 writel(val, tp->regs + off + GRCMBOX_BASE);
555}
556
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000557#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700558#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000559#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
560#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
561#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700562
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000563#define tw32(reg, val) tp->write32(tp, reg, val)
564#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
565#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
566#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
569{
Michael Chan68929142005-08-09 20:17:14 -0700570 unsigned long flags;
571
Matt Carlson6ff6f812011-05-19 12:12:54 +0000572 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700573 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
574 return;
575
Michael Chan68929142005-08-09 20:17:14 -0700576 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000577 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700578 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
579 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Michael Chanbbadf502006-04-06 21:46:34 -0700581 /* Always leave this as zero. */
582 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
583 } else {
584 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
585 tw32_f(TG3PCI_MEM_WIN_DATA, val);
586
587 /* Always leave this as zero. */
588 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
589 }
Michael Chan68929142005-08-09 20:17:14 -0700590 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
594{
Michael Chan68929142005-08-09 20:17:14 -0700595 unsigned long flags;
596
Matt Carlson6ff6f812011-05-19 12:12:54 +0000597 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700598 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
599 *val = 0;
600 return;
601 }
602
Michael Chan68929142005-08-09 20:17:14 -0700603 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000604 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700605 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
606 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Michael Chanbbadf502006-04-06 21:46:34 -0700608 /* Always leave this as zero. */
609 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
610 } else {
611 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
612 *val = tr32(TG3PCI_MEM_WIN_DATA);
613
614 /* Always leave this as zero. */
615 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
616 }
Michael Chan68929142005-08-09 20:17:14 -0700617 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
Matt Carlson0d3031d2007-10-10 18:02:43 -0700620static void tg3_ape_lock_init(struct tg3 *tp)
621{
622 int i;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000623 u32 regbase, bit;
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000624
625 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
626 regbase = TG3_APE_LOCK_GRANT;
627 else
628 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700629
630 /* Make sure the driver hasn't any stale locks. */
Matt Carlson78f94dc2011-11-04 09:14:58 +0000631 for (i = TG3_APE_LOCK_PHY0; i <= TG3_APE_LOCK_GPIO; i++) {
632 switch (i) {
633 case TG3_APE_LOCK_PHY0:
634 case TG3_APE_LOCK_PHY1:
635 case TG3_APE_LOCK_PHY2:
636 case TG3_APE_LOCK_PHY3:
637 bit = APE_LOCK_GRANT_DRIVER;
638 break;
639 default:
640 if (!tp->pci_fn)
641 bit = APE_LOCK_GRANT_DRIVER;
642 else
643 bit = 1 << tp->pci_fn;
644 }
645 tg3_ape_write32(tp, regbase + 4 * i, bit);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000646 }
647
Matt Carlson0d3031d2007-10-10 18:02:43 -0700648}
649
650static int tg3_ape_lock(struct tg3 *tp, int locknum)
651{
652 int i, off;
653 int ret = 0;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000654 u32 status, req, gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700655
Joe Perches63c3a662011-04-26 08:12:10 +0000656 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700657 return 0;
658
659 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000660 case TG3_APE_LOCK_GPIO:
661 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
662 return 0;
Matt Carlson33f401a2010-04-05 10:19:27 +0000663 case TG3_APE_LOCK_GRC:
664 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000665 if (!tp->pci_fn)
666 bit = APE_LOCK_REQ_DRIVER;
667 else
668 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000669 break;
670 default:
671 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700672 }
673
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000674 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
675 req = TG3_APE_LOCK_REQ;
676 gnt = TG3_APE_LOCK_GRANT;
677 } else {
678 req = TG3_APE_PER_LOCK_REQ;
679 gnt = TG3_APE_PER_LOCK_GRANT;
680 }
681
Matt Carlson0d3031d2007-10-10 18:02:43 -0700682 off = 4 * locknum;
683
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000684 tg3_ape_write32(tp, req + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700685
686 /* Wait for up to 1 millisecond to acquire lock. */
687 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000688 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000689 if (status == bit)
Matt Carlson0d3031d2007-10-10 18:02:43 -0700690 break;
691 udelay(10);
692 }
693
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000694 if (status != bit) {
Matt Carlson0d3031d2007-10-10 18:02:43 -0700695 /* Revoke the lock request. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000696 tg3_ape_write32(tp, gnt + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700697 ret = -EBUSY;
698 }
699
700 return ret;
701}
702
703static void tg3_ape_unlock(struct tg3 *tp, int locknum)
704{
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000705 u32 gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700706
Joe Perches63c3a662011-04-26 08:12:10 +0000707 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700708 return;
709
710 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000711 case TG3_APE_LOCK_GPIO:
712 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
713 return;
Matt Carlson33f401a2010-04-05 10:19:27 +0000714 case TG3_APE_LOCK_GRC:
715 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000716 if (!tp->pci_fn)
717 bit = APE_LOCK_GRANT_DRIVER;
718 else
719 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000720 break;
721 default:
722 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700723 }
724
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000725 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
726 gnt = TG3_APE_LOCK_GRANT;
727 else
728 gnt = TG3_APE_PER_LOCK_GRANT;
729
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000730 tg3_ape_write32(tp, gnt + 4 * locknum, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700731}
732
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000733static void tg3_ape_send_event(struct tg3 *tp, u32 event)
734{
735 int i;
736 u32 apedata;
737
738 /* NCSI does not support APE events */
739 if (tg3_flag(tp, APE_HAS_NCSI))
740 return;
741
742 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
743 if (apedata != APE_SEG_SIG_MAGIC)
744 return;
745
746 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
747 if (!(apedata & APE_FW_STATUS_READY))
748 return;
749
750 /* Wait for up to 1 millisecond for APE to service previous event. */
751 for (i = 0; i < 10; i++) {
752 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
753 return;
754
755 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
756
757 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
758 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
759 event | APE_EVENT_STATUS_EVENT_PENDING);
760
761 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
762
763 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
764 break;
765
766 udelay(100);
767 }
768
769 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
770 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
771}
772
773static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
774{
775 u32 event;
776 u32 apedata;
777
778 if (!tg3_flag(tp, ENABLE_APE))
779 return;
780
781 switch (kind) {
782 case RESET_KIND_INIT:
783 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
784 APE_HOST_SEG_SIG_MAGIC);
785 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
786 APE_HOST_SEG_LEN_MAGIC);
787 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
788 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
789 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
790 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
791 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
792 APE_HOST_BEHAV_NO_PHYLOCK);
793 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
794 TG3_APE_HOST_DRVR_STATE_START);
795
796 event = APE_EVENT_STATUS_STATE_START;
797 break;
798 case RESET_KIND_SHUTDOWN:
799 /* With the interface we are currently using,
800 * APE does not track driver state. Wiping
801 * out the HOST SEGMENT SIGNATURE forces
802 * the APE to assume OS absent status.
803 */
804 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
805
806 if (device_may_wakeup(&tp->pdev->dev) &&
807 tg3_flag(tp, WOL_ENABLE)) {
808 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
809 TG3_APE_HOST_WOL_SPEED_AUTO);
810 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
811 } else
812 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
813
814 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
815
816 event = APE_EVENT_STATUS_STATE_UNLOAD;
817 break;
818 case RESET_KIND_SUSPEND:
819 event = APE_EVENT_STATUS_STATE_SUSPEND;
820 break;
821 default:
822 return;
823 }
824
825 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
826
827 tg3_ape_send_event(tp, event);
828}
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830static void tg3_disable_ints(struct tg3 *tp)
831{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000832 int i;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 tw32(TG3PCI_MISC_HOST_CTRL,
835 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000836 for (i = 0; i < tp->irq_max; i++)
837 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840static void tg3_enable_ints(struct tg3 *tp)
841{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000842 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000843
Michael Chanbbe832c2005-06-24 20:20:04 -0700844 tp->irq_sync = 0;
845 wmb();
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 tw32(TG3PCI_MISC_HOST_CTRL,
848 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000849
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000850 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000851 for (i = 0; i < tp->irq_cnt; i++) {
852 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000853
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000854 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +0000855 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000856 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
857
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000858 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000859 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000860
861 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +0000862 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000863 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
864 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
865 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000866 tw32(HOSTCC_MODE, tp->coal_now);
867
868 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Matt Carlson17375d22009-08-28 14:02:18 +0000871static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700872{
Matt Carlson17375d22009-08-28 14:02:18 +0000873 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000874 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700875 unsigned int work_exists = 0;
876
877 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +0000878 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -0700879 if (sblk->status & SD_STATUS_LINK_CHG)
880 work_exists = 1;
881 }
882 /* check for RX/TX work to do */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000883 if (sblk->idx[0].tx_consumer != tnapi->tx_cons ||
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000884 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700885 work_exists = 1;
886
887 return work_exists;
888}
889
Matt Carlson17375d22009-08-28 14:02:18 +0000890/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700891 * similar to tg3_enable_ints, but it accurately determines whether there
892 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400893 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 */
Matt Carlson17375d22009-08-28 14:02:18 +0000895static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Matt Carlson17375d22009-08-28 14:02:18 +0000897 struct tg3 *tp = tnapi->tp;
898
Matt Carlson898a56f2009-08-28 14:02:40 +0000899 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 mmiowb();
901
David S. Millerfac9b832005-05-18 22:46:34 -0700902 /* When doing tagged status, this work check is unnecessary.
903 * The last_tag we write above tells the chip which piece of
904 * work we've completed.
905 */
Joe Perches63c3a662011-04-26 08:12:10 +0000906 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700907 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000908 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911static void tg3_switch_clocks(struct tg3 *tp)
912{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000913 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 u32 orig_clock_ctrl;
915
Joe Perches63c3a662011-04-26 08:12:10 +0000916 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700917 return;
918
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000919 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 orig_clock_ctrl = clock_ctrl;
922 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
923 CLOCK_CTRL_CLKRUN_OENABLE |
924 0x1f);
925 tp->pci_clock_ctrl = clock_ctrl;
926
Joe Perches63c3a662011-04-26 08:12:10 +0000927 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800929 tw32_wait_f(TG3PCI_CLOCK_CTRL,
930 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800933 tw32_wait_f(TG3PCI_CLOCK_CTRL,
934 clock_ctrl |
935 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
936 40);
937 tw32_wait_f(TG3PCI_CLOCK_CTRL,
938 clock_ctrl | (CLOCK_CTRL_ALTCLK),
939 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800941 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
944#define PHY_BUSY_LOOPS 5000
945
946static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
947{
948 u32 frame_val;
949 unsigned int loops;
950 int ret;
951
952 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
953 tw32_f(MAC_MI_MODE,
954 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
955 udelay(80);
956 }
957
958 *val = 0x0;
959
Matt Carlson882e9792009-09-01 13:21:36 +0000960 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 MI_COM_PHY_ADDR_MASK);
962 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
963 MI_COM_REG_ADDR_MASK);
964 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 tw32_f(MAC_MI_COM, frame_val);
967
968 loops = PHY_BUSY_LOOPS;
969 while (loops != 0) {
970 udelay(10);
971 frame_val = tr32(MAC_MI_COM);
972
973 if ((frame_val & MI_COM_BUSY) == 0) {
974 udelay(5);
975 frame_val = tr32(MAC_MI_COM);
976 break;
977 }
978 loops -= 1;
979 }
980
981 ret = -EBUSY;
982 if (loops != 0) {
983 *val = frame_val & MI_COM_DATA_MASK;
984 ret = 0;
985 }
986
987 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
988 tw32_f(MAC_MI_MODE, tp->mi_mode);
989 udelay(80);
990 }
991
992 return ret;
993}
994
995static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
996{
997 u32 frame_val;
998 unsigned int loops;
999 int ret;
1000
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001001 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson221c5632011-06-13 13:39:01 +00001002 (reg == MII_CTRL1000 || reg == MII_TG3_AUX_CTRL))
Michael Chanb5d37722006-09-27 16:06:21 -07001003 return 0;
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1006 tw32_f(MAC_MI_MODE,
1007 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1008 udelay(80);
1009 }
1010
Matt Carlson882e9792009-09-01 13:21:36 +00001011 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 MI_COM_PHY_ADDR_MASK);
1013 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1014 MI_COM_REG_ADDR_MASK);
1015 frame_val |= (val & MI_COM_DATA_MASK);
1016 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 tw32_f(MAC_MI_COM, frame_val);
1019
1020 loops = PHY_BUSY_LOOPS;
1021 while (loops != 0) {
1022 udelay(10);
1023 frame_val = tr32(MAC_MI_COM);
1024 if ((frame_val & MI_COM_BUSY) == 0) {
1025 udelay(5);
1026 frame_val = tr32(MAC_MI_COM);
1027 break;
1028 }
1029 loops -= 1;
1030 }
1031
1032 ret = -EBUSY;
1033 if (loops != 0)
1034 ret = 0;
1035
1036 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1037 tw32_f(MAC_MI_MODE, tp->mi_mode);
1038 udelay(80);
1039 }
1040
1041 return ret;
1042}
1043
Matt Carlsonb0988c12011-04-20 07:57:39 +00001044static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
1045{
1046 int err;
1047
1048 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1049 if (err)
1050 goto done;
1051
1052 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1053 if (err)
1054 goto done;
1055
1056 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1057 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1058 if (err)
1059 goto done;
1060
1061 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
1062
1063done:
1064 return err;
1065}
1066
1067static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
1068{
1069 int err;
1070
1071 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1072 if (err)
1073 goto done;
1074
1075 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1076 if (err)
1077 goto done;
1078
1079 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1080 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1081 if (err)
1082 goto done;
1083
1084 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
1085
1086done:
1087 return err;
1088}
1089
1090static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
1091{
1092 int err;
1093
1094 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1095 if (!err)
1096 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
1097
1098 return err;
1099}
1100
1101static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1102{
1103 int err;
1104
1105 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1106 if (!err)
1107 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1108
1109 return err;
1110}
1111
Matt Carlson15ee95c2011-04-20 07:57:40 +00001112static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
1113{
1114 int err;
1115
1116 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
1117 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
1118 MII_TG3_AUXCTL_SHDWSEL_MISC);
1119 if (!err)
1120 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
1121
1122 return err;
1123}
1124
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001125static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
1126{
1127 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
1128 set |= MII_TG3_AUXCTL_MISC_WREN;
1129
1130 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
1131}
1132
Matt Carlson1d36ba42011-04-20 07:57:42 +00001133#define TG3_PHY_AUXCTL_SMDSP_ENABLE(tp) \
1134 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1135 MII_TG3_AUXCTL_ACTL_SMDSP_ENA | \
1136 MII_TG3_AUXCTL_ACTL_TX_6DB)
1137
1138#define TG3_PHY_AUXCTL_SMDSP_DISABLE(tp) \
1139 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1140 MII_TG3_AUXCTL_ACTL_TX_6DB);
1141
Matt Carlson95e28692008-05-25 23:44:14 -07001142static int tg3_bmcr_reset(struct tg3 *tp)
1143{
1144 u32 phy_control;
1145 int limit, err;
1146
1147 /* OK, reset it, and poll the BMCR_RESET bit until it
1148 * clears or we time out.
1149 */
1150 phy_control = BMCR_RESET;
1151 err = tg3_writephy(tp, MII_BMCR, phy_control);
1152 if (err != 0)
1153 return -EBUSY;
1154
1155 limit = 5000;
1156 while (limit--) {
1157 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1158 if (err != 0)
1159 return -EBUSY;
1160
1161 if ((phy_control & BMCR_RESET) == 0) {
1162 udelay(40);
1163 break;
1164 }
1165 udelay(10);
1166 }
Roel Kluind4675b52009-02-12 16:33:27 -08001167 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001168 return -EBUSY;
1169
1170 return 0;
1171}
1172
Matt Carlson158d7ab2008-05-29 01:37:54 -07001173static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1174{
Francois Romieu3d165432009-01-19 16:56:50 -08001175 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001176 u32 val;
1177
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001178 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001179
1180 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001181 val = -EIO;
1182
1183 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001184
1185 return val;
1186}
1187
1188static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1189{
Francois Romieu3d165432009-01-19 16:56:50 -08001190 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001191 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001192
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001193 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001194
1195 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001196 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001197
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001198 spin_unlock_bh(&tp->lock);
1199
1200 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001201}
1202
1203static int tg3_mdio_reset(struct mii_bus *bp)
1204{
1205 return 0;
1206}
1207
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001208static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001209{
1210 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001211 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001212
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001213 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001214 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001215 case PHY_ID_BCM50610:
1216 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001217 val = MAC_PHYCFG2_50610_LED_MODES;
1218 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001219 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001220 val = MAC_PHYCFG2_AC131_LED_MODES;
1221 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001222 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001223 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1224 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001225 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001226 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1227 break;
1228 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001229 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001230 }
1231
1232 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1233 tw32(MAC_PHYCFG2, val);
1234
1235 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001236 val &= ~(MAC_PHYCFG1_RGMII_INT |
1237 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1238 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001239 tw32(MAC_PHYCFG1, val);
1240
1241 return;
1242 }
1243
Joe Perches63c3a662011-04-26 08:12:10 +00001244 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001245 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1246 MAC_PHYCFG2_FMODE_MASK_MASK |
1247 MAC_PHYCFG2_GMODE_MASK_MASK |
1248 MAC_PHYCFG2_ACT_MASK_MASK |
1249 MAC_PHYCFG2_QUAL_MASK_MASK |
1250 MAC_PHYCFG2_INBAND_ENABLE;
1251
1252 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001253
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001254 val = tr32(MAC_PHYCFG1);
1255 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1256 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001257 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1258 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001259 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001260 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001261 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1262 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001263 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1264 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1265 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001266
Matt Carlsona9daf362008-05-25 23:49:44 -07001267 val = tr32(MAC_EXT_RGMII_MODE);
1268 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1269 MAC_RGMII_MODE_RX_QUALITY |
1270 MAC_RGMII_MODE_RX_ACTIVITY |
1271 MAC_RGMII_MODE_RX_ENG_DET |
1272 MAC_RGMII_MODE_TX_ENABLE |
1273 MAC_RGMII_MODE_TX_LOWPWR |
1274 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001275 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1276 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001277 val |= MAC_RGMII_MODE_RX_INT_B |
1278 MAC_RGMII_MODE_RX_QUALITY |
1279 MAC_RGMII_MODE_RX_ACTIVITY |
1280 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001281 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001282 val |= MAC_RGMII_MODE_TX_ENABLE |
1283 MAC_RGMII_MODE_TX_LOWPWR |
1284 MAC_RGMII_MODE_TX_RESET;
1285 }
1286 tw32(MAC_EXT_RGMII_MODE, val);
1287}
1288
Matt Carlson158d7ab2008-05-29 01:37:54 -07001289static void tg3_mdio_start(struct tg3 *tp)
1290{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001291 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1292 tw32_f(MAC_MI_MODE, tp->mi_mode);
1293 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001294
Joe Perches63c3a662011-04-26 08:12:10 +00001295 if (tg3_flag(tp, MDIOBUS_INITED) &&
Matt Carlson9ea48182010-02-17 15:17:01 +00001296 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1297 tg3_mdio_config_5785(tp);
1298}
1299
1300static int tg3_mdio_init(struct tg3 *tp)
1301{
1302 int i;
1303 u32 reg;
1304 struct phy_device *phydev;
1305
Joe Perches63c3a662011-04-26 08:12:10 +00001306 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001307 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001308
Matt Carlson69f11c92011-07-13 09:27:30 +00001309 tp->phy_addr = tp->pci_fn + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001310
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001311 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1312 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1313 else
1314 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1315 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001316 if (is_serdes)
1317 tp->phy_addr += 7;
1318 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001319 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001320
Matt Carlson158d7ab2008-05-29 01:37:54 -07001321 tg3_mdio_start(tp);
1322
Joe Perches63c3a662011-04-26 08:12:10 +00001323 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001324 return 0;
1325
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001326 tp->mdio_bus = mdiobus_alloc();
1327 if (tp->mdio_bus == NULL)
1328 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001329
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001330 tp->mdio_bus->name = "tg3 mdio bus";
1331 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001332 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001333 tp->mdio_bus->priv = tp;
1334 tp->mdio_bus->parent = &tp->pdev->dev;
1335 tp->mdio_bus->read = &tg3_mdio_read;
1336 tp->mdio_bus->write = &tg3_mdio_write;
1337 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001338 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001339 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001340
1341 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001342 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001343
1344 /* The bus registration will look for all the PHYs on the mdio bus.
1345 * Unfortunately, it does not ensure the PHY is powered up before
1346 * accessing the PHY ID registers. A chip reset is the
1347 * quickest way to bring the device back to an operational state..
1348 */
1349 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1350 tg3_bmcr_reset(tp);
1351
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001352 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001353 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001354 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001355 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001356 return i;
1357 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001358
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001359 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001360
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001361 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001362 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001363 mdiobus_unregister(tp->mdio_bus);
1364 mdiobus_free(tp->mdio_bus);
1365 return -ENODEV;
1366 }
1367
1368 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001369 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001370 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001371 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001372 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001373 case PHY_ID_BCM50610:
1374 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001375 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001376 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001377 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001378 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001379 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001380 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001381 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001382 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001383 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001384 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001385 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001386 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001387 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001388 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001389 case PHY_ID_RTL8201E:
1390 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001391 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e092009-11-02 14:31:11 +00001392 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001393 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001394 break;
1395 }
1396
Joe Perches63c3a662011-04-26 08:12:10 +00001397 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001398
1399 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1400 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001401
1402 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001403}
1404
1405static void tg3_mdio_fini(struct tg3 *tp)
1406{
Joe Perches63c3a662011-04-26 08:12:10 +00001407 if (tg3_flag(tp, MDIOBUS_INITED)) {
1408 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001409 mdiobus_unregister(tp->mdio_bus);
1410 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001411 }
1412}
1413
Matt Carlson95e28692008-05-25 23:44:14 -07001414/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001415static inline void tg3_generate_fw_event(struct tg3 *tp)
1416{
1417 u32 val;
1418
1419 val = tr32(GRC_RX_CPU_EVENT);
1420 val |= GRC_RX_CPU_DRIVER_EVENT;
1421 tw32_f(GRC_RX_CPU_EVENT, val);
1422
1423 tp->last_event_jiffies = jiffies;
1424}
1425
1426#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1427
1428/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001429static void tg3_wait_for_event_ack(struct tg3 *tp)
1430{
1431 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001432 unsigned int delay_cnt;
1433 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001434
Matt Carlson4ba526c2008-08-15 14:10:04 -07001435 /* If enough time has passed, no wait is necessary. */
1436 time_remain = (long)(tp->last_event_jiffies + 1 +
1437 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1438 (long)jiffies;
1439 if (time_remain < 0)
1440 return;
1441
1442 /* Check if we can shorten the wait time. */
1443 delay_cnt = jiffies_to_usecs(time_remain);
1444 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1445 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1446 delay_cnt = (delay_cnt >> 3) + 1;
1447
1448 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001449 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1450 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001451 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001452 }
1453}
1454
1455/* tp->lock is held. */
1456static void tg3_ump_link_report(struct tg3 *tp)
1457{
1458 u32 reg;
1459 u32 val;
1460
Joe Perches63c3a662011-04-26 08:12:10 +00001461 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson95e28692008-05-25 23:44:14 -07001462 return;
1463
1464 tg3_wait_for_event_ack(tp);
1465
1466 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1467
1468 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1469
1470 val = 0;
1471 if (!tg3_readphy(tp, MII_BMCR, &reg))
1472 val = reg << 16;
1473 if (!tg3_readphy(tp, MII_BMSR, &reg))
1474 val |= (reg & 0xffff);
1475 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, val);
1476
1477 val = 0;
1478 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1479 val = reg << 16;
1480 if (!tg3_readphy(tp, MII_LPA, &reg))
1481 val |= (reg & 0xffff);
1482 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 4, val);
1483
1484 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001485 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001486 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1487 val = reg << 16;
1488 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1489 val |= (reg & 0xffff);
1490 }
1491 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 8, val);
1492
1493 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1494 val = reg << 16;
1495 else
1496 val = 0;
1497 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 12, val);
1498
Matt Carlson4ba526c2008-08-15 14:10:04 -07001499 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001500}
1501
Matt Carlson8d5a89b2011-08-31 11:44:51 +00001502/* tp->lock is held. */
1503static void tg3_stop_fw(struct tg3 *tp)
1504{
1505 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
1506 /* Wait for RX cpu to ACK the previous event. */
1507 tg3_wait_for_event_ack(tp);
1508
1509 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
1510
1511 tg3_generate_fw_event(tp);
1512
1513 /* Wait for RX cpu to ACK this event. */
1514 tg3_wait_for_event_ack(tp);
1515 }
1516}
1517
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001518/* tp->lock is held. */
1519static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
1520{
1521 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
1522 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
1523
1524 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1525 switch (kind) {
1526 case RESET_KIND_INIT:
1527 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1528 DRV_STATE_START);
1529 break;
1530
1531 case RESET_KIND_SHUTDOWN:
1532 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1533 DRV_STATE_UNLOAD);
1534 break;
1535
1536 case RESET_KIND_SUSPEND:
1537 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1538 DRV_STATE_SUSPEND);
1539 break;
1540
1541 default:
1542 break;
1543 }
1544 }
1545
1546 if (kind == RESET_KIND_INIT ||
1547 kind == RESET_KIND_SUSPEND)
1548 tg3_ape_driver_state_change(tp, kind);
1549}
1550
1551/* tp->lock is held. */
1552static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
1553{
1554 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1555 switch (kind) {
1556 case RESET_KIND_INIT:
1557 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1558 DRV_STATE_START_DONE);
1559 break;
1560
1561 case RESET_KIND_SHUTDOWN:
1562 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1563 DRV_STATE_UNLOAD_DONE);
1564 break;
1565
1566 default:
1567 break;
1568 }
1569 }
1570
1571 if (kind == RESET_KIND_SHUTDOWN)
1572 tg3_ape_driver_state_change(tp, kind);
1573}
1574
1575/* tp->lock is held. */
1576static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
1577{
1578 if (tg3_flag(tp, ENABLE_ASF)) {
1579 switch (kind) {
1580 case RESET_KIND_INIT:
1581 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1582 DRV_STATE_START);
1583 break;
1584
1585 case RESET_KIND_SHUTDOWN:
1586 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1587 DRV_STATE_UNLOAD);
1588 break;
1589
1590 case RESET_KIND_SUSPEND:
1591 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1592 DRV_STATE_SUSPEND);
1593 break;
1594
1595 default:
1596 break;
1597 }
1598 }
1599}
1600
1601static int tg3_poll_fw(struct tg3 *tp)
1602{
1603 int i;
1604 u32 val;
1605
1606 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1607 /* Wait up to 20ms for init done. */
1608 for (i = 0; i < 200; i++) {
1609 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
1610 return 0;
1611 udelay(100);
1612 }
1613 return -ENODEV;
1614 }
1615
1616 /* Wait for firmware initialization to complete. */
1617 for (i = 0; i < 100000; i++) {
1618 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
1619 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
1620 break;
1621 udelay(10);
1622 }
1623
1624 /* Chip might not be fitted with firmware. Some Sun onboard
1625 * parts are configured like that. So don't signal the timeout
1626 * of the above loop as an error, but do report the lack of
1627 * running firmware once.
1628 */
1629 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
1630 tg3_flag_set(tp, NO_FWARE_REPORTED);
1631
1632 netdev_info(tp->dev, "No firmware running\n");
1633 }
1634
1635 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
1636 /* The 57765 A0 needs a little more
1637 * time to do some important work.
1638 */
1639 mdelay(10);
1640 }
1641
1642 return 0;
1643}
1644
Matt Carlson95e28692008-05-25 23:44:14 -07001645static void tg3_link_report(struct tg3 *tp)
1646{
1647 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001648 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001649 tg3_ump_link_report(tp);
1650 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001651 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1652 (tp->link_config.active_speed == SPEED_1000 ?
1653 1000 :
1654 (tp->link_config.active_speed == SPEED_100 ?
1655 100 : 10)),
1656 (tp->link_config.active_duplex == DUPLEX_FULL ?
1657 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001658
Joe Perches05dbe002010-02-17 19:44:19 +00001659 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1660 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1661 "on" : "off",
1662 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1663 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001664
1665 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1666 netdev_info(tp->dev, "EEE is %s\n",
1667 tp->setlpicnt ? "enabled" : "disabled");
1668
Matt Carlson95e28692008-05-25 23:44:14 -07001669 tg3_ump_link_report(tp);
1670 }
1671}
1672
1673static u16 tg3_advert_flowctrl_1000T(u8 flow_ctrl)
1674{
1675 u16 miireg;
1676
Steve Glendinninge18ce342008-12-16 02:00:00 -08001677 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001678 miireg = ADVERTISE_PAUSE_CAP;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001679 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001680 miireg = ADVERTISE_PAUSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001681 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001682 miireg = ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1683 else
1684 miireg = 0;
1685
1686 return miireg;
1687}
1688
1689static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1690{
1691 u16 miireg;
1692
Steve Glendinninge18ce342008-12-16 02:00:00 -08001693 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001694 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001695 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001696 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001697 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001698 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1699 else
1700 miireg = 0;
1701
1702 return miireg;
1703}
1704
Matt Carlson95e28692008-05-25 23:44:14 -07001705static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1706{
1707 u8 cap = 0;
1708
1709 if (lcladv & ADVERTISE_1000XPAUSE) {
1710 if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1711 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001712 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001713 else if (rmtadv & LPA_1000XPAUSE_ASYM)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001714 cap = FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001715 } else {
1716 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001717 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001718 }
1719 } else if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1720 if ((rmtadv & LPA_1000XPAUSE) && (rmtadv & LPA_1000XPAUSE_ASYM))
Steve Glendinninge18ce342008-12-16 02:00:00 -08001721 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001722 }
1723
1724 return cap;
1725}
1726
Matt Carlsonf51f3562008-05-25 23:45:08 -07001727static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001728{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001729 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001730 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001731 u32 old_rx_mode = tp->rx_mode;
1732 u32 old_tx_mode = tp->tx_mode;
1733
Joe Perches63c3a662011-04-26 08:12:10 +00001734 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001735 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001736 else
1737 autoneg = tp->link_config.autoneg;
1738
Joe Perches63c3a662011-04-26 08:12:10 +00001739 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001740 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001741 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001742 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001743 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001744 } else
1745 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001746
Matt Carlsonf51f3562008-05-25 23:45:08 -07001747 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001748
Steve Glendinninge18ce342008-12-16 02:00:00 -08001749 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001750 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1751 else
1752 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1753
Matt Carlsonf51f3562008-05-25 23:45:08 -07001754 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001755 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001756
Steve Glendinninge18ce342008-12-16 02:00:00 -08001757 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001758 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1759 else
1760 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1761
Matt Carlsonf51f3562008-05-25 23:45:08 -07001762 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001763 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001764}
1765
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001766static void tg3_adjust_link(struct net_device *dev)
1767{
1768 u8 oldflowctrl, linkmesg = 0;
1769 u32 mac_mode, lcl_adv, rmt_adv;
1770 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001771 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001772
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001773 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001774
1775 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1776 MAC_MODE_HALF_DUPLEX);
1777
1778 oldflowctrl = tp->link_config.active_flowctrl;
1779
1780 if (phydev->link) {
1781 lcl_adv = 0;
1782 rmt_adv = 0;
1783
1784 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1785 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001786 else if (phydev->speed == SPEED_1000 ||
1787 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001788 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001789 else
1790 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001791
1792 if (phydev->duplex == DUPLEX_HALF)
1793 mac_mode |= MAC_MODE_HALF_DUPLEX;
1794 else {
1795 lcl_adv = tg3_advert_flowctrl_1000T(
1796 tp->link_config.flowctrl);
1797
1798 if (phydev->pause)
1799 rmt_adv = LPA_PAUSE_CAP;
1800 if (phydev->asym_pause)
1801 rmt_adv |= LPA_PAUSE_ASYM;
1802 }
1803
1804 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1805 } else
1806 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1807
1808 if (mac_mode != tp->mac_mode) {
1809 tp->mac_mode = mac_mode;
1810 tw32_f(MAC_MODE, tp->mac_mode);
1811 udelay(40);
1812 }
1813
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001814 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1815 if (phydev->speed == SPEED_10)
1816 tw32(MAC_MI_STAT,
1817 MAC_MI_STAT_10MBPS_MODE |
1818 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1819 else
1820 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1821 }
1822
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001823 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1824 tw32(MAC_TX_LENGTHS,
1825 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1826 (6 << TX_LENGTHS_IPG_SHIFT) |
1827 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1828 else
1829 tw32(MAC_TX_LENGTHS,
1830 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1831 (6 << TX_LENGTHS_IPG_SHIFT) |
1832 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1833
1834 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1835 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1836 phydev->speed != tp->link_config.active_speed ||
1837 phydev->duplex != tp->link_config.active_duplex ||
1838 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001839 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001840
1841 tp->link_config.active_speed = phydev->speed;
1842 tp->link_config.active_duplex = phydev->duplex;
1843
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001844 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001845
1846 if (linkmesg)
1847 tg3_link_report(tp);
1848}
1849
1850static int tg3_phy_init(struct tg3 *tp)
1851{
1852 struct phy_device *phydev;
1853
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001854 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001855 return 0;
1856
1857 /* Bring the PHY back to a known state. */
1858 tg3_bmcr_reset(tp);
1859
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001860 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001861
1862 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad32008-11-10 13:55:14 -08001863 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001864 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001865 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001866 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001867 return PTR_ERR(phydev);
1868 }
1869
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001870 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001871 switch (phydev->interface) {
1872 case PHY_INTERFACE_MODE_GMII:
1873 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001874 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001875 phydev->supported &= (PHY_GBIT_FEATURES |
1876 SUPPORTED_Pause |
1877 SUPPORTED_Asym_Pause);
1878 break;
1879 }
1880 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001881 case PHY_INTERFACE_MODE_MII:
1882 phydev->supported &= (PHY_BASIC_FEATURES |
1883 SUPPORTED_Pause |
1884 SUPPORTED_Asym_Pause);
1885 break;
1886 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001887 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001888 return -EINVAL;
1889 }
1890
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001891 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001892
1893 phydev->advertising = phydev->supported;
1894
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001895 return 0;
1896}
1897
1898static void tg3_phy_start(struct tg3 *tp)
1899{
1900 struct phy_device *phydev;
1901
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001902 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001903 return;
1904
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001905 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001906
Matt Carlson80096062010-08-02 11:26:06 +00001907 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
1908 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001909 phydev->speed = tp->link_config.orig_speed;
1910 phydev->duplex = tp->link_config.orig_duplex;
1911 phydev->autoneg = tp->link_config.orig_autoneg;
1912 phydev->advertising = tp->link_config.orig_advertising;
1913 }
1914
1915 phy_start(phydev);
1916
1917 phy_start_aneg(phydev);
1918}
1919
1920static void tg3_phy_stop(struct tg3 *tp)
1921{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001922 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001923 return;
1924
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001925 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001926}
1927
1928static void tg3_phy_fini(struct tg3 *tp)
1929{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001930 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001931 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001932 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001933 }
1934}
1935
Matt Carlson941ec902011-08-19 13:58:23 +00001936static int tg3_phy_set_extloopbk(struct tg3 *tp)
1937{
1938 int err;
1939 u32 val;
1940
1941 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
1942 return 0;
1943
1944 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
1945 /* Cannot do read-modify-write on 5401 */
1946 err = tg3_phy_auxctl_write(tp,
1947 MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
1948 MII_TG3_AUXCTL_ACTL_EXTLOOPBK |
1949 0x4c20);
1950 goto done;
1951 }
1952
1953 err = tg3_phy_auxctl_read(tp,
1954 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
1955 if (err)
1956 return err;
1957
1958 val |= MII_TG3_AUXCTL_ACTL_EXTLOOPBK;
1959 err = tg3_phy_auxctl_write(tp,
1960 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, val);
1961
1962done:
1963 return err;
1964}
1965
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001966static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1967{
1968 u32 phytest;
1969
1970 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1971 u32 phy;
1972
1973 tg3_writephy(tp, MII_TG3_FET_TEST,
1974 phytest | MII_TG3_FET_SHADOW_EN);
1975 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1976 if (enable)
1977 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1978 else
1979 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1980 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1981 }
1982 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1983 }
1984}
1985
Matt Carlson6833c042008-11-21 17:18:59 -08001986static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1987{
1988 u32 reg;
1989
Joe Perches63c3a662011-04-26 08:12:10 +00001990 if (!tg3_flag(tp, 5705_PLUS) ||
1991 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001992 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001993 return;
1994
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001995 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001996 tg3_phy_fet_toggle_apd(tp, enable);
1997 return;
1998 }
1999
Matt Carlson6833c042008-11-21 17:18:59 -08002000 reg = MII_TG3_MISC_SHDW_WREN |
2001 MII_TG3_MISC_SHDW_SCR5_SEL |
2002 MII_TG3_MISC_SHDW_SCR5_LPED |
2003 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
2004 MII_TG3_MISC_SHDW_SCR5_SDTL |
2005 MII_TG3_MISC_SHDW_SCR5_C125OE;
2006 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
2007 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
2008
2009 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2010
2011
2012 reg = MII_TG3_MISC_SHDW_WREN |
2013 MII_TG3_MISC_SHDW_APD_SEL |
2014 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
2015 if (enable)
2016 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
2017
2018 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2019}
2020
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002021static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
2022{
2023 u32 phy;
2024
Joe Perches63c3a662011-04-26 08:12:10 +00002025 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002026 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002027 return;
2028
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002029 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002030 u32 ephy;
2031
Matt Carlson535ef6e2009-08-25 10:09:36 +00002032 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
2033 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
2034
2035 tg3_writephy(tp, MII_TG3_FET_TEST,
2036 ephy | MII_TG3_FET_SHADOW_EN);
2037 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002038 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00002039 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002040 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00002041 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
2042 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002043 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00002044 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002045 }
2046 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00002047 int ret;
2048
2049 ret = tg3_phy_auxctl_read(tp,
2050 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
2051 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002052 if (enable)
2053 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
2054 else
2055 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002056 tg3_phy_auxctl_write(tp,
2057 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002058 }
2059 }
2060}
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062static void tg3_phy_set_wirespeed(struct tg3 *tp)
2063{
Matt Carlson15ee95c2011-04-20 07:57:40 +00002064 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 u32 val;
2066
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002067 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return;
2069
Matt Carlson15ee95c2011-04-20 07:57:40 +00002070 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
2071 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002072 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
2073 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074}
2075
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002076static void tg3_phy_apply_otp(struct tg3 *tp)
2077{
2078 u32 otp, phy;
2079
2080 if (!tp->phy_otp)
2081 return;
2082
2083 otp = tp->phy_otp;
2084
Matt Carlson1d36ba42011-04-20 07:57:42 +00002085 if (TG3_PHY_AUXCTL_SMDSP_ENABLE(tp))
2086 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002087
2088 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
2089 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
2090 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
2091
2092 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
2093 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
2094 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
2095
2096 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
2097 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
2098 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
2099
2100 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
2101 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
2102
2103 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
2104 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
2105
2106 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
2107 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
2108 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
2109
Matt Carlson1d36ba42011-04-20 07:57:42 +00002110 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002111}
2112
Matt Carlson52b02d02010-10-14 10:37:41 +00002113static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
2114{
2115 u32 val;
2116
2117 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2118 return;
2119
2120 tp->setlpicnt = 0;
2121
2122 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
2123 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00002124 tp->link_config.active_duplex == DUPLEX_FULL &&
2125 (tp->link_config.active_speed == SPEED_100 ||
2126 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00002127 u32 eeectl;
2128
2129 if (tp->link_config.active_speed == SPEED_1000)
2130 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
2131 else
2132 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
2133
2134 tw32(TG3_CPMU_EEE_CTRL, eeectl);
2135
Matt Carlson3110f5f52010-12-06 08:28:50 +00002136 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
2137 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00002138
Matt Carlsonb0c59432011-05-19 12:12:48 +00002139 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
2140 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00002141 tp->setlpicnt = 2;
2142 }
2143
2144 if (!tp->setlpicnt) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002145 if (current_link_up == 1 &&
2146 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2147 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
2148 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2149 }
2150
Matt Carlson52b02d02010-10-14 10:37:41 +00002151 val = tr32(TG3_CPMU_EEE_MODE);
2152 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
2153 }
2154}
2155
Matt Carlsonb0c59432011-05-19 12:12:48 +00002156static void tg3_phy_eee_enable(struct tg3 *tp)
2157{
2158 u32 val;
2159
2160 if (tp->link_config.active_speed == SPEED_1000 &&
2161 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2162 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2163 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) &&
2164 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002165 val = MII_TG3_DSP_TAP26_ALNOKO |
2166 MII_TG3_DSP_TAP26_RMRXSTO;
2167 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Matt Carlsonb0c59432011-05-19 12:12:48 +00002168 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2169 }
2170
2171 val = tr32(TG3_CPMU_EEE_MODE);
2172 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
2173}
2174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175static int tg3_wait_macro_done(struct tg3 *tp)
2176{
2177 int limit = 100;
2178
2179 while (limit--) {
2180 u32 tmp32;
2181
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002182 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 if ((tmp32 & 0x1000) == 0)
2184 break;
2185 }
2186 }
Roel Kluind4675b52009-02-12 16:33:27 -08002187 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 return -EBUSY;
2189
2190 return 0;
2191}
2192
2193static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
2194{
2195 static const u32 test_pat[4][6] = {
2196 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
2197 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
2198 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
2199 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
2200 };
2201 int chan;
2202
2203 for (chan = 0; chan < 4; chan++) {
2204 int i;
2205
2206 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2207 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002208 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 for (i = 0; i < 6; i++)
2211 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
2212 test_pat[chan][i]);
2213
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002214 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 if (tg3_wait_macro_done(tp)) {
2216 *resetp = 1;
2217 return -EBUSY;
2218 }
2219
2220 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2221 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002222 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 if (tg3_wait_macro_done(tp)) {
2224 *resetp = 1;
2225 return -EBUSY;
2226 }
2227
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002228 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 if (tg3_wait_macro_done(tp)) {
2230 *resetp = 1;
2231 return -EBUSY;
2232 }
2233
2234 for (i = 0; i < 6; i += 2) {
2235 u32 low, high;
2236
2237 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
2238 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
2239 tg3_wait_macro_done(tp)) {
2240 *resetp = 1;
2241 return -EBUSY;
2242 }
2243 low &= 0x7fff;
2244 high &= 0x000f;
2245 if (low != test_pat[chan][i] ||
2246 high != test_pat[chan][i+1]) {
2247 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
2248 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
2249 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
2250
2251 return -EBUSY;
2252 }
2253 }
2254 }
2255
2256 return 0;
2257}
2258
2259static int tg3_phy_reset_chanpat(struct tg3 *tp)
2260{
2261 int chan;
2262
2263 for (chan = 0; chan < 4; chan++) {
2264 int i;
2265
2266 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2267 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002268 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 for (i = 0; i < 6; i++)
2270 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002271 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 if (tg3_wait_macro_done(tp))
2273 return -EBUSY;
2274 }
2275
2276 return 0;
2277}
2278
2279static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
2280{
2281 u32 reg32, phy9_orig;
2282 int retries, do_phy_reset, err;
2283
2284 retries = 10;
2285 do_phy_reset = 1;
2286 do {
2287 if (do_phy_reset) {
2288 err = tg3_bmcr_reset(tp);
2289 if (err)
2290 return err;
2291 do_phy_reset = 0;
2292 }
2293
2294 /* Disable transmitter and interrupt. */
2295 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2296 continue;
2297
2298 reg32 |= 0x3000;
2299 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2300
2301 /* Set full-duplex, 1000 mbps. */
2302 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002303 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
2305 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002306 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 continue;
2308
Matt Carlson221c5632011-06-13 13:39:01 +00002309 tg3_writephy(tp, MII_CTRL1000,
2310 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Matt Carlson1d36ba42011-04-20 07:57:42 +00002312 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
2313 if (err)
2314 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002317 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2320 if (!err)
2321 break;
2322 } while (--retries);
2323
2324 err = tg3_phy_reset_chanpat(tp);
2325 if (err)
2326 return err;
2327
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002328 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002331 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Matt Carlson1d36ba42011-04-20 07:57:42 +00002333 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Matt Carlson221c5632011-06-13 13:39:01 +00002335 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
2337 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2338 reg32 &= ~0x3000;
2339 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2340 } else if (!err)
2341 err = -EBUSY;
2342
2343 return err;
2344}
2345
2346/* This will reset the tigon3 PHY if there is no valid
2347 * link unless the FORCE argument is non-zero.
2348 */
2349static int tg3_phy_reset(struct tg3 *tp)
2350{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002351 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 int err;
2353
Michael Chan60189dd2006-12-17 17:08:07 -08002354 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002355 val = tr32(GRC_MISC_CFG);
2356 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2357 udelay(40);
2358 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002359 err = tg3_readphy(tp, MII_BMSR, &val);
2360 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 if (err != 0)
2362 return -EBUSY;
2363
Michael Chanc8e1e822006-04-29 18:55:17 -07002364 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
2365 netif_carrier_off(tp->dev);
2366 tg3_link_report(tp);
2367 }
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2370 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2371 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
2372 err = tg3_phy_reset_5703_4_5(tp);
2373 if (err)
2374 return err;
2375 goto out;
2376 }
2377
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002378 cpmuctrl = 0;
2379 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
2380 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
2381 cpmuctrl = tr32(TG3_CPMU_CTRL);
2382 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2383 tw32(TG3_CPMU_CTRL,
2384 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2385 }
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 err = tg3_bmcr_reset(tp);
2388 if (err)
2389 return err;
2390
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002391 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002392 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2393 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002394
2395 tw32(TG3_CPMU_CTRL, cpmuctrl);
2396 }
2397
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002398 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2399 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002400 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2401 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2402 CPMU_LSPD_1000MB_MACCLK_12_5) {
2403 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2404 udelay(40);
2405 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2406 }
2407 }
2408
Joe Perches63c3a662011-04-26 08:12:10 +00002409 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002410 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002411 return 0;
2412
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002413 tg3_phy_apply_otp(tp);
2414
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002415 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002416 tg3_phy_toggle_apd(tp, true);
2417 else
2418 tg3_phy_toggle_apd(tp, false);
2419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002421 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
2422 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002423 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2424 tg3_phydsp_write(tp, 0x000a, 0x0323);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002425 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002427
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002428 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002429 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2430 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002432
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002433 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002434 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2435 tg3_phydsp_write(tp, 0x000a, 0x310b);
2436 tg3_phydsp_write(tp, 0x201f, 0x9506);
2437 tg3_phydsp_write(tp, 0x401f, 0x14e2);
2438 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2439 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002440 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002441 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2442 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2443 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2444 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2445 tg3_writephy(tp, MII_TG3_TEST1,
2446 MII_TG3_TEST1_TRIM_EN | 0x4);
2447 } else
2448 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2449
2450 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2451 }
Michael Chanc424cb22006-04-29 18:56:34 -07002452 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 /* Set Extended packet length bit (bit 14) on all chips that */
2455 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002456 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002458 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002459 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002461 err = tg3_phy_auxctl_read(tp,
2462 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2463 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002464 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2465 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 }
2467
2468 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2469 * jumbo frames transmission.
2470 */
Joe Perches63c3a662011-04-26 08:12:10 +00002471 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002472 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002473 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002474 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 }
2476
Michael Chan715116a2006-09-27 16:09:25 -07002477 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002478 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002479 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002480 }
2481
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002482 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 tg3_phy_set_wirespeed(tp);
2484 return 0;
2485}
2486
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002487#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2488#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2489#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2490 TG3_GPIO_MSG_NEED_VAUX)
2491#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2492 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2493 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2494 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2495 (TG3_GPIO_MSG_DRVR_PRES << 12))
2496
2497#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2498 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2499 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2500 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2501 (TG3_GPIO_MSG_NEED_VAUX << 12))
2502
2503static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2504{
2505 u32 status, shift;
2506
2507 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2508 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2509 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2510 else
2511 status = tr32(TG3_CPMU_DRV_STATUS);
2512
2513 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2514 status &= ~(TG3_GPIO_MSG_MASK << shift);
2515 status |= (newstat << shift);
2516
2517 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2518 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2519 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2520 else
2521 tw32(TG3_CPMU_DRV_STATUS, status);
2522
2523 return status >> TG3_APE_GPIO_MSG_SHIFT;
2524}
2525
Matt Carlson520b2752011-06-13 13:39:02 +00002526static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2527{
2528 if (!tg3_flag(tp, IS_NIC))
2529 return 0;
2530
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002531 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2532 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2533 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
2534 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2535 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002536
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002537 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2538
2539 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2540 TG3_GRC_LCLCTL_PWRSW_DELAY);
2541
2542 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2543 } else {
2544 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2545 TG3_GRC_LCLCTL_PWRSW_DELAY);
2546 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002547
Matt Carlson520b2752011-06-13 13:39:02 +00002548 return 0;
2549}
2550
2551static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2552{
2553 u32 grc_local_ctrl;
2554
2555 if (!tg3_flag(tp, IS_NIC) ||
2556 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2557 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)
2558 return;
2559
2560 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2561
2562 tw32_wait_f(GRC_LOCAL_CTRL,
2563 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2564 TG3_GRC_LCLCTL_PWRSW_DELAY);
2565
2566 tw32_wait_f(GRC_LOCAL_CTRL,
2567 grc_local_ctrl,
2568 TG3_GRC_LCLCTL_PWRSW_DELAY);
2569
2570 tw32_wait_f(GRC_LOCAL_CTRL,
2571 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2572 TG3_GRC_LCLCTL_PWRSW_DELAY);
2573}
2574
2575static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2576{
2577 if (!tg3_flag(tp, IS_NIC))
2578 return;
2579
2580 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2581 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2582 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2583 (GRC_LCLCTRL_GPIO_OE0 |
2584 GRC_LCLCTRL_GPIO_OE1 |
2585 GRC_LCLCTRL_GPIO_OE2 |
2586 GRC_LCLCTRL_GPIO_OUTPUT0 |
2587 GRC_LCLCTRL_GPIO_OUTPUT1),
2588 TG3_GRC_LCLCTL_PWRSW_DELAY);
2589 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2590 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2591 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2592 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2593 GRC_LCLCTRL_GPIO_OE1 |
2594 GRC_LCLCTRL_GPIO_OE2 |
2595 GRC_LCLCTRL_GPIO_OUTPUT0 |
2596 GRC_LCLCTRL_GPIO_OUTPUT1 |
2597 tp->grc_local_ctrl;
2598 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2599 TG3_GRC_LCLCTL_PWRSW_DELAY);
2600
2601 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2602 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2603 TG3_GRC_LCLCTL_PWRSW_DELAY);
2604
2605 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2606 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2607 TG3_GRC_LCLCTL_PWRSW_DELAY);
2608 } else {
2609 u32 no_gpio2;
2610 u32 grc_local_ctrl = 0;
2611
2612 /* Workaround to prevent overdrawing Amps. */
2613 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
2614 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2615 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2616 grc_local_ctrl,
2617 TG3_GRC_LCLCTL_PWRSW_DELAY);
2618 }
2619
2620 /* On 5753 and variants, GPIO2 cannot be used. */
2621 no_gpio2 = tp->nic_sram_data_cfg &
2622 NIC_SRAM_DATA_CFG_NO_GPIO2;
2623
2624 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2625 GRC_LCLCTRL_GPIO_OE1 |
2626 GRC_LCLCTRL_GPIO_OE2 |
2627 GRC_LCLCTRL_GPIO_OUTPUT1 |
2628 GRC_LCLCTRL_GPIO_OUTPUT2;
2629 if (no_gpio2) {
2630 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2631 GRC_LCLCTRL_GPIO_OUTPUT2);
2632 }
2633 tw32_wait_f(GRC_LOCAL_CTRL,
2634 tp->grc_local_ctrl | grc_local_ctrl,
2635 TG3_GRC_LCLCTL_PWRSW_DELAY);
2636
2637 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2638
2639 tw32_wait_f(GRC_LOCAL_CTRL,
2640 tp->grc_local_ctrl | grc_local_ctrl,
2641 TG3_GRC_LCLCTL_PWRSW_DELAY);
2642
2643 if (!no_gpio2) {
2644 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2645 tw32_wait_f(GRC_LOCAL_CTRL,
2646 tp->grc_local_ctrl | grc_local_ctrl,
2647 TG3_GRC_LCLCTL_PWRSW_DELAY);
2648 }
2649 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002650}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002651
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002652static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002653{
2654 u32 msg = 0;
2655
2656 /* Serialize power state transitions */
2657 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2658 return;
2659
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002660 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002661 msg = TG3_GPIO_MSG_NEED_VAUX;
2662
2663 msg = tg3_set_function_status(tp, msg);
2664
2665 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2666 goto done;
2667
2668 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2669 tg3_pwrsrc_switch_to_vaux(tp);
2670 else
2671 tg3_pwrsrc_die_with_vmain(tp);
2672
2673done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002674 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002675}
2676
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002677static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678{
Matt Carlson683644b2011-03-09 16:58:23 +00002679 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Matt Carlson334355a2010-01-20 16:58:10 +00002681 /* The GPIOs do something completely different on 57765. */
Joe Perches63c3a662011-04-26 08:12:10 +00002682 if (!tg3_flag(tp, IS_NIC) ||
Matt Carlson334355a2010-01-20 16:58:10 +00002683 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 return;
2685
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002686 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2687 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2688 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002689 tg3_frob_aux_power_5717(tp, include_wol ?
2690 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002691 return;
2692 }
2693
2694 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002695 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002697 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002698
Michael Chanbc1c7562006-03-20 17:48:03 -08002699 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002700 if (dev_peer) {
2701 struct tg3 *tp_peer = netdev_priv(dev_peer);
2702
Joe Perches63c3a662011-04-26 08:12:10 +00002703 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002704 return;
2705
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002706 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002707 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002708 need_vaux = true;
2709 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002712 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2713 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002714 need_vaux = true;
2715
Matt Carlson520b2752011-06-13 13:39:02 +00002716 if (need_vaux)
2717 tg3_pwrsrc_switch_to_vaux(tp);
2718 else
2719 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720}
2721
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002722static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2723{
2724 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2725 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002726 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002727 if (speed != SPEED_10)
2728 return 1;
2729 } else if (speed == SPEED_10)
2730 return 1;
2731
2732 return 0;
2733}
2734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735static int tg3_setup_phy(struct tg3 *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736static int tg3_halt_cpu(struct tg3 *, u32);
2737
Matt Carlson0a459aa2008-11-03 16:54:15 -08002738static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002739{
Matt Carlsonce057f02007-11-12 21:08:03 -08002740 u32 val;
2741
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002742 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Michael Chan51297242007-02-13 12:17:57 -08002743 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2744 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2745 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2746
2747 sg_dig_ctrl |=
2748 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2749 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2750 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2751 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002752 return;
Michael Chan51297242007-02-13 12:17:57 -08002753 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002754
Michael Chan60189dd2006-12-17 17:08:07 -08002755 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002756 tg3_bmcr_reset(tp);
2757 val = tr32(GRC_MISC_CFG);
2758 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2759 udelay(40);
2760 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002761 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002762 u32 phytest;
2763 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2764 u32 phy;
2765
2766 tg3_writephy(tp, MII_ADVERTISE, 0);
2767 tg3_writephy(tp, MII_BMCR,
2768 BMCR_ANENABLE | BMCR_ANRESTART);
2769
2770 tg3_writephy(tp, MII_TG3_FET_TEST,
2771 phytest | MII_TG3_FET_SHADOW_EN);
2772 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2773 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2774 tg3_writephy(tp,
2775 MII_TG3_FET_SHDW_AUXMODE4,
2776 phy);
2777 }
2778 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2779 }
2780 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002781 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002782 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2783 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002784
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002785 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2786 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2787 MII_TG3_AUXCTL_PCTL_VREG_11V;
2788 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002789 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002790
Michael Chan15c3b692006-03-22 01:06:52 -08002791 /* The PHY should not be powered down on some chips because
2792 * of bugs.
2793 */
2794 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2795 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2796 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002797 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Michael Chan15c3b692006-03-22 01:06:52 -08002798 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002799
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002800 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2801 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002802 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2803 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2804 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2805 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2806 }
2807
Michael Chan15c3b692006-03-22 01:06:52 -08002808 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2809}
2810
Matt Carlson3f007892008-11-03 16:51:36 -08002811/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002812static int tg3_nvram_lock(struct tg3 *tp)
2813{
Joe Perches63c3a662011-04-26 08:12:10 +00002814 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002815 int i;
2816
2817 if (tp->nvram_lock_cnt == 0) {
2818 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2819 for (i = 0; i < 8000; i++) {
2820 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2821 break;
2822 udelay(20);
2823 }
2824 if (i == 8000) {
2825 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2826 return -ENODEV;
2827 }
2828 }
2829 tp->nvram_lock_cnt++;
2830 }
2831 return 0;
2832}
2833
2834/* tp->lock is held. */
2835static void tg3_nvram_unlock(struct tg3 *tp)
2836{
Joe Perches63c3a662011-04-26 08:12:10 +00002837 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002838 if (tp->nvram_lock_cnt > 0)
2839 tp->nvram_lock_cnt--;
2840 if (tp->nvram_lock_cnt == 0)
2841 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2842 }
2843}
2844
2845/* tp->lock is held. */
2846static void tg3_enable_nvram_access(struct tg3 *tp)
2847{
Joe Perches63c3a662011-04-26 08:12:10 +00002848 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002849 u32 nvaccess = tr32(NVRAM_ACCESS);
2850
2851 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2852 }
2853}
2854
2855/* tp->lock is held. */
2856static void tg3_disable_nvram_access(struct tg3 *tp)
2857{
Joe Perches63c3a662011-04-26 08:12:10 +00002858 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002859 u32 nvaccess = tr32(NVRAM_ACCESS);
2860
2861 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2862 }
2863}
2864
2865static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2866 u32 offset, u32 *val)
2867{
2868 u32 tmp;
2869 int i;
2870
2871 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2872 return -EINVAL;
2873
2874 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2875 EEPROM_ADDR_DEVID_MASK |
2876 EEPROM_ADDR_READ);
2877 tw32(GRC_EEPROM_ADDR,
2878 tmp |
2879 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2880 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2881 EEPROM_ADDR_ADDR_MASK) |
2882 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2883
2884 for (i = 0; i < 1000; i++) {
2885 tmp = tr32(GRC_EEPROM_ADDR);
2886
2887 if (tmp & EEPROM_ADDR_COMPLETE)
2888 break;
2889 msleep(1);
2890 }
2891 if (!(tmp & EEPROM_ADDR_COMPLETE))
2892 return -EBUSY;
2893
Matt Carlson62cedd12009-04-20 14:52:29 -07002894 tmp = tr32(GRC_EEPROM_DATA);
2895
2896 /*
2897 * The data will always be opposite the native endian
2898 * format. Perform a blind byteswap to compensate.
2899 */
2900 *val = swab32(tmp);
2901
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002902 return 0;
2903}
2904
2905#define NVRAM_CMD_TIMEOUT 10000
2906
2907static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2908{
2909 int i;
2910
2911 tw32(NVRAM_CMD, nvram_cmd);
2912 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2913 udelay(10);
2914 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2915 udelay(10);
2916 break;
2917 }
2918 }
2919
2920 if (i == NVRAM_CMD_TIMEOUT)
2921 return -EBUSY;
2922
2923 return 0;
2924}
2925
2926static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2927{
Joe Perches63c3a662011-04-26 08:12:10 +00002928 if (tg3_flag(tp, NVRAM) &&
2929 tg3_flag(tp, NVRAM_BUFFERED) &&
2930 tg3_flag(tp, FLASH) &&
2931 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002932 (tp->nvram_jedecnum == JEDEC_ATMEL))
2933
2934 addr = ((addr / tp->nvram_pagesize) <<
2935 ATMEL_AT45DB0X1B_PAGE_POS) +
2936 (addr % tp->nvram_pagesize);
2937
2938 return addr;
2939}
2940
2941static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2942{
Joe Perches63c3a662011-04-26 08:12:10 +00002943 if (tg3_flag(tp, NVRAM) &&
2944 tg3_flag(tp, NVRAM_BUFFERED) &&
2945 tg3_flag(tp, FLASH) &&
2946 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002947 (tp->nvram_jedecnum == JEDEC_ATMEL))
2948
2949 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2950 tp->nvram_pagesize) +
2951 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2952
2953 return addr;
2954}
2955
Matt Carlsone4f34112009-02-25 14:25:00 +00002956/* NOTE: Data read in from NVRAM is byteswapped according to
2957 * the byteswapping settings for all other register accesses.
2958 * tg3 devices are BE devices, so on a BE machine, the data
2959 * returned will be exactly as it is seen in NVRAM. On a LE
2960 * machine, the 32-bit value will be byteswapped.
2961 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002962static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2963{
2964 int ret;
2965
Joe Perches63c3a662011-04-26 08:12:10 +00002966 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002967 return tg3_nvram_read_using_eeprom(tp, offset, val);
2968
2969 offset = tg3_nvram_phys_addr(tp, offset);
2970
2971 if (offset > NVRAM_ADDR_MSK)
2972 return -EINVAL;
2973
2974 ret = tg3_nvram_lock(tp);
2975 if (ret)
2976 return ret;
2977
2978 tg3_enable_nvram_access(tp);
2979
2980 tw32(NVRAM_ADDR, offset);
2981 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2982 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2983
2984 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002985 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002986
2987 tg3_disable_nvram_access(tp);
2988
2989 tg3_nvram_unlock(tp);
2990
2991 return ret;
2992}
2993
Matt Carlsona9dc5292009-02-25 14:25:30 +00002994/* Ensures NVRAM data is in bytestream format. */
2995static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002996{
2997 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002998 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002999 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00003000 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003001 return res;
3002}
3003
Matt Carlson997b4f12011-08-31 11:44:53 +00003004#define RX_CPU_SCRATCH_BASE 0x30000
3005#define RX_CPU_SCRATCH_SIZE 0x04000
3006#define TX_CPU_SCRATCH_BASE 0x34000
3007#define TX_CPU_SCRATCH_SIZE 0x04000
3008
3009/* tp->lock is held. */
3010static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
3011{
3012 int i;
3013
3014 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
3015
3016 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
3017 u32 val = tr32(GRC_VCPU_EXT_CTRL);
3018
3019 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
3020 return 0;
3021 }
3022 if (offset == RX_CPU_BASE) {
3023 for (i = 0; i < 10000; i++) {
3024 tw32(offset + CPU_STATE, 0xffffffff);
3025 tw32(offset + CPU_MODE, CPU_MODE_HALT);
3026 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
3027 break;
3028 }
3029
3030 tw32(offset + CPU_STATE, 0xffffffff);
3031 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
3032 udelay(10);
3033 } else {
3034 for (i = 0; i < 10000; i++) {
3035 tw32(offset + CPU_STATE, 0xffffffff);
3036 tw32(offset + CPU_MODE, CPU_MODE_HALT);
3037 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
3038 break;
3039 }
3040 }
3041
3042 if (i >= 10000) {
3043 netdev_err(tp->dev, "%s timed out, %s CPU\n",
3044 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
3045 return -ENODEV;
3046 }
3047
3048 /* Clear firmware's nvram arbitration. */
3049 if (tg3_flag(tp, NVRAM))
3050 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3051 return 0;
3052}
3053
3054struct fw_info {
3055 unsigned int fw_base;
3056 unsigned int fw_len;
3057 const __be32 *fw_data;
3058};
3059
3060/* tp->lock is held. */
3061static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3062 u32 cpu_scratch_base, int cpu_scratch_size,
3063 struct fw_info *info)
3064{
3065 int err, lock_err, i;
3066 void (*write_op)(struct tg3 *, u32, u32);
3067
3068 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3069 netdev_err(tp->dev,
3070 "%s: Trying to load TX cpu firmware which is 5705\n",
3071 __func__);
3072 return -EINVAL;
3073 }
3074
3075 if (tg3_flag(tp, 5705_PLUS))
3076 write_op = tg3_write_mem;
3077 else
3078 write_op = tg3_write_indirect_reg32;
3079
3080 /* It is possible that bootcode is still loading at this point.
3081 * Get the nvram lock first before halting the cpu.
3082 */
3083 lock_err = tg3_nvram_lock(tp);
3084 err = tg3_halt_cpu(tp, cpu_base);
3085 if (!lock_err)
3086 tg3_nvram_unlock(tp);
3087 if (err)
3088 goto out;
3089
3090 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3091 write_op(tp, cpu_scratch_base + i, 0);
3092 tw32(cpu_base + CPU_STATE, 0xffffffff);
3093 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
3094 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
3095 write_op(tp, (cpu_scratch_base +
3096 (info->fw_base & 0xffff) +
3097 (i * sizeof(u32))),
3098 be32_to_cpu(info->fw_data[i]));
3099
3100 err = 0;
3101
3102out:
3103 return err;
3104}
3105
3106/* tp->lock is held. */
3107static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3108{
3109 struct fw_info info;
3110 const __be32 *fw_data;
3111 int err, i;
3112
3113 fw_data = (void *)tp->fw->data;
3114
3115 /* Firmware blob starts with version numbers, followed by
3116 start address and length. We are setting complete length.
3117 length = end_address_of_bss - start_address_of_text.
3118 Remainder is the blob to be loaded contiguously
3119 from start address. */
3120
3121 info.fw_base = be32_to_cpu(fw_data[1]);
3122 info.fw_len = tp->fw->size - 12;
3123 info.fw_data = &fw_data[3];
3124
3125 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3126 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
3127 &info);
3128 if (err)
3129 return err;
3130
3131 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3132 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
3133 &info);
3134 if (err)
3135 return err;
3136
3137 /* Now startup only the RX cpu. */
3138 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3139 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
3140
3141 for (i = 0; i < 5; i++) {
3142 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
3143 break;
3144 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3145 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3146 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
3147 udelay(1000);
3148 }
3149 if (i >= 5) {
3150 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3151 "should be %08x\n", __func__,
3152 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
3153 return -ENODEV;
3154 }
3155 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3156 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
3157
3158 return 0;
3159}
3160
3161/* tp->lock is held. */
3162static int tg3_load_tso_firmware(struct tg3 *tp)
3163{
3164 struct fw_info info;
3165 const __be32 *fw_data;
3166 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
3167 int err, i;
3168
3169 if (tg3_flag(tp, HW_TSO_1) ||
3170 tg3_flag(tp, HW_TSO_2) ||
3171 tg3_flag(tp, HW_TSO_3))
3172 return 0;
3173
3174 fw_data = (void *)tp->fw->data;
3175
3176 /* Firmware blob starts with version numbers, followed by
3177 start address and length. We are setting complete length.
3178 length = end_address_of_bss - start_address_of_text.
3179 Remainder is the blob to be loaded contiguously
3180 from start address. */
3181
3182 info.fw_base = be32_to_cpu(fw_data[1]);
3183 cpu_scratch_size = tp->fw_len;
3184 info.fw_len = tp->fw->size - 12;
3185 info.fw_data = &fw_data[3];
3186
3187 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
3188 cpu_base = RX_CPU_BASE;
3189 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3190 } else {
3191 cpu_base = TX_CPU_BASE;
3192 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3193 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3194 }
3195
3196 err = tg3_load_firmware_cpu(tp, cpu_base,
3197 cpu_scratch_base, cpu_scratch_size,
3198 &info);
3199 if (err)
3200 return err;
3201
3202 /* Now startup the cpu. */
3203 tw32(cpu_base + CPU_STATE, 0xffffffff);
3204 tw32_f(cpu_base + CPU_PC, info.fw_base);
3205
3206 for (i = 0; i < 5; i++) {
3207 if (tr32(cpu_base + CPU_PC) == info.fw_base)
3208 break;
3209 tw32(cpu_base + CPU_STATE, 0xffffffff);
3210 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3211 tw32_f(cpu_base + CPU_PC, info.fw_base);
3212 udelay(1000);
3213 }
3214 if (i >= 5) {
3215 netdev_err(tp->dev,
3216 "%s fails to set CPU PC, is %08x should be %08x\n",
3217 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
3218 return -ENODEV;
3219 }
3220 tw32(cpu_base + CPU_STATE, 0xffffffff);
3221 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3222 return 0;
3223}
3224
3225
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003226/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08003227static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
3228{
3229 u32 addr_high, addr_low;
3230 int i;
3231
3232 addr_high = ((tp->dev->dev_addr[0] << 8) |
3233 tp->dev->dev_addr[1]);
3234 addr_low = ((tp->dev->dev_addr[2] << 24) |
3235 (tp->dev->dev_addr[3] << 16) |
3236 (tp->dev->dev_addr[4] << 8) |
3237 (tp->dev->dev_addr[5] << 0));
3238 for (i = 0; i < 4; i++) {
3239 if (i == 1 && skip_mac_1)
3240 continue;
3241 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
3242 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
3243 }
3244
3245 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3246 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
3247 for (i = 0; i < 12; i++) {
3248 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
3249 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
3250 }
3251 }
3252
3253 addr_high = (tp->dev->dev_addr[0] +
3254 tp->dev->dev_addr[1] +
3255 tp->dev->dev_addr[2] +
3256 tp->dev->dev_addr[3] +
3257 tp->dev->dev_addr[4] +
3258 tp->dev->dev_addr[5]) &
3259 TX_BACKOFF_SEED_MASK;
3260 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3261}
3262
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003263static void tg3_enable_register_access(struct tg3 *tp)
3264{
3265 /*
3266 * Make sure register accesses (indirect or otherwise) will function
3267 * correctly.
3268 */
3269 pci_write_config_dword(tp->pdev,
3270 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
3271}
3272
3273static int tg3_power_up(struct tg3 *tp)
3274{
Matt Carlsonbed98292011-07-13 09:27:29 +00003275 int err;
3276
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003277 tg3_enable_register_access(tp);
3278
Matt Carlsonbed98292011-07-13 09:27:29 +00003279 err = pci_set_power_state(tp->pdev, PCI_D0);
3280 if (!err) {
3281 /* Switch out of Vaux if it is a NIC */
3282 tg3_pwrsrc_switch_to_vmain(tp);
3283 } else {
3284 netdev_err(tp->dev, "Transition to D0 failed\n");
3285 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003286
Matt Carlsonbed98292011-07-13 09:27:29 +00003287 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003288}
3289
3290static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291{
3292 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003293 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003295 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003296
3297 /* Restore the CLKREQ setting. */
Joe Perches63c3a662011-04-26 08:12:10 +00003298 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003299 u16 lnkctl;
3300
3301 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00003302 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003303 &lnkctl);
3304 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3305 pci_write_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00003306 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003307 lnkctl);
3308 }
3309
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
3311 tw32(TG3PCI_MISC_HOST_CTRL,
3312 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
3313
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003314 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00003315 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003316
Joe Perches63c3a662011-04-26 08:12:10 +00003317 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08003318 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003319 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00003320 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003321 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003322 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003323
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00003324 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003325
Matt Carlson80096062010-08-02 11:26:06 +00003326 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003327
3328 tp->link_config.orig_speed = phydev->speed;
3329 tp->link_config.orig_duplex = phydev->duplex;
3330 tp->link_config.orig_autoneg = phydev->autoneg;
3331 tp->link_config.orig_advertising = phydev->advertising;
3332
3333 advertising = ADVERTISED_TP |
3334 ADVERTISED_Pause |
3335 ADVERTISED_Autoneg |
3336 ADVERTISED_10baseT_Half;
3337
Joe Perches63c3a662011-04-26 08:12:10 +00003338 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
3339 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003340 advertising |=
3341 ADVERTISED_100baseT_Half |
3342 ADVERTISED_100baseT_Full |
3343 ADVERTISED_10baseT_Full;
3344 else
3345 advertising |= ADVERTISED_10baseT_Full;
3346 }
3347
3348 phydev->advertising = advertising;
3349
3350 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003351
3352 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00003353 if (phyid != PHY_ID_BCMAC131) {
3354 phyid &= PHY_BCM_OUI_MASK;
3355 if (phyid == PHY_BCM_OUI_1 ||
3356 phyid == PHY_BCM_OUI_2 ||
3357 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08003358 do_low_power = true;
3359 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003360 }
Matt Carlsondd477002008-05-25 23:45:58 -07003361 } else {
Matt Carlson20232762008-12-21 20:18:56 -08003362 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003363
Matt Carlson80096062010-08-02 11:26:06 +00003364 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
3365 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07003366 tp->link_config.orig_speed = tp->link_config.speed;
3367 tp->link_config.orig_duplex = tp->link_config.duplex;
3368 tp->link_config.orig_autoneg = tp->link_config.autoneg;
3369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003371 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Matt Carlsondd477002008-05-25 23:45:58 -07003372 tp->link_config.speed = SPEED_10;
3373 tp->link_config.duplex = DUPLEX_HALF;
3374 tp->link_config.autoneg = AUTONEG_ENABLE;
3375 tg3_setup_phy(tp, 0);
3376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 }
3378
Michael Chanb5d37722006-09-27 16:06:21 -07003379 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
3380 u32 val;
3381
3382 val = tr32(GRC_VCPU_EXT_CTRL);
3383 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00003384 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08003385 int i;
3386 u32 val;
3387
3388 for (i = 0; i < 200; i++) {
3389 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
3390 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
3391 break;
3392 msleep(1);
3393 }
3394 }
Joe Perches63c3a662011-04-26 08:12:10 +00003395 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07003396 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
3397 WOL_DRV_STATE_SHUTDOWN |
3398 WOL_DRV_WOL |
3399 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08003400
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003401 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 u32 mac_mode;
3403
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003404 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003405 if (do_low_power &&
3406 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
3407 tg3_phy_auxctl_write(tp,
3408 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
3409 MII_TG3_AUXCTL_PCTL_WOL_EN |
3410 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3411 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07003412 udelay(40);
3413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003415 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07003416 mac_mode = MAC_MODE_PORT_MODE_GMII;
3417 else
3418 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003420 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
3421 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
3422 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00003423 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003424 SPEED_100 : SPEED_10;
3425 if (tg3_5700_link_polarity(tp, speed))
3426 mac_mode |= MAC_MODE_LINK_POLARITY;
3427 else
3428 mac_mode &= ~MAC_MODE_LINK_POLARITY;
3429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 } else {
3431 mac_mode = MAC_MODE_PORT_MODE_TBI;
3432 }
3433
Joe Perches63c3a662011-04-26 08:12:10 +00003434 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 tw32(MAC_LED_CTRL, tp->led_ctrl);
3436
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003437 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00003438 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
3439 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003440 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Joe Perches63c3a662011-04-26 08:12:10 +00003442 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00003443 mac_mode |= MAC_MODE_APE_TX_EN |
3444 MAC_MODE_APE_RX_EN |
3445 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07003446
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 tw32_f(MAC_MODE, mac_mode);
3448 udelay(100);
3449
3450 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
3451 udelay(10);
3452 }
3453
Joe Perches63c3a662011-04-26 08:12:10 +00003454 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3456 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
3457 u32 base_val;
3458
3459 base_val = tp->pci_clock_ctrl;
3460 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
3461 CLOCK_CTRL_TXCLK_DISABLE);
3462
Michael Chanb401e9e2005-12-19 16:27:04 -08003463 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
3464 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00003465 } else if (tg3_flag(tp, 5780_CLASS) ||
3466 tg3_flag(tp, CPMU_PRESENT) ||
Matt Carlson6ff6f812011-05-19 12:12:54 +00003467 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07003468 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00003469 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 u32 newbits1, newbits2;
3471
3472 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3473 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3474 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
3475 CLOCK_CTRL_TXCLK_DISABLE |
3476 CLOCK_CTRL_ALTCLK);
3477 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00003478 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 newbits1 = CLOCK_CTRL_625_CORE;
3480 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
3481 } else {
3482 newbits1 = CLOCK_CTRL_ALTCLK;
3483 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
3484 }
3485
Michael Chanb401e9e2005-12-19 16:27:04 -08003486 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
3487 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Michael Chanb401e9e2005-12-19 16:27:04 -08003489 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
3490 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
Joe Perches63c3a662011-04-26 08:12:10 +00003492 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 u32 newbits3;
3494
3495 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3496 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3497 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
3498 CLOCK_CTRL_TXCLK_DISABLE |
3499 CLOCK_CTRL_44MHZ_CORE);
3500 } else {
3501 newbits3 = CLOCK_CTRL_44MHZ_CORE;
3502 }
3503
Michael Chanb401e9e2005-12-19 16:27:04 -08003504 tw32_wait_f(TG3PCI_CLOCK_CTRL,
3505 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 }
3507 }
3508
Joe Perches63c3a662011-04-26 08:12:10 +00003509 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08003510 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08003511
Matt Carlsoncd0d7222011-07-13 09:27:33 +00003512 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
3514 /* Workaround for unstable PLL clock */
3515 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
3516 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
3517 u32 val = tr32(0x7d00);
3518
3519 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
3520 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00003521 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08003522 int err;
3523
3524 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08003526 if (!err)
3527 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08003528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 }
3530
Michael Chanbbadf502006-04-06 21:46:34 -07003531 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
3532
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 return 0;
3534}
3535
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003536static void tg3_power_down(struct tg3 *tp)
3537{
3538 tg3_power_down_prepare(tp);
3539
Joe Perches63c3a662011-04-26 08:12:10 +00003540 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003541 pci_set_power_state(tp->pdev, PCI_D3hot);
3542}
3543
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
3545{
3546 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
3547 case MII_TG3_AUX_STAT_10HALF:
3548 *speed = SPEED_10;
3549 *duplex = DUPLEX_HALF;
3550 break;
3551
3552 case MII_TG3_AUX_STAT_10FULL:
3553 *speed = SPEED_10;
3554 *duplex = DUPLEX_FULL;
3555 break;
3556
3557 case MII_TG3_AUX_STAT_100HALF:
3558 *speed = SPEED_100;
3559 *duplex = DUPLEX_HALF;
3560 break;
3561
3562 case MII_TG3_AUX_STAT_100FULL:
3563 *speed = SPEED_100;
3564 *duplex = DUPLEX_FULL;
3565 break;
3566
3567 case MII_TG3_AUX_STAT_1000HALF:
3568 *speed = SPEED_1000;
3569 *duplex = DUPLEX_HALF;
3570 break;
3571
3572 case MII_TG3_AUX_STAT_1000FULL:
3573 *speed = SPEED_1000;
3574 *duplex = DUPLEX_FULL;
3575 break;
3576
3577 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003578 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07003579 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
3580 SPEED_10;
3581 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
3582 DUPLEX_HALF;
3583 break;
3584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 *speed = SPEED_INVALID;
3586 *duplex = DUPLEX_INVALID;
3587 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589}
3590
Matt Carlson42b64a42011-05-19 12:12:49 +00003591static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592{
Matt Carlson42b64a42011-05-19 12:12:49 +00003593 int err = 0;
3594 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
Matt Carlson42b64a42011-05-19 12:12:49 +00003596 new_adv = ADVERTISE_CSMA;
3597 if (advertise & ADVERTISED_10baseT_Half)
3598 new_adv |= ADVERTISE_10HALF;
3599 if (advertise & ADVERTISED_10baseT_Full)
3600 new_adv |= ADVERTISE_10FULL;
3601 if (advertise & ADVERTISED_100baseT_Half)
3602 new_adv |= ADVERTISE_100HALF;
3603 if (advertise & ADVERTISED_100baseT_Full)
3604 new_adv |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Matt Carlson42b64a42011-05-19 12:12:49 +00003606 new_adv |= tg3_advert_flowctrl_1000T(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
Matt Carlson42b64a42011-05-19 12:12:49 +00003608 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
3609 if (err)
3610 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
Matt Carlson42b64a42011-05-19 12:12:49 +00003612 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
3613 goto done;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003614
Matt Carlson42b64a42011-05-19 12:12:49 +00003615 new_adv = 0;
3616 if (advertise & ADVERTISED_1000baseT_Half)
Matt Carlson221c5632011-06-13 13:39:01 +00003617 new_adv |= ADVERTISE_1000HALF;
Matt Carlson42b64a42011-05-19 12:12:49 +00003618 if (advertise & ADVERTISED_1000baseT_Full)
Matt Carlson221c5632011-06-13 13:39:01 +00003619 new_adv |= ADVERTISE_1000FULL;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003620
Matt Carlson42b64a42011-05-19 12:12:49 +00003621 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3622 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
Matt Carlson221c5632011-06-13 13:39:01 +00003623 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
Matt Carlson221c5632011-06-13 13:39:01 +00003625 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
Matt Carlson42b64a42011-05-19 12:12:49 +00003626 if (err)
3627 goto done;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003628
Matt Carlson42b64a42011-05-19 12:12:49 +00003629 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
3630 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
Matt Carlson42b64a42011-05-19 12:12:49 +00003632 tw32(TG3_CPMU_EEE_MODE,
3633 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003634
Matt Carlson42b64a42011-05-19 12:12:49 +00003635 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
3636 if (!err) {
3637 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00003638
Matt Carlsona6b68da2010-12-06 08:28:52 +00003639 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00003640 /* Advertise 100-BaseTX EEE ability */
3641 if (advertise & ADVERTISED_100baseT_Full)
3642 val |= MDIO_AN_EEE_ADV_100TX;
3643 /* Advertise 1000-BaseT EEE ability */
3644 if (advertise & ADVERTISED_1000baseT_Full)
3645 val |= MDIO_AN_EEE_ADV_1000T;
3646 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00003647 if (err)
3648 val = 0;
3649
3650 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
3651 case ASIC_REV_5717:
3652 case ASIC_REV_57765:
3653 case ASIC_REV_5719:
3654 /* If we advertised any eee advertisements above... */
3655 if (val)
3656 val = MII_TG3_DSP_TAP26_ALNOKO |
3657 MII_TG3_DSP_TAP26_RMRXSTO |
3658 MII_TG3_DSP_TAP26_OPCSINPT;
3659 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
3660 /* Fall through */
3661 case ASIC_REV_5720:
3662 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
3663 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
3664 MII_TG3_DSP_CH34TP2_HIBW01);
3665 }
Matt Carlson52b02d02010-10-14 10:37:41 +00003666
Matt Carlson42b64a42011-05-19 12:12:49 +00003667 err2 = TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
3668 if (!err)
3669 err = err2;
3670 }
3671
3672done:
3673 return err;
3674}
3675
3676static void tg3_phy_copper_begin(struct tg3 *tp)
3677{
3678 u32 new_adv;
3679 int i;
3680
3681 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
3682 new_adv = ADVERTISED_10baseT_Half |
3683 ADVERTISED_10baseT_Full;
3684 if (tg3_flag(tp, WOL_SPEED_100MB))
3685 new_adv |= ADVERTISED_100baseT_Half |
3686 ADVERTISED_100baseT_Full;
3687
3688 tg3_phy_autoneg_cfg(tp, new_adv,
3689 FLOW_CTRL_TX | FLOW_CTRL_RX);
3690 } else if (tp->link_config.speed == SPEED_INVALID) {
3691 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
3692 tp->link_config.advertising &=
3693 ~(ADVERTISED_1000baseT_Half |
3694 ADVERTISED_1000baseT_Full);
3695
3696 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
3697 tp->link_config.flowctrl);
3698 } else {
3699 /* Asking for a specific link mode. */
3700 if (tp->link_config.speed == SPEED_1000) {
3701 if (tp->link_config.duplex == DUPLEX_FULL)
3702 new_adv = ADVERTISED_1000baseT_Full;
3703 else
3704 new_adv = ADVERTISED_1000baseT_Half;
3705 } else if (tp->link_config.speed == SPEED_100) {
3706 if (tp->link_config.duplex == DUPLEX_FULL)
3707 new_adv = ADVERTISED_100baseT_Full;
3708 else
3709 new_adv = ADVERTISED_100baseT_Half;
3710 } else {
3711 if (tp->link_config.duplex == DUPLEX_FULL)
3712 new_adv = ADVERTISED_10baseT_Full;
3713 else
3714 new_adv = ADVERTISED_10baseT_Half;
3715 }
3716
3717 tg3_phy_autoneg_cfg(tp, new_adv,
3718 tp->link_config.flowctrl);
Matt Carlson52b02d02010-10-14 10:37:41 +00003719 }
3720
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
3722 tp->link_config.speed != SPEED_INVALID) {
3723 u32 bmcr, orig_bmcr;
3724
3725 tp->link_config.active_speed = tp->link_config.speed;
3726 tp->link_config.active_duplex = tp->link_config.duplex;
3727
3728 bmcr = 0;
3729 switch (tp->link_config.speed) {
3730 default:
3731 case SPEED_10:
3732 break;
3733
3734 case SPEED_100:
3735 bmcr |= BMCR_SPEED100;
3736 break;
3737
3738 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00003739 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
3743 if (tp->link_config.duplex == DUPLEX_FULL)
3744 bmcr |= BMCR_FULLDPLX;
3745
3746 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
3747 (bmcr != orig_bmcr)) {
3748 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
3749 for (i = 0; i < 1500; i++) {
3750 u32 tmp;
3751
3752 udelay(10);
3753 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
3754 tg3_readphy(tp, MII_BMSR, &tmp))
3755 continue;
3756 if (!(tmp & BMSR_LSTATUS)) {
3757 udelay(40);
3758 break;
3759 }
3760 }
3761 tg3_writephy(tp, MII_BMCR, bmcr);
3762 udelay(40);
3763 }
3764 } else {
3765 tg3_writephy(tp, MII_BMCR,
3766 BMCR_ANENABLE | BMCR_ANRESTART);
3767 }
3768}
3769
3770static int tg3_init_5401phy_dsp(struct tg3 *tp)
3771{
3772 int err;
3773
3774 /* Turn off tap power management. */
3775 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003776 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00003778 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
3779 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
3780 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
3781 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
3782 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
3784 udelay(40);
3785
3786 return err;
3787}
3788
Michael Chan3600d912006-12-07 00:21:48 -08003789static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790{
Michael Chan3600d912006-12-07 00:21:48 -08003791 u32 adv_reg, all_mask = 0;
3792
3793 if (mask & ADVERTISED_10baseT_Half)
3794 all_mask |= ADVERTISE_10HALF;
3795 if (mask & ADVERTISED_10baseT_Full)
3796 all_mask |= ADVERTISE_10FULL;
3797 if (mask & ADVERTISED_100baseT_Half)
3798 all_mask |= ADVERTISE_100HALF;
3799 if (mask & ADVERTISED_100baseT_Full)
3800 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801
3802 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
3803 return 0;
3804
Matt Carlsonb99d2a52011-08-31 11:44:47 +00003805 if ((adv_reg & ADVERTISE_ALL) != all_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 return 0;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00003807
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003808 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 u32 tg3_ctrl;
3810
Michael Chan3600d912006-12-07 00:21:48 -08003811 all_mask = 0;
3812 if (mask & ADVERTISED_1000baseT_Half)
3813 all_mask |= ADVERTISE_1000HALF;
3814 if (mask & ADVERTISED_1000baseT_Full)
3815 all_mask |= ADVERTISE_1000FULL;
3816
Matt Carlson221c5632011-06-13 13:39:01 +00003817 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 return 0;
3819
Matt Carlsonb99d2a52011-08-31 11:44:47 +00003820 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
3821 if (tg3_ctrl != all_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 return 0;
3823 }
Matt Carlson93a700a2011-08-31 11:44:54 +00003824
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 return 1;
3826}
3827
Matt Carlsonef167e22007-12-20 20:10:01 -08003828static int tg3_adv_1000T_flowctrl_ok(struct tg3 *tp, u32 *lcladv, u32 *rmtadv)
3829{
3830 u32 curadv, reqadv;
3831
3832 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
3833 return 1;
3834
3835 curadv = *lcladv & (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
3836 reqadv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
3837
3838 if (tp->link_config.active_duplex == DUPLEX_FULL) {
3839 if (curadv != reqadv)
3840 return 0;
3841
Joe Perches63c3a662011-04-26 08:12:10 +00003842 if (tg3_flag(tp, PAUSE_AUTONEG))
Matt Carlsonef167e22007-12-20 20:10:01 -08003843 tg3_readphy(tp, MII_LPA, rmtadv);
3844 } else {
3845 /* Reprogram the advertisement register, even if it
3846 * does not affect the current link. If the link
3847 * gets renegotiated in the future, we can save an
3848 * additional renegotiation cycle by advertising
3849 * it correctly in the first place.
3850 */
3851 if (curadv != reqadv) {
3852 *lcladv &= ~(ADVERTISE_PAUSE_CAP |
3853 ADVERTISE_PAUSE_ASYM);
3854 tg3_writephy(tp, MII_ADVERTISE, *lcladv | reqadv);
3855 }
3856 }
3857
3858 return 1;
3859}
3860
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
3862{
3863 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003864 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08003865 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 u16 current_speed;
3867 u8 current_duplex;
3868 int i, err;
3869
3870 tw32(MAC_EVENT, 0);
3871
3872 tw32_f(MAC_STATUS,
3873 (MAC_STATUS_SYNC_CHANGED |
3874 MAC_STATUS_CFG_CHANGED |
3875 MAC_STATUS_MI_COMPLETION |
3876 MAC_STATUS_LNKSTATE_CHANGED));
3877 udelay(40);
3878
Matt Carlson8ef21422008-05-02 16:47:53 -07003879 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
3880 tw32_f(MAC_MI_MODE,
3881 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
3882 udelay(80);
3883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003885 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
3887 /* Some third-party PHYs need to be reset on link going
3888 * down.
3889 */
3890 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3891 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
3892 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
3893 netif_carrier_ok(tp->dev)) {
3894 tg3_readphy(tp, MII_BMSR, &bmsr);
3895 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3896 !(bmsr & BMSR_LSTATUS))
3897 force_reset = 1;
3898 }
3899 if (force_reset)
3900 tg3_phy_reset(tp);
3901
Matt Carlson79eb6902010-02-17 15:17:03 +00003902 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 tg3_readphy(tp, MII_BMSR, &bmsr);
3904 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00003905 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 bmsr = 0;
3907
3908 if (!(bmsr & BMSR_LSTATUS)) {
3909 err = tg3_init_5401phy_dsp(tp);
3910 if (err)
3911 return err;
3912
3913 tg3_readphy(tp, MII_BMSR, &bmsr);
3914 for (i = 0; i < 1000; i++) {
3915 udelay(10);
3916 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3917 (bmsr & BMSR_LSTATUS)) {
3918 udelay(40);
3919 break;
3920 }
3921 }
3922
Matt Carlson79eb6902010-02-17 15:17:03 +00003923 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
3924 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 !(bmsr & BMSR_LSTATUS) &&
3926 tp->link_config.active_speed == SPEED_1000) {
3927 err = tg3_phy_reset(tp);
3928 if (!err)
3929 err = tg3_init_5401phy_dsp(tp);
3930 if (err)
3931 return err;
3932 }
3933 }
3934 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3935 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
3936 /* 5701 {A0,B0} CRC bug workaround */
3937 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00003938 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
3939 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
3940 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 }
3942
3943 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003944 tg3_readphy(tp, MII_TG3_ISTAT, &val);
3945 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003947 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003949 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 tg3_writephy(tp, MII_TG3_IMASK, ~0);
3951
3952 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3953 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3954 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
3955 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3956 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
3957 else
3958 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
3959 }
3960
3961 current_link_up = 0;
3962 current_speed = SPEED_INVALID;
3963 current_duplex = DUPLEX_INVALID;
3964
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003965 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00003966 err = tg3_phy_auxctl_read(tp,
3967 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3968 &val);
3969 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003970 tg3_phy_auxctl_write(tp,
3971 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3972 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 goto relink;
3974 }
3975 }
3976
3977 bmsr = 0;
3978 for (i = 0; i < 100; i++) {
3979 tg3_readphy(tp, MII_BMSR, &bmsr);
3980 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3981 (bmsr & BMSR_LSTATUS))
3982 break;
3983 udelay(40);
3984 }
3985
3986 if (bmsr & BMSR_LSTATUS) {
3987 u32 aux_stat, bmcr;
3988
3989 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
3990 for (i = 0; i < 2000; i++) {
3991 udelay(10);
3992 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
3993 aux_stat)
3994 break;
3995 }
3996
3997 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
3998 &current_speed,
3999 &current_duplex);
4000
4001 bmcr = 0;
4002 for (i = 0; i < 200; i++) {
4003 tg3_readphy(tp, MII_BMCR, &bmcr);
4004 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4005 continue;
4006 if (bmcr && bmcr != 0x7fff)
4007 break;
4008 udelay(10);
4009 }
4010
Matt Carlsonef167e22007-12-20 20:10:01 -08004011 lcl_adv = 0;
4012 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Matt Carlsonef167e22007-12-20 20:10:01 -08004014 tp->link_config.active_speed = current_speed;
4015 tp->link_config.active_duplex = current_duplex;
4016
4017 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4018 if ((bmcr & BMCR_ANENABLE) &&
4019 tg3_copper_is_advertising_all(tp,
4020 tp->link_config.advertising)) {
4021 if (tg3_adv_1000T_flowctrl_ok(tp, &lcl_adv,
4022 &rmt_adv))
4023 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 }
4025 } else {
4026 if (!(bmcr & BMCR_ANENABLE) &&
4027 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08004028 tp->link_config.duplex == current_duplex &&
4029 tp->link_config.flowctrl ==
4030 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 }
4033 }
4034
Matt Carlsonef167e22007-12-20 20:10:01 -08004035 if (current_link_up == 1 &&
4036 tp->link_config.active_duplex == DUPLEX_FULL)
4037 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 }
4039
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040relink:
Matt Carlson80096062010-08-02 11:26:06 +00004041 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 tg3_phy_copper_begin(tp);
4043
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004044 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004045 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4046 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 current_link_up = 1;
4048 }
4049
4050 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
4051 if (current_link_up == 1) {
4052 if (tp->link_config.active_speed == SPEED_100 ||
4053 tp->link_config.active_speed == SPEED_10)
4054 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4055 else
4056 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004057 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004058 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4059 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4061
4062 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4063 if (tp->link_config.active_duplex == DUPLEX_HALF)
4064 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4065
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004067 if (current_link_up == 1 &&
4068 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004070 else
4071 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 }
4073
4074 /* ??? Without this setting Netgear GA302T PHY does not
4075 * ??? send/receive packets...
4076 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004077 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
4079 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4080 tw32_f(MAC_MI_MODE, tp->mi_mode);
4081 udelay(80);
4082 }
4083
4084 tw32_f(MAC_MODE, tp->mac_mode);
4085 udelay(40);
4086
Matt Carlson52b02d02010-10-14 10:37:41 +00004087 tg3_phy_eee_adjust(tp, current_link_up);
4088
Joe Perches63c3a662011-04-26 08:12:10 +00004089 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 /* Polled via timer. */
4091 tw32_f(MAC_EVENT, 0);
4092 } else {
4093 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4094 }
4095 udelay(40);
4096
4097 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
4098 current_link_up == 1 &&
4099 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00004100 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 udelay(120);
4102 tw32_f(MAC_STATUS,
4103 (MAC_STATUS_SYNC_CHANGED |
4104 MAC_STATUS_CFG_CHANGED));
4105 udelay(40);
4106 tg3_write_mem(tp,
4107 NIC_SRAM_FIRMWARE_MBOX,
4108 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
4109 }
4110
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004111 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00004112 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004113 u16 oldlnkctl, newlnkctl;
4114
4115 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00004116 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004117 &oldlnkctl);
4118 if (tp->link_config.active_speed == SPEED_100 ||
4119 tp->link_config.active_speed == SPEED_10)
4120 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
4121 else
4122 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
4123 if (newlnkctl != oldlnkctl)
4124 pci_write_config_word(tp->pdev,
Matt Carlson93a700a2011-08-31 11:44:54 +00004125 pci_pcie_cap(tp->pdev) +
4126 PCI_EXP_LNKCTL, newlnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004127 }
4128
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 if (current_link_up != netif_carrier_ok(tp->dev)) {
4130 if (current_link_up)
4131 netif_carrier_on(tp->dev);
4132 else
4133 netif_carrier_off(tp->dev);
4134 tg3_link_report(tp);
4135 }
4136
4137 return 0;
4138}
4139
4140struct tg3_fiber_aneginfo {
4141 int state;
4142#define ANEG_STATE_UNKNOWN 0
4143#define ANEG_STATE_AN_ENABLE 1
4144#define ANEG_STATE_RESTART_INIT 2
4145#define ANEG_STATE_RESTART 3
4146#define ANEG_STATE_DISABLE_LINK_OK 4
4147#define ANEG_STATE_ABILITY_DETECT_INIT 5
4148#define ANEG_STATE_ABILITY_DETECT 6
4149#define ANEG_STATE_ACK_DETECT_INIT 7
4150#define ANEG_STATE_ACK_DETECT 8
4151#define ANEG_STATE_COMPLETE_ACK_INIT 9
4152#define ANEG_STATE_COMPLETE_ACK 10
4153#define ANEG_STATE_IDLE_DETECT_INIT 11
4154#define ANEG_STATE_IDLE_DETECT 12
4155#define ANEG_STATE_LINK_OK 13
4156#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
4157#define ANEG_STATE_NEXT_PAGE_WAIT 15
4158
4159 u32 flags;
4160#define MR_AN_ENABLE 0x00000001
4161#define MR_RESTART_AN 0x00000002
4162#define MR_AN_COMPLETE 0x00000004
4163#define MR_PAGE_RX 0x00000008
4164#define MR_NP_LOADED 0x00000010
4165#define MR_TOGGLE_TX 0x00000020
4166#define MR_LP_ADV_FULL_DUPLEX 0x00000040
4167#define MR_LP_ADV_HALF_DUPLEX 0x00000080
4168#define MR_LP_ADV_SYM_PAUSE 0x00000100
4169#define MR_LP_ADV_ASYM_PAUSE 0x00000200
4170#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
4171#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
4172#define MR_LP_ADV_NEXT_PAGE 0x00001000
4173#define MR_TOGGLE_RX 0x00002000
4174#define MR_NP_RX 0x00004000
4175
4176#define MR_LINK_OK 0x80000000
4177
4178 unsigned long link_time, cur_time;
4179
4180 u32 ability_match_cfg;
4181 int ability_match_count;
4182
4183 char ability_match, idle_match, ack_match;
4184
4185 u32 txconfig, rxconfig;
4186#define ANEG_CFG_NP 0x00000080
4187#define ANEG_CFG_ACK 0x00000040
4188#define ANEG_CFG_RF2 0x00000020
4189#define ANEG_CFG_RF1 0x00000010
4190#define ANEG_CFG_PS2 0x00000001
4191#define ANEG_CFG_PS1 0x00008000
4192#define ANEG_CFG_HD 0x00004000
4193#define ANEG_CFG_FD 0x00002000
4194#define ANEG_CFG_INVAL 0x00001f06
4195
4196};
4197#define ANEG_OK 0
4198#define ANEG_DONE 1
4199#define ANEG_TIMER_ENAB 2
4200#define ANEG_FAILED -1
4201
4202#define ANEG_STATE_SETTLE_TIME 10000
4203
4204static int tg3_fiber_aneg_smachine(struct tg3 *tp,
4205 struct tg3_fiber_aneginfo *ap)
4206{
Matt Carlson5be73b42007-12-20 20:09:29 -08004207 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 unsigned long delta;
4209 u32 rx_cfg_reg;
4210 int ret;
4211
4212 if (ap->state == ANEG_STATE_UNKNOWN) {
4213 ap->rxconfig = 0;
4214 ap->link_time = 0;
4215 ap->cur_time = 0;
4216 ap->ability_match_cfg = 0;
4217 ap->ability_match_count = 0;
4218 ap->ability_match = 0;
4219 ap->idle_match = 0;
4220 ap->ack_match = 0;
4221 }
4222 ap->cur_time++;
4223
4224 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
4225 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
4226
4227 if (rx_cfg_reg != ap->ability_match_cfg) {
4228 ap->ability_match_cfg = rx_cfg_reg;
4229 ap->ability_match = 0;
4230 ap->ability_match_count = 0;
4231 } else {
4232 if (++ap->ability_match_count > 1) {
4233 ap->ability_match = 1;
4234 ap->ability_match_cfg = rx_cfg_reg;
4235 }
4236 }
4237 if (rx_cfg_reg & ANEG_CFG_ACK)
4238 ap->ack_match = 1;
4239 else
4240 ap->ack_match = 0;
4241
4242 ap->idle_match = 0;
4243 } else {
4244 ap->idle_match = 1;
4245 ap->ability_match_cfg = 0;
4246 ap->ability_match_count = 0;
4247 ap->ability_match = 0;
4248 ap->ack_match = 0;
4249
4250 rx_cfg_reg = 0;
4251 }
4252
4253 ap->rxconfig = rx_cfg_reg;
4254 ret = ANEG_OK;
4255
Matt Carlson33f401a2010-04-05 10:19:27 +00004256 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 case ANEG_STATE_UNKNOWN:
4258 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
4259 ap->state = ANEG_STATE_AN_ENABLE;
4260
4261 /* fallthru */
4262 case ANEG_STATE_AN_ENABLE:
4263 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
4264 if (ap->flags & MR_AN_ENABLE) {
4265 ap->link_time = 0;
4266 ap->cur_time = 0;
4267 ap->ability_match_cfg = 0;
4268 ap->ability_match_count = 0;
4269 ap->ability_match = 0;
4270 ap->idle_match = 0;
4271 ap->ack_match = 0;
4272
4273 ap->state = ANEG_STATE_RESTART_INIT;
4274 } else {
4275 ap->state = ANEG_STATE_DISABLE_LINK_OK;
4276 }
4277 break;
4278
4279 case ANEG_STATE_RESTART_INIT:
4280 ap->link_time = ap->cur_time;
4281 ap->flags &= ~(MR_NP_LOADED);
4282 ap->txconfig = 0;
4283 tw32(MAC_TX_AUTO_NEG, 0);
4284 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4285 tw32_f(MAC_MODE, tp->mac_mode);
4286 udelay(40);
4287
4288 ret = ANEG_TIMER_ENAB;
4289 ap->state = ANEG_STATE_RESTART;
4290
4291 /* fallthru */
4292 case ANEG_STATE_RESTART:
4293 delta = ap->cur_time - ap->link_time;
Matt Carlson859a5882010-04-05 10:19:28 +00004294 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a5882010-04-05 10:19:28 +00004296 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 break;
4299
4300 case ANEG_STATE_DISABLE_LINK_OK:
4301 ret = ANEG_DONE;
4302 break;
4303
4304 case ANEG_STATE_ABILITY_DETECT_INIT:
4305 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08004306 ap->txconfig = ANEG_CFG_FD;
4307 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4308 if (flowctrl & ADVERTISE_1000XPAUSE)
4309 ap->txconfig |= ANEG_CFG_PS1;
4310 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4311 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4313 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4314 tw32_f(MAC_MODE, tp->mac_mode);
4315 udelay(40);
4316
4317 ap->state = ANEG_STATE_ABILITY_DETECT;
4318 break;
4319
4320 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a5882010-04-05 10:19:28 +00004321 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 break;
4324
4325 case ANEG_STATE_ACK_DETECT_INIT:
4326 ap->txconfig |= ANEG_CFG_ACK;
4327 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4328 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4329 tw32_f(MAC_MODE, tp->mac_mode);
4330 udelay(40);
4331
4332 ap->state = ANEG_STATE_ACK_DETECT;
4333
4334 /* fallthru */
4335 case ANEG_STATE_ACK_DETECT:
4336 if (ap->ack_match != 0) {
4337 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
4338 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
4339 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
4340 } else {
4341 ap->state = ANEG_STATE_AN_ENABLE;
4342 }
4343 } else if (ap->ability_match != 0 &&
4344 ap->rxconfig == 0) {
4345 ap->state = ANEG_STATE_AN_ENABLE;
4346 }
4347 break;
4348
4349 case ANEG_STATE_COMPLETE_ACK_INIT:
4350 if (ap->rxconfig & ANEG_CFG_INVAL) {
4351 ret = ANEG_FAILED;
4352 break;
4353 }
4354 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
4355 MR_LP_ADV_HALF_DUPLEX |
4356 MR_LP_ADV_SYM_PAUSE |
4357 MR_LP_ADV_ASYM_PAUSE |
4358 MR_LP_ADV_REMOTE_FAULT1 |
4359 MR_LP_ADV_REMOTE_FAULT2 |
4360 MR_LP_ADV_NEXT_PAGE |
4361 MR_TOGGLE_RX |
4362 MR_NP_RX);
4363 if (ap->rxconfig & ANEG_CFG_FD)
4364 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
4365 if (ap->rxconfig & ANEG_CFG_HD)
4366 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
4367 if (ap->rxconfig & ANEG_CFG_PS1)
4368 ap->flags |= MR_LP_ADV_SYM_PAUSE;
4369 if (ap->rxconfig & ANEG_CFG_PS2)
4370 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
4371 if (ap->rxconfig & ANEG_CFG_RF1)
4372 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
4373 if (ap->rxconfig & ANEG_CFG_RF2)
4374 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
4375 if (ap->rxconfig & ANEG_CFG_NP)
4376 ap->flags |= MR_LP_ADV_NEXT_PAGE;
4377
4378 ap->link_time = ap->cur_time;
4379
4380 ap->flags ^= (MR_TOGGLE_TX);
4381 if (ap->rxconfig & 0x0008)
4382 ap->flags |= MR_TOGGLE_RX;
4383 if (ap->rxconfig & ANEG_CFG_NP)
4384 ap->flags |= MR_NP_RX;
4385 ap->flags |= MR_PAGE_RX;
4386
4387 ap->state = ANEG_STATE_COMPLETE_ACK;
4388 ret = ANEG_TIMER_ENAB;
4389 break;
4390
4391 case ANEG_STATE_COMPLETE_ACK:
4392 if (ap->ability_match != 0 &&
4393 ap->rxconfig == 0) {
4394 ap->state = ANEG_STATE_AN_ENABLE;
4395 break;
4396 }
4397 delta = ap->cur_time - ap->link_time;
4398 if (delta > ANEG_STATE_SETTLE_TIME) {
4399 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
4400 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4401 } else {
4402 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
4403 !(ap->flags & MR_NP_RX)) {
4404 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4405 } else {
4406 ret = ANEG_FAILED;
4407 }
4408 }
4409 }
4410 break;
4411
4412 case ANEG_STATE_IDLE_DETECT_INIT:
4413 ap->link_time = ap->cur_time;
4414 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4415 tw32_f(MAC_MODE, tp->mac_mode);
4416 udelay(40);
4417
4418 ap->state = ANEG_STATE_IDLE_DETECT;
4419 ret = ANEG_TIMER_ENAB;
4420 break;
4421
4422 case ANEG_STATE_IDLE_DETECT:
4423 if (ap->ability_match != 0 &&
4424 ap->rxconfig == 0) {
4425 ap->state = ANEG_STATE_AN_ENABLE;
4426 break;
4427 }
4428 delta = ap->cur_time - ap->link_time;
4429 if (delta > ANEG_STATE_SETTLE_TIME) {
4430 /* XXX another gem from the Broadcom driver :( */
4431 ap->state = ANEG_STATE_LINK_OK;
4432 }
4433 break;
4434
4435 case ANEG_STATE_LINK_OK:
4436 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
4437 ret = ANEG_DONE;
4438 break;
4439
4440 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
4441 /* ??? unimplemented */
4442 break;
4443
4444 case ANEG_STATE_NEXT_PAGE_WAIT:
4445 /* ??? unimplemented */
4446 break;
4447
4448 default:
4449 ret = ANEG_FAILED;
4450 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
4453 return ret;
4454}
4455
Matt Carlson5be73b42007-12-20 20:09:29 -08004456static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457{
4458 int res = 0;
4459 struct tg3_fiber_aneginfo aninfo;
4460 int status = ANEG_FAILED;
4461 unsigned int tick;
4462 u32 tmp;
4463
4464 tw32_f(MAC_TX_AUTO_NEG, 0);
4465
4466 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
4467 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
4468 udelay(40);
4469
4470 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
4471 udelay(40);
4472
4473 memset(&aninfo, 0, sizeof(aninfo));
4474 aninfo.flags |= MR_AN_ENABLE;
4475 aninfo.state = ANEG_STATE_UNKNOWN;
4476 aninfo.cur_time = 0;
4477 tick = 0;
4478 while (++tick < 195000) {
4479 status = tg3_fiber_aneg_smachine(tp, &aninfo);
4480 if (status == ANEG_DONE || status == ANEG_FAILED)
4481 break;
4482
4483 udelay(1);
4484 }
4485
4486 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4487 tw32_f(MAC_MODE, tp->mac_mode);
4488 udelay(40);
4489
Matt Carlson5be73b42007-12-20 20:09:29 -08004490 *txflags = aninfo.txconfig;
4491 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
4493 if (status == ANEG_DONE &&
4494 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
4495 MR_LP_ADV_FULL_DUPLEX)))
4496 res = 1;
4497
4498 return res;
4499}
4500
4501static void tg3_init_bcm8002(struct tg3 *tp)
4502{
4503 u32 mac_status = tr32(MAC_STATUS);
4504 int i;
4505
4506 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00004507 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 !(mac_status & MAC_STATUS_PCS_SYNCED))
4509 return;
4510
4511 /* Set PLL lock range. */
4512 tg3_writephy(tp, 0x16, 0x8007);
4513
4514 /* SW reset */
4515 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
4516
4517 /* Wait for reset to complete. */
4518 /* XXX schedule_timeout() ... */
4519 for (i = 0; i < 500; i++)
4520 udelay(10);
4521
4522 /* Config mode; select PMA/Ch 1 regs. */
4523 tg3_writephy(tp, 0x10, 0x8411);
4524
4525 /* Enable auto-lock and comdet, select txclk for tx. */
4526 tg3_writephy(tp, 0x11, 0x0a10);
4527
4528 tg3_writephy(tp, 0x18, 0x00a0);
4529 tg3_writephy(tp, 0x16, 0x41ff);
4530
4531 /* Assert and deassert POR. */
4532 tg3_writephy(tp, 0x13, 0x0400);
4533 udelay(40);
4534 tg3_writephy(tp, 0x13, 0x0000);
4535
4536 tg3_writephy(tp, 0x11, 0x0a50);
4537 udelay(40);
4538 tg3_writephy(tp, 0x11, 0x0a10);
4539
4540 /* Wait for signal to stabilize */
4541 /* XXX schedule_timeout() ... */
4542 for (i = 0; i < 15000; i++)
4543 udelay(10);
4544
4545 /* Deselect the channel register so we can read the PHYID
4546 * later.
4547 */
4548 tg3_writephy(tp, 0x10, 0x8011);
4549}
4550
4551static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
4552{
Matt Carlson82cd3d12007-12-20 20:09:00 -08004553 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 u32 sg_dig_ctrl, sg_dig_status;
4555 u32 serdes_cfg, expected_sg_dig_ctrl;
4556 int workaround, port_a;
4557 int current_link_up;
4558
4559 serdes_cfg = 0;
4560 expected_sg_dig_ctrl = 0;
4561 workaround = 0;
4562 port_a = 1;
4563 current_link_up = 0;
4564
4565 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
4566 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
4567 workaround = 1;
4568 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
4569 port_a = 0;
4570
4571 /* preserve bits 0-11,13,14 for signal pre-emphasis */
4572 /* preserve bits 20-23 for voltage regulator */
4573 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
4574 }
4575
4576 sg_dig_ctrl = tr32(SG_DIG_CTRL);
4577
4578 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004579 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 if (workaround) {
4581 u32 val = serdes_cfg;
4582
4583 if (port_a)
4584 val |= 0xc010000;
4585 else
4586 val |= 0x4010000;
4587 tw32_f(MAC_SERDES_CFG, val);
4588 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004589
4590 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 }
4592 if (mac_status & MAC_STATUS_PCS_SYNCED) {
4593 tg3_setup_flow_control(tp, 0, 0);
4594 current_link_up = 1;
4595 }
4596 goto out;
4597 }
4598
4599 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004600 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
Matt Carlson82cd3d12007-12-20 20:09:00 -08004602 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4603 if (flowctrl & ADVERTISE_1000XPAUSE)
4604 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
4605 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4606 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
4608 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004609 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07004610 tp->serdes_counter &&
4611 ((mac_status & (MAC_STATUS_PCS_SYNCED |
4612 MAC_STATUS_RCVD_CFG)) ==
4613 MAC_STATUS_PCS_SYNCED)) {
4614 tp->serdes_counter--;
4615 current_link_up = 1;
4616 goto out;
4617 }
4618restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 if (workaround)
4620 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004621 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 udelay(5);
4623 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
4624
Michael Chan3d3ebe72006-09-27 15:59:15 -07004625 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004626 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
4628 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004629 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 mac_status = tr32(MAC_STATUS);
4631
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004632 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08004634 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635
Matt Carlson82cd3d12007-12-20 20:09:00 -08004636 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
4637 local_adv |= ADVERTISE_1000XPAUSE;
4638 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
4639 local_adv |= ADVERTISE_1000XPSE_ASYM;
4640
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004641 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004642 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004643 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004644 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
4646 tg3_setup_flow_control(tp, local_adv, remote_adv);
4647 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004648 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004649 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004650 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004651 if (tp->serdes_counter)
4652 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 else {
4654 if (workaround) {
4655 u32 val = serdes_cfg;
4656
4657 if (port_a)
4658 val |= 0xc010000;
4659 else
4660 val |= 0x4010000;
4661
4662 tw32_f(MAC_SERDES_CFG, val);
4663 }
4664
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004665 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 udelay(40);
4667
4668 /* Link parallel detection - link is up */
4669 /* only if we have PCS_SYNC and not */
4670 /* receiving config code words */
4671 mac_status = tr32(MAC_STATUS);
4672 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
4673 !(mac_status & MAC_STATUS_RCVD_CFG)) {
4674 tg3_setup_flow_control(tp, 0, 0);
4675 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004676 tp->phy_flags |=
4677 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004678 tp->serdes_counter =
4679 SERDES_PARALLEL_DET_TIMEOUT;
4680 } else
4681 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 }
4683 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07004684 } else {
4685 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004686 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 }
4688
4689out:
4690 return current_link_up;
4691}
4692
4693static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
4694{
4695 int current_link_up = 0;
4696
Michael Chan5cf64b82007-05-05 12:11:21 -07004697 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699
4700 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08004701 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004703
Matt Carlson5be73b42007-12-20 20:09:29 -08004704 if (fiber_autoneg(tp, &txflags, &rxflags)) {
4705 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
Matt Carlson5be73b42007-12-20 20:09:29 -08004707 if (txflags & ANEG_CFG_PS1)
4708 local_adv |= ADVERTISE_1000XPAUSE;
4709 if (txflags & ANEG_CFG_PS2)
4710 local_adv |= ADVERTISE_1000XPSE_ASYM;
4711
4712 if (rxflags & MR_LP_ADV_SYM_PAUSE)
4713 remote_adv |= LPA_1000XPAUSE;
4714 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
4715 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716
4717 tg3_setup_flow_control(tp, local_adv, remote_adv);
4718
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 current_link_up = 1;
4720 }
4721 for (i = 0; i < 30; i++) {
4722 udelay(20);
4723 tw32_f(MAC_STATUS,
4724 (MAC_STATUS_SYNC_CHANGED |
4725 MAC_STATUS_CFG_CHANGED));
4726 udelay(40);
4727 if ((tr32(MAC_STATUS) &
4728 (MAC_STATUS_SYNC_CHANGED |
4729 MAC_STATUS_CFG_CHANGED)) == 0)
4730 break;
4731 }
4732
4733 mac_status = tr32(MAC_STATUS);
4734 if (current_link_up == 0 &&
4735 (mac_status & MAC_STATUS_PCS_SYNCED) &&
4736 !(mac_status & MAC_STATUS_RCVD_CFG))
4737 current_link_up = 1;
4738 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08004739 tg3_setup_flow_control(tp, 0, 0);
4740
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 /* Forcing 1000FD link up. */
4742 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
4744 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
4745 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004746
4747 tw32_f(MAC_MODE, tp->mac_mode);
4748 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 }
4750
4751out:
4752 return current_link_up;
4753}
4754
4755static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
4756{
4757 u32 orig_pause_cfg;
4758 u16 orig_active_speed;
4759 u8 orig_active_duplex;
4760 u32 mac_status;
4761 int current_link_up;
4762 int i;
4763
Matt Carlson8d018622007-12-20 20:05:44 -08004764 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 orig_active_speed = tp->link_config.active_speed;
4766 orig_active_duplex = tp->link_config.active_duplex;
4767
Joe Perches63c3a662011-04-26 08:12:10 +00004768 if (!tg3_flag(tp, HW_AUTONEG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 netif_carrier_ok(tp->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00004770 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 mac_status = tr32(MAC_STATUS);
4772 mac_status &= (MAC_STATUS_PCS_SYNCED |
4773 MAC_STATUS_SIGNAL_DET |
4774 MAC_STATUS_CFG_CHANGED |
4775 MAC_STATUS_RCVD_CFG);
4776 if (mac_status == (MAC_STATUS_PCS_SYNCED |
4777 MAC_STATUS_SIGNAL_DET)) {
4778 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4779 MAC_STATUS_CFG_CHANGED));
4780 return 0;
4781 }
4782 }
4783
4784 tw32_f(MAC_TX_AUTO_NEG, 0);
4785
4786 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
4787 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
4788 tw32_f(MAC_MODE, tp->mac_mode);
4789 udelay(40);
4790
Matt Carlson79eb6902010-02-17 15:17:03 +00004791 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 tg3_init_bcm8002(tp);
4793
4794 /* Enable link change event even when serdes polling. */
4795 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4796 udelay(40);
4797
4798 current_link_up = 0;
4799 mac_status = tr32(MAC_STATUS);
4800
Joe Perches63c3a662011-04-26 08:12:10 +00004801 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
4803 else
4804 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
4805
Matt Carlson898a56f2009-08-28 14:02:40 +00004806 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00004808 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
4810 for (i = 0; i < 100; i++) {
4811 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4812 MAC_STATUS_CFG_CHANGED));
4813 udelay(5);
4814 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07004815 MAC_STATUS_CFG_CHANGED |
4816 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 break;
4818 }
4819
4820 mac_status = tr32(MAC_STATUS);
4821 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
4822 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004823 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
4824 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 tw32_f(MAC_MODE, (tp->mac_mode |
4826 MAC_MODE_SEND_CONFIGS));
4827 udelay(1);
4828 tw32_f(MAC_MODE, tp->mac_mode);
4829 }
4830 }
4831
4832 if (current_link_up == 1) {
4833 tp->link_config.active_speed = SPEED_1000;
4834 tp->link_config.active_duplex = DUPLEX_FULL;
4835 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4836 LED_CTRL_LNKLED_OVERRIDE |
4837 LED_CTRL_1000MBPS_ON));
4838 } else {
4839 tp->link_config.active_speed = SPEED_INVALID;
4840 tp->link_config.active_duplex = DUPLEX_INVALID;
4841 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4842 LED_CTRL_LNKLED_OVERRIDE |
4843 LED_CTRL_TRAFFIC_OVERRIDE));
4844 }
4845
4846 if (current_link_up != netif_carrier_ok(tp->dev)) {
4847 if (current_link_up)
4848 netif_carrier_on(tp->dev);
4849 else
4850 netif_carrier_off(tp->dev);
4851 tg3_link_report(tp);
4852 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08004853 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 if (orig_pause_cfg != now_pause_cfg ||
4855 orig_active_speed != tp->link_config.active_speed ||
4856 orig_active_duplex != tp->link_config.active_duplex)
4857 tg3_link_report(tp);
4858 }
4859
4860 return 0;
4861}
4862
Michael Chan747e8f82005-07-25 12:33:22 -07004863static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
4864{
4865 int current_link_up, err = 0;
4866 u32 bmsr, bmcr;
4867 u16 current_speed;
4868 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08004869 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07004870
4871 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4872 tw32_f(MAC_MODE, tp->mac_mode);
4873 udelay(40);
4874
4875 tw32(MAC_EVENT, 0);
4876
4877 tw32_f(MAC_STATUS,
4878 (MAC_STATUS_SYNC_CHANGED |
4879 MAC_STATUS_CFG_CHANGED |
4880 MAC_STATUS_MI_COMPLETION |
4881 MAC_STATUS_LNKSTATE_CHANGED));
4882 udelay(40);
4883
4884 if (force_reset)
4885 tg3_phy_reset(tp);
4886
4887 current_link_up = 0;
4888 current_speed = SPEED_INVALID;
4889 current_duplex = DUPLEX_INVALID;
4890
4891 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4892 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004893 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
4894 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4895 bmsr |= BMSR_LSTATUS;
4896 else
4897 bmsr &= ~BMSR_LSTATUS;
4898 }
Michael Chan747e8f82005-07-25 12:33:22 -07004899
4900 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
4901
4902 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004903 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004904 /* do nothing, just check for link up at the end */
4905 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4906 u32 adv, new_adv;
4907
4908 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4909 new_adv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
4910 ADVERTISE_1000XPAUSE |
4911 ADVERTISE_1000XPSE_ASYM |
4912 ADVERTISE_SLCT);
4913
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004914 new_adv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Michael Chan747e8f82005-07-25 12:33:22 -07004915
4916 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
4917 new_adv |= ADVERTISE_1000XHALF;
4918 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
4919 new_adv |= ADVERTISE_1000XFULL;
4920
4921 if ((new_adv != adv) || !(bmcr & BMCR_ANENABLE)) {
4922 tg3_writephy(tp, MII_ADVERTISE, new_adv);
4923 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
4924 tg3_writephy(tp, MII_BMCR, bmcr);
4925
4926 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07004927 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004928 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004929
4930 return err;
4931 }
4932 } else {
4933 u32 new_bmcr;
4934
4935 bmcr &= ~BMCR_SPEED1000;
4936 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
4937
4938 if (tp->link_config.duplex == DUPLEX_FULL)
4939 new_bmcr |= BMCR_FULLDPLX;
4940
4941 if (new_bmcr != bmcr) {
4942 /* BMCR_SPEED1000 is a reserved bit that needs
4943 * to be set on write.
4944 */
4945 new_bmcr |= BMCR_SPEED1000;
4946
4947 /* Force a linkdown */
4948 if (netif_carrier_ok(tp->dev)) {
4949 u32 adv;
4950
4951 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4952 adv &= ~(ADVERTISE_1000XFULL |
4953 ADVERTISE_1000XHALF |
4954 ADVERTISE_SLCT);
4955 tg3_writephy(tp, MII_ADVERTISE, adv);
4956 tg3_writephy(tp, MII_BMCR, bmcr |
4957 BMCR_ANRESTART |
4958 BMCR_ANENABLE);
4959 udelay(10);
4960 netif_carrier_off(tp->dev);
4961 }
4962 tg3_writephy(tp, MII_BMCR, new_bmcr);
4963 bmcr = new_bmcr;
4964 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4965 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004966 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
4967 ASIC_REV_5714) {
4968 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4969 bmsr |= BMSR_LSTATUS;
4970 else
4971 bmsr &= ~BMSR_LSTATUS;
4972 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004973 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004974 }
4975 }
4976
4977 if (bmsr & BMSR_LSTATUS) {
4978 current_speed = SPEED_1000;
4979 current_link_up = 1;
4980 if (bmcr & BMCR_FULLDPLX)
4981 current_duplex = DUPLEX_FULL;
4982 else
4983 current_duplex = DUPLEX_HALF;
4984
Matt Carlsonef167e22007-12-20 20:10:01 -08004985 local_adv = 0;
4986 remote_adv = 0;
4987
Michael Chan747e8f82005-07-25 12:33:22 -07004988 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08004989 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07004990
4991 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
4992 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
4993 common = local_adv & remote_adv;
4994 if (common & (ADVERTISE_1000XHALF |
4995 ADVERTISE_1000XFULL)) {
4996 if (common & ADVERTISE_1000XFULL)
4997 current_duplex = DUPLEX_FULL;
4998 else
4999 current_duplex = DUPLEX_HALF;
Joe Perches63c3a662011-04-26 08:12:10 +00005000 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005001 /* Link is up via parallel detect */
Matt Carlson859a5882010-04-05 10:19:28 +00005002 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07005003 current_link_up = 0;
Matt Carlson859a5882010-04-05 10:19:28 +00005004 }
Michael Chan747e8f82005-07-25 12:33:22 -07005005 }
5006 }
5007
Matt Carlsonef167e22007-12-20 20:10:01 -08005008 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
5009 tg3_setup_flow_control(tp, local_adv, remote_adv);
5010
Michael Chan747e8f82005-07-25 12:33:22 -07005011 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5012 if (tp->link_config.active_duplex == DUPLEX_HALF)
5013 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5014
5015 tw32_f(MAC_MODE, tp->mac_mode);
5016 udelay(40);
5017
5018 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5019
5020 tp->link_config.active_speed = current_speed;
5021 tp->link_config.active_duplex = current_duplex;
5022
5023 if (current_link_up != netif_carrier_ok(tp->dev)) {
5024 if (current_link_up)
5025 netif_carrier_on(tp->dev);
5026 else {
5027 netif_carrier_off(tp->dev);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005028 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005029 }
5030 tg3_link_report(tp);
5031 }
5032 return err;
5033}
5034
5035static void tg3_serdes_parallel_detect(struct tg3 *tp)
5036{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005037 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005038 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005039 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005040 return;
5041 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005042
Michael Chan747e8f82005-07-25 12:33:22 -07005043 if (!netif_carrier_ok(tp->dev) &&
5044 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5045 u32 bmcr;
5046
5047 tg3_readphy(tp, MII_BMCR, &bmcr);
5048 if (bmcr & BMCR_ANENABLE) {
5049 u32 phy1, phy2;
5050
5051 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005052 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5053 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005054
5055 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005056 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5057 MII_TG3_DSP_EXP1_INT_STAT);
5058 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5059 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005060
5061 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5062 /* We have signal detect and not receiving
5063 * config code words, link is up by parallel
5064 * detection.
5065 */
5066
5067 bmcr &= ~BMCR_ANENABLE;
5068 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5069 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005070 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005071 }
5072 }
Matt Carlson859a5882010-04-05 10:19:28 +00005073 } else if (netif_carrier_ok(tp->dev) &&
5074 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005075 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005076 u32 phy2;
5077
5078 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005079 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5080 MII_TG3_DSP_EXP1_INT_STAT);
5081 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005082 if (phy2 & 0x20) {
5083 u32 bmcr;
5084
5085 /* Config code words received, turn on autoneg. */
5086 tg3_readphy(tp, MII_BMCR, &bmcr);
5087 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
5088
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005089 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005090
5091 }
5092 }
5093}
5094
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095static int tg3_setup_phy(struct tg3 *tp, int force_reset)
5096{
Matt Carlsonf2096f92011-04-05 14:22:48 +00005097 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098 int err;
5099
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005100 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005102 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07005103 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a5882010-04-05 10:19:28 +00005104 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106
Matt Carlsonbcb37f62008-11-03 16:52:09 -08005107 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005108 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08005109
5110 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
5111 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
5112 scale = 65;
5113 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
5114 scale = 6;
5115 else
5116 scale = 12;
5117
5118 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
5119 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
5120 tw32(GRC_MISC_CFG, val);
5121 }
5122
Matt Carlsonf2096f92011-04-05 14:22:48 +00005123 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5124 (6 << TX_LENGTHS_IPG_SHIFT);
5125 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
5126 val |= tr32(MAC_TX_LENGTHS) &
5127 (TX_LENGTHS_JMB_FRM_LEN_MSK |
5128 TX_LENGTHS_CNT_DWN_VAL_MSK);
5129
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 if (tp->link_config.active_speed == SPEED_1000 &&
5131 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005132 tw32(MAC_TX_LENGTHS, val |
5133 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00005135 tw32(MAC_TX_LENGTHS, val |
5136 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137
Joe Perches63c3a662011-04-26 08:12:10 +00005138 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 if (netif_carrier_ok(tp->dev)) {
5140 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07005141 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142 } else {
5143 tw32(HOSTCC_STAT_COAL_TICKS, 0);
5144 }
5145 }
5146
Joe Perches63c3a662011-04-26 08:12:10 +00005147 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005148 val = tr32(PCIE_PWR_MGMT_THRESH);
Matt Carlson8ed5d972007-05-07 00:25:49 -07005149 if (!netif_carrier_ok(tp->dev))
5150 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
5151 tp->pwrmgmt_thresh;
5152 else
5153 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
5154 tw32(PCIE_PWR_MGMT_THRESH, val);
5155 }
5156
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157 return err;
5158}
5159
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005160static inline int tg3_irq_sync(struct tg3 *tp)
5161{
5162 return tp->irq_sync;
5163}
5164
Matt Carlson97bd8e42011-04-13 11:05:04 +00005165static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
5166{
5167 int i;
5168
5169 dst = (u32 *)((u8 *)dst + off);
5170 for (i = 0; i < len; i += sizeof(u32))
5171 *dst++ = tr32(off + i);
5172}
5173
5174static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
5175{
5176 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
5177 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
5178 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
5179 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
5180 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
5181 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
5182 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
5183 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
5184 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
5185 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
5186 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
5187 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
5188 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
5189 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
5190 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
5191 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
5192 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
5193 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
5194 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
5195
Joe Perches63c3a662011-04-26 08:12:10 +00005196 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005197 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
5198
5199 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
5200 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
5201 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
5202 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
5203 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
5204 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
5205 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
5206 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
5207
Joe Perches63c3a662011-04-26 08:12:10 +00005208 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005209 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
5210 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
5211 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
5212 }
5213
5214 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
5215 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
5216 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
5217 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
5218 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
5219
Joe Perches63c3a662011-04-26 08:12:10 +00005220 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005221 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
5222}
5223
5224static void tg3_dump_state(struct tg3 *tp)
5225{
5226 int i;
5227 u32 *regs;
5228
5229 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
5230 if (!regs) {
5231 netdev_err(tp->dev, "Failed allocating register dump buffer\n");
5232 return;
5233 }
5234
Joe Perches63c3a662011-04-26 08:12:10 +00005235 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005236 /* Read up to but not including private PCI registers */
5237 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
5238 regs[i / sizeof(u32)] = tr32(i);
5239 } else
5240 tg3_dump_legacy_regs(tp, regs);
5241
5242 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
5243 if (!regs[i + 0] && !regs[i + 1] &&
5244 !regs[i + 2] && !regs[i + 3])
5245 continue;
5246
5247 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
5248 i * 4,
5249 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
5250 }
5251
5252 kfree(regs);
5253
5254 for (i = 0; i < tp->irq_cnt; i++) {
5255 struct tg3_napi *tnapi = &tp->napi[i];
5256
5257 /* SW status block */
5258 netdev_err(tp->dev,
5259 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
5260 i,
5261 tnapi->hw_status->status,
5262 tnapi->hw_status->status_tag,
5263 tnapi->hw_status->rx_jumbo_consumer,
5264 tnapi->hw_status->rx_consumer,
5265 tnapi->hw_status->rx_mini_consumer,
5266 tnapi->hw_status->idx[0].rx_producer,
5267 tnapi->hw_status->idx[0].tx_consumer);
5268
5269 netdev_err(tp->dev,
5270 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
5271 i,
5272 tnapi->last_tag, tnapi->last_irq_tag,
5273 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
5274 tnapi->rx_rcb_ptr,
5275 tnapi->prodring.rx_std_prod_idx,
5276 tnapi->prodring.rx_std_cons_idx,
5277 tnapi->prodring.rx_jmb_prod_idx,
5278 tnapi->prodring.rx_jmb_cons_idx);
5279 }
5280}
5281
Michael Chandf3e6542006-05-26 17:48:07 -07005282/* This is called whenever we suspect that the system chipset is re-
5283 * ordering the sequence of MMIO to the tx send mailbox. The symptom
5284 * is bogus tx completions. We try to recover by setting the
5285 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
5286 * in the workqueue.
5287 */
5288static void tg3_tx_recover(struct tg3 *tp)
5289{
Joe Perches63c3a662011-04-26 08:12:10 +00005290 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07005291 tp->write32_tx_mbox == tg3_write_indirect_mbox);
5292
Matt Carlson5129c3a2010-04-05 10:19:23 +00005293 netdev_warn(tp->dev,
5294 "The system may be re-ordering memory-mapped I/O "
5295 "cycles to the network device, attempting to recover. "
5296 "Please report the problem to the driver maintainer "
5297 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07005298
5299 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005300 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005301 spin_unlock(&tp->lock);
5302}
5303
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005304static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07005305{
Matt Carlsonf65aac12010-08-02 11:26:03 +00005306 /* Tell compiler to fetch tx indices from memory. */
5307 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005308 return tnapi->tx_pending -
5309 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07005310}
5311
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312/* Tigon3 never reports partial packet sends. So we do not
5313 * need special logic to handle SKBs that have not had all
5314 * of their frags sent yet, like SunGEM does.
5315 */
Matt Carlson17375d22009-08-28 14:02:18 +00005316static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317{
Matt Carlson17375d22009-08-28 14:02:18 +00005318 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005319 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005320 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005321 struct netdev_queue *txq;
5322 int index = tnapi - tp->napi;
5323
Joe Perches63c3a662011-04-26 08:12:10 +00005324 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005325 index--;
5326
5327 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328
5329 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00005330 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07005332 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333
Michael Chandf3e6542006-05-26 17:48:07 -07005334 if (unlikely(skb == NULL)) {
5335 tg3_tx_recover(tp);
5336 return;
5337 }
5338
Alexander Duyckf4188d82009-12-02 16:48:38 +00005339 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005340 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005341 skb_headlen(skb),
5342 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343
5344 ri->skb = NULL;
5345
Matt Carlsone01ee142011-07-27 14:20:50 +00005346 while (ri->fragmented) {
5347 ri->fragmented = false;
5348 sw_idx = NEXT_TX(sw_idx);
5349 ri = &tnapi->tx_buffers[sw_idx];
5350 }
5351
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352 sw_idx = NEXT_TX(sw_idx);
5353
5354 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005355 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07005356 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
5357 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005358
5359 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005360 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00005361 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005362 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00005363
5364 while (ri->fragmented) {
5365 ri->fragmented = false;
5366 sw_idx = NEXT_TX(sw_idx);
5367 ri = &tnapi->tx_buffers[sw_idx];
5368 }
5369
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370 sw_idx = NEXT_TX(sw_idx);
5371 }
5372
David S. Millerf47c11e2005-06-24 20:18:35 -07005373 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07005374
5375 if (unlikely(tx_bug)) {
5376 tg3_tx_recover(tp);
5377 return;
5378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379 }
5380
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005381 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382
Michael Chan1b2a7202006-08-07 21:46:02 -07005383 /* Need to make the tx_cons update visible to tg3_start_xmit()
5384 * before checking for netif_queue_stopped(). Without the
5385 * memory barrier, there is a small possibility that tg3_start_xmit()
5386 * will miss it and cause the queue to be stopped forever.
5387 */
5388 smp_mb();
5389
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005390 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005391 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005392 __netif_tx_lock(txq, smp_processor_id());
5393 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005394 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005395 netif_tx_wake_queue(txq);
5396 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07005397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398}
5399
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005400static void tg3_rx_skb_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
5401{
5402 if (!ri->skb)
5403 return;
5404
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005405 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005406 map_sz, PCI_DMA_FROMDEVICE);
5407 dev_kfree_skb_any(ri->skb);
5408 ri->skb = NULL;
5409}
5410
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411/* Returns size of skb allocated or < 0 on error.
5412 *
5413 * We only need to fill in the address because the other members
5414 * of the RX descriptor are invariant, see tg3_init_rings.
5415 *
5416 * Note the purposeful assymetry of cpu vs. chip accesses. For
5417 * posting buffers we only dirty the first cache line of the RX
5418 * descriptor (containing the address). Whereas for the RX status
5419 * buffers the cpu only reads the last cacheline of the RX descriptor
5420 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
5421 */
Matt Carlson86b21e52009-11-13 13:03:45 +00005422static int tg3_alloc_rx_skb(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Matt Carlsona3896162009-11-13 13:03:44 +00005423 u32 opaque_key, u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424{
5425 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00005426 struct ring_info *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 struct sk_buff *skb;
5428 dma_addr_t mapping;
5429 int skb_size, dest_idx;
5430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 switch (opaque_key) {
5432 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005433 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00005434 desc = &tpr->rx_std[dest_idx];
5435 map = &tpr->rx_std_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00005436 skb_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437 break;
5438
5439 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005440 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00005441 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00005442 map = &tpr->rx_jmb_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00005443 skb_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444 break;
5445
5446 default:
5447 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
5450 /* Do not overwrite any of the map or rp information
5451 * until we are sure we can commit to a new buffer.
5452 *
5453 * Callers depend upon this behavior and assume that
5454 * we leave everything unchanged if we fail.
5455 */
Matt Carlson81389f52011-08-31 11:44:49 +00005456 skb = netdev_alloc_skb(tp->dev, skb_size + TG3_RX_OFFSET(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457 if (skb == NULL)
5458 return -ENOMEM;
5459
Matt Carlson81389f52011-08-31 11:44:49 +00005460 skb_reserve(skb, TG3_RX_OFFSET(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461
Matt Carlson287be122009-08-28 13:58:46 +00005462 mapping = pci_map_single(tp->pdev, skb->data, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463 PCI_DMA_FROMDEVICE);
Matt Carlsona21771d2009-11-02 14:25:31 +00005464 if (pci_dma_mapping_error(tp->pdev, mapping)) {
5465 dev_kfree_skb(skb);
5466 return -EIO;
5467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468
5469 map->skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005470 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472 desc->addr_hi = ((u64)mapping >> 32);
5473 desc->addr_lo = ((u64)mapping & 0xffffffff);
5474
5475 return skb_size;
5476}
5477
5478/* We only need to move over in the address because the other
5479 * members of the RX descriptor are invariant. See notes above
5480 * tg3_alloc_rx_skb for full details.
5481 */
Matt Carlsona3896162009-11-13 13:03:44 +00005482static void tg3_recycle_rx(struct tg3_napi *tnapi,
5483 struct tg3_rx_prodring_set *dpr,
5484 u32 opaque_key, int src_idx,
5485 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486{
Matt Carlson17375d22009-08-28 14:02:18 +00005487 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
5489 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005490 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005491 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492
5493 switch (opaque_key) {
5494 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005495 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005496 dest_desc = &dpr->rx_std[dest_idx];
5497 dest_map = &dpr->rx_std_buffers[dest_idx];
5498 src_desc = &spr->rx_std[src_idx];
5499 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500 break;
5501
5502 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005503 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005504 dest_desc = &dpr->rx_jmb[dest_idx].std;
5505 dest_map = &dpr->rx_jmb_buffers[dest_idx];
5506 src_desc = &spr->rx_jmb[src_idx].std;
5507 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 break;
5509
5510 default:
5511 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513
5514 dest_map->skb = src_map->skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005515 dma_unmap_addr_set(dest_map, mapping,
5516 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517 dest_desc->addr_hi = src_desc->addr_hi;
5518 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00005519
5520 /* Ensure that the update to the skb happens after the physical
5521 * addresses have been transferred to the new BD location.
5522 */
5523 smp_wmb();
5524
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525 src_map->skb = NULL;
5526}
5527
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528/* The RX ring scheme is composed of multiple rings which post fresh
5529 * buffers to the chip, and one special ring the chip uses to report
5530 * status back to the host.
5531 *
5532 * The special ring reports the status of received packets to the
5533 * host. The chip does not write into the original descriptor the
5534 * RX buffer was obtained from. The chip simply takes the original
5535 * descriptor as provided by the host, updates the status and length
5536 * field, then writes this into the next status ring entry.
5537 *
5538 * Each ring the host uses to post buffers to the chip is described
5539 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
5540 * it is first placed into the on-chip ram. When the packet's length
5541 * is known, it walks down the TG3_BDINFO entries to select the ring.
5542 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
5543 * which is within the range of the new packet's length is chosen.
5544 *
5545 * The "separate ring for rx status" scheme may sound queer, but it makes
5546 * sense from a cache coherency perspective. If only the host writes
5547 * to the buffer post rings, and only the chip writes to the rx status
5548 * rings, then cache lines never move beyond shared-modified state.
5549 * If both the host and chip were to write into the same ring, cache line
5550 * eviction could occur since both entities want it in an exclusive state.
5551 */
Matt Carlson17375d22009-08-28 14:02:18 +00005552static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553{
Matt Carlson17375d22009-08-28 14:02:18 +00005554 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07005555 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005556 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00005557 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07005558 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005560 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005562 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563 /*
5564 * We need to order the read of hw_idx and the read of
5565 * the opaque cookie.
5566 */
5567 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568 work_mask = 0;
5569 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005570 std_prod_idx = tpr->rx_std_prod_idx;
5571 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00005573 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00005574 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575 unsigned int len;
5576 struct sk_buff *skb;
5577 dma_addr_t dma_addr;
5578 u32 opaque_key, desc_idx, *post_ptr;
5579
5580 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
5581 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
5582 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005583 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005584 dma_addr = dma_unmap_addr(ri, mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00005585 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00005586 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07005587 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005589 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005590 dma_addr = dma_unmap_addr(ri, mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00005591 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00005592 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00005593 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
5596 work_mask |= opaque_key;
5597
5598 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
5599 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
5600 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00005601 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602 desc_idx, *post_ptr);
5603 drop_it_no_recycle:
5604 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00005605 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606 goto next_pkt;
5607 }
5608
Matt Carlsonad829262008-11-21 17:16:16 -08005609 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
5610 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611
Matt Carlsond2757fc2010-04-12 06:58:27 +00005612 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613 int skb_size;
5614
Matt Carlson86b21e52009-11-13 13:03:45 +00005615 skb_size = tg3_alloc_rx_skb(tp, tpr, opaque_key,
Matt Carlsonafc081f2009-11-13 13:03:43 +00005616 *post_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617 if (skb_size < 0)
5618 goto drop_it;
5619
Matt Carlson287be122009-08-28 13:58:46 +00005620 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621 PCI_DMA_FROMDEVICE);
5622
Matt Carlson61e800c2010-02-17 15:16:54 +00005623 /* Ensure that the update to the skb happens
5624 * after the usage of the old DMA mapping.
5625 */
5626 smp_wmb();
5627
5628 ri->skb = NULL;
5629
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630 skb_put(skb, len);
5631 } else {
5632 struct sk_buff *copy_skb;
5633
Matt Carlsona3896162009-11-13 13:03:44 +00005634 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 desc_idx, *post_ptr);
5636
Matt Carlsonbf933c82011-01-25 15:58:49 +00005637 copy_skb = netdev_alloc_skb(tp->dev, len +
Matt Carlson9dc7a112010-04-12 06:58:28 +00005638 TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639 if (copy_skb == NULL)
5640 goto drop_it_no_recycle;
5641
Matt Carlsonbf933c82011-01-25 15:58:49 +00005642 skb_reserve(copy_skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 skb_put(copy_skb, len);
5644 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03005645 skb_copy_from_linear_data(skb, copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
5647
5648 /* We'll reuse the original ring buffer. */
5649 skb = copy_skb;
5650 }
5651
Michał Mirosławdc668912011-04-07 03:35:07 +00005652 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
5654 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
5655 >> RXD_TCPCSUM_SHIFT) == 0xffff))
5656 skb->ip_summed = CHECKSUM_UNNECESSARY;
5657 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005658 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659
5660 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005661
5662 if (len > (tp->dev->mtu + ETH_HLEN) &&
5663 skb->protocol != htons(ETH_P_8021Q)) {
5664 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00005665 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005666 }
5667
Matt Carlson9dc7a112010-04-12 06:58:28 +00005668 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00005669 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
5670 __vlan_hwaccel_put_tag(skb,
5671 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00005672
Matt Carlsonbf933c82011-01-25 15:58:49 +00005673 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675 received++;
5676 budget--;
5677
5678next_pkt:
5679 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07005680
5681 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005682 tpr->rx_std_prod_idx = std_prod_idx &
5683 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00005684 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5685 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07005686 work_mask &= ~RXD_OPAQUE_RING_STD;
5687 rx_std_posted = 0;
5688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07005690 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00005691 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07005692
5693 /* Refresh hw_idx to see if there is new work */
5694 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005695 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07005696 rmb();
5697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698 }
5699
5700 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00005701 tnapi->rx_rcb_ptr = sw_idx;
5702 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703
5704 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00005705 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005706 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005707 tpr->rx_std_prod_idx = std_prod_idx &
5708 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005709 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5710 tpr->rx_std_prod_idx);
5711 }
5712 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005713 tpr->rx_jmb_prod_idx = jmb_prod_idx &
5714 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005715 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5716 tpr->rx_jmb_prod_idx);
5717 }
5718 mmiowb();
5719 } else if (work_mask) {
5720 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
5721 * updated before the producer indices can be updated.
5722 */
5723 smp_wmb();
5724
Matt Carlson2c49a442010-09-30 10:34:35 +00005725 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
5726 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005727
Matt Carlsone4af1af2010-02-12 14:47:05 +00005728 if (tnapi != &tp->napi[1])
5729 napi_schedule(&tp->napi[1].napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731
5732 return received;
5733}
5734
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005735static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00005738 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005739 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
5740
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741 if (sblk->status & SD_STATUS_LINK_CHG) {
5742 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005743 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07005744 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005745 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07005746 tw32_f(MAC_STATUS,
5747 (MAC_STATUS_SYNC_CHANGED |
5748 MAC_STATUS_CFG_CHANGED |
5749 MAC_STATUS_MI_COMPLETION |
5750 MAC_STATUS_LNKSTATE_CHANGED));
5751 udelay(40);
5752 } else
5753 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07005754 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 }
5756 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005757}
5758
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005759static int tg3_rx_prodring_xfer(struct tg3 *tp,
5760 struct tg3_rx_prodring_set *dpr,
5761 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005762{
5763 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005764 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005765
5766 while (1) {
5767 src_prod_idx = spr->rx_std_prod_idx;
5768
5769 /* Make sure updates to the rx_std_buffers[] entries and the
5770 * standard producer index are seen in the correct order.
5771 */
5772 smp_rmb();
5773
5774 if (spr->rx_std_cons_idx == src_prod_idx)
5775 break;
5776
5777 if (spr->rx_std_cons_idx < src_prod_idx)
5778 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
5779 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005780 cpycnt = tp->rx_std_ring_mask + 1 -
5781 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005782
Matt Carlson2c49a442010-09-30 10:34:35 +00005783 cpycnt = min(cpycnt,
5784 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005785
5786 si = spr->rx_std_cons_idx;
5787 di = dpr->rx_std_prod_idx;
5788
Matt Carlsone92967b2010-02-12 14:47:06 +00005789 for (i = di; i < di + cpycnt; i++) {
5790 if (dpr->rx_std_buffers[i].skb) {
5791 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005792 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005793 break;
5794 }
5795 }
5796
5797 if (!cpycnt)
5798 break;
5799
5800 /* Ensure that updates to the rx_std_buffers ring and the
5801 * shadowed hardware producer ring from tg3_recycle_skb() are
5802 * ordered correctly WRT the skb check above.
5803 */
5804 smp_rmb();
5805
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005806 memcpy(&dpr->rx_std_buffers[di],
5807 &spr->rx_std_buffers[si],
5808 cpycnt * sizeof(struct ring_info));
5809
5810 for (i = 0; i < cpycnt; i++, di++, si++) {
5811 struct tg3_rx_buffer_desc *sbd, *dbd;
5812 sbd = &spr->rx_std[si];
5813 dbd = &dpr->rx_std[di];
5814 dbd->addr_hi = sbd->addr_hi;
5815 dbd->addr_lo = sbd->addr_lo;
5816 }
5817
Matt Carlson2c49a442010-09-30 10:34:35 +00005818 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
5819 tp->rx_std_ring_mask;
5820 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
5821 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005822 }
5823
5824 while (1) {
5825 src_prod_idx = spr->rx_jmb_prod_idx;
5826
5827 /* Make sure updates to the rx_jmb_buffers[] entries and
5828 * the jumbo producer index are seen in the correct order.
5829 */
5830 smp_rmb();
5831
5832 if (spr->rx_jmb_cons_idx == src_prod_idx)
5833 break;
5834
5835 if (spr->rx_jmb_cons_idx < src_prod_idx)
5836 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
5837 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005838 cpycnt = tp->rx_jmb_ring_mask + 1 -
5839 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005840
5841 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00005842 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005843
5844 si = spr->rx_jmb_cons_idx;
5845 di = dpr->rx_jmb_prod_idx;
5846
Matt Carlsone92967b2010-02-12 14:47:06 +00005847 for (i = di; i < di + cpycnt; i++) {
5848 if (dpr->rx_jmb_buffers[i].skb) {
5849 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005850 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005851 break;
5852 }
5853 }
5854
5855 if (!cpycnt)
5856 break;
5857
5858 /* Ensure that updates to the rx_jmb_buffers ring and the
5859 * shadowed hardware producer ring from tg3_recycle_skb() are
5860 * ordered correctly WRT the skb check above.
5861 */
5862 smp_rmb();
5863
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005864 memcpy(&dpr->rx_jmb_buffers[di],
5865 &spr->rx_jmb_buffers[si],
5866 cpycnt * sizeof(struct ring_info));
5867
5868 for (i = 0; i < cpycnt; i++, di++, si++) {
5869 struct tg3_rx_buffer_desc *sbd, *dbd;
5870 sbd = &spr->rx_jmb[si].std;
5871 dbd = &dpr->rx_jmb[di].std;
5872 dbd->addr_hi = sbd->addr_hi;
5873 dbd->addr_lo = sbd->addr_lo;
5874 }
5875
Matt Carlson2c49a442010-09-30 10:34:35 +00005876 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
5877 tp->rx_jmb_ring_mask;
5878 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
5879 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005880 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005881
5882 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005883}
5884
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005885static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
5886{
5887 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888
5889 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005890 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00005891 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00005892 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07005893 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894 }
5895
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896 /* run RX thread, within the bounds set by NAPI.
5897 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005898 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005900 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00005901 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902
Joe Perches63c3a662011-04-26 08:12:10 +00005903 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005904 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005905 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00005906 u32 std_prod_idx = dpr->rx_std_prod_idx;
5907 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005908
Matt Carlsone4af1af2010-02-12 14:47:05 +00005909 for (i = 1; i < tp->irq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005910 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00005911 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005912
5913 wmb();
5914
Matt Carlsone4af1af2010-02-12 14:47:05 +00005915 if (std_prod_idx != dpr->rx_std_prod_idx)
5916 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5917 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005918
Matt Carlsone4af1af2010-02-12 14:47:05 +00005919 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
5920 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5921 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005922
5923 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005924
5925 if (err)
5926 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005927 }
5928
David S. Miller6f535762007-10-11 18:08:29 -07005929 return work_done;
5930}
David S. Millerf7383c22005-05-18 22:50:53 -07005931
Matt Carlsondb219972011-11-04 09:15:03 +00005932static inline void tg3_reset_task_schedule(struct tg3 *tp)
5933{
5934 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
5935 schedule_work(&tp->reset_task);
5936}
5937
5938static inline void tg3_reset_task_cancel(struct tg3 *tp)
5939{
5940 cancel_work_sync(&tp->reset_task);
5941 tg3_flag_clear(tp, RESET_TASK_PENDING);
5942}
5943
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005944static int tg3_poll_msix(struct napi_struct *napi, int budget)
5945{
5946 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5947 struct tg3 *tp = tnapi->tp;
5948 int work_done = 0;
5949 struct tg3_hw_status *sblk = tnapi->hw_status;
5950
5951 while (1) {
5952 work_done = tg3_poll_work(tnapi, work_done, budget);
5953
Joe Perches63c3a662011-04-26 08:12:10 +00005954 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005955 goto tx_recovery;
5956
5957 if (unlikely(work_done >= budget))
5958 break;
5959
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005960 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005961 * to tell the hw how much work has been processed,
5962 * so we must read it before checking for more work.
5963 */
5964 tnapi->last_tag = sblk->status_tag;
5965 tnapi->last_irq_tag = tnapi->last_tag;
5966 rmb();
5967
5968 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00005969 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
5970 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005971 napi_complete(napi);
5972 /* Reenable interrupts. */
5973 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
5974 mmiowb();
5975 break;
5976 }
5977 }
5978
5979 return work_done;
5980
5981tx_recovery:
5982 /* work_done is guaranteed to be less than budget. */
5983 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00005984 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005985 return work_done;
5986}
5987
Matt Carlsone64de4e2011-04-13 11:05:05 +00005988static void tg3_process_error(struct tg3 *tp)
5989{
5990 u32 val;
5991 bool real_error = false;
5992
Joe Perches63c3a662011-04-26 08:12:10 +00005993 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00005994 return;
5995
5996 /* Check Flow Attention register */
5997 val = tr32(HOSTCC_FLOW_ATTN);
5998 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
5999 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
6000 real_error = true;
6001 }
6002
6003 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
6004 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
6005 real_error = true;
6006 }
6007
6008 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
6009 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
6010 real_error = true;
6011 }
6012
6013 if (!real_error)
6014 return;
6015
6016 tg3_dump_state(tp);
6017
Joe Perches63c3a662011-04-26 08:12:10 +00006018 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00006019 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00006020}
6021
David S. Miller6f535762007-10-11 18:08:29 -07006022static int tg3_poll(struct napi_struct *napi, int budget)
6023{
Matt Carlson8ef04422009-08-28 14:01:37 +00006024 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6025 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07006026 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00006027 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07006028
6029 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00006030 if (sblk->status & SD_STATUS_ERROR)
6031 tg3_process_error(tp);
6032
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006033 tg3_poll_link(tp);
6034
Matt Carlson17375d22009-08-28 14:02:18 +00006035 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07006036
Joe Perches63c3a662011-04-26 08:12:10 +00006037 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07006038 goto tx_recovery;
6039
6040 if (unlikely(work_done >= budget))
6041 break;
6042
Joe Perches63c3a662011-04-26 08:12:10 +00006043 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00006044 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07006045 * to tell the hw how much work has been processed,
6046 * so we must read it before checking for more work.
6047 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006048 tnapi->last_tag = sblk->status_tag;
6049 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07006050 rmb();
6051 } else
6052 sblk->status &= ~SD_STATUS_UPDATED;
6053
Matt Carlson17375d22009-08-28 14:02:18 +00006054 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006055 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00006056 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07006057 break;
6058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059 }
6060
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006061 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07006062
6063tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07006064 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08006065 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006066 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07006067 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068}
6069
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006070static void tg3_napi_disable(struct tg3 *tp)
6071{
6072 int i;
6073
6074 for (i = tp->irq_cnt - 1; i >= 0; i--)
6075 napi_disable(&tp->napi[i].napi);
6076}
6077
6078static void tg3_napi_enable(struct tg3 *tp)
6079{
6080 int i;
6081
6082 for (i = 0; i < tp->irq_cnt; i++)
6083 napi_enable(&tp->napi[i].napi);
6084}
6085
6086static void tg3_napi_init(struct tg3 *tp)
6087{
6088 int i;
6089
6090 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
6091 for (i = 1; i < tp->irq_cnt; i++)
6092 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
6093}
6094
6095static void tg3_napi_fini(struct tg3 *tp)
6096{
6097 int i;
6098
6099 for (i = 0; i < tp->irq_cnt; i++)
6100 netif_napi_del(&tp->napi[i].napi);
6101}
6102
6103static inline void tg3_netif_stop(struct tg3 *tp)
6104{
6105 tp->dev->trans_start = jiffies; /* prevent tx timeout */
6106 tg3_napi_disable(tp);
6107 netif_tx_disable(tp->dev);
6108}
6109
6110static inline void tg3_netif_start(struct tg3 *tp)
6111{
6112 /* NOTE: unconditional netif_tx_wake_all_queues is only
6113 * appropriate so long as all callers are assured to
6114 * have free tx slots (such as after tg3_init_hw)
6115 */
6116 netif_tx_wake_all_queues(tp->dev);
6117
6118 tg3_napi_enable(tp);
6119 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
6120 tg3_enable_ints(tp);
6121}
6122
David S. Millerf47c11e2005-06-24 20:18:35 -07006123static void tg3_irq_quiesce(struct tg3 *tp)
6124{
Matt Carlson4f125f42009-09-01 12:55:02 +00006125 int i;
6126
David S. Millerf47c11e2005-06-24 20:18:35 -07006127 BUG_ON(tp->irq_sync);
6128
6129 tp->irq_sync = 1;
6130 smp_mb();
6131
Matt Carlson4f125f42009-09-01 12:55:02 +00006132 for (i = 0; i < tp->irq_cnt; i++)
6133 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07006134}
6135
David S. Millerf47c11e2005-06-24 20:18:35 -07006136/* Fully shutdown all tg3 driver activity elsewhere in the system.
6137 * If irq_sync is non-zero, then the IRQ handler must be synchronized
6138 * with as well. Most of the time, this is not necessary except when
6139 * shutting down the device.
6140 */
6141static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
6142{
Michael Chan46966542007-07-11 19:47:19 -07006143 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07006144 if (irq_sync)
6145 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006146}
6147
6148static inline void tg3_full_unlock(struct tg3 *tp)
6149{
David S. Millerf47c11e2005-06-24 20:18:35 -07006150 spin_unlock_bh(&tp->lock);
6151}
6152
Michael Chanfcfa0a32006-03-20 22:28:41 -08006153/* One-shot MSI handler - Chip automatically disables interrupt
6154 * after sending MSI so driver doesn't have to do it.
6155 */
David Howells7d12e782006-10-05 14:55:46 +01006156static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08006157{
Matt Carlson09943a12009-08-28 14:01:57 +00006158 struct tg3_napi *tnapi = dev_id;
6159 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08006160
Matt Carlson898a56f2009-08-28 14:02:40 +00006161 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006162 if (tnapi->rx_rcb)
6163 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006164
6165 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006166 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006167
6168 return IRQ_HANDLED;
6169}
6170
Michael Chan88b06bc2005-04-21 17:13:25 -07006171/* MSI ISR - No need to check for interrupt sharing and no need to
6172 * flush status block and interrupt mailbox. PCI ordering rules
6173 * guarantee that MSI will arrive after the status block.
6174 */
David Howells7d12e782006-10-05 14:55:46 +01006175static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc2005-04-21 17:13:25 -07006176{
Matt Carlson09943a12009-08-28 14:01:57 +00006177 struct tg3_napi *tnapi = dev_id;
6178 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc2005-04-21 17:13:25 -07006179
Matt Carlson898a56f2009-08-28 14:02:40 +00006180 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006181 if (tnapi->rx_rcb)
6182 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc2005-04-21 17:13:25 -07006183 /*
David S. Millerfac9b832005-05-18 22:46:34 -07006184 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc2005-04-21 17:13:25 -07006185 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07006186 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc2005-04-21 17:13:25 -07006187 * NIC to stop sending us irqs, engaging "in-intr-handler"
6188 * event coalescing.
6189 */
Matt Carlson5b39de92011-08-31 11:44:50 +00006190 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07006191 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006192 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07006193
Michael Chan88b06bc2005-04-21 17:13:25 -07006194 return IRQ_RETVAL(1);
6195}
6196
David Howells7d12e782006-10-05 14:55:46 +01006197static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198{
Matt Carlson09943a12009-08-28 14:01:57 +00006199 struct tg3_napi *tnapi = dev_id;
6200 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006201 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202 unsigned int handled = 1;
6203
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204 /* In INTx mode, it is possible for the interrupt to arrive at
6205 * the CPU before the status block posted prior to the interrupt.
6206 * Reading the PCI State register will confirm whether the
6207 * interrupt is ours and will flush the status block.
6208 */
Michael Chand18edcb2007-03-24 20:57:11 -07006209 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00006210 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006211 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6212 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006213 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07006214 }
Michael Chand18edcb2007-03-24 20:57:11 -07006215 }
6216
6217 /*
6218 * Writing any value to intr-mbox-0 clears PCI INTA# and
6219 * chip-internal interrupt pending events.
6220 * Writing non-zero to intr-mbox-0 additional tells the
6221 * NIC to stop sending us irqs, engaging "in-intr-handler"
6222 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006223 *
6224 * Flush the mailbox to de-assert the IRQ immediately to prevent
6225 * spurious interrupts. The flush impacts performance but
6226 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006227 */
Michael Chanc04cb342007-05-07 00:26:15 -07006228 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07006229 if (tg3_irq_sync(tp))
6230 goto out;
6231 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00006232 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00006233 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00006234 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07006235 } else {
6236 /* No work, shared interrupt perhaps? re-enable
6237 * interrupts, and flush that PCI write
6238 */
6239 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
6240 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07006241 }
David S. Millerf47c11e2005-06-24 20:18:35 -07006242out:
David S. Millerfac9b832005-05-18 22:46:34 -07006243 return IRQ_RETVAL(handled);
6244}
6245
David Howells7d12e782006-10-05 14:55:46 +01006246static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07006247{
Matt Carlson09943a12009-08-28 14:01:57 +00006248 struct tg3_napi *tnapi = dev_id;
6249 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006250 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07006251 unsigned int handled = 1;
6252
David S. Millerfac9b832005-05-18 22:46:34 -07006253 /* In INTx mode, it is possible for the interrupt to arrive at
6254 * the CPU before the status block posted prior to the interrupt.
6255 * Reading the PCI State register will confirm whether the
6256 * interrupt is ours and will flush the status block.
6257 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006258 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00006259 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006260 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6261 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006262 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263 }
Michael Chand18edcb2007-03-24 20:57:11 -07006264 }
6265
6266 /*
6267 * writing any value to intr-mbox-0 clears PCI INTA# and
6268 * chip-internal interrupt pending events.
6269 * writing non-zero to intr-mbox-0 additional tells the
6270 * NIC to stop sending us irqs, engaging "in-intr-handler"
6271 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006272 *
6273 * Flush the mailbox to de-assert the IRQ immediately to prevent
6274 * spurious interrupts. The flush impacts performance but
6275 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006276 */
Michael Chanc04cb342007-05-07 00:26:15 -07006277 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00006278
6279 /*
6280 * In a shared interrupt configuration, sometimes other devices'
6281 * interrupts will scream. We record the current status tag here
6282 * so that the above check can report that the screaming interrupts
6283 * are unhandled. Eventually they will be silenced.
6284 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006285 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00006286
Michael Chand18edcb2007-03-24 20:57:11 -07006287 if (tg3_irq_sync(tp))
6288 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00006289
Matt Carlson72334482009-08-28 14:03:01 +00006290 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00006291
Matt Carlson09943a12009-08-28 14:01:57 +00006292 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00006293
David S. Millerf47c11e2005-06-24 20:18:35 -07006294out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295 return IRQ_RETVAL(handled);
6296}
6297
Michael Chan79381092005-04-21 17:13:59 -07006298/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01006299static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07006300{
Matt Carlson09943a12009-08-28 14:01:57 +00006301 struct tg3_napi *tnapi = dev_id;
6302 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006303 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07006304
Michael Chanf9804dd2005-09-27 12:13:10 -07006305 if ((sblk->status & SD_STATUS_UPDATED) ||
6306 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07006307 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07006308 return IRQ_RETVAL(1);
6309 }
6310 return IRQ_RETVAL(0);
6311}
6312
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07006313static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07006314static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315
Michael Chanb9ec6c12006-07-25 16:37:27 -07006316/* Restart hardware after configuration changes, self-test, etc.
6317 * Invoked with tp->lock held.
6318 */
6319static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07006320 __releases(tp->lock)
6321 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07006322{
6323 int err;
6324
6325 err = tg3_init_hw(tp, reset_phy);
6326 if (err) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006327 netdev_err(tp->dev,
6328 "Failed to re-initialize device, aborting\n");
Michael Chanb9ec6c12006-07-25 16:37:27 -07006329 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
6330 tg3_full_unlock(tp);
6331 del_timer_sync(&tp->timer);
6332 tp->irq_sync = 0;
Matt Carlsonfed97812009-09-01 13:10:19 +00006333 tg3_napi_enable(tp);
Michael Chanb9ec6c12006-07-25 16:37:27 -07006334 dev_close(tp->dev);
6335 tg3_full_lock(tp, 0);
6336 }
6337 return err;
6338}
6339
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340#ifdef CONFIG_NET_POLL_CONTROLLER
6341static void tg3_poll_controller(struct net_device *dev)
6342{
Matt Carlson4f125f42009-09-01 12:55:02 +00006343 int i;
Michael Chan88b06bc2005-04-21 17:13:25 -07006344 struct tg3 *tp = netdev_priv(dev);
6345
Matt Carlson4f125f42009-09-01 12:55:02 +00006346 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00006347 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348}
6349#endif
6350
David Howellsc4028952006-11-22 14:57:56 +00006351static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352{
David Howellsc4028952006-11-22 14:57:56 +00006353 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006354 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355
Michael Chan7faa0062006-02-02 17:29:28 -08006356 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08006357
6358 if (!netif_running(tp->dev)) {
Matt Carlsondb219972011-11-04 09:15:03 +00006359 tg3_flag_clear(tp, RESET_TASK_PENDING);
Michael Chan7faa0062006-02-02 17:29:28 -08006360 tg3_full_unlock(tp);
6361 return;
6362 }
6363
6364 tg3_full_unlock(tp);
6365
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006366 tg3_phy_stop(tp);
6367
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368 tg3_netif_stop(tp);
6369
David S. Millerf47c11e2005-06-24 20:18:35 -07006370 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371
Joe Perches63c3a662011-04-26 08:12:10 +00006372 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
Michael Chandf3e6542006-05-26 17:48:07 -07006373 tp->write32_tx_mbox = tg3_write32_tx_mbox;
6374 tp->write32_rx_mbox = tg3_write_flush_reg32;
Joe Perches63c3a662011-04-26 08:12:10 +00006375 tg3_flag_set(tp, MBOX_WRITE_REORDER);
6376 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07006377 }
6378
Michael Chan944d9802005-05-29 14:57:48 -07006379 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006380 err = tg3_init_hw(tp, 1);
6381 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07006382 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383
6384 tg3_netif_start(tp);
6385
Michael Chanb9ec6c12006-07-25 16:37:27 -07006386out:
Michael Chan7faa0062006-02-02 17:29:28 -08006387 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006388
6389 if (!err)
6390 tg3_phy_start(tp);
Matt Carlsondb219972011-11-04 09:15:03 +00006391
6392 tg3_flag_clear(tp, RESET_TASK_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006393}
6394
6395static void tg3_tx_timeout(struct net_device *dev)
6396{
6397 struct tg3 *tp = netdev_priv(dev);
6398
Michael Chanb0408752007-02-13 12:18:30 -08006399 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00006400 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00006401 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08006402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403
Matt Carlsondb219972011-11-04 09:15:03 +00006404 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405}
6406
Michael Chanc58ec932005-09-17 00:46:27 -07006407/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
6408static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
6409{
6410 u32 base = (u32) mapping & 0xffffffff;
6411
Eric Dumazet807540b2010-09-23 05:40:09 +00006412 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07006413}
6414
Michael Chan72f2afb2006-03-06 19:28:35 -08006415/* Test for DMA addresses > 40-bit */
6416static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
6417 int len)
6418{
6419#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00006420 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00006421 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08006422 return 0;
6423#else
6424 return 0;
6425#endif
6426}
6427
Matt Carlsond1a3b732011-07-27 14:20:51 +00006428static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006429 dma_addr_t mapping, u32 len, u32 flags,
6430 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00006431{
Matt Carlson92cd3a12011-07-27 14:20:47 +00006432 txbd->addr_hi = ((u64) mapping >> 32);
6433 txbd->addr_lo = ((u64) mapping & 0xffffffff);
6434 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
6435 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00006436}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437
Matt Carlson84b67b22011-07-27 14:20:52 +00006438static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006439 dma_addr_t map, u32 len, u32 flags,
6440 u32 mss, u32 vlan)
6441{
6442 struct tg3 *tp = tnapi->tp;
6443 bool hwbug = false;
6444
6445 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
6446 hwbug = 1;
6447
6448 if (tg3_4g_overflow_test(map, len))
6449 hwbug = 1;
6450
6451 if (tg3_40bit_overflow_test(tp, map, len))
6452 hwbug = 1;
6453
Matt Carlsone31aa982011-07-27 14:20:53 +00006454 if (tg3_flag(tp, 4K_FIFO_LIMIT)) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006455 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00006456 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsonb9e45482011-11-04 09:14:59 +00006457 while (len > TG3_TX_BD_DMA_MAX && *budget) {
Matt Carlsone31aa982011-07-27 14:20:53 +00006458 u32 frag_len = TG3_TX_BD_DMA_MAX;
6459 len -= TG3_TX_BD_DMA_MAX;
6460
Matt Carlsonb9e45482011-11-04 09:14:59 +00006461 /* Avoid the 8byte DMA problem */
6462 if (len <= 8) {
6463 len += TG3_TX_BD_DMA_MAX / 2;
6464 frag_len = TG3_TX_BD_DMA_MAX / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00006465 }
6466
Matt Carlsonb9e45482011-11-04 09:14:59 +00006467 tnapi->tx_buffers[*entry].fragmented = true;
6468
6469 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6470 frag_len, tmp_flag, mss, vlan);
6471 *budget -= 1;
6472 prvidx = *entry;
6473 *entry = NEXT_TX(*entry);
6474
Matt Carlsone31aa982011-07-27 14:20:53 +00006475 map += frag_len;
6476 }
6477
6478 if (len) {
6479 if (*budget) {
6480 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6481 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00006482 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00006483 *entry = NEXT_TX(*entry);
6484 } else {
6485 hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00006486 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00006487 }
6488 }
6489 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00006490 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6491 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00006492 *entry = NEXT_TX(*entry);
6493 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00006494
6495 return hwbug;
6496}
6497
Matt Carlson0d681b22011-07-27 14:20:49 +00006498static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00006499{
6500 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00006501 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00006502 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006503
Matt Carlson0d681b22011-07-27 14:20:49 +00006504 skb = txb->skb;
6505 txb->skb = NULL;
6506
Matt Carlson432aa7e2011-05-19 12:12:45 +00006507 pci_unmap_single(tnapi->tp->pdev,
6508 dma_unmap_addr(txb, mapping),
6509 skb_headlen(skb),
6510 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006511
6512 while (txb->fragmented) {
6513 txb->fragmented = false;
6514 entry = NEXT_TX(entry);
6515 txb = &tnapi->tx_buffers[entry];
6516 }
6517
Matt Carlsonba1142e2011-11-04 09:15:00 +00006518 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00006519 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006520
6521 entry = NEXT_TX(entry);
6522 txb = &tnapi->tx_buffers[entry];
6523
6524 pci_unmap_page(tnapi->tp->pdev,
6525 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006526 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006527
6528 while (txb->fragmented) {
6529 txb->fragmented = false;
6530 entry = NEXT_TX(entry);
6531 txb = &tnapi->tx_buffers[entry];
6532 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00006533 }
6534}
6535
Michael Chan72f2afb2006-03-06 19:28:35 -08006536/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006537static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04006538 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00006539 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006540 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541{
Matt Carlson24f4efd2009-11-13 13:03:35 +00006542 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04006543 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07006544 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006545 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546
Matt Carlson41588ba2008-04-19 18:12:33 -07006547 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
6548 new_skb = skb_copy(skb, GFP_ATOMIC);
6549 else {
6550 int more_headroom = 4 - ((unsigned long)skb->data & 3);
6551
6552 new_skb = skb_copy_expand(skb,
6553 skb_headroom(skb) + more_headroom,
6554 skb_tailroom(skb), GFP_ATOMIC);
6555 }
6556
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07006558 ret = -1;
6559 } else {
6560 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00006561 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
6562 PCI_DMA_TODEVICE);
6563 /* Make sure the mapping succeeded */
6564 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006565 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07006566 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07006567 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006568 u32 save_entry = *entry;
6569
Matt Carlson92cd3a12011-07-27 14:20:47 +00006570 base_flags |= TXD_FLAG_END;
6571
Matt Carlson84b67b22011-07-27 14:20:52 +00006572 tnapi->tx_buffers[*entry].skb = new_skb;
6573 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00006574 mapping, new_addr);
6575
Matt Carlson84b67b22011-07-27 14:20:52 +00006576 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006577 new_skb->len, base_flags,
6578 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00006579 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00006580 dev_kfree_skb(new_skb);
6581 ret = -1;
6582 }
Michael Chanc58ec932005-09-17 00:46:27 -07006583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584 }
6585
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04006587 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07006588 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589}
6590
Matt Carlson2ffcc982011-05-19 12:12:44 +00006591static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07006592
6593/* Use GSO to workaround a rare TSO bug that may be triggered when the
6594 * TSO header is greater than 80 bytes.
6595 */
6596static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
6597{
6598 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006599 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07006600
6601 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006602 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07006603 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006604
6605 /* netif_tx_stop_queue() must be done before checking
6606 * checking tx index in tg3_tx_avail() below, because in
6607 * tg3_tx(), we update tx index before checking for
6608 * netif_tx_queue_stopped().
6609 */
6610 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006611 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08006612 return NETDEV_TX_BUSY;
6613
6614 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006615 }
6616
6617 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07006618 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07006619 goto tg3_tso_bug_end;
6620
6621 do {
6622 nskb = segs;
6623 segs = segs->next;
6624 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00006625 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006626 } while (segs);
6627
6628tg3_tso_bug_end:
6629 dev_kfree_skb(skb);
6630
6631 return NETDEV_TX_OK;
6632}
Michael Chan52c0fd82006-06-29 20:15:54 -07006633
Michael Chan5a6f3072006-03-20 22:28:05 -08006634/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00006635 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08006636 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00006637static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08006638{
6639 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00006640 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00006641 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006642 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07006643 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006644 struct tg3_napi *tnapi;
6645 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006646 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006647
Matt Carlson24f4efd2009-11-13 13:03:35 +00006648 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
6649 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00006650 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006651 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652
Matt Carlson84b67b22011-07-27 14:20:52 +00006653 budget = tg3_tx_avail(tnapi);
6654
Michael Chan00b70502006-06-17 21:58:45 -07006655 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006656 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07006657 * interrupt. Furthermore, IRQ processing runs lockless so we have
6658 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006660 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006661 if (!netif_tx_queue_stopped(txq)) {
6662 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006663
6664 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00006665 netdev_err(dev,
6666 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668 return NETDEV_TX_BUSY;
6669 }
6670
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006671 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07006673 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006675
Matt Carlsonbe98da62010-07-11 09:31:46 +00006676 mss = skb_shinfo(skb)->gso_size;
6677 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006678 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00006679 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680
6681 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00006682 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6683 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684
Matt Carlson34195c32010-07-11 09:31:42 +00006685 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07006686 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687
Matt Carlson02e96082010-09-15 08:59:59 +00006688 if (skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00006689 hdr_len = skb_headlen(skb) - ETH_HLEN;
6690 } else {
6691 u32 ip_tcp_len;
6692
6693 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
6694 hdr_len = ip_tcp_len + tcp_opt_len;
6695
6696 iph->check = 0;
6697 iph->tot_len = htons(mss + hdr_len);
6698 }
6699
Michael Chan52c0fd82006-06-29 20:15:54 -07006700 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006701 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00006702 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07006703
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
6705 TXD_FLAG_CPU_POST_DMA);
6706
Joe Perches63c3a662011-04-26 08:12:10 +00006707 if (tg3_flag(tp, HW_TSO_1) ||
6708 tg3_flag(tp, HW_TSO_2) ||
6709 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006710 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006712 } else
6713 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6714 iph->daddr, 0,
6715 IPPROTO_TCP,
6716 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717
Joe Perches63c3a662011-04-26 08:12:10 +00006718 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00006719 mss |= (hdr_len & 0xc) << 12;
6720 if (hdr_len & 0x10)
6721 base_flags |= 0x00000010;
6722 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00006723 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006724 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00006725 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006726 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006727 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728 int tsflags;
6729
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006730 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731 mss |= (tsflags << 11);
6732 }
6733 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006734 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735 int tsflags;
6736
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006737 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738 base_flags |= tsflags << 12;
6739 }
6740 }
6741 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00006742
Matt Carlson93a700a2011-08-31 11:44:54 +00006743 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
6744 !mss && skb->len > VLAN_ETH_FRAME_LEN)
6745 base_flags |= TXD_FLAG_JMB_PKT;
6746
Matt Carlson92cd3a12011-07-27 14:20:47 +00006747 if (vlan_tx_tag_present(skb)) {
6748 base_flags |= TXD_FLAG_VLAN;
6749 vlan = vlan_tx_tag_get(skb);
6750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751
Alexander Duyckf4188d82009-12-02 16:48:38 +00006752 len = skb_headlen(skb);
6753
6754 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00006755 if (pci_dma_mapping_error(tp->pdev, mapping))
6756 goto drop;
6757
David S. Miller90079ce2008-09-11 04:52:51 -07006758
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006759 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006760 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761
6762 would_hit_hwbug = 0;
6763
Joe Perches63c3a662011-04-26 08:12:10 +00006764 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07006765 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766
Matt Carlson84b67b22011-07-27 14:20:52 +00006767 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00006768 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00006769 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00006770 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771 /* Now loop through additional data fragments, and queue them. */
Matt Carlsonba1142e2011-11-04 09:15:00 +00006772 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00006773 u32 tmp_mss = mss;
6774
6775 if (!tg3_flag(tp, HW_TSO_1) &&
6776 !tg3_flag(tp, HW_TSO_2) &&
6777 !tg3_flag(tp, HW_TSO_3))
6778 tmp_mss = 0;
6779
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780 last = skb_shinfo(skb)->nr_frags - 1;
6781 for (i = 0; i <= last; i++) {
6782 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6783
Eric Dumazet9e903e02011-10-18 21:00:24 +00006784 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00006785 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01006786 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006788 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006789 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00006790 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01006791 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00006792 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793
Matt Carlsonb9e45482011-11-04 09:14:59 +00006794 if (!budget ||
6795 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00006796 len, base_flags |
6797 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00006798 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006799 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00006800 break;
6801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802 }
6803 }
6804
6805 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00006806 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807
6808 /* If the workaround fails due to memory/mapping
6809 * failure, silently drop this packet.
6810 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006811 entry = tnapi->tx_prod;
6812 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04006813 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00006814 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00006815 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816 }
6817
Richard Cochrand515b452011-06-19 03:31:41 +00006818 skb_tx_timestamp(skb);
6819
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006821 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006823 tnapi->tx_prod = entry;
6824 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006825 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006826
6827 /* netif_tx_stop_queue() must be done before checking
6828 * checking tx index in tg3_tx_avail() below, because in
6829 * tg3_tx(), we update tx index before checking for
6830 * netif_tx_queue_stopped().
6831 */
6832 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006833 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006834 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836
Eric Dumazetcdd0db02009-05-28 00:00:41 +00006837 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006839
6840dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00006841 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00006842 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00006843drop:
6844 dev_kfree_skb(skb);
6845drop_nofree:
6846 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006847 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848}
6849
Matt Carlson6e01b202011-08-19 13:58:20 +00006850static void tg3_mac_loopback(struct tg3 *tp, bool enable)
6851{
6852 if (enable) {
6853 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
6854 MAC_MODE_PORT_MODE_MASK);
6855
6856 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
6857
6858 if (!tg3_flag(tp, 5705_PLUS))
6859 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
6860
6861 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
6862 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
6863 else
6864 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
6865 } else {
6866 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
6867
6868 if (tg3_flag(tp, 5705_PLUS) ||
6869 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
6870 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
6871 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
6872 }
6873
6874 tw32(MAC_MODE, tp->mac_mode);
6875 udelay(40);
6876}
6877
Matt Carlson941ec902011-08-19 13:58:23 +00006878static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006879{
Matt Carlson941ec902011-08-19 13:58:23 +00006880 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006881
6882 tg3_phy_toggle_apd(tp, false);
6883 tg3_phy_toggle_automdix(tp, 0);
6884
Matt Carlson941ec902011-08-19 13:58:23 +00006885 if (extlpbk && tg3_phy_set_extloopbk(tp))
6886 return -EIO;
6887
6888 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006889 switch (speed) {
6890 case SPEED_10:
6891 break;
6892 case SPEED_100:
6893 bmcr |= BMCR_SPEED100;
6894 break;
6895 case SPEED_1000:
6896 default:
6897 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
6898 speed = SPEED_100;
6899 bmcr |= BMCR_SPEED100;
6900 } else {
6901 speed = SPEED_1000;
6902 bmcr |= BMCR_SPEED1000;
6903 }
6904 }
6905
Matt Carlson941ec902011-08-19 13:58:23 +00006906 if (extlpbk) {
6907 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
6908 tg3_readphy(tp, MII_CTRL1000, &val);
6909 val |= CTL1000_AS_MASTER |
6910 CTL1000_ENABLE_MASTER;
6911 tg3_writephy(tp, MII_CTRL1000, val);
6912 } else {
6913 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
6914 MII_TG3_FET_PTEST_TRIM_2;
6915 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
6916 }
6917 } else
6918 bmcr |= BMCR_LOOPBACK;
6919
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006920 tg3_writephy(tp, MII_BMCR, bmcr);
6921
6922 /* The write needs to be flushed for the FETs */
6923 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
6924 tg3_readphy(tp, MII_BMCR, &bmcr);
6925
6926 udelay(40);
6927
6928 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
6929 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00006930 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006931 MII_TG3_FET_PTEST_FRC_TX_LINK |
6932 MII_TG3_FET_PTEST_FRC_TX_LOCK);
6933
6934 /* The write needs to be flushed for the AC131 */
6935 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
6936 }
6937
6938 /* Reset to prevent losing 1st rx packet intermittently */
6939 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
6940 tg3_flag(tp, 5780_CLASS)) {
6941 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
6942 udelay(10);
6943 tw32_f(MAC_RX_MODE, tp->rx_mode);
6944 }
6945
6946 mac_mode = tp->mac_mode &
6947 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
6948 if (speed == SPEED_1000)
6949 mac_mode |= MAC_MODE_PORT_MODE_GMII;
6950 else
6951 mac_mode |= MAC_MODE_PORT_MODE_MII;
6952
6953 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
6954 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
6955
6956 if (masked_phy_id == TG3_PHY_ID_BCM5401)
6957 mac_mode &= ~MAC_MODE_LINK_POLARITY;
6958 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
6959 mac_mode |= MAC_MODE_LINK_POLARITY;
6960
6961 tg3_writephy(tp, MII_TG3_EXT_CTRL,
6962 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
6963 }
6964
6965 tw32(MAC_MODE, mac_mode);
6966 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00006967
6968 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006969}
6970
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006971static void tg3_set_loopback(struct net_device *dev, u32 features)
6972{
6973 struct tg3 *tp = netdev_priv(dev);
6974
6975 if (features & NETIF_F_LOOPBACK) {
6976 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
6977 return;
6978
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006979 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00006980 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006981 netif_carrier_on(tp->dev);
6982 spin_unlock_bh(&tp->lock);
6983 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
6984 } else {
6985 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
6986 return;
6987
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006988 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00006989 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006990 /* Force link status check */
6991 tg3_setup_phy(tp, 1);
6992 spin_unlock_bh(&tp->lock);
6993 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
6994 }
6995}
6996
Michał Mirosławdc668912011-04-07 03:35:07 +00006997static u32 tg3_fix_features(struct net_device *dev, u32 features)
6998{
6999 struct tg3 *tp = netdev_priv(dev);
7000
Joe Perches63c3a662011-04-26 08:12:10 +00007001 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00007002 features &= ~NETIF_F_ALL_TSO;
7003
7004 return features;
7005}
7006
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007007static int tg3_set_features(struct net_device *dev, u32 features)
7008{
7009 u32 changed = dev->features ^ features;
7010
7011 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
7012 tg3_set_loopback(dev, features);
7013
7014 return 0;
7015}
7016
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
7018 int new_mtu)
7019{
7020 dev->mtu = new_mtu;
7021
Michael Chanef7f5ec2005-07-25 12:32:25 -07007022 if (new_mtu > ETH_DATA_LEN) {
Joe Perches63c3a662011-04-26 08:12:10 +00007023 if (tg3_flag(tp, 5780_CLASS)) {
Michał Mirosławdc668912011-04-07 03:35:07 +00007024 netdev_update_features(dev);
Joe Perches63c3a662011-04-26 08:12:10 +00007025 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson859a5882010-04-05 10:19:28 +00007026 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00007027 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Matt Carlson859a5882010-04-05 10:19:28 +00007028 }
Michael Chanef7f5ec2005-07-25 12:32:25 -07007029 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00007030 if (tg3_flag(tp, 5780_CLASS)) {
7031 tg3_flag_set(tp, TSO_CAPABLE);
Michał Mirosławdc668912011-04-07 03:35:07 +00007032 netdev_update_features(dev);
7033 }
Joe Perches63c3a662011-04-26 08:12:10 +00007034 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
Michael Chanef7f5ec2005-07-25 12:32:25 -07007035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036}
7037
7038static int tg3_change_mtu(struct net_device *dev, int new_mtu)
7039{
7040 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07007041 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007042
7043 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
7044 return -EINVAL;
7045
7046 if (!netif_running(dev)) {
7047 /* We'll just catch it later when the
7048 * device is up'd.
7049 */
7050 tg3_set_mtu(dev, tp, new_mtu);
7051 return 0;
7052 }
7053
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07007054 tg3_phy_stop(tp);
7055
Linus Torvalds1da177e2005-04-16 15:20:36 -07007056 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07007057
7058 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059
Michael Chan944d9802005-05-29 14:57:48 -07007060 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061
7062 tg3_set_mtu(dev, tp, new_mtu);
7063
Michael Chanb9ec6c12006-07-25 16:37:27 -07007064 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065
Michael Chanb9ec6c12006-07-25 16:37:27 -07007066 if (!err)
7067 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068
David S. Millerf47c11e2005-06-24 20:18:35 -07007069 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07007071 if (!err)
7072 tg3_phy_start(tp);
7073
Michael Chanb9ec6c12006-07-25 16:37:27 -07007074 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075}
7076
Matt Carlson21f581a2009-08-28 14:00:25 +00007077static void tg3_rx_prodring_free(struct tg3 *tp,
7078 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080 int i;
7081
Matt Carlson8fea32b2010-09-15 08:59:58 +00007082 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007083 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007084 i = (i + 1) & tp->rx_std_ring_mask)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007085 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
7086 tp->rx_pkt_map_sz);
7087
Joe Perches63c3a662011-04-26 08:12:10 +00007088 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007089 for (i = tpr->rx_jmb_cons_idx;
7090 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007091 i = (i + 1) & tp->rx_jmb_ring_mask) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007092 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
7093 TG3_RX_JMB_MAP_SZ);
7094 }
7095 }
7096
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007097 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099
Matt Carlson2c49a442010-09-30 10:34:35 +00007100 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007101 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
7102 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103
Joe Perches63c3a662011-04-26 08:12:10 +00007104 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007105 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007106 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
7107 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007108 }
7109}
7110
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007111/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112 *
7113 * The chip has been shut down and the driver detached from
7114 * the networking, so no interrupts or new tx packets will
7115 * end up in the driver. tp->{tx,}lock are held and thus
7116 * we may not sleep.
7117 */
Matt Carlson21f581a2009-08-28 14:00:25 +00007118static int tg3_rx_prodring_alloc(struct tg3 *tp,
7119 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007120{
Matt Carlson287be122009-08-28 13:58:46 +00007121 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007123 tpr->rx_std_cons_idx = 0;
7124 tpr->rx_std_prod_idx = 0;
7125 tpr->rx_jmb_cons_idx = 0;
7126 tpr->rx_jmb_prod_idx = 0;
7127
Matt Carlson8fea32b2010-09-15 08:59:58 +00007128 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007129 memset(&tpr->rx_std_buffers[0], 0,
7130 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00007131 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007132 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00007133 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007134 goto done;
7135 }
7136
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00007138 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007139
Matt Carlson287be122009-08-28 13:58:46 +00007140 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00007141 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00007142 tp->dev->mtu > ETH_DATA_LEN)
7143 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
7144 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07007145
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146 /* Initialize invariants of the rings, we only set this
7147 * stuff once. This works because the card does not
7148 * write into the rx buffer posting rings.
7149 */
Matt Carlson2c49a442010-09-30 10:34:35 +00007150 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007151 struct tg3_rx_buffer_desc *rxd;
7152
Matt Carlson21f581a2009-08-28 14:00:25 +00007153 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00007154 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
7156 rxd->opaque = (RXD_OPAQUE_RING_STD |
7157 (i << RXD_OPAQUE_INDEX_SHIFT));
7158 }
7159
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007160 /* Now allocate fresh SKBs for each rx ring. */
7161 for (i = 0; i < tp->rx_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00007162 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007163 netdev_warn(tp->dev,
7164 "Using a smaller RX standard ring. Only "
7165 "%d out of %d buffers were allocated "
7166 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007167 if (i == 0)
7168 goto initfail;
7169 tp->rx_pending = i;
7170 break;
7171 }
7172 }
7173
Joe Perches63c3a662011-04-26 08:12:10 +00007174 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007175 goto done;
7176
Matt Carlson2c49a442010-09-30 10:34:35 +00007177 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007178
Joe Perches63c3a662011-04-26 08:12:10 +00007179 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00007180 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007181
Matt Carlson2c49a442010-09-30 10:34:35 +00007182 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00007183 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184
Matt Carlson0d86df82010-02-17 15:17:00 +00007185 rxd = &tpr->rx_jmb[i].std;
7186 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
7187 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
7188 RXD_FLAG_JUMBO;
7189 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
7190 (i << RXD_OPAQUE_INDEX_SHIFT));
7191 }
7192
7193 for (i = 0; i < tp->rx_jumbo_pending; i++) {
7194 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007195 netdev_warn(tp->dev,
7196 "Using a smaller RX jumbo ring. Only %d "
7197 "out of %d buffers were allocated "
7198 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00007199 if (i == 0)
7200 goto initfail;
7201 tp->rx_jumbo_pending = i;
7202 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007203 }
7204 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007205
7206done:
Michael Chan32d8c572006-07-25 16:38:29 -07007207 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007208
7209initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00007210 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007211 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212}
7213
Matt Carlson21f581a2009-08-28 14:00:25 +00007214static void tg3_rx_prodring_fini(struct tg3 *tp,
7215 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216{
Matt Carlson21f581a2009-08-28 14:00:25 +00007217 kfree(tpr->rx_std_buffers);
7218 tpr->rx_std_buffers = NULL;
7219 kfree(tpr->rx_jmb_buffers);
7220 tpr->rx_jmb_buffers = NULL;
7221 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007222 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
7223 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007224 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225 }
Matt Carlson21f581a2009-08-28 14:00:25 +00007226 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007227 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
7228 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007229 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007230 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007231}
7232
Matt Carlson21f581a2009-08-28 14:00:25 +00007233static int tg3_rx_prodring_init(struct tg3 *tp,
7234 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007235{
Matt Carlson2c49a442010-09-30 10:34:35 +00007236 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
7237 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007238 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007239 return -ENOMEM;
7240
Matt Carlson4bae65c2010-11-24 08:31:52 +00007241 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
7242 TG3_RX_STD_RING_BYTES(tp),
7243 &tpr->rx_std_mapping,
7244 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007245 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007246 goto err_out;
7247
Joe Perches63c3a662011-04-26 08:12:10 +00007248 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007249 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00007250 GFP_KERNEL);
7251 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007252 goto err_out;
7253
Matt Carlson4bae65c2010-11-24 08:31:52 +00007254 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
7255 TG3_RX_JMB_RING_BYTES(tp),
7256 &tpr->rx_jmb_mapping,
7257 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007258 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007259 goto err_out;
7260 }
7261
7262 return 0;
7263
7264err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00007265 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007266 return -ENOMEM;
7267}
7268
7269/* Free up pending packets in all rx/tx rings.
7270 *
7271 * The chip has been shut down and the driver detached from
7272 * the networking, so no interrupts or new tx packets will
7273 * end up in the driver. tp->{tx,}lock is not held and we are not
7274 * in an interrupt context and thus may sleep.
7275 */
7276static void tg3_free_rings(struct tg3 *tp)
7277{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007278 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007279
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007280 for (j = 0; j < tp->irq_cnt; j++) {
7281 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007282
Matt Carlson8fea32b2010-09-15 08:59:58 +00007283 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00007284
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007285 if (!tnapi->tx_buffers)
7286 continue;
7287
Matt Carlson0d681b22011-07-27 14:20:49 +00007288 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
7289 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007290
Matt Carlson0d681b22011-07-27 14:20:49 +00007291 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007292 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007293
Matt Carlsonba1142e2011-11-04 09:15:00 +00007294 tg3_tx_skb_unmap(tnapi, i,
7295 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007296
7297 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007298 }
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007299 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007300}
7301
7302/* Initialize tx/rx rings for packet processing.
7303 *
7304 * The chip has been shut down and the driver detached from
7305 * the networking, so no interrupts or new tx packets will
7306 * end up in the driver. tp->{tx,}lock are held and thus
7307 * we may not sleep.
7308 */
7309static int tg3_init_rings(struct tg3 *tp)
7310{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007311 int i;
Matt Carlson72334482009-08-28 14:03:01 +00007312
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007313 /* Free up all the SKBs. */
7314 tg3_free_rings(tp);
7315
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007316 for (i = 0; i < tp->irq_cnt; i++) {
7317 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007318
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007319 tnapi->last_tag = 0;
7320 tnapi->last_irq_tag = 0;
7321 tnapi->hw_status->status = 0;
7322 tnapi->hw_status->status_tag = 0;
7323 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7324
7325 tnapi->tx_prod = 0;
7326 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007327 if (tnapi->tx_ring)
7328 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007329
7330 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007331 if (tnapi->rx_rcb)
7332 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007333
Matt Carlson8fea32b2010-09-15 08:59:58 +00007334 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00007335 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007336 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00007337 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007338 }
Matt Carlson72334482009-08-28 14:03:01 +00007339
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007340 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007341}
7342
7343/*
7344 * Must not be invoked with interrupt sources disabled and
7345 * the hardware shutdown down.
7346 */
7347static void tg3_free_consistent(struct tg3 *tp)
7348{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007349 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007350
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007351 for (i = 0; i < tp->irq_cnt; i++) {
7352 struct tg3_napi *tnapi = &tp->napi[i];
7353
7354 if (tnapi->tx_ring) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007355 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007356 tnapi->tx_ring, tnapi->tx_desc_mapping);
7357 tnapi->tx_ring = NULL;
7358 }
7359
7360 kfree(tnapi->tx_buffers);
7361 tnapi->tx_buffers = NULL;
7362
7363 if (tnapi->rx_rcb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007364 dma_free_coherent(&tp->pdev->dev,
7365 TG3_RX_RCB_RING_BYTES(tp),
7366 tnapi->rx_rcb,
7367 tnapi->rx_rcb_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007368 tnapi->rx_rcb = NULL;
7369 }
7370
Matt Carlson8fea32b2010-09-15 08:59:58 +00007371 tg3_rx_prodring_fini(tp, &tnapi->prodring);
7372
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007373 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007374 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
7375 tnapi->hw_status,
7376 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007377 tnapi->hw_status = NULL;
7378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007380
Linus Torvalds1da177e2005-04-16 15:20:36 -07007381 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007382 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
7383 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384 tp->hw_stats = NULL;
7385 }
7386}
7387
7388/*
7389 * Must not be invoked with interrupt sources disabled and
7390 * the hardware shutdown down. Can sleep.
7391 */
7392static int tg3_alloc_consistent(struct tg3 *tp)
7393{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007394 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007395
Matt Carlson4bae65c2010-11-24 08:31:52 +00007396 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
7397 sizeof(struct tg3_hw_stats),
7398 &tp->stats_mapping,
7399 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007400 if (!tp->hw_stats)
7401 goto err_out;
7402
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
7404
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007405 for (i = 0; i < tp->irq_cnt; i++) {
7406 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007407 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007408
Matt Carlson4bae65c2010-11-24 08:31:52 +00007409 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
7410 TG3_HW_STATUS_SIZE,
7411 &tnapi->status_mapping,
7412 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007413 if (!tnapi->hw_status)
7414 goto err_out;
7415
7416 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007417 sblk = tnapi->hw_status;
7418
Matt Carlson8fea32b2010-09-15 08:59:58 +00007419 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
7420 goto err_out;
7421
Matt Carlson19cfaec2009-12-03 08:36:20 +00007422 /* If multivector TSS is enabled, vector 0 does not handle
7423 * tx interrupts. Don't allocate any resources for it.
7424 */
Joe Perches63c3a662011-04-26 08:12:10 +00007425 if ((!i && !tg3_flag(tp, ENABLE_TSS)) ||
7426 (i && tg3_flag(tp, ENABLE_TSS))) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00007427 tnapi->tx_buffers = kzalloc(
7428 sizeof(struct tg3_tx_ring_info) *
7429 TG3_TX_RING_SIZE, GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007430 if (!tnapi->tx_buffers)
7431 goto err_out;
7432
Matt Carlson4bae65c2010-11-24 08:31:52 +00007433 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
7434 TG3_TX_RING_BYTES,
7435 &tnapi->tx_desc_mapping,
7436 GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007437 if (!tnapi->tx_ring)
7438 goto err_out;
7439 }
7440
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007441 /*
7442 * When RSS is enabled, the status block format changes
7443 * slightly. The "rx_jumbo_consumer", "reserved",
7444 * and "rx_mini_consumer" members get mapped to the
7445 * other three rx return ring producer indexes.
7446 */
7447 switch (i) {
7448 default:
7449 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
7450 break;
7451 case 2:
7452 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
7453 break;
7454 case 3:
7455 tnapi->rx_rcb_prod_idx = &sblk->reserved;
7456 break;
7457 case 4:
7458 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
7459 break;
7460 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007461
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007462 /*
7463 * If multivector RSS is enabled, vector 0 does not handle
7464 * rx or tx interrupts. Don't allocate any resources for it.
7465 */
Joe Perches63c3a662011-04-26 08:12:10 +00007466 if (!i && tg3_flag(tp, ENABLE_RSS))
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007467 continue;
7468
Matt Carlson4bae65c2010-11-24 08:31:52 +00007469 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
7470 TG3_RX_RCB_RING_BYTES(tp),
7471 &tnapi->rx_rcb_mapping,
7472 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007473 if (!tnapi->rx_rcb)
7474 goto err_out;
7475
7476 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007477 }
7478
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479 return 0;
7480
7481err_out:
7482 tg3_free_consistent(tp);
7483 return -ENOMEM;
7484}
7485
7486#define MAX_WAIT_CNT 1000
7487
7488/* To stop a block, clear the enable bit and poll till it
7489 * clears. tp->lock is held.
7490 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007491static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492{
7493 unsigned int i;
7494 u32 val;
7495
Joe Perches63c3a662011-04-26 08:12:10 +00007496 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497 switch (ofs) {
7498 case RCVLSC_MODE:
7499 case DMAC_MODE:
7500 case MBFREE_MODE:
7501 case BUFMGR_MODE:
7502 case MEMARB_MODE:
7503 /* We can't enable/disable these bits of the
7504 * 5705/5750, just say success.
7505 */
7506 return 0;
7507
7508 default:
7509 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511 }
7512
7513 val = tr32(ofs);
7514 val &= ~enable_bit;
7515 tw32_f(ofs, val);
7516
7517 for (i = 0; i < MAX_WAIT_CNT; i++) {
7518 udelay(100);
7519 val = tr32(ofs);
7520 if ((val & enable_bit) == 0)
7521 break;
7522 }
7523
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007524 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00007525 dev_err(&tp->pdev->dev,
7526 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
7527 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528 return -ENODEV;
7529 }
7530
7531 return 0;
7532}
7533
7534/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007535static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007536{
7537 int i, err;
7538
7539 tg3_disable_ints(tp);
7540
7541 tp->rx_mode &= ~RX_MODE_ENABLE;
7542 tw32_f(MAC_RX_MODE, tp->rx_mode);
7543 udelay(10);
7544
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007545 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
7546 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
7547 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
7548 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
7549 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
7550 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007552 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
7553 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
7554 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
7555 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
7556 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
7557 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
7558 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559
7560 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
7561 tw32_f(MAC_MODE, tp->mac_mode);
7562 udelay(40);
7563
7564 tp->tx_mode &= ~TX_MODE_ENABLE;
7565 tw32_f(MAC_TX_MODE, tp->tx_mode);
7566
7567 for (i = 0; i < MAX_WAIT_CNT; i++) {
7568 udelay(100);
7569 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
7570 break;
7571 }
7572 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00007573 dev_err(&tp->pdev->dev,
7574 "%s timed out, TX_MODE_ENABLE will not clear "
7575 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07007576 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007577 }
7578
Michael Chane6de8ad2005-05-05 14:42:41 -07007579 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007580 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
7581 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582
7583 tw32(FTQ_RESET, 0xffffffff);
7584 tw32(FTQ_RESET, 0x00000000);
7585
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007586 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
7587 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007588
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007589 for (i = 0; i < tp->irq_cnt; i++) {
7590 struct tg3_napi *tnapi = &tp->napi[i];
7591 if (tnapi->hw_status)
7592 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007594 if (tp->hw_stats)
7595 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
7596
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597 return err;
7598}
7599
Michael Chanee6a99b2007-07-18 21:49:10 -07007600/* Save PCI command register before chip reset */
7601static void tg3_save_pci_state(struct tg3 *tp)
7602{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007603 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007604}
7605
7606/* Restore PCI state after chip reset */
7607static void tg3_restore_pci_state(struct tg3 *tp)
7608{
7609 u32 val;
7610
7611 /* Re-enable indirect register accesses. */
7612 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7613 tp->misc_host_ctrl);
7614
7615 /* Set MAX PCI retry to zero. */
7616 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7617 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007618 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007619 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007620 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007621 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007622 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc2010-06-05 17:24:30 +00007623 PCISTATE_ALLOW_APE_SHMEM_WR |
7624 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007625 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7626
Matt Carlson8a6eac92007-10-21 16:17:55 -07007627 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007628
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007629 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +00007630 if (tg3_flag(tp, PCI_EXPRESS))
Matt Carlsoncf790032010-11-24 08:31:48 +00007631 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007632 else {
7633 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7634 tp->pci_cacheline_sz);
7635 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7636 tp->pci_lat_timer);
7637 }
Michael Chan114342f2007-10-15 02:12:26 -07007638 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007639
Michael Chanee6a99b2007-07-18 21:49:10 -07007640 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007641 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007642 u16 pcix_cmd;
7643
7644 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7645 &pcix_cmd);
7646 pcix_cmd &= ~PCI_X_CMD_ERO;
7647 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7648 pcix_cmd);
7649 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007650
Joe Perches63c3a662011-04-26 08:12:10 +00007651 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007652
7653 /* Chip reset on 5780 will reset MSI enable bit,
7654 * so need to restore it.
7655 */
Joe Perches63c3a662011-04-26 08:12:10 +00007656 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007657 u16 ctrl;
7658
7659 pci_read_config_word(tp->pdev,
7660 tp->msi_cap + PCI_MSI_FLAGS,
7661 &ctrl);
7662 pci_write_config_word(tp->pdev,
7663 tp->msi_cap + PCI_MSI_FLAGS,
7664 ctrl | PCI_MSI_FLAGS_ENABLE);
7665 val = tr32(MSGINT_MODE);
7666 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7667 }
7668 }
7669}
7670
Linus Torvalds1da177e2005-04-16 15:20:36 -07007671/* tp->lock is held. */
7672static int tg3_chip_reset(struct tg3 *tp)
7673{
7674 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007675 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007676 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
David S. Millerf49639e2006-06-09 11:58:36 -07007678 tg3_nvram_lock(tp);
7679
Matt Carlson77b483f2008-08-15 14:07:24 -07007680 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7681
David S. Millerf49639e2006-06-09 11:58:36 -07007682 /* No matching tg3_nvram_unlock() after this because
7683 * chip reset below will undo the nvram lock.
7684 */
7685 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007686
Michael Chanee6a99b2007-07-18 21:49:10 -07007687 /* GRC_MISC_CFG core clock reset will clear the memory
7688 * enable bit in PCI register 4 and the MSI enable bit
7689 * on some chips, so we save relevant registers here.
7690 */
7691 tg3_save_pci_state(tp);
7692
Michael Chand9ab5ad2006-03-20 22:27:35 -08007693 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00007694 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad2006-03-20 22:27:35 -08007695 tw32(GRC_FASTBOOT_PC, 0);
7696
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697 /*
7698 * We must avoid the readl() that normally takes place.
7699 * It locks machines, causes machine checks, and other
7700 * fun things. So, temporarily disable the 5701
7701 * hardware workaround, while we do the reset.
7702 */
Michael Chan1ee582d2005-08-09 20:16:46 -07007703 write_op = tp->write32;
7704 if (write_op == tg3_write_flush_reg32)
7705 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706
Michael Chand18edcb2007-03-24 20:57:11 -07007707 /* Prevent the irq handler from reading or writing PCI registers
7708 * during chip reset when the memory enable bit in the PCI command
7709 * register may be cleared. The chip does not generate interrupt
7710 * at this time, but the irq handler may still be called due to irq
7711 * sharing or irqpoll.
7712 */
Joe Perches63c3a662011-04-26 08:12:10 +00007713 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007714 for (i = 0; i < tp->irq_cnt; i++) {
7715 struct tg3_napi *tnapi = &tp->napi[i];
7716 if (tnapi->hw_status) {
7717 tnapi->hw_status->status = 0;
7718 tnapi->hw_status->status_tag = 0;
7719 }
7720 tnapi->last_tag = 0;
7721 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07007722 }
Michael Chand18edcb2007-03-24 20:57:11 -07007723 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00007724
7725 for (i = 0; i < tp->irq_cnt; i++)
7726 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07007727
Matt Carlson255ca312009-08-25 10:07:27 +00007728 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7729 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7730 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
7731 }
7732
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733 /* do the reset */
7734 val = GRC_MISC_CFG_CORECLK_RESET;
7735
Joe Perches63c3a662011-04-26 08:12:10 +00007736 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00007737 /* Force PCIe 1.0a mode */
7738 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007739 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00007740 tr32(TG3_PCIE_PHY_TSTCTL) ==
7741 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
7742 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
7743
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
7745 tw32(GRC_MISC_CFG, (1 << 29));
7746 val |= (1 << 29);
7747 }
7748 }
7749
Michael Chanb5d37722006-09-27 16:06:21 -07007750 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7751 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
7752 tw32(GRC_VCPU_EXT_CTRL,
7753 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
7754 }
7755
Matt Carlsonf37500d2010-08-02 11:25:59 +00007756 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00007757 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00007759
Linus Torvalds1da177e2005-04-16 15:20:36 -07007760 tw32(GRC_MISC_CFG, val);
7761
Michael Chan1ee582d2005-08-09 20:16:46 -07007762 /* restore 5701 hardware bug workaround write method */
7763 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007764
7765 /* Unfortunately, we have to delay before the PCI read back.
7766 * Some 575X chips even will not respond to a PCI cfg access
7767 * when the reset command is given to the chip.
7768 *
7769 * How do these hardware designers expect things to work
7770 * properly if the PCI write is posted for a long period
7771 * of time? It is always necessary to have some method by
7772 * which a register read back can occur to push the write
7773 * out which does the reset.
7774 *
7775 * For most tg3 variants the trick below was working.
7776 * Ho hum...
7777 */
7778 udelay(120);
7779
7780 /* Flush PCI posted writes. The normal MMIO registers
7781 * are inaccessible at this time so this is the only
7782 * way to make this reliably (actually, this is no longer
7783 * the case, see above). I tried to use indirect
7784 * register read/write but this upset some 5701 variants.
7785 */
7786 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
7787
7788 udelay(120);
7789
Jon Mason708ebb32011-06-27 12:56:50 +00007790 if (tg3_flag(tp, PCI_EXPRESS) && pci_pcie_cap(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00007791 u16 val16;
7792
Linus Torvalds1da177e2005-04-16 15:20:36 -07007793 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
7794 int i;
7795 u32 cfg_val;
7796
7797 /* Wait for link training to complete. */
7798 for (i = 0; i < 5000; i++)
7799 udelay(100);
7800
7801 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
7802 pci_write_config_dword(tp->pdev, 0xc4,
7803 cfg_val | (1 << 15));
7804 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007805
Matt Carlsone7126992009-08-25 10:08:16 +00007806 /* Clear the "no snoop" and "relaxed ordering" bits. */
7807 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00007808 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007809 &val16);
7810 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
7811 PCI_EXP_DEVCTL_NOSNOOP_EN);
7812 /*
7813 * Older PCIe devices only support the 128 byte
7814 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007815 */
Joe Perches63c3a662011-04-26 08:12:10 +00007816 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00007817 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007818 pci_write_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00007819 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007820 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007821
Matt Carlsoncf790032010-11-24 08:31:48 +00007822 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007823
7824 /* Clear error status */
7825 pci_write_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00007826 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007827 PCI_EXP_DEVSTA_CED |
7828 PCI_EXP_DEVSTA_NFED |
7829 PCI_EXP_DEVSTA_FED |
7830 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831 }
7832
Michael Chanee6a99b2007-07-18 21:49:10 -07007833 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007834
Joe Perches63c3a662011-04-26 08:12:10 +00007835 tg3_flag_clear(tp, CHIP_RESETTING);
7836 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07007837
Michael Chanee6a99b2007-07-18 21:49:10 -07007838 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007839 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07007840 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07007841 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842
7843 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
7844 tg3_stop_fw(tp);
7845 tw32(0x5000, 0x400);
7846 }
7847
7848 tw32(GRC_MODE, tp->grc_mode);
7849
7850 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007851 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007852
7853 tw32(0xc4, val | (1 << 15));
7854 }
7855
7856 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
7857 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
7858 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
7859 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
7860 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
7861 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7862 }
7863
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007864 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00007865 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007866 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007867 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00007868 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007869 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007870 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007871 val = 0;
7872
7873 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874 udelay(40);
7875
Matt Carlson77b483f2008-08-15 14:07:24 -07007876 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
7877
Michael Chan7a6f4362006-09-27 16:03:31 -07007878 err = tg3_poll_fw(tp);
7879 if (err)
7880 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881
Matt Carlson0a9140c2009-08-28 12:27:50 +00007882 tg3_mdio_start(tp);
7883
Joe Perches63c3a662011-04-26 08:12:10 +00007884 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007885 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7886 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007887 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007888 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889
7890 tw32(0x7c00, val | (1 << 25));
7891 }
7892
Matt Carlsond78b59f2011-04-05 14:22:46 +00007893 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
7894 val = tr32(TG3_CPMU_CLCK_ORIDE);
7895 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
7896 }
7897
Linus Torvalds1da177e2005-04-16 15:20:36 -07007898 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00007899 tg3_flag_clear(tp, ENABLE_ASF);
7900 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007901 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7902 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7903 u32 nic_cfg;
7904
7905 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7906 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00007907 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007908 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00007909 if (tg3_flag(tp, 5750_PLUS))
7910 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007911 }
7912 }
7913
7914 return 0;
7915}
7916
7917/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007918static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007919{
7920 int err;
7921
7922 tg3_stop_fw(tp);
7923
Michael Chan944d9802005-05-29 14:57:48 -07007924 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007925
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007926 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007927 err = tg3_chip_reset(tp);
7928
Matt Carlsondaba2a62009-04-20 06:58:52 +00007929 __tg3_set_mac_addr(tp, 0);
7930
Michael Chan944d9802005-05-29 14:57:48 -07007931 tg3_write_sig_legacy(tp, kind);
7932 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007933
7934 if (err)
7935 return err;
7936
7937 return 0;
7938}
7939
Linus Torvalds1da177e2005-04-16 15:20:36 -07007940static int tg3_set_mac_addr(struct net_device *dev, void *p)
7941{
7942 struct tg3 *tp = netdev_priv(dev);
7943 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007944 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007945
Michael Chanf9804dd2005-09-27 12:13:10 -07007946 if (!is_valid_ether_addr(addr->sa_data))
7947 return -EINVAL;
7948
Linus Torvalds1da177e2005-04-16 15:20:36 -07007949 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7950
Michael Chane75f7c92006-03-20 21:33:26 -08007951 if (!netif_running(dev))
7952 return 0;
7953
Joe Perches63c3a662011-04-26 08:12:10 +00007954 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007955 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007956
Michael Chan986e0ae2007-05-05 12:10:20 -07007957 addr0_high = tr32(MAC_ADDR_0_HIGH);
7958 addr0_low = tr32(MAC_ADDR_0_LOW);
7959 addr1_high = tr32(MAC_ADDR_1_HIGH);
7960 addr1_low = tr32(MAC_ADDR_1_LOW);
7961
7962 /* Skip MAC addr 1 if ASF is using it. */
7963 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7964 !(addr1_high == 0 && addr1_low == 0))
7965 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007966 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007967 spin_lock_bh(&tp->lock);
7968 __tg3_set_mac_addr(tp, skip_mac_1);
7969 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007970
Michael Chanb9ec6c12006-07-25 16:37:27 -07007971 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007972}
7973
7974/* tp->lock is held. */
7975static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7976 dma_addr_t mapping, u32 maxlen_flags,
7977 u32 nic_addr)
7978{
7979 tg3_write_mem(tp,
7980 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7981 ((u64) mapping >> 32));
7982 tg3_write_mem(tp,
7983 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7984 ((u64) mapping & 0xffffffff));
7985 tg3_write_mem(tp,
7986 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7987 maxlen_flags);
7988
Joe Perches63c3a662011-04-26 08:12:10 +00007989 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007990 tg3_write_mem(tp,
7991 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7992 nic_addr);
7993}
7994
7995static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007996static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007997{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007998 int i;
7999
Joe Perches63c3a662011-04-26 08:12:10 +00008000 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008001 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
8002 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
8003 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008004 } else {
8005 tw32(HOSTCC_TXCOL_TICKS, 0);
8006 tw32(HOSTCC_TXMAX_FRAMES, 0);
8007 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008008 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008009
Joe Perches63c3a662011-04-26 08:12:10 +00008010 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008011 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
8012 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
8013 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
8014 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008015 tw32(HOSTCC_RXCOL_TICKS, 0);
8016 tw32(HOSTCC_RXMAX_FRAMES, 0);
8017 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07008018 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008019
Joe Perches63c3a662011-04-26 08:12:10 +00008020 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07008021 u32 val = ec->stats_block_coalesce_usecs;
8022
Matt Carlsonb6080e12009-09-01 13:12:00 +00008023 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
8024 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
8025
David S. Miller15f98502005-05-18 22:49:26 -07008026 if (!netif_carrier_ok(tp->dev))
8027 val = 0;
8028
8029 tw32(HOSTCC_STAT_COAL_TICKS, val);
8030 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008031
8032 for (i = 0; i < tp->irq_cnt - 1; i++) {
8033 u32 reg;
8034
8035 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
8036 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008037 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
8038 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008039 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
8040 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008041
Joe Perches63c3a662011-04-26 08:12:10 +00008042 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008043 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
8044 tw32(reg, ec->tx_coalesce_usecs);
8045 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
8046 tw32(reg, ec->tx_max_coalesced_frames);
8047 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
8048 tw32(reg, ec->tx_max_coalesced_frames_irq);
8049 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008050 }
8051
8052 for (; i < tp->irq_max - 1; i++) {
8053 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008054 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008055 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008056
Joe Perches63c3a662011-04-26 08:12:10 +00008057 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008058 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
8059 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
8060 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
8061 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008062 }
David S. Miller15f98502005-05-18 22:49:26 -07008063}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008064
8065/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00008066static void tg3_rings_reset(struct tg3 *tp)
8067{
8068 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008069 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008070 struct tg3_napi *tnapi = &tp->napi[0];
8071
8072 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008073 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008074 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008075 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00008076 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlsonb703df62009-12-03 08:36:21 +00008077 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8078 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008079 else
8080 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8081
8082 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8083 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
8084 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
8085 BDINFO_FLAGS_DISABLED);
8086
8087
8088 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008089 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008090 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00008091 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008092 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00008093 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
8094 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson2d31eca2009-09-01 12:53:31 +00008095 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
8096 else
8097 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8098
8099 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8100 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
8101 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
8102 BDINFO_FLAGS_DISABLED);
8103
8104 /* Disable interrupts */
8105 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008106 tp->napi[0].chk_msi_cnt = 0;
8107 tp->napi[0].last_rx_cons = 0;
8108 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008109
8110 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00008111 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00008112 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008113 tp->napi[i].tx_prod = 0;
8114 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008115 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008116 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008117 tw32_rx_mbox(tp->napi[i].consmbox, 0);
8118 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00008119 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008120 tp->napi[i].last_rx_cons = 0;
8121 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008122 }
Joe Perches63c3a662011-04-26 08:12:10 +00008123 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008124 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008125 } else {
8126 tp->napi[0].tx_prod = 0;
8127 tp->napi[0].tx_cons = 0;
8128 tw32_mailbox(tp->napi[0].prodmbox, 0);
8129 tw32_rx_mbox(tp->napi[0].consmbox, 0);
8130 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008131
8132 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00008133 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00008134 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
8135 for (i = 0; i < 16; i++)
8136 tw32_tx_mbox(mbox + i * 8, 0);
8137 }
8138
8139 txrcb = NIC_SRAM_SEND_RCB;
8140 rxrcb = NIC_SRAM_RCV_RET_RCB;
8141
8142 /* Clear status block in ram. */
8143 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8144
8145 /* Set status block DMA address */
8146 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8147 ((u64) tnapi->status_mapping >> 32));
8148 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8149 ((u64) tnapi->status_mapping & 0xffffffff));
8150
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008151 if (tnapi->tx_ring) {
8152 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8153 (TG3_TX_RING_SIZE <<
8154 BDINFO_FLAGS_MAXLEN_SHIFT),
8155 NIC_SRAM_TX_BUFFER_DESC);
8156 txrcb += TG3_BDINFO_SIZE;
8157 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008158
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008159 if (tnapi->rx_rcb) {
8160 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008161 (tp->rx_ret_ring_mask + 1) <<
8162 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008163 rxrcb += TG3_BDINFO_SIZE;
8164 }
8165
8166 stblk = HOSTCC_STATBLCK_RING1;
8167
8168 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
8169 u64 mapping = (u64)tnapi->status_mapping;
8170 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
8171 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
8172
8173 /* Clear status block in ram. */
8174 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8175
Matt Carlson19cfaec2009-12-03 08:36:20 +00008176 if (tnapi->tx_ring) {
8177 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8178 (TG3_TX_RING_SIZE <<
8179 BDINFO_FLAGS_MAXLEN_SHIFT),
8180 NIC_SRAM_TX_BUFFER_DESC);
8181 txrcb += TG3_BDINFO_SIZE;
8182 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008183
8184 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008185 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008186 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
8187
8188 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008189 rxrcb += TG3_BDINFO_SIZE;
8190 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008191}
8192
Matt Carlsoneb07a942011-04-20 07:57:36 +00008193static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
8194{
8195 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
8196
Joe Perches63c3a662011-04-26 08:12:10 +00008197 if (!tg3_flag(tp, 5750_PLUS) ||
8198 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00008199 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
8200 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8201 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
8202 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
8203 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
8204 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
8205 else
8206 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
8207
8208 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
8209 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
8210
8211 val = min(nic_rep_thresh, host_rep_thresh);
8212 tw32(RCVBDI_STD_THRESH, val);
8213
Joe Perches63c3a662011-04-26 08:12:10 +00008214 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008215 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
8216
Joe Perches63c3a662011-04-26 08:12:10 +00008217 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008218 return;
8219
Joe Perches63c3a662011-04-26 08:12:10 +00008220 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008221 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
8222 else
8223 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5717;
8224
8225 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
8226
8227 val = min(bdcache_maxcnt / 2, host_rep_thresh);
8228 tw32(RCVBDI_JUMBO_THRESH, val);
8229
Joe Perches63c3a662011-04-26 08:12:10 +00008230 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008231 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
8232}
8233
Matt Carlson2d31eca2009-09-01 12:53:31 +00008234/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008235static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008236{
8237 u32 val, rdmac_mode;
8238 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008239 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008240
8241 tg3_disable_ints(tp);
8242
8243 tg3_stop_fw(tp);
8244
8245 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
8246
Joe Perches63c3a662011-04-26 08:12:10 +00008247 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07008248 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249
Matt Carlson699c0192010-12-06 08:28:51 +00008250 /* Enable MAC control of LPI */
8251 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
8252 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
8253 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
8254 TG3_CPMU_EEE_LNKIDL_UART_IDL);
8255
8256 tw32_f(TG3_CPMU_EEE_CTRL,
8257 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
8258
Matt Carlsona386b902010-12-06 08:28:53 +00008259 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
8260 TG3_CPMU_EEEMD_LPI_IN_TX |
8261 TG3_CPMU_EEEMD_LPI_IN_RX |
8262 TG3_CPMU_EEEMD_EEE_ENABLE;
8263
8264 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8265 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
8266
Joe Perches63c3a662011-04-26 08:12:10 +00008267 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00008268 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
8269
8270 tw32_f(TG3_CPMU_EEE_MODE, val);
8271
8272 tw32_f(TG3_CPMU_EEE_DBTMR1,
8273 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
8274 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
8275
8276 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00008277 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00008278 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00008279 }
8280
Matt Carlson603f1172010-02-12 14:47:10 +00008281 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08008282 tg3_phy_reset(tp);
8283
Linus Torvalds1da177e2005-04-16 15:20:36 -07008284 err = tg3_chip_reset(tp);
8285 if (err)
8286 return err;
8287
8288 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
8289
Matt Carlsonbcb37f62008-11-03 16:52:09 -08008290 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008291 val = tr32(TG3_CPMU_CTRL);
8292 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
8293 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08008294
8295 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8296 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8297 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8298 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
8299
8300 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
8301 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
8302 val |= CPMU_LNK_AWARE_MACCLK_6_25;
8303 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
8304
8305 val = tr32(TG3_CPMU_HST_ACC);
8306 val &= ~CPMU_HST_ACC_MACCLK_MASK;
8307 val |= CPMU_HST_ACC_MACCLK_6_25;
8308 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07008309 }
8310
Matt Carlson33466d92009-04-20 06:57:41 +00008311 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8312 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
8313 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
8314 PCIE_PWR_MGMT_L1_THRESH_4MS;
8315 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00008316
8317 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
8318 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
8319
8320 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00008321
Matt Carlsonf40386c2009-11-02 14:24:02 +00008322 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8323 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00008324 }
8325
Joe Perches63c3a662011-04-26 08:12:10 +00008326 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b05902010-01-20 16:58:02 +00008327 u32 grc_mode = tr32(GRC_MODE);
8328
8329 /* Access the lower 1K of PL PCIE block registers. */
8330 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8331 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
8332
8333 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
8334 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
8335 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
8336
8337 tw32(GRC_MODE, grc_mode);
8338 }
8339
Matt Carlson5093eed2010-11-24 08:31:45 +00008340 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
8341 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
8342 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00008343
Matt Carlson5093eed2010-11-24 08:31:45 +00008344 /* Access the lower 1K of PL PCIE block registers. */
8345 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8346 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00008347
Matt Carlson5093eed2010-11-24 08:31:45 +00008348 val = tr32(TG3_PCIE_TLDLPL_PORT +
8349 TG3_PCIE_PL_LO_PHYCTL5);
8350 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
8351 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00008352
Matt Carlson5093eed2010-11-24 08:31:45 +00008353 tw32(GRC_MODE, grc_mode);
8354 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008355
Matt Carlson1ff30a52011-05-19 12:12:46 +00008356 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_57765_AX) {
8357 u32 grc_mode = tr32(GRC_MODE);
8358
8359 /* Access the lower 1K of DL PCIE block registers. */
8360 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8361 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
8362
8363 val = tr32(TG3_PCIE_TLDLPL_PORT +
8364 TG3_PCIE_DL_LO_FTSMAX);
8365 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
8366 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
8367 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
8368
8369 tw32(GRC_MODE, grc_mode);
8370 }
8371
Matt Carlsona977dbe2010-04-12 06:58:26 +00008372 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8373 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8374 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8375 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008376 }
8377
Linus Torvalds1da177e2005-04-16 15:20:36 -07008378 /* This works around an issue with Athlon chipsets on
8379 * B3 tigon3 silicon. This bit has no effect on any
8380 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008381 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008382 */
Joe Perches63c3a662011-04-26 08:12:10 +00008383 if (!tg3_flag(tp, CPMU_PRESENT)) {
8384 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008385 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8386 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008388
8389 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008390 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008391 val = tr32(TG3PCI_PCISTATE);
8392 val |= PCISTATE_RETRY_SAME_DMA;
8393 tw32(TG3PCI_PCISTATE, val);
8394 }
8395
Joe Perches63c3a662011-04-26 08:12:10 +00008396 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008397 /* Allow reads and writes to the
8398 * APE register and memory space.
8399 */
8400 val = tr32(TG3PCI_PCISTATE);
8401 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc2010-06-05 17:24:30 +00008402 PCISTATE_ALLOW_APE_SHMEM_WR |
8403 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008404 tw32(TG3PCI_PCISTATE, val);
8405 }
8406
Linus Torvalds1da177e2005-04-16 15:20:36 -07008407 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8408 /* Enable some hw fixes. */
8409 val = tr32(TG3PCI_MSI_DATA);
8410 val |= (1 << 26) | (1 << 28) | (1 << 29);
8411 tw32(TG3PCI_MSI_DATA, val);
8412 }
8413
8414 /* Descriptor ring init may make accesses to the
8415 * NIC SRAM area to setup the TX descriptors, so we
8416 * can only do this after the hardware has been
8417 * successfully reset.
8418 */
Michael Chan32d8c572006-07-25 16:38:29 -07008419 err = tg3_init_rings(tp);
8420 if (err)
8421 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422
Joe Perches63c3a662011-04-26 08:12:10 +00008423 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008424 val = tr32(TG3PCI_DMA_RW_CTRL) &
8425 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008426 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8427 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson0aebff42011-04-25 12:42:45 +00008428 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765 &&
8429 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8430 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008431 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8432 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8433 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008434 /* This value is determined during the probe time DMA
8435 * engine test, tg3_test_dma.
8436 */
8437 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008439
8440 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8441 GRC_MODE_4X_NIC_SEND_RINGS |
8442 GRC_MODE_NO_TX_PHDR_CSUM |
8443 GRC_MODE_NO_RX_PHDR_CSUM);
8444 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008445
8446 /* Pseudo-header checksum is done by hardware logic and not
8447 * the offload processers, so make the chip do the pseudo-
8448 * header checksums on receive. For transmit it is more
8449 * convenient to do the pseudo-header checksum in software
8450 * as Linux does that on transmit for us in all cases.
8451 */
8452 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453
8454 tw32(GRC_MODE,
8455 tp->grc_mode |
8456 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8457
8458 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8459 val = tr32(GRC_MISC_CFG);
8460 val &= ~0xff;
8461 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8462 tw32(GRC_MISC_CFG, val);
8463
8464 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008465 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466 /* Do nothing. */
8467 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8468 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8469 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8470 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8471 else
8472 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8473 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8474 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008475 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476 int fw_len;
8477
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008478 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8480 tw32(BUFMGR_MB_POOL_ADDR,
8481 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8482 tw32(BUFMGR_MB_POOL_SIZE,
8483 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008485
Michael Chan0f893dc2005-07-25 12:30:38 -07008486 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008487 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8488 tp->bufmgr_config.mbuf_read_dma_low_water);
8489 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8490 tp->bufmgr_config.mbuf_mac_rx_low_water);
8491 tw32(BUFMGR_MB_HIGH_WATER,
8492 tp->bufmgr_config.mbuf_high_water);
8493 } else {
8494 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8495 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8496 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8497 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8498 tw32(BUFMGR_MB_HIGH_WATER,
8499 tp->bufmgr_config.mbuf_high_water_jumbo);
8500 }
8501 tw32(BUFMGR_DMA_LOW_WATER,
8502 tp->bufmgr_config.dma_low_water);
8503 tw32(BUFMGR_DMA_HIGH_WATER,
8504 tp->bufmgr_config.dma_high_water);
8505
Matt Carlsond309a462010-09-30 10:34:31 +00008506 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8507 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8508 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008509 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8510 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8511 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8512 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008513 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008514 for (i = 0; i < 2000; i++) {
8515 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8516 break;
8517 udelay(10);
8518 }
8519 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008520 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008521 return -ENODEV;
8522 }
8523
Matt Carlsoneb07a942011-04-20 07:57:36 +00008524 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8525 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008526
Matt Carlsoneb07a942011-04-20 07:57:36 +00008527 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008528
8529 /* Initialize TG3_BDINFO's at:
8530 * RCVDBDI_STD_BD: standard eth size rx ring
8531 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8532 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8533 *
8534 * like so:
8535 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
8536 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
8537 * ring attribute flags
8538 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
8539 *
8540 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
8541 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
8542 *
8543 * The size of each ring is fixed in the firmware, but the location is
8544 * configurable.
8545 */
8546 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008547 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008549 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00008550 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00008551 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
8552 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008553
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008554 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00008555 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008556 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
8557 BDINFO_FLAGS_DISABLED);
8558
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008559 /* Program the jumbo buffer descriptor ring control
8560 * blocks on those devices that have them.
8561 */
Matt Carlsona0512942011-07-27 14:20:54 +00008562 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008563 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008564
Joe Perches63c3a662011-04-26 08:12:10 +00008565 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008566 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008567 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008569 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00008570 val = TG3_RX_JMB_RING_SIZE(tp) <<
8571 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008572 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00008573 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00008574 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlsona50d0792010-06-05 17:24:37 +00008575 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson87668d32009-11-13 13:03:34 +00008576 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
8577 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008578 } else {
8579 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
8580 BDINFO_FLAGS_DISABLED);
8581 }
8582
Joe Perches63c3a662011-04-26 08:12:10 +00008583 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008584 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsonde9f5232011-04-05 14:22:43 +00008585 val = TG3_RX_STD_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008586 else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008587 val = TG3_RX_STD_MAX_SIZE_5717;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008588 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
8589 val |= (TG3_RX_STD_DMA_SZ << 2);
8590 } else
Matt Carlson04380d42010-04-12 06:58:29 +00008591 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008592 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008593 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008594
8595 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008596
Matt Carlson411da642009-11-13 13:03:46 +00008597 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00008598 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008599
Joe Perches63c3a662011-04-26 08:12:10 +00008600 tpr->rx_jmb_prod_idx =
8601 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00008602 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008603
Matt Carlson2d31eca2009-09-01 12:53:31 +00008604 tg3_rings_reset(tp);
8605
Linus Torvalds1da177e2005-04-16 15:20:36 -07008606 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07008607 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008608
8609 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00008610 tw32(MAC_RX_MTU_SIZE,
8611 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008612
8613 /* The slot time is changed by tg3_setup_phy if we
8614 * run at gigabit with half duplex.
8615 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00008616 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
8617 (6 << TX_LENGTHS_IPG_SHIFT) |
8618 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
8619
8620 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8621 val |= tr32(MAC_TX_LENGTHS) &
8622 (TX_LENGTHS_JMB_FRM_LEN_MSK |
8623 TX_LENGTHS_CNT_DWN_VAL_MSK);
8624
8625 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626
8627 /* Receive rules. */
8628 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
8629 tw32(RCVLPC_CONFIG, 0x0181);
8630
8631 /* Calculate RDMAC_MODE setting early, we need it to determine
8632 * the RCVLPC_STATE_ENABLE mask.
8633 */
8634 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
8635 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
8636 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
8637 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
8638 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07008639
Matt Carlsondeabaac2010-11-24 08:31:50 +00008640 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00008641 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
8642
Matt Carlson57e69832008-05-25 23:48:31 -07008643 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08008644 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8645 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07008646 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
8647 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
8648 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
8649
Matt Carlsonc5908932011-03-09 16:58:25 +00008650 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8651 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008652 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07008653 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008654 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
8655 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008656 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8658 }
8659 }
8660
Joe Perches63c3a662011-04-26 08:12:10 +00008661 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07008662 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8663
Joe Perches63c3a662011-04-26 08:12:10 +00008664 if (tg3_flag(tp, HW_TSO_1) ||
8665 tg3_flag(tp, HW_TSO_2) ||
8666 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08008667 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
8668
Matt Carlson108a6c12011-05-19 12:12:47 +00008669 if (tg3_flag(tp, 57765_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00008670 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08008671 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
8672 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008673
Matt Carlsonf2096f92011-04-05 14:22:48 +00008674 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8675 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
8676
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008677 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
8678 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8679 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8680 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008681 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008682 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Matt Carlsond78b59f2011-04-05 14:22:46 +00008683 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8684 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00008685 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
8686 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
8687 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
8688 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
8689 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
8690 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00008691 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008692 tw32(TG3_RDMA_RSRVCTRL_REG,
8693 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
8694 }
8695
Matt Carlsond78b59f2011-04-05 14:22:46 +00008696 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8697 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00008698 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
8699 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
8700 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
8701 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
8702 }
8703
Linus Torvalds1da177e2005-04-16 15:20:36 -07008704 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00008705 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07008706 val = tr32(RCVLPC_STATS_ENABLE);
8707 val &= ~RCVLPC_STATSENAB_DACK_FIX;
8708 tw32(RCVLPC_STATS_ENABLE, val);
8709 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008710 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008711 val = tr32(RCVLPC_STATS_ENABLE);
8712 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
8713 tw32(RCVLPC_STATS_ENABLE, val);
8714 } else {
8715 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
8716 }
8717 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
8718 tw32(SNDDATAI_STATSENAB, 0xffffff);
8719 tw32(SNDDATAI_STATSCTRL,
8720 (SNDDATAI_SCTRL_ENABLE |
8721 SNDDATAI_SCTRL_FASTUPD));
8722
8723 /* Setup host coalescing engine. */
8724 tw32(HOSTCC_MODE, 0);
8725 for (i = 0; i < 2000; i++) {
8726 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
8727 break;
8728 udelay(10);
8729 }
8730
Michael Chand244c892005-07-05 14:42:33 -07008731 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008732
Joe Perches63c3a662011-04-26 08:12:10 +00008733 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008734 /* Status/statistics block address. See tg3_timer,
8735 * the tg3_periodic_fetch_stats call there, and
8736 * tg3_get_stats to see how this works for 5705/5750 chips.
8737 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008738 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8739 ((u64) tp->stats_mapping >> 32));
8740 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8741 ((u64) tp->stats_mapping & 0xffffffff));
8742 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008743
Linus Torvalds1da177e2005-04-16 15:20:36 -07008744 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008745
8746 /* Clear statistics and status block memory areas */
8747 for (i = NIC_SRAM_STATS_BLK;
8748 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
8749 i += sizeof(u32)) {
8750 tg3_write_mem(tp, i, 0);
8751 udelay(40);
8752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008753 }
8754
8755 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
8756
8757 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
8758 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008759 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008760 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
8761
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008762 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
8763 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07008764 /* reset to prevent losing 1st rx packet intermittently */
8765 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8766 udelay(10);
8767 }
8768
Matt Carlson3bda1252008-08-15 14:08:22 -07008769 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +00008770 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
8771 MAC_MODE_FHDE_ENABLE;
8772 if (tg3_flag(tp, ENABLE_APE))
8773 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +00008774 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008775 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07008776 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8777 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008778 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8779 udelay(40);
8780
Michael Chan314fba32005-04-21 17:07:04 -07008781 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00008782 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008783 * register to preserve the GPIO settings for LOMs. The GPIOs,
8784 * whether used as inputs or outputs, are set by boot code after
8785 * reset.
8786 */
Joe Perches63c3a662011-04-26 08:12:10 +00008787 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008788 u32 gpio_mask;
8789
Michael Chan9d26e212006-12-07 00:21:14 -08008790 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8791 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8792 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008793
8794 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8795 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8796 GRC_LCLCTRL_GPIO_OUTPUT3;
8797
Michael Chanaf36e6b2006-03-23 01:28:06 -08008798 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8799 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8800
Gary Zambranoaaf84462007-05-05 11:51:45 -07008801 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008802 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8803
8804 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00008805 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08008806 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8807 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008809 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8810 udelay(100);
8811
Joe Perches63c3a662011-04-26 08:12:10 +00008812 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008813 val = tr32(MSGINT_MODE);
8814 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
Matt Carlson5b39de92011-08-31 11:44:50 +00008815 if (!tg3_flag(tp, 1SHOT_MSI))
8816 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008817 tw32(MSGINT_MODE, val);
8818 }
8819
Joe Perches63c3a662011-04-26 08:12:10 +00008820 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008821 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8822 udelay(40);
8823 }
8824
8825 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8826 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8827 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8828 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8829 WDMAC_MODE_LNGREAD_ENAB);
8830
Matt Carlsonc5908932011-03-09 16:58:25 +00008831 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8832 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008833 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008834 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8835 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8836 /* nothing */
8837 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008838 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839 val |= WDMAC_MODE_RX_ACCEL;
8840 }
8841 }
8842
Michael Chand9ab5ad2006-03-20 22:27:35 -08008843 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00008844 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07008845 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad2006-03-20 22:27:35 -08008846
Matt Carlson788a0352009-11-02 14:26:03 +00008847 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8848 val |= WDMAC_MODE_BURST_ALL_DATA;
8849
Linus Torvalds1da177e2005-04-16 15:20:36 -07008850 tw32_f(WDMAC_MODE, val);
8851 udelay(40);
8852
Joe Perches63c3a662011-04-26 08:12:10 +00008853 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008854 u16 pcix_cmd;
8855
8856 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8857 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008858 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008859 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8860 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008861 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008862 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8863 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008864 }
Matt Carlson9974a352007-10-07 23:27:28 -07008865 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8866 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008867 }
8868
8869 tw32_f(RDMAC_MODE, rdmac_mode);
8870 udelay(40);
8871
8872 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008873 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008874 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008875
8876 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8877 tw32(SNDDATAC_MODE,
8878 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8879 else
8880 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8881
Linus Torvalds1da177e2005-04-16 15:20:36 -07008882 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8883 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008884 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008885 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008886 val |= RCVDBDI_MODE_LRG_RING_SZ;
8887 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008888 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008889 if (tg3_flag(tp, HW_TSO_1) ||
8890 tg3_flag(tp, HW_TSO_2) ||
8891 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008892 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008893 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008894 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008895 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8896 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008897 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8898
8899 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8900 err = tg3_load_5701_a0_firmware_fix(tp);
8901 if (err)
8902 return err;
8903 }
8904
Joe Perches63c3a662011-04-26 08:12:10 +00008905 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008906 err = tg3_load_tso_firmware(tp);
8907 if (err)
8908 return err;
8909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008910
8911 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008912
Joe Perches63c3a662011-04-26 08:12:10 +00008913 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00008914 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
8915 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008916
8917 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8918 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
8919 tp->tx_mode &= ~val;
8920 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
8921 }
8922
Linus Torvalds1da177e2005-04-16 15:20:36 -07008923 tw32_f(MAC_TX_MODE, tp->tx_mode);
8924 udelay(100);
8925
Joe Perches63c3a662011-04-26 08:12:10 +00008926 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson9d53fa12011-07-20 10:20:54 +00008927 int i = 0;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008928 u32 reg = MAC_RSS_INDIR_TBL_0;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008929
Matt Carlson9d53fa12011-07-20 10:20:54 +00008930 if (tp->irq_cnt == 2) {
8931 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i += 8) {
8932 tw32(reg, 0x0);
8933 reg += 4;
8934 }
8935 } else {
8936 u32 val;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008937
Matt Carlson9d53fa12011-07-20 10:20:54 +00008938 while (i < TG3_RSS_INDIR_TBL_SIZE) {
8939 val = i % (tp->irq_cnt - 1);
8940 i++;
8941 for (; i % 8; i++) {
8942 val <<= 4;
8943 val |= (i % (tp->irq_cnt - 1));
8944 }
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008945 tw32(reg, val);
8946 reg += 4;
8947 }
8948 }
8949
8950 /* Setup the "secret" hash key. */
8951 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8952 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8953 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8954 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8955 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8956 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8957 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8958 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8959 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8960 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8961 }
8962
Linus Torvalds1da177e2005-04-16 15:20:36 -07008963 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008964 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08008965 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8966
Joe Perches63c3a662011-04-26 08:12:10 +00008967 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008968 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8969 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8970 RX_MODE_RSS_IPV6_HASH_EN |
8971 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8972 RX_MODE_RSS_IPV4_HASH_EN |
8973 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8974
Linus Torvalds1da177e2005-04-16 15:20:36 -07008975 tw32_f(MAC_RX_MODE, tp->rx_mode);
8976 udelay(10);
8977
Linus Torvalds1da177e2005-04-16 15:20:36 -07008978 tw32(MAC_LED_CTRL, tp->led_ctrl);
8979
8980 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008981 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008982 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8983 udelay(10);
8984 }
8985 tw32_f(MAC_RX_MODE, tp->rx_mode);
8986 udelay(10);
8987
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008988 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008989 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008990 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008991 /* Set drive transmission level to 1.2V */
8992 /* only if the signal pre-emphasis bit is not set */
8993 val = tr32(MAC_SERDES_CFG);
8994 val &= 0xfffff000;
8995 val |= 0x880;
8996 tw32(MAC_SERDES_CFG, val);
8997 }
8998 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8999 tw32(MAC_SERDES_CFG, 0x616000);
9000 }
9001
9002 /* Prevent chip from dropping frames when flow control
9003 * is enabled.
9004 */
Matt Carlson666bc832010-01-20 16:58:03 +00009005 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
9006 val = 1;
9007 else
9008 val = 2;
9009 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009010
9011 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009012 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00009014 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009015 }
9016
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009017 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +00009018 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08009019 u32 tmp;
9020
9021 tmp = tr32(SERDES_RX_CTRL);
9022 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
9023 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
9024 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
9025 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9026 }
9027
Joe Perches63c3a662011-04-26 08:12:10 +00009028 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson80096062010-08-02 11:26:06 +00009029 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
9030 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07009031 tp->link_config.speed = tp->link_config.orig_speed;
9032 tp->link_config.duplex = tp->link_config.orig_duplex;
9033 tp->link_config.autoneg = tp->link_config.orig_autoneg;
9034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009035
Matt Carlsondd477002008-05-25 23:45:58 -07009036 err = tg3_setup_phy(tp, 0);
9037 if (err)
9038 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009039
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009040 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
9041 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07009042 u32 tmp;
9043
9044 /* Clear CRC stats. */
9045 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
9046 tg3_writephy(tp, MII_TG3_TEST1,
9047 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009048 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07009049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009050 }
9051 }
9052
9053 __tg3_set_rx_mode(tp->dev);
9054
9055 /* Initialize receive rules. */
9056 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
9057 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
9058 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
9059 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
9060
Joe Perches63c3a662011-04-26 08:12:10 +00009061 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009062 limit = 8;
9063 else
9064 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00009065 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009066 limit -= 4;
9067 switch (limit) {
9068 case 16:
9069 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
9070 case 15:
9071 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
9072 case 14:
9073 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
9074 case 13:
9075 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
9076 case 12:
9077 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
9078 case 11:
9079 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
9080 case 10:
9081 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
9082 case 9:
9083 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
9084 case 8:
9085 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
9086 case 7:
9087 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
9088 case 6:
9089 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
9090 case 5:
9091 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
9092 case 4:
9093 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
9094 case 3:
9095 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
9096 case 2:
9097 case 1:
9098
9099 default:
9100 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07009101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009102
Joe Perches63c3a662011-04-26 08:12:10 +00009103 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07009104 /* Write our heartbeat update interval to APE. */
9105 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
9106 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07009107
Linus Torvalds1da177e2005-04-16 15:20:36 -07009108 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
9109
Linus Torvalds1da177e2005-04-16 15:20:36 -07009110 return 0;
9111}
9112
9113/* Called at device open time to get the chip ready for
9114 * packet processing. Invoked with tp->lock held.
9115 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009116static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009117{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009118 tg3_switch_clocks(tp);
9119
9120 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
9121
Matt Carlson2f751b62008-08-04 23:17:34 -07009122 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009123}
9124
9125#define TG3_STAT_ADD32(PSTAT, REG) \
9126do { u32 __val = tr32(REG); \
9127 (PSTAT)->low += __val; \
9128 if ((PSTAT)->low < __val) \
9129 (PSTAT)->high += 1; \
9130} while (0)
9131
9132static void tg3_periodic_fetch_stats(struct tg3 *tp)
9133{
9134 struct tg3_hw_stats *sp = tp->hw_stats;
9135
9136 if (!netif_carrier_ok(tp->dev))
9137 return;
9138
9139 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
9140 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
9141 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
9142 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
9143 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
9144 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
9145 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
9146 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
9147 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
9148 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
9149 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
9150 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
9151 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
9152
9153 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
9154 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
9155 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
9156 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
9157 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
9158 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
9159 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
9160 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
9161 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
9162 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
9163 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
9164 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
9165 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
9166 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07009167
9168 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson310050f2011-05-19 12:12:55 +00009169 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9170 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0 &&
9171 tp->pci_chip_rev_id != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +00009172 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
9173 } else {
9174 u32 val = tr32(HOSTCC_FLOW_ATTN);
9175 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
9176 if (val) {
9177 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
9178 sp->rx_discards.low += val;
9179 if (sp->rx_discards.low < val)
9180 sp->rx_discards.high += 1;
9181 }
9182 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
9183 }
Michael Chan463d3052006-05-22 16:36:27 -07009184 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009185}
9186
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009187static void tg3_chk_missed_msi(struct tg3 *tp)
9188{
9189 u32 i;
9190
9191 for (i = 0; i < tp->irq_cnt; i++) {
9192 struct tg3_napi *tnapi = &tp->napi[i];
9193
9194 if (tg3_has_work(tnapi)) {
9195 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
9196 tnapi->last_tx_cons == tnapi->tx_cons) {
9197 if (tnapi->chk_msi_cnt < 1) {
9198 tnapi->chk_msi_cnt++;
9199 return;
9200 }
Matt Carlson7f230732011-08-31 11:44:48 +00009201 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009202 }
9203 }
9204 tnapi->chk_msi_cnt = 0;
9205 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
9206 tnapi->last_tx_cons = tnapi->tx_cons;
9207 }
9208}
9209
Linus Torvalds1da177e2005-04-16 15:20:36 -07009210static void tg3_timer(unsigned long __opaque)
9211{
9212 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009213
Matt Carlson5b190622011-11-04 09:15:04 +00009214 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -08009215 goto restart_timer;
9216
David S. Millerf47c11e2005-06-24 20:18:35 -07009217 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009218
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009219 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
9220 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
9221 tg3_chk_missed_msi(tp);
9222
Joe Perches63c3a662011-04-26 08:12:10 +00009223 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07009224 /* All of this garbage is because when using non-tagged
9225 * IRQ status the mailbox/status_block protocol the chip
9226 * uses with the cpu is race prone.
9227 */
Matt Carlson898a56f2009-08-28 14:02:40 +00009228 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07009229 tw32(GRC_LOCAL_CTRL,
9230 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
9231 } else {
9232 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009233 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07009234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009235
David S. Millerfac9b832005-05-18 22:46:34 -07009236 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009237 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +00009238 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +00009239 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -07009240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009241 }
9242
Linus Torvalds1da177e2005-04-16 15:20:36 -07009243 /* This part only runs once per second. */
9244 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009245 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009246 tg3_periodic_fetch_stats(tp);
9247
Matt Carlsonb0c59432011-05-19 12:12:48 +00009248 if (tp->setlpicnt && !--tp->setlpicnt)
9249 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00009250
Joe Perches63c3a662011-04-26 08:12:10 +00009251 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009252 u32 mac_stat;
9253 int phy_event;
9254
9255 mac_stat = tr32(MAC_STATUS);
9256
9257 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009258 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009259 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
9260 phy_event = 1;
9261 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
9262 phy_event = 1;
9263
9264 if (phy_event)
9265 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00009266 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009267 u32 mac_stat = tr32(MAC_STATUS);
9268 int need_setup = 0;
9269
9270 if (netif_carrier_ok(tp->dev) &&
9271 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
9272 need_setup = 1;
9273 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00009274 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009275 (mac_stat & (MAC_STATUS_PCS_SYNCED |
9276 MAC_STATUS_SIGNAL_DET))) {
9277 need_setup = 1;
9278 }
9279 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07009280 if (!tp->serdes_counter) {
9281 tw32_f(MAC_MODE,
9282 (tp->mac_mode &
9283 ~MAC_MODE_PORT_MODE_MASK));
9284 udelay(40);
9285 tw32_f(MAC_MODE, tp->mac_mode);
9286 udelay(40);
9287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009288 tg3_setup_phy(tp, 0);
9289 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009290 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009291 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07009292 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00009293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009294
9295 tp->timer_counter = tp->timer_multiplier;
9296 }
9297
Michael Chan130b8e42006-09-27 16:00:40 -07009298 /* Heartbeat is only sent once every 2 seconds.
9299 *
9300 * The heartbeat is to tell the ASF firmware that the host
9301 * driver is still alive. In the event that the OS crashes,
9302 * ASF needs to reset the hardware to free up the FIFO space
9303 * that may be filled with rx packets destined for the host.
9304 * If the FIFO is full, ASF will no longer function properly.
9305 *
9306 * Unintended resets have been reported on real time kernels
9307 * where the timer doesn't run on time. Netpoll will also have
9308 * same problem.
9309 *
9310 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
9311 * to check the ring condition when the heartbeat is expiring
9312 * before doing the reset. This will prevent most unintended
9313 * resets.
9314 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009315 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009316 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07009317 tg3_wait_for_event_ack(tp);
9318
Michael Chanbbadf502006-04-06 21:46:34 -07009319 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07009320 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07009321 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009322 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
9323 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009324
9325 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009326 }
9327 tp->asf_counter = tp->asf_multiplier;
9328 }
9329
David S. Millerf47c11e2005-06-24 20:18:35 -07009330 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009331
Michael Chanf475f162006-03-27 23:20:14 -08009332restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07009333 tp->timer.expires = jiffies + tp->timer_offset;
9334 add_timer(&tp->timer);
9335}
9336
Matt Carlson4f125f42009-09-01 12:55:02 +00009337static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08009338{
David Howells7d12e782006-10-05 14:55:46 +01009339 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009340 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00009341 char *name;
9342 struct tg3_napi *tnapi = &tp->napi[irq_num];
9343
9344 if (tp->irq_cnt == 1)
9345 name = tp->dev->name;
9346 else {
9347 name = &tnapi->irq_lbl[0];
9348 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
9349 name[IFNAMSIZ-1] = 0;
9350 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009351
Joe Perches63c3a662011-04-26 08:12:10 +00009352 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08009353 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +00009354 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009355 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009356 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009357 } else {
9358 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +00009359 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009360 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009361 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009362 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009363
9364 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009365}
9366
Michael Chan79381092005-04-21 17:13:59 -07009367static int tg3_test_interrupt(struct tg3 *tp)
9368{
Matt Carlson09943a12009-08-28 14:01:57 +00009369 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07009370 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07009371 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009372 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07009373
Michael Chand4bc3922005-05-29 14:59:20 -07009374 if (!netif_running(dev))
9375 return -ENODEV;
9376
Michael Chan79381092005-04-21 17:13:59 -07009377 tg3_disable_ints(tp);
9378
Matt Carlson4f125f42009-09-01 12:55:02 +00009379 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009380
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009381 /*
9382 * Turn off MSI one shot mode. Otherwise this test has no
9383 * observable way to know whether the interrupt was delivered.
9384 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009385 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009386 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
9387 tw32(MSGINT_MODE, val);
9388 }
9389
Matt Carlson4f125f42009-09-01 12:55:02 +00009390 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00009391 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009392 if (err)
9393 return err;
9394
Matt Carlson898a56f2009-08-28 14:02:40 +00009395 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07009396 tg3_enable_ints(tp);
9397
9398 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009399 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07009400
9401 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07009402 u32 int_mbox, misc_host_ctrl;
9403
Matt Carlson898a56f2009-08-28 14:02:40 +00009404 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07009405 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
9406
9407 if ((int_mbox != 0) ||
9408 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
9409 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07009410 break;
Michael Chanb16250e2006-09-27 16:10:14 -07009411 }
9412
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009413 if (tg3_flag(tp, 57765_PLUS) &&
9414 tnapi->hw_status->status_tag != tnapi->last_tag)
9415 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
9416
Michael Chan79381092005-04-21 17:13:59 -07009417 msleep(10);
9418 }
9419
9420 tg3_disable_ints(tp);
9421
Matt Carlson4f125f42009-09-01 12:55:02 +00009422 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009423
Matt Carlson4f125f42009-09-01 12:55:02 +00009424 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009425
9426 if (err)
9427 return err;
9428
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009429 if (intr_ok) {
9430 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +00009431 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009432 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
9433 tw32(MSGINT_MODE, val);
9434 }
Michael Chan79381092005-04-21 17:13:59 -07009435 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009436 }
Michael Chan79381092005-04-21 17:13:59 -07009437
9438 return -EIO;
9439}
9440
9441/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
9442 * successfully restored
9443 */
9444static int tg3_test_msi(struct tg3 *tp)
9445{
Michael Chan79381092005-04-21 17:13:59 -07009446 int err;
9447 u16 pci_cmd;
9448
Joe Perches63c3a662011-04-26 08:12:10 +00009449 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -07009450 return 0;
9451
9452 /* Turn off SERR reporting in case MSI terminates with Master
9453 * Abort.
9454 */
9455 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9456 pci_write_config_word(tp->pdev, PCI_COMMAND,
9457 pci_cmd & ~PCI_COMMAND_SERR);
9458
9459 err = tg3_test_interrupt(tp);
9460
9461 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9462
9463 if (!err)
9464 return 0;
9465
9466 /* other failures */
9467 if (err != -EIO)
9468 return err;
9469
9470 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009471 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
9472 "to INTx mode. Please report this failure to the PCI "
9473 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07009474
Matt Carlson4f125f42009-09-01 12:55:02 +00009475 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00009476
Michael Chan79381092005-04-21 17:13:59 -07009477 pci_disable_msi(tp->pdev);
9478
Joe Perches63c3a662011-04-26 08:12:10 +00009479 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +00009480 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -07009481
Matt Carlson4f125f42009-09-01 12:55:02 +00009482 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009483 if (err)
9484 return err;
9485
9486 /* Need to reset the chip because the MSI cycle may have terminated
9487 * with Master Abort.
9488 */
David S. Millerf47c11e2005-06-24 20:18:35 -07009489 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009490
Michael Chan944d9802005-05-29 14:57:48 -07009491 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009492 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009493
David S. Millerf47c11e2005-06-24 20:18:35 -07009494 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009495
9496 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00009497 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07009498
9499 return err;
9500}
9501
Matt Carlson9e9fd122009-01-19 16:57:45 -08009502static int tg3_request_firmware(struct tg3 *tp)
9503{
9504 const __be32 *fw_data;
9505
9506 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009507 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
9508 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009509 return -ENOENT;
9510 }
9511
9512 fw_data = (void *)tp->fw->data;
9513
9514 /* Firmware blob starts with version numbers, followed by
9515 * start address and _full_ length including BSS sections
9516 * (which must be longer than the actual data, of course
9517 */
9518
9519 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
9520 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009521 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
9522 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009523 release_firmware(tp->fw);
9524 tp->fw = NULL;
9525 return -EINVAL;
9526 }
9527
9528 /* We no longer need firmware; we have it. */
9529 tp->fw_needed = NULL;
9530 return 0;
9531}
9532
Matt Carlson679563f2009-09-01 12:55:46 +00009533static bool tg3_enable_msix(struct tg3 *tp)
9534{
9535 int i, rc, cpus = num_online_cpus();
9536 struct msix_entry msix_ent[tp->irq_max];
9537
9538 if (cpus == 1)
9539 /* Just fallback to the simpler MSI mode. */
9540 return false;
9541
9542 /*
9543 * We want as many rx rings enabled as there are cpus.
9544 * The first MSIX vector only deals with link interrupts, etc,
9545 * so we add one to the number of vectors we are requesting.
9546 */
9547 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
9548
9549 for (i = 0; i < tp->irq_max; i++) {
9550 msix_ent[i].entry = i;
9551 msix_ent[i].vector = 0;
9552 }
9553
9554 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +00009555 if (rc < 0) {
9556 return false;
9557 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +00009558 if (pci_enable_msix(tp->pdev, msix_ent, rc))
9559 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00009560 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
9561 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00009562 tp->irq_cnt = rc;
9563 }
9564
9565 for (i = 0; i < tp->irq_max; i++)
9566 tp->napi[i].irq_vec = msix_ent[i].vector;
9567
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009568 netif_set_real_num_tx_queues(tp->dev, 1);
9569 rc = tp->irq_cnt > 1 ? tp->irq_cnt - 1 : 1;
9570 if (netif_set_real_num_rx_queues(tp->dev, rc)) {
9571 pci_disable_msix(tp->pdev);
9572 return false;
9573 }
Matt Carlsonb92b9042010-11-24 08:31:51 +00009574
9575 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +00009576 tg3_flag_set(tp, ENABLE_RSS);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009577
9578 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9579 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Joe Perches63c3a662011-04-26 08:12:10 +00009580 tg3_flag_set(tp, ENABLE_TSS);
Matt Carlsonb92b9042010-11-24 08:31:51 +00009581 netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1);
9582 }
9583 }
Matt Carlson2430b032010-06-05 17:24:34 +00009584
Matt Carlson679563f2009-09-01 12:55:46 +00009585 return true;
9586}
9587
Matt Carlson07b01732009-08-28 14:01:15 +00009588static void tg3_ints_init(struct tg3 *tp)
9589{
Joe Perches63c3a662011-04-26 08:12:10 +00009590 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
9591 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00009592 /* All MSI supporting chips should support tagged
9593 * status. Assert that this is the case.
9594 */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009595 netdev_warn(tp->dev,
9596 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00009597 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00009598 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009599
Joe Perches63c3a662011-04-26 08:12:10 +00009600 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
9601 tg3_flag_set(tp, USING_MSIX);
9602 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
9603 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +00009604
Joe Perches63c3a662011-04-26 08:12:10 +00009605 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009606 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +00009607 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009608 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +00009609 if (!tg3_flag(tp, 1SHOT_MSI))
9610 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +00009611 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
9612 }
9613defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +00009614 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009615 tp->irq_cnt = 1;
9616 tp->napi[0].irq_vec = tp->pdev->irq;
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009617 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -07009618 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +00009619 }
Matt Carlson07b01732009-08-28 14:01:15 +00009620}
9621
9622static void tg3_ints_fini(struct tg3 *tp)
9623{
Joe Perches63c3a662011-04-26 08:12:10 +00009624 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +00009625 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009626 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +00009627 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009628 tg3_flag_clear(tp, USING_MSI);
9629 tg3_flag_clear(tp, USING_MSIX);
9630 tg3_flag_clear(tp, ENABLE_RSS);
9631 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +00009632}
9633
Linus Torvalds1da177e2005-04-16 15:20:36 -07009634static int tg3_open(struct net_device *dev)
9635{
9636 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00009637 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009638
Matt Carlson9e9fd122009-01-19 16:57:45 -08009639 if (tp->fw_needed) {
9640 err = tg3_request_firmware(tp);
9641 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9642 if (err)
9643 return err;
9644 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00009645 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009646 tg3_flag_clear(tp, TSO_CAPABLE);
9647 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009648 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009649 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009650 }
9651 }
9652
Michael Chanc49a1562006-12-17 17:07:29 -08009653 netif_carrier_off(tp->dev);
9654
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009655 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -07009656 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08009657 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07009658
9659 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08009660
Linus Torvalds1da177e2005-04-16 15:20:36 -07009661 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009662 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009663
David S. Millerf47c11e2005-06-24 20:18:35 -07009664 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009665
Matt Carlson679563f2009-09-01 12:55:46 +00009666 /*
9667 * Setup interrupts first so we know how
9668 * many NAPI resources to allocate
9669 */
9670 tg3_ints_init(tp);
9671
Linus Torvalds1da177e2005-04-16 15:20:36 -07009672 /* The placement of this call is tied
9673 * to the setup and use of Host TX descriptors.
9674 */
9675 err = tg3_alloc_consistent(tp);
9676 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009677 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009678
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009679 tg3_napi_init(tp);
9680
Matt Carlsonfed97812009-09-01 13:10:19 +00009681 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07009682
Matt Carlson4f125f42009-09-01 12:55:02 +00009683 for (i = 0; i < tp->irq_cnt; i++) {
9684 struct tg3_napi *tnapi = &tp->napi[i];
9685 err = tg3_request_irq(tp, i);
9686 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +00009687 for (i--; i >= 0; i--) {
9688 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +00009689 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +00009690 }
9691 goto err_out2;
Matt Carlson4f125f42009-09-01 12:55:02 +00009692 }
9693 }
Matt Carlson07b01732009-08-28 14:01:15 +00009694
David S. Millerf47c11e2005-06-24 20:18:35 -07009695 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009696
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009697 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009698 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07009699 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009700 tg3_free_rings(tp);
9701 } else {
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009702 if (tg3_flag(tp, TAGGED_STATUS) &&
9703 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9704 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765)
David S. Millerfac9b832005-05-18 22:46:34 -07009705 tp->timer_offset = HZ;
9706 else
9707 tp->timer_offset = HZ / 10;
9708
9709 BUG_ON(tp->timer_offset > HZ);
9710 tp->timer_counter = tp->timer_multiplier =
9711 (HZ / tp->timer_offset);
9712 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07009713 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009714
9715 init_timer(&tp->timer);
9716 tp->timer.expires = jiffies + tp->timer_offset;
9717 tp->timer.data = (unsigned long) tp;
9718 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009719 }
9720
David S. Millerf47c11e2005-06-24 20:18:35 -07009721 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009722
Matt Carlson07b01732009-08-28 14:01:15 +00009723 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009724 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009725
Joe Perches63c3a662011-04-26 08:12:10 +00009726 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -07009727 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07009728
Michael Chan79381092005-04-21 17:13:59 -07009729 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009730 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07009731 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07009732 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07009733 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009734
Matt Carlson679563f2009-09-01 12:55:46 +00009735 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07009736 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009737
Joe Perches63c3a662011-04-26 08:12:10 +00009738 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009739 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009740
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009741 tw32(PCIE_TRANSACTION_CFG,
9742 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009743 }
Michael Chan79381092005-04-21 17:13:59 -07009744 }
9745
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009746 tg3_phy_start(tp);
9747
David S. Millerf47c11e2005-06-24 20:18:35 -07009748 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009749
Michael Chan79381092005-04-21 17:13:59 -07009750 add_timer(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +00009751 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009752 tg3_enable_ints(tp);
9753
David S. Millerf47c11e2005-06-24 20:18:35 -07009754 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009755
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009756 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009757
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00009758 /*
9759 * Reset loopback feature if it was turned on while the device was down
9760 * make sure that it's installed properly now.
9761 */
9762 if (dev->features & NETIF_F_LOOPBACK)
9763 tg3_set_loopback(dev, dev->features);
9764
Linus Torvalds1da177e2005-04-16 15:20:36 -07009765 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00009766
Matt Carlson679563f2009-09-01 12:55:46 +00009767err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00009768 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9769 struct tg3_napi *tnapi = &tp->napi[i];
9770 free_irq(tnapi->irq_vec, tnapi);
9771 }
Matt Carlson07b01732009-08-28 14:01:15 +00009772
Matt Carlson679563f2009-09-01 12:55:46 +00009773err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00009774 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009775 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009776 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00009777
9778err_out1:
9779 tg3_ints_fini(tp);
Matt Carlsoncd0d7222011-07-13 09:27:33 +00009780 tg3_frob_aux_power(tp, false);
9781 pci_set_power_state(tp->pdev, PCI_D3hot);
Matt Carlson07b01732009-08-28 14:01:15 +00009782 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009783}
9784
Eric Dumazet511d2222010-07-07 20:44:24 +00009785static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *,
9786 struct rtnl_link_stats64 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009787static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
9788
9789static int tg3_close(struct net_device *dev)
9790{
Matt Carlson4f125f42009-09-01 12:55:02 +00009791 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009792 struct tg3 *tp = netdev_priv(dev);
9793
Matt Carlsonfed97812009-09-01 13:10:19 +00009794 tg3_napi_disable(tp);
Matt Carlsondb219972011-11-04 09:15:03 +00009795 tg3_reset_task_cancel(tp);
Michael Chan7faa0062006-02-02 17:29:28 -08009796
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009797 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009798
9799 del_timer_sync(&tp->timer);
9800
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009801 tg3_phy_stop(tp);
9802
David S. Millerf47c11e2005-06-24 20:18:35 -07009803 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009804
9805 tg3_disable_ints(tp);
9806
Michael Chan944d9802005-05-29 14:57:48 -07009807 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009808 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009809 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009810
David S. Millerf47c11e2005-06-24 20:18:35 -07009811 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009812
Matt Carlson4f125f42009-09-01 12:55:02 +00009813 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9814 struct tg3_napi *tnapi = &tp->napi[i];
9815 free_irq(tnapi->irq_vec, tnapi);
9816 }
Matt Carlson07b01732009-08-28 14:01:15 +00009817
9818 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009819
Eric Dumazet511d2222010-07-07 20:44:24 +00009820 tg3_get_stats64(tp->dev, &tp->net_stats_prev);
9821
Linus Torvalds1da177e2005-04-16 15:20:36 -07009822 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9823 sizeof(tp->estats_prev));
9824
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009825 tg3_napi_fini(tp);
9826
Linus Torvalds1da177e2005-04-16 15:20:36 -07009827 tg3_free_consistent(tp);
9828
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009829 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -08009830
9831 netif_carrier_off(tp->dev);
9832
Linus Torvalds1da177e2005-04-16 15:20:36 -07009833 return 0;
9834}
9835
Eric Dumazet511d2222010-07-07 20:44:24 +00009836static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -07009837{
9838 return ((u64)val->high << 32) | ((u64)val->low);
9839}
9840
Eric Dumazet511d2222010-07-07 20:44:24 +00009841static u64 calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009842{
9843 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9844
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009845 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009846 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9847 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009848 u32 val;
9849
David S. Millerf47c11e2005-06-24 20:18:35 -07009850 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009851 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9852 tg3_writephy(tp, MII_TG3_TEST1,
9853 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009854 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009855 } else
9856 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009857 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009858
9859 tp->phy_crc_errors += val;
9860
9861 return tp->phy_crc_errors;
9862 }
9863
9864 return get_stat64(&hw_stats->rx_fcs_errors);
9865}
9866
9867#define ESTAT_ADD(member) \
9868 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +00009869 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009870
9871static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9872{
9873 struct tg3_ethtool_stats *estats = &tp->estats;
9874 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9875 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9876
9877 if (!hw_stats)
9878 return old_estats;
9879
9880 ESTAT_ADD(rx_octets);
9881 ESTAT_ADD(rx_fragments);
9882 ESTAT_ADD(rx_ucast_packets);
9883 ESTAT_ADD(rx_mcast_packets);
9884 ESTAT_ADD(rx_bcast_packets);
9885 ESTAT_ADD(rx_fcs_errors);
9886 ESTAT_ADD(rx_align_errors);
9887 ESTAT_ADD(rx_xon_pause_rcvd);
9888 ESTAT_ADD(rx_xoff_pause_rcvd);
9889 ESTAT_ADD(rx_mac_ctrl_rcvd);
9890 ESTAT_ADD(rx_xoff_entered);
9891 ESTAT_ADD(rx_frame_too_long_errors);
9892 ESTAT_ADD(rx_jabbers);
9893 ESTAT_ADD(rx_undersize_packets);
9894 ESTAT_ADD(rx_in_length_errors);
9895 ESTAT_ADD(rx_out_length_errors);
9896 ESTAT_ADD(rx_64_or_less_octet_packets);
9897 ESTAT_ADD(rx_65_to_127_octet_packets);
9898 ESTAT_ADD(rx_128_to_255_octet_packets);
9899 ESTAT_ADD(rx_256_to_511_octet_packets);
9900 ESTAT_ADD(rx_512_to_1023_octet_packets);
9901 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9902 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9903 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9904 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9905 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9906
9907 ESTAT_ADD(tx_octets);
9908 ESTAT_ADD(tx_collisions);
9909 ESTAT_ADD(tx_xon_sent);
9910 ESTAT_ADD(tx_xoff_sent);
9911 ESTAT_ADD(tx_flow_control);
9912 ESTAT_ADD(tx_mac_errors);
9913 ESTAT_ADD(tx_single_collisions);
9914 ESTAT_ADD(tx_mult_collisions);
9915 ESTAT_ADD(tx_deferred);
9916 ESTAT_ADD(tx_excessive_collisions);
9917 ESTAT_ADD(tx_late_collisions);
9918 ESTAT_ADD(tx_collide_2times);
9919 ESTAT_ADD(tx_collide_3times);
9920 ESTAT_ADD(tx_collide_4times);
9921 ESTAT_ADD(tx_collide_5times);
9922 ESTAT_ADD(tx_collide_6times);
9923 ESTAT_ADD(tx_collide_7times);
9924 ESTAT_ADD(tx_collide_8times);
9925 ESTAT_ADD(tx_collide_9times);
9926 ESTAT_ADD(tx_collide_10times);
9927 ESTAT_ADD(tx_collide_11times);
9928 ESTAT_ADD(tx_collide_12times);
9929 ESTAT_ADD(tx_collide_13times);
9930 ESTAT_ADD(tx_collide_14times);
9931 ESTAT_ADD(tx_collide_15times);
9932 ESTAT_ADD(tx_ucast_packets);
9933 ESTAT_ADD(tx_mcast_packets);
9934 ESTAT_ADD(tx_bcast_packets);
9935 ESTAT_ADD(tx_carrier_sense_errors);
9936 ESTAT_ADD(tx_discards);
9937 ESTAT_ADD(tx_errors);
9938
9939 ESTAT_ADD(dma_writeq_full);
9940 ESTAT_ADD(dma_write_prioq_full);
9941 ESTAT_ADD(rxbds_empty);
9942 ESTAT_ADD(rx_discards);
9943 ESTAT_ADD(rx_errors);
9944 ESTAT_ADD(rx_threshold_hit);
9945
9946 ESTAT_ADD(dma_readq_full);
9947 ESTAT_ADD(dma_read_prioq_full);
9948 ESTAT_ADD(tx_comp_queue_full);
9949
9950 ESTAT_ADD(ring_set_send_prod_index);
9951 ESTAT_ADD(ring_status_update);
9952 ESTAT_ADD(nic_irqs);
9953 ESTAT_ADD(nic_avoided_irqs);
9954 ESTAT_ADD(nic_tx_threshold_hit);
9955
Matt Carlson4452d092011-05-19 12:12:51 +00009956 ESTAT_ADD(mbuf_lwm_thresh_hit);
9957
Linus Torvalds1da177e2005-04-16 15:20:36 -07009958 return estats;
9959}
9960
Eric Dumazet511d2222010-07-07 20:44:24 +00009961static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
9962 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009963{
9964 struct tg3 *tp = netdev_priv(dev);
Eric Dumazet511d2222010-07-07 20:44:24 +00009965 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009966 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9967
9968 if (!hw_stats)
9969 return old_stats;
9970
9971 stats->rx_packets = old_stats->rx_packets +
9972 get_stat64(&hw_stats->rx_ucast_packets) +
9973 get_stat64(&hw_stats->rx_mcast_packets) +
9974 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009975
Linus Torvalds1da177e2005-04-16 15:20:36 -07009976 stats->tx_packets = old_stats->tx_packets +
9977 get_stat64(&hw_stats->tx_ucast_packets) +
9978 get_stat64(&hw_stats->tx_mcast_packets) +
9979 get_stat64(&hw_stats->tx_bcast_packets);
9980
9981 stats->rx_bytes = old_stats->rx_bytes +
9982 get_stat64(&hw_stats->rx_octets);
9983 stats->tx_bytes = old_stats->tx_bytes +
9984 get_stat64(&hw_stats->tx_octets);
9985
9986 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009987 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009988 stats->tx_errors = old_stats->tx_errors +
9989 get_stat64(&hw_stats->tx_errors) +
9990 get_stat64(&hw_stats->tx_mac_errors) +
9991 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9992 get_stat64(&hw_stats->tx_discards);
9993
9994 stats->multicast = old_stats->multicast +
9995 get_stat64(&hw_stats->rx_mcast_packets);
9996 stats->collisions = old_stats->collisions +
9997 get_stat64(&hw_stats->tx_collisions);
9998
9999 stats->rx_length_errors = old_stats->rx_length_errors +
10000 get_stat64(&hw_stats->rx_frame_too_long_errors) +
10001 get_stat64(&hw_stats->rx_undersize_packets);
10002
10003 stats->rx_over_errors = old_stats->rx_over_errors +
10004 get_stat64(&hw_stats->rxbds_empty);
10005 stats->rx_frame_errors = old_stats->rx_frame_errors +
10006 get_stat64(&hw_stats->rx_align_errors);
10007 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
10008 get_stat64(&hw_stats->tx_discards);
10009 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
10010 get_stat64(&hw_stats->tx_carrier_sense_errors);
10011
10012 stats->rx_crc_errors = old_stats->rx_crc_errors +
10013 calc_crc_errors(tp);
10014
John W. Linville4f63b872005-09-12 14:43:18 -070010015 stats->rx_missed_errors = old_stats->rx_missed_errors +
10016 get_stat64(&hw_stats->rx_discards);
10017
Eric Dumazetb0057c52010-10-10 19:55:52 +000010018 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000010019 stats->tx_dropped = tp->tx_dropped;
Eric Dumazetb0057c52010-10-10 19:55:52 +000010020
Linus Torvalds1da177e2005-04-16 15:20:36 -070010021 return stats;
10022}
10023
10024static inline u32 calc_crc(unsigned char *buf, int len)
10025{
10026 u32 reg;
10027 u32 tmp;
10028 int j, k;
10029
10030 reg = 0xffffffff;
10031
10032 for (j = 0; j < len; j++) {
10033 reg ^= buf[j];
10034
10035 for (k = 0; k < 8; k++) {
10036 tmp = reg & 0x01;
10037
10038 reg >>= 1;
10039
Matt Carlson859a5882010-04-05 10:19:28 +000010040 if (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010041 reg ^= 0xedb88320;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010042 }
10043 }
10044
10045 return ~reg;
10046}
10047
10048static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
10049{
10050 /* accept or reject all multicast frames */
10051 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
10052 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
10053 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
10054 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
10055}
10056
10057static void __tg3_set_rx_mode(struct net_device *dev)
10058{
10059 struct tg3 *tp = netdev_priv(dev);
10060 u32 rx_mode;
10061
10062 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
10063 RX_MODE_KEEP_VLAN_TAG);
10064
Matt Carlsonbf933c82011-01-25 15:58:49 +000010065#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010066 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
10067 * flag clear.
10068 */
Joe Perches63c3a662011-04-26 08:12:10 +000010069 if (!tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010070 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
10071#endif
10072
10073 if (dev->flags & IFF_PROMISC) {
10074 /* Promiscuous mode. */
10075 rx_mode |= RX_MODE_PROMISC;
10076 } else if (dev->flags & IFF_ALLMULTI) {
10077 /* Accept all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010078 tg3_set_multi(tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +000010079 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010080 /* Reject all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010081 tg3_set_multi(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010082 } else {
10083 /* Accept one or more multicast(s). */
Jiri Pirko22bedad2010-04-01 21:22:57 +000010084 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010085 u32 mc_filter[4] = { 0, };
10086 u32 regidx;
10087 u32 bit;
10088 u32 crc;
10089
Jiri Pirko22bedad2010-04-01 21:22:57 +000010090 netdev_for_each_mc_addr(ha, dev) {
10091 crc = calc_crc(ha->addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010092 bit = ~crc & 0x7f;
10093 regidx = (bit & 0x60) >> 5;
10094 bit &= 0x1f;
10095 mc_filter[regidx] |= (1 << bit);
10096 }
10097
10098 tw32(MAC_HASH_REG_0, mc_filter[0]);
10099 tw32(MAC_HASH_REG_1, mc_filter[1]);
10100 tw32(MAC_HASH_REG_2, mc_filter[2]);
10101 tw32(MAC_HASH_REG_3, mc_filter[3]);
10102 }
10103
10104 if (rx_mode != tp->rx_mode) {
10105 tp->rx_mode = rx_mode;
10106 tw32_f(MAC_RX_MODE, rx_mode);
10107 udelay(10);
10108 }
10109}
10110
10111static void tg3_set_rx_mode(struct net_device *dev)
10112{
10113 struct tg3 *tp = netdev_priv(dev);
10114
Michael Chane75f7c92006-03-20 21:33:26 -080010115 if (!netif_running(dev))
10116 return;
10117
David S. Millerf47c11e2005-06-24 20:18:35 -070010118 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010119 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -070010120 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010121}
10122
Linus Torvalds1da177e2005-04-16 15:20:36 -070010123static int tg3_get_regs_len(struct net_device *dev)
10124{
Matt Carlson97bd8e42011-04-13 11:05:04 +000010125 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010126}
10127
10128static void tg3_get_regs(struct net_device *dev,
10129 struct ethtool_regs *regs, void *_p)
10130{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010131 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010132
10133 regs->version = 0;
10134
Matt Carlson97bd8e42011-04-13 11:05:04 +000010135 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010136
Matt Carlson80096062010-08-02 11:26:06 +000010137 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010138 return;
10139
David S. Millerf47c11e2005-06-24 20:18:35 -070010140 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010141
Matt Carlson97bd8e42011-04-13 11:05:04 +000010142 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010143
David S. Millerf47c11e2005-06-24 20:18:35 -070010144 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010145}
10146
10147static int tg3_get_eeprom_len(struct net_device *dev)
10148{
10149 struct tg3 *tp = netdev_priv(dev);
10150
10151 return tp->nvram_size;
10152}
10153
Linus Torvalds1da177e2005-04-16 15:20:36 -070010154static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10155{
10156 struct tg3 *tp = netdev_priv(dev);
10157 int ret;
10158 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080010159 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010160 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010161
Joe Perches63c3a662011-04-26 08:12:10 +000010162 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010163 return -EINVAL;
10164
Matt Carlson80096062010-08-02 11:26:06 +000010165 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010166 return -EAGAIN;
10167
Linus Torvalds1da177e2005-04-16 15:20:36 -070010168 offset = eeprom->offset;
10169 len = eeprom->len;
10170 eeprom->len = 0;
10171
10172 eeprom->magic = TG3_EEPROM_MAGIC;
10173
10174 if (offset & 3) {
10175 /* adjustments to start on required 4 byte boundary */
10176 b_offset = offset & 3;
10177 b_count = 4 - b_offset;
10178 if (b_count > len) {
10179 /* i.e. offset=1 len=2 */
10180 b_count = len;
10181 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000010182 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010183 if (ret)
10184 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000010185 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010186 len -= b_count;
10187 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010188 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010189 }
10190
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010191 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010192 pd = &data[eeprom->len];
10193 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010194 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010195 if (ret) {
10196 eeprom->len += i;
10197 return ret;
10198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010199 memcpy(pd + i, &val, 4);
10200 }
10201 eeprom->len += i;
10202
10203 if (len & 3) {
10204 /* read last bytes not ending on 4 byte boundary */
10205 pd = &data[eeprom->len];
10206 b_count = len & 3;
10207 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010208 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010209 if (ret)
10210 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010211 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010212 eeprom->len += b_count;
10213 }
10214 return 0;
10215}
10216
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010217static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010218
10219static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10220{
10221 struct tg3 *tp = netdev_priv(dev);
10222 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010223 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010224 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010225 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010226
Matt Carlson80096062010-08-02 11:26:06 +000010227 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010228 return -EAGAIN;
10229
Joe Perches63c3a662011-04-26 08:12:10 +000010230 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000010231 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010232 return -EINVAL;
10233
10234 offset = eeprom->offset;
10235 len = eeprom->len;
10236
10237 if ((b_offset = (offset & 3))) {
10238 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010239 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010240 if (ret)
10241 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010242 len += b_offset;
10243 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -070010244 if (len < 4)
10245 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010246 }
10247
10248 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -070010249 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010250 /* adjustments to end on required 4 byte boundary */
10251 odd_len = 1;
10252 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010253 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010254 if (ret)
10255 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010256 }
10257
10258 buf = data;
10259 if (b_offset || odd_len) {
10260 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010261 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010262 return -ENOMEM;
10263 if (b_offset)
10264 memcpy(buf, &start, 4);
10265 if (odd_len)
10266 memcpy(buf+len-4, &end, 4);
10267 memcpy(buf + b_offset, data, eeprom->len);
10268 }
10269
10270 ret = tg3_nvram_write_block(tp, offset, len, buf);
10271
10272 if (buf != data)
10273 kfree(buf);
10274
10275 return ret;
10276}
10277
10278static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10279{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010280 struct tg3 *tp = netdev_priv(dev);
10281
Joe Perches63c3a662011-04-26 08:12:10 +000010282 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010283 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010284 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010285 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010286 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10287 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010288 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010289
Linus Torvalds1da177e2005-04-16 15:20:36 -070010290 cmd->supported = (SUPPORTED_Autoneg);
10291
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010292 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010293 cmd->supported |= (SUPPORTED_1000baseT_Half |
10294 SUPPORTED_1000baseT_Full);
10295
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010296 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010297 cmd->supported |= (SUPPORTED_100baseT_Half |
10298 SUPPORTED_100baseT_Full |
10299 SUPPORTED_10baseT_Half |
10300 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080010301 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070010302 cmd->port = PORT_TP;
10303 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010304 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070010305 cmd->port = PORT_FIBRE;
10306 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010307
Linus Torvalds1da177e2005-04-16 15:20:36 -070010308 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000010309 if (tg3_flag(tp, PAUSE_AUTONEG)) {
10310 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
10311 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10312 cmd->advertising |= ADVERTISED_Pause;
10313 } else {
10314 cmd->advertising |= ADVERTISED_Pause |
10315 ADVERTISED_Asym_Pause;
10316 }
10317 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10318 cmd->advertising |= ADVERTISED_Asym_Pause;
10319 }
10320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010321 if (netif_running(dev)) {
David Decotigny70739492011-04-27 18:32:40 +000010322 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010323 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson64c22182010-10-14 10:37:44 +000010324 } else {
David Decotigny70739492011-04-27 18:32:40 +000010325 ethtool_cmd_speed_set(cmd, SPEED_INVALID);
Matt Carlson64c22182010-10-14 10:37:44 +000010326 cmd->duplex = DUPLEX_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010327 }
Matt Carlson882e9792009-09-01 13:21:36 +000010328 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010329 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010330 cmd->autoneg = tp->link_config.autoneg;
10331 cmd->maxtxpkt = 0;
10332 cmd->maxrxpkt = 0;
10333 return 0;
10334}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010335
Linus Torvalds1da177e2005-04-16 15:20:36 -070010336static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10337{
10338 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000010339 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010340
Joe Perches63c3a662011-04-26 08:12:10 +000010341 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010342 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010343 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010344 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010345 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10346 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010347 }
10348
Matt Carlson7e5856b2009-02-25 14:23:01 +000010349 if (cmd->autoneg != AUTONEG_ENABLE &&
10350 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070010351 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010352
10353 if (cmd->autoneg == AUTONEG_DISABLE &&
10354 cmd->duplex != DUPLEX_FULL &&
10355 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070010356 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010357
Matt Carlson7e5856b2009-02-25 14:23:01 +000010358 if (cmd->autoneg == AUTONEG_ENABLE) {
10359 u32 mask = ADVERTISED_Autoneg |
10360 ADVERTISED_Pause |
10361 ADVERTISED_Asym_Pause;
10362
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010363 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010364 mask |= ADVERTISED_1000baseT_Half |
10365 ADVERTISED_1000baseT_Full;
10366
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010367 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010368 mask |= ADVERTISED_100baseT_Half |
10369 ADVERTISED_100baseT_Full |
10370 ADVERTISED_10baseT_Half |
10371 ADVERTISED_10baseT_Full |
10372 ADVERTISED_TP;
10373 else
10374 mask |= ADVERTISED_FIBRE;
10375
10376 if (cmd->advertising & ~mask)
10377 return -EINVAL;
10378
10379 mask &= (ADVERTISED_1000baseT_Half |
10380 ADVERTISED_1000baseT_Full |
10381 ADVERTISED_100baseT_Half |
10382 ADVERTISED_100baseT_Full |
10383 ADVERTISED_10baseT_Half |
10384 ADVERTISED_10baseT_Full);
10385
10386 cmd->advertising &= mask;
10387 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010388 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000010389 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010390 return -EINVAL;
10391
10392 if (cmd->duplex != DUPLEX_FULL)
10393 return -EINVAL;
10394 } else {
David Decotigny25db0332011-04-27 18:32:39 +000010395 if (speed != SPEED_100 &&
10396 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010397 return -EINVAL;
10398 }
10399 }
10400
David S. Millerf47c11e2005-06-24 20:18:35 -070010401 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010402
10403 tp->link_config.autoneg = cmd->autoneg;
10404 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070010405 tp->link_config.advertising = (cmd->advertising |
10406 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010407 tp->link_config.speed = SPEED_INVALID;
10408 tp->link_config.duplex = DUPLEX_INVALID;
10409 } else {
10410 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000010411 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010412 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010413 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010414
Michael Chan24fcad62006-12-17 17:06:46 -080010415 tp->link_config.orig_speed = tp->link_config.speed;
10416 tp->link_config.orig_duplex = tp->link_config.duplex;
10417 tp->link_config.orig_autoneg = tp->link_config.autoneg;
10418
Linus Torvalds1da177e2005-04-16 15:20:36 -070010419 if (netif_running(dev))
10420 tg3_setup_phy(tp, 1);
10421
David S. Millerf47c11e2005-06-24 20:18:35 -070010422 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010423
Linus Torvalds1da177e2005-04-16 15:20:36 -070010424 return 0;
10425}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010426
Linus Torvalds1da177e2005-04-16 15:20:36 -070010427static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
10428{
10429 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010430
Linus Torvalds1da177e2005-04-16 15:20:36 -070010431 strcpy(info->driver, DRV_MODULE_NAME);
10432 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -080010433 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010434 strcpy(info->bus_info, pci_name(tp->pdev));
10435}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010436
Linus Torvalds1da177e2005-04-16 15:20:36 -070010437static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10438{
10439 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010440
Joe Perches63c3a662011-04-26 08:12:10 +000010441 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070010442 wol->supported = WAKE_MAGIC;
10443 else
10444 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010445 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010446 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010447 wol->wolopts = WAKE_MAGIC;
10448 memset(&wol->sopass, 0, sizeof(wol->sopass));
10449}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010450
Linus Torvalds1da177e2005-04-16 15:20:36 -070010451static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10452{
10453 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070010454 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010455
Linus Torvalds1da177e2005-04-16 15:20:36 -070010456 if (wol->wolopts & ~WAKE_MAGIC)
10457 return -EINVAL;
10458 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010459 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010460 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010461
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010462 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
10463
David S. Millerf47c11e2005-06-24 20:18:35 -070010464 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010465 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000010466 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010467 else
Joe Perches63c3a662011-04-26 08:12:10 +000010468 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070010469 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010470
Linus Torvalds1da177e2005-04-16 15:20:36 -070010471 return 0;
10472}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010473
Linus Torvalds1da177e2005-04-16 15:20:36 -070010474static u32 tg3_get_msglevel(struct net_device *dev)
10475{
10476 struct tg3 *tp = netdev_priv(dev);
10477 return tp->msg_enable;
10478}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010479
Linus Torvalds1da177e2005-04-16 15:20:36 -070010480static void tg3_set_msglevel(struct net_device *dev, u32 value)
10481{
10482 struct tg3 *tp = netdev_priv(dev);
10483 tp->msg_enable = value;
10484}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010485
Linus Torvalds1da177e2005-04-16 15:20:36 -070010486static int tg3_nway_reset(struct net_device *dev)
10487{
10488 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010489 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010490
Linus Torvalds1da177e2005-04-16 15:20:36 -070010491 if (!netif_running(dev))
10492 return -EAGAIN;
10493
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010494 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070010495 return -EINVAL;
10496
Joe Perches63c3a662011-04-26 08:12:10 +000010497 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010498 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010499 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010500 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010501 } else {
10502 u32 bmcr;
10503
10504 spin_lock_bh(&tp->lock);
10505 r = -EINVAL;
10506 tg3_readphy(tp, MII_BMCR, &bmcr);
10507 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
10508 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010509 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010510 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
10511 BMCR_ANENABLE);
10512 r = 0;
10513 }
10514 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010515 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010516
Linus Torvalds1da177e2005-04-16 15:20:36 -070010517 return r;
10518}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010519
Linus Torvalds1da177e2005-04-16 15:20:36 -070010520static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10521{
10522 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010523
Matt Carlson2c49a442010-09-30 10:34:35 +000010524 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000010525 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000010526 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080010527 else
10528 ering->rx_jumbo_max_pending = 0;
10529
10530 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010531
10532 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000010533 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080010534 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10535 else
10536 ering->rx_jumbo_pending = 0;
10537
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010538 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010539}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010540
Linus Torvalds1da177e2005-04-16 15:20:36 -070010541static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10542{
10543 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010544 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010545
Matt Carlson2c49a442010-09-30 10:34:35 +000010546 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
10547 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010548 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10549 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000010550 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010551 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010552 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010553
Michael Chanbbe832c2005-06-24 20:20:04 -070010554 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010555 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010556 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010557 irq_sync = 1;
10558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010559
Michael Chanbbe832c2005-06-24 20:20:04 -070010560 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010561
Linus Torvalds1da177e2005-04-16 15:20:36 -070010562 tp->rx_pending = ering->rx_pending;
10563
Joe Perches63c3a662011-04-26 08:12:10 +000010564 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010565 tp->rx_pending > 63)
10566 tp->rx_pending = 63;
10567 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010568
Matt Carlson6fd45cb2010-09-15 08:59:57 +000010569 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000010570 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010571
10572 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010573 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010574 err = tg3_restart_hw(tp, 1);
10575 if (!err)
10576 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010577 }
10578
David S. Millerf47c11e2005-06-24 20:18:35 -070010579 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010580
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010581 if (irq_sync && !err)
10582 tg3_phy_start(tp);
10583
Michael Chanb9ec6c12006-07-25 16:37:27 -070010584 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010585}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010586
Linus Torvalds1da177e2005-04-16 15:20:36 -070010587static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10588{
10589 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010590
Joe Perches63c3a662011-04-26 08:12:10 +000010591 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080010592
Steve Glendinninge18ce342008-12-16 02:00:00 -080010593 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010594 epause->rx_pause = 1;
10595 else
10596 epause->rx_pause = 0;
10597
Steve Glendinninge18ce342008-12-16 02:00:00 -080010598 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010599 epause->tx_pause = 1;
10600 else
10601 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010602}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010603
Linus Torvalds1da177e2005-04-16 15:20:36 -070010604static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10605{
10606 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010607 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010608
Joe Perches63c3a662011-04-26 08:12:10 +000010609 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000010610 u32 newadv;
10611 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010612
Matt Carlson27121682010-02-17 15:16:57 +000010613 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010614
Matt Carlson27121682010-02-17 15:16:57 +000010615 if (!(phydev->supported & SUPPORTED_Pause) ||
10616 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000010617 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000010618 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010619
Matt Carlson27121682010-02-17 15:16:57 +000010620 tp->link_config.flowctrl = 0;
10621 if (epause->rx_pause) {
10622 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010623
Matt Carlson27121682010-02-17 15:16:57 +000010624 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010625 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010626 newadv = ADVERTISED_Pause;
10627 } else
10628 newadv = ADVERTISED_Pause |
10629 ADVERTISED_Asym_Pause;
10630 } else if (epause->tx_pause) {
10631 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10632 newadv = ADVERTISED_Asym_Pause;
10633 } else
10634 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010635
Matt Carlson27121682010-02-17 15:16:57 +000010636 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010637 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010638 else
Joe Perches63c3a662011-04-26 08:12:10 +000010639 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010640
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010641 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000010642 u32 oldadv = phydev->advertising &
10643 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10644 if (oldadv != newadv) {
10645 phydev->advertising &=
10646 ~(ADVERTISED_Pause |
10647 ADVERTISED_Asym_Pause);
10648 phydev->advertising |= newadv;
10649 if (phydev->autoneg) {
10650 /*
10651 * Always renegotiate the link to
10652 * inform our link partner of our
10653 * flow control settings, even if the
10654 * flow control is forced. Let
10655 * tg3_adjust_link() do the final
10656 * flow control setup.
10657 */
10658 return phy_start_aneg(phydev);
10659 }
10660 }
10661
10662 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010663 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010664 } else {
10665 tp->link_config.orig_advertising &=
10666 ~(ADVERTISED_Pause |
10667 ADVERTISED_Asym_Pause);
10668 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010669 }
10670 } else {
10671 int irq_sync = 0;
10672
10673 if (netif_running(dev)) {
10674 tg3_netif_stop(tp);
10675 irq_sync = 1;
10676 }
10677
10678 tg3_full_lock(tp, irq_sync);
10679
10680 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010681 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010682 else
Joe Perches63c3a662011-04-26 08:12:10 +000010683 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010684 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010685 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010686 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010687 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010688 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010689 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010690 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010691 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010692
10693 if (netif_running(dev)) {
10694 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10695 err = tg3_restart_hw(tp, 1);
10696 if (!err)
10697 tg3_netif_start(tp);
10698 }
10699
10700 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010702
Michael Chanb9ec6c12006-07-25 16:37:27 -070010703 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010704}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010705
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010706static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010707{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010708 switch (sset) {
10709 case ETH_SS_TEST:
10710 return TG3_NUM_TEST;
10711 case ETH_SS_STATS:
10712 return TG3_NUM_STATS;
10713 default:
10714 return -EOPNOTSUPP;
10715 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010716}
10717
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010718static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010719{
10720 switch (stringset) {
10721 case ETH_SS_STATS:
10722 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10723 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010724 case ETH_SS_TEST:
10725 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10726 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010727 default:
10728 WARN_ON(1); /* we need a WARN() */
10729 break;
10730 }
10731}
10732
stephen hemminger81b87092011-04-04 08:43:50 +000010733static int tg3_set_phys_id(struct net_device *dev,
10734 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070010735{
10736 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070010737
10738 if (!netif_running(tp->dev))
10739 return -EAGAIN;
10740
stephen hemminger81b87092011-04-04 08:43:50 +000010741 switch (state) {
10742 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000010743 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070010744
stephen hemminger81b87092011-04-04 08:43:50 +000010745 case ETHTOOL_ID_ON:
10746 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10747 LED_CTRL_1000MBPS_ON |
10748 LED_CTRL_100MBPS_ON |
10749 LED_CTRL_10MBPS_ON |
10750 LED_CTRL_TRAFFIC_OVERRIDE |
10751 LED_CTRL_TRAFFIC_BLINK |
10752 LED_CTRL_TRAFFIC_LED);
10753 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010754
stephen hemminger81b87092011-04-04 08:43:50 +000010755 case ETHTOOL_ID_OFF:
10756 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10757 LED_CTRL_TRAFFIC_OVERRIDE);
10758 break;
Michael Chan4009a932005-09-05 17:52:54 -070010759
stephen hemminger81b87092011-04-04 08:43:50 +000010760 case ETHTOOL_ID_INACTIVE:
10761 tw32(MAC_LED_CTRL, tp->led_ctrl);
10762 break;
Michael Chan4009a932005-09-05 17:52:54 -070010763 }
stephen hemminger81b87092011-04-04 08:43:50 +000010764
Michael Chan4009a932005-09-05 17:52:54 -070010765 return 0;
10766}
10767
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010768static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010769 struct ethtool_stats *estats, u64 *tmp_stats)
10770{
10771 struct tg3 *tp = netdev_priv(dev);
10772 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10773}
10774
Matt Carlson535a4902011-07-20 10:20:56 +000010775static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000010776{
10777 int i;
10778 __be32 *buf;
10779 u32 offset = 0, len = 0;
10780 u32 magic, val;
10781
Joe Perches63c3a662011-04-26 08:12:10 +000010782 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000010783 return NULL;
10784
10785 if (magic == TG3_EEPROM_MAGIC) {
10786 for (offset = TG3_NVM_DIR_START;
10787 offset < TG3_NVM_DIR_END;
10788 offset += TG3_NVM_DIRENT_SIZE) {
10789 if (tg3_nvram_read(tp, offset, &val))
10790 return NULL;
10791
10792 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
10793 TG3_NVM_DIRTYPE_EXTVPD)
10794 break;
10795 }
10796
10797 if (offset != TG3_NVM_DIR_END) {
10798 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
10799 if (tg3_nvram_read(tp, offset + 4, &offset))
10800 return NULL;
10801
10802 offset = tg3_nvram_logical_addr(tp, offset);
10803 }
10804 }
10805
10806 if (!offset || !len) {
10807 offset = TG3_NVM_VPD_OFF;
10808 len = TG3_NVM_VPD_LEN;
10809 }
10810
10811 buf = kmalloc(len, GFP_KERNEL);
10812 if (buf == NULL)
10813 return NULL;
10814
10815 if (magic == TG3_EEPROM_MAGIC) {
10816 for (i = 0; i < len; i += 4) {
10817 /* The data is in little-endian format in NVRAM.
10818 * Use the big-endian read routines to preserve
10819 * the byte order as it exists in NVRAM.
10820 */
10821 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
10822 goto error;
10823 }
10824 } else {
10825 u8 *ptr;
10826 ssize_t cnt;
10827 unsigned int pos = 0;
10828
10829 ptr = (u8 *)&buf[0];
10830 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
10831 cnt = pci_read_vpd(tp->pdev, pos,
10832 len - pos, ptr);
10833 if (cnt == -ETIMEDOUT || cnt == -EINTR)
10834 cnt = 0;
10835 else if (cnt < 0)
10836 goto error;
10837 }
10838 if (pos != len)
10839 goto error;
10840 }
10841
Matt Carlson535a4902011-07-20 10:20:56 +000010842 *vpdlen = len;
10843
Matt Carlsonc3e94502011-04-13 11:05:08 +000010844 return buf;
10845
10846error:
10847 kfree(buf);
10848 return NULL;
10849}
10850
Michael Chan566f86a2005-05-29 14:56:58 -070010851#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010852#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10853#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10854#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000010855#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
10856#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000010857#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070010858#define NVRAM_SELFBOOT_HW_SIZE 0x20
10859#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010860
10861static int tg3_test_nvram(struct tg3 *tp)
10862{
Matt Carlson535a4902011-07-20 10:20:56 +000010863 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010864 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010865 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010866
Joe Perches63c3a662011-04-26 08:12:10 +000010867 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010868 return 0;
10869
Matt Carlsone4f34112009-02-25 14:25:00 +000010870 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010871 return -EIO;
10872
Michael Chan1b277772006-03-20 22:27:48 -080010873 if (magic == TG3_EEPROM_MAGIC)
10874 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010875 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010876 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10877 TG3_EEPROM_SB_FORMAT_1) {
10878 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10879 case TG3_EEPROM_SB_REVISION_0:
10880 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10881 break;
10882 case TG3_EEPROM_SB_REVISION_2:
10883 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10884 break;
10885 case TG3_EEPROM_SB_REVISION_3:
10886 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10887 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000010888 case TG3_EEPROM_SB_REVISION_4:
10889 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
10890 break;
10891 case TG3_EEPROM_SB_REVISION_5:
10892 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
10893 break;
10894 case TG3_EEPROM_SB_REVISION_6:
10895 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
10896 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080010897 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000010898 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080010899 }
10900 } else
Michael Chan1b277772006-03-20 22:27:48 -080010901 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010902 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10903 size = NVRAM_SELFBOOT_HW_SIZE;
10904 else
Michael Chan1b277772006-03-20 22:27:48 -080010905 return -EIO;
10906
10907 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010908 if (buf == NULL)
10909 return -ENOMEM;
10910
Michael Chan1b277772006-03-20 22:27:48 -080010911 err = -EIO;
10912 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010913 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10914 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010915 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010916 }
Michael Chan1b277772006-03-20 22:27:48 -080010917 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010918 goto out;
10919
Michael Chan1b277772006-03-20 22:27:48 -080010920 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010921 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010922 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010923 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010924 u8 *buf8 = (u8 *) buf, csum8 = 0;
10925
Al Virob9fc7dc2007-12-17 22:59:57 -080010926 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010927 TG3_EEPROM_SB_REVISION_2) {
10928 /* For rev 2, the csum doesn't include the MBA. */
10929 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10930 csum8 += buf8[i];
10931 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10932 csum8 += buf8[i];
10933 } else {
10934 for (i = 0; i < size; i++)
10935 csum8 += buf8[i];
10936 }
Michael Chan1b277772006-03-20 22:27:48 -080010937
Adrian Bunkad96b482006-04-05 22:21:04 -070010938 if (csum8 == 0) {
10939 err = 0;
10940 goto out;
10941 }
10942
10943 err = -EIO;
10944 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010945 }
Michael Chan566f86a2005-05-29 14:56:58 -070010946
Al Virob9fc7dc2007-12-17 22:59:57 -080010947 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010948 TG3_EEPROM_MAGIC_HW) {
10949 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010950 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010951 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010952
10953 /* Separate the parity bits and the data bytes. */
10954 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10955 if ((i == 0) || (i == 8)) {
10956 int l;
10957 u8 msk;
10958
10959 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10960 parity[k++] = buf8[i] & msk;
10961 i++;
Matt Carlson859a5882010-04-05 10:19:28 +000010962 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070010963 int l;
10964 u8 msk;
10965
10966 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10967 parity[k++] = buf8[i] & msk;
10968 i++;
10969
10970 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10971 parity[k++] = buf8[i] & msk;
10972 i++;
10973 }
10974 data[j++] = buf8[i];
10975 }
10976
10977 err = -EIO;
10978 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10979 u8 hw8 = hweight8(data[i]);
10980
10981 if ((hw8 & 0x1) && parity[i])
10982 goto out;
10983 else if (!(hw8 & 0x1) && !parity[i])
10984 goto out;
10985 }
10986 err = 0;
10987 goto out;
10988 }
10989
Matt Carlson01c3a392011-03-09 16:58:20 +000010990 err = -EIO;
10991
Michael Chan566f86a2005-05-29 14:56:58 -070010992 /* Bootstrap checksum at offset 0x10 */
10993 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000010994 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010995 goto out;
10996
10997 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10998 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000010999 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000011000 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070011001
Matt Carlsonc3e94502011-04-13 11:05:08 +000011002 kfree(buf);
11003
Matt Carlson535a4902011-07-20 10:20:56 +000011004 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000011005 if (!buf)
11006 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000011007
Matt Carlson535a4902011-07-20 10:20:56 +000011008 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000011009 if (i > 0) {
11010 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
11011 if (j < 0)
11012 goto out;
11013
Matt Carlson535a4902011-07-20 10:20:56 +000011014 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000011015 goto out;
11016
11017 i += PCI_VPD_LRDT_TAG_SIZE;
11018 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
11019 PCI_VPD_RO_KEYWORD_CHKSUM);
11020 if (j > 0) {
11021 u8 csum8 = 0;
11022
11023 j += PCI_VPD_INFO_FLD_HDR_SIZE;
11024
11025 for (i = 0; i <= j; i++)
11026 csum8 += ((u8 *)buf)[i];
11027
11028 if (csum8)
11029 goto out;
11030 }
11031 }
11032
Michael Chan566f86a2005-05-29 14:56:58 -070011033 err = 0;
11034
11035out:
11036 kfree(buf);
11037 return err;
11038}
11039
Michael Chanca430072005-05-29 14:57:23 -070011040#define TG3_SERDES_TIMEOUT_SEC 2
11041#define TG3_COPPER_TIMEOUT_SEC 6
11042
11043static int tg3_test_link(struct tg3 *tp)
11044{
11045 int i, max;
11046
11047 if (!netif_running(tp->dev))
11048 return -ENODEV;
11049
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011050 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070011051 max = TG3_SERDES_TIMEOUT_SEC;
11052 else
11053 max = TG3_COPPER_TIMEOUT_SEC;
11054
11055 for (i = 0; i < max; i++) {
11056 if (netif_carrier_ok(tp->dev))
11057 return 0;
11058
11059 if (msleep_interruptible(1000))
11060 break;
11061 }
11062
11063 return -EIO;
11064}
11065
Michael Chana71116d2005-05-29 14:58:11 -070011066/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080011067static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070011068{
Michael Chanb16250e2006-09-27 16:10:14 -070011069 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070011070 u32 offset, read_mask, write_mask, val, save_val, read_val;
11071 static struct {
11072 u16 offset;
11073 u16 flags;
11074#define TG3_FL_5705 0x1
11075#define TG3_FL_NOT_5705 0x2
11076#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070011077#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070011078 u32 read_mask;
11079 u32 write_mask;
11080 } reg_tbl[] = {
11081 /* MAC Control Registers */
11082 { MAC_MODE, TG3_FL_NOT_5705,
11083 0x00000000, 0x00ef6f8c },
11084 { MAC_MODE, TG3_FL_5705,
11085 0x00000000, 0x01ef6b8c },
11086 { MAC_STATUS, TG3_FL_NOT_5705,
11087 0x03800107, 0x00000000 },
11088 { MAC_STATUS, TG3_FL_5705,
11089 0x03800100, 0x00000000 },
11090 { MAC_ADDR_0_HIGH, 0x0000,
11091 0x00000000, 0x0000ffff },
11092 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011093 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070011094 { MAC_RX_MTU_SIZE, 0x0000,
11095 0x00000000, 0x0000ffff },
11096 { MAC_TX_MODE, 0x0000,
11097 0x00000000, 0x00000070 },
11098 { MAC_TX_LENGTHS, 0x0000,
11099 0x00000000, 0x00003fff },
11100 { MAC_RX_MODE, TG3_FL_NOT_5705,
11101 0x00000000, 0x000007fc },
11102 { MAC_RX_MODE, TG3_FL_5705,
11103 0x00000000, 0x000007dc },
11104 { MAC_HASH_REG_0, 0x0000,
11105 0x00000000, 0xffffffff },
11106 { MAC_HASH_REG_1, 0x0000,
11107 0x00000000, 0xffffffff },
11108 { MAC_HASH_REG_2, 0x0000,
11109 0x00000000, 0xffffffff },
11110 { MAC_HASH_REG_3, 0x0000,
11111 0x00000000, 0xffffffff },
11112
11113 /* Receive Data and Receive BD Initiator Control Registers. */
11114 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
11115 0x00000000, 0xffffffff },
11116 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
11117 0x00000000, 0xffffffff },
11118 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
11119 0x00000000, 0x00000003 },
11120 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
11121 0x00000000, 0xffffffff },
11122 { RCVDBDI_STD_BD+0, 0x0000,
11123 0x00000000, 0xffffffff },
11124 { RCVDBDI_STD_BD+4, 0x0000,
11125 0x00000000, 0xffffffff },
11126 { RCVDBDI_STD_BD+8, 0x0000,
11127 0x00000000, 0xffff0002 },
11128 { RCVDBDI_STD_BD+0xc, 0x0000,
11129 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011130
Michael Chana71116d2005-05-29 14:58:11 -070011131 /* Receive BD Initiator Control Registers. */
11132 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
11133 0x00000000, 0xffffffff },
11134 { RCVBDI_STD_THRESH, TG3_FL_5705,
11135 0x00000000, 0x000003ff },
11136 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
11137 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011138
Michael Chana71116d2005-05-29 14:58:11 -070011139 /* Host Coalescing Control Registers. */
11140 { HOSTCC_MODE, TG3_FL_NOT_5705,
11141 0x00000000, 0x00000004 },
11142 { HOSTCC_MODE, TG3_FL_5705,
11143 0x00000000, 0x000000f6 },
11144 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
11145 0x00000000, 0xffffffff },
11146 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
11147 0x00000000, 0x000003ff },
11148 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
11149 0x00000000, 0xffffffff },
11150 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
11151 0x00000000, 0x000003ff },
11152 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
11153 0x00000000, 0xffffffff },
11154 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11155 0x00000000, 0x000000ff },
11156 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
11157 0x00000000, 0xffffffff },
11158 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11159 0x00000000, 0x000000ff },
11160 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
11161 0x00000000, 0xffffffff },
11162 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
11163 0x00000000, 0xffffffff },
11164 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11165 0x00000000, 0xffffffff },
11166 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11167 0x00000000, 0x000000ff },
11168 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11169 0x00000000, 0xffffffff },
11170 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11171 0x00000000, 0x000000ff },
11172 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
11173 0x00000000, 0xffffffff },
11174 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
11175 0x00000000, 0xffffffff },
11176 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
11177 0x00000000, 0xffffffff },
11178 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
11179 0x00000000, 0xffffffff },
11180 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
11181 0x00000000, 0xffffffff },
11182 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
11183 0xffffffff, 0x00000000 },
11184 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
11185 0xffffffff, 0x00000000 },
11186
11187 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070011188 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011189 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070011190 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011191 0x00000000, 0x007fffff },
11192 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
11193 0x00000000, 0x0000003f },
11194 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
11195 0x00000000, 0x000001ff },
11196 { BUFMGR_MB_HIGH_WATER, 0x0000,
11197 0x00000000, 0x000001ff },
11198 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
11199 0xffffffff, 0x00000000 },
11200 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
11201 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011202
Michael Chana71116d2005-05-29 14:58:11 -070011203 /* Mailbox Registers */
11204 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
11205 0x00000000, 0x000001ff },
11206 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
11207 0x00000000, 0x000001ff },
11208 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
11209 0x00000000, 0x000007ff },
11210 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
11211 0x00000000, 0x000001ff },
11212
11213 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
11214 };
11215
Michael Chanb16250e2006-09-27 16:10:14 -070011216 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011217 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070011218 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000011219 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070011220 is_5750 = 1;
11221 }
Michael Chana71116d2005-05-29 14:58:11 -070011222
11223 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
11224 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
11225 continue;
11226
11227 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
11228 continue;
11229
Joe Perches63c3a662011-04-26 08:12:10 +000011230 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070011231 (reg_tbl[i].flags & TG3_FL_NOT_5788))
11232 continue;
11233
Michael Chanb16250e2006-09-27 16:10:14 -070011234 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
11235 continue;
11236
Michael Chana71116d2005-05-29 14:58:11 -070011237 offset = (u32) reg_tbl[i].offset;
11238 read_mask = reg_tbl[i].read_mask;
11239 write_mask = reg_tbl[i].write_mask;
11240
11241 /* Save the original register content */
11242 save_val = tr32(offset);
11243
11244 /* Determine the read-only value. */
11245 read_val = save_val & read_mask;
11246
11247 /* Write zero to the register, then make sure the read-only bits
11248 * are not changed and the read/write bits are all zeros.
11249 */
11250 tw32(offset, 0);
11251
11252 val = tr32(offset);
11253
11254 /* Test the read-only and read/write bits. */
11255 if (((val & read_mask) != read_val) || (val & write_mask))
11256 goto out;
11257
11258 /* Write ones to all the bits defined by RdMask and WrMask, then
11259 * make sure the read-only bits are not changed and the
11260 * read/write bits are all ones.
11261 */
11262 tw32(offset, read_mask | write_mask);
11263
11264 val = tr32(offset);
11265
11266 /* Test the read-only bits. */
11267 if ((val & read_mask) != read_val)
11268 goto out;
11269
11270 /* Test the read/write bits. */
11271 if ((val & write_mask) != write_mask)
11272 goto out;
11273
11274 tw32(offset, save_val);
11275 }
11276
11277 return 0;
11278
11279out:
Michael Chan9f88f292006-12-07 00:22:54 -080011280 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000011281 netdev_err(tp->dev,
11282 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070011283 tw32(offset, save_val);
11284 return -EIO;
11285}
11286
Michael Chan7942e1d2005-05-29 14:58:36 -070011287static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
11288{
Arjan van de Venf71e1302006-03-03 21:33:57 -050011289 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070011290 int i;
11291 u32 j;
11292
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020011293 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070011294 for (j = 0; j < len; j += 4) {
11295 u32 val;
11296
11297 tg3_write_mem(tp, offset + j, test_pattern[i]);
11298 tg3_read_mem(tp, offset + j, &val);
11299 if (val != test_pattern[i])
11300 return -EIO;
11301 }
11302 }
11303 return 0;
11304}
11305
11306static int tg3_test_memory(struct tg3 *tp)
11307{
11308 static struct mem_entry {
11309 u32 offset;
11310 u32 len;
11311 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080011312 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070011313 { 0x00002000, 0x1c000},
11314 { 0xffffffff, 0x00000}
11315 }, mem_tbl_5705[] = {
11316 { 0x00000100, 0x0000c},
11317 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070011318 { 0x00004000, 0x00800},
11319 { 0x00006000, 0x01000},
11320 { 0x00008000, 0x02000},
11321 { 0x00010000, 0x0e000},
11322 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080011323 }, mem_tbl_5755[] = {
11324 { 0x00000200, 0x00008},
11325 { 0x00004000, 0x00800},
11326 { 0x00006000, 0x00800},
11327 { 0x00008000, 0x02000},
11328 { 0x00010000, 0x0c000},
11329 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070011330 }, mem_tbl_5906[] = {
11331 { 0x00000200, 0x00008},
11332 { 0x00004000, 0x00400},
11333 { 0x00006000, 0x00400},
11334 { 0x00008000, 0x01000},
11335 { 0x00010000, 0x01000},
11336 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011337 }, mem_tbl_5717[] = {
11338 { 0x00000200, 0x00008},
11339 { 0x00010000, 0x0a000},
11340 { 0x00020000, 0x13c00},
11341 { 0xffffffff, 0x00000}
11342 }, mem_tbl_57765[] = {
11343 { 0x00000200, 0x00008},
11344 { 0x00004000, 0x00800},
11345 { 0x00006000, 0x09800},
11346 { 0x00010000, 0x0a000},
11347 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070011348 };
11349 struct mem_entry *mem_tbl;
11350 int err = 0;
11351 int i;
11352
Joe Perches63c3a662011-04-26 08:12:10 +000011353 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011354 mem_tbl = mem_tbl_5717;
11355 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
11356 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000011357 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011358 mem_tbl = mem_tbl_5755;
11359 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11360 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000011361 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011362 mem_tbl = mem_tbl_5705;
11363 else
Michael Chan7942e1d2005-05-29 14:58:36 -070011364 mem_tbl = mem_tbl_570x;
11365
11366 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000011367 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
11368 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070011369 break;
11370 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011371
Michael Chan7942e1d2005-05-29 14:58:36 -070011372 return err;
11373}
11374
Matt Carlsonbb158d62011-04-25 12:42:47 +000011375#define TG3_TSO_MSS 500
11376
11377#define TG3_TSO_IP_HDR_LEN 20
11378#define TG3_TSO_TCP_HDR_LEN 20
11379#define TG3_TSO_TCP_OPT_LEN 12
11380
11381static const u8 tg3_tso_header[] = {
113820x08, 0x00,
113830x45, 0x00, 0x00, 0x00,
113840x00, 0x00, 0x40, 0x00,
113850x40, 0x06, 0x00, 0x00,
113860x0a, 0x00, 0x00, 0x01,
113870x0a, 0x00, 0x00, 0x02,
113880x0d, 0x00, 0xe0, 0x00,
113890x00, 0x00, 0x01, 0x00,
113900x00, 0x00, 0x02, 0x00,
113910x80, 0x10, 0x10, 0x00,
113920x14, 0x09, 0x00, 0x00,
113930x01, 0x01, 0x08, 0x0a,
113940x11, 0x11, 0x11, 0x11,
113950x11, 0x11, 0x11, 0x11,
11396};
Michael Chan9f40dea2005-09-05 17:53:06 -070011397
Matt Carlson28a45952011-08-19 13:58:22 +000011398static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070011399{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011400 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011401 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000011402 u32 budget;
Michael Chanc76949a2005-05-29 14:58:59 -070011403 struct sk_buff *skb, *rx_skb;
11404 u8 *tx_data;
11405 dma_addr_t map;
11406 int num_pkts, tx_len, rx_len, i, err;
11407 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000011408 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000011409 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070011410
Matt Carlsonc8873402010-02-12 14:47:11 +000011411 tnapi = &tp->napi[0];
11412 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011413 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000011414 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000011415 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000011416 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000011417 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011418 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011419 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000011420
Michael Chanc76949a2005-05-29 14:58:59 -070011421 err = -EIO;
11422
Matt Carlson4852a862011-04-13 11:05:07 +000011423 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070011424 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070011425 if (!skb)
11426 return -ENOMEM;
11427
Michael Chanc76949a2005-05-29 14:58:59 -070011428 tx_data = skb_put(skb, tx_len);
11429 memcpy(tx_data, tp->dev->dev_addr, 6);
11430 memset(tx_data + 6, 0x0, 8);
11431
Matt Carlson4852a862011-04-13 11:05:07 +000011432 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070011433
Matt Carlson28a45952011-08-19 13:58:22 +000011434 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011435 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
11436
11437 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
11438 TG3_TSO_TCP_OPT_LEN;
11439
11440 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
11441 sizeof(tg3_tso_header));
11442 mss = TG3_TSO_MSS;
11443
11444 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
11445 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
11446
11447 /* Set the total length field in the IP header */
11448 iph->tot_len = htons((u16)(mss + hdr_len));
11449
11450 base_flags = (TXD_FLAG_CPU_PRE_DMA |
11451 TXD_FLAG_CPU_POST_DMA);
11452
Joe Perches63c3a662011-04-26 08:12:10 +000011453 if (tg3_flag(tp, HW_TSO_1) ||
11454 tg3_flag(tp, HW_TSO_2) ||
11455 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011456 struct tcphdr *th;
11457 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
11458 th = (struct tcphdr *)&tx_data[val];
11459 th->check = 0;
11460 } else
11461 base_flags |= TXD_FLAG_TCPUDP_CSUM;
11462
Joe Perches63c3a662011-04-26 08:12:10 +000011463 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011464 mss |= (hdr_len & 0xc) << 12;
11465 if (hdr_len & 0x10)
11466 base_flags |= 0x00000010;
11467 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000011468 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011469 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000011470 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000011471 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
11472 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
11473 } else {
11474 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
11475 }
11476
11477 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
11478 } else {
11479 num_pkts = 1;
11480 data_off = ETH_HLEN;
11481 }
11482
11483 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070011484 tx_data[i] = (u8) (i & 0xff);
11485
Alexander Duyckf4188d82009-12-02 16:48:38 +000011486 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
11487 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000011488 dev_kfree_skb(skb);
11489 return -EIO;
11490 }
Michael Chanc76949a2005-05-29 14:58:59 -070011491
Matt Carlson0d681b22011-07-27 14:20:49 +000011492 val = tnapi->tx_prod;
11493 tnapi->tx_buffers[val].skb = skb;
11494 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
11495
Michael Chanc76949a2005-05-29 14:58:59 -070011496 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011497 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011498
11499 udelay(10);
11500
Matt Carlson898a56f2009-08-28 14:02:40 +000011501 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070011502
Matt Carlson84b67b22011-07-27 14:20:52 +000011503 budget = tg3_tx_avail(tnapi);
11504 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000011505 base_flags | TXD_FLAG_END, mss, 0)) {
11506 tnapi->tx_buffers[val].skb = NULL;
11507 dev_kfree_skb(skb);
11508 return -EIO;
11509 }
Michael Chanc76949a2005-05-29 14:58:59 -070011510
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011511 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070011512
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011513 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
11514 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070011515
11516 udelay(10);
11517
Matt Carlson303fc922009-11-02 14:27:34 +000011518 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
11519 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070011520 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011521 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011522
11523 udelay(10);
11524
Matt Carlson898a56f2009-08-28 14:02:40 +000011525 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
11526 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011527 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070011528 (rx_idx == (rx_start_idx + num_pkts)))
11529 break;
11530 }
11531
Matt Carlsonba1142e2011-11-04 09:15:00 +000011532 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070011533 dev_kfree_skb(skb);
11534
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011535 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070011536 goto out;
11537
11538 if (rx_idx != rx_start_idx + num_pkts)
11539 goto out;
11540
Matt Carlsonbb158d62011-04-25 12:42:47 +000011541 val = data_off;
11542 while (rx_idx != rx_start_idx) {
11543 desc = &rnapi->rx_rcb[rx_start_idx++];
11544 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
11545 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070011546
Matt Carlsonbb158d62011-04-25 12:42:47 +000011547 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
11548 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000011549 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070011550
Matt Carlsonbb158d62011-04-25 12:42:47 +000011551 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
11552 - ETH_FCS_LEN;
11553
Matt Carlson28a45952011-08-19 13:58:22 +000011554 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011555 if (rx_len != tx_len)
11556 goto out;
11557
11558 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
11559 if (opaque_key != RXD_OPAQUE_RING_STD)
11560 goto out;
11561 } else {
11562 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
11563 goto out;
11564 }
11565 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
11566 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000011567 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011568 goto out;
11569 }
11570
11571 if (opaque_key == RXD_OPAQUE_RING_STD) {
11572 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
11573 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
11574 mapping);
11575 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
11576 rx_skb = tpr->rx_jmb_buffers[desc_idx].skb;
11577 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
11578 mapping);
11579 } else
Matt Carlson4852a862011-04-13 11:05:07 +000011580 goto out;
11581
Matt Carlsonbb158d62011-04-25 12:42:47 +000011582 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
11583 PCI_DMA_FROMDEVICE);
11584
11585 for (i = data_off; i < rx_len; i++, val++) {
11586 if (*(rx_skb->data + i) != (u8) (val & 0xff))
11587 goto out;
11588 }
Matt Carlson4852a862011-04-13 11:05:07 +000011589 }
11590
Michael Chanc76949a2005-05-29 14:58:59 -070011591 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011592
Michael Chanc76949a2005-05-29 14:58:59 -070011593 /* tg3_free_rings will unmap and free the rx_skb */
11594out:
11595 return err;
11596}
11597
Matt Carlson00c266b2011-04-25 12:42:46 +000011598#define TG3_STD_LOOPBACK_FAILED 1
11599#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000011600#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000011601#define TG3_LOOPBACK_FAILED \
11602 (TG3_STD_LOOPBACK_FAILED | \
11603 TG3_JMB_LOOPBACK_FAILED | \
11604 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000011605
Matt Carlson941ec902011-08-19 13:58:23 +000011606static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070011607{
Matt Carlson28a45952011-08-19 13:58:22 +000011608 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000011609 u32 eee_cap;
Michael Chan9f40dea2005-09-05 17:53:06 -070011610
Matt Carlsonab789042011-01-25 15:58:54 +000011611 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
11612 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11613
Matt Carlson28a45952011-08-19 13:58:22 +000011614 if (!netif_running(tp->dev)) {
11615 data[0] = TG3_LOOPBACK_FAILED;
11616 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000011617 if (do_extlpbk)
11618 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000011619 goto done;
11620 }
11621
Michael Chanb9ec6c12006-07-25 16:37:27 -070011622 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000011623 if (err) {
Matt Carlson28a45952011-08-19 13:58:22 +000011624 data[0] = TG3_LOOPBACK_FAILED;
11625 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000011626 if (do_extlpbk)
11627 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000011628 goto done;
11629 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011630
Joe Perches63c3a662011-04-26 08:12:10 +000011631 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000011632 int i;
11633
11634 /* Reroute all rx packets to the 1st queue */
11635 for (i = MAC_RSS_INDIR_TBL_0;
11636 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
11637 tw32(i, 0x0);
11638 }
11639
Matt Carlson6e01b202011-08-19 13:58:20 +000011640 /* HW errata - mac loopback fails in some cases on 5780.
11641 * Normal traffic and PHY loopback are not affected by
11642 * errata. Also, the MAC loopback test is deprecated for
11643 * all newer ASIC revisions.
11644 */
11645 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
11646 !tg3_flag(tp, CPMU_PRESENT)) {
11647 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070011648
Matt Carlson28a45952011-08-19 13:58:22 +000011649 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
11650 data[0] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000011651
11652 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000011653 tg3_run_loopback(tp, 9000 + ETH_HLEN, false))
11654 data[0] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000011655
11656 tg3_mac_loopback(tp, false);
11657 }
Matt Carlson4852a862011-04-13 11:05:07 +000011658
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011659 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011660 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011661 int i;
11662
Matt Carlson941ec902011-08-19 13:58:23 +000011663 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011664
11665 /* Wait for link */
11666 for (i = 0; i < 100; i++) {
11667 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
11668 break;
11669 mdelay(1);
11670 }
11671
Matt Carlson28a45952011-08-19 13:58:22 +000011672 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
11673 data[1] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000011674 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000011675 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
11676 data[1] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000011677 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000011678 tg3_run_loopback(tp, 9000 + ETH_HLEN, false))
11679 data[1] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070011680
Matt Carlson941ec902011-08-19 13:58:23 +000011681 if (do_extlpbk) {
11682 tg3_phy_lpbk_set(tp, 0, true);
11683
11684 /* All link indications report up, but the hardware
11685 * isn't really ready for about 20 msec. Double it
11686 * to be sure.
11687 */
11688 mdelay(40);
11689
11690 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
11691 data[2] |= TG3_STD_LOOPBACK_FAILED;
11692 if (tg3_flag(tp, TSO_CAPABLE) &&
11693 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
11694 data[2] |= TG3_TSO_LOOPBACK_FAILED;
11695 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
11696 tg3_run_loopback(tp, 9000 + ETH_HLEN, false))
11697 data[2] |= TG3_JMB_LOOPBACK_FAILED;
11698 }
11699
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011700 /* Re-enable gphy autopowerdown. */
11701 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
11702 tg3_phy_toggle_apd(tp, true);
11703 }
Matt Carlson6833c042008-11-21 17:18:59 -080011704
Matt Carlson941ec902011-08-19 13:58:23 +000011705 err = (data[0] | data[1] | data[2]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000011706
Matt Carlsonab789042011-01-25 15:58:54 +000011707done:
11708 tp->phy_flags |= eee_cap;
11709
Michael Chan9f40dea2005-09-05 17:53:06 -070011710 return err;
11711}
11712
Michael Chan4cafd3f2005-05-29 14:56:34 -070011713static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
11714 u64 *data)
11715{
Michael Chan566f86a2005-05-29 14:56:58 -070011716 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000011717 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070011718
Matt Carlsonbed98292011-07-13 09:27:29 +000011719 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
11720 tg3_power_up(tp)) {
11721 etest->flags |= ETH_TEST_FL_FAILED;
11722 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
11723 return;
11724 }
Michael Chanbc1c7562006-03-20 17:48:03 -080011725
Michael Chan566f86a2005-05-29 14:56:58 -070011726 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11727
11728 if (tg3_test_nvram(tp) != 0) {
11729 etest->flags |= ETH_TEST_FL_FAILED;
11730 data[0] = 1;
11731 }
Matt Carlson941ec902011-08-19 13:58:23 +000011732 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070011733 etest->flags |= ETH_TEST_FL_FAILED;
11734 data[1] = 1;
11735 }
Michael Chana71116d2005-05-29 14:58:11 -070011736 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011737 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011738
Michael Chanbbe832c2005-06-24 20:20:04 -070011739 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011740 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011741 tg3_netif_stop(tp);
11742 irq_sync = 1;
11743 }
11744
11745 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011746
11747 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011748 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011749 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000011750 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070011751 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011752 if (!err)
11753 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011754
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011755 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad2006-03-20 22:27:35 -080011756 tg3_phy_reset(tp);
11757
Michael Chana71116d2005-05-29 14:58:11 -070011758 if (tg3_test_registers(tp) != 0) {
11759 etest->flags |= ETH_TEST_FL_FAILED;
11760 data[2] = 1;
11761 }
Matt Carlson28a45952011-08-19 13:58:22 +000011762
Michael Chan7942e1d2005-05-29 14:58:36 -070011763 if (tg3_test_memory(tp) != 0) {
11764 etest->flags |= ETH_TEST_FL_FAILED;
11765 data[3] = 1;
11766 }
Matt Carlson28a45952011-08-19 13:58:22 +000011767
Matt Carlson941ec902011-08-19 13:58:23 +000011768 if (doextlpbk)
11769 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
11770
11771 if (tg3_test_loopback(tp, &data[4], doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070011772 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011773
David S. Millerf47c11e2005-06-24 20:18:35 -070011774 tg3_full_unlock(tp);
11775
Michael Chand4bc3922005-05-29 14:59:20 -070011776 if (tg3_test_interrupt(tp) != 0) {
11777 etest->flags |= ETH_TEST_FL_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000011778 data[7] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070011779 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011780
11781 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011782
Michael Chana71116d2005-05-29 14:58:11 -070011783 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11784 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011785 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011786 err2 = tg3_restart_hw(tp, 1);
11787 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011788 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011789 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011790
11791 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011792
11793 if (irq_sync && !err2)
11794 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011795 }
Matt Carlson80096062010-08-02 11:26:06 +000011796 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011797 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011798
Michael Chan4cafd3f2005-05-29 14:56:34 -070011799}
11800
Linus Torvalds1da177e2005-04-16 15:20:36 -070011801static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11802{
11803 struct mii_ioctl_data *data = if_mii(ifr);
11804 struct tg3 *tp = netdev_priv(dev);
11805 int err;
11806
Joe Perches63c3a662011-04-26 08:12:10 +000011807 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011808 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011809 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011810 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011811 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000011812 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011813 }
11814
Matt Carlson33f401a2010-04-05 10:19:27 +000011815 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011816 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011817 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011818
11819 /* fallthru */
11820 case SIOCGMIIREG: {
11821 u32 mii_regval;
11822
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011823 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011824 break; /* We have no PHY */
11825
Matt Carlson34eea5a2011-04-20 07:57:38 +000011826 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011827 return -EAGAIN;
11828
David S. Millerf47c11e2005-06-24 20:18:35 -070011829 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011830 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011831 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011832
11833 data->val_out = mii_regval;
11834
11835 return err;
11836 }
11837
11838 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011839 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011840 break; /* We have no PHY */
11841
Matt Carlson34eea5a2011-04-20 07:57:38 +000011842 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011843 return -EAGAIN;
11844
David S. Millerf47c11e2005-06-24 20:18:35 -070011845 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011846 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011847 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011848
11849 return err;
11850
11851 default:
11852 /* do nothing */
11853 break;
11854 }
11855 return -EOPNOTSUPP;
11856}
11857
David S. Miller15f98502005-05-18 22:49:26 -070011858static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11859{
11860 struct tg3 *tp = netdev_priv(dev);
11861
11862 memcpy(ec, &tp->coal, sizeof(*ec));
11863 return 0;
11864}
11865
Michael Chand244c892005-07-05 14:42:33 -070011866static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11867{
11868 struct tg3 *tp = netdev_priv(dev);
11869 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11870 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11871
Joe Perches63c3a662011-04-26 08:12:10 +000011872 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070011873 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11874 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11875 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11876 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11877 }
11878
11879 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11880 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11881 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11882 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11883 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11884 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11885 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11886 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11887 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11888 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11889 return -EINVAL;
11890
11891 /* No rx interrupts will be generated if both are zero */
11892 if ((ec->rx_coalesce_usecs == 0) &&
11893 (ec->rx_max_coalesced_frames == 0))
11894 return -EINVAL;
11895
11896 /* No tx interrupts will be generated if both are zero */
11897 if ((ec->tx_coalesce_usecs == 0) &&
11898 (ec->tx_max_coalesced_frames == 0))
11899 return -EINVAL;
11900
11901 /* Only copy relevant parameters, ignore all others. */
11902 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11903 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11904 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11905 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11906 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11907 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11908 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11909 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11910 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11911
11912 if (netif_running(dev)) {
11913 tg3_full_lock(tp, 0);
11914 __tg3_set_coalesce(tp, &tp->coal);
11915 tg3_full_unlock(tp);
11916 }
11917 return 0;
11918}
11919
Jeff Garzik7282d492006-09-13 14:30:00 -040011920static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011921 .get_settings = tg3_get_settings,
11922 .set_settings = tg3_set_settings,
11923 .get_drvinfo = tg3_get_drvinfo,
11924 .get_regs_len = tg3_get_regs_len,
11925 .get_regs = tg3_get_regs,
11926 .get_wol = tg3_get_wol,
11927 .set_wol = tg3_set_wol,
11928 .get_msglevel = tg3_get_msglevel,
11929 .set_msglevel = tg3_set_msglevel,
11930 .nway_reset = tg3_nway_reset,
11931 .get_link = ethtool_op_get_link,
11932 .get_eeprom_len = tg3_get_eeprom_len,
11933 .get_eeprom = tg3_get_eeprom,
11934 .set_eeprom = tg3_set_eeprom,
11935 .get_ringparam = tg3_get_ringparam,
11936 .set_ringparam = tg3_set_ringparam,
11937 .get_pauseparam = tg3_get_pauseparam,
11938 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011939 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011940 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000011941 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011942 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011943 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011944 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011945 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011946};
11947
11948static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11949{
Michael Chan1b277772006-03-20 22:27:48 -080011950 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011951
11952 tp->nvram_size = EEPROM_CHIP_SIZE;
11953
Matt Carlsone4f34112009-02-25 14:25:00 +000011954 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011955 return;
11956
Michael Chanb16250e2006-09-27 16:10:14 -070011957 if ((magic != TG3_EEPROM_MAGIC) &&
11958 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11959 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011960 return;
11961
11962 /*
11963 * Size the chip by reading offsets at increasing powers of two.
11964 * When we encounter our validation signature, we know the addressing
11965 * has wrapped around, and thus have our chip size.
11966 */
Michael Chan1b277772006-03-20 22:27:48 -080011967 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011968
11969 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011970 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011971 return;
11972
Michael Chan18201802006-03-20 22:29:15 -080011973 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011974 break;
11975
11976 cursize <<= 1;
11977 }
11978
11979 tp->nvram_size = cursize;
11980}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011981
Linus Torvalds1da177e2005-04-16 15:20:36 -070011982static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11983{
11984 u32 val;
11985
Joe Perches63c3a662011-04-26 08:12:10 +000011986 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011987 return;
11988
11989 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011990 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011991 tg3_get_eeprom_size(tp);
11992 return;
11993 }
11994
Matt Carlson6d348f22009-02-25 14:25:52 +000011995 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011996 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011997 /* This is confusing. We want to operate on the
11998 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11999 * call will read from NVRAM and byteswap the data
12000 * according to the byteswapping settings for all
12001 * other register accesses. This ensures the data we
12002 * want will always reside in the lower 16-bits.
12003 * However, the data in NVRAM is in LE format, which
12004 * means the data from the NVRAM read will always be
12005 * opposite the endianness of the CPU. The 16-bit
12006 * byteswap then brings the data to CPU endianness.
12007 */
12008 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012009 return;
12010 }
12011 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070012012 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012013}
12014
12015static void __devinit tg3_get_nvram_info(struct tg3 *tp)
12016{
12017 u32 nvcfg1;
12018
12019 nvcfg1 = tr32(NVRAM_CFG1);
12020 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000012021 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012022 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012023 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12024 tw32(NVRAM_CFG1, nvcfg1);
12025 }
12026
Matt Carlson6ff6f812011-05-19 12:12:54 +000012027 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000012028 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012029 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012030 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
12031 tp->nvram_jedecnum = JEDEC_ATMEL;
12032 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012033 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012034 break;
12035 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
12036 tp->nvram_jedecnum = JEDEC_ATMEL;
12037 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
12038 break;
12039 case FLASH_VENDOR_ATMEL_EEPROM:
12040 tp->nvram_jedecnum = JEDEC_ATMEL;
12041 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012042 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012043 break;
12044 case FLASH_VENDOR_ST:
12045 tp->nvram_jedecnum = JEDEC_ST;
12046 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012047 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012048 break;
12049 case FLASH_VENDOR_SAIFUN:
12050 tp->nvram_jedecnum = JEDEC_SAIFUN;
12051 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
12052 break;
12053 case FLASH_VENDOR_SST_SMALL:
12054 case FLASH_VENDOR_SST_LARGE:
12055 tp->nvram_jedecnum = JEDEC_SST;
12056 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
12057 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012058 }
Matt Carlson8590a602009-08-28 12:29:16 +000012059 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012060 tp->nvram_jedecnum = JEDEC_ATMEL;
12061 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012062 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012063 }
12064}
12065
Matt Carlsona1b950d2009-09-01 13:20:17 +000012066static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
12067{
12068 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
12069 case FLASH_5752PAGE_SIZE_256:
12070 tp->nvram_pagesize = 256;
12071 break;
12072 case FLASH_5752PAGE_SIZE_512:
12073 tp->nvram_pagesize = 512;
12074 break;
12075 case FLASH_5752PAGE_SIZE_1K:
12076 tp->nvram_pagesize = 1024;
12077 break;
12078 case FLASH_5752PAGE_SIZE_2K:
12079 tp->nvram_pagesize = 2048;
12080 break;
12081 case FLASH_5752PAGE_SIZE_4K:
12082 tp->nvram_pagesize = 4096;
12083 break;
12084 case FLASH_5752PAGE_SIZE_264:
12085 tp->nvram_pagesize = 264;
12086 break;
12087 case FLASH_5752PAGE_SIZE_528:
12088 tp->nvram_pagesize = 528;
12089 break;
12090 }
12091}
12092
Michael Chan361b4ac2005-04-21 17:11:21 -070012093static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
12094{
12095 u32 nvcfg1;
12096
12097 nvcfg1 = tr32(NVRAM_CFG1);
12098
Michael Chane6af3012005-04-21 17:12:05 -070012099 /* NVRAM protection for TPM */
12100 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000012101 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070012102
Michael Chan361b4ac2005-04-21 17:11:21 -070012103 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012104 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
12105 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
12106 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012107 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012108 break;
12109 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12110 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012111 tg3_flag_set(tp, NVRAM_BUFFERED);
12112 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012113 break;
12114 case FLASH_5752VENDOR_ST_M45PE10:
12115 case FLASH_5752VENDOR_ST_M45PE20:
12116 case FLASH_5752VENDOR_ST_M45PE40:
12117 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012118 tg3_flag_set(tp, NVRAM_BUFFERED);
12119 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012120 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070012121 }
12122
Joe Perches63c3a662011-04-26 08:12:10 +000012123 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000012124 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000012125 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070012126 /* For eeprom, set pagesize to maximum eeprom size */
12127 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12128
12129 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12130 tw32(NVRAM_CFG1, nvcfg1);
12131 }
12132}
12133
Michael Chand3c7b882006-03-23 01:28:25 -080012134static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
12135{
Matt Carlson989a9d22007-05-05 11:51:05 -070012136 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080012137
12138 nvcfg1 = tr32(NVRAM_CFG1);
12139
12140 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070012141 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012142 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070012143 protect = 1;
12144 }
Michael Chand3c7b882006-03-23 01:28:25 -080012145
Matt Carlson989a9d22007-05-05 11:51:05 -070012146 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12147 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012148 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12149 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12150 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12151 case FLASH_5755VENDOR_ATMEL_FLASH_5:
12152 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012153 tg3_flag_set(tp, NVRAM_BUFFERED);
12154 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012155 tp->nvram_pagesize = 264;
12156 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
12157 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
12158 tp->nvram_size = (protect ? 0x3e200 :
12159 TG3_NVRAM_SIZE_512KB);
12160 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
12161 tp->nvram_size = (protect ? 0x1f200 :
12162 TG3_NVRAM_SIZE_256KB);
12163 else
12164 tp->nvram_size = (protect ? 0x1f200 :
12165 TG3_NVRAM_SIZE_128KB);
12166 break;
12167 case FLASH_5752VENDOR_ST_M45PE10:
12168 case FLASH_5752VENDOR_ST_M45PE20:
12169 case FLASH_5752VENDOR_ST_M45PE40:
12170 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012171 tg3_flag_set(tp, NVRAM_BUFFERED);
12172 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012173 tp->nvram_pagesize = 256;
12174 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
12175 tp->nvram_size = (protect ?
12176 TG3_NVRAM_SIZE_64KB :
12177 TG3_NVRAM_SIZE_128KB);
12178 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
12179 tp->nvram_size = (protect ?
12180 TG3_NVRAM_SIZE_64KB :
12181 TG3_NVRAM_SIZE_256KB);
12182 else
12183 tp->nvram_size = (protect ?
12184 TG3_NVRAM_SIZE_128KB :
12185 TG3_NVRAM_SIZE_512KB);
12186 break;
Michael Chand3c7b882006-03-23 01:28:25 -080012187 }
12188}
12189
Michael Chan1b277772006-03-20 22:27:48 -080012190static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
12191{
12192 u32 nvcfg1;
12193
12194 nvcfg1 = tr32(NVRAM_CFG1);
12195
12196 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012197 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
12198 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12199 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
12200 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12201 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012202 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012203 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080012204
Matt Carlson8590a602009-08-28 12:29:16 +000012205 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12206 tw32(NVRAM_CFG1, nvcfg1);
12207 break;
12208 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12209 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12210 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12211 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12212 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012213 tg3_flag_set(tp, NVRAM_BUFFERED);
12214 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012215 tp->nvram_pagesize = 264;
12216 break;
12217 case FLASH_5752VENDOR_ST_M45PE10:
12218 case FLASH_5752VENDOR_ST_M45PE20:
12219 case FLASH_5752VENDOR_ST_M45PE40:
12220 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012221 tg3_flag_set(tp, NVRAM_BUFFERED);
12222 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012223 tp->nvram_pagesize = 256;
12224 break;
Michael Chan1b277772006-03-20 22:27:48 -080012225 }
12226}
12227
Matt Carlson6b91fa02007-10-10 18:01:09 -070012228static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
12229{
12230 u32 nvcfg1, protect = 0;
12231
12232 nvcfg1 = tr32(NVRAM_CFG1);
12233
12234 /* NVRAM protection for TPM */
12235 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012236 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012237 protect = 1;
12238 }
12239
12240 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12241 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012242 case FLASH_5761VENDOR_ATMEL_ADB021D:
12243 case FLASH_5761VENDOR_ATMEL_ADB041D:
12244 case FLASH_5761VENDOR_ATMEL_ADB081D:
12245 case FLASH_5761VENDOR_ATMEL_ADB161D:
12246 case FLASH_5761VENDOR_ATMEL_MDB021D:
12247 case FLASH_5761VENDOR_ATMEL_MDB041D:
12248 case FLASH_5761VENDOR_ATMEL_MDB081D:
12249 case FLASH_5761VENDOR_ATMEL_MDB161D:
12250 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012251 tg3_flag_set(tp, NVRAM_BUFFERED);
12252 tg3_flag_set(tp, FLASH);
12253 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000012254 tp->nvram_pagesize = 256;
12255 break;
12256 case FLASH_5761VENDOR_ST_A_M45PE20:
12257 case FLASH_5761VENDOR_ST_A_M45PE40:
12258 case FLASH_5761VENDOR_ST_A_M45PE80:
12259 case FLASH_5761VENDOR_ST_A_M45PE16:
12260 case FLASH_5761VENDOR_ST_M_M45PE20:
12261 case FLASH_5761VENDOR_ST_M_M45PE40:
12262 case FLASH_5761VENDOR_ST_M_M45PE80:
12263 case FLASH_5761VENDOR_ST_M_M45PE16:
12264 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012265 tg3_flag_set(tp, NVRAM_BUFFERED);
12266 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012267 tp->nvram_pagesize = 256;
12268 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012269 }
12270
12271 if (protect) {
12272 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
12273 } else {
12274 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012275 case FLASH_5761VENDOR_ATMEL_ADB161D:
12276 case FLASH_5761VENDOR_ATMEL_MDB161D:
12277 case FLASH_5761VENDOR_ST_A_M45PE16:
12278 case FLASH_5761VENDOR_ST_M_M45PE16:
12279 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
12280 break;
12281 case FLASH_5761VENDOR_ATMEL_ADB081D:
12282 case FLASH_5761VENDOR_ATMEL_MDB081D:
12283 case FLASH_5761VENDOR_ST_A_M45PE80:
12284 case FLASH_5761VENDOR_ST_M_M45PE80:
12285 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12286 break;
12287 case FLASH_5761VENDOR_ATMEL_ADB041D:
12288 case FLASH_5761VENDOR_ATMEL_MDB041D:
12289 case FLASH_5761VENDOR_ST_A_M45PE40:
12290 case FLASH_5761VENDOR_ST_M_M45PE40:
12291 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12292 break;
12293 case FLASH_5761VENDOR_ATMEL_ADB021D:
12294 case FLASH_5761VENDOR_ATMEL_MDB021D:
12295 case FLASH_5761VENDOR_ST_A_M45PE20:
12296 case FLASH_5761VENDOR_ST_M_M45PE20:
12297 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12298 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012299 }
12300 }
12301}
12302
Michael Chanb5d37722006-09-27 16:06:21 -070012303static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
12304{
12305 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012306 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070012307 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12308}
12309
Matt Carlson321d32a2008-11-21 17:22:19 -080012310static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
12311{
12312 u32 nvcfg1;
12313
12314 nvcfg1 = tr32(NVRAM_CFG1);
12315
12316 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12317 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12318 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12319 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012320 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080012321 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12322
12323 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12324 tw32(NVRAM_CFG1, nvcfg1);
12325 return;
12326 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12327 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12328 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12329 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12330 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12331 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12332 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12333 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012334 tg3_flag_set(tp, NVRAM_BUFFERED);
12335 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012336
12337 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12338 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12339 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12340 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12341 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12342 break;
12343 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12344 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12345 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12346 break;
12347 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12348 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12349 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12350 break;
12351 }
12352 break;
12353 case FLASH_5752VENDOR_ST_M45PE10:
12354 case FLASH_5752VENDOR_ST_M45PE20:
12355 case FLASH_5752VENDOR_ST_M45PE40:
12356 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012357 tg3_flag_set(tp, NVRAM_BUFFERED);
12358 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012359
12360 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12361 case FLASH_5752VENDOR_ST_M45PE10:
12362 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12363 break;
12364 case FLASH_5752VENDOR_ST_M45PE20:
12365 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12366 break;
12367 case FLASH_5752VENDOR_ST_M45PE40:
12368 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12369 break;
12370 }
12371 break;
12372 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012373 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080012374 return;
12375 }
12376
Matt Carlsona1b950d2009-09-01 13:20:17 +000012377 tg3_nvram_get_pagesize(tp, nvcfg1);
12378 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012379 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012380}
12381
12382
12383static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
12384{
12385 u32 nvcfg1;
12386
12387 nvcfg1 = tr32(NVRAM_CFG1);
12388
12389 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12390 case FLASH_5717VENDOR_ATMEL_EEPROM:
12391 case FLASH_5717VENDOR_MICRO_EEPROM:
12392 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012393 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012394 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12395
12396 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12397 tw32(NVRAM_CFG1, nvcfg1);
12398 return;
12399 case FLASH_5717VENDOR_ATMEL_MDB011D:
12400 case FLASH_5717VENDOR_ATMEL_ADB011B:
12401 case FLASH_5717VENDOR_ATMEL_ADB011D:
12402 case FLASH_5717VENDOR_ATMEL_MDB021D:
12403 case FLASH_5717VENDOR_ATMEL_ADB021B:
12404 case FLASH_5717VENDOR_ATMEL_ADB021D:
12405 case FLASH_5717VENDOR_ATMEL_45USPT:
12406 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012407 tg3_flag_set(tp, NVRAM_BUFFERED);
12408 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012409
12410 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12411 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012412 /* Detect size with tg3_nvram_get_size() */
12413 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012414 case FLASH_5717VENDOR_ATMEL_ADB021B:
12415 case FLASH_5717VENDOR_ATMEL_ADB021D:
12416 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12417 break;
12418 default:
12419 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12420 break;
12421 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012422 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012423 case FLASH_5717VENDOR_ST_M_M25PE10:
12424 case FLASH_5717VENDOR_ST_A_M25PE10:
12425 case FLASH_5717VENDOR_ST_M_M45PE10:
12426 case FLASH_5717VENDOR_ST_A_M45PE10:
12427 case FLASH_5717VENDOR_ST_M_M25PE20:
12428 case FLASH_5717VENDOR_ST_A_M25PE20:
12429 case FLASH_5717VENDOR_ST_M_M45PE20:
12430 case FLASH_5717VENDOR_ST_A_M45PE20:
12431 case FLASH_5717VENDOR_ST_25USPT:
12432 case FLASH_5717VENDOR_ST_45USPT:
12433 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012434 tg3_flag_set(tp, NVRAM_BUFFERED);
12435 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012436
12437 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12438 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012439 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012440 /* Detect size with tg3_nvram_get_size() */
12441 break;
12442 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012443 case FLASH_5717VENDOR_ST_A_M45PE20:
12444 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12445 break;
12446 default:
12447 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12448 break;
12449 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012450 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012451 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012452 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012453 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080012454 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000012455
12456 tg3_nvram_get_pagesize(tp, nvcfg1);
12457 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012458 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080012459}
12460
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012461static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
12462{
12463 u32 nvcfg1, nvmpinstrp;
12464
12465 nvcfg1 = tr32(NVRAM_CFG1);
12466 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
12467
12468 switch (nvmpinstrp) {
12469 case FLASH_5720_EEPROM_HD:
12470 case FLASH_5720_EEPROM_LD:
12471 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012472 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012473
12474 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12475 tw32(NVRAM_CFG1, nvcfg1);
12476 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
12477 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12478 else
12479 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
12480 return;
12481 case FLASH_5720VENDOR_M_ATMEL_DB011D:
12482 case FLASH_5720VENDOR_A_ATMEL_DB011B:
12483 case FLASH_5720VENDOR_A_ATMEL_DB011D:
12484 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12485 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12486 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12487 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12488 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12489 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12490 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12491 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12492 case FLASH_5720VENDOR_ATMEL_45USPT:
12493 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012494 tg3_flag_set(tp, NVRAM_BUFFERED);
12495 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012496
12497 switch (nvmpinstrp) {
12498 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12499 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12500 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12501 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12502 break;
12503 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12504 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12505 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12506 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12507 break;
12508 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12509 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12510 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12511 break;
12512 default:
12513 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12514 break;
12515 }
12516 break;
12517 case FLASH_5720VENDOR_M_ST_M25PE10:
12518 case FLASH_5720VENDOR_M_ST_M45PE10:
12519 case FLASH_5720VENDOR_A_ST_M25PE10:
12520 case FLASH_5720VENDOR_A_ST_M45PE10:
12521 case FLASH_5720VENDOR_M_ST_M25PE20:
12522 case FLASH_5720VENDOR_M_ST_M45PE20:
12523 case FLASH_5720VENDOR_A_ST_M25PE20:
12524 case FLASH_5720VENDOR_A_ST_M45PE20:
12525 case FLASH_5720VENDOR_M_ST_M25PE40:
12526 case FLASH_5720VENDOR_M_ST_M45PE40:
12527 case FLASH_5720VENDOR_A_ST_M25PE40:
12528 case FLASH_5720VENDOR_A_ST_M45PE40:
12529 case FLASH_5720VENDOR_M_ST_M25PE80:
12530 case FLASH_5720VENDOR_M_ST_M45PE80:
12531 case FLASH_5720VENDOR_A_ST_M25PE80:
12532 case FLASH_5720VENDOR_A_ST_M45PE80:
12533 case FLASH_5720VENDOR_ST_25USPT:
12534 case FLASH_5720VENDOR_ST_45USPT:
12535 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012536 tg3_flag_set(tp, NVRAM_BUFFERED);
12537 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012538
12539 switch (nvmpinstrp) {
12540 case FLASH_5720VENDOR_M_ST_M25PE20:
12541 case FLASH_5720VENDOR_M_ST_M45PE20:
12542 case FLASH_5720VENDOR_A_ST_M25PE20:
12543 case FLASH_5720VENDOR_A_ST_M45PE20:
12544 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12545 break;
12546 case FLASH_5720VENDOR_M_ST_M25PE40:
12547 case FLASH_5720VENDOR_M_ST_M45PE40:
12548 case FLASH_5720VENDOR_A_ST_M25PE40:
12549 case FLASH_5720VENDOR_A_ST_M45PE40:
12550 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12551 break;
12552 case FLASH_5720VENDOR_M_ST_M25PE80:
12553 case FLASH_5720VENDOR_M_ST_M45PE80:
12554 case FLASH_5720VENDOR_A_ST_M25PE80:
12555 case FLASH_5720VENDOR_A_ST_M45PE80:
12556 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12557 break;
12558 default:
12559 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12560 break;
12561 }
12562 break;
12563 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012564 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012565 return;
12566 }
12567
12568 tg3_nvram_get_pagesize(tp, nvcfg1);
12569 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012570 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012571}
12572
Linus Torvalds1da177e2005-04-16 15:20:36 -070012573/* Chips other than 5700/5701 use the NVRAM for fetching info. */
12574static void __devinit tg3_nvram_init(struct tg3 *tp)
12575{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012576 tw32_f(GRC_EEPROM_ADDR,
12577 (EEPROM_ADDR_FSM_RESET |
12578 (EEPROM_DEFAULT_CLOCK_PERIOD <<
12579 EEPROM_ADDR_CLKPERD_SHIFT)));
12580
Michael Chan9d57f012006-12-07 00:23:25 -080012581 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012582
12583 /* Enable seeprom accesses. */
12584 tw32_f(GRC_LOCAL_CTRL,
12585 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
12586 udelay(100);
12587
12588 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12589 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000012590 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012591
Michael Chanec41c7d2006-01-17 02:40:55 -080012592 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000012593 netdev_warn(tp->dev,
12594 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000012595 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080012596 return;
12597 }
Michael Chane6af3012005-04-21 17:12:05 -070012598 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012599
Matt Carlson989a9d22007-05-05 11:51:05 -070012600 tp->nvram_size = 0;
12601
Michael Chan361b4ac2005-04-21 17:11:21 -070012602 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
12603 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080012604 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
12605 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070012606 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012607 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
12608 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080012609 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012610 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
12611 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070012612 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12613 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000012614 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
12615 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080012616 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012617 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
12618 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000012619 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012620 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
12621 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070012622 else
12623 tg3_get_nvram_info(tp);
12624
Matt Carlson989a9d22007-05-05 11:51:05 -070012625 if (tp->nvram_size == 0)
12626 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012627
Michael Chane6af3012005-04-21 17:12:05 -070012628 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080012629 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012630
12631 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012632 tg3_flag_clear(tp, NVRAM);
12633 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012634
12635 tg3_get_eeprom_size(tp);
12636 }
12637}
12638
Linus Torvalds1da177e2005-04-16 15:20:36 -070012639static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
12640 u32 offset, u32 len, u8 *buf)
12641{
12642 int i, j, rc = 0;
12643 u32 val;
12644
12645 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012646 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012647 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012648
12649 addr = offset + i;
12650
12651 memcpy(&data, buf + i, 4);
12652
Matt Carlson62cedd12009-04-20 14:52:29 -070012653 /*
12654 * The SEEPROM interface expects the data to always be opposite
12655 * the native endian format. We accomplish this by reversing
12656 * all the operations that would have been performed on the
12657 * data from a call to tg3_nvram_read_be32().
12658 */
12659 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012660
12661 val = tr32(GRC_EEPROM_ADDR);
12662 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
12663
12664 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
12665 EEPROM_ADDR_READ);
12666 tw32(GRC_EEPROM_ADDR, val |
12667 (0 << EEPROM_ADDR_DEVID_SHIFT) |
12668 (addr & EEPROM_ADDR_ADDR_MASK) |
12669 EEPROM_ADDR_START |
12670 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012671
Michael Chan9d57f012006-12-07 00:23:25 -080012672 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012673 val = tr32(GRC_EEPROM_ADDR);
12674
12675 if (val & EEPROM_ADDR_COMPLETE)
12676 break;
Michael Chan9d57f012006-12-07 00:23:25 -080012677 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012678 }
12679 if (!(val & EEPROM_ADDR_COMPLETE)) {
12680 rc = -EBUSY;
12681 break;
12682 }
12683 }
12684
12685 return rc;
12686}
12687
12688/* offset and length are dword aligned */
12689static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
12690 u8 *buf)
12691{
12692 int ret = 0;
12693 u32 pagesize = tp->nvram_pagesize;
12694 u32 pagemask = pagesize - 1;
12695 u32 nvram_cmd;
12696 u8 *tmp;
12697
12698 tmp = kmalloc(pagesize, GFP_KERNEL);
12699 if (tmp == NULL)
12700 return -ENOMEM;
12701
12702 while (len) {
12703 int j;
Michael Chane6af3012005-04-21 17:12:05 -070012704 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012705
12706 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012707
Linus Torvalds1da177e2005-04-16 15:20:36 -070012708 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012709 ret = tg3_nvram_read_be32(tp, phy_addr + j,
12710 (__be32 *) (tmp + j));
12711 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012712 break;
12713 }
12714 if (ret)
12715 break;
12716
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012717 page_off = offset & pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012718 size = pagesize;
12719 if (len < size)
12720 size = len;
12721
12722 len -= size;
12723
12724 memcpy(tmp + page_off, buf, size);
12725
12726 offset = offset + (pagesize - page_off);
12727
Michael Chane6af3012005-04-21 17:12:05 -070012728 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012729
12730 /*
12731 * Before we can erase the flash page, we need
12732 * to issue a special "write enable" command.
12733 */
12734 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12735
12736 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12737 break;
12738
12739 /* Erase the target page */
12740 tw32(NVRAM_ADDR, phy_addr);
12741
12742 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
12743 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
12744
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012745 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012746 break;
12747
12748 /* Issue another write enable to start the write. */
12749 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12750
12751 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12752 break;
12753
12754 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012755 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012756
Al Virob9fc7dc2007-12-17 22:59:57 -080012757 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000012758
Al Virob9fc7dc2007-12-17 22:59:57 -080012759 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012760
12761 tw32(NVRAM_ADDR, phy_addr + j);
12762
12763 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
12764 NVRAM_CMD_WR;
12765
12766 if (j == 0)
12767 nvram_cmd |= NVRAM_CMD_FIRST;
12768 else if (j == (pagesize - 4))
12769 nvram_cmd |= NVRAM_CMD_LAST;
12770
12771 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12772 break;
12773 }
12774 if (ret)
12775 break;
12776 }
12777
12778 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12779 tg3_nvram_exec_cmd(tp, nvram_cmd);
12780
12781 kfree(tmp);
12782
12783 return ret;
12784}
12785
12786/* offset and length are dword aligned */
12787static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
12788 u8 *buf)
12789{
12790 int i, ret = 0;
12791
12792 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012793 u32 page_off, phy_addr, nvram_cmd;
12794 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012795
12796 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080012797 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012798
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012799 page_off = offset % tp->nvram_pagesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012800
Michael Chan18201802006-03-20 22:29:15 -080012801 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012802
12803 tw32(NVRAM_ADDR, phy_addr);
12804
12805 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
12806
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012807 if (page_off == 0 || i == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012808 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070012809 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012810 nvram_cmd |= NVRAM_CMD_LAST;
12811
12812 if (i == (len - 4))
12813 nvram_cmd |= NVRAM_CMD_LAST;
12814
Matt Carlson321d32a2008-11-21 17:22:19 -080012815 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012816 !tg3_flag(tp, 5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070012817 (tp->nvram_jedecnum == JEDEC_ST) &&
12818 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012819
12820 if ((ret = tg3_nvram_exec_cmd(tp,
12821 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12822 NVRAM_CMD_DONE)))
12823
12824 break;
12825 }
Joe Perches63c3a662011-04-26 08:12:10 +000012826 if (!tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012827 /* We always do complete word writes to eeprom. */
12828 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12829 }
12830
12831 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12832 break;
12833 }
12834 return ret;
12835}
12836
12837/* offset and length are dword aligned */
12838static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12839{
12840 int ret;
12841
Joe Perches63c3a662011-04-26 08:12:10 +000012842 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012843 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12844 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012845 udelay(40);
12846 }
12847
Joe Perches63c3a662011-04-26 08:12:10 +000012848 if (!tg3_flag(tp, NVRAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012849 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
Matt Carlson859a5882010-04-05 10:19:28 +000012850 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012851 u32 grc_mode;
12852
Michael Chanec41c7d2006-01-17 02:40:55 -080012853 ret = tg3_nvram_lock(tp);
12854 if (ret)
12855 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012856
Michael Chane6af3012005-04-21 17:12:05 -070012857 tg3_enable_nvram_access(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000012858 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012859 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012860
12861 grc_mode = tr32(GRC_MODE);
12862 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12863
Joe Perches63c3a662011-04-26 08:12:10 +000012864 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012865 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12866 buf);
Matt Carlson859a5882010-04-05 10:19:28 +000012867 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012868 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12869 buf);
12870 }
12871
12872 grc_mode = tr32(GRC_MODE);
12873 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12874
Michael Chane6af3012005-04-21 17:12:05 -070012875 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012876 tg3_nvram_unlock(tp);
12877 }
12878
Joe Perches63c3a662011-04-26 08:12:10 +000012879 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012880 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012881 udelay(40);
12882 }
12883
12884 return ret;
12885}
12886
12887struct subsys_tbl_ent {
12888 u16 subsys_vendor, subsys_devid;
12889 u32 phy_id;
12890};
12891
Matt Carlson24daf2b2010-02-17 15:17:02 +000012892static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012893 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012894 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012895 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012896 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012897 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012898 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012899 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012900 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12901 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
12902 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012903 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012904 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012905 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012906 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12907 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
12908 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012909 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012910 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012911 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012912 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012913 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012914 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012915 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012916
12917 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012918 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012919 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012920 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012921 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012922 { TG3PCI_SUBVENDOR_ID_3COM,
12923 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
12924 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012925 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012926 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012927 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012928
12929 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012930 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012931 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012932 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012933 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012934 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012935 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012936 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012937 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012938
12939 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012940 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012941 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012942 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012943 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012944 { TG3PCI_SUBVENDOR_ID_COMPAQ,
12945 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
12946 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012947 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012948 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012949 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012950
12951 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012952 { TG3PCI_SUBVENDOR_ID_IBM,
12953 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012954};
12955
Matt Carlson24daf2b2010-02-17 15:17:02 +000012956static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012957{
12958 int i;
12959
12960 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
12961 if ((subsys_id_to_phy_id[i].subsys_vendor ==
12962 tp->pdev->subsystem_vendor) &&
12963 (subsys_id_to_phy_id[i].subsys_devid ==
12964 tp->pdev->subsystem_device))
12965 return &subsys_id_to_phy_id[i];
12966 }
12967 return NULL;
12968}
12969
Michael Chan7d0c41e2005-04-21 17:06:20 -070012970static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012971{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012972 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070012973
Matt Carlson79eb6902010-02-17 15:17:03 +000012974 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012975 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12976
Gary Zambranoa85feb82007-05-05 11:52:19 -070012977 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000012978 tg3_flag_set(tp, EEPROM_WRITE_PROT);
12979 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080012980
Michael Chanb5d37722006-09-27 16:06:21 -070012981 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080012982 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012983 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12984 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012985 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012986 val = tr32(VCPU_CFGSHDW);
12987 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000012988 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070012989 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012990 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012991 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012992 device_set_wakeup_enable(&tp->pdev->dev, true);
12993 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012994 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070012995 }
12996
Linus Torvalds1da177e2005-04-16 15:20:36 -070012997 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
12998 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
12999 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070013000 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013001 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013002
13003 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
13004 tp->nic_sram_data_cfg = nic_cfg;
13005
13006 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
13007 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Matt Carlson6ff6f812011-05-19 12:12:54 +000013008 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13009 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13010 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070013011 (ver > 0) && (ver < 0x100))
13012 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
13013
Matt Carlsona9daf362008-05-25 23:49:44 -070013014 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
13015 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
13016
Linus Torvalds1da177e2005-04-16 15:20:36 -070013017 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
13018 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
13019 eeprom_phy_serdes = 1;
13020
13021 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
13022 if (nic_phy_id != 0) {
13023 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
13024 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
13025
13026 eeprom_phy_id = (id1 >> 16) << 10;
13027 eeprom_phy_id |= (id2 & 0xfc00) << 16;
13028 eeprom_phy_id |= (id2 & 0x03ff) << 0;
13029 } else
13030 eeprom_phy_id = 0;
13031
Michael Chan7d0c41e2005-04-21 17:06:20 -070013032 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070013033 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000013034 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013035 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000013036 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013037 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070013038 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070013039
Joe Perches63c3a662011-04-26 08:12:10 +000013040 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013041 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
13042 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070013043 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070013044 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
13045
13046 switch (led_cfg) {
13047 default:
13048 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
13049 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13050 break;
13051
13052 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
13053 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13054 break;
13055
13056 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
13057 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070013058
13059 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
13060 * read on some older 5700/5701 bootcode.
13061 */
13062 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
13063 ASIC_REV_5700 ||
13064 GET_ASIC_REV(tp->pci_chip_rev_id) ==
13065 ASIC_REV_5701)
13066 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13067
Linus Torvalds1da177e2005-04-16 15:20:36 -070013068 break;
13069
13070 case SHASTA_EXT_LED_SHARED:
13071 tp->led_ctrl = LED_CTRL_MODE_SHARED;
13072 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
13073 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
13074 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13075 LED_CTRL_MODE_PHY_2);
13076 break;
13077
13078 case SHASTA_EXT_LED_MAC:
13079 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
13080 break;
13081
13082 case SHASTA_EXT_LED_COMBO:
13083 tp->led_ctrl = LED_CTRL_MODE_COMBO;
13084 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
13085 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13086 LED_CTRL_MODE_PHY_2);
13087 break;
13088
Stephen Hemminger855e1112008-04-16 16:37:28 -070013089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013090
13091 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13092 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
13093 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
13094 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13095
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013096 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
13097 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080013098
Michael Chan9d26e212006-12-07 00:21:14 -080013099 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000013100 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013101 if ((tp->pdev->subsystem_vendor ==
13102 PCI_VENDOR_ID_ARIMA) &&
13103 (tp->pdev->subsystem_device == 0x205a ||
13104 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000013105 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013106 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013107 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13108 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013110
13111 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000013112 tg3_flag_set(tp, ENABLE_ASF);
13113 if (tg3_flag(tp, 5750_PLUS))
13114 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013115 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013116
13117 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013118 tg3_flag(tp, 5750_PLUS))
13119 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013120
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013121 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070013122 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000013123 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013124
Joe Perches63c3a662011-04-26 08:12:10 +000013125 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013126 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013127 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013128 device_set_wakeup_enable(&tp->pdev->dev, true);
13129 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013130
Linus Torvalds1da177e2005-04-16 15:20:36 -070013131 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013132 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013133
13134 /* serdes signal pre-emphasis in register 0x590 set by */
13135 /* bootcode if bit 18 is set */
13136 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013137 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070013138
Joe Perches63c3a662011-04-26 08:12:10 +000013139 if ((tg3_flag(tp, 57765_PLUS) ||
13140 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13141 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080013142 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013143 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080013144
Joe Perches63c3a662011-04-26 08:12:10 +000013145 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000013146 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000013147 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070013148 u32 cfg3;
13149
13150 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
13151 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000013152 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070013153 }
Matt Carlsona9daf362008-05-25 23:49:44 -070013154
Matt Carlson14417062010-02-17 15:16:59 +000013155 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000013156 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070013157 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013158 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070013159 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013160 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013161 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013162done:
Joe Perches63c3a662011-04-26 08:12:10 +000013163 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013164 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000013165 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013166 else
13167 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070013168}
13169
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013170static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
13171{
13172 int i;
13173 u32 val;
13174
13175 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
13176 tw32(OTP_CTRL, cmd);
13177
13178 /* Wait for up to 1 ms for command to execute. */
13179 for (i = 0; i < 100; i++) {
13180 val = tr32(OTP_STATUS);
13181 if (val & OTP_STATUS_CMD_DONE)
13182 break;
13183 udelay(10);
13184 }
13185
13186 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
13187}
13188
13189/* Read the gphy configuration from the OTP region of the chip. The gphy
13190 * configuration is a 32-bit value that straddles the alignment boundary.
13191 * We do two 32-bit reads and then shift and merge the results.
13192 */
13193static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
13194{
13195 u32 bhalf_otp, thalf_otp;
13196
13197 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
13198
13199 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
13200 return 0;
13201
13202 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
13203
13204 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13205 return 0;
13206
13207 thalf_otp = tr32(OTP_READ_DATA);
13208
13209 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
13210
13211 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13212 return 0;
13213
13214 bhalf_otp = tr32(OTP_READ_DATA);
13215
13216 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
13217}
13218
Matt Carlsone256f8a2011-03-09 16:58:24 +000013219static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
13220{
13221 u32 adv = ADVERTISED_Autoneg |
13222 ADVERTISED_Pause;
13223
13224 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
13225 adv |= ADVERTISED_1000baseT_Half |
13226 ADVERTISED_1000baseT_Full;
13227
13228 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
13229 adv |= ADVERTISED_100baseT_Half |
13230 ADVERTISED_100baseT_Full |
13231 ADVERTISED_10baseT_Half |
13232 ADVERTISED_10baseT_Full |
13233 ADVERTISED_TP;
13234 else
13235 adv |= ADVERTISED_FIBRE;
13236
13237 tp->link_config.advertising = adv;
13238 tp->link_config.speed = SPEED_INVALID;
13239 tp->link_config.duplex = DUPLEX_INVALID;
13240 tp->link_config.autoneg = AUTONEG_ENABLE;
13241 tp->link_config.active_speed = SPEED_INVALID;
13242 tp->link_config.active_duplex = DUPLEX_INVALID;
13243 tp->link_config.orig_speed = SPEED_INVALID;
13244 tp->link_config.orig_duplex = DUPLEX_INVALID;
13245 tp->link_config.orig_autoneg = AUTONEG_INVALID;
13246}
13247
Michael Chan7d0c41e2005-04-21 17:06:20 -070013248static int __devinit tg3_phy_probe(struct tg3 *tp)
13249{
13250 u32 hw_phy_id_1, hw_phy_id_2;
13251 u32 hw_phy_id, hw_phy_id_masked;
13252 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013253
Matt Carlsone256f8a2011-03-09 16:58:24 +000013254 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000013255 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000013256 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
13257
Joe Perches63c3a662011-04-26 08:12:10 +000013258 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013259 return tg3_phy_init(tp);
13260
Linus Torvalds1da177e2005-04-16 15:20:36 -070013261 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010013262 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013263 */
13264 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000013265 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000013266 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013267 } else {
13268 /* Now read the physical PHY_ID from the chip and verify
13269 * that it is sane. If it doesn't look good, we fall back
13270 * to either the hard-coded table based PHY_ID and failing
13271 * that the value found in the eeprom area.
13272 */
13273 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
13274 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
13275
13276 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
13277 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
13278 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
13279
Matt Carlson79eb6902010-02-17 15:17:03 +000013280 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013281 }
13282
Matt Carlson79eb6902010-02-17 15:17:03 +000013283 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013284 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000013285 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013286 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070013287 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013288 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013289 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000013290 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070013291 /* Do nothing, phy ID already set up in
13292 * tg3_get_eeprom_hw_cfg().
13293 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013294 } else {
13295 struct subsys_tbl_ent *p;
13296
13297 /* No eeprom signature? Try the hardcoded
13298 * subsys device table.
13299 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013300 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013301 if (!p)
13302 return -ENODEV;
13303
13304 tp->phy_id = p->phy_id;
13305 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000013306 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013307 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013308 }
13309 }
13310
Matt Carlsona6b68da2010-12-06 08:28:52 +000013311 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Matt Carlson5baa5e92011-07-20 10:20:53 +000013312 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13313 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720 ||
13314 (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +000013315 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
13316 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
13317 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000013318 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
13319
Matt Carlsone256f8a2011-03-09 16:58:24 +000013320 tg3_phy_init_link_config(tp);
13321
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013322 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013323 !tg3_flag(tp, ENABLE_APE) &&
13324 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013325 u32 bmsr, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013326
13327 tg3_readphy(tp, MII_BMSR, &bmsr);
13328 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
13329 (bmsr & BMSR_LSTATUS))
13330 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013331
Linus Torvalds1da177e2005-04-16 15:20:36 -070013332 err = tg3_phy_reset(tp);
13333 if (err)
13334 return err;
13335
Matt Carlson42b64a42011-05-19 12:12:49 +000013336 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013337
Michael Chan3600d912006-12-07 00:21:48 -080013338 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
13339 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
13340 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
13341 if (!tg3_copper_is_advertising_all(tp, mask)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013342 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
13343 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013344
13345 tg3_writephy(tp, MII_BMCR,
13346 BMCR_ANENABLE | BMCR_ANRESTART);
13347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013348 }
13349
13350skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013351 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013352 err = tg3_init_5401phy_dsp(tp);
13353 if (err)
13354 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013355
Linus Torvalds1da177e2005-04-16 15:20:36 -070013356 err = tg3_init_5401phy_dsp(tp);
13357 }
13358
Linus Torvalds1da177e2005-04-16 15:20:36 -070013359 return err;
13360}
13361
Matt Carlson184b8902010-04-05 10:19:25 +000013362static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013363{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013364 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013365 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000013366 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000013367 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013368
Matt Carlson535a4902011-07-20 10:20:56 +000013369 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013370 if (!vpd_data)
13371 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013372
Matt Carlson535a4902011-07-20 10:20:56 +000013373 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000013374 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013375 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013376
13377 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13378 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13379 i += PCI_VPD_LRDT_TAG_SIZE;
13380
Matt Carlson535a4902011-07-20 10:20:56 +000013381 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013382 goto out_not_found;
13383
Matt Carlson184b8902010-04-05 10:19:25 +000013384 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13385 PCI_VPD_RO_KEYWORD_MFR_ID);
13386 if (j > 0) {
13387 len = pci_vpd_info_field_size(&vpd_data[j]);
13388
13389 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13390 if (j + len > block_end || len != 4 ||
13391 memcmp(&vpd_data[j], "1028", 4))
13392 goto partno;
13393
13394 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13395 PCI_VPD_RO_KEYWORD_VENDOR0);
13396 if (j < 0)
13397 goto partno;
13398
13399 len = pci_vpd_info_field_size(&vpd_data[j]);
13400
13401 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13402 if (j + len > block_end)
13403 goto partno;
13404
13405 memcpy(tp->fw_ver, &vpd_data[j], len);
Matt Carlson535a4902011-07-20 10:20:56 +000013406 strncat(tp->fw_ver, " bc ", vpdlen - len - 1);
Matt Carlson184b8902010-04-05 10:19:25 +000013407 }
13408
13409partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013410 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13411 PCI_VPD_RO_KEYWORD_PARTNO);
13412 if (i < 0)
13413 goto out_not_found;
13414
13415 len = pci_vpd_info_field_size(&vpd_data[i]);
13416
13417 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13418 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000013419 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013420 goto out_not_found;
13421
13422 memcpy(tp->board_part_number, &vpd_data[i], len);
13423
Linus Torvalds1da177e2005-04-16 15:20:36 -070013424out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013425 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013426 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013427 return;
13428
13429out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013430 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13431 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13432 strcpy(tp->board_part_number, "BCM5717");
13433 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13434 strcpy(tp->board_part_number, "BCM5718");
13435 else
13436 goto nomatch;
13437 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13438 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13439 strcpy(tp->board_part_number, "BCM57780");
13440 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13441 strcpy(tp->board_part_number, "BCM57760");
13442 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13443 strcpy(tp->board_part_number, "BCM57790");
13444 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13445 strcpy(tp->board_part_number, "BCM57788");
13446 else
13447 goto nomatch;
13448 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13449 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13450 strcpy(tp->board_part_number, "BCM57761");
13451 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
13452 strcpy(tp->board_part_number, "BCM57765");
13453 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
13454 strcpy(tp->board_part_number, "BCM57781");
13455 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
13456 strcpy(tp->board_part_number, "BCM57785");
13457 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
13458 strcpy(tp->board_part_number, "BCM57791");
13459 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13460 strcpy(tp->board_part_number, "BCM57795");
13461 else
13462 goto nomatch;
13463 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070013464 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000013465 } else {
13466nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070013467 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000013468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013469}
13470
Matt Carlson9c8a6202007-10-21 16:16:08 -070013471static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
13472{
13473 u32 val;
13474
Matt Carlsone4f34112009-02-25 14:25:00 +000013475 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013476 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013477 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013478 val != 0)
13479 return 0;
13480
13481 return 1;
13482}
13483
Matt Carlsonacd9c112009-02-25 14:26:33 +000013484static void __devinit tg3_read_bc_ver(struct tg3 *tp)
13485{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013486 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000013487 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013488 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013489
13490 if (tg3_nvram_read(tp, 0xc, &offset) ||
13491 tg3_nvram_read(tp, 0x4, &start))
13492 return;
13493
13494 offset = tg3_nvram_logical_addr(tp, offset);
13495
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013496 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013497 return;
13498
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013499 if ((val & 0xfc000000) == 0x0c000000) {
13500 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013501 return;
13502
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013503 if (val == 0)
13504 newver = true;
13505 }
13506
Matt Carlson75f99362010-04-05 10:19:24 +000013507 dst_off = strlen(tp->fw_ver);
13508
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013509 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000013510 if (TG3_VER_SIZE - dst_off < 16 ||
13511 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013512 return;
13513
13514 offset = offset + ver_offset - start;
13515 for (i = 0; i < 16; i += 4) {
13516 __be32 v;
13517 if (tg3_nvram_read_be32(tp, offset + i, &v))
13518 return;
13519
Matt Carlson75f99362010-04-05 10:19:24 +000013520 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013521 }
13522 } else {
13523 u32 major, minor;
13524
13525 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
13526 return;
13527
13528 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
13529 TG3_NVM_BCVER_MAJSFT;
13530 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000013531 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
13532 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013533 }
13534}
13535
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013536static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
13537{
13538 u32 val, major, minor;
13539
13540 /* Use native endian representation */
13541 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
13542 return;
13543
13544 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
13545 TG3_NVM_HWSB_CFG1_MAJSFT;
13546 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
13547 TG3_NVM_HWSB_CFG1_MINSFT;
13548
13549 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
13550}
13551
Matt Carlsondfe00d72008-11-21 17:19:41 -080013552static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
13553{
13554 u32 offset, major, minor, build;
13555
Matt Carlson75f99362010-04-05 10:19:24 +000013556 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013557
13558 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
13559 return;
13560
13561 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
13562 case TG3_EEPROM_SB_REVISION_0:
13563 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
13564 break;
13565 case TG3_EEPROM_SB_REVISION_2:
13566 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
13567 break;
13568 case TG3_EEPROM_SB_REVISION_3:
13569 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
13570 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000013571 case TG3_EEPROM_SB_REVISION_4:
13572 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
13573 break;
13574 case TG3_EEPROM_SB_REVISION_5:
13575 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
13576 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000013577 case TG3_EEPROM_SB_REVISION_6:
13578 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
13579 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013580 default:
13581 return;
13582 }
13583
Matt Carlsone4f34112009-02-25 14:25:00 +000013584 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080013585 return;
13586
13587 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
13588 TG3_EEPROM_SB_EDH_BLD_SHFT;
13589 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
13590 TG3_EEPROM_SB_EDH_MAJ_SHFT;
13591 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
13592
13593 if (minor > 99 || build > 26)
13594 return;
13595
Matt Carlson75f99362010-04-05 10:19:24 +000013596 offset = strlen(tp->fw_ver);
13597 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
13598 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013599
13600 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000013601 offset = strlen(tp->fw_ver);
13602 if (offset < TG3_VER_SIZE - 1)
13603 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013604 }
13605}
13606
Matt Carlsonacd9c112009-02-25 14:26:33 +000013607static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080013608{
13609 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013610 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070013611
13612 for (offset = TG3_NVM_DIR_START;
13613 offset < TG3_NVM_DIR_END;
13614 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013615 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013616 return;
13617
13618 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
13619 break;
13620 }
13621
13622 if (offset == TG3_NVM_DIR_END)
13623 return;
13624
Joe Perches63c3a662011-04-26 08:12:10 +000013625 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013626 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000013627 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013628 return;
13629
Matt Carlsone4f34112009-02-25 14:25:00 +000013630 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013631 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013632 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013633 return;
13634
13635 offset += val - start;
13636
Matt Carlsonacd9c112009-02-25 14:26:33 +000013637 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013638
Matt Carlsonacd9c112009-02-25 14:26:33 +000013639 tp->fw_ver[vlen++] = ',';
13640 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070013641
13642 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000013643 __be32 v;
13644 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013645 return;
13646
Al Virob9fc7dc2007-12-17 22:59:57 -080013647 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013648
Matt Carlsonacd9c112009-02-25 14:26:33 +000013649 if (vlen > TG3_VER_SIZE - sizeof(v)) {
13650 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013651 break;
13652 }
13653
Matt Carlsonacd9c112009-02-25 14:26:33 +000013654 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
13655 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013656 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000013657}
13658
Matt Carlson7fd76442009-02-25 14:27:20 +000013659static void __devinit tg3_read_dash_ver(struct tg3 *tp)
13660{
13661 int vlen;
13662 u32 apedata;
Matt Carlsonecc79642010-08-02 11:26:01 +000013663 char *fwtype;
Matt Carlson7fd76442009-02-25 14:27:20 +000013664
Joe Perches63c3a662011-04-26 08:12:10 +000013665 if (!tg3_flag(tp, ENABLE_APE) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000013666 return;
13667
13668 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
13669 if (apedata != APE_SEG_SIG_MAGIC)
13670 return;
13671
13672 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
13673 if (!(apedata & APE_FW_STATUS_READY))
13674 return;
13675
13676 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
13677
Matt Carlsondc6d0742010-09-15 08:59:55 +000013678 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI) {
Joe Perches63c3a662011-04-26 08:12:10 +000013679 tg3_flag_set(tp, APE_HAS_NCSI);
Matt Carlsonecc79642010-08-02 11:26:01 +000013680 fwtype = "NCSI";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013681 } else {
Matt Carlsonecc79642010-08-02 11:26:01 +000013682 fwtype = "DASH";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013683 }
Matt Carlsonecc79642010-08-02 11:26:01 +000013684
Matt Carlson7fd76442009-02-25 14:27:20 +000013685 vlen = strlen(tp->fw_ver);
13686
Matt Carlsonecc79642010-08-02 11:26:01 +000013687 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
13688 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000013689 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
13690 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
13691 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
13692 (apedata & APE_FW_VERSION_BLDMSK));
13693}
13694
Matt Carlsonacd9c112009-02-25 14:26:33 +000013695static void __devinit tg3_read_fw_ver(struct tg3 *tp)
13696{
13697 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000013698 bool vpd_vers = false;
13699
13700 if (tp->fw_ver[0] != 0)
13701 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013702
Joe Perches63c3a662011-04-26 08:12:10 +000013703 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000013704 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000013705 return;
13706 }
13707
Matt Carlsonacd9c112009-02-25 14:26:33 +000013708 if (tg3_nvram_read(tp, 0, &val))
13709 return;
13710
13711 if (val == TG3_EEPROM_MAGIC)
13712 tg3_read_bc_ver(tp);
13713 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
13714 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013715 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
13716 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013717 else
13718 return;
13719
Matt Carlsonc9cab242011-07-13 09:27:27 +000013720 if (vpd_vers)
Matt Carlson75f99362010-04-05 10:19:24 +000013721 goto done;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013722
Matt Carlsonc9cab242011-07-13 09:27:27 +000013723 if (tg3_flag(tp, ENABLE_APE)) {
13724 if (tg3_flag(tp, ENABLE_ASF))
13725 tg3_read_dash_ver(tp);
13726 } else if (tg3_flag(tp, ENABLE_ASF)) {
13727 tg3_read_mgmtfw_ver(tp);
13728 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070013729
Matt Carlson75f99362010-04-05 10:19:24 +000013730done:
Matt Carlson9c8a6202007-10-21 16:16:08 -070013731 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080013732}
13733
Michael Chan7544b092007-05-05 13:08:32 -070013734static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
13735
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013736static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
13737{
Joe Perches63c3a662011-04-26 08:12:10 +000013738 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013739 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000013740 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013741 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013742 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000013743 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013744}
13745
Matt Carlson41434702011-03-09 16:58:22 +000013746static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080013747 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
13748 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
13749 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
13750 { },
13751};
13752
Linus Torvalds1da177e2005-04-16 15:20:36 -070013753static int __devinit tg3_get_invariants(struct tg3 *tp)
13754{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013755 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013756 u32 pci_state_reg, grc_misc_cfg;
13757 u32 val;
13758 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013759 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013760
Linus Torvalds1da177e2005-04-16 15:20:36 -070013761 /* Force memory write invalidate off. If we leave it on,
13762 * then on 5700_BX chips we have to enable a workaround.
13763 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
13764 * to match the cacheline size. The Broadcom driver have this
13765 * workaround but turns MWI off all the times so never uses
13766 * it. This seems to suggest that the workaround is insufficient.
13767 */
13768 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13769 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
13770 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13771
Matt Carlson16821282011-07-13 09:27:28 +000013772 /* Important! -- Make sure register accesses are byteswapped
13773 * correctly. Also, for those chips that require it, make
13774 * sure that indirect register accesses are enabled before
13775 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013776 */
13777 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13778 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000013779 tp->misc_host_ctrl |= (misc_ctrl_reg &
13780 MISC_HOST_CTRL_CHIPREV);
13781 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13782 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013783
13784 tp->pci_chip_rev_id = (misc_ctrl_reg >>
13785 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070013786 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
13787 u32 prod_id_asic_rev;
13788
Matt Carlson5001e2f2009-11-13 13:03:51 +000013789 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
13790 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013791 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
13792 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013793 pci_read_config_dword(tp->pdev,
13794 TG3PCI_GEN2_PRODID_ASICREV,
13795 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000013796 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
13797 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
13798 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
13799 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
13800 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13801 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13802 pci_read_config_dword(tp->pdev,
13803 TG3PCI_GEN15_PRODID_ASICREV,
13804 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013805 else
13806 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
13807 &prod_id_asic_rev);
13808
Matt Carlson321d32a2008-11-21 17:22:19 -080013809 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070013810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013811
Michael Chanff645be2005-04-21 17:09:53 -070013812 /* Wrong chip ID in 5752 A0. This code can be removed later
13813 * as A0 is not in production.
13814 */
13815 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
13816 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
13817
Michael Chan68929142005-08-09 20:17:14 -070013818 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
13819 * we need to disable memory and use config. cycles
13820 * only to access all registers. The 5702/03 chips
13821 * can mistakenly decode the special cycles from the
13822 * ICH chipsets as memory write cycles, causing corruption
13823 * of register and memory space. Only certain ICH bridges
13824 * will drive special cycles with non-zero data during the
13825 * address phase which can fall within the 5703's address
13826 * range. This is not an ICH bug as the PCI spec allows
13827 * non-zero address during special cycles. However, only
13828 * these ICH bridges are known to drive non-zero addresses
13829 * during special cycles.
13830 *
13831 * Since special cycles do not cross PCI bridges, we only
13832 * enable this workaround if the 5703 is on the secondary
13833 * bus of these ICH bridges.
13834 */
13835 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
13836 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
13837 static struct tg3_dev_id {
13838 u32 vendor;
13839 u32 device;
13840 u32 rev;
13841 } ich_chipsets[] = {
13842 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
13843 PCI_ANY_ID },
13844 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
13845 PCI_ANY_ID },
13846 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
13847 0xa },
13848 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
13849 PCI_ANY_ID },
13850 { },
13851 };
13852 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13853 struct pci_dev *bridge = NULL;
13854
13855 while (pci_id->vendor != 0) {
13856 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13857 bridge);
13858 if (!bridge) {
13859 pci_id++;
13860 continue;
13861 }
13862 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013863 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013864 continue;
13865 }
13866 if (bridge->subordinate &&
13867 (bridge->subordinate->number ==
13868 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013869 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070013870 pci_dev_put(bridge);
13871 break;
13872 }
13873 }
13874 }
13875
Matt Carlson6ff6f812011-05-19 12:12:54 +000013876 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070013877 static struct tg3_dev_id {
13878 u32 vendor;
13879 u32 device;
13880 } bridge_chipsets[] = {
13881 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13882 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13883 { },
13884 };
13885 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13886 struct pci_dev *bridge = NULL;
13887
13888 while (pci_id->vendor != 0) {
13889 bridge = pci_get_device(pci_id->vendor,
13890 pci_id->device,
13891 bridge);
13892 if (!bridge) {
13893 pci_id++;
13894 continue;
13895 }
13896 if (bridge->subordinate &&
13897 (bridge->subordinate->number <=
13898 tp->pdev->bus->number) &&
13899 (bridge->subordinate->subordinate >=
13900 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013901 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070013902 pci_dev_put(bridge);
13903 break;
13904 }
13905 }
13906 }
13907
Michael Chan4a29cc22006-03-19 13:21:12 -080013908 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
13909 * DMA addresses > 40-bit. This bridge may have other additional
13910 * 57xx devices behind it in some 4-port NIC designs for example.
13911 * Any tg3 device found behind the bridge will also need the 40-bit
13912 * DMA workaround.
13913 */
Michael Chana4e2b342005-10-26 15:46:52 -070013914 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
13915 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Joe Perches63c3a662011-04-26 08:12:10 +000013916 tg3_flag_set(tp, 5780_CLASS);
13917 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070013918 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a5882010-04-05 10:19:28 +000013919 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080013920 struct pci_dev *bridge = NULL;
13921
13922 do {
13923 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
13924 PCI_DEVICE_ID_SERVERWORKS_EPB,
13925 bridge);
13926 if (bridge && bridge->subordinate &&
13927 (bridge->subordinate->number <=
13928 tp->pdev->bus->number) &&
13929 (bridge->subordinate->subordinate >=
13930 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013931 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080013932 pci_dev_put(bridge);
13933 break;
13934 }
13935 } while (bridge);
13936 }
Michael Chan4cf78e42005-07-25 12:29:19 -070013937
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013938 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Matt Carlson3a1e19d2011-07-13 09:27:32 +000013939 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070013940 tp->pdev_peer = tg3_find_peer(tp);
13941
Matt Carlsonc885e822010-08-02 11:25:57 +000013942 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013943 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13944 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000013945 tg3_flag_set(tp, 5717_PLUS);
Matt Carlson0a58d662011-04-05 14:22:45 +000013946
13947 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013948 tg3_flag(tp, 5717_PLUS))
13949 tg3_flag_set(tp, 57765_PLUS);
Matt Carlsonc885e822010-08-02 11:25:57 +000013950
Matt Carlson321d32a2008-11-21 17:22:19 -080013951 /* Intentionally exclude ASIC_REV_5906 */
13952 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad2006-03-20 22:27:35 -080013953 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013954 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013955 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013956 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013957 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013958 tg3_flag(tp, 57765_PLUS))
13959 tg3_flag_set(tp, 5755_PLUS);
Matt Carlson321d32a2008-11-21 17:22:19 -080013960
13961 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13962 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070013963 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013964 tg3_flag(tp, 5755_PLUS) ||
13965 tg3_flag(tp, 5780_CLASS))
13966 tg3_flag_set(tp, 5750_PLUS);
John W. Linville6708e5c2005-04-21 17:00:52 -070013967
Matt Carlson6ff6f812011-05-19 12:12:54 +000013968 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013969 tg3_flag(tp, 5750_PLUS))
13970 tg3_flag_set(tp, 5705_PLUS);
John W. Linville1b440c562005-04-21 17:03:18 -070013971
Matt Carlson507399f2009-11-13 13:03:37 +000013972 /* Determine TSO capabilities */
Matt Carlsona0512942011-07-27 14:20:54 +000013973 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000013974 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000013975 else if (tg3_flag(tp, 57765_PLUS))
13976 tg3_flag_set(tp, HW_TSO_3);
13977 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000013978 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013979 tg3_flag_set(tp, HW_TSO_2);
13980 else if (tg3_flag(tp, 5750_PLUS)) {
13981 tg3_flag_set(tp, HW_TSO_1);
13982 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013983 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
13984 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000013985 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013986 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13987 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13988 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013989 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013990 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
13991 tp->fw_needed = FIRMWARE_TG3TSO5;
13992 else
13993 tp->fw_needed = FIRMWARE_TG3TSO;
13994 }
13995
Matt Carlsondabc5c62011-05-19 12:12:52 +000013996 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000013997 if (tg3_flag(tp, HW_TSO_1) ||
13998 tg3_flag(tp, HW_TSO_2) ||
13999 tg3_flag(tp, HW_TSO_3) ||
Matt Carlsondabc5c62011-05-19 12:12:52 +000014000 (tp->fw_needed && !tg3_flag(tp, ENABLE_ASF)))
14001 tg3_flag_set(tp, TSO_CAPABLE);
14002 else {
14003 tg3_flag_clear(tp, TSO_CAPABLE);
14004 tg3_flag_clear(tp, TSO_BUG);
14005 tp->fw_needed = NULL;
14006 }
14007
14008 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
14009 tp->fw_needed = FIRMWARE_TG3;
14010
Matt Carlson507399f2009-11-13 13:03:37 +000014011 tp->irq_max = 1;
14012
Joe Perches63c3a662011-04-26 08:12:10 +000014013 if (tg3_flag(tp, 5750_PLUS)) {
14014 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014015 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
14016 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
14017 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
14018 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
14019 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000014020 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014021
Joe Perches63c3a662011-04-26 08:12:10 +000014022 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070014023 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014024 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070014025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014026
Joe Perches63c3a662011-04-26 08:12:10 +000014027 if (tg3_flag(tp, 57765_PLUS)) {
14028 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000014029 tp->irq_max = TG3_IRQ_MAX_VECS;
14030 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014031 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000014032
Matt Carlson2ffcc982011-05-19 12:12:44 +000014033 if (tg3_flag(tp, 5755_PLUS))
Joe Perches63c3a662011-04-26 08:12:10 +000014034 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014035
Matt Carlsone31aa982011-07-27 14:20:53 +000014036 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
14037 tg3_flag_set(tp, 4K_FIFO_LIMIT);
14038
Joe Perches63c3a662011-04-26 08:12:10 +000014039 if (tg3_flag(tp, 5717_PLUS))
14040 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000014041
Joe Perches63c3a662011-04-26 08:12:10 +000014042 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlsona0512942011-07-27 14:20:54 +000014043 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000014044 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000014045
Joe Perches63c3a662011-04-26 08:12:10 +000014046 if (!tg3_flag(tp, 5705_PLUS) ||
14047 tg3_flag(tp, 5780_CLASS) ||
14048 tg3_flag(tp, USE_JUMBO_BDFLAG))
14049 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070014050
Matt Carlson52f44902008-11-21 17:17:04 -080014051 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14052 &pci_state_reg);
14053
Jon Mason708ebb32011-06-27 12:56:50 +000014054 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014055 u16 lnkctl;
14056
Joe Perches63c3a662011-04-26 08:12:10 +000014057 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080014058
Matt Carlsoncf790032010-11-24 08:31:48 +000014059 tp->pcie_readrq = 4096;
Matt Carlsond78b59f2011-04-05 14:22:46 +000014060 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14061 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Matt Carlsonb4495ed2011-01-25 15:58:47 +000014062 tp->pcie_readrq = 2048;
Matt Carlsoncf790032010-11-24 08:31:48 +000014063
14064 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080014065
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014066 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +000014067 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014068 &lnkctl);
14069 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Matt Carlson7196cd62011-05-19 16:02:44 +000014070 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
14071 ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014072 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000014073 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000014074 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014075 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014076 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000014077 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
14078 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000014079 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b05902010-01-20 16:58:02 +000014080 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014081 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080014082 }
Matt Carlson52f44902008-11-21 17:17:04 -080014083 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Jon Mason708ebb32011-06-27 12:56:50 +000014084 /* BCM5785 devices are effectively PCIe devices, and should
14085 * follow PCIe codepaths, but do not have a PCIe capabilities
14086 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000014087 */
Joe Perches63c3a662011-04-26 08:12:10 +000014088 tg3_flag_set(tp, PCI_EXPRESS);
14089 } else if (!tg3_flag(tp, 5705_PLUS) ||
14090 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080014091 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
14092 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000014093 dev_err(&tp->pdev->dev,
14094 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080014095 return -EIO;
14096 }
14097
14098 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000014099 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080014100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014101
Michael Chan399de502005-10-03 14:02:39 -070014102 /* If we have an AMD 762 or VIA K8T800 chipset, write
14103 * reordering to the mailbox registers done by the host
14104 * controller can cause major troubles. We read back from
14105 * every mailbox register write to force the writes to be
14106 * posted to the chip in order.
14107 */
Matt Carlson41434702011-03-09 16:58:22 +000014108 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014109 !tg3_flag(tp, PCI_EXPRESS))
14110 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070014111
Matt Carlson69fc4052008-12-21 20:19:57 -080014112 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
14113 &tp->pci_cacheline_sz);
14114 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14115 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014116 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14117 tp->pci_lat_timer < 64) {
14118 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080014119 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14120 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014121 }
14122
Matt Carlson16821282011-07-13 09:27:28 +000014123 /* Important! -- It is critical that the PCI-X hw workaround
14124 * situation is decided before the first MMIO register access.
14125 */
Matt Carlson52f44902008-11-21 17:17:04 -080014126 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
14127 /* 5700 BX chips need to have their TX producer index
14128 * mailboxes written twice to workaround a bug.
14129 */
Joe Perches63c3a662011-04-26 08:12:10 +000014130 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070014131
Matt Carlson52f44902008-11-21 17:17:04 -080014132 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014133 *
14134 * The workaround is to use indirect register accesses
14135 * for all chip writes not to mailbox registers.
14136 */
Joe Perches63c3a662011-04-26 08:12:10 +000014137 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014138 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014139
Joe Perches63c3a662011-04-26 08:12:10 +000014140 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014141
14142 /* The chip can have it's power management PCI config
14143 * space registers clobbered due to this bug.
14144 * So explicitly force the chip into D0 here.
14145 */
Matt Carlson9974a352007-10-07 23:27:28 -070014146 pci_read_config_dword(tp->pdev,
14147 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014148 &pm_reg);
14149 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
14150 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070014151 pci_write_config_dword(tp->pdev,
14152 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014153 pm_reg);
14154
14155 /* Also, force SERR#/PERR# in PCI command. */
14156 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14157 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
14158 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14159 }
14160 }
14161
Linus Torvalds1da177e2005-04-16 15:20:36 -070014162 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014163 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014164 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014165 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014166
14167 /* Chip-specific fixup from Broadcom driver */
14168 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
14169 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
14170 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
14171 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
14172 }
14173
Michael Chan1ee582d2005-08-09 20:16:46 -070014174 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070014175 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014176 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070014177 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070014178 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014179 tp->write32_tx_mbox = tg3_write32;
14180 tp->write32_rx_mbox = tg3_write32;
14181
14182 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000014183 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070014184 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014185 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014186 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070014187 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
14188 /*
14189 * Back to back register writes can cause problems on these
14190 * chips, the workaround is to read back all reg writes
14191 * except those to mailbox regs.
14192 *
14193 * See tg3_write_indirect_reg32().
14194 */
Michael Chan1ee582d2005-08-09 20:16:46 -070014195 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014196 }
14197
Joe Perches63c3a662011-04-26 08:12:10 +000014198 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070014199 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000014200 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070014201 tp->write32_rx_mbox = tg3_write_flush_reg32;
14202 }
Michael Chan20094932005-08-09 20:16:32 -070014203
Joe Perches63c3a662011-04-26 08:12:10 +000014204 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070014205 tp->read32 = tg3_read_indirect_reg32;
14206 tp->write32 = tg3_write_indirect_reg32;
14207 tp->read32_mbox = tg3_read_indirect_mbox;
14208 tp->write32_mbox = tg3_write_indirect_mbox;
14209 tp->write32_tx_mbox = tg3_write_indirect_mbox;
14210 tp->write32_rx_mbox = tg3_write_indirect_mbox;
14211
14212 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014213 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014214
14215 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14216 pci_cmd &= ~PCI_COMMAND_MEMORY;
14217 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14218 }
Michael Chanb5d37722006-09-27 16:06:21 -070014219 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14220 tp->read32_mbox = tg3_read32_mbox_5906;
14221 tp->write32_mbox = tg3_write32_mbox_5906;
14222 tp->write32_tx_mbox = tg3_write32_mbox_5906;
14223 tp->write32_rx_mbox = tg3_write32_mbox_5906;
14224 }
Michael Chan68929142005-08-09 20:17:14 -070014225
Michael Chanbbadf502006-04-06 21:46:34 -070014226 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014227 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070014228 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070014229 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000014230 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070014231
Matt Carlson16821282011-07-13 09:27:28 +000014232 /* The memory arbiter has to be enabled in order for SRAM accesses
14233 * to succeed. Normally on powerup the tg3 chip firmware will make
14234 * sure it is enabled, but other entities such as system netboot
14235 * code might disable it.
14236 */
14237 val = tr32(MEMARB_MODE);
14238 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
14239
Matt Carlson9dc5e342011-11-04 09:15:02 +000014240 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
14241 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
14242 tg3_flag(tp, 5780_CLASS)) {
14243 if (tg3_flag(tp, PCIX_MODE)) {
14244 pci_read_config_dword(tp->pdev,
14245 tp->pcix_cap + PCI_X_STATUS,
14246 &val);
14247 tp->pci_fn = val & 0x7;
14248 }
14249 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
14250 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14251 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14252 NIC_SRAM_CPMUSTAT_SIG) {
14253 tp->pci_fn = val & TG3_CPMU_STATUS_FMSK_5717;
14254 tp->pci_fn = tp->pci_fn ? 1 : 0;
14255 }
14256 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14257 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
14258 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14259 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14260 NIC_SRAM_CPMUSTAT_SIG) {
14261 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
14262 TG3_CPMU_STATUS_FSHFT_5719;
14263 }
Matt Carlson69f11c92011-07-13 09:27:30 +000014264 }
14265
Michael Chan7d0c41e2005-04-21 17:06:20 -070014266 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000014267 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070014268 * determined before calling tg3_set_power_state() so that
14269 * we know whether or not to switch out of Vaux power.
14270 * When the flag is set, it means that GPIO1 is used for eeprom
14271 * write protect and also implies that it is a LOM where GPIOs
14272 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014273 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070014274 tg3_get_eeprom_hw_cfg(tp);
14275
Joe Perches63c3a662011-04-26 08:12:10 +000014276 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014277 /* Allow reads and writes to the
14278 * APE register and memory space.
14279 */
14280 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc2010-06-05 17:24:30 +000014281 PCISTATE_ALLOW_APE_SHMEM_WR |
14282 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014283 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
14284 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000014285
14286 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014287 }
14288
Matt Carlson9936bcf2007-10-10 18:03:07 -070014289 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070014290 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014291 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014292 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014293 tg3_flag(tp, 57765_PLUS))
14294 tg3_flag_set(tp, CPMU_PRESENT);
Matt Carlsond30cdd22007-10-07 23:28:35 -070014295
Matt Carlson16821282011-07-13 09:27:28 +000014296 /* Set up tp->grc_local_ctrl before calling
14297 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
14298 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070014299 * It is also used as eeprom write protect on LOMs.
14300 */
14301 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014302 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014303 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070014304 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
14305 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070014306 /* Unused GPIO3 must be driven as output on 5752 because there
14307 * are no pull-up resistors on unused GPIO pins.
14308 */
14309 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
14310 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070014311
Matt Carlson321d32a2008-11-21 17:22:19 -080014312 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000014313 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
14314 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Michael Chanaf36e6b2006-03-23 01:28:06 -080014315 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
14316
Matt Carlson8d519ab2009-04-20 06:58:01 +000014317 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
14318 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014319 /* Turn off the debug UART. */
14320 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014321 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014322 /* Keep VMain power. */
14323 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
14324 GRC_LCLCTRL_GPIO_OUTPUT0;
14325 }
14326
Matt Carlson16821282011-07-13 09:27:28 +000014327 /* Switch out of Vaux if it is a NIC */
14328 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014329
Linus Torvalds1da177e2005-04-16 15:20:36 -070014330 /* Derive initial jumbo mode from MTU assigned in
14331 * ether_setup() via the alloc_etherdev() call
14332 */
Joe Perches63c3a662011-04-26 08:12:10 +000014333 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
14334 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014335
14336 /* Determine WakeOnLan speed to use. */
14337 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14338 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
14339 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
14340 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000014341 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014342 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014343 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014344 }
14345
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014346 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014347 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014348
Linus Torvalds1da177e2005-04-16 15:20:36 -070014349 /* A few boards don't want Ethernet@WireSpeed phy feature */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014350 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14351 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014352 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070014353 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014354 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
14355 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14356 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014357
14358 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
14359 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014360 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014361 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014362 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014363
Joe Perches63c3a662011-04-26 08:12:10 +000014364 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014365 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080014366 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014367 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014368 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070014369 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070014370 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070014371 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14372 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080014373 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
14374 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014375 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080014376 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014377 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080014378 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014379 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070014380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014381
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014382 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14383 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
14384 tp->phy_otp = tg3_read_otp_phycfg(tp);
14385 if (tp->phy_otp == 0)
14386 tp->phy_otp = TG3_OTP_DEFAULT;
14387 }
14388
Joe Perches63c3a662011-04-26 08:12:10 +000014389 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070014390 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
14391 else
14392 tp->mi_mode = MAC_MI_MODE_BASE;
14393
Linus Torvalds1da177e2005-04-16 15:20:36 -070014394 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014395 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
14396 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
14397 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
14398
Matt Carlson4d958472011-04-20 07:57:35 +000014399 /* Set these bits to enable statistics workaround. */
14400 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14401 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
14402 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
14403 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
14404 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
14405 }
14406
Matt Carlson321d32a2008-11-21 17:22:19 -080014407 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14408 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000014409 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070014410
Matt Carlson158d7ab2008-05-29 01:37:54 -070014411 err = tg3_mdio_init(tp);
14412 if (err)
14413 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014414
14415 /* Initialize data/descriptor byte/word swapping. */
14416 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000014417 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14418 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
14419 GRC_MODE_WORD_SWAP_B2HRX_DATA |
14420 GRC_MODE_B2HRX_ENABLE |
14421 GRC_MODE_HTX2B_ENABLE |
14422 GRC_MODE_HOST_STACKUP);
14423 else
14424 val &= GRC_MODE_HOST_STACKUP;
14425
Linus Torvalds1da177e2005-04-16 15:20:36 -070014426 tw32(GRC_MODE, val | tp->grc_mode);
14427
14428 tg3_switch_clocks(tp);
14429
14430 /* Clear this out for sanity. */
14431 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
14432
14433 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14434 &pci_state_reg);
14435 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014436 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014437 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
14438
14439 if (chiprevid == CHIPREV_ID_5701_A0 ||
14440 chiprevid == CHIPREV_ID_5701_B0 ||
14441 chiprevid == CHIPREV_ID_5701_B2 ||
14442 chiprevid == CHIPREV_ID_5701_B5) {
14443 void __iomem *sram_base;
14444
14445 /* Write some dummy words into the SRAM status block
14446 * area, see if it reads back correctly. If the return
14447 * value is bad, force enable the PCIX workaround.
14448 */
14449 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
14450
14451 writel(0x00000000, sram_base);
14452 writel(0x00000000, sram_base + 4);
14453 writel(0xffffffff, sram_base + 4);
14454 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000014455 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014456 }
14457 }
14458
14459 udelay(50);
14460 tg3_nvram_init(tp);
14461
14462 grc_misc_cfg = tr32(GRC_MISC_CFG);
14463 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
14464
Linus Torvalds1da177e2005-04-16 15:20:36 -070014465 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14466 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
14467 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000014468 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014469
Joe Perches63c3a662011-04-26 08:12:10 +000014470 if (!tg3_flag(tp, IS_5788) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +000014471 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014472 tg3_flag_set(tp, TAGGED_STATUS);
14473 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070014474 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
14475 HOSTCC_MODE_CLRTICK_TXBD);
14476
14477 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
14478 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14479 tp->misc_host_ctrl);
14480 }
14481
Matt Carlson3bda1252008-08-15 14:08:22 -070014482 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000014483 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000014484 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070014485 else
Matt Carlson6e01b202011-08-19 13:58:20 +000014486 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070014487
Linus Torvalds1da177e2005-04-16 15:20:36 -070014488 /* these are limited to 10/100 only */
14489 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14490 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
14491 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14492 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14493 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
14494 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
14495 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
14496 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14497 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080014498 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
14499 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014500 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000014501 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14502 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014503 (tp->phy_flags & TG3_PHYFLG_IS_FET))
14504 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014505
14506 err = tg3_phy_probe(tp);
14507 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014508 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014509 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014510 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014511 }
14512
Matt Carlson184b8902010-04-05 10:19:25 +000014513 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080014514 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014515
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014516 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
14517 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014518 } else {
14519 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014520 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014521 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014522 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014523 }
14524
14525 /* 5700 {AX,BX} chips have a broken status block link
14526 * change bit implementation, so we must use the
14527 * status register in those cases.
14528 */
14529 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014530 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014531 else
Joe Perches63c3a662011-04-26 08:12:10 +000014532 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014533
14534 /* The led_ctrl is set during tg3_phy_probe, here we might
14535 * have to force the link status polling mechanism based
14536 * upon subsystem IDs.
14537 */
14538 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070014539 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014540 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
14541 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000014542 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014543 }
14544
14545 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014546 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000014547 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014548 else
Joe Perches63c3a662011-04-26 08:12:10 +000014549 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014550
Matt Carlsonbf933c82011-01-25 15:58:49 +000014551 tp->rx_offset = NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014552 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014553 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014554 tg3_flag(tp, PCIX_MODE)) {
Matt Carlsonbf933c82011-01-25 15:58:49 +000014555 tp->rx_offset = 0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014556#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000014557 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014558#endif
14559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014560
Matt Carlson2c49a442010-09-30 10:34:35 +000014561 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
14562 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014563 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
14564
Matt Carlson2c49a442010-09-30 10:34:35 +000014565 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070014566
14567 /* Increment the rx prod index on the rx std ring by at most
14568 * 8 for these chips to workaround hw errata.
14569 */
14570 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14571 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14572 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
14573 tp->rx_std_max_post = 8;
14574
Joe Perches63c3a662011-04-26 08:12:10 +000014575 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070014576 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
14577 PCIE_PWR_MGMT_L1_THRESH_MSK;
14578
Linus Torvalds1da177e2005-04-16 15:20:36 -070014579 return err;
14580}
14581
David S. Miller49b6e95f2007-03-29 01:38:42 -070014582#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014583static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
14584{
14585 struct net_device *dev = tp->dev;
14586 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014587 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070014588 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014589 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014590
David S. Miller49b6e95f2007-03-29 01:38:42 -070014591 addr = of_get_property(dp, "local-mac-address", &len);
14592 if (addr && len == 6) {
14593 memcpy(dev->dev_addr, addr, 6);
14594 memcpy(dev->perm_addr, dev->dev_addr, 6);
14595 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014596 }
14597 return -ENODEV;
14598}
14599
14600static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
14601{
14602 struct net_device *dev = tp->dev;
14603
14604 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070014605 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014606 return 0;
14607}
14608#endif
14609
14610static int __devinit tg3_get_device_address(struct tg3 *tp)
14611{
14612 struct net_device *dev = tp->dev;
14613 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080014614 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014615
David S. Miller49b6e95f2007-03-29 01:38:42 -070014616#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014617 if (!tg3_get_macaddr_sparc(tp))
14618 return 0;
14619#endif
14620
14621 mac_offset = 0x7c;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014622 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014623 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014624 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
14625 mac_offset = 0xcc;
14626 if (tg3_nvram_lock(tp))
14627 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
14628 else
14629 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000014630 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000014631 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014632 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000014633 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000014634 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014635 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014636 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014637
14638 /* First try to get it from MAC address mailbox. */
14639 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
14640 if ((hi >> 16) == 0x484b) {
14641 dev->dev_addr[0] = (hi >> 8) & 0xff;
14642 dev->dev_addr[1] = (hi >> 0) & 0xff;
14643
14644 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
14645 dev->dev_addr[2] = (lo >> 24) & 0xff;
14646 dev->dev_addr[3] = (lo >> 16) & 0xff;
14647 dev->dev_addr[4] = (lo >> 8) & 0xff;
14648 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014649
Michael Chan008652b2006-03-27 23:14:53 -080014650 /* Some old bootcode may report a 0 MAC address in SRAM */
14651 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
14652 }
14653 if (!addr_ok) {
14654 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000014655 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000014656 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000014657 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070014658 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
14659 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080014660 }
14661 /* Finally just fetch it out of the MAC control regs. */
14662 else {
14663 hi = tr32(MAC_ADDR_0_HIGH);
14664 lo = tr32(MAC_ADDR_0_LOW);
14665
14666 dev->dev_addr[5] = lo & 0xff;
14667 dev->dev_addr[4] = (lo >> 8) & 0xff;
14668 dev->dev_addr[3] = (lo >> 16) & 0xff;
14669 dev->dev_addr[2] = (lo >> 24) & 0xff;
14670 dev->dev_addr[1] = hi & 0xff;
14671 dev->dev_addr[0] = (hi >> 8) & 0xff;
14672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014673 }
14674
14675 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070014676#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014677 if (!tg3_get_default_macaddr_sparc(tp))
14678 return 0;
14679#endif
14680 return -EINVAL;
14681 }
John W. Linville2ff43692005-09-12 14:44:20 -070014682 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014683 return 0;
14684}
14685
David S. Miller59e6b432005-05-18 22:50:10 -070014686#define BOUNDARY_SINGLE_CACHELINE 1
14687#define BOUNDARY_MULTI_CACHELINE 2
14688
14689static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
14690{
14691 int cacheline_size;
14692 u8 byte;
14693 int goal;
14694
14695 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
14696 if (byte == 0)
14697 cacheline_size = 1024;
14698 else
14699 cacheline_size = (int) byte * 4;
14700
14701 /* On 5703 and later chips, the boundary bits have no
14702 * effect.
14703 */
14704 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14705 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014706 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070014707 goto out;
14708
14709#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
14710 goal = BOUNDARY_MULTI_CACHELINE;
14711#else
14712#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
14713 goal = BOUNDARY_SINGLE_CACHELINE;
14714#else
14715 goal = 0;
14716#endif
14717#endif
14718
Joe Perches63c3a662011-04-26 08:12:10 +000014719 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014720 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
14721 goto out;
14722 }
14723
David S. Miller59e6b432005-05-18 22:50:10 -070014724 if (!goal)
14725 goto out;
14726
14727 /* PCI controllers on most RISC systems tend to disconnect
14728 * when a device tries to burst across a cache-line boundary.
14729 * Therefore, letting tg3 do so just wastes PCI bandwidth.
14730 *
14731 * Unfortunately, for PCI-E there are only limited
14732 * write-side controls for this, and thus for reads
14733 * we will still get the disconnects. We'll also waste
14734 * these PCI cycles for both read and write for chips
14735 * other than 5700 and 5701 which do not implement the
14736 * boundary bits.
14737 */
Joe Perches63c3a662011-04-26 08:12:10 +000014738 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014739 switch (cacheline_size) {
14740 case 16:
14741 case 32:
14742 case 64:
14743 case 128:
14744 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14745 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
14746 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
14747 } else {
14748 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14749 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14750 }
14751 break;
14752
14753 case 256:
14754 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
14755 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
14756 break;
14757
14758 default:
14759 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14760 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14761 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014762 }
Joe Perches63c3a662011-04-26 08:12:10 +000014763 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014764 switch (cacheline_size) {
14765 case 16:
14766 case 32:
14767 case 64:
14768 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14769 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14770 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
14771 break;
14772 }
14773 /* fallthrough */
14774 case 128:
14775 default:
14776 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14777 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
14778 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014779 }
David S. Miller59e6b432005-05-18 22:50:10 -070014780 } else {
14781 switch (cacheline_size) {
14782 case 16:
14783 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14784 val |= (DMA_RWCTRL_READ_BNDRY_16 |
14785 DMA_RWCTRL_WRITE_BNDRY_16);
14786 break;
14787 }
14788 /* fallthrough */
14789 case 32:
14790 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14791 val |= (DMA_RWCTRL_READ_BNDRY_32 |
14792 DMA_RWCTRL_WRITE_BNDRY_32);
14793 break;
14794 }
14795 /* fallthrough */
14796 case 64:
14797 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14798 val |= (DMA_RWCTRL_READ_BNDRY_64 |
14799 DMA_RWCTRL_WRITE_BNDRY_64);
14800 break;
14801 }
14802 /* fallthrough */
14803 case 128:
14804 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14805 val |= (DMA_RWCTRL_READ_BNDRY_128 |
14806 DMA_RWCTRL_WRITE_BNDRY_128);
14807 break;
14808 }
14809 /* fallthrough */
14810 case 256:
14811 val |= (DMA_RWCTRL_READ_BNDRY_256 |
14812 DMA_RWCTRL_WRITE_BNDRY_256);
14813 break;
14814 case 512:
14815 val |= (DMA_RWCTRL_READ_BNDRY_512 |
14816 DMA_RWCTRL_WRITE_BNDRY_512);
14817 break;
14818 case 1024:
14819 default:
14820 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
14821 DMA_RWCTRL_WRITE_BNDRY_1024);
14822 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014823 }
David S. Miller59e6b432005-05-18 22:50:10 -070014824 }
14825
14826out:
14827 return val;
14828}
14829
Linus Torvalds1da177e2005-04-16 15:20:36 -070014830static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
14831{
14832 struct tg3_internal_buffer_desc test_desc;
14833 u32 sram_dma_descs;
14834 int i, ret;
14835
14836 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
14837
14838 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
14839 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
14840 tw32(RDMAC_STATUS, 0);
14841 tw32(WDMAC_STATUS, 0);
14842
14843 tw32(BUFMGR_MODE, 0);
14844 tw32(FTQ_RESET, 0);
14845
14846 test_desc.addr_hi = ((u64) buf_dma) >> 32;
14847 test_desc.addr_lo = buf_dma & 0xffffffff;
14848 test_desc.nic_mbuf = 0x00002100;
14849 test_desc.len = size;
14850
14851 /*
14852 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
14853 * the *second* time the tg3 driver was getting loaded after an
14854 * initial scan.
14855 *
14856 * Broadcom tells me:
14857 * ...the DMA engine is connected to the GRC block and a DMA
14858 * reset may affect the GRC block in some unpredictable way...
14859 * The behavior of resets to individual blocks has not been tested.
14860 *
14861 * Broadcom noted the GRC reset will also reset all sub-components.
14862 */
14863 if (to_device) {
14864 test_desc.cqid_sqid = (13 << 8) | 2;
14865
14866 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
14867 udelay(40);
14868 } else {
14869 test_desc.cqid_sqid = (16 << 8) | 7;
14870
14871 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
14872 udelay(40);
14873 }
14874 test_desc.flags = 0x00000005;
14875
14876 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
14877 u32 val;
14878
14879 val = *(((u32 *)&test_desc) + i);
14880 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
14881 sram_dma_descs + (i * sizeof(u32)));
14882 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
14883 }
14884 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
14885
Matt Carlson859a5882010-04-05 10:19:28 +000014886 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014887 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a5882010-04-05 10:19:28 +000014888 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014889 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014890
14891 ret = -ENODEV;
14892 for (i = 0; i < 40; i++) {
14893 u32 val;
14894
14895 if (to_device)
14896 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
14897 else
14898 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
14899 if ((val & 0xffff) == sram_dma_descs) {
14900 ret = 0;
14901 break;
14902 }
14903
14904 udelay(100);
14905 }
14906
14907 return ret;
14908}
14909
David S. Millerded73402005-05-23 13:59:47 -070014910#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070014911
Matt Carlson41434702011-03-09 16:58:22 +000014912static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080014913 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
14914 { },
14915};
14916
Linus Torvalds1da177e2005-04-16 15:20:36 -070014917static int __devinit tg3_test_dma(struct tg3 *tp)
14918{
14919 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070014920 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014921 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014922
Matt Carlson4bae65c2010-11-24 08:31:52 +000014923 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
14924 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014925 if (!buf) {
14926 ret = -ENOMEM;
14927 goto out_nofree;
14928 }
14929
14930 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
14931 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
14932
David S. Miller59e6b432005-05-18 22:50:10 -070014933 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014934
Joe Perches63c3a662011-04-26 08:12:10 +000014935 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014936 goto out;
14937
Joe Perches63c3a662011-04-26 08:12:10 +000014938 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014939 /* DMA read watermark not used on PCIE */
14940 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000014941 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070014942 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14943 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014944 tp->dma_rwctrl |= 0x003f0000;
14945 else
14946 tp->dma_rwctrl |= 0x003f000f;
14947 } else {
14948 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14949 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
14950 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080014951 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014952
Michael Chan4a29cc22006-03-19 13:21:12 -080014953 /* If the 5704 is behind the EPB bridge, we can
14954 * do the less restrictive ONE_DMA workaround for
14955 * better performance.
14956 */
Joe Perches63c3a662011-04-26 08:12:10 +000014957 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080014958 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14959 tp->dma_rwctrl |= 0x8000;
14960 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014961 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
14962
Michael Chan49afdeb2007-02-13 12:17:03 -080014963 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
14964 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070014965 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080014966 tp->dma_rwctrl |=
14967 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
14968 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
14969 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070014970 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
14971 /* 5780 always in PCIX mode */
14972 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070014973 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
14974 /* 5714 always in PCIX mode */
14975 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014976 } else {
14977 tp->dma_rwctrl |= 0x001b000f;
14978 }
14979 }
14980
14981 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14982 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14983 tp->dma_rwctrl &= 0xfffffff0;
14984
14985 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14986 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
14987 /* Remove this if it causes problems for some boards. */
14988 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
14989
14990 /* On 5700/5701 chips, we need to set this bit.
14991 * Otherwise the chip will issue cacheline transactions
14992 * to streamable DMA memory with not all the byte
14993 * enables turned on. This is an error on several
14994 * RISC PCI controllers, in particular sparc64.
14995 *
14996 * On 5703/5704 chips, this bit has been reassigned
14997 * a different meaning. In particular, it is used
14998 * on those chips to enable a PCI-X workaround.
14999 */
15000 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
15001 }
15002
15003 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15004
15005#if 0
15006 /* Unneeded, already done by tg3_get_invariants. */
15007 tg3_switch_clocks(tp);
15008#endif
15009
Linus Torvalds1da177e2005-04-16 15:20:36 -070015010 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
15011 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
15012 goto out;
15013
David S. Miller59e6b432005-05-18 22:50:10 -070015014 /* It is best to perform DMA test with maximum write burst size
15015 * to expose the 5700/5701 write DMA bug.
15016 */
15017 saved_dma_rwctrl = tp->dma_rwctrl;
15018 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15019 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15020
Linus Torvalds1da177e2005-04-16 15:20:36 -070015021 while (1) {
15022 u32 *p = buf, i;
15023
15024 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
15025 p[i] = i;
15026
15027 /* Send the buffer to the chip. */
15028 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
15029 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000015030 dev_err(&tp->pdev->dev,
15031 "%s: Buffer write failed. err = %d\n",
15032 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015033 break;
15034 }
15035
15036#if 0
15037 /* validate data reached card RAM correctly. */
15038 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15039 u32 val;
15040 tg3_read_mem(tp, 0x2100 + (i*4), &val);
15041 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000015042 dev_err(&tp->pdev->dev,
15043 "%s: Buffer corrupted on device! "
15044 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015045 /* ret = -ENODEV here? */
15046 }
15047 p[i] = 0;
15048 }
15049#endif
15050 /* Now read it back. */
15051 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
15052 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000015053 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
15054 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015055 break;
15056 }
15057
15058 /* Verify it. */
15059 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15060 if (p[i] == i)
15061 continue;
15062
David S. Miller59e6b432005-05-18 22:50:10 -070015063 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15064 DMA_RWCTRL_WRITE_BNDRY_16) {
15065 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015066 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
15067 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15068 break;
15069 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000015070 dev_err(&tp->pdev->dev,
15071 "%s: Buffer corrupted on read back! "
15072 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015073 ret = -ENODEV;
15074 goto out;
15075 }
15076 }
15077
15078 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
15079 /* Success. */
15080 ret = 0;
15081 break;
15082 }
15083 }
David S. Miller59e6b432005-05-18 22:50:10 -070015084 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15085 DMA_RWCTRL_WRITE_BNDRY_16) {
15086 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070015087 * now look for chipsets that are known to expose the
15088 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070015089 */
Matt Carlson41434702011-03-09 16:58:22 +000015090 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015091 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15092 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a5882010-04-05 10:19:28 +000015093 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015094 /* Safe to use the calculated DMA boundary. */
15095 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a5882010-04-05 10:19:28 +000015096 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070015097
David S. Miller59e6b432005-05-18 22:50:10 -070015098 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015100
15101out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000015102 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015103out_nofree:
15104 return ret;
15105}
15106
Linus Torvalds1da177e2005-04-16 15:20:36 -070015107static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
15108{
Joe Perches63c3a662011-04-26 08:12:10 +000015109 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000015110 tp->bufmgr_config.mbuf_read_dma_low_water =
15111 DEFAULT_MB_RDMA_LOW_WATER_5705;
15112 tp->bufmgr_config.mbuf_mac_rx_low_water =
15113 DEFAULT_MB_MACRX_LOW_WATER_57765;
15114 tp->bufmgr_config.mbuf_high_water =
15115 DEFAULT_MB_HIGH_WATER_57765;
15116
15117 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15118 DEFAULT_MB_RDMA_LOW_WATER_5705;
15119 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15120 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
15121 tp->bufmgr_config.mbuf_high_water_jumbo =
15122 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000015123 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec172005-07-25 12:31:48 -070015124 tp->bufmgr_config.mbuf_read_dma_low_water =
15125 DEFAULT_MB_RDMA_LOW_WATER_5705;
15126 tp->bufmgr_config.mbuf_mac_rx_low_water =
15127 DEFAULT_MB_MACRX_LOW_WATER_5705;
15128 tp->bufmgr_config.mbuf_high_water =
15129 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070015130 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
15131 tp->bufmgr_config.mbuf_mac_rx_low_water =
15132 DEFAULT_MB_MACRX_LOW_WATER_5906;
15133 tp->bufmgr_config.mbuf_high_water =
15134 DEFAULT_MB_HIGH_WATER_5906;
15135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015136
Michael Chanfdfec172005-07-25 12:31:48 -070015137 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15138 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
15139 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15140 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
15141 tp->bufmgr_config.mbuf_high_water_jumbo =
15142 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
15143 } else {
15144 tp->bufmgr_config.mbuf_read_dma_low_water =
15145 DEFAULT_MB_RDMA_LOW_WATER;
15146 tp->bufmgr_config.mbuf_mac_rx_low_water =
15147 DEFAULT_MB_MACRX_LOW_WATER;
15148 tp->bufmgr_config.mbuf_high_water =
15149 DEFAULT_MB_HIGH_WATER;
15150
15151 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15152 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
15153 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15154 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
15155 tp->bufmgr_config.mbuf_high_water_jumbo =
15156 DEFAULT_MB_HIGH_WATER_JUMBO;
15157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015158
15159 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
15160 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
15161}
15162
15163static char * __devinit tg3_phy_string(struct tg3 *tp)
15164{
Matt Carlson79eb6902010-02-17 15:17:03 +000015165 switch (tp->phy_id & TG3_PHY_ID_MASK) {
15166 case TG3_PHY_ID_BCM5400: return "5400";
15167 case TG3_PHY_ID_BCM5401: return "5401";
15168 case TG3_PHY_ID_BCM5411: return "5411";
15169 case TG3_PHY_ID_BCM5701: return "5701";
15170 case TG3_PHY_ID_BCM5703: return "5703";
15171 case TG3_PHY_ID_BCM5704: return "5704";
15172 case TG3_PHY_ID_BCM5705: return "5705";
15173 case TG3_PHY_ID_BCM5750: return "5750";
15174 case TG3_PHY_ID_BCM5752: return "5752";
15175 case TG3_PHY_ID_BCM5714: return "5714";
15176 case TG3_PHY_ID_BCM5780: return "5780";
15177 case TG3_PHY_ID_BCM5755: return "5755";
15178 case TG3_PHY_ID_BCM5787: return "5787";
15179 case TG3_PHY_ID_BCM5784: return "5784";
15180 case TG3_PHY_ID_BCM5756: return "5722/5756";
15181 case TG3_PHY_ID_BCM5906: return "5906";
15182 case TG3_PHY_ID_BCM5761: return "5761";
15183 case TG3_PHY_ID_BCM5718C: return "5718C";
15184 case TG3_PHY_ID_BCM5718S: return "5718S";
15185 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000015186 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000015187 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000015188 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070015189 case 0: return "serdes";
15190 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070015191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015192}
15193
Michael Chanf9804dd2005-09-27 12:13:10 -070015194static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
15195{
Joe Perches63c3a662011-04-26 08:12:10 +000015196 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015197 strcpy(str, "PCI Express");
15198 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000015199 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015200 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
15201
15202 strcpy(str, "PCIX:");
15203
15204 if ((clock_ctrl == 7) ||
15205 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
15206 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
15207 strcat(str, "133MHz");
15208 else if (clock_ctrl == 0)
15209 strcat(str, "33MHz");
15210 else if (clock_ctrl == 2)
15211 strcat(str, "50MHz");
15212 else if (clock_ctrl == 4)
15213 strcat(str, "66MHz");
15214 else if (clock_ctrl == 6)
15215 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070015216 } else {
15217 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000015218 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070015219 strcat(str, "66MHz");
15220 else
15221 strcat(str, "33MHz");
15222 }
Joe Perches63c3a662011-04-26 08:12:10 +000015223 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070015224 strcat(str, ":32-bit");
15225 else
15226 strcat(str, ":64-bit");
15227 return str;
15228}
15229
Michael Chan8c2dc7e2005-12-19 16:26:02 -080015230static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015231{
15232 struct pci_dev *peer;
15233 unsigned int func, devnr = tp->pdev->devfn & ~7;
15234
15235 for (func = 0; func < 8; func++) {
15236 peer = pci_get_slot(tp->pdev->bus, devnr | func);
15237 if (peer && peer != tp->pdev)
15238 break;
15239 pci_dev_put(peer);
15240 }
Michael Chan16fe9d72005-12-13 21:09:54 -080015241 /* 5704 can be configured in single-port mode, set peer to
15242 * tp->pdev in that case.
15243 */
15244 if (!peer) {
15245 peer = tp->pdev;
15246 return peer;
15247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015248
15249 /*
15250 * We don't need to keep the refcount elevated; there's no way
15251 * to remove one half of this device without removing the other
15252 */
15253 pci_dev_put(peer);
15254
15255 return peer;
15256}
15257
David S. Miller15f98502005-05-18 22:49:26 -070015258static void __devinit tg3_init_coal(struct tg3 *tp)
15259{
15260 struct ethtool_coalesce *ec = &tp->coal;
15261
15262 memset(ec, 0, sizeof(*ec));
15263 ec->cmd = ETHTOOL_GCOALESCE;
15264 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
15265 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
15266 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
15267 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
15268 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
15269 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
15270 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
15271 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
15272 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
15273
15274 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
15275 HOSTCC_MODE_CLRTICK_TXBD)) {
15276 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
15277 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
15278 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
15279 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
15280 }
Michael Chand244c892005-07-05 14:42:33 -070015281
Joe Perches63c3a662011-04-26 08:12:10 +000015282 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070015283 ec->rx_coalesce_usecs_irq = 0;
15284 ec->tx_coalesce_usecs_irq = 0;
15285 ec->stats_block_coalesce_usecs = 0;
15286 }
David S. Miller15f98502005-05-18 22:49:26 -070015287}
15288
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080015289static const struct net_device_ops tg3_netdev_ops = {
15290 .ndo_open = tg3_open,
15291 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080015292 .ndo_start_xmit = tg3_start_xmit,
Eric Dumazet511d2222010-07-07 20:44:24 +000015293 .ndo_get_stats64 = tg3_get_stats64,
Stephen Hemminger00829822008-11-20 20:14:53 -080015294 .ndo_validate_addr = eth_validate_addr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +000015295 .ndo_set_rx_mode = tg3_set_rx_mode,
Stephen Hemminger00829822008-11-20 20:14:53 -080015296 .ndo_set_mac_address = tg3_set_mac_addr,
15297 .ndo_do_ioctl = tg3_ioctl,
15298 .ndo_tx_timeout = tg3_tx_timeout,
15299 .ndo_change_mtu = tg3_change_mtu,
Michał Mirosławdc668912011-04-07 03:35:07 +000015300 .ndo_fix_features = tg3_fix_features,
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015301 .ndo_set_features = tg3_set_features,
Stephen Hemminger00829822008-11-20 20:14:53 -080015302#ifdef CONFIG_NET_POLL_CONTROLLER
15303 .ndo_poll_controller = tg3_poll_controller,
15304#endif
15305};
15306
Linus Torvalds1da177e2005-04-16 15:20:36 -070015307static int __devinit tg3_init_one(struct pci_dev *pdev,
15308 const struct pci_device_id *ent)
15309{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015310 struct net_device *dev;
15311 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000015312 int i, err, pm_cap;
15313 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070015314 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080015315 u64 dma_mask, persist_dma_mask;
Matt Carlson0da06062011-05-19 12:12:53 +000015316 u32 features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015317
Joe Perches05dbe002010-02-17 19:44:19 +000015318 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015319
15320 err = pci_enable_device(pdev);
15321 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015322 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015323 return err;
15324 }
15325
Linus Torvalds1da177e2005-04-16 15:20:36 -070015326 err = pci_request_regions(pdev, DRV_MODULE_NAME);
15327 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015328 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015329 goto err_out_disable_pdev;
15330 }
15331
15332 pci_set_master(pdev);
15333
15334 /* Find power-management capability. */
15335 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
15336 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000015337 dev_err(&pdev->dev,
15338 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015339 err = -EIO;
15340 goto err_out_free_res;
15341 }
15342
Matt Carlson16821282011-07-13 09:27:28 +000015343 err = pci_set_power_state(pdev, PCI_D0);
15344 if (err) {
15345 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
15346 goto err_out_free_res;
15347 }
15348
Matt Carlsonfe5f5782009-09-01 13:09:39 +000015349 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015350 if (!dev) {
Matt Carlson2445e462010-04-05 10:19:21 +000015351 dev_err(&pdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015352 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000015353 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015354 }
15355
Linus Torvalds1da177e2005-04-16 15:20:36 -070015356 SET_NETDEV_DEV(dev, &pdev->dev);
15357
Linus Torvalds1da177e2005-04-16 15:20:36 -070015358 tp = netdev_priv(dev);
15359 tp->pdev = pdev;
15360 tp->dev = dev;
15361 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015362 tp->rx_mode = TG3_DEF_RX_MODE;
15363 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070015364
Linus Torvalds1da177e2005-04-16 15:20:36 -070015365 if (tg3_debug > 0)
15366 tp->msg_enable = tg3_debug;
15367 else
15368 tp->msg_enable = TG3_DEF_MSG_ENABLE;
15369
15370 /* The word/byte swap controls here control register access byte
15371 * swapping. DMA data byte swapping is controlled in the GRC_MODE
15372 * setting below.
15373 */
15374 tp->misc_host_ctrl =
15375 MISC_HOST_CTRL_MASK_PCI_INT |
15376 MISC_HOST_CTRL_WORD_SWAP |
15377 MISC_HOST_CTRL_INDIR_ACCESS |
15378 MISC_HOST_CTRL_PCISTATE_RW;
15379
15380 /* The NONFRM (non-frame) byte/word swap controls take effect
15381 * on descriptor entries, anything which isn't packet data.
15382 *
15383 * The StrongARM chips on the board (one for tx, one for rx)
15384 * are running in big-endian mode.
15385 */
15386 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
15387 GRC_MODE_WSWAP_NONFRM_DATA);
15388#ifdef __BIG_ENDIAN
15389 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
15390#endif
15391 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015392 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000015393 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015394
Matt Carlsond5fe4882008-11-21 17:20:32 -080015395 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010015396 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015397 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015398 err = -ENOMEM;
15399 goto err_out_free_dev;
15400 }
15401
Matt Carlsonc9cab242011-07-13 09:27:27 +000015402 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
15403 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
15404 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
15405 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
15406 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15407 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15408 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
15409 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720) {
15410 tg3_flag_set(tp, ENABLE_APE);
15411 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
15412 if (!tp->aperegs) {
15413 dev_err(&pdev->dev,
15414 "Cannot map APE registers, aborting\n");
15415 err = -ENOMEM;
15416 goto err_out_iounmap;
15417 }
15418 }
15419
Linus Torvalds1da177e2005-04-16 15:20:36 -070015420 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
15421 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015422
Linus Torvalds1da177e2005-04-16 15:20:36 -070015423 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015424 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000015425 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015426 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015427
15428 err = tg3_get_invariants(tp);
15429 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015430 dev_err(&pdev->dev,
15431 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015432 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015433 }
15434
Michael Chan4a29cc22006-03-19 13:21:12 -080015435 /* The EPB bridge inside 5714, 5715, and 5780 and any
15436 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015437 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
15438 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
15439 * do DMA address check in tg3_start_xmit().
15440 */
Joe Perches63c3a662011-04-26 08:12:10 +000015441 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070015442 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000015443 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070015444 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080015445#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070015446 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015447#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080015448 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070015449 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015450
15451 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070015452 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080015453 err = pci_set_dma_mask(pdev, dma_mask);
15454 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000015455 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080015456 err = pci_set_consistent_dma_mask(pdev,
15457 persist_dma_mask);
15458 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015459 dev_err(&pdev->dev, "Unable to obtain 64 bit "
15460 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015461 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015462 }
15463 }
15464 }
Yang Hongyang284901a2009-04-06 19:01:15 -070015465 if (err || dma_mask == DMA_BIT_MASK(32)) {
15466 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080015467 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015468 dev_err(&pdev->dev,
15469 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015470 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015471 }
15472 }
15473
Michael Chanfdfec172005-07-25 12:31:48 -070015474 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015475
Matt Carlson0da06062011-05-19 12:12:53 +000015476 features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
15477
15478 /* 5700 B0 chips do not support checksumming correctly due
15479 * to hardware bugs.
15480 */
15481 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
15482 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
15483
15484 if (tg3_flag(tp, 5755_PLUS))
15485 features |= NETIF_F_IPV6_CSUM;
15486 }
15487
Michael Chan4e3a7aa2006-03-20 17:47:44 -080015488 /* TSO is on by default on chips that support hardware TSO.
15489 * Firmware TSO on older chips gives lower performance, so it
15490 * is off by default, but can be enabled using ethtool.
15491 */
Joe Perches63c3a662011-04-26 08:12:10 +000015492 if ((tg3_flag(tp, HW_TSO_1) ||
15493 tg3_flag(tp, HW_TSO_2) ||
15494 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000015495 (features & NETIF_F_IP_CSUM))
15496 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000015497 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000015498 if (features & NETIF_F_IPV6_CSUM)
15499 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000015500 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000015501 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070015502 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15503 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000015504 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000015505 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000015506 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070015507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015508
Matt Carlsond542fe22011-05-19 16:02:43 +000015509 dev->features |= features;
15510 dev->vlan_features |= features;
15511
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015512 /*
15513 * Add loopback capability only for a subset of devices that support
15514 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
15515 * loopback for the remaining devices.
15516 */
15517 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
15518 !tg3_flag(tp, CPMU_PRESENT))
15519 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000015520 features |= NETIF_F_LOOPBACK;
15521
Matt Carlson0da06062011-05-19 12:12:53 +000015522 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015523
Linus Torvalds1da177e2005-04-16 15:20:36 -070015524 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015525 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015526 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015527 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015528 tp->rx_pending = 63;
15529 }
15530
Linus Torvalds1da177e2005-04-16 15:20:36 -070015531 err = tg3_get_device_address(tp);
15532 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015533 dev_err(&pdev->dev,
15534 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015535 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015536 }
15537
Matt Carlsonc88864d2007-11-12 21:07:01 -080015538 /*
15539 * Reset chip in case UNDI or EFI driver did not shutdown
15540 * DMA self test will enable WDMAC and we'll see (spurious)
15541 * pending DMA on the PCI bus at that point.
15542 */
15543 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
15544 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
15545 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
15546 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
15547 }
15548
15549 err = tg3_test_dma(tp);
15550 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015551 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080015552 goto err_out_apeunmap;
15553 }
15554
Matt Carlson78f90dc2009-11-13 13:03:42 +000015555 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
15556 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
15557 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000015558 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000015559 struct tg3_napi *tnapi = &tp->napi[i];
15560
15561 tnapi->tp = tp;
15562 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
15563
15564 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000015565 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015566 intmbx += 0x8;
15567 else
15568 intmbx += 0x4;
15569
15570 tnapi->consmbox = rcvmbx;
15571 tnapi->prodmbox = sndmbx;
15572
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015573 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015574 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015575 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000015576 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000015577
Joe Perches63c3a662011-04-26 08:12:10 +000015578 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000015579 break;
15580
15581 /*
15582 * If we support MSIX, we'll be using RSS. If we're using
15583 * RSS, the first vector only handles link interrupts and the
15584 * remaining vectors handle rx and tx interrupts. Reuse the
15585 * mailbox values for the next iteration. The values we setup
15586 * above are still useful for the single vectored mode.
15587 */
15588 if (!i)
15589 continue;
15590
15591 rcvmbx += 0x8;
15592
15593 if (sndmbx & 0x4)
15594 sndmbx -= 0x4;
15595 else
15596 sndmbx += 0xc;
15597 }
15598
Matt Carlsonc88864d2007-11-12 21:07:01 -080015599 tg3_init_coal(tp);
15600
Michael Chanc49a1562006-12-17 17:07:29 -080015601 pci_set_drvdata(pdev, dev);
15602
Matt Carlsoncd0d7222011-07-13 09:27:33 +000015603 if (tg3_flag(tp, 5717_PLUS)) {
15604 /* Resume a low-power mode */
15605 tg3_frob_aux_power(tp, false);
15606 }
15607
Linus Torvalds1da177e2005-04-16 15:20:36 -070015608 err = register_netdev(dev);
15609 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015610 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015611 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015612 }
15613
Joe Perches05dbe002010-02-17 19:44:19 +000015614 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
15615 tp->board_part_number,
15616 tp->pci_chip_rev_id,
15617 tg3_bus_string(tp, str),
15618 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015619
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015620 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000015621 struct phy_device *phydev;
15622 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000015623 netdev_info(dev,
15624 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000015625 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015626 } else {
15627 char *ethtype;
15628
15629 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
15630 ethtype = "10/100Base-TX";
15631 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
15632 ethtype = "1000Base-SX";
15633 else
15634 ethtype = "10/100/1000Base-T";
15635
Matt Carlson5129c3a2010-04-05 10:19:23 +000015636 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000015637 "(WireSpeed[%d], EEE[%d])\n",
15638 tg3_phy_string(tp), ethtype,
15639 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
15640 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015641 }
Matt Carlsondf59c942008-11-03 16:52:56 -080015642
Joe Perches05dbe002010-02-17 19:44:19 +000015643 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000015644 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015645 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015646 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015647 tg3_flag(tp, ENABLE_ASF) != 0,
15648 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000015649 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
15650 tp->dma_rwctrl,
15651 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
15652 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015653
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015654 pci_save_state(pdev);
15655
Linus Torvalds1da177e2005-04-16 15:20:36 -070015656 return 0;
15657
Matt Carlson0d3031d2007-10-10 18:02:43 -070015658err_out_apeunmap:
15659 if (tp->aperegs) {
15660 iounmap(tp->aperegs);
15661 tp->aperegs = NULL;
15662 }
15663
Linus Torvalds1da177e2005-04-16 15:20:36 -070015664err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070015665 if (tp->regs) {
15666 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015667 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015669
15670err_out_free_dev:
15671 free_netdev(dev);
15672
Matt Carlson16821282011-07-13 09:27:28 +000015673err_out_power_down:
15674 pci_set_power_state(pdev, PCI_D3hot);
15675
Linus Torvalds1da177e2005-04-16 15:20:36 -070015676err_out_free_res:
15677 pci_release_regions(pdev);
15678
15679err_out_disable_pdev:
15680 pci_disable_device(pdev);
15681 pci_set_drvdata(pdev, NULL);
15682 return err;
15683}
15684
15685static void __devexit tg3_remove_one(struct pci_dev *pdev)
15686{
15687 struct net_device *dev = pci_get_drvdata(pdev);
15688
15689 if (dev) {
15690 struct tg3 *tp = netdev_priv(dev);
15691
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015692 if (tp->fw)
15693 release_firmware(tp->fw);
15694
Matt Carlsondb219972011-11-04 09:15:03 +000015695 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015696
David S. Miller1805b2f2011-10-24 18:18:09 -040015697 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015698 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015699 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015700 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070015701
Linus Torvalds1da177e2005-04-16 15:20:36 -070015702 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015703 if (tp->aperegs) {
15704 iounmap(tp->aperegs);
15705 tp->aperegs = NULL;
15706 }
Michael Chan68929142005-08-09 20:17:14 -070015707 if (tp->regs) {
15708 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015709 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015711 free_netdev(dev);
15712 pci_release_regions(pdev);
15713 pci_disable_device(pdev);
15714 pci_set_drvdata(pdev, NULL);
15715 }
15716}
15717
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015718#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015719static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015720{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015721 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015722 struct net_device *dev = pci_get_drvdata(pdev);
15723 struct tg3 *tp = netdev_priv(dev);
15724 int err;
15725
15726 if (!netif_running(dev))
15727 return 0;
15728
Matt Carlsondb219972011-11-04 09:15:03 +000015729 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015730 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015731 tg3_netif_stop(tp);
15732
15733 del_timer_sync(&tp->timer);
15734
David S. Millerf47c11e2005-06-24 20:18:35 -070015735 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015736 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070015737 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015738
15739 netif_device_detach(dev);
15740
David S. Millerf47c11e2005-06-24 20:18:35 -070015741 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070015742 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000015743 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070015744 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015745
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015746 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015747 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015748 int err2;
15749
David S. Millerf47c11e2005-06-24 20:18:35 -070015750 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015751
Joe Perches63c3a662011-04-26 08:12:10 +000015752 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015753 err2 = tg3_restart_hw(tp, 1);
15754 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070015755 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015756
15757 tp->timer.expires = jiffies + tp->timer_offset;
15758 add_timer(&tp->timer);
15759
15760 netif_device_attach(dev);
15761 tg3_netif_start(tp);
15762
Michael Chanb9ec6c12006-07-25 16:37:27 -070015763out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015764 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015765
15766 if (!err2)
15767 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015768 }
15769
15770 return err;
15771}
15772
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015773static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015774{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015775 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015776 struct net_device *dev = pci_get_drvdata(pdev);
15777 struct tg3 *tp = netdev_priv(dev);
15778 int err;
15779
15780 if (!netif_running(dev))
15781 return 0;
15782
Linus Torvalds1da177e2005-04-16 15:20:36 -070015783 netif_device_attach(dev);
15784
David S. Millerf47c11e2005-06-24 20:18:35 -070015785 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015786
Joe Perches63c3a662011-04-26 08:12:10 +000015787 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070015788 err = tg3_restart_hw(tp, 1);
15789 if (err)
15790 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015791
15792 tp->timer.expires = jiffies + tp->timer_offset;
15793 add_timer(&tp->timer);
15794
Linus Torvalds1da177e2005-04-16 15:20:36 -070015795 tg3_netif_start(tp);
15796
Michael Chanb9ec6c12006-07-25 16:37:27 -070015797out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015798 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015799
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015800 if (!err)
15801 tg3_phy_start(tp);
15802
Michael Chanb9ec6c12006-07-25 16:37:27 -070015803 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015804}
15805
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015806static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015807#define TG3_PM_OPS (&tg3_pm_ops)
15808
15809#else
15810
15811#define TG3_PM_OPS NULL
15812
15813#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015814
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015815/**
15816 * tg3_io_error_detected - called when PCI error is detected
15817 * @pdev: Pointer to PCI device
15818 * @state: The current pci connection state
15819 *
15820 * This function is called after a PCI bus error affecting
15821 * this device has been detected.
15822 */
15823static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
15824 pci_channel_state_t state)
15825{
15826 struct net_device *netdev = pci_get_drvdata(pdev);
15827 struct tg3 *tp = netdev_priv(netdev);
15828 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
15829
15830 netdev_info(netdev, "PCI I/O error detected\n");
15831
15832 rtnl_lock();
15833
15834 if (!netif_running(netdev))
15835 goto done;
15836
15837 tg3_phy_stop(tp);
15838
15839 tg3_netif_stop(tp);
15840
15841 del_timer_sync(&tp->timer);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015842
15843 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000015844 tg3_reset_task_cancel(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000015845 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015846
15847 netif_device_detach(netdev);
15848
15849 /* Clean up software state, even if MMIO is blocked */
15850 tg3_full_lock(tp, 0);
15851 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
15852 tg3_full_unlock(tp);
15853
15854done:
15855 if (state == pci_channel_io_perm_failure)
15856 err = PCI_ERS_RESULT_DISCONNECT;
15857 else
15858 pci_disable_device(pdev);
15859
15860 rtnl_unlock();
15861
15862 return err;
15863}
15864
15865/**
15866 * tg3_io_slot_reset - called after the pci bus has been reset.
15867 * @pdev: Pointer to PCI device
15868 *
15869 * Restart the card from scratch, as if from a cold-boot.
15870 * At this point, the card has exprienced a hard reset,
15871 * followed by fixups by BIOS, and has its config space
15872 * set up identically to what it was at cold boot.
15873 */
15874static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
15875{
15876 struct net_device *netdev = pci_get_drvdata(pdev);
15877 struct tg3 *tp = netdev_priv(netdev);
15878 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
15879 int err;
15880
15881 rtnl_lock();
15882
15883 if (pci_enable_device(pdev)) {
15884 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
15885 goto done;
15886 }
15887
15888 pci_set_master(pdev);
15889 pci_restore_state(pdev);
15890 pci_save_state(pdev);
15891
15892 if (!netif_running(netdev)) {
15893 rc = PCI_ERS_RESULT_RECOVERED;
15894 goto done;
15895 }
15896
15897 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000015898 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015899 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015900
15901 rc = PCI_ERS_RESULT_RECOVERED;
15902
15903done:
15904 rtnl_unlock();
15905
15906 return rc;
15907}
15908
15909/**
15910 * tg3_io_resume - called when traffic can start flowing again.
15911 * @pdev: Pointer to PCI device
15912 *
15913 * This callback is called when the error recovery driver tells
15914 * us that its OK to resume normal operation.
15915 */
15916static void tg3_io_resume(struct pci_dev *pdev)
15917{
15918 struct net_device *netdev = pci_get_drvdata(pdev);
15919 struct tg3 *tp = netdev_priv(netdev);
15920 int err;
15921
15922 rtnl_lock();
15923
15924 if (!netif_running(netdev))
15925 goto done;
15926
15927 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000015928 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015929 err = tg3_restart_hw(tp, 1);
15930 tg3_full_unlock(tp);
15931 if (err) {
15932 netdev_err(netdev, "Cannot restart hardware after reset.\n");
15933 goto done;
15934 }
15935
15936 netif_device_attach(netdev);
15937
15938 tp->timer.expires = jiffies + tp->timer_offset;
15939 add_timer(&tp->timer);
15940
15941 tg3_netif_start(tp);
15942
15943 tg3_phy_start(tp);
15944
15945done:
15946 rtnl_unlock();
15947}
15948
15949static struct pci_error_handlers tg3_err_handler = {
15950 .error_detected = tg3_io_error_detected,
15951 .slot_reset = tg3_io_slot_reset,
15952 .resume = tg3_io_resume
15953};
15954
Linus Torvalds1da177e2005-04-16 15:20:36 -070015955static struct pci_driver tg3_driver = {
15956 .name = DRV_MODULE_NAME,
15957 .id_table = tg3_pci_tbl,
15958 .probe = tg3_init_one,
15959 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015960 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015961 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015962};
15963
15964static int __init tg3_init(void)
15965{
Jeff Garzik29917622006-08-19 17:48:59 -040015966 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015967}
15968
15969static void __exit tg3_cleanup(void)
15970{
15971 pci_unregister_driver(&tg3_driver);
15972}
15973
15974module_init(tg3_init);
15975module_exit(tg3_cleanup);