blob: 35c2a202d67aa643a452e245293d5e7fdd748e39 [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 Carlsonefab79c2011-12-08 14:40:18 +000092#define TG3_MIN_NUM 122
Matt Carlson6867c842010-07-11 09:31:44 +000093#define DRV_MODULE_VERSION \
94 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Matt Carlsonefab79c2011-12-08 14:40:18 +000095#define DRV_MODULE_RELDATE "December 7, 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
138
139/* Do not place this n-ring entries value into the tp struct itself,
140 * we really want to expose these constants to GCC so that modulo et
141 * al. operations are done with shifts and masks instead of with
142 * hw multiply/modulo instructions. Another solution would be to
143 * replace things like '% foo' with '& (foo - 1)'.
144 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146#define TG3_TX_RING_SIZE 512
147#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
148
Matt Carlson2c49a442010-09-30 10:34:35 +0000149#define TG3_RX_STD_RING_BYTES(tp) \
150 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
151#define TG3_RX_JMB_RING_BYTES(tp) \
152 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
153#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000154 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
156 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
158
Matt Carlson287be122009-08-28 13:58:46 +0000159#define TG3_DMA_BYTE_ENAB 64
160
161#define TG3_RX_STD_DMA_SZ 1536
162#define TG3_RX_JMB_DMA_SZ 9046
163
164#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
165
166#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
167#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Matt Carlson2c49a442010-09-30 10:34:35 +0000169#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
170 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000171
Matt Carlson2c49a442010-09-30 10:34:35 +0000172#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
173 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000174
Matt Carlsond2757fc2010-04-12 06:58:27 +0000175/* Due to a hardware bug, the 5701 can only DMA to memory addresses
176 * that are at least dword aligned when used in PCIX mode. The driver
177 * works around this bug by double copying the packet. This workaround
178 * is built into the normal double copy length check for efficiency.
179 *
180 * However, the double copy is only necessary on those architectures
181 * where unaligned memory accesses are inefficient. For those architectures
182 * where unaligned memory accesses incur little penalty, we can reintegrate
183 * the 5701 in the normal rx path. Doing so saves a device structure
184 * dereference by hardcoding the double copy threshold in place.
185 */
186#define TG3_RX_COPY_THRESHOLD 256
187#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
188 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
189#else
190 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
191#endif
192
Matt Carlson81389f52011-08-31 11:44:49 +0000193#if (NET_IP_ALIGN != 0)
194#define TG3_RX_OFFSET(tp) ((tp)->rx_offset)
195#else
Eric Dumazet9205fd92011-11-18 06:47:01 +0000196#define TG3_RX_OFFSET(tp) (NET_SKB_PAD)
Matt Carlson81389f52011-08-31 11:44:49 +0000197#endif
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000200#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Matt Carlson55086ad2011-12-14 11:09:59 +0000201#define TG3_TX_BD_DMA_MAX_2K 2048
Matt Carlsona4cb4282011-12-14 11:09:58 +0000202#define TG3_TX_BD_DMA_MAX_4K 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 Carlsonf92d9dc12010-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 Carlsonf92d9dc12010-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 Carlsonf92d9dc12010-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 Carlsonf92d9dc12010-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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Carlsoncdd4e09d2009-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 Buytenhek298cf9be2008-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
Matt Carlson95e28692008-05-25 23:44:14 -07001673static u16 tg3_advert_flowctrl_1000X(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_1000XPAUSE;
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_1000XPSE_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_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1683 else
1684 miireg = 0;
1685
1686 return miireg;
1687}
1688
Matt Carlson95e28692008-05-25 23:44:14 -07001689static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1690{
1691 u8 cap = 0;
1692
Matt Carlsonf3791cd2011-11-21 15:01:17 +00001693 if (lcladv & rmtadv & ADVERTISE_1000XPAUSE) {
1694 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
1695 } else if (lcladv & rmtadv & ADVERTISE_1000XPSE_ASYM) {
1696 if (lcladv & ADVERTISE_1000XPAUSE)
1697 cap = FLOW_CTRL_RX;
1698 if (rmtadv & ADVERTISE_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001699 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001700 }
1701
1702 return cap;
1703}
1704
Matt Carlsonf51f3562008-05-25 23:45:08 -07001705static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001706{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001707 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001708 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001709 u32 old_rx_mode = tp->rx_mode;
1710 u32 old_tx_mode = tp->tx_mode;
1711
Joe Perches63c3a662011-04-26 08:12:10 +00001712 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001713 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001714 else
1715 autoneg = tp->link_config.autoneg;
1716
Joe Perches63c3a662011-04-26 08:12:10 +00001717 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001718 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001719 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001720 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001721 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001722 } else
1723 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001724
Matt Carlsonf51f3562008-05-25 23:45:08 -07001725 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001726
Steve Glendinninge18ce342008-12-16 02:00:00 -08001727 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001728 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1729 else
1730 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1731
Matt Carlsonf51f3562008-05-25 23:45:08 -07001732 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001733 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001734
Steve Glendinninge18ce342008-12-16 02:00:00 -08001735 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001736 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1737 else
1738 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1739
Matt Carlsonf51f3562008-05-25 23:45:08 -07001740 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001741 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001742}
1743
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001744static void tg3_adjust_link(struct net_device *dev)
1745{
1746 u8 oldflowctrl, linkmesg = 0;
1747 u32 mac_mode, lcl_adv, rmt_adv;
1748 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001749 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001750
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001751 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001752
1753 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1754 MAC_MODE_HALF_DUPLEX);
1755
1756 oldflowctrl = tp->link_config.active_flowctrl;
1757
1758 if (phydev->link) {
1759 lcl_adv = 0;
1760 rmt_adv = 0;
1761
1762 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1763 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001764 else if (phydev->speed == SPEED_1000 ||
1765 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001766 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001767 else
1768 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001769
1770 if (phydev->duplex == DUPLEX_HALF)
1771 mac_mode |= MAC_MODE_HALF_DUPLEX;
1772 else {
Matt Carlsonf88788f2011-12-14 11:10:00 +00001773 lcl_adv = mii_advertise_flowctrl(
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001774 tp->link_config.flowctrl);
1775
1776 if (phydev->pause)
1777 rmt_adv = LPA_PAUSE_CAP;
1778 if (phydev->asym_pause)
1779 rmt_adv |= LPA_PAUSE_ASYM;
1780 }
1781
1782 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1783 } else
1784 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1785
1786 if (mac_mode != tp->mac_mode) {
1787 tp->mac_mode = mac_mode;
1788 tw32_f(MAC_MODE, tp->mac_mode);
1789 udelay(40);
1790 }
1791
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001792 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1793 if (phydev->speed == SPEED_10)
1794 tw32(MAC_MI_STAT,
1795 MAC_MI_STAT_10MBPS_MODE |
1796 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1797 else
1798 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1799 }
1800
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001801 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1802 tw32(MAC_TX_LENGTHS,
1803 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1804 (6 << TX_LENGTHS_IPG_SHIFT) |
1805 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1806 else
1807 tw32(MAC_TX_LENGTHS,
1808 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1809 (6 << TX_LENGTHS_IPG_SHIFT) |
1810 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1811
1812 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1813 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1814 phydev->speed != tp->link_config.active_speed ||
1815 phydev->duplex != tp->link_config.active_duplex ||
1816 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001817 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001818
1819 tp->link_config.active_speed = phydev->speed;
1820 tp->link_config.active_duplex = phydev->duplex;
1821
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001822 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001823
1824 if (linkmesg)
1825 tg3_link_report(tp);
1826}
1827
1828static int tg3_phy_init(struct tg3 *tp)
1829{
1830 struct phy_device *phydev;
1831
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001832 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001833 return 0;
1834
1835 /* Bring the PHY back to a known state. */
1836 tg3_bmcr_reset(tp);
1837
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001838 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001839
1840 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad32008-11-10 13:55:14 -08001841 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001842 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001843 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001844 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001845 return PTR_ERR(phydev);
1846 }
1847
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001848 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001849 switch (phydev->interface) {
1850 case PHY_INTERFACE_MODE_GMII:
1851 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001852 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001853 phydev->supported &= (PHY_GBIT_FEATURES |
1854 SUPPORTED_Pause |
1855 SUPPORTED_Asym_Pause);
1856 break;
1857 }
1858 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001859 case PHY_INTERFACE_MODE_MII:
1860 phydev->supported &= (PHY_BASIC_FEATURES |
1861 SUPPORTED_Pause |
1862 SUPPORTED_Asym_Pause);
1863 break;
1864 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001865 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001866 return -EINVAL;
1867 }
1868
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001869 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001870
1871 phydev->advertising = phydev->supported;
1872
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001873 return 0;
1874}
1875
1876static void tg3_phy_start(struct tg3 *tp)
1877{
1878 struct phy_device *phydev;
1879
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001880 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001881 return;
1882
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001883 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001884
Matt Carlson800960682010-08-02 11:26:06 +00001885 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
1886 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001887 phydev->speed = tp->link_config.orig_speed;
1888 phydev->duplex = tp->link_config.orig_duplex;
1889 phydev->autoneg = tp->link_config.orig_autoneg;
1890 phydev->advertising = tp->link_config.orig_advertising;
1891 }
1892
1893 phy_start(phydev);
1894
1895 phy_start_aneg(phydev);
1896}
1897
1898static void tg3_phy_stop(struct tg3 *tp)
1899{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001900 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001901 return;
1902
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001903 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001904}
1905
1906static void tg3_phy_fini(struct tg3 *tp)
1907{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001908 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001909 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001910 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001911 }
1912}
1913
Matt Carlson941ec902011-08-19 13:58:23 +00001914static int tg3_phy_set_extloopbk(struct tg3 *tp)
1915{
1916 int err;
1917 u32 val;
1918
1919 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
1920 return 0;
1921
1922 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
1923 /* Cannot do read-modify-write on 5401 */
1924 err = tg3_phy_auxctl_write(tp,
1925 MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
1926 MII_TG3_AUXCTL_ACTL_EXTLOOPBK |
1927 0x4c20);
1928 goto done;
1929 }
1930
1931 err = tg3_phy_auxctl_read(tp,
1932 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
1933 if (err)
1934 return err;
1935
1936 val |= MII_TG3_AUXCTL_ACTL_EXTLOOPBK;
1937 err = tg3_phy_auxctl_write(tp,
1938 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, val);
1939
1940done:
1941 return err;
1942}
1943
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001944static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1945{
1946 u32 phytest;
1947
1948 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1949 u32 phy;
1950
1951 tg3_writephy(tp, MII_TG3_FET_TEST,
1952 phytest | MII_TG3_FET_SHADOW_EN);
1953 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1954 if (enable)
1955 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1956 else
1957 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1958 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1959 }
1960 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1961 }
1962}
1963
Matt Carlson6833c042008-11-21 17:18:59 -08001964static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1965{
1966 u32 reg;
1967
Joe Perches63c3a662011-04-26 08:12:10 +00001968 if (!tg3_flag(tp, 5705_PLUS) ||
1969 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001970 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001971 return;
1972
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001973 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001974 tg3_phy_fet_toggle_apd(tp, enable);
1975 return;
1976 }
1977
Matt Carlson6833c042008-11-21 17:18:59 -08001978 reg = MII_TG3_MISC_SHDW_WREN |
1979 MII_TG3_MISC_SHDW_SCR5_SEL |
1980 MII_TG3_MISC_SHDW_SCR5_LPED |
1981 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1982 MII_TG3_MISC_SHDW_SCR5_SDTL |
1983 MII_TG3_MISC_SHDW_SCR5_C125OE;
1984 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
1985 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
1986
1987 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1988
1989
1990 reg = MII_TG3_MISC_SHDW_WREN |
1991 MII_TG3_MISC_SHDW_APD_SEL |
1992 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
1993 if (enable)
1994 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
1995
1996 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1997}
1998
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001999static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
2000{
2001 u32 phy;
2002
Joe Perches63c3a662011-04-26 08:12:10 +00002003 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002004 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002005 return;
2006
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002007 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002008 u32 ephy;
2009
Matt Carlson535ef6e2009-08-25 10:09:36 +00002010 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
2011 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
2012
2013 tg3_writephy(tp, MII_TG3_FET_TEST,
2014 ephy | MII_TG3_FET_SHADOW_EN);
2015 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002016 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00002017 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002018 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00002019 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
2020 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002021 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00002022 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002023 }
2024 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00002025 int ret;
2026
2027 ret = tg3_phy_auxctl_read(tp,
2028 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
2029 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002030 if (enable)
2031 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
2032 else
2033 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002034 tg3_phy_auxctl_write(tp,
2035 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002036 }
2037 }
2038}
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040static void tg3_phy_set_wirespeed(struct tg3 *tp)
2041{
Matt Carlson15ee95c2011-04-20 07:57:40 +00002042 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 u32 val;
2044
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002045 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 return;
2047
Matt Carlson15ee95c2011-04-20 07:57:40 +00002048 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
2049 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002050 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
2051 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052}
2053
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002054static void tg3_phy_apply_otp(struct tg3 *tp)
2055{
2056 u32 otp, phy;
2057
2058 if (!tp->phy_otp)
2059 return;
2060
2061 otp = tp->phy_otp;
2062
Matt Carlson1d36ba42011-04-20 07:57:42 +00002063 if (TG3_PHY_AUXCTL_SMDSP_ENABLE(tp))
2064 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002065
2066 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
2067 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
2068 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
2069
2070 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
2071 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
2072 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
2073
2074 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
2075 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
2076 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
2077
2078 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
2079 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
2080
2081 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
2082 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
2083
2084 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
2085 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
2086 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
2087
Matt Carlson1d36ba42011-04-20 07:57:42 +00002088 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002089}
2090
Matt Carlson52b02d02010-10-14 10:37:41 +00002091static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
2092{
2093 u32 val;
2094
2095 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2096 return;
2097
2098 tp->setlpicnt = 0;
2099
2100 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
2101 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00002102 tp->link_config.active_duplex == DUPLEX_FULL &&
2103 (tp->link_config.active_speed == SPEED_100 ||
2104 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00002105 u32 eeectl;
2106
2107 if (tp->link_config.active_speed == SPEED_1000)
2108 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
2109 else
2110 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
2111
2112 tw32(TG3_CPMU_EEE_CTRL, eeectl);
2113
Matt Carlson3110f5f52010-12-06 08:28:50 +00002114 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
2115 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00002116
Matt Carlsonb0c59432011-05-19 12:12:48 +00002117 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
2118 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00002119 tp->setlpicnt = 2;
2120 }
2121
2122 if (!tp->setlpicnt) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002123 if (current_link_up == 1 &&
2124 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2125 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
2126 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2127 }
2128
Matt Carlson52b02d02010-10-14 10:37:41 +00002129 val = tr32(TG3_CPMU_EEE_MODE);
2130 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
2131 }
2132}
2133
Matt Carlsonb0c59432011-05-19 12:12:48 +00002134static void tg3_phy_eee_enable(struct tg3 *tp)
2135{
2136 u32 val;
2137
2138 if (tp->link_config.active_speed == SPEED_1000 &&
2139 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2140 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00002141 tg3_flag(tp, 57765_CLASS)) &&
Matt Carlsonb0c59432011-05-19 12:12:48 +00002142 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002143 val = MII_TG3_DSP_TAP26_ALNOKO |
2144 MII_TG3_DSP_TAP26_RMRXSTO;
2145 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Matt Carlsonb0c59432011-05-19 12:12:48 +00002146 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2147 }
2148
2149 val = tr32(TG3_CPMU_EEE_MODE);
2150 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
2151}
2152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153static int tg3_wait_macro_done(struct tg3 *tp)
2154{
2155 int limit = 100;
2156
2157 while (limit--) {
2158 u32 tmp32;
2159
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002160 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if ((tmp32 & 0x1000) == 0)
2162 break;
2163 }
2164 }
Roel Kluind4675b52009-02-12 16:33:27 -08002165 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 return -EBUSY;
2167
2168 return 0;
2169}
2170
2171static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
2172{
2173 static const u32 test_pat[4][6] = {
2174 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
2175 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
2176 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
2177 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
2178 };
2179 int chan;
2180
2181 for (chan = 0; chan < 4; chan++) {
2182 int i;
2183
2184 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2185 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002186 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 for (i = 0; i < 6; i++)
2189 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
2190 test_pat[chan][i]);
2191
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002192 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 if (tg3_wait_macro_done(tp)) {
2194 *resetp = 1;
2195 return -EBUSY;
2196 }
2197
2198 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2199 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002200 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 if (tg3_wait_macro_done(tp)) {
2202 *resetp = 1;
2203 return -EBUSY;
2204 }
2205
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002206 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 if (tg3_wait_macro_done(tp)) {
2208 *resetp = 1;
2209 return -EBUSY;
2210 }
2211
2212 for (i = 0; i < 6; i += 2) {
2213 u32 low, high;
2214
2215 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
2216 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
2217 tg3_wait_macro_done(tp)) {
2218 *resetp = 1;
2219 return -EBUSY;
2220 }
2221 low &= 0x7fff;
2222 high &= 0x000f;
2223 if (low != test_pat[chan][i] ||
2224 high != test_pat[chan][i+1]) {
2225 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
2226 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
2227 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
2228
2229 return -EBUSY;
2230 }
2231 }
2232 }
2233
2234 return 0;
2235}
2236
2237static int tg3_phy_reset_chanpat(struct tg3 *tp)
2238{
2239 int chan;
2240
2241 for (chan = 0; chan < 4; chan++) {
2242 int i;
2243
2244 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2245 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002246 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 for (i = 0; i < 6; i++)
2248 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002249 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 if (tg3_wait_macro_done(tp))
2251 return -EBUSY;
2252 }
2253
2254 return 0;
2255}
2256
2257static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
2258{
2259 u32 reg32, phy9_orig;
2260 int retries, do_phy_reset, err;
2261
2262 retries = 10;
2263 do_phy_reset = 1;
2264 do {
2265 if (do_phy_reset) {
2266 err = tg3_bmcr_reset(tp);
2267 if (err)
2268 return err;
2269 do_phy_reset = 0;
2270 }
2271
2272 /* Disable transmitter and interrupt. */
2273 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2274 continue;
2275
2276 reg32 |= 0x3000;
2277 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2278
2279 /* Set full-duplex, 1000 mbps. */
2280 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002281 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002284 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 continue;
2286
Matt Carlson221c5632011-06-13 13:39:01 +00002287 tg3_writephy(tp, MII_CTRL1000,
2288 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Matt Carlson1d36ba42011-04-20 07:57:42 +00002290 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
2291 if (err)
2292 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
2294 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002295 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
2297 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2298 if (!err)
2299 break;
2300 } while (--retries);
2301
2302 err = tg3_phy_reset_chanpat(tp);
2303 if (err)
2304 return err;
2305
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002306 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002309 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Matt Carlson1d36ba42011-04-20 07:57:42 +00002311 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Matt Carlson221c5632011-06-13 13:39:01 +00002313 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
2315 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2316 reg32 &= ~0x3000;
2317 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2318 } else if (!err)
2319 err = -EBUSY;
2320
2321 return err;
2322}
2323
2324/* This will reset the tigon3 PHY if there is no valid
2325 * link unless the FORCE argument is non-zero.
2326 */
2327static int tg3_phy_reset(struct tg3 *tp)
2328{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002329 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 int err;
2331
Michael Chan60189dd2006-12-17 17:08:07 -08002332 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002333 val = tr32(GRC_MISC_CFG);
2334 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2335 udelay(40);
2336 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002337 err = tg3_readphy(tp, MII_BMSR, &val);
2338 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 if (err != 0)
2340 return -EBUSY;
2341
Michael Chanc8e1e822006-04-29 18:55:17 -07002342 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
2343 netif_carrier_off(tp->dev);
2344 tg3_link_report(tp);
2345 }
2346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2348 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2349 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
2350 err = tg3_phy_reset_5703_4_5(tp);
2351 if (err)
2352 return err;
2353 goto out;
2354 }
2355
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002356 cpmuctrl = 0;
2357 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
2358 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
2359 cpmuctrl = tr32(TG3_CPMU_CTRL);
2360 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2361 tw32(TG3_CPMU_CTRL,
2362 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2363 }
2364
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 err = tg3_bmcr_reset(tp);
2366 if (err)
2367 return err;
2368
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002369 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002370 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2371 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002372
2373 tw32(TG3_CPMU_CTRL, cpmuctrl);
2374 }
2375
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002376 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2377 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002378 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2379 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2380 CPMU_LSPD_1000MB_MACCLK_12_5) {
2381 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2382 udelay(40);
2383 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2384 }
2385 }
2386
Joe Perches63c3a662011-04-26 08:12:10 +00002387 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002388 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002389 return 0;
2390
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002391 tg3_phy_apply_otp(tp);
2392
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002393 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002394 tg3_phy_toggle_apd(tp, true);
2395 else
2396 tg3_phy_toggle_apd(tp, false);
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002399 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
2400 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002401 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2402 tg3_phydsp_write(tp, 0x000a, 0x0323);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002403 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002405
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002406 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002407 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2408 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002410
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002411 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002412 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2413 tg3_phydsp_write(tp, 0x000a, 0x310b);
2414 tg3_phydsp_write(tp, 0x201f, 0x9506);
2415 tg3_phydsp_write(tp, 0x401f, 0x14e2);
2416 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2417 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002418 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002419 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2420 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2421 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2422 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2423 tg3_writephy(tp, MII_TG3_TEST1,
2424 MII_TG3_TEST1_TRIM_EN | 0x4);
2425 } else
2426 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2427
2428 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2429 }
Michael Chanc424cb22006-04-29 18:56:34 -07002430 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002431
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 /* Set Extended packet length bit (bit 14) on all chips that */
2433 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002434 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002436 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002437 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002439 err = tg3_phy_auxctl_read(tp,
2440 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2441 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002442 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2443 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 }
2445
2446 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2447 * jumbo frames transmission.
2448 */
Joe Perches63c3a662011-04-26 08:12:10 +00002449 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002450 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002451 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002452 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 }
2454
Michael Chan715116a2006-09-27 16:09:25 -07002455 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002456 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002457 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002458 }
2459
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002460 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 tg3_phy_set_wirespeed(tp);
2462 return 0;
2463}
2464
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002465#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2466#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2467#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2468 TG3_GPIO_MSG_NEED_VAUX)
2469#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2470 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2471 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2472 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2473 (TG3_GPIO_MSG_DRVR_PRES << 12))
2474
2475#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2476 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2477 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2478 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2479 (TG3_GPIO_MSG_NEED_VAUX << 12))
2480
2481static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2482{
2483 u32 status, shift;
2484
2485 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2486 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2487 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2488 else
2489 status = tr32(TG3_CPMU_DRV_STATUS);
2490
2491 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2492 status &= ~(TG3_GPIO_MSG_MASK << shift);
2493 status |= (newstat << shift);
2494
2495 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2496 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2497 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2498 else
2499 tw32(TG3_CPMU_DRV_STATUS, status);
2500
2501 return status >> TG3_APE_GPIO_MSG_SHIFT;
2502}
2503
Matt Carlson520b2752011-06-13 13:39:02 +00002504static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2505{
2506 if (!tg3_flag(tp, IS_NIC))
2507 return 0;
2508
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002509 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2510 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2511 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
2512 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2513 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002514
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002515 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2516
2517 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2518 TG3_GRC_LCLCTL_PWRSW_DELAY);
2519
2520 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2521 } else {
2522 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2523 TG3_GRC_LCLCTL_PWRSW_DELAY);
2524 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002525
Matt Carlson520b2752011-06-13 13:39:02 +00002526 return 0;
2527}
2528
2529static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2530{
2531 u32 grc_local_ctrl;
2532
2533 if (!tg3_flag(tp, IS_NIC) ||
2534 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2535 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)
2536 return;
2537
2538 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2539
2540 tw32_wait_f(GRC_LOCAL_CTRL,
2541 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2542 TG3_GRC_LCLCTL_PWRSW_DELAY);
2543
2544 tw32_wait_f(GRC_LOCAL_CTRL,
2545 grc_local_ctrl,
2546 TG3_GRC_LCLCTL_PWRSW_DELAY);
2547
2548 tw32_wait_f(GRC_LOCAL_CTRL,
2549 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2550 TG3_GRC_LCLCTL_PWRSW_DELAY);
2551}
2552
2553static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2554{
2555 if (!tg3_flag(tp, IS_NIC))
2556 return;
2557
2558 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2559 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2560 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2561 (GRC_LCLCTRL_GPIO_OE0 |
2562 GRC_LCLCTRL_GPIO_OE1 |
2563 GRC_LCLCTRL_GPIO_OE2 |
2564 GRC_LCLCTRL_GPIO_OUTPUT0 |
2565 GRC_LCLCTRL_GPIO_OUTPUT1),
2566 TG3_GRC_LCLCTL_PWRSW_DELAY);
2567 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2568 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2569 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2570 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2571 GRC_LCLCTRL_GPIO_OE1 |
2572 GRC_LCLCTRL_GPIO_OE2 |
2573 GRC_LCLCTRL_GPIO_OUTPUT0 |
2574 GRC_LCLCTRL_GPIO_OUTPUT1 |
2575 tp->grc_local_ctrl;
2576 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2577 TG3_GRC_LCLCTL_PWRSW_DELAY);
2578
2579 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2580 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2581 TG3_GRC_LCLCTL_PWRSW_DELAY);
2582
2583 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2584 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2585 TG3_GRC_LCLCTL_PWRSW_DELAY);
2586 } else {
2587 u32 no_gpio2;
2588 u32 grc_local_ctrl = 0;
2589
2590 /* Workaround to prevent overdrawing Amps. */
2591 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
2592 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2593 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2594 grc_local_ctrl,
2595 TG3_GRC_LCLCTL_PWRSW_DELAY);
2596 }
2597
2598 /* On 5753 and variants, GPIO2 cannot be used. */
2599 no_gpio2 = tp->nic_sram_data_cfg &
2600 NIC_SRAM_DATA_CFG_NO_GPIO2;
2601
2602 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2603 GRC_LCLCTRL_GPIO_OE1 |
2604 GRC_LCLCTRL_GPIO_OE2 |
2605 GRC_LCLCTRL_GPIO_OUTPUT1 |
2606 GRC_LCLCTRL_GPIO_OUTPUT2;
2607 if (no_gpio2) {
2608 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2609 GRC_LCLCTRL_GPIO_OUTPUT2);
2610 }
2611 tw32_wait_f(GRC_LOCAL_CTRL,
2612 tp->grc_local_ctrl | grc_local_ctrl,
2613 TG3_GRC_LCLCTL_PWRSW_DELAY);
2614
2615 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2616
2617 tw32_wait_f(GRC_LOCAL_CTRL,
2618 tp->grc_local_ctrl | grc_local_ctrl,
2619 TG3_GRC_LCLCTL_PWRSW_DELAY);
2620
2621 if (!no_gpio2) {
2622 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2623 tw32_wait_f(GRC_LOCAL_CTRL,
2624 tp->grc_local_ctrl | grc_local_ctrl,
2625 TG3_GRC_LCLCTL_PWRSW_DELAY);
2626 }
2627 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002628}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002629
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002630static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002631{
2632 u32 msg = 0;
2633
2634 /* Serialize power state transitions */
2635 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2636 return;
2637
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002638 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002639 msg = TG3_GPIO_MSG_NEED_VAUX;
2640
2641 msg = tg3_set_function_status(tp, msg);
2642
2643 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2644 goto done;
2645
2646 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2647 tg3_pwrsrc_switch_to_vaux(tp);
2648 else
2649 tg3_pwrsrc_die_with_vmain(tp);
2650
2651done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002652 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002653}
2654
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002655static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
Matt Carlson683644b2011-03-09 16:58:23 +00002657 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Matt Carlson334355a2010-01-20 16:58:10 +00002659 /* The GPIOs do something completely different on 57765. */
Matt Carlson55086ad2011-12-14 11:09:59 +00002660 if (!tg3_flag(tp, IS_NIC) || tg3_flag(tp, 57765_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 return;
2662
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002663 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2664 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2665 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002666 tg3_frob_aux_power_5717(tp, include_wol ?
2667 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002668 return;
2669 }
2670
2671 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002672 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002674 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002675
Michael Chanbc1c7562006-03-20 17:48:03 -08002676 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002677 if (dev_peer) {
2678 struct tg3 *tp_peer = netdev_priv(dev_peer);
2679
Joe Perches63c3a662011-04-26 08:12:10 +00002680 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002681 return;
2682
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002683 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002684 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002685 need_vaux = true;
2686 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002689 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2690 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002691 need_vaux = true;
2692
Matt Carlson520b2752011-06-13 13:39:02 +00002693 if (need_vaux)
2694 tg3_pwrsrc_switch_to_vaux(tp);
2695 else
2696 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697}
2698
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002699static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2700{
2701 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2702 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002703 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002704 if (speed != SPEED_10)
2705 return 1;
2706 } else if (speed == SPEED_10)
2707 return 1;
2708
2709 return 0;
2710}
2711
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712static int tg3_setup_phy(struct tg3 *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713static int tg3_halt_cpu(struct tg3 *, u32);
2714
Matt Carlson0a459aa2008-11-03 16:54:15 -08002715static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002716{
Matt Carlsonce057f02007-11-12 21:08:03 -08002717 u32 val;
2718
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002719 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Michael Chan51297242007-02-13 12:17:57 -08002720 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2721 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2722 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2723
2724 sg_dig_ctrl |=
2725 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2726 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2727 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2728 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002729 return;
Michael Chan51297242007-02-13 12:17:57 -08002730 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002731
Michael Chan60189dd2006-12-17 17:08:07 -08002732 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002733 tg3_bmcr_reset(tp);
2734 val = tr32(GRC_MISC_CFG);
2735 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2736 udelay(40);
2737 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002738 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002739 u32 phytest;
2740 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2741 u32 phy;
2742
2743 tg3_writephy(tp, MII_ADVERTISE, 0);
2744 tg3_writephy(tp, MII_BMCR,
2745 BMCR_ANENABLE | BMCR_ANRESTART);
2746
2747 tg3_writephy(tp, MII_TG3_FET_TEST,
2748 phytest | MII_TG3_FET_SHADOW_EN);
2749 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2750 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2751 tg3_writephy(tp,
2752 MII_TG3_FET_SHDW_AUXMODE4,
2753 phy);
2754 }
2755 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2756 }
2757 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002758 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002759 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2760 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002761
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002762 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2763 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2764 MII_TG3_AUXCTL_PCTL_VREG_11V;
2765 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002766 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002767
Michael Chan15c3b692006-03-22 01:06:52 -08002768 /* The PHY should not be powered down on some chips because
2769 * of bugs.
2770 */
2771 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2772 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2773 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002774 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Michael Chan15c3b692006-03-22 01:06:52 -08002775 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002776
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002777 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2778 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002779 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2780 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2781 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2782 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2783 }
2784
Michael Chan15c3b692006-03-22 01:06:52 -08002785 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2786}
2787
Matt Carlson3f007892008-11-03 16:51:36 -08002788/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002789static int tg3_nvram_lock(struct tg3 *tp)
2790{
Joe Perches63c3a662011-04-26 08:12:10 +00002791 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002792 int i;
2793
2794 if (tp->nvram_lock_cnt == 0) {
2795 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2796 for (i = 0; i < 8000; i++) {
2797 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2798 break;
2799 udelay(20);
2800 }
2801 if (i == 8000) {
2802 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2803 return -ENODEV;
2804 }
2805 }
2806 tp->nvram_lock_cnt++;
2807 }
2808 return 0;
2809}
2810
2811/* tp->lock is held. */
2812static void tg3_nvram_unlock(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 if (tp->nvram_lock_cnt > 0)
2816 tp->nvram_lock_cnt--;
2817 if (tp->nvram_lock_cnt == 0)
2818 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2819 }
2820}
2821
2822/* tp->lock is held. */
2823static void tg3_enable_nvram_access(struct tg3 *tp)
2824{
Joe Perches63c3a662011-04-26 08:12:10 +00002825 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002826 u32 nvaccess = tr32(NVRAM_ACCESS);
2827
2828 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2829 }
2830}
2831
2832/* tp->lock is held. */
2833static void tg3_disable_nvram_access(struct tg3 *tp)
2834{
Joe Perches63c3a662011-04-26 08:12:10 +00002835 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002836 u32 nvaccess = tr32(NVRAM_ACCESS);
2837
2838 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2839 }
2840}
2841
2842static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2843 u32 offset, u32 *val)
2844{
2845 u32 tmp;
2846 int i;
2847
2848 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2849 return -EINVAL;
2850
2851 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2852 EEPROM_ADDR_DEVID_MASK |
2853 EEPROM_ADDR_READ);
2854 tw32(GRC_EEPROM_ADDR,
2855 tmp |
2856 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2857 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2858 EEPROM_ADDR_ADDR_MASK) |
2859 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2860
2861 for (i = 0; i < 1000; i++) {
2862 tmp = tr32(GRC_EEPROM_ADDR);
2863
2864 if (tmp & EEPROM_ADDR_COMPLETE)
2865 break;
2866 msleep(1);
2867 }
2868 if (!(tmp & EEPROM_ADDR_COMPLETE))
2869 return -EBUSY;
2870
Matt Carlson62cedd12009-04-20 14:52:29 -07002871 tmp = tr32(GRC_EEPROM_DATA);
2872
2873 /*
2874 * The data will always be opposite the native endian
2875 * format. Perform a blind byteswap to compensate.
2876 */
2877 *val = swab32(tmp);
2878
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002879 return 0;
2880}
2881
2882#define NVRAM_CMD_TIMEOUT 10000
2883
2884static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2885{
2886 int i;
2887
2888 tw32(NVRAM_CMD, nvram_cmd);
2889 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2890 udelay(10);
2891 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2892 udelay(10);
2893 break;
2894 }
2895 }
2896
2897 if (i == NVRAM_CMD_TIMEOUT)
2898 return -EBUSY;
2899
2900 return 0;
2901}
2902
2903static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2904{
Joe Perches63c3a662011-04-26 08:12:10 +00002905 if (tg3_flag(tp, NVRAM) &&
2906 tg3_flag(tp, NVRAM_BUFFERED) &&
2907 tg3_flag(tp, FLASH) &&
2908 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002909 (tp->nvram_jedecnum == JEDEC_ATMEL))
2910
2911 addr = ((addr / tp->nvram_pagesize) <<
2912 ATMEL_AT45DB0X1B_PAGE_POS) +
2913 (addr % tp->nvram_pagesize);
2914
2915 return addr;
2916}
2917
2918static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2919{
Joe Perches63c3a662011-04-26 08:12:10 +00002920 if (tg3_flag(tp, NVRAM) &&
2921 tg3_flag(tp, NVRAM_BUFFERED) &&
2922 tg3_flag(tp, FLASH) &&
2923 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002924 (tp->nvram_jedecnum == JEDEC_ATMEL))
2925
2926 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2927 tp->nvram_pagesize) +
2928 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2929
2930 return addr;
2931}
2932
Matt Carlsone4f34112009-02-25 14:25:00 +00002933/* NOTE: Data read in from NVRAM is byteswapped according to
2934 * the byteswapping settings for all other register accesses.
2935 * tg3 devices are BE devices, so on a BE machine, the data
2936 * returned will be exactly as it is seen in NVRAM. On a LE
2937 * machine, the 32-bit value will be byteswapped.
2938 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002939static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2940{
2941 int ret;
2942
Joe Perches63c3a662011-04-26 08:12:10 +00002943 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002944 return tg3_nvram_read_using_eeprom(tp, offset, val);
2945
2946 offset = tg3_nvram_phys_addr(tp, offset);
2947
2948 if (offset > NVRAM_ADDR_MSK)
2949 return -EINVAL;
2950
2951 ret = tg3_nvram_lock(tp);
2952 if (ret)
2953 return ret;
2954
2955 tg3_enable_nvram_access(tp);
2956
2957 tw32(NVRAM_ADDR, offset);
2958 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2959 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2960
2961 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002962 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002963
2964 tg3_disable_nvram_access(tp);
2965
2966 tg3_nvram_unlock(tp);
2967
2968 return ret;
2969}
2970
Matt Carlsona9dc5292009-02-25 14:25:30 +00002971/* Ensures NVRAM data is in bytestream format. */
2972static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002973{
2974 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002975 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002976 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002977 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002978 return res;
2979}
2980
Matt Carlson997b4f12011-08-31 11:44:53 +00002981#define RX_CPU_SCRATCH_BASE 0x30000
2982#define RX_CPU_SCRATCH_SIZE 0x04000
2983#define TX_CPU_SCRATCH_BASE 0x34000
2984#define TX_CPU_SCRATCH_SIZE 0x04000
2985
2986/* tp->lock is held. */
2987static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
2988{
2989 int i;
2990
2991 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
2992
2993 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2994 u32 val = tr32(GRC_VCPU_EXT_CTRL);
2995
2996 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
2997 return 0;
2998 }
2999 if (offset == RX_CPU_BASE) {
3000 for (i = 0; i < 10000; i++) {
3001 tw32(offset + CPU_STATE, 0xffffffff);
3002 tw32(offset + CPU_MODE, CPU_MODE_HALT);
3003 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
3004 break;
3005 }
3006
3007 tw32(offset + CPU_STATE, 0xffffffff);
3008 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
3009 udelay(10);
3010 } else {
3011 for (i = 0; i < 10000; i++) {
3012 tw32(offset + CPU_STATE, 0xffffffff);
3013 tw32(offset + CPU_MODE, CPU_MODE_HALT);
3014 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
3015 break;
3016 }
3017 }
3018
3019 if (i >= 10000) {
3020 netdev_err(tp->dev, "%s timed out, %s CPU\n",
3021 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
3022 return -ENODEV;
3023 }
3024
3025 /* Clear firmware's nvram arbitration. */
3026 if (tg3_flag(tp, NVRAM))
3027 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3028 return 0;
3029}
3030
3031struct fw_info {
3032 unsigned int fw_base;
3033 unsigned int fw_len;
3034 const __be32 *fw_data;
3035};
3036
3037/* tp->lock is held. */
3038static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3039 u32 cpu_scratch_base, int cpu_scratch_size,
3040 struct fw_info *info)
3041{
3042 int err, lock_err, i;
3043 void (*write_op)(struct tg3 *, u32, u32);
3044
3045 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3046 netdev_err(tp->dev,
3047 "%s: Trying to load TX cpu firmware which is 5705\n",
3048 __func__);
3049 return -EINVAL;
3050 }
3051
3052 if (tg3_flag(tp, 5705_PLUS))
3053 write_op = tg3_write_mem;
3054 else
3055 write_op = tg3_write_indirect_reg32;
3056
3057 /* It is possible that bootcode is still loading at this point.
3058 * Get the nvram lock first before halting the cpu.
3059 */
3060 lock_err = tg3_nvram_lock(tp);
3061 err = tg3_halt_cpu(tp, cpu_base);
3062 if (!lock_err)
3063 tg3_nvram_unlock(tp);
3064 if (err)
3065 goto out;
3066
3067 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3068 write_op(tp, cpu_scratch_base + i, 0);
3069 tw32(cpu_base + CPU_STATE, 0xffffffff);
3070 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
3071 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
3072 write_op(tp, (cpu_scratch_base +
3073 (info->fw_base & 0xffff) +
3074 (i * sizeof(u32))),
3075 be32_to_cpu(info->fw_data[i]));
3076
3077 err = 0;
3078
3079out:
3080 return err;
3081}
3082
3083/* tp->lock is held. */
3084static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3085{
3086 struct fw_info info;
3087 const __be32 *fw_data;
3088 int err, i;
3089
3090 fw_data = (void *)tp->fw->data;
3091
3092 /* Firmware blob starts with version numbers, followed by
3093 start address and length. We are setting complete length.
3094 length = end_address_of_bss - start_address_of_text.
3095 Remainder is the blob to be loaded contiguously
3096 from start address. */
3097
3098 info.fw_base = be32_to_cpu(fw_data[1]);
3099 info.fw_len = tp->fw->size - 12;
3100 info.fw_data = &fw_data[3];
3101
3102 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3103 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
3104 &info);
3105 if (err)
3106 return err;
3107
3108 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3109 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
3110 &info);
3111 if (err)
3112 return err;
3113
3114 /* Now startup only the RX cpu. */
3115 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3116 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
3117
3118 for (i = 0; i < 5; i++) {
3119 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
3120 break;
3121 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3122 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3123 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
3124 udelay(1000);
3125 }
3126 if (i >= 5) {
3127 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3128 "should be %08x\n", __func__,
3129 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
3130 return -ENODEV;
3131 }
3132 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3133 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
3134
3135 return 0;
3136}
3137
3138/* tp->lock is held. */
3139static int tg3_load_tso_firmware(struct tg3 *tp)
3140{
3141 struct fw_info info;
3142 const __be32 *fw_data;
3143 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
3144 int err, i;
3145
3146 if (tg3_flag(tp, HW_TSO_1) ||
3147 tg3_flag(tp, HW_TSO_2) ||
3148 tg3_flag(tp, HW_TSO_3))
3149 return 0;
3150
3151 fw_data = (void *)tp->fw->data;
3152
3153 /* Firmware blob starts with version numbers, followed by
3154 start address and length. We are setting complete length.
3155 length = end_address_of_bss - start_address_of_text.
3156 Remainder is the blob to be loaded contiguously
3157 from start address. */
3158
3159 info.fw_base = be32_to_cpu(fw_data[1]);
3160 cpu_scratch_size = tp->fw_len;
3161 info.fw_len = tp->fw->size - 12;
3162 info.fw_data = &fw_data[3];
3163
3164 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
3165 cpu_base = RX_CPU_BASE;
3166 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3167 } else {
3168 cpu_base = TX_CPU_BASE;
3169 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3170 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3171 }
3172
3173 err = tg3_load_firmware_cpu(tp, cpu_base,
3174 cpu_scratch_base, cpu_scratch_size,
3175 &info);
3176 if (err)
3177 return err;
3178
3179 /* Now startup the cpu. */
3180 tw32(cpu_base + CPU_STATE, 0xffffffff);
3181 tw32_f(cpu_base + CPU_PC, info.fw_base);
3182
3183 for (i = 0; i < 5; i++) {
3184 if (tr32(cpu_base + CPU_PC) == info.fw_base)
3185 break;
3186 tw32(cpu_base + CPU_STATE, 0xffffffff);
3187 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3188 tw32_f(cpu_base + CPU_PC, info.fw_base);
3189 udelay(1000);
3190 }
3191 if (i >= 5) {
3192 netdev_err(tp->dev,
3193 "%s fails to set CPU PC, is %08x should be %08x\n",
3194 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
3195 return -ENODEV;
3196 }
3197 tw32(cpu_base + CPU_STATE, 0xffffffff);
3198 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3199 return 0;
3200}
3201
3202
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003203/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08003204static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
3205{
3206 u32 addr_high, addr_low;
3207 int i;
3208
3209 addr_high = ((tp->dev->dev_addr[0] << 8) |
3210 tp->dev->dev_addr[1]);
3211 addr_low = ((tp->dev->dev_addr[2] << 24) |
3212 (tp->dev->dev_addr[3] << 16) |
3213 (tp->dev->dev_addr[4] << 8) |
3214 (tp->dev->dev_addr[5] << 0));
3215 for (i = 0; i < 4; i++) {
3216 if (i == 1 && skip_mac_1)
3217 continue;
3218 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
3219 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
3220 }
3221
3222 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3223 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
3224 for (i = 0; i < 12; i++) {
3225 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
3226 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
3227 }
3228 }
3229
3230 addr_high = (tp->dev->dev_addr[0] +
3231 tp->dev->dev_addr[1] +
3232 tp->dev->dev_addr[2] +
3233 tp->dev->dev_addr[3] +
3234 tp->dev->dev_addr[4] +
3235 tp->dev->dev_addr[5]) &
3236 TX_BACKOFF_SEED_MASK;
3237 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3238}
3239
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003240static void tg3_enable_register_access(struct tg3 *tp)
3241{
3242 /*
3243 * Make sure register accesses (indirect or otherwise) will function
3244 * correctly.
3245 */
3246 pci_write_config_dword(tp->pdev,
3247 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
3248}
3249
3250static int tg3_power_up(struct tg3 *tp)
3251{
Matt Carlsonbed98292011-07-13 09:27:29 +00003252 int err;
3253
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003254 tg3_enable_register_access(tp);
3255
Matt Carlsonbed98292011-07-13 09:27:29 +00003256 err = pci_set_power_state(tp->pdev, PCI_D0);
3257 if (!err) {
3258 /* Switch out of Vaux if it is a NIC */
3259 tg3_pwrsrc_switch_to_vmain(tp);
3260 } else {
3261 netdev_err(tp->dev, "Transition to D0 failed\n");
3262 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003263
Matt Carlsonbed98292011-07-13 09:27:29 +00003264 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003265}
3266
3267static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268{
3269 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003270 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003272 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003273
3274 /* Restore the CLKREQ setting. */
Joe Perches63c3a662011-04-26 08:12:10 +00003275 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003276 u16 lnkctl;
3277
3278 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00003279 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003280 &lnkctl);
3281 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3282 pci_write_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00003283 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003284 lnkctl);
3285 }
3286
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
3288 tw32(TG3PCI_MISC_HOST_CTRL,
3289 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
3290
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003291 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00003292 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003293
Joe Perches63c3a662011-04-26 08:12:10 +00003294 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08003295 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003296 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson800960682010-08-02 11:26:06 +00003297 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003298 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003299 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003300
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00003301 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003302
Matt Carlson800960682010-08-02 11:26:06 +00003303 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003304
3305 tp->link_config.orig_speed = phydev->speed;
3306 tp->link_config.orig_duplex = phydev->duplex;
3307 tp->link_config.orig_autoneg = phydev->autoneg;
3308 tp->link_config.orig_advertising = phydev->advertising;
3309
3310 advertising = ADVERTISED_TP |
3311 ADVERTISED_Pause |
3312 ADVERTISED_Autoneg |
3313 ADVERTISED_10baseT_Half;
3314
Joe Perches63c3a662011-04-26 08:12:10 +00003315 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
3316 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003317 advertising |=
3318 ADVERTISED_100baseT_Half |
3319 ADVERTISED_100baseT_Full |
3320 ADVERTISED_10baseT_Full;
3321 else
3322 advertising |= ADVERTISED_10baseT_Full;
3323 }
3324
3325 phydev->advertising = advertising;
3326
3327 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003328
3329 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00003330 if (phyid != PHY_ID_BCMAC131) {
3331 phyid &= PHY_BCM_OUI_MASK;
3332 if (phyid == PHY_BCM_OUI_1 ||
3333 phyid == PHY_BCM_OUI_2 ||
3334 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08003335 do_low_power = true;
3336 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003337 }
Matt Carlsondd477002008-05-25 23:45:58 -07003338 } else {
Matt Carlson20232762008-12-21 20:18:56 -08003339 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003340
Matt Carlson800960682010-08-02 11:26:06 +00003341 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
3342 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07003343 tp->link_config.orig_speed = tp->link_config.speed;
3344 tp->link_config.orig_duplex = tp->link_config.duplex;
3345 tp->link_config.orig_autoneg = tp->link_config.autoneg;
3346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003348 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Matt Carlsondd477002008-05-25 23:45:58 -07003349 tp->link_config.speed = SPEED_10;
3350 tp->link_config.duplex = DUPLEX_HALF;
3351 tp->link_config.autoneg = AUTONEG_ENABLE;
3352 tg3_setup_phy(tp, 0);
3353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 }
3355
Michael Chanb5d37722006-09-27 16:06:21 -07003356 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
3357 u32 val;
3358
3359 val = tr32(GRC_VCPU_EXT_CTRL);
3360 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00003361 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08003362 int i;
3363 u32 val;
3364
3365 for (i = 0; i < 200; i++) {
3366 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
3367 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
3368 break;
3369 msleep(1);
3370 }
3371 }
Joe Perches63c3a662011-04-26 08:12:10 +00003372 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07003373 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
3374 WOL_DRV_STATE_SHUTDOWN |
3375 WOL_DRV_WOL |
3376 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08003377
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003378 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 u32 mac_mode;
3380
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003381 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003382 if (do_low_power &&
3383 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
3384 tg3_phy_auxctl_write(tp,
3385 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
3386 MII_TG3_AUXCTL_PCTL_WOL_EN |
3387 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3388 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07003389 udelay(40);
3390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003392 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07003393 mac_mode = MAC_MODE_PORT_MODE_GMII;
3394 else
3395 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003397 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
3398 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
3399 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00003400 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003401 SPEED_100 : SPEED_10;
3402 if (tg3_5700_link_polarity(tp, speed))
3403 mac_mode |= MAC_MODE_LINK_POLARITY;
3404 else
3405 mac_mode &= ~MAC_MODE_LINK_POLARITY;
3406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 } else {
3408 mac_mode = MAC_MODE_PORT_MODE_TBI;
3409 }
3410
Joe Perches63c3a662011-04-26 08:12:10 +00003411 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 tw32(MAC_LED_CTRL, tp->led_ctrl);
3413
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003414 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00003415 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
3416 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003417 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
Joe Perches63c3a662011-04-26 08:12:10 +00003419 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00003420 mac_mode |= MAC_MODE_APE_TX_EN |
3421 MAC_MODE_APE_RX_EN |
3422 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07003423
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 tw32_f(MAC_MODE, mac_mode);
3425 udelay(100);
3426
3427 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
3428 udelay(10);
3429 }
3430
Joe Perches63c3a662011-04-26 08:12:10 +00003431 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3433 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
3434 u32 base_val;
3435
3436 base_val = tp->pci_clock_ctrl;
3437 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
3438 CLOCK_CTRL_TXCLK_DISABLE);
3439
Michael Chanb401e9e2005-12-19 16:27:04 -08003440 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
3441 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00003442 } else if (tg3_flag(tp, 5780_CLASS) ||
3443 tg3_flag(tp, CPMU_PRESENT) ||
Matt Carlson6ff6f812011-05-19 12:12:54 +00003444 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07003445 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00003446 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 u32 newbits1, newbits2;
3448
3449 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3450 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3451 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
3452 CLOCK_CTRL_TXCLK_DISABLE |
3453 CLOCK_CTRL_ALTCLK);
3454 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00003455 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 newbits1 = CLOCK_CTRL_625_CORE;
3457 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
3458 } else {
3459 newbits1 = CLOCK_CTRL_ALTCLK;
3460 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
3461 }
3462
Michael Chanb401e9e2005-12-19 16:27:04 -08003463 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
3464 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
Michael Chanb401e9e2005-12-19 16:27:04 -08003466 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
3467 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
Joe Perches63c3a662011-04-26 08:12:10 +00003469 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 u32 newbits3;
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 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
3475 CLOCK_CTRL_TXCLK_DISABLE |
3476 CLOCK_CTRL_44MHZ_CORE);
3477 } else {
3478 newbits3 = CLOCK_CTRL_44MHZ_CORE;
3479 }
3480
Michael Chanb401e9e2005-12-19 16:27:04 -08003481 tw32_wait_f(TG3PCI_CLOCK_CTRL,
3482 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 }
3484 }
3485
Joe Perches63c3a662011-04-26 08:12:10 +00003486 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08003487 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08003488
Matt Carlsoncd0d7222011-07-13 09:27:33 +00003489 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
3491 /* Workaround for unstable PLL clock */
3492 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
3493 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
3494 u32 val = tr32(0x7d00);
3495
3496 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
3497 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00003498 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08003499 int err;
3500
3501 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08003503 if (!err)
3504 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08003505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 }
3507
Michael Chanbbadf502006-04-06 21:46:34 -07003508 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
3509
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 return 0;
3511}
3512
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003513static void tg3_power_down(struct tg3 *tp)
3514{
3515 tg3_power_down_prepare(tp);
3516
Joe Perches63c3a662011-04-26 08:12:10 +00003517 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003518 pci_set_power_state(tp->pdev, PCI_D3hot);
3519}
3520
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
3522{
3523 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
3524 case MII_TG3_AUX_STAT_10HALF:
3525 *speed = SPEED_10;
3526 *duplex = DUPLEX_HALF;
3527 break;
3528
3529 case MII_TG3_AUX_STAT_10FULL:
3530 *speed = SPEED_10;
3531 *duplex = DUPLEX_FULL;
3532 break;
3533
3534 case MII_TG3_AUX_STAT_100HALF:
3535 *speed = SPEED_100;
3536 *duplex = DUPLEX_HALF;
3537 break;
3538
3539 case MII_TG3_AUX_STAT_100FULL:
3540 *speed = SPEED_100;
3541 *duplex = DUPLEX_FULL;
3542 break;
3543
3544 case MII_TG3_AUX_STAT_1000HALF:
3545 *speed = SPEED_1000;
3546 *duplex = DUPLEX_HALF;
3547 break;
3548
3549 case MII_TG3_AUX_STAT_1000FULL:
3550 *speed = SPEED_1000;
3551 *duplex = DUPLEX_FULL;
3552 break;
3553
3554 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003555 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07003556 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
3557 SPEED_10;
3558 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
3559 DUPLEX_HALF;
3560 break;
3561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 *speed = SPEED_INVALID;
3563 *duplex = DUPLEX_INVALID;
3564 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566}
3567
Matt Carlson42b64a42011-05-19 12:12:49 +00003568static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569{
Matt Carlson42b64a42011-05-19 12:12:49 +00003570 int err = 0;
3571 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
Matt Carlson42b64a42011-05-19 12:12:49 +00003573 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00003574 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00003575 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
Matt Carlson42b64a42011-05-19 12:12:49 +00003577 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
3578 if (err)
3579 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580
Matt Carlson4f272092011-12-14 11:09:57 +00003581 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
3582 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003583
Matt Carlson4f272092011-12-14 11:09:57 +00003584 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3585 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
3586 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003587
Matt Carlson4f272092011-12-14 11:09:57 +00003588 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
3589 if (err)
3590 goto done;
3591 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003592
Matt Carlson42b64a42011-05-19 12:12:49 +00003593 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
3594 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
Matt Carlson42b64a42011-05-19 12:12:49 +00003596 tw32(TG3_CPMU_EEE_MODE,
3597 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003598
Matt Carlson42b64a42011-05-19 12:12:49 +00003599 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
3600 if (!err) {
3601 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00003602
Matt Carlsona6b68da2010-12-06 08:28:52 +00003603 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00003604 /* Advertise 100-BaseTX EEE ability */
3605 if (advertise & ADVERTISED_100baseT_Full)
3606 val |= MDIO_AN_EEE_ADV_100TX;
3607 /* Advertise 1000-BaseT EEE ability */
3608 if (advertise & ADVERTISED_1000baseT_Full)
3609 val |= MDIO_AN_EEE_ADV_1000T;
3610 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00003611 if (err)
3612 val = 0;
3613
3614 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
3615 case ASIC_REV_5717:
3616 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00003617 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00003618 case ASIC_REV_5719:
3619 /* If we advertised any eee advertisements above... */
3620 if (val)
3621 val = MII_TG3_DSP_TAP26_ALNOKO |
3622 MII_TG3_DSP_TAP26_RMRXSTO |
3623 MII_TG3_DSP_TAP26_OPCSINPT;
3624 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
3625 /* Fall through */
3626 case ASIC_REV_5720:
3627 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
3628 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
3629 MII_TG3_DSP_CH34TP2_HIBW01);
3630 }
Matt Carlson52b02d02010-10-14 10:37:41 +00003631
Matt Carlson42b64a42011-05-19 12:12:49 +00003632 err2 = TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
3633 if (!err)
3634 err = err2;
3635 }
3636
3637done:
3638 return err;
3639}
3640
3641static void tg3_phy_copper_begin(struct tg3 *tp)
3642{
3643 u32 new_adv;
3644 int i;
3645
3646 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
3647 new_adv = ADVERTISED_10baseT_Half |
3648 ADVERTISED_10baseT_Full;
3649 if (tg3_flag(tp, WOL_SPEED_100MB))
3650 new_adv |= ADVERTISED_100baseT_Half |
3651 ADVERTISED_100baseT_Full;
3652
3653 tg3_phy_autoneg_cfg(tp, new_adv,
3654 FLOW_CTRL_TX | FLOW_CTRL_RX);
3655 } else if (tp->link_config.speed == SPEED_INVALID) {
3656 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
3657 tp->link_config.advertising &=
3658 ~(ADVERTISED_1000baseT_Half |
3659 ADVERTISED_1000baseT_Full);
3660
3661 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
3662 tp->link_config.flowctrl);
3663 } else {
3664 /* Asking for a specific link mode. */
3665 if (tp->link_config.speed == SPEED_1000) {
3666 if (tp->link_config.duplex == DUPLEX_FULL)
3667 new_adv = ADVERTISED_1000baseT_Full;
3668 else
3669 new_adv = ADVERTISED_1000baseT_Half;
3670 } else if (tp->link_config.speed == SPEED_100) {
3671 if (tp->link_config.duplex == DUPLEX_FULL)
3672 new_adv = ADVERTISED_100baseT_Full;
3673 else
3674 new_adv = ADVERTISED_100baseT_Half;
3675 } else {
3676 if (tp->link_config.duplex == DUPLEX_FULL)
3677 new_adv = ADVERTISED_10baseT_Full;
3678 else
3679 new_adv = ADVERTISED_10baseT_Half;
3680 }
3681
3682 tg3_phy_autoneg_cfg(tp, new_adv,
3683 tp->link_config.flowctrl);
Matt Carlson52b02d02010-10-14 10:37:41 +00003684 }
3685
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
3687 tp->link_config.speed != SPEED_INVALID) {
3688 u32 bmcr, orig_bmcr;
3689
3690 tp->link_config.active_speed = tp->link_config.speed;
3691 tp->link_config.active_duplex = tp->link_config.duplex;
3692
3693 bmcr = 0;
3694 switch (tp->link_config.speed) {
3695 default:
3696 case SPEED_10:
3697 break;
3698
3699 case SPEED_100:
3700 bmcr |= BMCR_SPEED100;
3701 break;
3702
3703 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00003704 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707
3708 if (tp->link_config.duplex == DUPLEX_FULL)
3709 bmcr |= BMCR_FULLDPLX;
3710
3711 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
3712 (bmcr != orig_bmcr)) {
3713 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
3714 for (i = 0; i < 1500; i++) {
3715 u32 tmp;
3716
3717 udelay(10);
3718 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
3719 tg3_readphy(tp, MII_BMSR, &tmp))
3720 continue;
3721 if (!(tmp & BMSR_LSTATUS)) {
3722 udelay(40);
3723 break;
3724 }
3725 }
3726 tg3_writephy(tp, MII_BMCR, bmcr);
3727 udelay(40);
3728 }
3729 } else {
3730 tg3_writephy(tp, MII_BMCR,
3731 BMCR_ANENABLE | BMCR_ANRESTART);
3732 }
3733}
3734
3735static int tg3_init_5401phy_dsp(struct tg3 *tp)
3736{
3737 int err;
3738
3739 /* Turn off tap power management. */
3740 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003741 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00003743 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
3744 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
3745 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
3746 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
3747 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
3749 udelay(40);
3750
3751 return err;
3752}
3753
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003754static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003756 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08003757
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003758 advertising = tp->link_config.advertising;
3759 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003761 advmsk = ADVERTISE_ALL;
3762 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00003763 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003764 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
3765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003767 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
3768 return false;
3769
3770 if ((*lcladv & advmsk) != tgtadv)
3771 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00003772
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003773 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 u32 tg3_ctrl;
3775
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003776 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08003777
Matt Carlson221c5632011-06-13 13:39:01 +00003778 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003779 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
Matt Carlsonb99d2a52011-08-31 11:44:47 +00003781 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003782 if (tg3_ctrl != tgtadv)
3783 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 }
Matt Carlson93a700a2011-08-31 11:44:54 +00003785
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003786 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08003787}
3788
Matt Carlson859edb22011-12-08 14:40:16 +00003789static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
3790{
3791 u32 lpeth = 0;
3792
3793 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
3794 u32 val;
3795
3796 if (tg3_readphy(tp, MII_STAT1000, &val))
3797 return false;
3798
3799 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
3800 }
3801
3802 if (tg3_readphy(tp, MII_LPA, rmtadv))
3803 return false;
3804
3805 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
3806 tp->link_config.rmt_adv = lpeth;
3807
3808 return true;
3809}
3810
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
3812{
3813 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003814 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08003815 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 u16 current_speed;
3817 u8 current_duplex;
3818 int i, err;
3819
3820 tw32(MAC_EVENT, 0);
3821
3822 tw32_f(MAC_STATUS,
3823 (MAC_STATUS_SYNC_CHANGED |
3824 MAC_STATUS_CFG_CHANGED |
3825 MAC_STATUS_MI_COMPLETION |
3826 MAC_STATUS_LNKSTATE_CHANGED));
3827 udelay(40);
3828
Matt Carlson8ef21422008-05-02 16:47:53 -07003829 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
3830 tw32_f(MAC_MI_MODE,
3831 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
3832 udelay(80);
3833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003835 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
3837 /* Some third-party PHYs need to be reset on link going
3838 * down.
3839 */
3840 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3841 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
3842 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
3843 netif_carrier_ok(tp->dev)) {
3844 tg3_readphy(tp, MII_BMSR, &bmsr);
3845 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3846 !(bmsr & BMSR_LSTATUS))
3847 force_reset = 1;
3848 }
3849 if (force_reset)
3850 tg3_phy_reset(tp);
3851
Matt Carlson79eb6902010-02-17 15:17:03 +00003852 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 tg3_readphy(tp, MII_BMSR, &bmsr);
3854 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00003855 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 bmsr = 0;
3857
3858 if (!(bmsr & BMSR_LSTATUS)) {
3859 err = tg3_init_5401phy_dsp(tp);
3860 if (err)
3861 return err;
3862
3863 tg3_readphy(tp, MII_BMSR, &bmsr);
3864 for (i = 0; i < 1000; i++) {
3865 udelay(10);
3866 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3867 (bmsr & BMSR_LSTATUS)) {
3868 udelay(40);
3869 break;
3870 }
3871 }
3872
Matt Carlson79eb6902010-02-17 15:17:03 +00003873 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
3874 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 !(bmsr & BMSR_LSTATUS) &&
3876 tp->link_config.active_speed == SPEED_1000) {
3877 err = tg3_phy_reset(tp);
3878 if (!err)
3879 err = tg3_init_5401phy_dsp(tp);
3880 if (err)
3881 return err;
3882 }
3883 }
3884 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3885 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
3886 /* 5701 {A0,B0} CRC bug workaround */
3887 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00003888 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
3889 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
3890 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 }
3892
3893 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003894 tg3_readphy(tp, MII_TG3_ISTAT, &val);
3895 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003897 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003899 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 tg3_writephy(tp, MII_TG3_IMASK, ~0);
3901
3902 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3903 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3904 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
3905 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3906 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
3907 else
3908 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
3909 }
3910
3911 current_link_up = 0;
3912 current_speed = SPEED_INVALID;
3913 current_duplex = DUPLEX_INVALID;
Matt Carlsone348c5e2011-11-21 15:01:20 +00003914 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00003915 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003917 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00003918 err = tg3_phy_auxctl_read(tp,
3919 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3920 &val);
3921 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003922 tg3_phy_auxctl_write(tp,
3923 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3924 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 goto relink;
3926 }
3927 }
3928
3929 bmsr = 0;
3930 for (i = 0; i < 100; i++) {
3931 tg3_readphy(tp, MII_BMSR, &bmsr);
3932 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3933 (bmsr & BMSR_LSTATUS))
3934 break;
3935 udelay(40);
3936 }
3937
3938 if (bmsr & BMSR_LSTATUS) {
3939 u32 aux_stat, bmcr;
3940
3941 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
3942 for (i = 0; i < 2000; i++) {
3943 udelay(10);
3944 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
3945 aux_stat)
3946 break;
3947 }
3948
3949 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
3950 &current_speed,
3951 &current_duplex);
3952
3953 bmcr = 0;
3954 for (i = 0; i < 200; i++) {
3955 tg3_readphy(tp, MII_BMCR, &bmcr);
3956 if (tg3_readphy(tp, MII_BMCR, &bmcr))
3957 continue;
3958 if (bmcr && bmcr != 0x7fff)
3959 break;
3960 udelay(10);
3961 }
3962
Matt Carlsonef167e22007-12-20 20:10:01 -08003963 lcl_adv = 0;
3964 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
Matt Carlsonef167e22007-12-20 20:10:01 -08003966 tp->link_config.active_speed = current_speed;
3967 tp->link_config.active_duplex = current_duplex;
3968
3969 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3970 if ((bmcr & BMCR_ANENABLE) &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003971 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00003972 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003973 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 } else {
3975 if (!(bmcr & BMCR_ANENABLE) &&
3976 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08003977 tp->link_config.duplex == current_duplex &&
3978 tp->link_config.flowctrl ==
3979 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 }
3982 }
3983
Matt Carlsonef167e22007-12-20 20:10:01 -08003984 if (current_link_up == 1 &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00003985 tp->link_config.active_duplex == DUPLEX_FULL) {
3986 u32 reg, bit;
3987
3988 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
3989 reg = MII_TG3_FET_GEN_STAT;
3990 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
3991 } else {
3992 reg = MII_TG3_EXT_STAT;
3993 bit = MII_TG3_EXT_STAT_MDIX;
3994 }
3995
3996 if (!tg3_readphy(tp, reg, &val) && (val & bit))
3997 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
3998
Matt Carlsonef167e22007-12-20 20:10:01 -08003999 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 }
4002
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003relink:
Matt Carlson800960682010-08-02 11:26:06 +00004004 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 tg3_phy_copper_begin(tp);
4006
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004007 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004008 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4009 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 current_link_up = 1;
4011 }
4012
4013 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
4014 if (current_link_up == 1) {
4015 if (tp->link_config.active_speed == SPEED_100 ||
4016 tp->link_config.active_speed == SPEED_10)
4017 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4018 else
4019 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004020 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004021 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4022 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4024
4025 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4026 if (tp->link_config.active_duplex == DUPLEX_HALF)
4027 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004030 if (current_link_up == 1 &&
4031 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004033 else
4034 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 }
4036
4037 /* ??? Without this setting Netgear GA302T PHY does not
4038 * ??? send/receive packets...
4039 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004040 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
4042 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4043 tw32_f(MAC_MI_MODE, tp->mi_mode);
4044 udelay(80);
4045 }
4046
4047 tw32_f(MAC_MODE, tp->mac_mode);
4048 udelay(40);
4049
Matt Carlson52b02d02010-10-14 10:37:41 +00004050 tg3_phy_eee_adjust(tp, current_link_up);
4051
Joe Perches63c3a662011-04-26 08:12:10 +00004052 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 /* Polled via timer. */
4054 tw32_f(MAC_EVENT, 0);
4055 } else {
4056 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4057 }
4058 udelay(40);
4059
4060 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
4061 current_link_up == 1 &&
4062 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00004063 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 udelay(120);
4065 tw32_f(MAC_STATUS,
4066 (MAC_STATUS_SYNC_CHANGED |
4067 MAC_STATUS_CFG_CHANGED));
4068 udelay(40);
4069 tg3_write_mem(tp,
4070 NIC_SRAM_FIRMWARE_MBOX,
4071 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
4072 }
4073
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004074 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00004075 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004076 u16 oldlnkctl, newlnkctl;
4077
4078 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00004079 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004080 &oldlnkctl);
4081 if (tp->link_config.active_speed == SPEED_100 ||
4082 tp->link_config.active_speed == SPEED_10)
4083 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
4084 else
4085 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
4086 if (newlnkctl != oldlnkctl)
4087 pci_write_config_word(tp->pdev,
Matt Carlson93a700a2011-08-31 11:44:54 +00004088 pci_pcie_cap(tp->pdev) +
4089 PCI_EXP_LNKCTL, newlnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004090 }
4091
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 if (current_link_up != netif_carrier_ok(tp->dev)) {
4093 if (current_link_up)
4094 netif_carrier_on(tp->dev);
4095 else
4096 netif_carrier_off(tp->dev);
4097 tg3_link_report(tp);
4098 }
4099
4100 return 0;
4101}
4102
4103struct tg3_fiber_aneginfo {
4104 int state;
4105#define ANEG_STATE_UNKNOWN 0
4106#define ANEG_STATE_AN_ENABLE 1
4107#define ANEG_STATE_RESTART_INIT 2
4108#define ANEG_STATE_RESTART 3
4109#define ANEG_STATE_DISABLE_LINK_OK 4
4110#define ANEG_STATE_ABILITY_DETECT_INIT 5
4111#define ANEG_STATE_ABILITY_DETECT 6
4112#define ANEG_STATE_ACK_DETECT_INIT 7
4113#define ANEG_STATE_ACK_DETECT 8
4114#define ANEG_STATE_COMPLETE_ACK_INIT 9
4115#define ANEG_STATE_COMPLETE_ACK 10
4116#define ANEG_STATE_IDLE_DETECT_INIT 11
4117#define ANEG_STATE_IDLE_DETECT 12
4118#define ANEG_STATE_LINK_OK 13
4119#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
4120#define ANEG_STATE_NEXT_PAGE_WAIT 15
4121
4122 u32 flags;
4123#define MR_AN_ENABLE 0x00000001
4124#define MR_RESTART_AN 0x00000002
4125#define MR_AN_COMPLETE 0x00000004
4126#define MR_PAGE_RX 0x00000008
4127#define MR_NP_LOADED 0x00000010
4128#define MR_TOGGLE_TX 0x00000020
4129#define MR_LP_ADV_FULL_DUPLEX 0x00000040
4130#define MR_LP_ADV_HALF_DUPLEX 0x00000080
4131#define MR_LP_ADV_SYM_PAUSE 0x00000100
4132#define MR_LP_ADV_ASYM_PAUSE 0x00000200
4133#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
4134#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
4135#define MR_LP_ADV_NEXT_PAGE 0x00001000
4136#define MR_TOGGLE_RX 0x00002000
4137#define MR_NP_RX 0x00004000
4138
4139#define MR_LINK_OK 0x80000000
4140
4141 unsigned long link_time, cur_time;
4142
4143 u32 ability_match_cfg;
4144 int ability_match_count;
4145
4146 char ability_match, idle_match, ack_match;
4147
4148 u32 txconfig, rxconfig;
4149#define ANEG_CFG_NP 0x00000080
4150#define ANEG_CFG_ACK 0x00000040
4151#define ANEG_CFG_RF2 0x00000020
4152#define ANEG_CFG_RF1 0x00000010
4153#define ANEG_CFG_PS2 0x00000001
4154#define ANEG_CFG_PS1 0x00008000
4155#define ANEG_CFG_HD 0x00004000
4156#define ANEG_CFG_FD 0x00002000
4157#define ANEG_CFG_INVAL 0x00001f06
4158
4159};
4160#define ANEG_OK 0
4161#define ANEG_DONE 1
4162#define ANEG_TIMER_ENAB 2
4163#define ANEG_FAILED -1
4164
4165#define ANEG_STATE_SETTLE_TIME 10000
4166
4167static int tg3_fiber_aneg_smachine(struct tg3 *tp,
4168 struct tg3_fiber_aneginfo *ap)
4169{
Matt Carlson5be73b42007-12-20 20:09:29 -08004170 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 unsigned long delta;
4172 u32 rx_cfg_reg;
4173 int ret;
4174
4175 if (ap->state == ANEG_STATE_UNKNOWN) {
4176 ap->rxconfig = 0;
4177 ap->link_time = 0;
4178 ap->cur_time = 0;
4179 ap->ability_match_cfg = 0;
4180 ap->ability_match_count = 0;
4181 ap->ability_match = 0;
4182 ap->idle_match = 0;
4183 ap->ack_match = 0;
4184 }
4185 ap->cur_time++;
4186
4187 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
4188 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
4189
4190 if (rx_cfg_reg != ap->ability_match_cfg) {
4191 ap->ability_match_cfg = rx_cfg_reg;
4192 ap->ability_match = 0;
4193 ap->ability_match_count = 0;
4194 } else {
4195 if (++ap->ability_match_count > 1) {
4196 ap->ability_match = 1;
4197 ap->ability_match_cfg = rx_cfg_reg;
4198 }
4199 }
4200 if (rx_cfg_reg & ANEG_CFG_ACK)
4201 ap->ack_match = 1;
4202 else
4203 ap->ack_match = 0;
4204
4205 ap->idle_match = 0;
4206 } else {
4207 ap->idle_match = 1;
4208 ap->ability_match_cfg = 0;
4209 ap->ability_match_count = 0;
4210 ap->ability_match = 0;
4211 ap->ack_match = 0;
4212
4213 rx_cfg_reg = 0;
4214 }
4215
4216 ap->rxconfig = rx_cfg_reg;
4217 ret = ANEG_OK;
4218
Matt Carlson33f401a2010-04-05 10:19:27 +00004219 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 case ANEG_STATE_UNKNOWN:
4221 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
4222 ap->state = ANEG_STATE_AN_ENABLE;
4223
4224 /* fallthru */
4225 case ANEG_STATE_AN_ENABLE:
4226 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
4227 if (ap->flags & MR_AN_ENABLE) {
4228 ap->link_time = 0;
4229 ap->cur_time = 0;
4230 ap->ability_match_cfg = 0;
4231 ap->ability_match_count = 0;
4232 ap->ability_match = 0;
4233 ap->idle_match = 0;
4234 ap->ack_match = 0;
4235
4236 ap->state = ANEG_STATE_RESTART_INIT;
4237 } else {
4238 ap->state = ANEG_STATE_DISABLE_LINK_OK;
4239 }
4240 break;
4241
4242 case ANEG_STATE_RESTART_INIT:
4243 ap->link_time = ap->cur_time;
4244 ap->flags &= ~(MR_NP_LOADED);
4245 ap->txconfig = 0;
4246 tw32(MAC_TX_AUTO_NEG, 0);
4247 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4248 tw32_f(MAC_MODE, tp->mac_mode);
4249 udelay(40);
4250
4251 ret = ANEG_TIMER_ENAB;
4252 ap->state = ANEG_STATE_RESTART;
4253
4254 /* fallthru */
4255 case ANEG_STATE_RESTART:
4256 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00004257 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00004259 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 break;
4262
4263 case ANEG_STATE_DISABLE_LINK_OK:
4264 ret = ANEG_DONE;
4265 break;
4266
4267 case ANEG_STATE_ABILITY_DETECT_INIT:
4268 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08004269 ap->txconfig = ANEG_CFG_FD;
4270 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4271 if (flowctrl & ADVERTISE_1000XPAUSE)
4272 ap->txconfig |= ANEG_CFG_PS1;
4273 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4274 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4276 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4277 tw32_f(MAC_MODE, tp->mac_mode);
4278 udelay(40);
4279
4280 ap->state = ANEG_STATE_ABILITY_DETECT;
4281 break;
4282
4283 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00004284 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 break;
4287
4288 case ANEG_STATE_ACK_DETECT_INIT:
4289 ap->txconfig |= ANEG_CFG_ACK;
4290 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4291 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4292 tw32_f(MAC_MODE, tp->mac_mode);
4293 udelay(40);
4294
4295 ap->state = ANEG_STATE_ACK_DETECT;
4296
4297 /* fallthru */
4298 case ANEG_STATE_ACK_DETECT:
4299 if (ap->ack_match != 0) {
4300 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
4301 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
4302 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
4303 } else {
4304 ap->state = ANEG_STATE_AN_ENABLE;
4305 }
4306 } else if (ap->ability_match != 0 &&
4307 ap->rxconfig == 0) {
4308 ap->state = ANEG_STATE_AN_ENABLE;
4309 }
4310 break;
4311
4312 case ANEG_STATE_COMPLETE_ACK_INIT:
4313 if (ap->rxconfig & ANEG_CFG_INVAL) {
4314 ret = ANEG_FAILED;
4315 break;
4316 }
4317 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
4318 MR_LP_ADV_HALF_DUPLEX |
4319 MR_LP_ADV_SYM_PAUSE |
4320 MR_LP_ADV_ASYM_PAUSE |
4321 MR_LP_ADV_REMOTE_FAULT1 |
4322 MR_LP_ADV_REMOTE_FAULT2 |
4323 MR_LP_ADV_NEXT_PAGE |
4324 MR_TOGGLE_RX |
4325 MR_NP_RX);
4326 if (ap->rxconfig & ANEG_CFG_FD)
4327 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
4328 if (ap->rxconfig & ANEG_CFG_HD)
4329 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
4330 if (ap->rxconfig & ANEG_CFG_PS1)
4331 ap->flags |= MR_LP_ADV_SYM_PAUSE;
4332 if (ap->rxconfig & ANEG_CFG_PS2)
4333 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
4334 if (ap->rxconfig & ANEG_CFG_RF1)
4335 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
4336 if (ap->rxconfig & ANEG_CFG_RF2)
4337 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
4338 if (ap->rxconfig & ANEG_CFG_NP)
4339 ap->flags |= MR_LP_ADV_NEXT_PAGE;
4340
4341 ap->link_time = ap->cur_time;
4342
4343 ap->flags ^= (MR_TOGGLE_TX);
4344 if (ap->rxconfig & 0x0008)
4345 ap->flags |= MR_TOGGLE_RX;
4346 if (ap->rxconfig & ANEG_CFG_NP)
4347 ap->flags |= MR_NP_RX;
4348 ap->flags |= MR_PAGE_RX;
4349
4350 ap->state = ANEG_STATE_COMPLETE_ACK;
4351 ret = ANEG_TIMER_ENAB;
4352 break;
4353
4354 case ANEG_STATE_COMPLETE_ACK:
4355 if (ap->ability_match != 0 &&
4356 ap->rxconfig == 0) {
4357 ap->state = ANEG_STATE_AN_ENABLE;
4358 break;
4359 }
4360 delta = ap->cur_time - ap->link_time;
4361 if (delta > ANEG_STATE_SETTLE_TIME) {
4362 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
4363 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4364 } else {
4365 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
4366 !(ap->flags & MR_NP_RX)) {
4367 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4368 } else {
4369 ret = ANEG_FAILED;
4370 }
4371 }
4372 }
4373 break;
4374
4375 case ANEG_STATE_IDLE_DETECT_INIT:
4376 ap->link_time = ap->cur_time;
4377 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4378 tw32_f(MAC_MODE, tp->mac_mode);
4379 udelay(40);
4380
4381 ap->state = ANEG_STATE_IDLE_DETECT;
4382 ret = ANEG_TIMER_ENAB;
4383 break;
4384
4385 case ANEG_STATE_IDLE_DETECT:
4386 if (ap->ability_match != 0 &&
4387 ap->rxconfig == 0) {
4388 ap->state = ANEG_STATE_AN_ENABLE;
4389 break;
4390 }
4391 delta = ap->cur_time - ap->link_time;
4392 if (delta > ANEG_STATE_SETTLE_TIME) {
4393 /* XXX another gem from the Broadcom driver :( */
4394 ap->state = ANEG_STATE_LINK_OK;
4395 }
4396 break;
4397
4398 case ANEG_STATE_LINK_OK:
4399 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
4400 ret = ANEG_DONE;
4401 break;
4402
4403 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
4404 /* ??? unimplemented */
4405 break;
4406
4407 case ANEG_STATE_NEXT_PAGE_WAIT:
4408 /* ??? unimplemented */
4409 break;
4410
4411 default:
4412 ret = ANEG_FAILED;
4413 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415
4416 return ret;
4417}
4418
Matt Carlson5be73b42007-12-20 20:09:29 -08004419static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420{
4421 int res = 0;
4422 struct tg3_fiber_aneginfo aninfo;
4423 int status = ANEG_FAILED;
4424 unsigned int tick;
4425 u32 tmp;
4426
4427 tw32_f(MAC_TX_AUTO_NEG, 0);
4428
4429 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
4430 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
4431 udelay(40);
4432
4433 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
4434 udelay(40);
4435
4436 memset(&aninfo, 0, sizeof(aninfo));
4437 aninfo.flags |= MR_AN_ENABLE;
4438 aninfo.state = ANEG_STATE_UNKNOWN;
4439 aninfo.cur_time = 0;
4440 tick = 0;
4441 while (++tick < 195000) {
4442 status = tg3_fiber_aneg_smachine(tp, &aninfo);
4443 if (status == ANEG_DONE || status == ANEG_FAILED)
4444 break;
4445
4446 udelay(1);
4447 }
4448
4449 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4450 tw32_f(MAC_MODE, tp->mac_mode);
4451 udelay(40);
4452
Matt Carlson5be73b42007-12-20 20:09:29 -08004453 *txflags = aninfo.txconfig;
4454 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455
4456 if (status == ANEG_DONE &&
4457 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
4458 MR_LP_ADV_FULL_DUPLEX)))
4459 res = 1;
4460
4461 return res;
4462}
4463
4464static void tg3_init_bcm8002(struct tg3 *tp)
4465{
4466 u32 mac_status = tr32(MAC_STATUS);
4467 int i;
4468
4469 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00004470 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 !(mac_status & MAC_STATUS_PCS_SYNCED))
4472 return;
4473
4474 /* Set PLL lock range. */
4475 tg3_writephy(tp, 0x16, 0x8007);
4476
4477 /* SW reset */
4478 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
4479
4480 /* Wait for reset to complete. */
4481 /* XXX schedule_timeout() ... */
4482 for (i = 0; i < 500; i++)
4483 udelay(10);
4484
4485 /* Config mode; select PMA/Ch 1 regs. */
4486 tg3_writephy(tp, 0x10, 0x8411);
4487
4488 /* Enable auto-lock and comdet, select txclk for tx. */
4489 tg3_writephy(tp, 0x11, 0x0a10);
4490
4491 tg3_writephy(tp, 0x18, 0x00a0);
4492 tg3_writephy(tp, 0x16, 0x41ff);
4493
4494 /* Assert and deassert POR. */
4495 tg3_writephy(tp, 0x13, 0x0400);
4496 udelay(40);
4497 tg3_writephy(tp, 0x13, 0x0000);
4498
4499 tg3_writephy(tp, 0x11, 0x0a50);
4500 udelay(40);
4501 tg3_writephy(tp, 0x11, 0x0a10);
4502
4503 /* Wait for signal to stabilize */
4504 /* XXX schedule_timeout() ... */
4505 for (i = 0; i < 15000; i++)
4506 udelay(10);
4507
4508 /* Deselect the channel register so we can read the PHYID
4509 * later.
4510 */
4511 tg3_writephy(tp, 0x10, 0x8011);
4512}
4513
4514static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
4515{
Matt Carlson82cd3d12007-12-20 20:09:00 -08004516 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 u32 sg_dig_ctrl, sg_dig_status;
4518 u32 serdes_cfg, expected_sg_dig_ctrl;
4519 int workaround, port_a;
4520 int current_link_up;
4521
4522 serdes_cfg = 0;
4523 expected_sg_dig_ctrl = 0;
4524 workaround = 0;
4525 port_a = 1;
4526 current_link_up = 0;
4527
4528 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
4529 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
4530 workaround = 1;
4531 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
4532 port_a = 0;
4533
4534 /* preserve bits 0-11,13,14 for signal pre-emphasis */
4535 /* preserve bits 20-23 for voltage regulator */
4536 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
4537 }
4538
4539 sg_dig_ctrl = tr32(SG_DIG_CTRL);
4540
4541 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004542 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 if (workaround) {
4544 u32 val = serdes_cfg;
4545
4546 if (port_a)
4547 val |= 0xc010000;
4548 else
4549 val |= 0x4010000;
4550 tw32_f(MAC_SERDES_CFG, val);
4551 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004552
4553 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 }
4555 if (mac_status & MAC_STATUS_PCS_SYNCED) {
4556 tg3_setup_flow_control(tp, 0, 0);
4557 current_link_up = 1;
4558 }
4559 goto out;
4560 }
4561
4562 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004563 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
Matt Carlson82cd3d12007-12-20 20:09:00 -08004565 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4566 if (flowctrl & ADVERTISE_1000XPAUSE)
4567 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
4568 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4569 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
4571 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004572 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07004573 tp->serdes_counter &&
4574 ((mac_status & (MAC_STATUS_PCS_SYNCED |
4575 MAC_STATUS_RCVD_CFG)) ==
4576 MAC_STATUS_PCS_SYNCED)) {
4577 tp->serdes_counter--;
4578 current_link_up = 1;
4579 goto out;
4580 }
4581restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 if (workaround)
4583 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004584 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 udelay(5);
4586 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
4587
Michael Chan3d3ebe72006-09-27 15:59:15 -07004588 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004589 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
4591 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004592 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 mac_status = tr32(MAC_STATUS);
4594
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004595 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08004597 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598
Matt Carlson82cd3d12007-12-20 20:09:00 -08004599 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
4600 local_adv |= ADVERTISE_1000XPAUSE;
4601 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
4602 local_adv |= ADVERTISE_1000XPSE_ASYM;
4603
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004604 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004605 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004606 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004607 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608
Matt Carlson859edb22011-12-08 14:40:16 +00004609 tp->link_config.rmt_adv =
4610 mii_adv_to_ethtool_adv_x(remote_adv);
4611
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 tg3_setup_flow_control(tp, local_adv, remote_adv);
4613 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004614 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004615 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004616 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004617 if (tp->serdes_counter)
4618 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 else {
4620 if (workaround) {
4621 u32 val = serdes_cfg;
4622
4623 if (port_a)
4624 val |= 0xc010000;
4625 else
4626 val |= 0x4010000;
4627
4628 tw32_f(MAC_SERDES_CFG, val);
4629 }
4630
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004631 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 udelay(40);
4633
4634 /* Link parallel detection - link is up */
4635 /* only if we have PCS_SYNC and not */
4636 /* receiving config code words */
4637 mac_status = tr32(MAC_STATUS);
4638 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
4639 !(mac_status & MAC_STATUS_RCVD_CFG)) {
4640 tg3_setup_flow_control(tp, 0, 0);
4641 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004642 tp->phy_flags |=
4643 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004644 tp->serdes_counter =
4645 SERDES_PARALLEL_DET_TIMEOUT;
4646 } else
4647 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 }
4649 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07004650 } else {
4651 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004652 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 }
4654
4655out:
4656 return current_link_up;
4657}
4658
4659static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
4660{
4661 int current_link_up = 0;
4662
Michael Chan5cf64b8a2007-05-05 12:11:21 -07004663 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
4666 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08004667 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004669
Matt Carlson5be73b42007-12-20 20:09:29 -08004670 if (fiber_autoneg(tp, &txflags, &rxflags)) {
4671 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672
Matt Carlson5be73b42007-12-20 20:09:29 -08004673 if (txflags & ANEG_CFG_PS1)
4674 local_adv |= ADVERTISE_1000XPAUSE;
4675 if (txflags & ANEG_CFG_PS2)
4676 local_adv |= ADVERTISE_1000XPSE_ASYM;
4677
4678 if (rxflags & MR_LP_ADV_SYM_PAUSE)
4679 remote_adv |= LPA_1000XPAUSE;
4680 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
4681 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682
Matt Carlson859edb22011-12-08 14:40:16 +00004683 tp->link_config.rmt_adv =
4684 mii_adv_to_ethtool_adv_x(remote_adv);
4685
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 tg3_setup_flow_control(tp, local_adv, remote_adv);
4687
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 current_link_up = 1;
4689 }
4690 for (i = 0; i < 30; i++) {
4691 udelay(20);
4692 tw32_f(MAC_STATUS,
4693 (MAC_STATUS_SYNC_CHANGED |
4694 MAC_STATUS_CFG_CHANGED));
4695 udelay(40);
4696 if ((tr32(MAC_STATUS) &
4697 (MAC_STATUS_SYNC_CHANGED |
4698 MAC_STATUS_CFG_CHANGED)) == 0)
4699 break;
4700 }
4701
4702 mac_status = tr32(MAC_STATUS);
4703 if (current_link_up == 0 &&
4704 (mac_status & MAC_STATUS_PCS_SYNCED) &&
4705 !(mac_status & MAC_STATUS_RCVD_CFG))
4706 current_link_up = 1;
4707 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08004708 tg3_setup_flow_control(tp, 0, 0);
4709
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 /* Forcing 1000FD link up. */
4711 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712
4713 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
4714 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004715
4716 tw32_f(MAC_MODE, tp->mac_mode);
4717 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 }
4719
4720out:
4721 return current_link_up;
4722}
4723
4724static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
4725{
4726 u32 orig_pause_cfg;
4727 u16 orig_active_speed;
4728 u8 orig_active_duplex;
4729 u32 mac_status;
4730 int current_link_up;
4731 int i;
4732
Matt Carlson8d018622007-12-20 20:05:44 -08004733 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 orig_active_speed = tp->link_config.active_speed;
4735 orig_active_duplex = tp->link_config.active_duplex;
4736
Joe Perches63c3a662011-04-26 08:12:10 +00004737 if (!tg3_flag(tp, HW_AUTONEG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 netif_carrier_ok(tp->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00004739 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 mac_status = tr32(MAC_STATUS);
4741 mac_status &= (MAC_STATUS_PCS_SYNCED |
4742 MAC_STATUS_SIGNAL_DET |
4743 MAC_STATUS_CFG_CHANGED |
4744 MAC_STATUS_RCVD_CFG);
4745 if (mac_status == (MAC_STATUS_PCS_SYNCED |
4746 MAC_STATUS_SIGNAL_DET)) {
4747 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4748 MAC_STATUS_CFG_CHANGED));
4749 return 0;
4750 }
4751 }
4752
4753 tw32_f(MAC_TX_AUTO_NEG, 0);
4754
4755 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
4756 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
4757 tw32_f(MAC_MODE, tp->mac_mode);
4758 udelay(40);
4759
Matt Carlson79eb6902010-02-17 15:17:03 +00004760 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 tg3_init_bcm8002(tp);
4762
4763 /* Enable link change event even when serdes polling. */
4764 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4765 udelay(40);
4766
4767 current_link_up = 0;
Matt Carlson859edb22011-12-08 14:40:16 +00004768 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 mac_status = tr32(MAC_STATUS);
4770
Joe Perches63c3a662011-04-26 08:12:10 +00004771 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
4773 else
4774 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
4775
Matt Carlson898a56f2009-08-28 14:02:40 +00004776 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00004778 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779
4780 for (i = 0; i < 100; i++) {
4781 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4782 MAC_STATUS_CFG_CHANGED));
4783 udelay(5);
4784 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07004785 MAC_STATUS_CFG_CHANGED |
4786 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 break;
4788 }
4789
4790 mac_status = tr32(MAC_STATUS);
4791 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
4792 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004793 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
4794 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 tw32_f(MAC_MODE, (tp->mac_mode |
4796 MAC_MODE_SEND_CONFIGS));
4797 udelay(1);
4798 tw32_f(MAC_MODE, tp->mac_mode);
4799 }
4800 }
4801
4802 if (current_link_up == 1) {
4803 tp->link_config.active_speed = SPEED_1000;
4804 tp->link_config.active_duplex = DUPLEX_FULL;
4805 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4806 LED_CTRL_LNKLED_OVERRIDE |
4807 LED_CTRL_1000MBPS_ON));
4808 } else {
4809 tp->link_config.active_speed = SPEED_INVALID;
4810 tp->link_config.active_duplex = DUPLEX_INVALID;
4811 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4812 LED_CTRL_LNKLED_OVERRIDE |
4813 LED_CTRL_TRAFFIC_OVERRIDE));
4814 }
4815
4816 if (current_link_up != netif_carrier_ok(tp->dev)) {
4817 if (current_link_up)
4818 netif_carrier_on(tp->dev);
4819 else
4820 netif_carrier_off(tp->dev);
4821 tg3_link_report(tp);
4822 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08004823 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 if (orig_pause_cfg != now_pause_cfg ||
4825 orig_active_speed != tp->link_config.active_speed ||
4826 orig_active_duplex != tp->link_config.active_duplex)
4827 tg3_link_report(tp);
4828 }
4829
4830 return 0;
4831}
4832
Michael Chan747e8f82005-07-25 12:33:22 -07004833static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
4834{
4835 int current_link_up, err = 0;
4836 u32 bmsr, bmcr;
4837 u16 current_speed;
4838 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08004839 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07004840
4841 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4842 tw32_f(MAC_MODE, tp->mac_mode);
4843 udelay(40);
4844
4845 tw32(MAC_EVENT, 0);
4846
4847 tw32_f(MAC_STATUS,
4848 (MAC_STATUS_SYNC_CHANGED |
4849 MAC_STATUS_CFG_CHANGED |
4850 MAC_STATUS_MI_COMPLETION |
4851 MAC_STATUS_LNKSTATE_CHANGED));
4852 udelay(40);
4853
4854 if (force_reset)
4855 tg3_phy_reset(tp);
4856
4857 current_link_up = 0;
4858 current_speed = SPEED_INVALID;
4859 current_duplex = DUPLEX_INVALID;
Matt Carlson859edb22011-12-08 14:40:16 +00004860 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07004861
4862 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4863 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004864 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
4865 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4866 bmsr |= BMSR_LSTATUS;
4867 else
4868 bmsr &= ~BMSR_LSTATUS;
4869 }
Michael Chan747e8f82005-07-25 12:33:22 -07004870
4871 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
4872
4873 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004874 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004875 /* do nothing, just check for link up at the end */
4876 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05004877 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07004878
4879 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05004880 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
4881 ADVERTISE_1000XPAUSE |
4882 ADVERTISE_1000XPSE_ASYM |
4883 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07004884
Matt Carlson28011cf2011-11-16 18:36:59 -05004885 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00004886 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07004887
Matt Carlson28011cf2011-11-16 18:36:59 -05004888 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
4889 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07004890 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
4891 tg3_writephy(tp, MII_BMCR, bmcr);
4892
4893 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07004894 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004895 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004896
4897 return err;
4898 }
4899 } else {
4900 u32 new_bmcr;
4901
4902 bmcr &= ~BMCR_SPEED1000;
4903 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
4904
4905 if (tp->link_config.duplex == DUPLEX_FULL)
4906 new_bmcr |= BMCR_FULLDPLX;
4907
4908 if (new_bmcr != bmcr) {
4909 /* BMCR_SPEED1000 is a reserved bit that needs
4910 * to be set on write.
4911 */
4912 new_bmcr |= BMCR_SPEED1000;
4913
4914 /* Force a linkdown */
4915 if (netif_carrier_ok(tp->dev)) {
4916 u32 adv;
4917
4918 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4919 adv &= ~(ADVERTISE_1000XFULL |
4920 ADVERTISE_1000XHALF |
4921 ADVERTISE_SLCT);
4922 tg3_writephy(tp, MII_ADVERTISE, adv);
4923 tg3_writephy(tp, MII_BMCR, bmcr |
4924 BMCR_ANRESTART |
4925 BMCR_ANENABLE);
4926 udelay(10);
4927 netif_carrier_off(tp->dev);
4928 }
4929 tg3_writephy(tp, MII_BMCR, new_bmcr);
4930 bmcr = new_bmcr;
4931 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4932 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004933 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
4934 ASIC_REV_5714) {
4935 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4936 bmsr |= BMSR_LSTATUS;
4937 else
4938 bmsr &= ~BMSR_LSTATUS;
4939 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004940 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004941 }
4942 }
4943
4944 if (bmsr & BMSR_LSTATUS) {
4945 current_speed = SPEED_1000;
4946 current_link_up = 1;
4947 if (bmcr & BMCR_FULLDPLX)
4948 current_duplex = DUPLEX_FULL;
4949 else
4950 current_duplex = DUPLEX_HALF;
4951
Matt Carlsonef167e22007-12-20 20:10:01 -08004952 local_adv = 0;
4953 remote_adv = 0;
4954
Michael Chan747e8f82005-07-25 12:33:22 -07004955 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08004956 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07004957
4958 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
4959 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
4960 common = local_adv & remote_adv;
4961 if (common & (ADVERTISE_1000XHALF |
4962 ADVERTISE_1000XFULL)) {
4963 if (common & ADVERTISE_1000XFULL)
4964 current_duplex = DUPLEX_FULL;
4965 else
4966 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00004967
4968 tp->link_config.rmt_adv =
4969 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00004970 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00004971 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00004972 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07004973 current_link_up = 0;
Matt Carlson859a588792010-04-05 10:19:28 +00004974 }
Michael Chan747e8f82005-07-25 12:33:22 -07004975 }
4976 }
4977
Matt Carlsonef167e22007-12-20 20:10:01 -08004978 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
4979 tg3_setup_flow_control(tp, local_adv, remote_adv);
4980
Michael Chan747e8f82005-07-25 12:33:22 -07004981 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4982 if (tp->link_config.active_duplex == DUPLEX_HALF)
4983 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4984
4985 tw32_f(MAC_MODE, tp->mac_mode);
4986 udelay(40);
4987
4988 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4989
4990 tp->link_config.active_speed = current_speed;
4991 tp->link_config.active_duplex = current_duplex;
4992
4993 if (current_link_up != netif_carrier_ok(tp->dev)) {
4994 if (current_link_up)
4995 netif_carrier_on(tp->dev);
4996 else {
4997 netif_carrier_off(tp->dev);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004998 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004999 }
5000 tg3_link_report(tp);
5001 }
5002 return err;
5003}
5004
5005static void tg3_serdes_parallel_detect(struct tg3 *tp)
5006{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005007 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005008 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005009 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005010 return;
5011 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005012
Michael Chan747e8f82005-07-25 12:33:22 -07005013 if (!netif_carrier_ok(tp->dev) &&
5014 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5015 u32 bmcr;
5016
5017 tg3_readphy(tp, MII_BMCR, &bmcr);
5018 if (bmcr & BMCR_ANENABLE) {
5019 u32 phy1, phy2;
5020
5021 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005022 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5023 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005024
5025 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005026 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5027 MII_TG3_DSP_EXP1_INT_STAT);
5028 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5029 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005030
5031 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5032 /* We have signal detect and not receiving
5033 * config code words, link is up by parallel
5034 * detection.
5035 */
5036
5037 bmcr &= ~BMCR_ANENABLE;
5038 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5039 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005040 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005041 }
5042 }
Matt Carlson859a588792010-04-05 10:19:28 +00005043 } else if (netif_carrier_ok(tp->dev) &&
5044 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005045 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005046 u32 phy2;
5047
5048 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005049 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5050 MII_TG3_DSP_EXP1_INT_STAT);
5051 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005052 if (phy2 & 0x20) {
5053 u32 bmcr;
5054
5055 /* Config code words received, turn on autoneg. */
5056 tg3_readphy(tp, MII_BMCR, &bmcr);
5057 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
5058
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005059 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005060
5061 }
5062 }
5063}
5064
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065static int tg3_setup_phy(struct tg3 *tp, int force_reset)
5066{
Matt Carlsonf2096f92011-04-05 14:22:48 +00005067 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068 int err;
5069
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005070 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005072 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07005073 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00005074 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076
Matt Carlsonbcb37f62008-11-03 16:52:09 -08005077 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005078 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08005079
5080 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
5081 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
5082 scale = 65;
5083 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
5084 scale = 6;
5085 else
5086 scale = 12;
5087
5088 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
5089 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
5090 tw32(GRC_MISC_CFG, val);
5091 }
5092
Matt Carlsonf2096f92011-04-05 14:22:48 +00005093 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5094 (6 << TX_LENGTHS_IPG_SHIFT);
5095 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
5096 val |= tr32(MAC_TX_LENGTHS) &
5097 (TX_LENGTHS_JMB_FRM_LEN_MSK |
5098 TX_LENGTHS_CNT_DWN_VAL_MSK);
5099
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100 if (tp->link_config.active_speed == SPEED_1000 &&
5101 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005102 tw32(MAC_TX_LENGTHS, val |
5103 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00005105 tw32(MAC_TX_LENGTHS, val |
5106 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107
Joe Perches63c3a662011-04-26 08:12:10 +00005108 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 if (netif_carrier_ok(tp->dev)) {
5110 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07005111 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 } else {
5113 tw32(HOSTCC_STAT_COAL_TICKS, 0);
5114 }
5115 }
5116
Joe Perches63c3a662011-04-26 08:12:10 +00005117 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005118 val = tr32(PCIE_PWR_MGMT_THRESH);
Matt Carlson8ed5d972007-05-07 00:25:49 -07005119 if (!netif_carrier_ok(tp->dev))
5120 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
5121 tp->pwrmgmt_thresh;
5122 else
5123 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
5124 tw32(PCIE_PWR_MGMT_THRESH, val);
5125 }
5126
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127 return err;
5128}
5129
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005130static inline int tg3_irq_sync(struct tg3 *tp)
5131{
5132 return tp->irq_sync;
5133}
5134
Matt Carlson97bd8e42011-04-13 11:05:04 +00005135static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
5136{
5137 int i;
5138
5139 dst = (u32 *)((u8 *)dst + off);
5140 for (i = 0; i < len; i += sizeof(u32))
5141 *dst++ = tr32(off + i);
5142}
5143
5144static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
5145{
5146 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
5147 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
5148 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
5149 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
5150 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
5151 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
5152 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
5153 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
5154 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
5155 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
5156 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
5157 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
5158 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
5159 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
5160 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
5161 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
5162 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
5163 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
5164 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
5165
Joe Perches63c3a662011-04-26 08:12:10 +00005166 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005167 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
5168
5169 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
5170 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
5171 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
5172 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
5173 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
5174 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
5175 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
5176 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
5177
Joe Perches63c3a662011-04-26 08:12:10 +00005178 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005179 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
5180 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
5181 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
5182 }
5183
5184 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
5185 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
5186 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
5187 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
5188 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
5189
Joe Perches63c3a662011-04-26 08:12:10 +00005190 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005191 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
5192}
5193
5194static void tg3_dump_state(struct tg3 *tp)
5195{
5196 int i;
5197 u32 *regs;
5198
5199 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
5200 if (!regs) {
5201 netdev_err(tp->dev, "Failed allocating register dump buffer\n");
5202 return;
5203 }
5204
Joe Perches63c3a662011-04-26 08:12:10 +00005205 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005206 /* Read up to but not including private PCI registers */
5207 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
5208 regs[i / sizeof(u32)] = tr32(i);
5209 } else
5210 tg3_dump_legacy_regs(tp, regs);
5211
5212 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
5213 if (!regs[i + 0] && !regs[i + 1] &&
5214 !regs[i + 2] && !regs[i + 3])
5215 continue;
5216
5217 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
5218 i * 4,
5219 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
5220 }
5221
5222 kfree(regs);
5223
5224 for (i = 0; i < tp->irq_cnt; i++) {
5225 struct tg3_napi *tnapi = &tp->napi[i];
5226
5227 /* SW status block */
5228 netdev_err(tp->dev,
5229 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
5230 i,
5231 tnapi->hw_status->status,
5232 tnapi->hw_status->status_tag,
5233 tnapi->hw_status->rx_jumbo_consumer,
5234 tnapi->hw_status->rx_consumer,
5235 tnapi->hw_status->rx_mini_consumer,
5236 tnapi->hw_status->idx[0].rx_producer,
5237 tnapi->hw_status->idx[0].tx_consumer);
5238
5239 netdev_err(tp->dev,
5240 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
5241 i,
5242 tnapi->last_tag, tnapi->last_irq_tag,
5243 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
5244 tnapi->rx_rcb_ptr,
5245 tnapi->prodring.rx_std_prod_idx,
5246 tnapi->prodring.rx_std_cons_idx,
5247 tnapi->prodring.rx_jmb_prod_idx,
5248 tnapi->prodring.rx_jmb_cons_idx);
5249 }
5250}
5251
Michael Chandf3e6542006-05-26 17:48:07 -07005252/* This is called whenever we suspect that the system chipset is re-
5253 * ordering the sequence of MMIO to the tx send mailbox. The symptom
5254 * is bogus tx completions. We try to recover by setting the
5255 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
5256 * in the workqueue.
5257 */
5258static void tg3_tx_recover(struct tg3 *tp)
5259{
Joe Perches63c3a662011-04-26 08:12:10 +00005260 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07005261 tp->write32_tx_mbox == tg3_write_indirect_mbox);
5262
Matt Carlson5129c3a2010-04-05 10:19:23 +00005263 netdev_warn(tp->dev,
5264 "The system may be re-ordering memory-mapped I/O "
5265 "cycles to the network device, attempting to recover. "
5266 "Please report the problem to the driver maintainer "
5267 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07005268
5269 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005270 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005271 spin_unlock(&tp->lock);
5272}
5273
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005274static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07005275{
Matt Carlsonf65aac12010-08-02 11:26:03 +00005276 /* Tell compiler to fetch tx indices from memory. */
5277 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005278 return tnapi->tx_pending -
5279 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07005280}
5281
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282/* Tigon3 never reports partial packet sends. So we do not
5283 * need special logic to handle SKBs that have not had all
5284 * of their frags sent yet, like SunGEM does.
5285 */
Matt Carlson17375d22009-08-28 14:02:18 +00005286static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287{
Matt Carlson17375d22009-08-28 14:02:18 +00005288 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005289 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005290 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005291 struct netdev_queue *txq;
5292 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00005293 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005294
Joe Perches63c3a662011-04-26 08:12:10 +00005295 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005296 index--;
5297
5298 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
5300 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00005301 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07005303 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304
Michael Chandf3e6542006-05-26 17:48:07 -07005305 if (unlikely(skb == NULL)) {
5306 tg3_tx_recover(tp);
5307 return;
5308 }
5309
Alexander Duyckf4188d82009-12-02 16:48:38 +00005310 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005311 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005312 skb_headlen(skb),
5313 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314
5315 ri->skb = NULL;
5316
Matt Carlsone01ee142011-07-27 14:20:50 +00005317 while (ri->fragmented) {
5318 ri->fragmented = false;
5319 sw_idx = NEXT_TX(sw_idx);
5320 ri = &tnapi->tx_buffers[sw_idx];
5321 }
5322
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 sw_idx = NEXT_TX(sw_idx);
5324
5325 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005326 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07005327 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
5328 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005329
5330 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005331 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00005332 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005333 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00005334
5335 while (ri->fragmented) {
5336 ri->fragmented = false;
5337 sw_idx = NEXT_TX(sw_idx);
5338 ri = &tnapi->tx_buffers[sw_idx];
5339 }
5340
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 sw_idx = NEXT_TX(sw_idx);
5342 }
5343
Tom Herbert298376d2011-11-28 16:33:30 +00005344 pkts_compl++;
5345 bytes_compl += skb->len;
5346
David S. Millerf47c11e2005-06-24 20:18:35 -07005347 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07005348
5349 if (unlikely(tx_bug)) {
5350 tg3_tx_recover(tp);
5351 return;
5352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353 }
5354
Tom Herbert5cb917b2012-03-05 19:53:50 +00005355 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00005356
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005357 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358
Michael Chan1b2a7202006-08-07 21:46:02 -07005359 /* Need to make the tx_cons update visible to tg3_start_xmit()
5360 * before checking for netif_queue_stopped(). Without the
5361 * memory barrier, there is a small possibility that tg3_start_xmit()
5362 * will miss it and cause the queue to be stopped forever.
5363 */
5364 smp_mb();
5365
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005366 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005367 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005368 __netif_tx_lock(txq, smp_processor_id());
5369 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005370 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005371 netif_tx_wake_queue(txq);
5372 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07005373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374}
5375
Eric Dumazet9205fd92011-11-18 06:47:01 +00005376static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005377{
Eric Dumazet9205fd92011-11-18 06:47:01 +00005378 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005379 return;
5380
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005381 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005382 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005383 kfree(ri->data);
5384 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005385}
5386
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387/* Returns size of skb allocated or < 0 on error.
5388 *
5389 * We only need to fill in the address because the other members
5390 * of the RX descriptor are invariant, see tg3_init_rings.
5391 *
5392 * Note the purposeful assymetry of cpu vs. chip accesses. For
5393 * posting buffers we only dirty the first cache line of the RX
5394 * descriptor (containing the address). Whereas for the RX status
5395 * buffers the cpu only reads the last cacheline of the RX descriptor
5396 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
5397 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00005398static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Matt Carlsona3896162009-11-13 13:03:44 +00005399 u32 opaque_key, u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400{
5401 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00005402 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005403 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005405 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407 switch (opaque_key) {
5408 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005409 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00005410 desc = &tpr->rx_std[dest_idx];
5411 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00005412 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 break;
5414
5415 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005416 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00005417 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00005418 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00005419 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420 break;
5421
5422 default:
5423 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425
5426 /* Do not overwrite any of the map or rp information
5427 * until we are sure we can commit to a new buffer.
5428 *
5429 * Callers depend upon this behavior and assume that
5430 * we leave everything unchanged if we fail.
5431 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00005432 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
5433 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
5434 data = kmalloc(skb_size, GFP_ATOMIC);
5435 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 return -ENOMEM;
5437
Eric Dumazet9205fd92011-11-18 06:47:01 +00005438 mapping = pci_map_single(tp->pdev,
5439 data + TG3_RX_OFFSET(tp),
5440 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441 PCI_DMA_FROMDEVICE);
Matt Carlsona21771d2009-11-02 14:25:31 +00005442 if (pci_dma_mapping_error(tp->pdev, mapping)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00005443 kfree(data);
Matt Carlsona21771d2009-11-02 14:25:31 +00005444 return -EIO;
5445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446
Eric Dumazet9205fd92011-11-18 06:47:01 +00005447 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005448 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 desc->addr_hi = ((u64)mapping >> 32);
5451 desc->addr_lo = ((u64)mapping & 0xffffffff);
5452
Eric Dumazet9205fd92011-11-18 06:47:01 +00005453 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454}
5455
5456/* We only need to move over in the address because the other
5457 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00005458 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459 */
Matt Carlsona3896162009-11-13 13:03:44 +00005460static void tg3_recycle_rx(struct tg3_napi *tnapi,
5461 struct tg3_rx_prodring_set *dpr,
5462 u32 opaque_key, int src_idx,
5463 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464{
Matt Carlson17375d22009-08-28 14:02:18 +00005465 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
5467 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005468 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005469 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470
5471 switch (opaque_key) {
5472 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005473 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005474 dest_desc = &dpr->rx_std[dest_idx];
5475 dest_map = &dpr->rx_std_buffers[dest_idx];
5476 src_desc = &spr->rx_std[src_idx];
5477 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478 break;
5479
5480 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005481 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005482 dest_desc = &dpr->rx_jmb[dest_idx].std;
5483 dest_map = &dpr->rx_jmb_buffers[dest_idx];
5484 src_desc = &spr->rx_jmb[src_idx].std;
5485 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486 break;
5487
5488 default:
5489 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491
Eric Dumazet9205fd92011-11-18 06:47:01 +00005492 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005493 dma_unmap_addr_set(dest_map, mapping,
5494 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495 dest_desc->addr_hi = src_desc->addr_hi;
5496 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00005497
5498 /* Ensure that the update to the skb happens after the physical
5499 * addresses have been transferred to the new BD location.
5500 */
5501 smp_wmb();
5502
Eric Dumazet9205fd92011-11-18 06:47:01 +00005503 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504}
5505
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506/* The RX ring scheme is composed of multiple rings which post fresh
5507 * buffers to the chip, and one special ring the chip uses to report
5508 * status back to the host.
5509 *
5510 * The special ring reports the status of received packets to the
5511 * host. The chip does not write into the original descriptor the
5512 * RX buffer was obtained from. The chip simply takes the original
5513 * descriptor as provided by the host, updates the status and length
5514 * field, then writes this into the next status ring entry.
5515 *
5516 * Each ring the host uses to post buffers to the chip is described
5517 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
5518 * it is first placed into the on-chip ram. When the packet's length
5519 * is known, it walks down the TG3_BDINFO entries to select the ring.
5520 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
5521 * which is within the range of the new packet's length is chosen.
5522 *
5523 * The "separate ring for rx status" scheme may sound queer, but it makes
5524 * sense from a cache coherency perspective. If only the host writes
5525 * to the buffer post rings, and only the chip writes to the rx status
5526 * rings, then cache lines never move beyond shared-modified state.
5527 * If both the host and chip were to write into the same ring, cache line
5528 * eviction could occur since both entities want it in an exclusive state.
5529 */
Matt Carlson17375d22009-08-28 14:02:18 +00005530static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531{
Matt Carlson17375d22009-08-28 14:02:18 +00005532 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07005533 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005534 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00005535 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07005536 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005538 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005540 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541 /*
5542 * We need to order the read of hw_idx and the read of
5543 * the opaque cookie.
5544 */
5545 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546 work_mask = 0;
5547 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005548 std_prod_idx = tpr->rx_std_prod_idx;
5549 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00005551 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00005552 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553 unsigned int len;
5554 struct sk_buff *skb;
5555 dma_addr_t dma_addr;
5556 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005557 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558
5559 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
5560 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
5561 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005562 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005563 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005564 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00005565 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07005566 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005568 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005569 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005570 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00005571 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00005572 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574
5575 work_mask |= opaque_key;
5576
5577 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
5578 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
5579 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00005580 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581 desc_idx, *post_ptr);
5582 drop_it_no_recycle:
5583 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00005584 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585 goto next_pkt;
5586 }
5587
Eric Dumazet9205fd92011-11-18 06:47:01 +00005588 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08005589 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
5590 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
Matt Carlsond2757fc2010-04-12 06:58:27 +00005592 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593 int skb_size;
5594
Eric Dumazet9205fd92011-11-18 06:47:01 +00005595 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Matt Carlsonafc081f2009-11-13 13:03:43 +00005596 *post_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597 if (skb_size < 0)
5598 goto drop_it;
5599
Matt Carlson287be122009-08-28 13:58:46 +00005600 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 PCI_DMA_FROMDEVICE);
5602
Eric Dumazet9205fd92011-11-18 06:47:01 +00005603 skb = build_skb(data);
5604 if (!skb) {
5605 kfree(data);
5606 goto drop_it_no_recycle;
5607 }
5608 skb_reserve(skb, TG3_RX_OFFSET(tp));
5609 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00005610 * after the usage of the old DMA mapping.
5611 */
5612 smp_wmb();
5613
Eric Dumazet9205fd92011-11-18 06:47:01 +00005614 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00005615
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00005617 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618 desc_idx, *post_ptr);
5619
Eric Dumazet9205fd92011-11-18 06:47:01 +00005620 skb = netdev_alloc_skb(tp->dev,
5621 len + TG3_RAW_IP_ALIGN);
5622 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623 goto drop_it_no_recycle;
5624
Eric Dumazet9205fd92011-11-18 06:47:01 +00005625 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005627 memcpy(skb->data,
5628 data + TG3_RX_OFFSET(tp),
5629 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 }
5632
Eric Dumazet9205fd92011-11-18 06:47:01 +00005633 skb_put(skb, len);
Michał Mirosławdc668912011-04-07 03:35:07 +00005634 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
5636 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
5637 >> RXD_TCPCSUM_SHIFT) == 0xffff))
5638 skb->ip_summed = CHECKSUM_UNNECESSARY;
5639 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005640 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641
5642 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005643
5644 if (len > (tp->dev->mtu + ETH_HLEN) &&
5645 skb->protocol != htons(ETH_P_8021Q)) {
5646 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00005647 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005648 }
5649
Matt Carlson9dc7a112010-04-12 06:58:28 +00005650 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00005651 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
5652 __vlan_hwaccel_put_tag(skb,
5653 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00005654
Matt Carlsonbf933c82011-01-25 15:58:49 +00005655 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 received++;
5658 budget--;
5659
5660next_pkt:
5661 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07005662
5663 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005664 tpr->rx_std_prod_idx = std_prod_idx &
5665 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00005666 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5667 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07005668 work_mask &= ~RXD_OPAQUE_RING_STD;
5669 rx_std_posted = 0;
5670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07005672 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00005673 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07005674
5675 /* Refresh hw_idx to see if there is new work */
5676 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005677 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07005678 rmb();
5679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680 }
5681
5682 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00005683 tnapi->rx_rcb_ptr = sw_idx;
5684 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685
5686 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00005687 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005688 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005689 tpr->rx_std_prod_idx = std_prod_idx &
5690 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005691 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5692 tpr->rx_std_prod_idx);
5693 }
5694 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005695 tpr->rx_jmb_prod_idx = jmb_prod_idx &
5696 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005697 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5698 tpr->rx_jmb_prod_idx);
5699 }
5700 mmiowb();
5701 } else if (work_mask) {
5702 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
5703 * updated before the producer indices can be updated.
5704 */
5705 smp_wmb();
5706
Matt Carlson2c49a442010-09-30 10:34:35 +00005707 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
5708 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005709
Matt Carlsone4af1af2010-02-12 14:47:05 +00005710 if (tnapi != &tp->napi[1])
5711 napi_schedule(&tp->napi[1].napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713
5714 return received;
5715}
5716
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005717static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00005720 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005721 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
5722
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723 if (sblk->status & SD_STATUS_LINK_CHG) {
5724 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005725 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07005726 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005727 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07005728 tw32_f(MAC_STATUS,
5729 (MAC_STATUS_SYNC_CHANGED |
5730 MAC_STATUS_CFG_CHANGED |
5731 MAC_STATUS_MI_COMPLETION |
5732 MAC_STATUS_LNKSTATE_CHANGED));
5733 udelay(40);
5734 } else
5735 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07005736 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737 }
5738 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005739}
5740
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005741static int tg3_rx_prodring_xfer(struct tg3 *tp,
5742 struct tg3_rx_prodring_set *dpr,
5743 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005744{
5745 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005746 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005747
5748 while (1) {
5749 src_prod_idx = spr->rx_std_prod_idx;
5750
5751 /* Make sure updates to the rx_std_buffers[] entries and the
5752 * standard producer index are seen in the correct order.
5753 */
5754 smp_rmb();
5755
5756 if (spr->rx_std_cons_idx == src_prod_idx)
5757 break;
5758
5759 if (spr->rx_std_cons_idx < src_prod_idx)
5760 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
5761 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005762 cpycnt = tp->rx_std_ring_mask + 1 -
5763 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005764
Matt Carlson2c49a442010-09-30 10:34:35 +00005765 cpycnt = min(cpycnt,
5766 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005767
5768 si = spr->rx_std_cons_idx;
5769 di = dpr->rx_std_prod_idx;
5770
Matt Carlsone92967b2010-02-12 14:47:06 +00005771 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00005772 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00005773 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005774 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005775 break;
5776 }
5777 }
5778
5779 if (!cpycnt)
5780 break;
5781
5782 /* Ensure that updates to the rx_std_buffers ring and the
5783 * shadowed hardware producer ring from tg3_recycle_skb() are
5784 * ordered correctly WRT the skb check above.
5785 */
5786 smp_rmb();
5787
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005788 memcpy(&dpr->rx_std_buffers[di],
5789 &spr->rx_std_buffers[si],
5790 cpycnt * sizeof(struct ring_info));
5791
5792 for (i = 0; i < cpycnt; i++, di++, si++) {
5793 struct tg3_rx_buffer_desc *sbd, *dbd;
5794 sbd = &spr->rx_std[si];
5795 dbd = &dpr->rx_std[di];
5796 dbd->addr_hi = sbd->addr_hi;
5797 dbd->addr_lo = sbd->addr_lo;
5798 }
5799
Matt Carlson2c49a442010-09-30 10:34:35 +00005800 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
5801 tp->rx_std_ring_mask;
5802 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
5803 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005804 }
5805
5806 while (1) {
5807 src_prod_idx = spr->rx_jmb_prod_idx;
5808
5809 /* Make sure updates to the rx_jmb_buffers[] entries and
5810 * the jumbo producer index are seen in the correct order.
5811 */
5812 smp_rmb();
5813
5814 if (spr->rx_jmb_cons_idx == src_prod_idx)
5815 break;
5816
5817 if (spr->rx_jmb_cons_idx < src_prod_idx)
5818 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
5819 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005820 cpycnt = tp->rx_jmb_ring_mask + 1 -
5821 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005822
5823 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00005824 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005825
5826 si = spr->rx_jmb_cons_idx;
5827 di = dpr->rx_jmb_prod_idx;
5828
Matt Carlsone92967b2010-02-12 14:47:06 +00005829 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00005830 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00005831 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005832 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005833 break;
5834 }
5835 }
5836
5837 if (!cpycnt)
5838 break;
5839
5840 /* Ensure that updates to the rx_jmb_buffers ring and the
5841 * shadowed hardware producer ring from tg3_recycle_skb() are
5842 * ordered correctly WRT the skb check above.
5843 */
5844 smp_rmb();
5845
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005846 memcpy(&dpr->rx_jmb_buffers[di],
5847 &spr->rx_jmb_buffers[si],
5848 cpycnt * sizeof(struct ring_info));
5849
5850 for (i = 0; i < cpycnt; i++, di++, si++) {
5851 struct tg3_rx_buffer_desc *sbd, *dbd;
5852 sbd = &spr->rx_jmb[si].std;
5853 dbd = &dpr->rx_jmb[di].std;
5854 dbd->addr_hi = sbd->addr_hi;
5855 dbd->addr_lo = sbd->addr_lo;
5856 }
5857
Matt Carlson2c49a442010-09-30 10:34:35 +00005858 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
5859 tp->rx_jmb_ring_mask;
5860 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
5861 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005862 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005863
5864 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005865}
5866
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005867static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
5868{
5869 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870
5871 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005872 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00005873 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00005874 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07005875 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876 }
5877
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878 /* run RX thread, within the bounds set by NAPI.
5879 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005880 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005882 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00005883 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884
Joe Perches63c3a662011-04-26 08:12:10 +00005885 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005886 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005887 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00005888 u32 std_prod_idx = dpr->rx_std_prod_idx;
5889 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005890
Matt Carlsone4af1af2010-02-12 14:47:05 +00005891 for (i = 1; i < tp->irq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005892 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00005893 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005894
5895 wmb();
5896
Matt Carlsone4af1af2010-02-12 14:47:05 +00005897 if (std_prod_idx != dpr->rx_std_prod_idx)
5898 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5899 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005900
Matt Carlsone4af1af2010-02-12 14:47:05 +00005901 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
5902 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5903 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005904
5905 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005906
5907 if (err)
5908 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005909 }
5910
David S. Miller6f535762007-10-11 18:08:29 -07005911 return work_done;
5912}
David S. Millerf7383c22005-05-18 22:50:53 -07005913
Matt Carlsondb219972011-11-04 09:15:03 +00005914static inline void tg3_reset_task_schedule(struct tg3 *tp)
5915{
5916 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
5917 schedule_work(&tp->reset_task);
5918}
5919
5920static inline void tg3_reset_task_cancel(struct tg3 *tp)
5921{
5922 cancel_work_sync(&tp->reset_task);
5923 tg3_flag_clear(tp, RESET_TASK_PENDING);
5924}
5925
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005926static int tg3_poll_msix(struct napi_struct *napi, int budget)
5927{
5928 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5929 struct tg3 *tp = tnapi->tp;
5930 int work_done = 0;
5931 struct tg3_hw_status *sblk = tnapi->hw_status;
5932
5933 while (1) {
5934 work_done = tg3_poll_work(tnapi, work_done, budget);
5935
Joe Perches63c3a662011-04-26 08:12:10 +00005936 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005937 goto tx_recovery;
5938
5939 if (unlikely(work_done >= budget))
5940 break;
5941
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005942 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005943 * to tell the hw how much work has been processed,
5944 * so we must read it before checking for more work.
5945 */
5946 tnapi->last_tag = sblk->status_tag;
5947 tnapi->last_irq_tag = tnapi->last_tag;
5948 rmb();
5949
5950 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00005951 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
5952 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005953 napi_complete(napi);
5954 /* Reenable interrupts. */
5955 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
5956 mmiowb();
5957 break;
5958 }
5959 }
5960
5961 return work_done;
5962
5963tx_recovery:
5964 /* work_done is guaranteed to be less than budget. */
5965 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00005966 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005967 return work_done;
5968}
5969
Matt Carlsone64de4e2011-04-13 11:05:05 +00005970static void tg3_process_error(struct tg3 *tp)
5971{
5972 u32 val;
5973 bool real_error = false;
5974
Joe Perches63c3a662011-04-26 08:12:10 +00005975 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00005976 return;
5977
5978 /* Check Flow Attention register */
5979 val = tr32(HOSTCC_FLOW_ATTN);
5980 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
5981 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
5982 real_error = true;
5983 }
5984
5985 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
5986 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
5987 real_error = true;
5988 }
5989
5990 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
5991 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
5992 real_error = true;
5993 }
5994
5995 if (!real_error)
5996 return;
5997
5998 tg3_dump_state(tp);
5999
Joe Perches63c3a662011-04-26 08:12:10 +00006000 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00006001 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00006002}
6003
David S. Miller6f535762007-10-11 18:08:29 -07006004static int tg3_poll(struct napi_struct *napi, int budget)
6005{
Matt Carlson8ef04422009-08-28 14:01:37 +00006006 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6007 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07006008 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00006009 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07006010
6011 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00006012 if (sblk->status & SD_STATUS_ERROR)
6013 tg3_process_error(tp);
6014
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006015 tg3_poll_link(tp);
6016
Matt Carlson17375d22009-08-28 14:02:18 +00006017 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07006018
Joe Perches63c3a662011-04-26 08:12:10 +00006019 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07006020 goto tx_recovery;
6021
6022 if (unlikely(work_done >= budget))
6023 break;
6024
Joe Perches63c3a662011-04-26 08:12:10 +00006025 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00006026 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07006027 * to tell the hw how much work has been processed,
6028 * so we must read it before checking for more work.
6029 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006030 tnapi->last_tag = sblk->status_tag;
6031 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07006032 rmb();
6033 } else
6034 sblk->status &= ~SD_STATUS_UPDATED;
6035
Matt Carlson17375d22009-08-28 14:02:18 +00006036 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006037 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00006038 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07006039 break;
6040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 }
6042
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006043 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07006044
6045tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07006046 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08006047 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006048 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07006049 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050}
6051
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006052static void tg3_napi_disable(struct tg3 *tp)
6053{
6054 int i;
6055
6056 for (i = tp->irq_cnt - 1; i >= 0; i--)
6057 napi_disable(&tp->napi[i].napi);
6058}
6059
6060static void tg3_napi_enable(struct tg3 *tp)
6061{
6062 int i;
6063
6064 for (i = 0; i < tp->irq_cnt; i++)
6065 napi_enable(&tp->napi[i].napi);
6066}
6067
6068static void tg3_napi_init(struct tg3 *tp)
6069{
6070 int i;
6071
6072 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
6073 for (i = 1; i < tp->irq_cnt; i++)
6074 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
6075}
6076
6077static void tg3_napi_fini(struct tg3 *tp)
6078{
6079 int i;
6080
6081 for (i = 0; i < tp->irq_cnt; i++)
6082 netif_napi_del(&tp->napi[i].napi);
6083}
6084
6085static inline void tg3_netif_stop(struct tg3 *tp)
6086{
6087 tp->dev->trans_start = jiffies; /* prevent tx timeout */
6088 tg3_napi_disable(tp);
6089 netif_tx_disable(tp->dev);
6090}
6091
6092static inline void tg3_netif_start(struct tg3 *tp)
6093{
6094 /* NOTE: unconditional netif_tx_wake_all_queues is only
6095 * appropriate so long as all callers are assured to
6096 * have free tx slots (such as after tg3_init_hw)
6097 */
6098 netif_tx_wake_all_queues(tp->dev);
6099
6100 tg3_napi_enable(tp);
6101 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
6102 tg3_enable_ints(tp);
6103}
6104
David S. Millerf47c11e2005-06-24 20:18:35 -07006105static void tg3_irq_quiesce(struct tg3 *tp)
6106{
Matt Carlson4f125f42009-09-01 12:55:02 +00006107 int i;
6108
David S. Millerf47c11e2005-06-24 20:18:35 -07006109 BUG_ON(tp->irq_sync);
6110
6111 tp->irq_sync = 1;
6112 smp_mb();
6113
Matt Carlson4f125f42009-09-01 12:55:02 +00006114 for (i = 0; i < tp->irq_cnt; i++)
6115 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07006116}
6117
David S. Millerf47c11e2005-06-24 20:18:35 -07006118/* Fully shutdown all tg3 driver activity elsewhere in the system.
6119 * If irq_sync is non-zero, then the IRQ handler must be synchronized
6120 * with as well. Most of the time, this is not necessary except when
6121 * shutting down the device.
6122 */
6123static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
6124{
Michael Chan46966542007-07-11 19:47:19 -07006125 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07006126 if (irq_sync)
6127 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006128}
6129
6130static inline void tg3_full_unlock(struct tg3 *tp)
6131{
David S. Millerf47c11e2005-06-24 20:18:35 -07006132 spin_unlock_bh(&tp->lock);
6133}
6134
Michael Chanfcfa0a32006-03-20 22:28:41 -08006135/* One-shot MSI handler - Chip automatically disables interrupt
6136 * after sending MSI so driver doesn't have to do it.
6137 */
David Howells7d12e782006-10-05 14:55:46 +01006138static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08006139{
Matt Carlson09943a12009-08-28 14:01:57 +00006140 struct tg3_napi *tnapi = dev_id;
6141 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08006142
Matt Carlson898a56f2009-08-28 14:02:40 +00006143 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006144 if (tnapi->rx_rcb)
6145 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006146
6147 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006148 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006149
6150 return IRQ_HANDLED;
6151}
6152
Michael Chan88b06bc22005-04-21 17:13:25 -07006153/* MSI ISR - No need to check for interrupt sharing and no need to
6154 * flush status block and interrupt mailbox. PCI ordering rules
6155 * guarantee that MSI will arrive after the status block.
6156 */
David Howells7d12e782006-10-05 14:55:46 +01006157static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07006158{
Matt Carlson09943a12009-08-28 14:01:57 +00006159 struct tg3_napi *tnapi = dev_id;
6160 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07006161
Matt Carlson898a56f2009-08-28 14:02:40 +00006162 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006163 if (tnapi->rx_rcb)
6164 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07006165 /*
David S. Millerfac9b832005-05-18 22:46:34 -07006166 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07006167 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07006168 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07006169 * NIC to stop sending us irqs, engaging "in-intr-handler"
6170 * event coalescing.
6171 */
Matt Carlson5b39de92011-08-31 11:44:50 +00006172 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07006173 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006174 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07006175
Michael Chan88b06bc22005-04-21 17:13:25 -07006176 return IRQ_RETVAL(1);
6177}
6178
David Howells7d12e782006-10-05 14:55:46 +01006179static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180{
Matt Carlson09943a12009-08-28 14:01:57 +00006181 struct tg3_napi *tnapi = dev_id;
6182 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006183 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184 unsigned int handled = 1;
6185
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186 /* In INTx mode, it is possible for the interrupt to arrive at
6187 * the CPU before the status block posted prior to the interrupt.
6188 * Reading the PCI State register will confirm whether the
6189 * interrupt is ours and will flush the status block.
6190 */
Michael Chand18edcb2007-03-24 20:57:11 -07006191 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00006192 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006193 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6194 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006195 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07006196 }
Michael Chand18edcb2007-03-24 20:57:11 -07006197 }
6198
6199 /*
6200 * Writing any value to intr-mbox-0 clears PCI INTA# and
6201 * chip-internal interrupt pending events.
6202 * Writing non-zero to intr-mbox-0 additional tells the
6203 * NIC to stop sending us irqs, engaging "in-intr-handler"
6204 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006205 *
6206 * Flush the mailbox to de-assert the IRQ immediately to prevent
6207 * spurious interrupts. The flush impacts performance but
6208 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006209 */
Michael Chanc04cb342007-05-07 00:26:15 -07006210 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07006211 if (tg3_irq_sync(tp))
6212 goto out;
6213 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00006214 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00006215 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00006216 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07006217 } else {
6218 /* No work, shared interrupt perhaps? re-enable
6219 * interrupts, and flush that PCI write
6220 */
6221 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
6222 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07006223 }
David S. Millerf47c11e2005-06-24 20:18:35 -07006224out:
David S. Millerfac9b832005-05-18 22:46:34 -07006225 return IRQ_RETVAL(handled);
6226}
6227
David Howells7d12e782006-10-05 14:55:46 +01006228static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07006229{
Matt Carlson09943a12009-08-28 14:01:57 +00006230 struct tg3_napi *tnapi = dev_id;
6231 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006232 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07006233 unsigned int handled = 1;
6234
David S. Millerfac9b832005-05-18 22:46:34 -07006235 /* In INTx mode, it is possible for the interrupt to arrive at
6236 * the CPU before the status block posted prior to the interrupt.
6237 * Reading the PCI State register will confirm whether the
6238 * interrupt is ours and will flush the status block.
6239 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006240 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00006241 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006242 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6243 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006244 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245 }
Michael Chand18edcb2007-03-24 20:57:11 -07006246 }
6247
6248 /*
6249 * writing any value to intr-mbox-0 clears PCI INTA# and
6250 * chip-internal interrupt pending events.
6251 * writing non-zero to intr-mbox-0 additional tells the
6252 * NIC to stop sending us irqs, engaging "in-intr-handler"
6253 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006254 *
6255 * Flush the mailbox to de-assert the IRQ immediately to prevent
6256 * spurious interrupts. The flush impacts performance but
6257 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006258 */
Michael Chanc04cb342007-05-07 00:26:15 -07006259 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00006260
6261 /*
6262 * In a shared interrupt configuration, sometimes other devices'
6263 * interrupts will scream. We record the current status tag here
6264 * so that the above check can report that the screaming interrupts
6265 * are unhandled. Eventually they will be silenced.
6266 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006267 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00006268
Michael Chand18edcb2007-03-24 20:57:11 -07006269 if (tg3_irq_sync(tp))
6270 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00006271
Matt Carlson72334482009-08-28 14:03:01 +00006272 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00006273
Matt Carlson09943a12009-08-28 14:01:57 +00006274 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00006275
David S. Millerf47c11e2005-06-24 20:18:35 -07006276out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277 return IRQ_RETVAL(handled);
6278}
6279
Michael Chan79381092005-04-21 17:13:59 -07006280/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01006281static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07006282{
Matt Carlson09943a12009-08-28 14:01:57 +00006283 struct tg3_napi *tnapi = dev_id;
6284 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006285 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07006286
Michael Chanf9804dd2005-09-27 12:13:10 -07006287 if ((sblk->status & SD_STATUS_UPDATED) ||
6288 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07006289 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07006290 return IRQ_RETVAL(1);
6291 }
6292 return IRQ_RETVAL(0);
6293}
6294
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07006295static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07006296static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297
Michael Chanb9ec6c12006-07-25 16:37:27 -07006298/* Restart hardware after configuration changes, self-test, etc.
6299 * Invoked with tp->lock held.
6300 */
6301static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07006302 __releases(tp->lock)
6303 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07006304{
6305 int err;
6306
6307 err = tg3_init_hw(tp, reset_phy);
6308 if (err) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006309 netdev_err(tp->dev,
6310 "Failed to re-initialize device, aborting\n");
Michael Chanb9ec6c12006-07-25 16:37:27 -07006311 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
6312 tg3_full_unlock(tp);
6313 del_timer_sync(&tp->timer);
6314 tp->irq_sync = 0;
Matt Carlsonfed97812009-09-01 13:10:19 +00006315 tg3_napi_enable(tp);
Michael Chanb9ec6c12006-07-25 16:37:27 -07006316 dev_close(tp->dev);
6317 tg3_full_lock(tp, 0);
6318 }
6319 return err;
6320}
6321
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322#ifdef CONFIG_NET_POLL_CONTROLLER
6323static void tg3_poll_controller(struct net_device *dev)
6324{
Matt Carlson4f125f42009-09-01 12:55:02 +00006325 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07006326 struct tg3 *tp = netdev_priv(dev);
6327
Matt Carlson4f125f42009-09-01 12:55:02 +00006328 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00006329 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330}
6331#endif
6332
David Howellsc4028952006-11-22 14:57:56 +00006333static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334{
David Howellsc4028952006-11-22 14:57:56 +00006335 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006336 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337
Michael Chan7faa0062006-02-02 17:29:28 -08006338 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08006339
6340 if (!netif_running(tp->dev)) {
Matt Carlsondb219972011-11-04 09:15:03 +00006341 tg3_flag_clear(tp, RESET_TASK_PENDING);
Michael Chan7faa0062006-02-02 17:29:28 -08006342 tg3_full_unlock(tp);
6343 return;
6344 }
6345
6346 tg3_full_unlock(tp);
6347
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006348 tg3_phy_stop(tp);
6349
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350 tg3_netif_stop(tp);
6351
David S. Millerf47c11e2005-06-24 20:18:35 -07006352 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006353
Joe Perches63c3a662011-04-26 08:12:10 +00006354 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
Michael Chandf3e6542006-05-26 17:48:07 -07006355 tp->write32_tx_mbox = tg3_write32_tx_mbox;
6356 tp->write32_rx_mbox = tg3_write_flush_reg32;
Joe Perches63c3a662011-04-26 08:12:10 +00006357 tg3_flag_set(tp, MBOX_WRITE_REORDER);
6358 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07006359 }
6360
Michael Chan944d9802005-05-29 14:57:48 -07006361 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006362 err = tg3_init_hw(tp, 1);
6363 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07006364 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365
6366 tg3_netif_start(tp);
6367
Michael Chanb9ec6c12006-07-25 16:37:27 -07006368out:
Michael Chan7faa0062006-02-02 17:29:28 -08006369 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006370
6371 if (!err)
6372 tg3_phy_start(tp);
Matt Carlsondb219972011-11-04 09:15:03 +00006373
6374 tg3_flag_clear(tp, RESET_TASK_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375}
6376
6377static void tg3_tx_timeout(struct net_device *dev)
6378{
6379 struct tg3 *tp = netdev_priv(dev);
6380
Michael Chanb0408752007-02-13 12:18:30 -08006381 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00006382 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00006383 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08006384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385
Matt Carlsondb219972011-11-04 09:15:03 +00006386 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387}
6388
Michael Chanc58ec932005-09-17 00:46:27 -07006389/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
6390static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
6391{
6392 u32 base = (u32) mapping & 0xffffffff;
6393
Eric Dumazet807540b2010-09-23 05:40:09 +00006394 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07006395}
6396
Michael Chan72f2afb2006-03-06 19:28:35 -08006397/* Test for DMA addresses > 40-bit */
6398static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
6399 int len)
6400{
6401#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00006402 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00006403 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08006404 return 0;
6405#else
6406 return 0;
6407#endif
6408}
6409
Matt Carlsond1a3b732011-07-27 14:20:51 +00006410static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006411 dma_addr_t mapping, u32 len, u32 flags,
6412 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00006413{
Matt Carlson92cd3a12011-07-27 14:20:47 +00006414 txbd->addr_hi = ((u64) mapping >> 32);
6415 txbd->addr_lo = ((u64) mapping & 0xffffffff);
6416 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
6417 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00006418}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419
Matt Carlson84b67b22011-07-27 14:20:52 +00006420static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006421 dma_addr_t map, u32 len, u32 flags,
6422 u32 mss, u32 vlan)
6423{
6424 struct tg3 *tp = tnapi->tp;
6425 bool hwbug = false;
6426
6427 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00006428 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006429
6430 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00006431 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006432
6433 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00006434 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006435
Matt Carlsona4cb4282011-12-14 11:09:58 +00006436 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006437 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00006438 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00006439 while (len > tp->dma_limit && *budget) {
6440 u32 frag_len = tp->dma_limit;
6441 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00006442
Matt Carlsonb9e45482011-11-04 09:14:59 +00006443 /* Avoid the 8byte DMA problem */
6444 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00006445 len += tp->dma_limit / 2;
6446 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00006447 }
6448
Matt Carlsonb9e45482011-11-04 09:14:59 +00006449 tnapi->tx_buffers[*entry].fragmented = true;
6450
6451 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6452 frag_len, tmp_flag, mss, vlan);
6453 *budget -= 1;
6454 prvidx = *entry;
6455 *entry = NEXT_TX(*entry);
6456
Matt Carlsone31aa982011-07-27 14:20:53 +00006457 map += frag_len;
6458 }
6459
6460 if (len) {
6461 if (*budget) {
6462 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6463 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00006464 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00006465 *entry = NEXT_TX(*entry);
6466 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00006467 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00006468 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00006469 }
6470 }
6471 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00006472 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6473 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00006474 *entry = NEXT_TX(*entry);
6475 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00006476
6477 return hwbug;
6478}
6479
Matt Carlson0d681b22011-07-27 14:20:49 +00006480static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00006481{
6482 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00006483 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00006484 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006485
Matt Carlson0d681b22011-07-27 14:20:49 +00006486 skb = txb->skb;
6487 txb->skb = NULL;
6488
Matt Carlson432aa7e2011-05-19 12:12:45 +00006489 pci_unmap_single(tnapi->tp->pdev,
6490 dma_unmap_addr(txb, mapping),
6491 skb_headlen(skb),
6492 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006493
6494 while (txb->fragmented) {
6495 txb->fragmented = false;
6496 entry = NEXT_TX(entry);
6497 txb = &tnapi->tx_buffers[entry];
6498 }
6499
Matt Carlsonba1142e2011-11-04 09:15:00 +00006500 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00006501 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006502
6503 entry = NEXT_TX(entry);
6504 txb = &tnapi->tx_buffers[entry];
6505
6506 pci_unmap_page(tnapi->tp->pdev,
6507 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006508 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006509
6510 while (txb->fragmented) {
6511 txb->fragmented = false;
6512 entry = NEXT_TX(entry);
6513 txb = &tnapi->tx_buffers[entry];
6514 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00006515 }
6516}
6517
Michael Chan72f2afb2006-03-06 19:28:35 -08006518/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006519static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04006520 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00006521 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006522 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523{
Matt Carlson24f4efd2009-11-13 13:03:35 +00006524 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04006525 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07006526 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006527 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528
Matt Carlson41588ba2008-04-19 18:12:33 -07006529 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
6530 new_skb = skb_copy(skb, GFP_ATOMIC);
6531 else {
6532 int more_headroom = 4 - ((unsigned long)skb->data & 3);
6533
6534 new_skb = skb_copy_expand(skb,
6535 skb_headroom(skb) + more_headroom,
6536 skb_tailroom(skb), GFP_ATOMIC);
6537 }
6538
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07006540 ret = -1;
6541 } else {
6542 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00006543 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
6544 PCI_DMA_TODEVICE);
6545 /* Make sure the mapping succeeded */
6546 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006547 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07006548 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07006549 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006550 u32 save_entry = *entry;
6551
Matt Carlson92cd3a12011-07-27 14:20:47 +00006552 base_flags |= TXD_FLAG_END;
6553
Matt Carlson84b67b22011-07-27 14:20:52 +00006554 tnapi->tx_buffers[*entry].skb = new_skb;
6555 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00006556 mapping, new_addr);
6557
Matt Carlson84b67b22011-07-27 14:20:52 +00006558 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006559 new_skb->len, base_flags,
6560 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00006561 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00006562 dev_kfree_skb(new_skb);
6563 ret = -1;
6564 }
Michael Chanc58ec932005-09-17 00:46:27 -07006565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566 }
6567
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04006569 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07006570 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571}
6572
Matt Carlson2ffcc982011-05-19 12:12:44 +00006573static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07006574
6575/* Use GSO to workaround a rare TSO bug that may be triggered when the
6576 * TSO header is greater than 80 bytes.
6577 */
6578static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
6579{
6580 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006581 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07006582
6583 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006584 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07006585 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006586
6587 /* netif_tx_stop_queue() must be done before checking
6588 * checking tx index in tg3_tx_avail() below, because in
6589 * tg3_tx(), we update tx index before checking for
6590 * netif_tx_queue_stopped().
6591 */
6592 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006593 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08006594 return NETDEV_TX_BUSY;
6595
6596 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006597 }
6598
6599 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07006600 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07006601 goto tg3_tso_bug_end;
6602
6603 do {
6604 nskb = segs;
6605 segs = segs->next;
6606 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00006607 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006608 } while (segs);
6609
6610tg3_tso_bug_end:
6611 dev_kfree_skb(skb);
6612
6613 return NETDEV_TX_OK;
6614}
Michael Chan52c0fd82006-06-29 20:15:54 -07006615
Michael Chan5a6f3072006-03-20 22:28:05 -08006616/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00006617 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08006618 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00006619static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08006620{
6621 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00006622 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00006623 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006624 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07006625 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006626 struct tg3_napi *tnapi;
6627 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006628 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006629
Matt Carlson24f4efd2009-11-13 13:03:35 +00006630 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
6631 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00006632 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006633 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634
Matt Carlson84b67b22011-07-27 14:20:52 +00006635 budget = tg3_tx_avail(tnapi);
6636
Michael Chan00b70502006-06-17 21:58:45 -07006637 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006638 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07006639 * interrupt. Furthermore, IRQ processing runs lockless so we have
6640 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006642 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006643 if (!netif_tx_queue_stopped(txq)) {
6644 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006645
6646 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00006647 netdev_err(dev,
6648 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650 return NETDEV_TX_BUSY;
6651 }
6652
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006653 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07006655 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006657
Matt Carlsonbe98da62010-07-11 09:31:46 +00006658 mss = skb_shinfo(skb)->gso_size;
6659 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006660 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00006661 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662
6663 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00006664 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6665 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666
Matt Carlson34195c32010-07-11 09:31:42 +00006667 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07006668 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669
Eric Dumazeta5a11952012-01-23 01:22:09 +00006670 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00006671
Eric Dumazeta5a11952012-01-23 01:22:09 +00006672 if (!skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00006673 iph->check = 0;
6674 iph->tot_len = htons(mss + hdr_len);
6675 }
6676
Michael Chan52c0fd82006-06-29 20:15:54 -07006677 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006678 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00006679 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07006680
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
6682 TXD_FLAG_CPU_POST_DMA);
6683
Joe Perches63c3a662011-04-26 08:12:10 +00006684 if (tg3_flag(tp, HW_TSO_1) ||
6685 tg3_flag(tp, HW_TSO_2) ||
6686 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006687 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006688 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006689 } else
6690 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6691 iph->daddr, 0,
6692 IPPROTO_TCP,
6693 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694
Joe Perches63c3a662011-04-26 08:12:10 +00006695 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00006696 mss |= (hdr_len & 0xc) << 12;
6697 if (hdr_len & 0x10)
6698 base_flags |= 0x00000010;
6699 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00006700 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006701 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00006702 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006703 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006704 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705 int tsflags;
6706
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006707 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006708 mss |= (tsflags << 11);
6709 }
6710 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006711 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006712 int tsflags;
6713
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006714 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715 base_flags |= tsflags << 12;
6716 }
6717 }
6718 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00006719
Matt Carlson93a700a2011-08-31 11:44:54 +00006720 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
6721 !mss && skb->len > VLAN_ETH_FRAME_LEN)
6722 base_flags |= TXD_FLAG_JMB_PKT;
6723
Matt Carlson92cd3a12011-07-27 14:20:47 +00006724 if (vlan_tx_tag_present(skb)) {
6725 base_flags |= TXD_FLAG_VLAN;
6726 vlan = vlan_tx_tag_get(skb);
6727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728
Alexander Duyckf4188d82009-12-02 16:48:38 +00006729 len = skb_headlen(skb);
6730
6731 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00006732 if (pci_dma_mapping_error(tp->pdev, mapping))
6733 goto drop;
6734
David S. Miller90079ce2008-09-11 04:52:51 -07006735
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006736 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006737 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738
6739 would_hit_hwbug = 0;
6740
Joe Perches63c3a662011-04-26 08:12:10 +00006741 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07006742 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743
Matt Carlson84b67b22011-07-27 14:20:52 +00006744 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00006745 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00006746 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00006747 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748 /* Now loop through additional data fragments, and queue them. */
Matt Carlsonba1142e2011-11-04 09:15:00 +00006749 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00006750 u32 tmp_mss = mss;
6751
6752 if (!tg3_flag(tp, HW_TSO_1) &&
6753 !tg3_flag(tp, HW_TSO_2) &&
6754 !tg3_flag(tp, HW_TSO_3))
6755 tmp_mss = 0;
6756
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757 last = skb_shinfo(skb)->nr_frags - 1;
6758 for (i = 0; i <= last; i++) {
6759 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6760
Eric Dumazet9e903e02011-10-18 21:00:24 +00006761 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00006762 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01006763 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006765 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006766 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00006767 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01006768 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00006769 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770
Matt Carlsonb9e45482011-11-04 09:14:59 +00006771 if (!budget ||
6772 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00006773 len, base_flags |
6774 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00006775 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006776 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00006777 break;
6778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779 }
6780 }
6781
6782 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00006783 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784
6785 /* If the workaround fails due to memory/mapping
6786 * failure, silently drop this packet.
6787 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006788 entry = tnapi->tx_prod;
6789 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04006790 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00006791 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00006792 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793 }
6794
Richard Cochrand515b452011-06-19 03:31:41 +00006795 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00006796 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00006797
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006799 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006801 tnapi->tx_prod = entry;
6802 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006803 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006804
6805 /* netif_tx_stop_queue() must be done before checking
6806 * checking tx index in tg3_tx_avail() below, because in
6807 * tg3_tx(), we update tx index before checking for
6808 * netif_tx_queue_stopped().
6809 */
6810 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006811 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006812 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814
Eric Dumazetcdd0db02009-05-28 00:00:41 +00006815 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006817
6818dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00006819 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00006820 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00006821drop:
6822 dev_kfree_skb(skb);
6823drop_nofree:
6824 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006825 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826}
6827
Matt Carlson6e01b202011-08-19 13:58:20 +00006828static void tg3_mac_loopback(struct tg3 *tp, bool enable)
6829{
6830 if (enable) {
6831 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
6832 MAC_MODE_PORT_MODE_MASK);
6833
6834 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
6835
6836 if (!tg3_flag(tp, 5705_PLUS))
6837 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
6838
6839 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
6840 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
6841 else
6842 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
6843 } else {
6844 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
6845
6846 if (tg3_flag(tp, 5705_PLUS) ||
6847 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
6848 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
6849 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
6850 }
6851
6852 tw32(MAC_MODE, tp->mac_mode);
6853 udelay(40);
6854}
6855
Matt Carlson941ec902011-08-19 13:58:23 +00006856static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006857{
Matt Carlson941ec902011-08-19 13:58:23 +00006858 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006859
6860 tg3_phy_toggle_apd(tp, false);
6861 tg3_phy_toggle_automdix(tp, 0);
6862
Matt Carlson941ec902011-08-19 13:58:23 +00006863 if (extlpbk && tg3_phy_set_extloopbk(tp))
6864 return -EIO;
6865
6866 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006867 switch (speed) {
6868 case SPEED_10:
6869 break;
6870 case SPEED_100:
6871 bmcr |= BMCR_SPEED100;
6872 break;
6873 case SPEED_1000:
6874 default:
6875 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
6876 speed = SPEED_100;
6877 bmcr |= BMCR_SPEED100;
6878 } else {
6879 speed = SPEED_1000;
6880 bmcr |= BMCR_SPEED1000;
6881 }
6882 }
6883
Matt Carlson941ec902011-08-19 13:58:23 +00006884 if (extlpbk) {
6885 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
6886 tg3_readphy(tp, MII_CTRL1000, &val);
6887 val |= CTL1000_AS_MASTER |
6888 CTL1000_ENABLE_MASTER;
6889 tg3_writephy(tp, MII_CTRL1000, val);
6890 } else {
6891 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
6892 MII_TG3_FET_PTEST_TRIM_2;
6893 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
6894 }
6895 } else
6896 bmcr |= BMCR_LOOPBACK;
6897
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006898 tg3_writephy(tp, MII_BMCR, bmcr);
6899
6900 /* The write needs to be flushed for the FETs */
6901 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
6902 tg3_readphy(tp, MII_BMCR, &bmcr);
6903
6904 udelay(40);
6905
6906 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
6907 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00006908 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006909 MII_TG3_FET_PTEST_FRC_TX_LINK |
6910 MII_TG3_FET_PTEST_FRC_TX_LOCK);
6911
6912 /* The write needs to be flushed for the AC131 */
6913 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
6914 }
6915
6916 /* Reset to prevent losing 1st rx packet intermittently */
6917 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
6918 tg3_flag(tp, 5780_CLASS)) {
6919 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
6920 udelay(10);
6921 tw32_f(MAC_RX_MODE, tp->rx_mode);
6922 }
6923
6924 mac_mode = tp->mac_mode &
6925 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
6926 if (speed == SPEED_1000)
6927 mac_mode |= MAC_MODE_PORT_MODE_GMII;
6928 else
6929 mac_mode |= MAC_MODE_PORT_MODE_MII;
6930
6931 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
6932 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
6933
6934 if (masked_phy_id == TG3_PHY_ID_BCM5401)
6935 mac_mode &= ~MAC_MODE_LINK_POLARITY;
6936 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
6937 mac_mode |= MAC_MODE_LINK_POLARITY;
6938
6939 tg3_writephy(tp, MII_TG3_EXT_CTRL,
6940 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
6941 }
6942
6943 tw32(MAC_MODE, mac_mode);
6944 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00006945
6946 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00006947}
6948
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006949static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006950{
6951 struct tg3 *tp = netdev_priv(dev);
6952
6953 if (features & NETIF_F_LOOPBACK) {
6954 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
6955 return;
6956
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006957 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00006958 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006959 netif_carrier_on(tp->dev);
6960 spin_unlock_bh(&tp->lock);
6961 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
6962 } else {
6963 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
6964 return;
6965
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006966 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00006967 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006968 /* Force link status check */
6969 tg3_setup_phy(tp, 1);
6970 spin_unlock_bh(&tp->lock);
6971 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
6972 }
6973}
6974
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006975static netdev_features_t tg3_fix_features(struct net_device *dev,
6976 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00006977{
6978 struct tg3 *tp = netdev_priv(dev);
6979
Joe Perches63c3a662011-04-26 08:12:10 +00006980 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00006981 features &= ~NETIF_F_ALL_TSO;
6982
6983 return features;
6984}
6985
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006986static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006987{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006988 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006989
6990 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
6991 tg3_set_loopback(dev, features);
6992
6993 return 0;
6994}
6995
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
6997 int new_mtu)
6998{
6999 dev->mtu = new_mtu;
7000
Michael Chanef7f5ec2005-07-25 12:32:25 -07007001 if (new_mtu > ETH_DATA_LEN) {
Joe Perches63c3a662011-04-26 08:12:10 +00007002 if (tg3_flag(tp, 5780_CLASS)) {
Michał Mirosławdc668912011-04-07 03:35:07 +00007003 netdev_update_features(dev);
Joe Perches63c3a662011-04-26 08:12:10 +00007004 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson859a588792010-04-05 10:19:28 +00007005 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00007006 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Matt Carlson859a588792010-04-05 10:19:28 +00007007 }
Michael Chanef7f5ec2005-07-25 12:32:25 -07007008 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00007009 if (tg3_flag(tp, 5780_CLASS)) {
7010 tg3_flag_set(tp, TSO_CAPABLE);
Michał Mirosławdc668912011-04-07 03:35:07 +00007011 netdev_update_features(dev);
7012 }
Joe Perches63c3a662011-04-26 08:12:10 +00007013 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
Michael Chanef7f5ec2005-07-25 12:32:25 -07007014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015}
7016
7017static int tg3_change_mtu(struct net_device *dev, int new_mtu)
7018{
7019 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07007020 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007021
7022 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
7023 return -EINVAL;
7024
7025 if (!netif_running(dev)) {
7026 /* We'll just catch it later when the
7027 * device is up'd.
7028 */
7029 tg3_set_mtu(dev, tp, new_mtu);
7030 return 0;
7031 }
7032
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07007033 tg3_phy_stop(tp);
7034
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07007036
7037 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038
Michael Chan944d9802005-05-29 14:57:48 -07007039 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040
7041 tg3_set_mtu(dev, tp, new_mtu);
7042
Michael Chanb9ec6c12006-07-25 16:37:27 -07007043 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044
Michael Chanb9ec6c12006-07-25 16:37:27 -07007045 if (!err)
7046 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047
David S. Millerf47c11e2005-06-24 20:18:35 -07007048 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07007050 if (!err)
7051 tg3_phy_start(tp);
7052
Michael Chanb9ec6c12006-07-25 16:37:27 -07007053 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054}
7055
Matt Carlson21f581a2009-08-28 14:00:25 +00007056static void tg3_rx_prodring_free(struct tg3 *tp,
7057 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007058{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059 int i;
7060
Matt Carlson8fea32b2010-09-15 08:59:58 +00007061 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007062 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007063 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007064 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007065 tp->rx_pkt_map_sz);
7066
Joe Perches63c3a662011-04-26 08:12:10 +00007067 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007068 for (i = tpr->rx_jmb_cons_idx;
7069 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007070 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007071 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007072 TG3_RX_JMB_MAP_SZ);
7073 }
7074 }
7075
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007076 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078
Matt Carlson2c49a442010-09-30 10:34:35 +00007079 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007080 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007081 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082
Joe Perches63c3a662011-04-26 08:12:10 +00007083 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007084 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007085 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007086 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087 }
7088}
7089
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007090/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007091 *
7092 * The chip has been shut down and the driver detached from
7093 * the networking, so no interrupts or new tx packets will
7094 * end up in the driver. tp->{tx,}lock are held and thus
7095 * we may not sleep.
7096 */
Matt Carlson21f581a2009-08-28 14:00:25 +00007097static int tg3_rx_prodring_alloc(struct tg3 *tp,
7098 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099{
Matt Carlson287be122009-08-28 13:58:46 +00007100 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007102 tpr->rx_std_cons_idx = 0;
7103 tpr->rx_std_prod_idx = 0;
7104 tpr->rx_jmb_cons_idx = 0;
7105 tpr->rx_jmb_prod_idx = 0;
7106
Matt Carlson8fea32b2010-09-15 08:59:58 +00007107 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007108 memset(&tpr->rx_std_buffers[0], 0,
7109 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00007110 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007111 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00007112 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007113 goto done;
7114 }
7115
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00007117 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007118
Matt Carlson287be122009-08-28 13:58:46 +00007119 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00007120 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00007121 tp->dev->mtu > ETH_DATA_LEN)
7122 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
7123 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07007124
Linus Torvalds1da177e2005-04-16 15:20:36 -07007125 /* Initialize invariants of the rings, we only set this
7126 * stuff once. This works because the card does not
7127 * write into the rx buffer posting rings.
7128 */
Matt Carlson2c49a442010-09-30 10:34:35 +00007129 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007130 struct tg3_rx_buffer_desc *rxd;
7131
Matt Carlson21f581a2009-08-28 14:00:25 +00007132 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00007133 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
7135 rxd->opaque = (RXD_OPAQUE_RING_STD |
7136 (i << RXD_OPAQUE_INDEX_SHIFT));
7137 }
7138
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007139 /* Now allocate fresh SKBs for each rx ring. */
7140 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007141 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007142 netdev_warn(tp->dev,
7143 "Using a smaller RX standard ring. Only "
7144 "%d out of %d buffers were allocated "
7145 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007146 if (i == 0)
7147 goto initfail;
7148 tp->rx_pending = i;
7149 break;
7150 }
7151 }
7152
Joe Perches63c3a662011-04-26 08:12:10 +00007153 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007154 goto done;
7155
Matt Carlson2c49a442010-09-30 10:34:35 +00007156 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007157
Joe Perches63c3a662011-04-26 08:12:10 +00007158 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00007159 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007160
Matt Carlson2c49a442010-09-30 10:34:35 +00007161 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00007162 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163
Matt Carlson0d86df82010-02-17 15:17:00 +00007164 rxd = &tpr->rx_jmb[i].std;
7165 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
7166 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
7167 RXD_FLAG_JUMBO;
7168 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
7169 (i << RXD_OPAQUE_INDEX_SHIFT));
7170 }
7171
7172 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007173 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007174 netdev_warn(tp->dev,
7175 "Using a smaller RX jumbo ring. Only %d "
7176 "out of %d buffers were allocated "
7177 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00007178 if (i == 0)
7179 goto initfail;
7180 tp->rx_jumbo_pending = i;
7181 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007182 }
7183 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007184
7185done:
Michael Chan32d8c572006-07-25 16:38:29 -07007186 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007187
7188initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00007189 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007190 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007191}
7192
Matt Carlson21f581a2009-08-28 14:00:25 +00007193static void tg3_rx_prodring_fini(struct tg3 *tp,
7194 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007195{
Matt Carlson21f581a2009-08-28 14:00:25 +00007196 kfree(tpr->rx_std_buffers);
7197 tpr->rx_std_buffers = NULL;
7198 kfree(tpr->rx_jmb_buffers);
7199 tpr->rx_jmb_buffers = NULL;
7200 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007201 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
7202 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007203 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007204 }
Matt Carlson21f581a2009-08-28 14:00:25 +00007205 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007206 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
7207 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007208 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007210}
7211
Matt Carlson21f581a2009-08-28 14:00:25 +00007212static int tg3_rx_prodring_init(struct tg3 *tp,
7213 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007214{
Matt Carlson2c49a442010-09-30 10:34:35 +00007215 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
7216 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007217 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007218 return -ENOMEM;
7219
Matt Carlson4bae65c2010-11-24 08:31:52 +00007220 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
7221 TG3_RX_STD_RING_BYTES(tp),
7222 &tpr->rx_std_mapping,
7223 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007224 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007225 goto err_out;
7226
Joe Perches63c3a662011-04-26 08:12:10 +00007227 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007228 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00007229 GFP_KERNEL);
7230 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007231 goto err_out;
7232
Matt Carlson4bae65c2010-11-24 08:31:52 +00007233 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
7234 TG3_RX_JMB_RING_BYTES(tp),
7235 &tpr->rx_jmb_mapping,
7236 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007237 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007238 goto err_out;
7239 }
7240
7241 return 0;
7242
7243err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00007244 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007245 return -ENOMEM;
7246}
7247
7248/* Free up pending packets in all rx/tx rings.
7249 *
7250 * The chip has been shut down and the driver detached from
7251 * the networking, so no interrupts or new tx packets will
7252 * end up in the driver. tp->{tx,}lock is not held and we are not
7253 * in an interrupt context and thus may sleep.
7254 */
7255static void tg3_free_rings(struct tg3 *tp)
7256{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007257 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007258
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007259 for (j = 0; j < tp->irq_cnt; j++) {
7260 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007261
Matt Carlson8fea32b2010-09-15 08:59:58 +00007262 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00007263
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007264 if (!tnapi->tx_buffers)
7265 continue;
7266
Matt Carlson0d681b22011-07-27 14:20:49 +00007267 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
7268 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007269
Matt Carlson0d681b22011-07-27 14:20:49 +00007270 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007271 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007272
Matt Carlsonba1142e2011-11-04 09:15:00 +00007273 tg3_tx_skb_unmap(tnapi, i,
7274 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007275
7276 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007277 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00007278 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007279 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007280}
7281
7282/* Initialize tx/rx rings for packet processing.
7283 *
7284 * The chip has been shut down and the driver detached from
7285 * the networking, so no interrupts or new tx packets will
7286 * end up in the driver. tp->{tx,}lock are held and thus
7287 * we may not sleep.
7288 */
7289static int tg3_init_rings(struct tg3 *tp)
7290{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007291 int i;
Matt Carlson72334482009-08-28 14:03:01 +00007292
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007293 /* Free up all the SKBs. */
7294 tg3_free_rings(tp);
7295
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007296 for (i = 0; i < tp->irq_cnt; i++) {
7297 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007298
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007299 tnapi->last_tag = 0;
7300 tnapi->last_irq_tag = 0;
7301 tnapi->hw_status->status = 0;
7302 tnapi->hw_status->status_tag = 0;
7303 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7304
7305 tnapi->tx_prod = 0;
7306 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007307 if (tnapi->tx_ring)
7308 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007309
7310 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007311 if (tnapi->rx_rcb)
7312 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007313
Matt Carlson8fea32b2010-09-15 08:59:58 +00007314 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00007315 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007316 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00007317 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007318 }
Matt Carlson72334482009-08-28 14:03:01 +00007319
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007320 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007321}
7322
7323/*
7324 * Must not be invoked with interrupt sources disabled and
7325 * the hardware shutdown down.
7326 */
7327static void tg3_free_consistent(struct tg3 *tp)
7328{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007329 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007330
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007331 for (i = 0; i < tp->irq_cnt; i++) {
7332 struct tg3_napi *tnapi = &tp->napi[i];
7333
7334 if (tnapi->tx_ring) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007335 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007336 tnapi->tx_ring, tnapi->tx_desc_mapping);
7337 tnapi->tx_ring = NULL;
7338 }
7339
7340 kfree(tnapi->tx_buffers);
7341 tnapi->tx_buffers = NULL;
7342
7343 if (tnapi->rx_rcb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007344 dma_free_coherent(&tp->pdev->dev,
7345 TG3_RX_RCB_RING_BYTES(tp),
7346 tnapi->rx_rcb,
7347 tnapi->rx_rcb_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007348 tnapi->rx_rcb = NULL;
7349 }
7350
Matt Carlson8fea32b2010-09-15 08:59:58 +00007351 tg3_rx_prodring_fini(tp, &tnapi->prodring);
7352
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007353 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007354 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
7355 tnapi->hw_status,
7356 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007357 tnapi->hw_status = NULL;
7358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007360
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007362 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
7363 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364 tp->hw_stats = NULL;
7365 }
7366}
7367
7368/*
7369 * Must not be invoked with interrupt sources disabled and
7370 * the hardware shutdown down. Can sleep.
7371 */
7372static int tg3_alloc_consistent(struct tg3 *tp)
7373{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007374 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007375
Matt Carlson4bae65c2010-11-24 08:31:52 +00007376 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
7377 sizeof(struct tg3_hw_stats),
7378 &tp->stats_mapping,
7379 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380 if (!tp->hw_stats)
7381 goto err_out;
7382
Linus Torvalds1da177e2005-04-16 15:20:36 -07007383 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
7384
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007385 for (i = 0; i < tp->irq_cnt; i++) {
7386 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007387 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007388
Matt Carlson4bae65c2010-11-24 08:31:52 +00007389 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
7390 TG3_HW_STATUS_SIZE,
7391 &tnapi->status_mapping,
7392 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007393 if (!tnapi->hw_status)
7394 goto err_out;
7395
7396 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007397 sblk = tnapi->hw_status;
7398
Matt Carlson8fea32b2010-09-15 08:59:58 +00007399 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
7400 goto err_out;
7401
Matt Carlson19cfaec2009-12-03 08:36:20 +00007402 /* If multivector TSS is enabled, vector 0 does not handle
7403 * tx interrupts. Don't allocate any resources for it.
7404 */
Joe Perches63c3a662011-04-26 08:12:10 +00007405 if ((!i && !tg3_flag(tp, ENABLE_TSS)) ||
7406 (i && tg3_flag(tp, ENABLE_TSS))) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00007407 tnapi->tx_buffers = kzalloc(
7408 sizeof(struct tg3_tx_ring_info) *
7409 TG3_TX_RING_SIZE, GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007410 if (!tnapi->tx_buffers)
7411 goto err_out;
7412
Matt Carlson4bae65c2010-11-24 08:31:52 +00007413 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
7414 TG3_TX_RING_BYTES,
7415 &tnapi->tx_desc_mapping,
7416 GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007417 if (!tnapi->tx_ring)
7418 goto err_out;
7419 }
7420
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007421 /*
7422 * When RSS is enabled, the status block format changes
7423 * slightly. The "rx_jumbo_consumer", "reserved",
7424 * and "rx_mini_consumer" members get mapped to the
7425 * other three rx return ring producer indexes.
7426 */
7427 switch (i) {
7428 default:
7429 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
7430 break;
7431 case 2:
7432 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
7433 break;
7434 case 3:
7435 tnapi->rx_rcb_prod_idx = &sblk->reserved;
7436 break;
7437 case 4:
7438 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
7439 break;
7440 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007441
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007442 /*
7443 * If multivector RSS is enabled, vector 0 does not handle
7444 * rx or tx interrupts. Don't allocate any resources for it.
7445 */
Joe Perches63c3a662011-04-26 08:12:10 +00007446 if (!i && tg3_flag(tp, ENABLE_RSS))
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007447 continue;
7448
Matt Carlson4bae65c2010-11-24 08:31:52 +00007449 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
7450 TG3_RX_RCB_RING_BYTES(tp),
7451 &tnapi->rx_rcb_mapping,
7452 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007453 if (!tnapi->rx_rcb)
7454 goto err_out;
7455
7456 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007457 }
7458
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459 return 0;
7460
7461err_out:
7462 tg3_free_consistent(tp);
7463 return -ENOMEM;
7464}
7465
7466#define MAX_WAIT_CNT 1000
7467
7468/* To stop a block, clear the enable bit and poll till it
7469 * clears. tp->lock is held.
7470 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007471static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472{
7473 unsigned int i;
7474 u32 val;
7475
Joe Perches63c3a662011-04-26 08:12:10 +00007476 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477 switch (ofs) {
7478 case RCVLSC_MODE:
7479 case DMAC_MODE:
7480 case MBFREE_MODE:
7481 case BUFMGR_MODE:
7482 case MEMARB_MODE:
7483 /* We can't enable/disable these bits of the
7484 * 5705/5750, just say success.
7485 */
7486 return 0;
7487
7488 default:
7489 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007491 }
7492
7493 val = tr32(ofs);
7494 val &= ~enable_bit;
7495 tw32_f(ofs, val);
7496
7497 for (i = 0; i < MAX_WAIT_CNT; i++) {
7498 udelay(100);
7499 val = tr32(ofs);
7500 if ((val & enable_bit) == 0)
7501 break;
7502 }
7503
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007504 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00007505 dev_err(&tp->pdev->dev,
7506 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
7507 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508 return -ENODEV;
7509 }
7510
7511 return 0;
7512}
7513
7514/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007515static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516{
7517 int i, err;
7518
7519 tg3_disable_ints(tp);
7520
7521 tp->rx_mode &= ~RX_MODE_ENABLE;
7522 tw32_f(MAC_RX_MODE, tp->rx_mode);
7523 udelay(10);
7524
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007525 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
7526 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
7527 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
7528 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
7529 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
7530 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007531
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007532 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
7533 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
7534 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
7535 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
7536 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
7537 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
7538 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007539
7540 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
7541 tw32_f(MAC_MODE, tp->mac_mode);
7542 udelay(40);
7543
7544 tp->tx_mode &= ~TX_MODE_ENABLE;
7545 tw32_f(MAC_TX_MODE, tp->tx_mode);
7546
7547 for (i = 0; i < MAX_WAIT_CNT; i++) {
7548 udelay(100);
7549 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
7550 break;
7551 }
7552 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00007553 dev_err(&tp->pdev->dev,
7554 "%s timed out, TX_MODE_ENABLE will not clear "
7555 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07007556 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557 }
7558
Michael Chane6de8ad2005-05-05 14:42:41 -07007559 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007560 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
7561 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007562
7563 tw32(FTQ_RESET, 0xffffffff);
7564 tw32(FTQ_RESET, 0x00000000);
7565
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007566 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
7567 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007569 for (i = 0; i < tp->irq_cnt; i++) {
7570 struct tg3_napi *tnapi = &tp->napi[i];
7571 if (tnapi->hw_status)
7572 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007574
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575 return err;
7576}
7577
Michael Chanee6a99b2007-07-18 21:49:10 -07007578/* Save PCI command register before chip reset */
7579static void tg3_save_pci_state(struct tg3 *tp)
7580{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007581 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007582}
7583
7584/* Restore PCI state after chip reset */
7585static void tg3_restore_pci_state(struct tg3 *tp)
7586{
7587 u32 val;
7588
7589 /* Re-enable indirect register accesses. */
7590 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7591 tp->misc_host_ctrl);
7592
7593 /* Set MAX PCI retry to zero. */
7594 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7595 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007596 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007597 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007598 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007599 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007600 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00007601 PCISTATE_ALLOW_APE_SHMEM_WR |
7602 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007603 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7604
Matt Carlson8a6eac92007-10-21 16:17:55 -07007605 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007606
Matt Carlson2c55a3d2011-11-28 09:41:04 +00007607 if (!tg3_flag(tp, PCI_EXPRESS)) {
7608 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7609 tp->pci_cacheline_sz);
7610 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7611 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07007612 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007613
Michael Chanee6a99b2007-07-18 21:49:10 -07007614 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007615 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007616 u16 pcix_cmd;
7617
7618 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7619 &pcix_cmd);
7620 pcix_cmd &= ~PCI_X_CMD_ERO;
7621 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7622 pcix_cmd);
7623 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007624
Joe Perches63c3a662011-04-26 08:12:10 +00007625 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007626
7627 /* Chip reset on 5780 will reset MSI enable bit,
7628 * so need to restore it.
7629 */
Joe Perches63c3a662011-04-26 08:12:10 +00007630 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007631 u16 ctrl;
7632
7633 pci_read_config_word(tp->pdev,
7634 tp->msi_cap + PCI_MSI_FLAGS,
7635 &ctrl);
7636 pci_write_config_word(tp->pdev,
7637 tp->msi_cap + PCI_MSI_FLAGS,
7638 ctrl | PCI_MSI_FLAGS_ENABLE);
7639 val = tr32(MSGINT_MODE);
7640 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7641 }
7642 }
7643}
7644
Linus Torvalds1da177e2005-04-16 15:20:36 -07007645/* tp->lock is held. */
7646static int tg3_chip_reset(struct tg3 *tp)
7647{
7648 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007649 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007650 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651
David S. Millerf49639e2006-06-09 11:58:36 -07007652 tg3_nvram_lock(tp);
7653
Matt Carlson77b483f2008-08-15 14:07:24 -07007654 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7655
David S. Millerf49639e2006-06-09 11:58:36 -07007656 /* No matching tg3_nvram_unlock() after this because
7657 * chip reset below will undo the nvram lock.
7658 */
7659 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660
Michael Chanee6a99b2007-07-18 21:49:10 -07007661 /* GRC_MISC_CFG core clock reset will clear the memory
7662 * enable bit in PCI register 4 and the MSI enable bit
7663 * on some chips, so we save relevant registers here.
7664 */
7665 tg3_save_pci_state(tp);
7666
Michael Chand9ab5ad2006-03-20 22:27:35 -08007667 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00007668 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad2006-03-20 22:27:35 -08007669 tw32(GRC_FASTBOOT_PC, 0);
7670
Linus Torvalds1da177e2005-04-16 15:20:36 -07007671 /*
7672 * We must avoid the readl() that normally takes place.
7673 * It locks machines, causes machine checks, and other
7674 * fun things. So, temporarily disable the 5701
7675 * hardware workaround, while we do the reset.
7676 */
Michael Chan1ee582d2005-08-09 20:16:46 -07007677 write_op = tp->write32;
7678 if (write_op == tg3_write_flush_reg32)
7679 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680
Michael Chand18edcb2007-03-24 20:57:11 -07007681 /* Prevent the irq handler from reading or writing PCI registers
7682 * during chip reset when the memory enable bit in the PCI command
7683 * register may be cleared. The chip does not generate interrupt
7684 * at this time, but the irq handler may still be called due to irq
7685 * sharing or irqpoll.
7686 */
Joe Perches63c3a662011-04-26 08:12:10 +00007687 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007688 for (i = 0; i < tp->irq_cnt; i++) {
7689 struct tg3_napi *tnapi = &tp->napi[i];
7690 if (tnapi->hw_status) {
7691 tnapi->hw_status->status = 0;
7692 tnapi->hw_status->status_tag = 0;
7693 }
7694 tnapi->last_tag = 0;
7695 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07007696 }
Michael Chand18edcb2007-03-24 20:57:11 -07007697 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00007698
7699 for (i = 0; i < tp->irq_cnt; i++)
7700 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07007701
Matt Carlson255ca312009-08-25 10:07:27 +00007702 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7703 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7704 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
7705 }
7706
Linus Torvalds1da177e2005-04-16 15:20:36 -07007707 /* do the reset */
7708 val = GRC_MISC_CFG_CORECLK_RESET;
7709
Joe Perches63c3a662011-04-26 08:12:10 +00007710 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00007711 /* Force PCIe 1.0a mode */
7712 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007713 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00007714 tr32(TG3_PCIE_PHY_TSTCTL) ==
7715 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
7716 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
7717
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
7719 tw32(GRC_MISC_CFG, (1 << 29));
7720 val |= (1 << 29);
7721 }
7722 }
7723
Michael Chanb5d37722006-09-27 16:06:21 -07007724 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7725 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
7726 tw32(GRC_VCPU_EXT_CTRL,
7727 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
7728 }
7729
Matt Carlsonf37500d2010-08-02 11:25:59 +00007730 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00007731 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00007733
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734 tw32(GRC_MISC_CFG, val);
7735
Michael Chan1ee582d2005-08-09 20:16:46 -07007736 /* restore 5701 hardware bug workaround write method */
7737 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007738
7739 /* Unfortunately, we have to delay before the PCI read back.
7740 * Some 575X chips even will not respond to a PCI cfg access
7741 * when the reset command is given to the chip.
7742 *
7743 * How do these hardware designers expect things to work
7744 * properly if the PCI write is posted for a long period
7745 * of time? It is always necessary to have some method by
7746 * which a register read back can occur to push the write
7747 * out which does the reset.
7748 *
7749 * For most tg3 variants the trick below was working.
7750 * Ho hum...
7751 */
7752 udelay(120);
7753
7754 /* Flush PCI posted writes. The normal MMIO registers
7755 * are inaccessible at this time so this is the only
7756 * way to make this reliably (actually, this is no longer
7757 * the case, see above). I tried to use indirect
7758 * register read/write but this upset some 5701 variants.
7759 */
7760 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
7761
7762 udelay(120);
7763
Jon Mason708ebb32011-06-27 12:56:50 +00007764 if (tg3_flag(tp, PCI_EXPRESS) && pci_pcie_cap(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00007765 u16 val16;
7766
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
7768 int i;
7769 u32 cfg_val;
7770
7771 /* Wait for link training to complete. */
7772 for (i = 0; i < 5000; i++)
7773 udelay(100);
7774
7775 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
7776 pci_write_config_dword(tp->pdev, 0xc4,
7777 cfg_val | (1 << 15));
7778 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007779
Matt Carlsone7126992009-08-25 10:08:16 +00007780 /* Clear the "no snoop" and "relaxed ordering" bits. */
7781 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00007782 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007783 &val16);
7784 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
7785 PCI_EXP_DEVCTL_NOSNOOP_EN);
7786 /*
7787 * Older PCIe devices only support the 128 byte
7788 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007789 */
Joe Perches63c3a662011-04-26 08:12:10 +00007790 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00007791 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007792 pci_write_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00007793 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007794 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007795
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007796 /* Clear error status */
7797 pci_write_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00007798 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007799 PCI_EXP_DEVSTA_CED |
7800 PCI_EXP_DEVSTA_NFED |
7801 PCI_EXP_DEVSTA_FED |
7802 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803 }
7804
Michael Chanee6a99b2007-07-18 21:49:10 -07007805 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806
Joe Perches63c3a662011-04-26 08:12:10 +00007807 tg3_flag_clear(tp, CHIP_RESETTING);
7808 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07007809
Michael Chanee6a99b2007-07-18 21:49:10 -07007810 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007811 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07007812 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07007813 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814
7815 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
7816 tg3_stop_fw(tp);
7817 tw32(0x5000, 0x400);
7818 }
7819
7820 tw32(GRC_MODE, tp->grc_mode);
7821
7822 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007823 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824
7825 tw32(0xc4, val | (1 << 15));
7826 }
7827
7828 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
7829 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
7830 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
7831 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
7832 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
7833 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7834 }
7835
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007836 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00007837 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007838 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007839 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00007840 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007841 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007843 val = 0;
7844
7845 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846 udelay(40);
7847
Matt Carlson77b483f2008-08-15 14:07:24 -07007848 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
7849
Michael Chan7a6f4362006-09-27 16:03:31 -07007850 err = tg3_poll_fw(tp);
7851 if (err)
7852 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853
Matt Carlson0a9140c2009-08-28 12:27:50 +00007854 tg3_mdio_start(tp);
7855
Joe Perches63c3a662011-04-26 08:12:10 +00007856 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007857 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7858 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007859 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007860 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007861
7862 tw32(0x7c00, val | (1 << 25));
7863 }
7864
Matt Carlsond78b59f2011-04-05 14:22:46 +00007865 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
7866 val = tr32(TG3_CPMU_CLCK_ORIDE);
7867 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
7868 }
7869
Linus Torvalds1da177e2005-04-16 15:20:36 -07007870 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00007871 tg3_flag_clear(tp, ENABLE_ASF);
7872 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007873 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7874 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7875 u32 nic_cfg;
7876
7877 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7878 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00007879 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007880 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00007881 if (tg3_flag(tp, 5750_PLUS))
7882 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007883 }
7884 }
7885
7886 return 0;
7887}
7888
Matt Carlson65ec6982012-02-28 23:33:37 +00007889static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
7890static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Matt Carlson92feeab2011-12-08 14:40:14 +00007891
Linus Torvalds1da177e2005-04-16 15:20:36 -07007892/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007893static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007894{
7895 int err;
7896
7897 tg3_stop_fw(tp);
7898
Michael Chan944d9802005-05-29 14:57:48 -07007899 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007900
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007901 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007902 err = tg3_chip_reset(tp);
7903
Matt Carlsondaba2a62009-04-20 06:58:52 +00007904 __tg3_set_mac_addr(tp, 0);
7905
Michael Chan944d9802005-05-29 14:57:48 -07007906 tg3_write_sig_legacy(tp, kind);
7907 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007908
Matt Carlson92feeab2011-12-08 14:40:14 +00007909 if (tp->hw_stats) {
7910 /* Save the stats across chip resets... */
Matt Carlson65ec6982012-02-28 23:33:37 +00007911 tg3_get_nstats(tp, &tp->net_stats_prev),
Matt Carlson92feeab2011-12-08 14:40:14 +00007912 tg3_get_estats(tp, &tp->estats_prev);
7913
7914 /* And make sure the next sample is new data */
7915 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
7916 }
7917
Linus Torvalds1da177e2005-04-16 15:20:36 -07007918 if (err)
7919 return err;
7920
7921 return 0;
7922}
7923
Linus Torvalds1da177e2005-04-16 15:20:36 -07007924static int tg3_set_mac_addr(struct net_device *dev, void *p)
7925{
7926 struct tg3 *tp = netdev_priv(dev);
7927 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007928 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007929
Michael Chanf9804dd2005-09-27 12:13:10 -07007930 if (!is_valid_ether_addr(addr->sa_data))
7931 return -EINVAL;
7932
Linus Torvalds1da177e2005-04-16 15:20:36 -07007933 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7934
Michael Chane75f7c92006-03-20 21:33:26 -08007935 if (!netif_running(dev))
7936 return 0;
7937
Joe Perches63c3a662011-04-26 08:12:10 +00007938 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007939 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007940
Michael Chan986e0ae2007-05-05 12:10:20 -07007941 addr0_high = tr32(MAC_ADDR_0_HIGH);
7942 addr0_low = tr32(MAC_ADDR_0_LOW);
7943 addr1_high = tr32(MAC_ADDR_1_HIGH);
7944 addr1_low = tr32(MAC_ADDR_1_LOW);
7945
7946 /* Skip MAC addr 1 if ASF is using it. */
7947 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7948 !(addr1_high == 0 && addr1_low == 0))
7949 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007950 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007951 spin_lock_bh(&tp->lock);
7952 __tg3_set_mac_addr(tp, skip_mac_1);
7953 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954
Michael Chanb9ec6c12006-07-25 16:37:27 -07007955 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007956}
7957
7958/* tp->lock is held. */
7959static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7960 dma_addr_t mapping, u32 maxlen_flags,
7961 u32 nic_addr)
7962{
7963 tg3_write_mem(tp,
7964 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7965 ((u64) mapping >> 32));
7966 tg3_write_mem(tp,
7967 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7968 ((u64) mapping & 0xffffffff));
7969 tg3_write_mem(tp,
7970 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7971 maxlen_flags);
7972
Joe Perches63c3a662011-04-26 08:12:10 +00007973 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007974 tg3_write_mem(tp,
7975 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7976 nic_addr);
7977}
7978
7979static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007980static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007981{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007982 int i;
7983
Joe Perches63c3a662011-04-26 08:12:10 +00007984 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007985 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7986 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7987 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007988 } else {
7989 tw32(HOSTCC_TXCOL_TICKS, 0);
7990 tw32(HOSTCC_TXMAX_FRAMES, 0);
7991 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007992 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007993
Joe Perches63c3a662011-04-26 08:12:10 +00007994 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007995 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7996 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7997 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7998 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007999 tw32(HOSTCC_RXCOL_TICKS, 0);
8000 tw32(HOSTCC_RXMAX_FRAMES, 0);
8001 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07008002 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008003
Joe Perches63c3a662011-04-26 08:12:10 +00008004 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07008005 u32 val = ec->stats_block_coalesce_usecs;
8006
Matt Carlsonb6080e12009-09-01 13:12:00 +00008007 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
8008 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
8009
David S. Miller15f98502005-05-18 22:49:26 -07008010 if (!netif_carrier_ok(tp->dev))
8011 val = 0;
8012
8013 tw32(HOSTCC_STAT_COAL_TICKS, val);
8014 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008015
8016 for (i = 0; i < tp->irq_cnt - 1; i++) {
8017 u32 reg;
8018
8019 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
8020 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008021 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
8022 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008023 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
8024 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008025
Joe Perches63c3a662011-04-26 08:12:10 +00008026 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008027 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
8028 tw32(reg, ec->tx_coalesce_usecs);
8029 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
8030 tw32(reg, ec->tx_max_coalesced_frames);
8031 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
8032 tw32(reg, ec->tx_max_coalesced_frames_irq);
8033 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008034 }
8035
8036 for (; i < tp->irq_max - 1; i++) {
8037 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008038 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008039 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008040
Joe Perches63c3a662011-04-26 08:12:10 +00008041 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008042 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
8043 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
8044 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
8045 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008046 }
David S. Miller15f98502005-05-18 22:49:26 -07008047}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008048
8049/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00008050static void tg3_rings_reset(struct tg3 *tp)
8051{
8052 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008053 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008054 struct tg3_napi *tnapi = &tp->napi[0];
8055
8056 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008057 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008058 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008059 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00008060 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlson55086ad2011-12-14 11:09:59 +00008061 else if (tg3_flag(tp, 57765_CLASS))
Matt Carlsonb703df62009-12-03 08:36:21 +00008062 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008063 else
8064 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8065
8066 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8067 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
8068 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
8069 BDINFO_FLAGS_DISABLED);
8070
8071
8072 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008073 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008074 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00008075 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008076 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00008077 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00008078 tg3_flag(tp, 57765_CLASS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008079 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
8080 else
8081 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8082
8083 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8084 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
8085 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
8086 BDINFO_FLAGS_DISABLED);
8087
8088 /* Disable interrupts */
8089 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008090 tp->napi[0].chk_msi_cnt = 0;
8091 tp->napi[0].last_rx_cons = 0;
8092 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008093
8094 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00008095 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00008096 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008097 tp->napi[i].tx_prod = 0;
8098 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008099 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008100 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008101 tw32_rx_mbox(tp->napi[i].consmbox, 0);
8102 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00008103 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008104 tp->napi[i].last_rx_cons = 0;
8105 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008106 }
Joe Perches63c3a662011-04-26 08:12:10 +00008107 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008108 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008109 } else {
8110 tp->napi[0].tx_prod = 0;
8111 tp->napi[0].tx_cons = 0;
8112 tw32_mailbox(tp->napi[0].prodmbox, 0);
8113 tw32_rx_mbox(tp->napi[0].consmbox, 0);
8114 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008115
8116 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00008117 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00008118 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
8119 for (i = 0; i < 16; i++)
8120 tw32_tx_mbox(mbox + i * 8, 0);
8121 }
8122
8123 txrcb = NIC_SRAM_SEND_RCB;
8124 rxrcb = NIC_SRAM_RCV_RET_RCB;
8125
8126 /* Clear status block in ram. */
8127 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8128
8129 /* Set status block DMA address */
8130 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8131 ((u64) tnapi->status_mapping >> 32));
8132 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8133 ((u64) tnapi->status_mapping & 0xffffffff));
8134
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008135 if (tnapi->tx_ring) {
8136 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8137 (TG3_TX_RING_SIZE <<
8138 BDINFO_FLAGS_MAXLEN_SHIFT),
8139 NIC_SRAM_TX_BUFFER_DESC);
8140 txrcb += TG3_BDINFO_SIZE;
8141 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008142
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008143 if (tnapi->rx_rcb) {
8144 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008145 (tp->rx_ret_ring_mask + 1) <<
8146 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008147 rxrcb += TG3_BDINFO_SIZE;
8148 }
8149
8150 stblk = HOSTCC_STATBLCK_RING1;
8151
8152 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
8153 u64 mapping = (u64)tnapi->status_mapping;
8154 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
8155 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
8156
8157 /* Clear status block in ram. */
8158 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8159
Matt Carlson19cfaec2009-12-03 08:36:20 +00008160 if (tnapi->tx_ring) {
8161 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8162 (TG3_TX_RING_SIZE <<
8163 BDINFO_FLAGS_MAXLEN_SHIFT),
8164 NIC_SRAM_TX_BUFFER_DESC);
8165 txrcb += TG3_BDINFO_SIZE;
8166 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008167
8168 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008169 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008170 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
8171
8172 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008173 rxrcb += TG3_BDINFO_SIZE;
8174 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008175}
8176
Matt Carlsoneb07a942011-04-20 07:57:36 +00008177static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
8178{
8179 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
8180
Joe Perches63c3a662011-04-26 08:12:10 +00008181 if (!tg3_flag(tp, 5750_PLUS) ||
8182 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00008183 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00008184 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
8185 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008186 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
8187 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
8188 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
8189 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
8190 else
8191 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
8192
8193 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
8194 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
8195
8196 val = min(nic_rep_thresh, host_rep_thresh);
8197 tw32(RCVBDI_STD_THRESH, val);
8198
Joe Perches63c3a662011-04-26 08:12:10 +00008199 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008200 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
8201
Joe Perches63c3a662011-04-26 08:12:10 +00008202 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008203 return;
8204
Matt Carlson513aa6e2011-11-21 15:01:18 +00008205 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00008206
8207 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
8208
8209 val = min(bdcache_maxcnt / 2, host_rep_thresh);
8210 tw32(RCVBDI_JUMBO_THRESH, val);
8211
Joe Perches63c3a662011-04-26 08:12:10 +00008212 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008213 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
8214}
8215
Matt Carlson90415472011-12-16 13:33:23 +00008216static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp)
8217{
8218 int i;
8219
8220 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
8221 tp->rss_ind_tbl[i] =
8222 ethtool_rxfh_indir_default(i, tp->irq_cnt - 1);
8223}
8224
8225static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008226{
8227 int i;
8228
8229 if (!tg3_flag(tp, SUPPORT_MSIX))
8230 return;
8231
Matt Carlson90415472011-12-16 13:33:23 +00008232 if (tp->irq_cnt <= 2) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008233 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00008234 return;
8235 }
8236
8237 /* Validate table against current IRQ count */
8238 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8239 if (tp->rss_ind_tbl[i] >= tp->irq_cnt - 1)
8240 break;
8241 }
8242
8243 if (i != TG3_RSS_INDIR_TBL_SIZE)
8244 tg3_rss_init_dflt_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008245}
8246
Matt Carlson90415472011-12-16 13:33:23 +00008247static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008248{
8249 int i = 0;
8250 u32 reg = MAC_RSS_INDIR_TBL_0;
8251
8252 while (i < TG3_RSS_INDIR_TBL_SIZE) {
8253 u32 val = tp->rss_ind_tbl[i];
8254 i++;
8255 for (; i % 8; i++) {
8256 val <<= 4;
8257 val |= tp->rss_ind_tbl[i];
8258 }
8259 tw32(reg, val);
8260 reg += 4;
8261 }
8262}
8263
Matt Carlson2d31eca2009-09-01 12:53:31 +00008264/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008265static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266{
8267 u32 val, rdmac_mode;
8268 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008269 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008270
8271 tg3_disable_ints(tp);
8272
8273 tg3_stop_fw(tp);
8274
8275 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
8276
Joe Perches63c3a662011-04-26 08:12:10 +00008277 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07008278 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279
Matt Carlson699c0192010-12-06 08:28:51 +00008280 /* Enable MAC control of LPI */
8281 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
8282 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
8283 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
8284 TG3_CPMU_EEE_LNKIDL_UART_IDL);
8285
8286 tw32_f(TG3_CPMU_EEE_CTRL,
8287 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
8288
Matt Carlsona386b902010-12-06 08:28:53 +00008289 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
8290 TG3_CPMU_EEEMD_LPI_IN_TX |
8291 TG3_CPMU_EEEMD_LPI_IN_RX |
8292 TG3_CPMU_EEEMD_EEE_ENABLE;
8293
8294 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8295 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
8296
Joe Perches63c3a662011-04-26 08:12:10 +00008297 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00008298 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
8299
8300 tw32_f(TG3_CPMU_EEE_MODE, val);
8301
8302 tw32_f(TG3_CPMU_EEE_DBTMR1,
8303 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
8304 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
8305
8306 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00008307 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00008308 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00008309 }
8310
Matt Carlson603f1172010-02-12 14:47:10 +00008311 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08008312 tg3_phy_reset(tp);
8313
Linus Torvalds1da177e2005-04-16 15:20:36 -07008314 err = tg3_chip_reset(tp);
8315 if (err)
8316 return err;
8317
8318 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
8319
Matt Carlsonbcb37f62008-11-03 16:52:09 -08008320 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008321 val = tr32(TG3_CPMU_CTRL);
8322 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
8323 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08008324
8325 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8326 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8327 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8328 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
8329
8330 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
8331 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
8332 val |= CPMU_LNK_AWARE_MACCLK_6_25;
8333 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
8334
8335 val = tr32(TG3_CPMU_HST_ACC);
8336 val &= ~CPMU_HST_ACC_MACCLK_MASK;
8337 val |= CPMU_HST_ACC_MACCLK_6_25;
8338 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07008339 }
8340
Matt Carlson33466d92009-04-20 06:57:41 +00008341 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8342 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
8343 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
8344 PCIE_PWR_MGMT_L1_THRESH_4MS;
8345 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00008346
8347 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
8348 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
8349
8350 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00008351
Matt Carlsonf40386c2009-11-02 14:24:02 +00008352 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8353 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00008354 }
8355
Joe Perches63c3a662011-04-26 08:12:10 +00008356 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00008357 u32 grc_mode = tr32(GRC_MODE);
8358
8359 /* Access the lower 1K of PL PCIE block registers. */
8360 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8361 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
8362
8363 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
8364 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
8365 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
8366
8367 tw32(GRC_MODE, grc_mode);
8368 }
8369
Matt Carlson55086ad2011-12-14 11:09:59 +00008370 if (tg3_flag(tp, 57765_CLASS)) {
Matt Carlson5093eed2010-11-24 08:31:45 +00008371 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
8372 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00008373
Matt Carlson5093eed2010-11-24 08:31:45 +00008374 /* Access the lower 1K of PL PCIE block registers. */
8375 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8376 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00008377
Matt Carlson5093eed2010-11-24 08:31:45 +00008378 val = tr32(TG3_PCIE_TLDLPL_PORT +
8379 TG3_PCIE_PL_LO_PHYCTL5);
8380 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
8381 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00008382
Matt Carlson5093eed2010-11-24 08:31:45 +00008383 tw32(GRC_MODE, grc_mode);
8384 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008385
Matt Carlson1ff30a52011-05-19 12:12:46 +00008386 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_57765_AX) {
8387 u32 grc_mode = tr32(GRC_MODE);
8388
8389 /* Access the lower 1K of DL PCIE block registers. */
8390 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8391 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
8392
8393 val = tr32(TG3_PCIE_TLDLPL_PORT +
8394 TG3_PCIE_DL_LO_FTSMAX);
8395 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
8396 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
8397 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
8398
8399 tw32(GRC_MODE, grc_mode);
8400 }
8401
Matt Carlsona977dbe2010-04-12 06:58:26 +00008402 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8403 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8404 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8405 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008406 }
8407
Linus Torvalds1da177e2005-04-16 15:20:36 -07008408 /* This works around an issue with Athlon chipsets on
8409 * B3 tigon3 silicon. This bit has no effect on any
8410 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008411 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008412 */
Joe Perches63c3a662011-04-26 08:12:10 +00008413 if (!tg3_flag(tp, CPMU_PRESENT)) {
8414 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008415 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8416 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008418
8419 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008420 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008421 val = tr32(TG3PCI_PCISTATE);
8422 val |= PCISTATE_RETRY_SAME_DMA;
8423 tw32(TG3PCI_PCISTATE, val);
8424 }
8425
Joe Perches63c3a662011-04-26 08:12:10 +00008426 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008427 /* Allow reads and writes to the
8428 * APE register and memory space.
8429 */
8430 val = tr32(TG3PCI_PCISTATE);
8431 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008432 PCISTATE_ALLOW_APE_SHMEM_WR |
8433 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008434 tw32(TG3PCI_PCISTATE, val);
8435 }
8436
Linus Torvalds1da177e2005-04-16 15:20:36 -07008437 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8438 /* Enable some hw fixes. */
8439 val = tr32(TG3PCI_MSI_DATA);
8440 val |= (1 << 26) | (1 << 28) | (1 << 29);
8441 tw32(TG3PCI_MSI_DATA, val);
8442 }
8443
8444 /* Descriptor ring init may make accesses to the
8445 * NIC SRAM area to setup the TX descriptors, so we
8446 * can only do this after the hardware has been
8447 * successfully reset.
8448 */
Michael Chan32d8c572006-07-25 16:38:29 -07008449 err = tg3_init_rings(tp);
8450 if (err)
8451 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008452
Joe Perches63c3a662011-04-26 08:12:10 +00008453 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008454 val = tr32(TG3PCI_DMA_RW_CTRL) &
8455 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008456 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8457 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +00008458 if (!tg3_flag(tp, 57765_CLASS) &&
Matt Carlson0aebff42011-04-25 12:42:45 +00008459 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8460 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008461 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8462 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8463 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008464 /* This value is determined during the probe time DMA
8465 * engine test, tg3_test_dma.
8466 */
8467 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469
8470 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8471 GRC_MODE_4X_NIC_SEND_RINGS |
8472 GRC_MODE_NO_TX_PHDR_CSUM |
8473 GRC_MODE_NO_RX_PHDR_CSUM);
8474 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008475
8476 /* Pseudo-header checksum is done by hardware logic and not
8477 * the offload processers, so make the chip do the pseudo-
8478 * header checksums on receive. For transmit it is more
8479 * convenient to do the pseudo-header checksum in software
8480 * as Linux does that on transmit for us in all cases.
8481 */
8482 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483
8484 tw32(GRC_MODE,
8485 tp->grc_mode |
8486 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8487
8488 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8489 val = tr32(GRC_MISC_CFG);
8490 val &= ~0xff;
8491 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8492 tw32(GRC_MISC_CFG, val);
8493
8494 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008495 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008496 /* Do nothing. */
8497 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8498 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8499 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8500 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8501 else
8502 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8503 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8504 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008505 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506 int fw_len;
8507
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008508 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008509 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8510 tw32(BUFMGR_MB_POOL_ADDR,
8511 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8512 tw32(BUFMGR_MB_POOL_SIZE,
8513 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008515
Michael Chan0f893dc2005-07-25 12:30:38 -07008516 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008517 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8518 tp->bufmgr_config.mbuf_read_dma_low_water);
8519 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8520 tp->bufmgr_config.mbuf_mac_rx_low_water);
8521 tw32(BUFMGR_MB_HIGH_WATER,
8522 tp->bufmgr_config.mbuf_high_water);
8523 } else {
8524 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8525 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8526 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8527 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8528 tw32(BUFMGR_MB_HIGH_WATER,
8529 tp->bufmgr_config.mbuf_high_water_jumbo);
8530 }
8531 tw32(BUFMGR_DMA_LOW_WATER,
8532 tp->bufmgr_config.dma_low_water);
8533 tw32(BUFMGR_DMA_HIGH_WATER,
8534 tp->bufmgr_config.dma_high_water);
8535
Matt Carlsond309a462010-09-30 10:34:31 +00008536 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8537 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8538 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008539 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8540 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8541 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8542 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008543 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008544 for (i = 0; i < 2000; i++) {
8545 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8546 break;
8547 udelay(10);
8548 }
8549 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008550 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008551 return -ENODEV;
8552 }
8553
Matt Carlsoneb07a942011-04-20 07:57:36 +00008554 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8555 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008556
Matt Carlsoneb07a942011-04-20 07:57:36 +00008557 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008558
8559 /* Initialize TG3_BDINFO's at:
8560 * RCVDBDI_STD_BD: standard eth size rx ring
8561 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8562 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8563 *
8564 * like so:
8565 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
8566 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
8567 * ring attribute flags
8568 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
8569 *
8570 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
8571 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
8572 *
8573 * The size of each ring is fixed in the firmware, but the location is
8574 * configurable.
8575 */
8576 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008577 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008578 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008579 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00008580 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00008581 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
8582 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008583
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008584 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00008585 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008586 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
8587 BDINFO_FLAGS_DISABLED);
8588
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008589 /* Program the jumbo buffer descriptor ring control
8590 * blocks on those devices that have them.
8591 */
Matt Carlsona0512942011-07-27 14:20:54 +00008592 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008593 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008594
Joe Perches63c3a662011-04-26 08:12:10 +00008595 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008596 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008597 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008598 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008599 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00008600 val = TG3_RX_JMB_RING_SIZE(tp) <<
8601 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008602 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00008603 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00008604 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlson55086ad2011-12-14 11:09:59 +00008605 tg3_flag(tp, 57765_CLASS))
Matt Carlson87668d32009-11-13 13:03:34 +00008606 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
8607 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008608 } else {
8609 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
8610 BDINFO_FLAGS_DISABLED);
8611 }
8612
Joe Perches63c3a662011-04-26 08:12:10 +00008613 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +00008614 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008615 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
8616 val |= (TG3_RX_STD_DMA_SZ << 2);
8617 } else
Matt Carlson04380d42010-04-12 06:58:29 +00008618 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008619 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008620 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008621
8622 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008623
Matt Carlson411da642009-11-13 13:03:46 +00008624 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00008625 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626
Joe Perches63c3a662011-04-26 08:12:10 +00008627 tpr->rx_jmb_prod_idx =
8628 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00008629 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008630
Matt Carlson2d31eca2009-09-01 12:53:31 +00008631 tg3_rings_reset(tp);
8632
Linus Torvalds1da177e2005-04-16 15:20:36 -07008633 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07008634 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635
8636 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00008637 tw32(MAC_RX_MTU_SIZE,
8638 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008639
8640 /* The slot time is changed by tg3_setup_phy if we
8641 * run at gigabit with half duplex.
8642 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00008643 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
8644 (6 << TX_LENGTHS_IPG_SHIFT) |
8645 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
8646
8647 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8648 val |= tr32(MAC_TX_LENGTHS) &
8649 (TX_LENGTHS_JMB_FRM_LEN_MSK |
8650 TX_LENGTHS_CNT_DWN_VAL_MSK);
8651
8652 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653
8654 /* Receive rules. */
8655 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
8656 tw32(RCVLPC_CONFIG, 0x0181);
8657
8658 /* Calculate RDMAC_MODE setting early, we need it to determine
8659 * the RCVLPC_STATE_ENABLE mask.
8660 */
8661 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
8662 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
8663 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
8664 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
8665 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07008666
Matt Carlsondeabaac2010-11-24 08:31:50 +00008667 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00008668 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
8669
Matt Carlson57e69832008-05-25 23:48:31 -07008670 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08008671 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8672 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07008673 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
8674 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
8675 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
8676
Matt Carlsonc5908932011-03-09 16:58:25 +00008677 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8678 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008679 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07008680 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008681 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
8682 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008683 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008684 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8685 }
8686 }
8687
Joe Perches63c3a662011-04-26 08:12:10 +00008688 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07008689 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8690
Matt Carlson55086ad2011-12-14 11:09:59 +00008691 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
8692 rdmac_mode |= RDMAC_MODE_JMB_2K_MMRR;
8693
Joe Perches63c3a662011-04-26 08:12:10 +00008694 if (tg3_flag(tp, HW_TSO_1) ||
8695 tg3_flag(tp, HW_TSO_2) ||
8696 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08008697 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
8698
Matt Carlson108a6c12011-05-19 12:12:47 +00008699 if (tg3_flag(tp, 57765_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00008700 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08008701 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
8702 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008703
Matt Carlsonf2096f92011-04-05 14:22:48 +00008704 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8705 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
8706
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008707 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
8708 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8709 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8710 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008711 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008712 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Matt Carlsond78b59f2011-04-05 14:22:46 +00008713 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8714 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00008715 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
8716 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
8717 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
8718 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
8719 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
8720 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00008721 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008722 tw32(TG3_RDMA_RSRVCTRL_REG,
8723 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
8724 }
8725
Matt Carlsond78b59f2011-04-05 14:22:46 +00008726 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8727 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00008728 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
8729 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
8730 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
8731 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
8732 }
8733
Linus Torvalds1da177e2005-04-16 15:20:36 -07008734 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00008735 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07008736 val = tr32(RCVLPC_STATS_ENABLE);
8737 val &= ~RCVLPC_STATSENAB_DACK_FIX;
8738 tw32(RCVLPC_STATS_ENABLE, val);
8739 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008740 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008741 val = tr32(RCVLPC_STATS_ENABLE);
8742 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
8743 tw32(RCVLPC_STATS_ENABLE, val);
8744 } else {
8745 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
8746 }
8747 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
8748 tw32(SNDDATAI_STATSENAB, 0xffffff);
8749 tw32(SNDDATAI_STATSCTRL,
8750 (SNDDATAI_SCTRL_ENABLE |
8751 SNDDATAI_SCTRL_FASTUPD));
8752
8753 /* Setup host coalescing engine. */
8754 tw32(HOSTCC_MODE, 0);
8755 for (i = 0; i < 2000; i++) {
8756 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
8757 break;
8758 udelay(10);
8759 }
8760
Michael Chand244c892005-07-05 14:42:33 -07008761 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008762
Joe Perches63c3a662011-04-26 08:12:10 +00008763 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008764 /* Status/statistics block address. See tg3_timer,
8765 * the tg3_periodic_fetch_stats call there, and
8766 * tg3_get_stats to see how this works for 5705/5750 chips.
8767 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008768 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8769 ((u64) tp->stats_mapping >> 32));
8770 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8771 ((u64) tp->stats_mapping & 0xffffffff));
8772 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008773
Linus Torvalds1da177e2005-04-16 15:20:36 -07008774 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008775
8776 /* Clear statistics and status block memory areas */
8777 for (i = NIC_SRAM_STATS_BLK;
8778 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
8779 i += sizeof(u32)) {
8780 tg3_write_mem(tp, i, 0);
8781 udelay(40);
8782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008783 }
8784
8785 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
8786
8787 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
8788 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008789 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008790 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
8791
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008792 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
8793 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07008794 /* reset to prevent losing 1st rx packet intermittently */
8795 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8796 udelay(10);
8797 }
8798
Matt Carlson3bda1252008-08-15 14:08:22 -07008799 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +00008800 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
8801 MAC_MODE_FHDE_ENABLE;
8802 if (tg3_flag(tp, ENABLE_APE))
8803 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +00008804 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008805 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07008806 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8807 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008808 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8809 udelay(40);
8810
Michael Chan314fba32005-04-21 17:07:04 -07008811 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00008812 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008813 * register to preserve the GPIO settings for LOMs. The GPIOs,
8814 * whether used as inputs or outputs, are set by boot code after
8815 * reset.
8816 */
Joe Perches63c3a662011-04-26 08:12:10 +00008817 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008818 u32 gpio_mask;
8819
Michael Chan9d26e212006-12-07 00:21:14 -08008820 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8821 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8822 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008823
8824 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8825 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8826 GRC_LCLCTRL_GPIO_OUTPUT3;
8827
Michael Chanaf36e6b2006-03-23 01:28:06 -08008828 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8829 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8830
Gary Zambranoaaf84462007-05-05 11:51:45 -07008831 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008832 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8833
8834 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00008835 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08008836 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8837 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8840 udelay(100);
8841
Matt Carlsonc3b50032012-01-17 15:27:23 +00008842 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008843 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +00008844 val |= MSGINT_MODE_ENABLE;
8845 if (tp->irq_cnt > 1)
8846 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +00008847 if (!tg3_flag(tp, 1SHOT_MSI))
8848 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008849 tw32(MSGINT_MODE, val);
8850 }
8851
Joe Perches63c3a662011-04-26 08:12:10 +00008852 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008853 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8854 udelay(40);
8855 }
8856
8857 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8858 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8859 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8860 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8861 WDMAC_MODE_LNGREAD_ENAB);
8862
Matt Carlsonc5908932011-03-09 16:58:25 +00008863 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8864 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008865 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008866 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8867 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8868 /* nothing */
8869 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008870 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008871 val |= WDMAC_MODE_RX_ACCEL;
8872 }
8873 }
8874
Michael Chand9ab5ad2006-03-20 22:27:35 -08008875 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00008876 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07008877 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad2006-03-20 22:27:35 -08008878
Matt Carlson788a0352009-11-02 14:26:03 +00008879 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8880 val |= WDMAC_MODE_BURST_ALL_DATA;
8881
Linus Torvalds1da177e2005-04-16 15:20:36 -07008882 tw32_f(WDMAC_MODE, val);
8883 udelay(40);
8884
Joe Perches63c3a662011-04-26 08:12:10 +00008885 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008886 u16 pcix_cmd;
8887
8888 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8889 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008890 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008891 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8892 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008893 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008894 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8895 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896 }
Matt Carlson9974a352007-10-07 23:27:28 -07008897 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8898 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008899 }
8900
8901 tw32_f(RDMAC_MODE, rdmac_mode);
8902 udelay(40);
8903
8904 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008905 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008906 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008907
8908 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8909 tw32(SNDDATAC_MODE,
8910 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8911 else
8912 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8913
Linus Torvalds1da177e2005-04-16 15:20:36 -07008914 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8915 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008916 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008917 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008918 val |= RCVDBDI_MODE_LRG_RING_SZ;
8919 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008920 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008921 if (tg3_flag(tp, HW_TSO_1) ||
8922 tg3_flag(tp, HW_TSO_2) ||
8923 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008924 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008925 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008926 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008927 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8928 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008929 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8930
8931 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8932 err = tg3_load_5701_a0_firmware_fix(tp);
8933 if (err)
8934 return err;
8935 }
8936
Joe Perches63c3a662011-04-26 08:12:10 +00008937 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008938 err = tg3_load_tso_firmware(tp);
8939 if (err)
8940 return err;
8941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008942
8943 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008944
Joe Perches63c3a662011-04-26 08:12:10 +00008945 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00008946 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
8947 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008948
8949 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8950 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
8951 tp->tx_mode &= ~val;
8952 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
8953 }
8954
Linus Torvalds1da177e2005-04-16 15:20:36 -07008955 tw32_f(MAC_TX_MODE, tp->tx_mode);
8956 udelay(100);
8957
Joe Perches63c3a662011-04-26 08:12:10 +00008958 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008959 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008960
8961 /* Setup the "secret" hash key. */
8962 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8963 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8964 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8965 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8966 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8967 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8968 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8969 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8970 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8971 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8972 }
8973
Linus Torvalds1da177e2005-04-16 15:20:36 -07008974 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008975 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08008976 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8977
Joe Perches63c3a662011-04-26 08:12:10 +00008978 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008979 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8980 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8981 RX_MODE_RSS_IPV6_HASH_EN |
8982 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8983 RX_MODE_RSS_IPV4_HASH_EN |
8984 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8985
Linus Torvalds1da177e2005-04-16 15:20:36 -07008986 tw32_f(MAC_RX_MODE, tp->rx_mode);
8987 udelay(10);
8988
Linus Torvalds1da177e2005-04-16 15:20:36 -07008989 tw32(MAC_LED_CTRL, tp->led_ctrl);
8990
8991 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008992 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008993 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8994 udelay(10);
8995 }
8996 tw32_f(MAC_RX_MODE, tp->rx_mode);
8997 udelay(10);
8998
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008999 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009000 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009001 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009002 /* Set drive transmission level to 1.2V */
9003 /* only if the signal pre-emphasis bit is not set */
9004 val = tr32(MAC_SERDES_CFG);
9005 val &= 0xfffff000;
9006 val |= 0x880;
9007 tw32(MAC_SERDES_CFG, val);
9008 }
9009 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
9010 tw32(MAC_SERDES_CFG, 0x616000);
9011 }
9012
9013 /* Prevent chip from dropping frames when flow control
9014 * is enabled.
9015 */
Matt Carlson55086ad2011-12-14 11:09:59 +00009016 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +00009017 val = 1;
9018 else
9019 val = 2;
9020 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009021
9022 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009023 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009024 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00009025 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009026 }
9027
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009028 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +00009029 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08009030 u32 tmp;
9031
9032 tmp = tr32(SERDES_RX_CTRL);
9033 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
9034 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
9035 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
9036 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9037 }
9038
Joe Perches63c3a662011-04-26 08:12:10 +00009039 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson800960682010-08-02 11:26:06 +00009040 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
9041 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07009042 tp->link_config.speed = tp->link_config.orig_speed;
9043 tp->link_config.duplex = tp->link_config.orig_duplex;
9044 tp->link_config.autoneg = tp->link_config.orig_autoneg;
9045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009046
Matt Carlsondd477002008-05-25 23:45:58 -07009047 err = tg3_setup_phy(tp, 0);
9048 if (err)
9049 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009050
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009051 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
9052 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07009053 u32 tmp;
9054
9055 /* Clear CRC stats. */
9056 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
9057 tg3_writephy(tp, MII_TG3_TEST1,
9058 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009059 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07009060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009061 }
9062 }
9063
9064 __tg3_set_rx_mode(tp->dev);
9065
9066 /* Initialize receive rules. */
9067 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
9068 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
9069 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
9070 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
9071
Joe Perches63c3a662011-04-26 08:12:10 +00009072 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009073 limit = 8;
9074 else
9075 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00009076 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009077 limit -= 4;
9078 switch (limit) {
9079 case 16:
9080 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
9081 case 15:
9082 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
9083 case 14:
9084 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
9085 case 13:
9086 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
9087 case 12:
9088 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
9089 case 11:
9090 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
9091 case 10:
9092 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
9093 case 9:
9094 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
9095 case 8:
9096 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
9097 case 7:
9098 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
9099 case 6:
9100 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
9101 case 5:
9102 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
9103 case 4:
9104 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
9105 case 3:
9106 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
9107 case 2:
9108 case 1:
9109
9110 default:
9111 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07009112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009113
Joe Perches63c3a662011-04-26 08:12:10 +00009114 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07009115 /* Write our heartbeat update interval to APE. */
9116 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
9117 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07009118
Linus Torvalds1da177e2005-04-16 15:20:36 -07009119 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
9120
Linus Torvalds1da177e2005-04-16 15:20:36 -07009121 return 0;
9122}
9123
9124/* Called at device open time to get the chip ready for
9125 * packet processing. Invoked with tp->lock held.
9126 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009127static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009128{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009129 tg3_switch_clocks(tp);
9130
9131 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
9132
Matt Carlson2f751b62008-08-04 23:17:34 -07009133 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009134}
9135
9136#define TG3_STAT_ADD32(PSTAT, REG) \
9137do { u32 __val = tr32(REG); \
9138 (PSTAT)->low += __val; \
9139 if ((PSTAT)->low < __val) \
9140 (PSTAT)->high += 1; \
9141} while (0)
9142
9143static void tg3_periodic_fetch_stats(struct tg3 *tp)
9144{
9145 struct tg3_hw_stats *sp = tp->hw_stats;
9146
9147 if (!netif_carrier_ok(tp->dev))
9148 return;
9149
9150 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
9151 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
9152 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
9153 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
9154 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
9155 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
9156 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
9157 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
9158 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
9159 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
9160 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
9161 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
9162 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
9163
9164 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
9165 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
9166 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
9167 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
9168 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
9169 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
9170 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
9171 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
9172 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
9173 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
9174 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
9175 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
9176 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
9177 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07009178
9179 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson310050f2011-05-19 12:12:55 +00009180 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9181 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0 &&
9182 tp->pci_chip_rev_id != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +00009183 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
9184 } else {
9185 u32 val = tr32(HOSTCC_FLOW_ATTN);
9186 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
9187 if (val) {
9188 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
9189 sp->rx_discards.low += val;
9190 if (sp->rx_discards.low < val)
9191 sp->rx_discards.high += 1;
9192 }
9193 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
9194 }
Michael Chan463d3052006-05-22 16:36:27 -07009195 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009196}
9197
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009198static void tg3_chk_missed_msi(struct tg3 *tp)
9199{
9200 u32 i;
9201
9202 for (i = 0; i < tp->irq_cnt; i++) {
9203 struct tg3_napi *tnapi = &tp->napi[i];
9204
9205 if (tg3_has_work(tnapi)) {
9206 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
9207 tnapi->last_tx_cons == tnapi->tx_cons) {
9208 if (tnapi->chk_msi_cnt < 1) {
9209 tnapi->chk_msi_cnt++;
9210 return;
9211 }
Matt Carlson7f230732011-08-31 11:44:48 +00009212 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009213 }
9214 }
9215 tnapi->chk_msi_cnt = 0;
9216 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
9217 tnapi->last_tx_cons = tnapi->tx_cons;
9218 }
9219}
9220
Linus Torvalds1da177e2005-04-16 15:20:36 -07009221static void tg3_timer(unsigned long __opaque)
9222{
9223 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009224
Matt Carlson5b190622011-11-04 09:15:04 +00009225 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -08009226 goto restart_timer;
9227
David S. Millerf47c11e2005-06-24 20:18:35 -07009228 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009229
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009230 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00009231 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009232 tg3_chk_missed_msi(tp);
9233
Joe Perches63c3a662011-04-26 08:12:10 +00009234 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07009235 /* All of this garbage is because when using non-tagged
9236 * IRQ status the mailbox/status_block protocol the chip
9237 * uses with the cpu is race prone.
9238 */
Matt Carlson898a56f2009-08-28 14:02:40 +00009239 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07009240 tw32(GRC_LOCAL_CTRL,
9241 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
9242 } else {
9243 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009244 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07009245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009246
David S. Millerfac9b832005-05-18 22:46:34 -07009247 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009248 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +00009249 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +00009250 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -07009251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009252 }
9253
Linus Torvalds1da177e2005-04-16 15:20:36 -07009254 /* This part only runs once per second. */
9255 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009256 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009257 tg3_periodic_fetch_stats(tp);
9258
Matt Carlsonb0c59432011-05-19 12:12:48 +00009259 if (tp->setlpicnt && !--tp->setlpicnt)
9260 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00009261
Joe Perches63c3a662011-04-26 08:12:10 +00009262 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009263 u32 mac_stat;
9264 int phy_event;
9265
9266 mac_stat = tr32(MAC_STATUS);
9267
9268 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009269 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009270 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
9271 phy_event = 1;
9272 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
9273 phy_event = 1;
9274
9275 if (phy_event)
9276 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00009277 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009278 u32 mac_stat = tr32(MAC_STATUS);
9279 int need_setup = 0;
9280
9281 if (netif_carrier_ok(tp->dev) &&
9282 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
9283 need_setup = 1;
9284 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00009285 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009286 (mac_stat & (MAC_STATUS_PCS_SYNCED |
9287 MAC_STATUS_SIGNAL_DET))) {
9288 need_setup = 1;
9289 }
9290 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07009291 if (!tp->serdes_counter) {
9292 tw32_f(MAC_MODE,
9293 (tp->mac_mode &
9294 ~MAC_MODE_PORT_MODE_MASK));
9295 udelay(40);
9296 tw32_f(MAC_MODE, tp->mac_mode);
9297 udelay(40);
9298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009299 tg3_setup_phy(tp, 0);
9300 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009301 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009302 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07009303 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00009304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009305
9306 tp->timer_counter = tp->timer_multiplier;
9307 }
9308
Michael Chan130b8e42006-09-27 16:00:40 -07009309 /* Heartbeat is only sent once every 2 seconds.
9310 *
9311 * The heartbeat is to tell the ASF firmware that the host
9312 * driver is still alive. In the event that the OS crashes,
9313 * ASF needs to reset the hardware to free up the FIFO space
9314 * that may be filled with rx packets destined for the host.
9315 * If the FIFO is full, ASF will no longer function properly.
9316 *
9317 * Unintended resets have been reported on real time kernels
9318 * where the timer doesn't run on time. Netpoll will also have
9319 * same problem.
9320 *
9321 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
9322 * to check the ring condition when the heartbeat is expiring
9323 * before doing the reset. This will prevent most unintended
9324 * resets.
9325 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009326 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009327 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07009328 tg3_wait_for_event_ack(tp);
9329
Michael Chanbbadf502006-04-06 21:46:34 -07009330 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07009331 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07009332 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009333 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
9334 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009335
9336 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009337 }
9338 tp->asf_counter = tp->asf_multiplier;
9339 }
9340
David S. Millerf47c11e2005-06-24 20:18:35 -07009341 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009342
Michael Chanf475f162006-03-27 23:20:14 -08009343restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07009344 tp->timer.expires = jiffies + tp->timer_offset;
9345 add_timer(&tp->timer);
9346}
9347
Matt Carlson4f125f42009-09-01 12:55:02 +00009348static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08009349{
David Howells7d12e782006-10-05 14:55:46 +01009350 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009351 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00009352 char *name;
9353 struct tg3_napi *tnapi = &tp->napi[irq_num];
9354
9355 if (tp->irq_cnt == 1)
9356 name = tp->dev->name;
9357 else {
9358 name = &tnapi->irq_lbl[0];
9359 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
9360 name[IFNAMSIZ-1] = 0;
9361 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009362
Joe Perches63c3a662011-04-26 08:12:10 +00009363 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08009364 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +00009365 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009366 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009367 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009368 } else {
9369 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +00009370 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009371 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009372 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009373 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009374
9375 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009376}
9377
Michael Chan79381092005-04-21 17:13:59 -07009378static int tg3_test_interrupt(struct tg3 *tp)
9379{
Matt Carlson09943a12009-08-28 14:01:57 +00009380 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07009381 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07009382 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009383 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07009384
Michael Chand4bc3922005-05-29 14:59:20 -07009385 if (!netif_running(dev))
9386 return -ENODEV;
9387
Michael Chan79381092005-04-21 17:13:59 -07009388 tg3_disable_ints(tp);
9389
Matt Carlson4f125f42009-09-01 12:55:02 +00009390 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009391
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009392 /*
9393 * Turn off MSI one shot mode. Otherwise this test has no
9394 * observable way to know whether the interrupt was delivered.
9395 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009396 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009397 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
9398 tw32(MSGINT_MODE, val);
9399 }
9400
Matt Carlson4f125f42009-09-01 12:55:02 +00009401 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00009402 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009403 if (err)
9404 return err;
9405
Matt Carlson898a56f2009-08-28 14:02:40 +00009406 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07009407 tg3_enable_ints(tp);
9408
9409 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009410 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07009411
9412 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07009413 u32 int_mbox, misc_host_ctrl;
9414
Matt Carlson898a56f2009-08-28 14:02:40 +00009415 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07009416 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
9417
9418 if ((int_mbox != 0) ||
9419 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
9420 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07009421 break;
Michael Chanb16250e2006-09-27 16:10:14 -07009422 }
9423
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009424 if (tg3_flag(tp, 57765_PLUS) &&
9425 tnapi->hw_status->status_tag != tnapi->last_tag)
9426 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
9427
Michael Chan79381092005-04-21 17:13:59 -07009428 msleep(10);
9429 }
9430
9431 tg3_disable_ints(tp);
9432
Matt Carlson4f125f42009-09-01 12:55:02 +00009433 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009434
Matt Carlson4f125f42009-09-01 12:55:02 +00009435 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009436
9437 if (err)
9438 return err;
9439
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009440 if (intr_ok) {
9441 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +00009442 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009443 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
9444 tw32(MSGINT_MODE, val);
9445 }
Michael Chan79381092005-04-21 17:13:59 -07009446 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009447 }
Michael Chan79381092005-04-21 17:13:59 -07009448
9449 return -EIO;
9450}
9451
9452/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
9453 * successfully restored
9454 */
9455static int tg3_test_msi(struct tg3 *tp)
9456{
Michael Chan79381092005-04-21 17:13:59 -07009457 int err;
9458 u16 pci_cmd;
9459
Joe Perches63c3a662011-04-26 08:12:10 +00009460 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -07009461 return 0;
9462
9463 /* Turn off SERR reporting in case MSI terminates with Master
9464 * Abort.
9465 */
9466 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9467 pci_write_config_word(tp->pdev, PCI_COMMAND,
9468 pci_cmd & ~PCI_COMMAND_SERR);
9469
9470 err = tg3_test_interrupt(tp);
9471
9472 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9473
9474 if (!err)
9475 return 0;
9476
9477 /* other failures */
9478 if (err != -EIO)
9479 return err;
9480
9481 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009482 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
9483 "to INTx mode. Please report this failure to the PCI "
9484 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07009485
Matt Carlson4f125f42009-09-01 12:55:02 +00009486 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00009487
Michael Chan79381092005-04-21 17:13:59 -07009488 pci_disable_msi(tp->pdev);
9489
Joe Perches63c3a662011-04-26 08:12:10 +00009490 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +00009491 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -07009492
Matt Carlson4f125f42009-09-01 12:55:02 +00009493 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009494 if (err)
9495 return err;
9496
9497 /* Need to reset the chip because the MSI cycle may have terminated
9498 * with Master Abort.
9499 */
David S. Millerf47c11e2005-06-24 20:18:35 -07009500 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009501
Michael Chan944d9802005-05-29 14:57:48 -07009502 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009503 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009504
David S. Millerf47c11e2005-06-24 20:18:35 -07009505 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009506
9507 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00009508 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07009509
9510 return err;
9511}
9512
Matt Carlson9e9fd122009-01-19 16:57:45 -08009513static int tg3_request_firmware(struct tg3 *tp)
9514{
9515 const __be32 *fw_data;
9516
9517 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009518 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
9519 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009520 return -ENOENT;
9521 }
9522
9523 fw_data = (void *)tp->fw->data;
9524
9525 /* Firmware blob starts with version numbers, followed by
9526 * start address and _full_ length including BSS sections
9527 * (which must be longer than the actual data, of course
9528 */
9529
9530 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
9531 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009532 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
9533 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009534 release_firmware(tp->fw);
9535 tp->fw = NULL;
9536 return -EINVAL;
9537 }
9538
9539 /* We no longer need firmware; we have it. */
9540 tp->fw_needed = NULL;
9541 return 0;
9542}
9543
Matt Carlson679563f2009-09-01 12:55:46 +00009544static bool tg3_enable_msix(struct tg3 *tp)
9545{
Matt Carlsonc3b50032012-01-17 15:27:23 +00009546 int i, rc;
Matt Carlson679563f2009-09-01 12:55:46 +00009547 struct msix_entry msix_ent[tp->irq_max];
9548
Matt Carlsonc3b50032012-01-17 15:27:23 +00009549 tp->irq_cnt = num_online_cpus();
9550 if (tp->irq_cnt > 1) {
9551 /* We want as many rx rings enabled as there are cpus.
9552 * In multiqueue MSI-X mode, the first MSI-X vector
9553 * only deals with link interrupts, etc, so we add
9554 * one to the number of vectors we are requesting.
9555 */
9556 tp->irq_cnt = min_t(unsigned, tp->irq_cnt + 1, tp->irq_max);
9557 }
Matt Carlson679563f2009-09-01 12:55:46 +00009558
9559 for (i = 0; i < tp->irq_max; i++) {
9560 msix_ent[i].entry = i;
9561 msix_ent[i].vector = 0;
9562 }
9563
9564 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +00009565 if (rc < 0) {
9566 return false;
9567 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +00009568 if (pci_enable_msix(tp->pdev, msix_ent, rc))
9569 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00009570 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
9571 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00009572 tp->irq_cnt = rc;
9573 }
9574
9575 for (i = 0; i < tp->irq_max; i++)
9576 tp->napi[i].irq_vec = msix_ent[i].vector;
9577
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009578 netif_set_real_num_tx_queues(tp->dev, 1);
9579 rc = tp->irq_cnt > 1 ? tp->irq_cnt - 1 : 1;
9580 if (netif_set_real_num_rx_queues(tp->dev, rc)) {
9581 pci_disable_msix(tp->pdev);
9582 return false;
9583 }
Matt Carlsonb92b9042010-11-24 08:31:51 +00009584
9585 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +00009586 tg3_flag_set(tp, ENABLE_RSS);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009587
9588 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9589 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Joe Perches63c3a662011-04-26 08:12:10 +00009590 tg3_flag_set(tp, ENABLE_TSS);
Matt Carlsonb92b9042010-11-24 08:31:51 +00009591 netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1);
9592 }
9593 }
Matt Carlson2430b032010-06-05 17:24:34 +00009594
Matt Carlson679563f2009-09-01 12:55:46 +00009595 return true;
9596}
9597
Matt Carlson07b01732009-08-28 14:01:15 +00009598static void tg3_ints_init(struct tg3 *tp)
9599{
Joe Perches63c3a662011-04-26 08:12:10 +00009600 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
9601 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00009602 /* All MSI supporting chips should support tagged
9603 * status. Assert that this is the case.
9604 */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009605 netdev_warn(tp->dev,
9606 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00009607 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00009608 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009609
Joe Perches63c3a662011-04-26 08:12:10 +00009610 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
9611 tg3_flag_set(tp, USING_MSIX);
9612 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
9613 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +00009614
Joe Perches63c3a662011-04-26 08:12:10 +00009615 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009616 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +00009617 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009618 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +00009619 if (!tg3_flag(tp, 1SHOT_MSI))
9620 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +00009621 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
9622 }
9623defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +00009624 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009625 tp->irq_cnt = 1;
9626 tp->napi[0].irq_vec = tp->pdev->irq;
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009627 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -07009628 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +00009629 }
Matt Carlson07b01732009-08-28 14:01:15 +00009630}
9631
9632static void tg3_ints_fini(struct tg3 *tp)
9633{
Joe Perches63c3a662011-04-26 08:12:10 +00009634 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +00009635 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009636 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +00009637 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009638 tg3_flag_clear(tp, USING_MSI);
9639 tg3_flag_clear(tp, USING_MSIX);
9640 tg3_flag_clear(tp, ENABLE_RSS);
9641 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +00009642}
9643
Linus Torvalds1da177e2005-04-16 15:20:36 -07009644static int tg3_open(struct net_device *dev)
9645{
9646 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00009647 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009648
Matt Carlson9e9fd122009-01-19 16:57:45 -08009649 if (tp->fw_needed) {
9650 err = tg3_request_firmware(tp);
9651 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9652 if (err)
9653 return err;
9654 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00009655 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009656 tg3_flag_clear(tp, TSO_CAPABLE);
9657 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009658 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009659 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009660 }
9661 }
9662
Michael Chanc49a1562006-12-17 17:07:29 -08009663 netif_carrier_off(tp->dev);
9664
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009665 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -07009666 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08009667 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07009668
9669 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08009670
Linus Torvalds1da177e2005-04-16 15:20:36 -07009671 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009672 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009673
David S. Millerf47c11e2005-06-24 20:18:35 -07009674 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009675
Matt Carlson679563f2009-09-01 12:55:46 +00009676 /*
9677 * Setup interrupts first so we know how
9678 * many NAPI resources to allocate
9679 */
9680 tg3_ints_init(tp);
9681
Matt Carlson90415472011-12-16 13:33:23 +00009682 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009683
Linus Torvalds1da177e2005-04-16 15:20:36 -07009684 /* The placement of this call is tied
9685 * to the setup and use of Host TX descriptors.
9686 */
9687 err = tg3_alloc_consistent(tp);
9688 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009689 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009690
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009691 tg3_napi_init(tp);
9692
Matt Carlsonfed97812009-09-01 13:10:19 +00009693 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07009694
Matt Carlson4f125f42009-09-01 12:55:02 +00009695 for (i = 0; i < tp->irq_cnt; i++) {
9696 struct tg3_napi *tnapi = &tp->napi[i];
9697 err = tg3_request_irq(tp, i);
9698 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +00009699 for (i--; i >= 0; i--) {
9700 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +00009701 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +00009702 }
9703 goto err_out2;
Matt Carlson4f125f42009-09-01 12:55:02 +00009704 }
9705 }
Matt Carlson07b01732009-08-28 14:01:15 +00009706
David S. Millerf47c11e2005-06-24 20:18:35 -07009707 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009708
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009709 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009710 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07009711 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009712 tg3_free_rings(tp);
9713 } else {
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009714 if (tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlson55086ad2011-12-14 11:09:59 +00009715 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9716 !tg3_flag(tp, 57765_CLASS))
David S. Millerfac9b832005-05-18 22:46:34 -07009717 tp->timer_offset = HZ;
9718 else
9719 tp->timer_offset = HZ / 10;
9720
9721 BUG_ON(tp->timer_offset > HZ);
9722 tp->timer_counter = tp->timer_multiplier =
9723 (HZ / tp->timer_offset);
9724 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07009725 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009726
9727 init_timer(&tp->timer);
9728 tp->timer.expires = jiffies + tp->timer_offset;
9729 tp->timer.data = (unsigned long) tp;
9730 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009731 }
9732
David S. Millerf47c11e2005-06-24 20:18:35 -07009733 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009734
Matt Carlson07b01732009-08-28 14:01:15 +00009735 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009736 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009737
Joe Perches63c3a662011-04-26 08:12:10 +00009738 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -07009739 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07009740
Michael Chan79381092005-04-21 17:13:59 -07009741 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009742 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07009743 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07009744 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07009745 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009746
Matt Carlson679563f2009-09-01 12:55:46 +00009747 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07009748 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009749
Joe Perches63c3a662011-04-26 08:12:10 +00009750 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009751 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009752
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009753 tw32(PCIE_TRANSACTION_CFG,
9754 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009755 }
Michael Chan79381092005-04-21 17:13:59 -07009756 }
9757
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009758 tg3_phy_start(tp);
9759
David S. Millerf47c11e2005-06-24 20:18:35 -07009760 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009761
Michael Chan79381092005-04-21 17:13:59 -07009762 add_timer(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +00009763 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009764 tg3_enable_ints(tp);
9765
David S. Millerf47c11e2005-06-24 20:18:35 -07009766 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009767
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009768 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009769
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00009770 /*
9771 * Reset loopback feature if it was turned on while the device was down
9772 * make sure that it's installed properly now.
9773 */
9774 if (dev->features & NETIF_F_LOOPBACK)
9775 tg3_set_loopback(dev, dev->features);
9776
Linus Torvalds1da177e2005-04-16 15:20:36 -07009777 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00009778
Matt Carlson679563f2009-09-01 12:55:46 +00009779err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00009780 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9781 struct tg3_napi *tnapi = &tp->napi[i];
9782 free_irq(tnapi->irq_vec, tnapi);
9783 }
Matt Carlson07b01732009-08-28 14:01:15 +00009784
Matt Carlson679563f2009-09-01 12:55:46 +00009785err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00009786 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009787 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009788 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00009789
9790err_out1:
9791 tg3_ints_fini(tp);
Matt Carlsoncd0d7222011-07-13 09:27:33 +00009792 tg3_frob_aux_power(tp, false);
9793 pci_set_power_state(tp->pdev, PCI_D3hot);
Matt Carlson07b01732009-08-28 14:01:15 +00009794 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009795}
9796
Linus Torvalds1da177e2005-04-16 15:20:36 -07009797static int tg3_close(struct net_device *dev)
9798{
Matt Carlson4f125f42009-09-01 12:55:02 +00009799 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009800 struct tg3 *tp = netdev_priv(dev);
9801
Matt Carlsonfed97812009-09-01 13:10:19 +00009802 tg3_napi_disable(tp);
Matt Carlsondb219972011-11-04 09:15:03 +00009803 tg3_reset_task_cancel(tp);
Michael Chan7faa0062006-02-02 17:29:28 -08009804
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009805 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009806
9807 del_timer_sync(&tp->timer);
9808
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009809 tg3_phy_stop(tp);
9810
David S. Millerf47c11e2005-06-24 20:18:35 -07009811 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009812
9813 tg3_disable_ints(tp);
9814
Michael Chan944d9802005-05-29 14:57:48 -07009815 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009816 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009817 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009818
David S. Millerf47c11e2005-06-24 20:18:35 -07009819 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009820
Matt Carlson4f125f42009-09-01 12:55:02 +00009821 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9822 struct tg3_napi *tnapi = &tp->napi[i];
9823 free_irq(tnapi->irq_vec, tnapi);
9824 }
Matt Carlson07b01732009-08-28 14:01:15 +00009825
9826 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009827
Matt Carlson92feeab2011-12-08 14:40:14 +00009828 /* Clear stats across close / open calls */
9829 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
9830 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009831
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009832 tg3_napi_fini(tp);
9833
Linus Torvalds1da177e2005-04-16 15:20:36 -07009834 tg3_free_consistent(tp);
9835
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009836 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -08009837
9838 netif_carrier_off(tp->dev);
9839
Linus Torvalds1da177e2005-04-16 15:20:36 -07009840 return 0;
9841}
9842
Eric Dumazet511d2222010-07-07 20:44:24 +00009843static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -07009844{
9845 return ((u64)val->high << 32) | ((u64)val->low);
9846}
9847
Matt Carlson65ec6982012-02-28 23:33:37 +00009848static u64 tg3_calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009849{
9850 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9851
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009852 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009853 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9854 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009855 u32 val;
9856
Michael Chan569a5df2007-02-13 12:18:15 -08009857 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9858 tg3_writephy(tp, MII_TG3_TEST1,
9859 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009860 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009861 } else
9862 val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009863
9864 tp->phy_crc_errors += val;
9865
9866 return tp->phy_crc_errors;
9867 }
9868
9869 return get_stat64(&hw_stats->rx_fcs_errors);
9870}
9871
9872#define ESTAT_ADD(member) \
9873 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +00009874 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009875
Matt Carlson65ec6982012-02-28 23:33:37 +00009876static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009877{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009878 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9879 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9880
9881 if (!hw_stats)
Matt Carlson65ec6982012-02-28 23:33:37 +00009882 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009883
9884 ESTAT_ADD(rx_octets);
9885 ESTAT_ADD(rx_fragments);
9886 ESTAT_ADD(rx_ucast_packets);
9887 ESTAT_ADD(rx_mcast_packets);
9888 ESTAT_ADD(rx_bcast_packets);
9889 ESTAT_ADD(rx_fcs_errors);
9890 ESTAT_ADD(rx_align_errors);
9891 ESTAT_ADD(rx_xon_pause_rcvd);
9892 ESTAT_ADD(rx_xoff_pause_rcvd);
9893 ESTAT_ADD(rx_mac_ctrl_rcvd);
9894 ESTAT_ADD(rx_xoff_entered);
9895 ESTAT_ADD(rx_frame_too_long_errors);
9896 ESTAT_ADD(rx_jabbers);
9897 ESTAT_ADD(rx_undersize_packets);
9898 ESTAT_ADD(rx_in_length_errors);
9899 ESTAT_ADD(rx_out_length_errors);
9900 ESTAT_ADD(rx_64_or_less_octet_packets);
9901 ESTAT_ADD(rx_65_to_127_octet_packets);
9902 ESTAT_ADD(rx_128_to_255_octet_packets);
9903 ESTAT_ADD(rx_256_to_511_octet_packets);
9904 ESTAT_ADD(rx_512_to_1023_octet_packets);
9905 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9906 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9907 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9908 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9909 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9910
9911 ESTAT_ADD(tx_octets);
9912 ESTAT_ADD(tx_collisions);
9913 ESTAT_ADD(tx_xon_sent);
9914 ESTAT_ADD(tx_xoff_sent);
9915 ESTAT_ADD(tx_flow_control);
9916 ESTAT_ADD(tx_mac_errors);
9917 ESTAT_ADD(tx_single_collisions);
9918 ESTAT_ADD(tx_mult_collisions);
9919 ESTAT_ADD(tx_deferred);
9920 ESTAT_ADD(tx_excessive_collisions);
9921 ESTAT_ADD(tx_late_collisions);
9922 ESTAT_ADD(tx_collide_2times);
9923 ESTAT_ADD(tx_collide_3times);
9924 ESTAT_ADD(tx_collide_4times);
9925 ESTAT_ADD(tx_collide_5times);
9926 ESTAT_ADD(tx_collide_6times);
9927 ESTAT_ADD(tx_collide_7times);
9928 ESTAT_ADD(tx_collide_8times);
9929 ESTAT_ADD(tx_collide_9times);
9930 ESTAT_ADD(tx_collide_10times);
9931 ESTAT_ADD(tx_collide_11times);
9932 ESTAT_ADD(tx_collide_12times);
9933 ESTAT_ADD(tx_collide_13times);
9934 ESTAT_ADD(tx_collide_14times);
9935 ESTAT_ADD(tx_collide_15times);
9936 ESTAT_ADD(tx_ucast_packets);
9937 ESTAT_ADD(tx_mcast_packets);
9938 ESTAT_ADD(tx_bcast_packets);
9939 ESTAT_ADD(tx_carrier_sense_errors);
9940 ESTAT_ADD(tx_discards);
9941 ESTAT_ADD(tx_errors);
9942
9943 ESTAT_ADD(dma_writeq_full);
9944 ESTAT_ADD(dma_write_prioq_full);
9945 ESTAT_ADD(rxbds_empty);
9946 ESTAT_ADD(rx_discards);
9947 ESTAT_ADD(rx_errors);
9948 ESTAT_ADD(rx_threshold_hit);
9949
9950 ESTAT_ADD(dma_readq_full);
9951 ESTAT_ADD(dma_read_prioq_full);
9952 ESTAT_ADD(tx_comp_queue_full);
9953
9954 ESTAT_ADD(ring_set_send_prod_index);
9955 ESTAT_ADD(ring_status_update);
9956 ESTAT_ADD(nic_irqs);
9957 ESTAT_ADD(nic_avoided_irqs);
9958 ESTAT_ADD(nic_tx_threshold_hit);
9959
Matt Carlson4452d092011-05-19 12:12:51 +00009960 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009961}
9962
Matt Carlson65ec6982012-02-28 23:33:37 +00009963static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009964{
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07009968 stats->rx_packets = old_stats->rx_packets +
9969 get_stat64(&hw_stats->rx_ucast_packets) +
9970 get_stat64(&hw_stats->rx_mcast_packets) +
9971 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009972
Linus Torvalds1da177e2005-04-16 15:20:36 -07009973 stats->tx_packets = old_stats->tx_packets +
9974 get_stat64(&hw_stats->tx_ucast_packets) +
9975 get_stat64(&hw_stats->tx_mcast_packets) +
9976 get_stat64(&hw_stats->tx_bcast_packets);
9977
9978 stats->rx_bytes = old_stats->rx_bytes +
9979 get_stat64(&hw_stats->rx_octets);
9980 stats->tx_bytes = old_stats->tx_bytes +
9981 get_stat64(&hw_stats->tx_octets);
9982
9983 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009984 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009985 stats->tx_errors = old_stats->tx_errors +
9986 get_stat64(&hw_stats->tx_errors) +
9987 get_stat64(&hw_stats->tx_mac_errors) +
9988 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9989 get_stat64(&hw_stats->tx_discards);
9990
9991 stats->multicast = old_stats->multicast +
9992 get_stat64(&hw_stats->rx_mcast_packets);
9993 stats->collisions = old_stats->collisions +
9994 get_stat64(&hw_stats->tx_collisions);
9995
9996 stats->rx_length_errors = old_stats->rx_length_errors +
9997 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9998 get_stat64(&hw_stats->rx_undersize_packets);
9999
10000 stats->rx_over_errors = old_stats->rx_over_errors +
10001 get_stat64(&hw_stats->rxbds_empty);
10002 stats->rx_frame_errors = old_stats->rx_frame_errors +
10003 get_stat64(&hw_stats->rx_align_errors);
10004 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
10005 get_stat64(&hw_stats->tx_discards);
10006 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
10007 get_stat64(&hw_stats->tx_carrier_sense_errors);
10008
10009 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000010010 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010011
John W. Linville4f63b872005-09-12 14:43:18 -070010012 stats->rx_missed_errors = old_stats->rx_missed_errors +
10013 get_stat64(&hw_stats->rx_discards);
10014
Eric Dumazetb0057c52010-10-10 19:55:52 +000010015 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000010016 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010017}
10018
10019static inline u32 calc_crc(unsigned char *buf, int len)
10020{
10021 u32 reg;
10022 u32 tmp;
10023 int j, k;
10024
10025 reg = 0xffffffff;
10026
10027 for (j = 0; j < len; j++) {
10028 reg ^= buf[j];
10029
10030 for (k = 0; k < 8; k++) {
10031 tmp = reg & 0x01;
10032
10033 reg >>= 1;
10034
Matt Carlson859a588792010-04-05 10:19:28 +000010035 if (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010036 reg ^= 0xedb88320;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010037 }
10038 }
10039
10040 return ~reg;
10041}
10042
10043static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
10044{
10045 /* accept or reject all multicast frames */
10046 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
10047 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
10048 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
10049 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
10050}
10051
10052static void __tg3_set_rx_mode(struct net_device *dev)
10053{
10054 struct tg3 *tp = netdev_priv(dev);
10055 u32 rx_mode;
10056
10057 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
10058 RX_MODE_KEEP_VLAN_TAG);
10059
Matt Carlsonbf933c82011-01-25 15:58:49 +000010060#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010061 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
10062 * flag clear.
10063 */
Joe Perches63c3a662011-04-26 08:12:10 +000010064 if (!tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010065 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
10066#endif
10067
10068 if (dev->flags & IFF_PROMISC) {
10069 /* Promiscuous mode. */
10070 rx_mode |= RX_MODE_PROMISC;
10071 } else if (dev->flags & IFF_ALLMULTI) {
10072 /* Accept all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010073 tg3_set_multi(tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +000010074 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010075 /* Reject all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010076 tg3_set_multi(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010077 } else {
10078 /* Accept one or more multicast(s). */
Jiri Pirko22bedad32010-04-01 21:22:57 +000010079 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010080 u32 mc_filter[4] = { 0, };
10081 u32 regidx;
10082 u32 bit;
10083 u32 crc;
10084
Jiri Pirko22bedad32010-04-01 21:22:57 +000010085 netdev_for_each_mc_addr(ha, dev) {
10086 crc = calc_crc(ha->addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010087 bit = ~crc & 0x7f;
10088 regidx = (bit & 0x60) >> 5;
10089 bit &= 0x1f;
10090 mc_filter[regidx] |= (1 << bit);
10091 }
10092
10093 tw32(MAC_HASH_REG_0, mc_filter[0]);
10094 tw32(MAC_HASH_REG_1, mc_filter[1]);
10095 tw32(MAC_HASH_REG_2, mc_filter[2]);
10096 tw32(MAC_HASH_REG_3, mc_filter[3]);
10097 }
10098
10099 if (rx_mode != tp->rx_mode) {
10100 tp->rx_mode = rx_mode;
10101 tw32_f(MAC_RX_MODE, rx_mode);
10102 udelay(10);
10103 }
10104}
10105
10106static void tg3_set_rx_mode(struct net_device *dev)
10107{
10108 struct tg3 *tp = netdev_priv(dev);
10109
Michael Chane75f7c92006-03-20 21:33:26 -080010110 if (!netif_running(dev))
10111 return;
10112
David S. Millerf47c11e2005-06-24 20:18:35 -070010113 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010114 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -070010115 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010116}
10117
Linus Torvalds1da177e2005-04-16 15:20:36 -070010118static int tg3_get_regs_len(struct net_device *dev)
10119{
Matt Carlson97bd8e42011-04-13 11:05:04 +000010120 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010121}
10122
10123static void tg3_get_regs(struct net_device *dev,
10124 struct ethtool_regs *regs, void *_p)
10125{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010126 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010127
10128 regs->version = 0;
10129
Matt Carlson97bd8e42011-04-13 11:05:04 +000010130 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010131
Matt Carlson800960682010-08-02 11:26:06 +000010132 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010133 return;
10134
David S. Millerf47c11e2005-06-24 20:18:35 -070010135 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010136
Matt Carlson97bd8e42011-04-13 11:05:04 +000010137 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010138
David S. Millerf47c11e2005-06-24 20:18:35 -070010139 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010140}
10141
10142static int tg3_get_eeprom_len(struct net_device *dev)
10143{
10144 struct tg3 *tp = netdev_priv(dev);
10145
10146 return tp->nvram_size;
10147}
10148
Linus Torvalds1da177e2005-04-16 15:20:36 -070010149static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10150{
10151 struct tg3 *tp = netdev_priv(dev);
10152 int ret;
10153 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080010154 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010155 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010156
Joe Perches63c3a662011-04-26 08:12:10 +000010157 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010158 return -EINVAL;
10159
Matt Carlson800960682010-08-02 11:26:06 +000010160 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010161 return -EAGAIN;
10162
Linus Torvalds1da177e2005-04-16 15:20:36 -070010163 offset = eeprom->offset;
10164 len = eeprom->len;
10165 eeprom->len = 0;
10166
10167 eeprom->magic = TG3_EEPROM_MAGIC;
10168
10169 if (offset & 3) {
10170 /* adjustments to start on required 4 byte boundary */
10171 b_offset = offset & 3;
10172 b_count = 4 - b_offset;
10173 if (b_count > len) {
10174 /* i.e. offset=1 len=2 */
10175 b_count = len;
10176 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000010177 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010178 if (ret)
10179 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000010180 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010181 len -= b_count;
10182 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010183 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010184 }
10185
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010186 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010187 pd = &data[eeprom->len];
10188 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010189 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010190 if (ret) {
10191 eeprom->len += i;
10192 return ret;
10193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010194 memcpy(pd + i, &val, 4);
10195 }
10196 eeprom->len += i;
10197
10198 if (len & 3) {
10199 /* read last bytes not ending on 4 byte boundary */
10200 pd = &data[eeprom->len];
10201 b_count = len & 3;
10202 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010203 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010204 if (ret)
10205 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010206 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010207 eeprom->len += b_count;
10208 }
10209 return 0;
10210}
10211
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010212static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010213
10214static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10215{
10216 struct tg3 *tp = netdev_priv(dev);
10217 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010218 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010219 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010220 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010221
Matt Carlson800960682010-08-02 11:26:06 +000010222 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010223 return -EAGAIN;
10224
Joe Perches63c3a662011-04-26 08:12:10 +000010225 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000010226 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010227 return -EINVAL;
10228
10229 offset = eeprom->offset;
10230 len = eeprom->len;
10231
10232 if ((b_offset = (offset & 3))) {
10233 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010234 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010235 if (ret)
10236 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010237 len += b_offset;
10238 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -070010239 if (len < 4)
10240 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010241 }
10242
10243 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -070010244 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010245 /* adjustments to end on required 4 byte boundary */
10246 odd_len = 1;
10247 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010248 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010249 if (ret)
10250 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010251 }
10252
10253 buf = data;
10254 if (b_offset || odd_len) {
10255 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010256 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010257 return -ENOMEM;
10258 if (b_offset)
10259 memcpy(buf, &start, 4);
10260 if (odd_len)
10261 memcpy(buf+len-4, &end, 4);
10262 memcpy(buf + b_offset, data, eeprom->len);
10263 }
10264
10265 ret = tg3_nvram_write_block(tp, offset, len, buf);
10266
10267 if (buf != data)
10268 kfree(buf);
10269
10270 return ret;
10271}
10272
10273static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10274{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010275 struct tg3 *tp = netdev_priv(dev);
10276
Joe Perches63c3a662011-04-26 08:12:10 +000010277 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010278 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010279 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010280 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010281 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10282 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010283 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010284
Linus Torvalds1da177e2005-04-16 15:20:36 -070010285 cmd->supported = (SUPPORTED_Autoneg);
10286
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010287 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010288 cmd->supported |= (SUPPORTED_1000baseT_Half |
10289 SUPPORTED_1000baseT_Full);
10290
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010291 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010292 cmd->supported |= (SUPPORTED_100baseT_Half |
10293 SUPPORTED_100baseT_Full |
10294 SUPPORTED_10baseT_Half |
10295 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080010296 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070010297 cmd->port = PORT_TP;
10298 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010299 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070010300 cmd->port = PORT_FIBRE;
10301 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010302
Linus Torvalds1da177e2005-04-16 15:20:36 -070010303 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000010304 if (tg3_flag(tp, PAUSE_AUTONEG)) {
10305 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
10306 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10307 cmd->advertising |= ADVERTISED_Pause;
10308 } else {
10309 cmd->advertising |= ADVERTISED_Pause |
10310 ADVERTISED_Asym_Pause;
10311 }
10312 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10313 cmd->advertising |= ADVERTISED_Asym_Pause;
10314 }
10315 }
Matt Carlson859edb22011-12-08 14:40:16 +000010316 if (netif_running(dev) && netif_carrier_ok(dev)) {
David Decotigny70739492011-04-27 18:32:40 +000010317 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010318 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000010319 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000010320 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
10321 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
10322 cmd->eth_tp_mdix = ETH_TP_MDI_X;
10323 else
10324 cmd->eth_tp_mdix = ETH_TP_MDI;
10325 }
Matt Carlson64c22182010-10-14 10:37:44 +000010326 } else {
David Decotigny70739492011-04-27 18:32:40 +000010327 ethtool_cmd_speed_set(cmd, SPEED_INVALID);
Matt Carlson64c22182010-10-14 10:37:44 +000010328 cmd->duplex = DUPLEX_INVALID;
Matt Carlsone348c5e2011-11-21 15:01:20 +000010329 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010330 }
Matt Carlson882e9792009-09-01 13:21:36 +000010331 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010332 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010333 cmd->autoneg = tp->link_config.autoneg;
10334 cmd->maxtxpkt = 0;
10335 cmd->maxrxpkt = 0;
10336 return 0;
10337}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010338
Linus Torvalds1da177e2005-04-16 15:20:36 -070010339static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10340{
10341 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000010342 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010343
Joe Perches63c3a662011-04-26 08:12:10 +000010344 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010345 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010346 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010347 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010348 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10349 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010350 }
10351
Matt Carlson7e5856b2009-02-25 14:23:01 +000010352 if (cmd->autoneg != AUTONEG_ENABLE &&
10353 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070010354 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010355
10356 if (cmd->autoneg == AUTONEG_DISABLE &&
10357 cmd->duplex != DUPLEX_FULL &&
10358 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070010359 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010360
Matt Carlson7e5856b2009-02-25 14:23:01 +000010361 if (cmd->autoneg == AUTONEG_ENABLE) {
10362 u32 mask = ADVERTISED_Autoneg |
10363 ADVERTISED_Pause |
10364 ADVERTISED_Asym_Pause;
10365
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010366 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010367 mask |= ADVERTISED_1000baseT_Half |
10368 ADVERTISED_1000baseT_Full;
10369
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010370 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010371 mask |= ADVERTISED_100baseT_Half |
10372 ADVERTISED_100baseT_Full |
10373 ADVERTISED_10baseT_Half |
10374 ADVERTISED_10baseT_Full |
10375 ADVERTISED_TP;
10376 else
10377 mask |= ADVERTISED_FIBRE;
10378
10379 if (cmd->advertising & ~mask)
10380 return -EINVAL;
10381
10382 mask &= (ADVERTISED_1000baseT_Half |
10383 ADVERTISED_1000baseT_Full |
10384 ADVERTISED_100baseT_Half |
10385 ADVERTISED_100baseT_Full |
10386 ADVERTISED_10baseT_Half |
10387 ADVERTISED_10baseT_Full);
10388
10389 cmd->advertising &= mask;
10390 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010391 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000010392 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010393 return -EINVAL;
10394
10395 if (cmd->duplex != DUPLEX_FULL)
10396 return -EINVAL;
10397 } else {
David Decotigny25db0332011-04-27 18:32:39 +000010398 if (speed != SPEED_100 &&
10399 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010400 return -EINVAL;
10401 }
10402 }
10403
David S. Millerf47c11e2005-06-24 20:18:35 -070010404 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010405
10406 tp->link_config.autoneg = cmd->autoneg;
10407 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070010408 tp->link_config.advertising = (cmd->advertising |
10409 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010410 tp->link_config.speed = SPEED_INVALID;
10411 tp->link_config.duplex = DUPLEX_INVALID;
10412 } else {
10413 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000010414 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010415 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010416 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010417
Michael Chan24fcad62006-12-17 17:06:46 -080010418 tp->link_config.orig_speed = tp->link_config.speed;
10419 tp->link_config.orig_duplex = tp->link_config.duplex;
10420 tp->link_config.orig_autoneg = tp->link_config.autoneg;
10421
Linus Torvalds1da177e2005-04-16 15:20:36 -070010422 if (netif_running(dev))
10423 tg3_setup_phy(tp, 1);
10424
David S. Millerf47c11e2005-06-24 20:18:35 -070010425 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010426
Linus Torvalds1da177e2005-04-16 15:20:36 -070010427 return 0;
10428}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010429
Linus Torvalds1da177e2005-04-16 15:20:36 -070010430static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
10431{
10432 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010433
Rick Jones68aad782011-11-07 13:29:27 +000010434 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
10435 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
10436 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
10437 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010438}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010439
Linus Torvalds1da177e2005-04-16 15:20:36 -070010440static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10441{
10442 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010443
Joe Perches63c3a662011-04-26 08:12:10 +000010444 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070010445 wol->supported = WAKE_MAGIC;
10446 else
10447 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010448 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010449 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010450 wol->wolopts = WAKE_MAGIC;
10451 memset(&wol->sopass, 0, sizeof(wol->sopass));
10452}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010453
Linus Torvalds1da177e2005-04-16 15:20:36 -070010454static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10455{
10456 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070010457 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010458
Linus Torvalds1da177e2005-04-16 15:20:36 -070010459 if (wol->wolopts & ~WAKE_MAGIC)
10460 return -EINVAL;
10461 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010462 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010463 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010464
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010465 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
10466
David S. Millerf47c11e2005-06-24 20:18:35 -070010467 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010468 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000010469 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010470 else
Joe Perches63c3a662011-04-26 08:12:10 +000010471 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070010472 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010473
Linus Torvalds1da177e2005-04-16 15:20:36 -070010474 return 0;
10475}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010476
Linus Torvalds1da177e2005-04-16 15:20:36 -070010477static u32 tg3_get_msglevel(struct net_device *dev)
10478{
10479 struct tg3 *tp = netdev_priv(dev);
10480 return tp->msg_enable;
10481}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010482
Linus Torvalds1da177e2005-04-16 15:20:36 -070010483static void tg3_set_msglevel(struct net_device *dev, u32 value)
10484{
10485 struct tg3 *tp = netdev_priv(dev);
10486 tp->msg_enable = value;
10487}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010488
Linus Torvalds1da177e2005-04-16 15:20:36 -070010489static int tg3_nway_reset(struct net_device *dev)
10490{
10491 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010492 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010493
Linus Torvalds1da177e2005-04-16 15:20:36 -070010494 if (!netif_running(dev))
10495 return -EAGAIN;
10496
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010497 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070010498 return -EINVAL;
10499
Joe Perches63c3a662011-04-26 08:12:10 +000010500 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010501 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010502 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010503 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010504 } else {
10505 u32 bmcr;
10506
10507 spin_lock_bh(&tp->lock);
10508 r = -EINVAL;
10509 tg3_readphy(tp, MII_BMCR, &bmcr);
10510 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
10511 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010512 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010513 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
10514 BMCR_ANENABLE);
10515 r = 0;
10516 }
10517 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010518 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010519
Linus Torvalds1da177e2005-04-16 15:20:36 -070010520 return r;
10521}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010522
Linus Torvalds1da177e2005-04-16 15:20:36 -070010523static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10524{
10525 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010526
Matt Carlson2c49a442010-09-30 10:34:35 +000010527 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000010528 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000010529 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080010530 else
10531 ering->rx_jumbo_max_pending = 0;
10532
10533 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010534
10535 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000010536 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080010537 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10538 else
10539 ering->rx_jumbo_pending = 0;
10540
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010541 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010542}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010543
Linus Torvalds1da177e2005-04-16 15:20:36 -070010544static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10545{
10546 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010547 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010548
Matt Carlson2c49a442010-09-30 10:34:35 +000010549 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
10550 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010551 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10552 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000010553 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010554 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010555 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010556
Michael Chanbbe832c2005-06-24 20:20:04 -070010557 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010558 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010559 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010560 irq_sync = 1;
10561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010562
Michael Chanbbe832c2005-06-24 20:20:04 -070010563 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010564
Linus Torvalds1da177e2005-04-16 15:20:36 -070010565 tp->rx_pending = ering->rx_pending;
10566
Joe Perches63c3a662011-04-26 08:12:10 +000010567 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010568 tp->rx_pending > 63)
10569 tp->rx_pending = 63;
10570 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010571
Matt Carlson6fd45cb2010-09-15 08:59:57 +000010572 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000010573 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010574
10575 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010576 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010577 err = tg3_restart_hw(tp, 1);
10578 if (!err)
10579 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010580 }
10581
David S. Millerf47c11e2005-06-24 20:18:35 -070010582 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010583
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010584 if (irq_sync && !err)
10585 tg3_phy_start(tp);
10586
Michael Chanb9ec6c12006-07-25 16:37:27 -070010587 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010588}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010589
Linus Torvalds1da177e2005-04-16 15:20:36 -070010590static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10591{
10592 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010593
Joe Perches63c3a662011-04-26 08:12:10 +000010594 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080010595
Matt Carlson4a2db502011-12-08 14:40:17 +000010596 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010597 epause->rx_pause = 1;
10598 else
10599 epause->rx_pause = 0;
10600
Matt Carlson4a2db502011-12-08 14:40:17 +000010601 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010602 epause->tx_pause = 1;
10603 else
10604 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010605}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010606
Linus Torvalds1da177e2005-04-16 15:20:36 -070010607static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10608{
10609 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010610 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010611
Joe Perches63c3a662011-04-26 08:12:10 +000010612 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000010613 u32 newadv;
10614 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010615
Matt Carlson27121682010-02-17 15:16:57 +000010616 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010617
Matt Carlson27121682010-02-17 15:16:57 +000010618 if (!(phydev->supported & SUPPORTED_Pause) ||
10619 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000010620 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000010621 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010622
Matt Carlson27121682010-02-17 15:16:57 +000010623 tp->link_config.flowctrl = 0;
10624 if (epause->rx_pause) {
10625 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010626
Matt Carlson27121682010-02-17 15:16:57 +000010627 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010628 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010629 newadv = ADVERTISED_Pause;
10630 } else
10631 newadv = ADVERTISED_Pause |
10632 ADVERTISED_Asym_Pause;
10633 } else if (epause->tx_pause) {
10634 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10635 newadv = ADVERTISED_Asym_Pause;
10636 } else
10637 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010638
Matt Carlson27121682010-02-17 15:16:57 +000010639 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010640 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010641 else
Joe Perches63c3a662011-04-26 08:12:10 +000010642 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010643
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010644 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000010645 u32 oldadv = phydev->advertising &
10646 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10647 if (oldadv != newadv) {
10648 phydev->advertising &=
10649 ~(ADVERTISED_Pause |
10650 ADVERTISED_Asym_Pause);
10651 phydev->advertising |= newadv;
10652 if (phydev->autoneg) {
10653 /*
10654 * Always renegotiate the link to
10655 * inform our link partner of our
10656 * flow control settings, even if the
10657 * flow control is forced. Let
10658 * tg3_adjust_link() do the final
10659 * flow control setup.
10660 */
10661 return phy_start_aneg(phydev);
10662 }
10663 }
10664
10665 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010666 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010667 } else {
10668 tp->link_config.orig_advertising &=
10669 ~(ADVERTISED_Pause |
10670 ADVERTISED_Asym_Pause);
10671 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010672 }
10673 } else {
10674 int irq_sync = 0;
10675
10676 if (netif_running(dev)) {
10677 tg3_netif_stop(tp);
10678 irq_sync = 1;
10679 }
10680
10681 tg3_full_lock(tp, irq_sync);
10682
10683 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010684 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010685 else
Joe Perches63c3a662011-04-26 08:12:10 +000010686 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010687 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010688 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010689 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010690 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010691 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010692 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010693 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010694 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010695
10696 if (netif_running(dev)) {
10697 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10698 err = tg3_restart_hw(tp, 1);
10699 if (!err)
10700 tg3_netif_start(tp);
10701 }
10702
10703 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010705
Michael Chanb9ec6c12006-07-25 16:37:27 -070010706 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010707}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010708
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010709static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010710{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010711 switch (sset) {
10712 case ETH_SS_TEST:
10713 return TG3_NUM_TEST;
10714 case ETH_SS_STATS:
10715 return TG3_NUM_STATS;
10716 default:
10717 return -EOPNOTSUPP;
10718 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010719}
10720
Matt Carlson90415472011-12-16 13:33:23 +000010721static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
10722 u32 *rules __always_unused)
10723{
10724 struct tg3 *tp = netdev_priv(dev);
10725
10726 if (!tg3_flag(tp, SUPPORT_MSIX))
10727 return -EOPNOTSUPP;
10728
10729 switch (info->cmd) {
10730 case ETHTOOL_GRXRINGS:
10731 if (netif_running(tp->dev))
10732 info->data = tp->irq_cnt;
10733 else {
10734 info->data = num_online_cpus();
10735 if (info->data > TG3_IRQ_MAX_VECS_RSS)
10736 info->data = TG3_IRQ_MAX_VECS_RSS;
10737 }
10738
10739 /* The first interrupt vector only
10740 * handles link interrupts.
10741 */
10742 info->data -= 1;
10743 return 0;
10744
10745 default:
10746 return -EOPNOTSUPP;
10747 }
10748}
10749
10750static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
10751{
10752 u32 size = 0;
10753 struct tg3 *tp = netdev_priv(dev);
10754
10755 if (tg3_flag(tp, SUPPORT_MSIX))
10756 size = TG3_RSS_INDIR_TBL_SIZE;
10757
10758 return size;
10759}
10760
10761static int tg3_get_rxfh_indir(struct net_device *dev, u32 *indir)
10762{
10763 struct tg3 *tp = netdev_priv(dev);
10764 int i;
10765
10766 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
10767 indir[i] = tp->rss_ind_tbl[i];
10768
10769 return 0;
10770}
10771
10772static int tg3_set_rxfh_indir(struct net_device *dev, const u32 *indir)
10773{
10774 struct tg3 *tp = netdev_priv(dev);
10775 size_t i;
10776
10777 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
10778 tp->rss_ind_tbl[i] = indir[i];
10779
10780 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
10781 return 0;
10782
10783 /* It is legal to write the indirection
10784 * table while the device is running.
10785 */
10786 tg3_full_lock(tp, 0);
10787 tg3_rss_write_indir_tbl(tp);
10788 tg3_full_unlock(tp);
10789
10790 return 0;
10791}
10792
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010793static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010794{
10795 switch (stringset) {
10796 case ETH_SS_STATS:
10797 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10798 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010799 case ETH_SS_TEST:
10800 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10801 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010802 default:
10803 WARN_ON(1); /* we need a WARN() */
10804 break;
10805 }
10806}
10807
stephen hemminger81b87092011-04-04 08:43:50 +000010808static int tg3_set_phys_id(struct net_device *dev,
10809 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070010810{
10811 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070010812
10813 if (!netif_running(tp->dev))
10814 return -EAGAIN;
10815
stephen hemminger81b87092011-04-04 08:43:50 +000010816 switch (state) {
10817 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000010818 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070010819
stephen hemminger81b87092011-04-04 08:43:50 +000010820 case ETHTOOL_ID_ON:
10821 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10822 LED_CTRL_1000MBPS_ON |
10823 LED_CTRL_100MBPS_ON |
10824 LED_CTRL_10MBPS_ON |
10825 LED_CTRL_TRAFFIC_OVERRIDE |
10826 LED_CTRL_TRAFFIC_BLINK |
10827 LED_CTRL_TRAFFIC_LED);
10828 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010829
stephen hemminger81b87092011-04-04 08:43:50 +000010830 case ETHTOOL_ID_OFF:
10831 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10832 LED_CTRL_TRAFFIC_OVERRIDE);
10833 break;
Michael Chan4009a932005-09-05 17:52:54 -070010834
stephen hemminger81b87092011-04-04 08:43:50 +000010835 case ETHTOOL_ID_INACTIVE:
10836 tw32(MAC_LED_CTRL, tp->led_ctrl);
10837 break;
Michael Chan4009a932005-09-05 17:52:54 -070010838 }
stephen hemminger81b87092011-04-04 08:43:50 +000010839
Michael Chan4009a932005-09-05 17:52:54 -070010840 return 0;
10841}
10842
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010843static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010844 struct ethtool_stats *estats, u64 *tmp_stats)
10845{
10846 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000010847
10848 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010849}
10850
Matt Carlson535a4902011-07-20 10:20:56 +000010851static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000010852{
10853 int i;
10854 __be32 *buf;
10855 u32 offset = 0, len = 0;
10856 u32 magic, val;
10857
Joe Perches63c3a662011-04-26 08:12:10 +000010858 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000010859 return NULL;
10860
10861 if (magic == TG3_EEPROM_MAGIC) {
10862 for (offset = TG3_NVM_DIR_START;
10863 offset < TG3_NVM_DIR_END;
10864 offset += TG3_NVM_DIRENT_SIZE) {
10865 if (tg3_nvram_read(tp, offset, &val))
10866 return NULL;
10867
10868 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
10869 TG3_NVM_DIRTYPE_EXTVPD)
10870 break;
10871 }
10872
10873 if (offset != TG3_NVM_DIR_END) {
10874 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
10875 if (tg3_nvram_read(tp, offset + 4, &offset))
10876 return NULL;
10877
10878 offset = tg3_nvram_logical_addr(tp, offset);
10879 }
10880 }
10881
10882 if (!offset || !len) {
10883 offset = TG3_NVM_VPD_OFF;
10884 len = TG3_NVM_VPD_LEN;
10885 }
10886
10887 buf = kmalloc(len, GFP_KERNEL);
10888 if (buf == NULL)
10889 return NULL;
10890
10891 if (magic == TG3_EEPROM_MAGIC) {
10892 for (i = 0; i < len; i += 4) {
10893 /* The data is in little-endian format in NVRAM.
10894 * Use the big-endian read routines to preserve
10895 * the byte order as it exists in NVRAM.
10896 */
10897 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
10898 goto error;
10899 }
10900 } else {
10901 u8 *ptr;
10902 ssize_t cnt;
10903 unsigned int pos = 0;
10904
10905 ptr = (u8 *)&buf[0];
10906 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
10907 cnt = pci_read_vpd(tp->pdev, pos,
10908 len - pos, ptr);
10909 if (cnt == -ETIMEDOUT || cnt == -EINTR)
10910 cnt = 0;
10911 else if (cnt < 0)
10912 goto error;
10913 }
10914 if (pos != len)
10915 goto error;
10916 }
10917
Matt Carlson535a4902011-07-20 10:20:56 +000010918 *vpdlen = len;
10919
Matt Carlsonc3e94502011-04-13 11:05:08 +000010920 return buf;
10921
10922error:
10923 kfree(buf);
10924 return NULL;
10925}
10926
Michael Chan566f86a2005-05-29 14:56:58 -070010927#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010928#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10929#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10930#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000010931#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
10932#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000010933#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070010934#define NVRAM_SELFBOOT_HW_SIZE 0x20
10935#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010936
10937static int tg3_test_nvram(struct tg3 *tp)
10938{
Matt Carlson535a4902011-07-20 10:20:56 +000010939 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010940 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010941 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010942
Joe Perches63c3a662011-04-26 08:12:10 +000010943 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010944 return 0;
10945
Matt Carlsone4f34112009-02-25 14:25:00 +000010946 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010947 return -EIO;
10948
Michael Chan1b277772006-03-20 22:27:48 -080010949 if (magic == TG3_EEPROM_MAGIC)
10950 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010951 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010952 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10953 TG3_EEPROM_SB_FORMAT_1) {
10954 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10955 case TG3_EEPROM_SB_REVISION_0:
10956 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10957 break;
10958 case TG3_EEPROM_SB_REVISION_2:
10959 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10960 break;
10961 case TG3_EEPROM_SB_REVISION_3:
10962 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10963 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000010964 case TG3_EEPROM_SB_REVISION_4:
10965 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
10966 break;
10967 case TG3_EEPROM_SB_REVISION_5:
10968 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
10969 break;
10970 case TG3_EEPROM_SB_REVISION_6:
10971 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
10972 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080010973 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000010974 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080010975 }
10976 } else
Michael Chan1b277772006-03-20 22:27:48 -080010977 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010978 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10979 size = NVRAM_SELFBOOT_HW_SIZE;
10980 else
Michael Chan1b277772006-03-20 22:27:48 -080010981 return -EIO;
10982
10983 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010984 if (buf == NULL)
10985 return -ENOMEM;
10986
Michael Chan1b277772006-03-20 22:27:48 -080010987 err = -EIO;
10988 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010989 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10990 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010991 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010992 }
Michael Chan1b277772006-03-20 22:27:48 -080010993 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010994 goto out;
10995
Michael Chan1b277772006-03-20 22:27:48 -080010996 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010997 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010998 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010999 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080011000 u8 *buf8 = (u8 *) buf, csum8 = 0;
11001
Al Virob9fc7dc2007-12-17 22:59:57 -080011002 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080011003 TG3_EEPROM_SB_REVISION_2) {
11004 /* For rev 2, the csum doesn't include the MBA. */
11005 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
11006 csum8 += buf8[i];
11007 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
11008 csum8 += buf8[i];
11009 } else {
11010 for (i = 0; i < size; i++)
11011 csum8 += buf8[i];
11012 }
Michael Chan1b277772006-03-20 22:27:48 -080011013
Adrian Bunkad96b482006-04-05 22:21:04 -070011014 if (csum8 == 0) {
11015 err = 0;
11016 goto out;
11017 }
11018
11019 err = -EIO;
11020 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080011021 }
Michael Chan566f86a2005-05-29 14:56:58 -070011022
Al Virob9fc7dc2007-12-17 22:59:57 -080011023 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070011024 TG3_EEPROM_MAGIC_HW) {
11025 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000011026 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070011027 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070011028
11029 /* Separate the parity bits and the data bytes. */
11030 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
11031 if ((i == 0) || (i == 8)) {
11032 int l;
11033 u8 msk;
11034
11035 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
11036 parity[k++] = buf8[i] & msk;
11037 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000011038 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070011039 int l;
11040 u8 msk;
11041
11042 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
11043 parity[k++] = buf8[i] & msk;
11044 i++;
11045
11046 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
11047 parity[k++] = buf8[i] & msk;
11048 i++;
11049 }
11050 data[j++] = buf8[i];
11051 }
11052
11053 err = -EIO;
11054 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
11055 u8 hw8 = hweight8(data[i]);
11056
11057 if ((hw8 & 0x1) && parity[i])
11058 goto out;
11059 else if (!(hw8 & 0x1) && !parity[i])
11060 goto out;
11061 }
11062 err = 0;
11063 goto out;
11064 }
11065
Matt Carlson01c3a392011-03-09 16:58:20 +000011066 err = -EIO;
11067
Michael Chan566f86a2005-05-29 14:56:58 -070011068 /* Bootstrap checksum at offset 0x10 */
11069 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000011070 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070011071 goto out;
11072
11073 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
11074 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000011075 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000011076 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070011077
Matt Carlsonc3e94502011-04-13 11:05:08 +000011078 kfree(buf);
11079
Matt Carlson535a4902011-07-20 10:20:56 +000011080 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000011081 if (!buf)
11082 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000011083
Matt Carlson535a4902011-07-20 10:20:56 +000011084 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000011085 if (i > 0) {
11086 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
11087 if (j < 0)
11088 goto out;
11089
Matt Carlson535a4902011-07-20 10:20:56 +000011090 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000011091 goto out;
11092
11093 i += PCI_VPD_LRDT_TAG_SIZE;
11094 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
11095 PCI_VPD_RO_KEYWORD_CHKSUM);
11096 if (j > 0) {
11097 u8 csum8 = 0;
11098
11099 j += PCI_VPD_INFO_FLD_HDR_SIZE;
11100
11101 for (i = 0; i <= j; i++)
11102 csum8 += ((u8 *)buf)[i];
11103
11104 if (csum8)
11105 goto out;
11106 }
11107 }
11108
Michael Chan566f86a2005-05-29 14:56:58 -070011109 err = 0;
11110
11111out:
11112 kfree(buf);
11113 return err;
11114}
11115
Michael Chanca430072005-05-29 14:57:23 -070011116#define TG3_SERDES_TIMEOUT_SEC 2
11117#define TG3_COPPER_TIMEOUT_SEC 6
11118
11119static int tg3_test_link(struct tg3 *tp)
11120{
11121 int i, max;
11122
11123 if (!netif_running(tp->dev))
11124 return -ENODEV;
11125
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011126 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070011127 max = TG3_SERDES_TIMEOUT_SEC;
11128 else
11129 max = TG3_COPPER_TIMEOUT_SEC;
11130
11131 for (i = 0; i < max; i++) {
11132 if (netif_carrier_ok(tp->dev))
11133 return 0;
11134
11135 if (msleep_interruptible(1000))
11136 break;
11137 }
11138
11139 return -EIO;
11140}
11141
Michael Chana71116d2005-05-29 14:58:11 -070011142/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080011143static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070011144{
Michael Chanb16250e2006-09-27 16:10:14 -070011145 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070011146 u32 offset, read_mask, write_mask, val, save_val, read_val;
11147 static struct {
11148 u16 offset;
11149 u16 flags;
11150#define TG3_FL_5705 0x1
11151#define TG3_FL_NOT_5705 0x2
11152#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070011153#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070011154 u32 read_mask;
11155 u32 write_mask;
11156 } reg_tbl[] = {
11157 /* MAC Control Registers */
11158 { MAC_MODE, TG3_FL_NOT_5705,
11159 0x00000000, 0x00ef6f8c },
11160 { MAC_MODE, TG3_FL_5705,
11161 0x00000000, 0x01ef6b8c },
11162 { MAC_STATUS, TG3_FL_NOT_5705,
11163 0x03800107, 0x00000000 },
11164 { MAC_STATUS, TG3_FL_5705,
11165 0x03800100, 0x00000000 },
11166 { MAC_ADDR_0_HIGH, 0x0000,
11167 0x00000000, 0x0000ffff },
11168 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011169 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070011170 { MAC_RX_MTU_SIZE, 0x0000,
11171 0x00000000, 0x0000ffff },
11172 { MAC_TX_MODE, 0x0000,
11173 0x00000000, 0x00000070 },
11174 { MAC_TX_LENGTHS, 0x0000,
11175 0x00000000, 0x00003fff },
11176 { MAC_RX_MODE, TG3_FL_NOT_5705,
11177 0x00000000, 0x000007fc },
11178 { MAC_RX_MODE, TG3_FL_5705,
11179 0x00000000, 0x000007dc },
11180 { MAC_HASH_REG_0, 0x0000,
11181 0x00000000, 0xffffffff },
11182 { MAC_HASH_REG_1, 0x0000,
11183 0x00000000, 0xffffffff },
11184 { MAC_HASH_REG_2, 0x0000,
11185 0x00000000, 0xffffffff },
11186 { MAC_HASH_REG_3, 0x0000,
11187 0x00000000, 0xffffffff },
11188
11189 /* Receive Data and Receive BD Initiator Control Registers. */
11190 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
11191 0x00000000, 0xffffffff },
11192 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
11193 0x00000000, 0xffffffff },
11194 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
11195 0x00000000, 0x00000003 },
11196 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
11197 0x00000000, 0xffffffff },
11198 { RCVDBDI_STD_BD+0, 0x0000,
11199 0x00000000, 0xffffffff },
11200 { RCVDBDI_STD_BD+4, 0x0000,
11201 0x00000000, 0xffffffff },
11202 { RCVDBDI_STD_BD+8, 0x0000,
11203 0x00000000, 0xffff0002 },
11204 { RCVDBDI_STD_BD+0xc, 0x0000,
11205 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011206
Michael Chana71116d2005-05-29 14:58:11 -070011207 /* Receive BD Initiator Control Registers. */
11208 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
11209 0x00000000, 0xffffffff },
11210 { RCVBDI_STD_THRESH, TG3_FL_5705,
11211 0x00000000, 0x000003ff },
11212 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
11213 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011214
Michael Chana71116d2005-05-29 14:58:11 -070011215 /* Host Coalescing Control Registers. */
11216 { HOSTCC_MODE, TG3_FL_NOT_5705,
11217 0x00000000, 0x00000004 },
11218 { HOSTCC_MODE, TG3_FL_5705,
11219 0x00000000, 0x000000f6 },
11220 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
11221 0x00000000, 0xffffffff },
11222 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
11223 0x00000000, 0x000003ff },
11224 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
11225 0x00000000, 0xffffffff },
11226 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
11227 0x00000000, 0x000003ff },
11228 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
11229 0x00000000, 0xffffffff },
11230 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11231 0x00000000, 0x000000ff },
11232 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
11233 0x00000000, 0xffffffff },
11234 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11235 0x00000000, 0x000000ff },
11236 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
11237 0x00000000, 0xffffffff },
11238 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
11239 0x00000000, 0xffffffff },
11240 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11241 0x00000000, 0xffffffff },
11242 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11243 0x00000000, 0x000000ff },
11244 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11245 0x00000000, 0xffffffff },
11246 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11247 0x00000000, 0x000000ff },
11248 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
11249 0x00000000, 0xffffffff },
11250 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
11251 0x00000000, 0xffffffff },
11252 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
11253 0x00000000, 0xffffffff },
11254 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
11255 0x00000000, 0xffffffff },
11256 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
11257 0x00000000, 0xffffffff },
11258 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
11259 0xffffffff, 0x00000000 },
11260 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
11261 0xffffffff, 0x00000000 },
11262
11263 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070011264 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011265 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070011266 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011267 0x00000000, 0x007fffff },
11268 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
11269 0x00000000, 0x0000003f },
11270 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
11271 0x00000000, 0x000001ff },
11272 { BUFMGR_MB_HIGH_WATER, 0x0000,
11273 0x00000000, 0x000001ff },
11274 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
11275 0xffffffff, 0x00000000 },
11276 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
11277 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011278
Michael Chana71116d2005-05-29 14:58:11 -070011279 /* Mailbox Registers */
11280 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
11281 0x00000000, 0x000001ff },
11282 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
11283 0x00000000, 0x000001ff },
11284 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
11285 0x00000000, 0x000007ff },
11286 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
11287 0x00000000, 0x000001ff },
11288
11289 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
11290 };
11291
Michael Chanb16250e2006-09-27 16:10:14 -070011292 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011293 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070011294 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000011295 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070011296 is_5750 = 1;
11297 }
Michael Chana71116d2005-05-29 14:58:11 -070011298
11299 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
11300 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
11301 continue;
11302
11303 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
11304 continue;
11305
Joe Perches63c3a662011-04-26 08:12:10 +000011306 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070011307 (reg_tbl[i].flags & TG3_FL_NOT_5788))
11308 continue;
11309
Michael Chanb16250e2006-09-27 16:10:14 -070011310 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
11311 continue;
11312
Michael Chana71116d2005-05-29 14:58:11 -070011313 offset = (u32) reg_tbl[i].offset;
11314 read_mask = reg_tbl[i].read_mask;
11315 write_mask = reg_tbl[i].write_mask;
11316
11317 /* Save the original register content */
11318 save_val = tr32(offset);
11319
11320 /* Determine the read-only value. */
11321 read_val = save_val & read_mask;
11322
11323 /* Write zero to the register, then make sure the read-only bits
11324 * are not changed and the read/write bits are all zeros.
11325 */
11326 tw32(offset, 0);
11327
11328 val = tr32(offset);
11329
11330 /* Test the read-only and read/write bits. */
11331 if (((val & read_mask) != read_val) || (val & write_mask))
11332 goto out;
11333
11334 /* Write ones to all the bits defined by RdMask and WrMask, then
11335 * make sure the read-only bits are not changed and the
11336 * read/write bits are all ones.
11337 */
11338 tw32(offset, read_mask | write_mask);
11339
11340 val = tr32(offset);
11341
11342 /* Test the read-only bits. */
11343 if ((val & read_mask) != read_val)
11344 goto out;
11345
11346 /* Test the read/write bits. */
11347 if ((val & write_mask) != write_mask)
11348 goto out;
11349
11350 tw32(offset, save_val);
11351 }
11352
11353 return 0;
11354
11355out:
Michael Chan9f88f292006-12-07 00:22:54 -080011356 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000011357 netdev_err(tp->dev,
11358 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070011359 tw32(offset, save_val);
11360 return -EIO;
11361}
11362
Michael Chan7942e1d2005-05-29 14:58:36 -070011363static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
11364{
Arjan van de Venf71e1302006-03-03 21:33:57 -050011365 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070011366 int i;
11367 u32 j;
11368
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020011369 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070011370 for (j = 0; j < len; j += 4) {
11371 u32 val;
11372
11373 tg3_write_mem(tp, offset + j, test_pattern[i]);
11374 tg3_read_mem(tp, offset + j, &val);
11375 if (val != test_pattern[i])
11376 return -EIO;
11377 }
11378 }
11379 return 0;
11380}
11381
11382static int tg3_test_memory(struct tg3 *tp)
11383{
11384 static struct mem_entry {
11385 u32 offset;
11386 u32 len;
11387 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080011388 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070011389 { 0x00002000, 0x1c000},
11390 { 0xffffffff, 0x00000}
11391 }, mem_tbl_5705[] = {
11392 { 0x00000100, 0x0000c},
11393 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070011394 { 0x00004000, 0x00800},
11395 { 0x00006000, 0x01000},
11396 { 0x00008000, 0x02000},
11397 { 0x00010000, 0x0e000},
11398 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080011399 }, mem_tbl_5755[] = {
11400 { 0x00000200, 0x00008},
11401 { 0x00004000, 0x00800},
11402 { 0x00006000, 0x00800},
11403 { 0x00008000, 0x02000},
11404 { 0x00010000, 0x0c000},
11405 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070011406 }, mem_tbl_5906[] = {
11407 { 0x00000200, 0x00008},
11408 { 0x00004000, 0x00400},
11409 { 0x00006000, 0x00400},
11410 { 0x00008000, 0x01000},
11411 { 0x00010000, 0x01000},
11412 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011413 }, mem_tbl_5717[] = {
11414 { 0x00000200, 0x00008},
11415 { 0x00010000, 0x0a000},
11416 { 0x00020000, 0x13c00},
11417 { 0xffffffff, 0x00000}
11418 }, mem_tbl_57765[] = {
11419 { 0x00000200, 0x00008},
11420 { 0x00004000, 0x00800},
11421 { 0x00006000, 0x09800},
11422 { 0x00010000, 0x0a000},
11423 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070011424 };
11425 struct mem_entry *mem_tbl;
11426 int err = 0;
11427 int i;
11428
Joe Perches63c3a662011-04-26 08:12:10 +000011429 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011430 mem_tbl = mem_tbl_5717;
Matt Carlson55086ad2011-12-14 11:09:59 +000011431 else if (tg3_flag(tp, 57765_CLASS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011432 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000011433 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011434 mem_tbl = mem_tbl_5755;
11435 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11436 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000011437 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011438 mem_tbl = mem_tbl_5705;
11439 else
Michael Chan7942e1d2005-05-29 14:58:36 -070011440 mem_tbl = mem_tbl_570x;
11441
11442 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000011443 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
11444 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070011445 break;
11446 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011447
Michael Chan7942e1d2005-05-29 14:58:36 -070011448 return err;
11449}
11450
Matt Carlsonbb158d62011-04-25 12:42:47 +000011451#define TG3_TSO_MSS 500
11452
11453#define TG3_TSO_IP_HDR_LEN 20
11454#define TG3_TSO_TCP_HDR_LEN 20
11455#define TG3_TSO_TCP_OPT_LEN 12
11456
11457static const u8 tg3_tso_header[] = {
114580x08, 0x00,
114590x45, 0x00, 0x00, 0x00,
114600x00, 0x00, 0x40, 0x00,
114610x40, 0x06, 0x00, 0x00,
114620x0a, 0x00, 0x00, 0x01,
114630x0a, 0x00, 0x00, 0x02,
114640x0d, 0x00, 0xe0, 0x00,
114650x00, 0x00, 0x01, 0x00,
114660x00, 0x00, 0x02, 0x00,
114670x80, 0x10, 0x10, 0x00,
114680x14, 0x09, 0x00, 0x00,
114690x01, 0x01, 0x08, 0x0a,
114700x11, 0x11, 0x11, 0x11,
114710x11, 0x11, 0x11, 0x11,
11472};
Michael Chan9f40dea2005-09-05 17:53:06 -070011473
Matt Carlson28a45952011-08-19 13:58:22 +000011474static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070011475{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011476 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011477 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000011478 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000011479 struct sk_buff *skb;
11480 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070011481 dma_addr_t map;
11482 int num_pkts, tx_len, rx_len, i, err;
11483 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000011484 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000011485 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070011486
Matt Carlsonc8873402010-02-12 14:47:11 +000011487 tnapi = &tp->napi[0];
11488 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011489 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000011490 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000011491 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000011492 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000011493 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011494 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011495 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000011496
Michael Chanc76949a2005-05-29 14:58:59 -070011497 err = -EIO;
11498
Matt Carlson4852a862011-04-13 11:05:07 +000011499 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070011500 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070011501 if (!skb)
11502 return -ENOMEM;
11503
Michael Chanc76949a2005-05-29 14:58:59 -070011504 tx_data = skb_put(skb, tx_len);
11505 memcpy(tx_data, tp->dev->dev_addr, 6);
11506 memset(tx_data + 6, 0x0, 8);
11507
Matt Carlson4852a862011-04-13 11:05:07 +000011508 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070011509
Matt Carlson28a45952011-08-19 13:58:22 +000011510 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011511 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
11512
11513 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
11514 TG3_TSO_TCP_OPT_LEN;
11515
11516 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
11517 sizeof(tg3_tso_header));
11518 mss = TG3_TSO_MSS;
11519
11520 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
11521 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
11522
11523 /* Set the total length field in the IP header */
11524 iph->tot_len = htons((u16)(mss + hdr_len));
11525
11526 base_flags = (TXD_FLAG_CPU_PRE_DMA |
11527 TXD_FLAG_CPU_POST_DMA);
11528
Joe Perches63c3a662011-04-26 08:12:10 +000011529 if (tg3_flag(tp, HW_TSO_1) ||
11530 tg3_flag(tp, HW_TSO_2) ||
11531 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011532 struct tcphdr *th;
11533 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
11534 th = (struct tcphdr *)&tx_data[val];
11535 th->check = 0;
11536 } else
11537 base_flags |= TXD_FLAG_TCPUDP_CSUM;
11538
Joe Perches63c3a662011-04-26 08:12:10 +000011539 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011540 mss |= (hdr_len & 0xc) << 12;
11541 if (hdr_len & 0x10)
11542 base_flags |= 0x00000010;
11543 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000011544 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011545 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000011546 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000011547 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
11548 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
11549 } else {
11550 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
11551 }
11552
11553 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
11554 } else {
11555 num_pkts = 1;
11556 data_off = ETH_HLEN;
11557 }
11558
11559 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070011560 tx_data[i] = (u8) (i & 0xff);
11561
Alexander Duyckf4188d82009-12-02 16:48:38 +000011562 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
11563 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000011564 dev_kfree_skb(skb);
11565 return -EIO;
11566 }
Michael Chanc76949a2005-05-29 14:58:59 -070011567
Matt Carlson0d681b22011-07-27 14:20:49 +000011568 val = tnapi->tx_prod;
11569 tnapi->tx_buffers[val].skb = skb;
11570 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
11571
Michael Chanc76949a2005-05-29 14:58:59 -070011572 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011573 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011574
11575 udelay(10);
11576
Matt Carlson898a56f2009-08-28 14:02:40 +000011577 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070011578
Matt Carlson84b67b22011-07-27 14:20:52 +000011579 budget = tg3_tx_avail(tnapi);
11580 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000011581 base_flags | TXD_FLAG_END, mss, 0)) {
11582 tnapi->tx_buffers[val].skb = NULL;
11583 dev_kfree_skb(skb);
11584 return -EIO;
11585 }
Michael Chanc76949a2005-05-29 14:58:59 -070011586
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011587 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070011588
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011589 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
11590 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070011591
11592 udelay(10);
11593
Matt Carlson303fc922009-11-02 14:27:34 +000011594 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
11595 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070011596 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011597 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011598
11599 udelay(10);
11600
Matt Carlson898a56f2009-08-28 14:02:40 +000011601 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
11602 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011603 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070011604 (rx_idx == (rx_start_idx + num_pkts)))
11605 break;
11606 }
11607
Matt Carlsonba1142e2011-11-04 09:15:00 +000011608 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070011609 dev_kfree_skb(skb);
11610
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011611 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070011612 goto out;
11613
11614 if (rx_idx != rx_start_idx + num_pkts)
11615 goto out;
11616
Matt Carlsonbb158d62011-04-25 12:42:47 +000011617 val = data_off;
11618 while (rx_idx != rx_start_idx) {
11619 desc = &rnapi->rx_rcb[rx_start_idx++];
11620 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
11621 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070011622
Matt Carlsonbb158d62011-04-25 12:42:47 +000011623 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
11624 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000011625 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070011626
Matt Carlsonbb158d62011-04-25 12:42:47 +000011627 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
11628 - ETH_FCS_LEN;
11629
Matt Carlson28a45952011-08-19 13:58:22 +000011630 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011631 if (rx_len != tx_len)
11632 goto out;
11633
11634 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
11635 if (opaque_key != RXD_OPAQUE_RING_STD)
11636 goto out;
11637 } else {
11638 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
11639 goto out;
11640 }
11641 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
11642 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000011643 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011644 goto out;
11645 }
11646
11647 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000011648 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011649 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
11650 mapping);
11651 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000011652 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011653 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
11654 mapping);
11655 } else
Matt Carlson4852a862011-04-13 11:05:07 +000011656 goto out;
11657
Matt Carlsonbb158d62011-04-25 12:42:47 +000011658 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
11659 PCI_DMA_FROMDEVICE);
11660
Eric Dumazet9205fd92011-11-18 06:47:01 +000011661 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000011662 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000011663 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011664 goto out;
11665 }
Matt Carlson4852a862011-04-13 11:05:07 +000011666 }
11667
Michael Chanc76949a2005-05-29 14:58:59 -070011668 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011669
Eric Dumazet9205fd92011-11-18 06:47:01 +000011670 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070011671out:
11672 return err;
11673}
11674
Matt Carlson00c266b2011-04-25 12:42:46 +000011675#define TG3_STD_LOOPBACK_FAILED 1
11676#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000011677#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000011678#define TG3_LOOPBACK_FAILED \
11679 (TG3_STD_LOOPBACK_FAILED | \
11680 TG3_JMB_LOOPBACK_FAILED | \
11681 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000011682
Matt Carlson941ec902011-08-19 13:58:23 +000011683static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070011684{
Matt Carlson28a45952011-08-19 13:58:22 +000011685 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000011686 u32 eee_cap;
Michael Chan9f40dea2005-09-05 17:53:06 -070011687
Matt Carlsonab789042011-01-25 15:58:54 +000011688 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
11689 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11690
Matt Carlson28a45952011-08-19 13:58:22 +000011691 if (!netif_running(tp->dev)) {
11692 data[0] = TG3_LOOPBACK_FAILED;
11693 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000011694 if (do_extlpbk)
11695 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000011696 goto done;
11697 }
11698
Michael Chanb9ec6c12006-07-25 16:37:27 -070011699 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000011700 if (err) {
Matt Carlson28a45952011-08-19 13:58:22 +000011701 data[0] = TG3_LOOPBACK_FAILED;
11702 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000011703 if (do_extlpbk)
11704 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000011705 goto done;
11706 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011707
Joe Perches63c3a662011-04-26 08:12:10 +000011708 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000011709 int i;
11710
11711 /* Reroute all rx packets to the 1st queue */
11712 for (i = MAC_RSS_INDIR_TBL_0;
11713 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
11714 tw32(i, 0x0);
11715 }
11716
Matt Carlson6e01b202011-08-19 13:58:20 +000011717 /* HW errata - mac loopback fails in some cases on 5780.
11718 * Normal traffic and PHY loopback are not affected by
11719 * errata. Also, the MAC loopback test is deprecated for
11720 * all newer ASIC revisions.
11721 */
11722 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
11723 !tg3_flag(tp, CPMU_PRESENT)) {
11724 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070011725
Matt Carlson28a45952011-08-19 13:58:22 +000011726 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
11727 data[0] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000011728
11729 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000011730 tg3_run_loopback(tp, 9000 + ETH_HLEN, false))
11731 data[0] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000011732
11733 tg3_mac_loopback(tp, false);
11734 }
Matt Carlson4852a862011-04-13 11:05:07 +000011735
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011736 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011737 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011738 int i;
11739
Matt Carlson941ec902011-08-19 13:58:23 +000011740 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011741
11742 /* Wait for link */
11743 for (i = 0; i < 100; i++) {
11744 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
11745 break;
11746 mdelay(1);
11747 }
11748
Matt Carlson28a45952011-08-19 13:58:22 +000011749 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
11750 data[1] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000011751 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000011752 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
11753 data[1] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000011754 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000011755 tg3_run_loopback(tp, 9000 + ETH_HLEN, false))
11756 data[1] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070011757
Matt Carlson941ec902011-08-19 13:58:23 +000011758 if (do_extlpbk) {
11759 tg3_phy_lpbk_set(tp, 0, true);
11760
11761 /* All link indications report up, but the hardware
11762 * isn't really ready for about 20 msec. Double it
11763 * to be sure.
11764 */
11765 mdelay(40);
11766
11767 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
11768 data[2] |= TG3_STD_LOOPBACK_FAILED;
11769 if (tg3_flag(tp, TSO_CAPABLE) &&
11770 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
11771 data[2] |= TG3_TSO_LOOPBACK_FAILED;
11772 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
11773 tg3_run_loopback(tp, 9000 + ETH_HLEN, false))
11774 data[2] |= TG3_JMB_LOOPBACK_FAILED;
11775 }
11776
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011777 /* Re-enable gphy autopowerdown. */
11778 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
11779 tg3_phy_toggle_apd(tp, true);
11780 }
Matt Carlson6833c042008-11-21 17:18:59 -080011781
Matt Carlson941ec902011-08-19 13:58:23 +000011782 err = (data[0] | data[1] | data[2]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000011783
Matt Carlsonab789042011-01-25 15:58:54 +000011784done:
11785 tp->phy_flags |= eee_cap;
11786
Michael Chan9f40dea2005-09-05 17:53:06 -070011787 return err;
11788}
11789
Michael Chan4cafd3f2005-05-29 14:56:34 -070011790static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
11791 u64 *data)
11792{
Michael Chan566f86a2005-05-29 14:56:58 -070011793 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000011794 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070011795
Matt Carlsonbed98292011-07-13 09:27:29 +000011796 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
11797 tg3_power_up(tp)) {
11798 etest->flags |= ETH_TEST_FL_FAILED;
11799 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
11800 return;
11801 }
Michael Chanbc1c7562006-03-20 17:48:03 -080011802
Michael Chan566f86a2005-05-29 14:56:58 -070011803 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11804
11805 if (tg3_test_nvram(tp) != 0) {
11806 etest->flags |= ETH_TEST_FL_FAILED;
11807 data[0] = 1;
11808 }
Matt Carlson941ec902011-08-19 13:58:23 +000011809 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070011810 etest->flags |= ETH_TEST_FL_FAILED;
11811 data[1] = 1;
11812 }
Michael Chana71116d2005-05-29 14:58:11 -070011813 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011814 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011815
Michael Chanbbe832c2005-06-24 20:20:04 -070011816 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011817 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011818 tg3_netif_stop(tp);
11819 irq_sync = 1;
11820 }
11821
11822 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011823
11824 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011825 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011826 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000011827 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070011828 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011829 if (!err)
11830 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011831
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011832 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad2006-03-20 22:27:35 -080011833 tg3_phy_reset(tp);
11834
Michael Chana71116d2005-05-29 14:58:11 -070011835 if (tg3_test_registers(tp) != 0) {
11836 etest->flags |= ETH_TEST_FL_FAILED;
11837 data[2] = 1;
11838 }
Matt Carlson28a45952011-08-19 13:58:22 +000011839
Michael Chan7942e1d2005-05-29 14:58:36 -070011840 if (tg3_test_memory(tp) != 0) {
11841 etest->flags |= ETH_TEST_FL_FAILED;
11842 data[3] = 1;
11843 }
Matt Carlson28a45952011-08-19 13:58:22 +000011844
Matt Carlson941ec902011-08-19 13:58:23 +000011845 if (doextlpbk)
11846 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
11847
11848 if (tg3_test_loopback(tp, &data[4], doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070011849 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011850
David S. Millerf47c11e2005-06-24 20:18:35 -070011851 tg3_full_unlock(tp);
11852
Michael Chand4bc3922005-05-29 14:59:20 -070011853 if (tg3_test_interrupt(tp) != 0) {
11854 etest->flags |= ETH_TEST_FL_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000011855 data[7] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070011856 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011857
11858 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011859
Michael Chana71116d2005-05-29 14:58:11 -070011860 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11861 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011862 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011863 err2 = tg3_restart_hw(tp, 1);
11864 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011865 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011866 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011867
11868 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011869
11870 if (irq_sync && !err2)
11871 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011872 }
Matt Carlson800960682010-08-02 11:26:06 +000011873 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011874 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011875
Michael Chan4cafd3f2005-05-29 14:56:34 -070011876}
11877
Linus Torvalds1da177e2005-04-16 15:20:36 -070011878static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11879{
11880 struct mii_ioctl_data *data = if_mii(ifr);
11881 struct tg3 *tp = netdev_priv(dev);
11882 int err;
11883
Joe Perches63c3a662011-04-26 08:12:10 +000011884 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011885 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011886 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011887 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011888 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000011889 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011890 }
11891
Matt Carlson33f401a2010-04-05 10:19:27 +000011892 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011893 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011894 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011895
11896 /* fallthru */
11897 case SIOCGMIIREG: {
11898 u32 mii_regval;
11899
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011900 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011901 break; /* We have no PHY */
11902
Matt Carlson34eea5a2011-04-20 07:57:38 +000011903 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011904 return -EAGAIN;
11905
David S. Millerf47c11e2005-06-24 20:18:35 -070011906 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011907 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011908 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011909
11910 data->val_out = mii_regval;
11911
11912 return err;
11913 }
11914
11915 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011916 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011917 break; /* We have no PHY */
11918
Matt Carlson34eea5a2011-04-20 07:57:38 +000011919 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011920 return -EAGAIN;
11921
David S. Millerf47c11e2005-06-24 20:18:35 -070011922 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011923 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011924 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011925
11926 return err;
11927
11928 default:
11929 /* do nothing */
11930 break;
11931 }
11932 return -EOPNOTSUPP;
11933}
11934
David S. Miller15f98502005-05-18 22:49:26 -070011935static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11936{
11937 struct tg3 *tp = netdev_priv(dev);
11938
11939 memcpy(ec, &tp->coal, sizeof(*ec));
11940 return 0;
11941}
11942
Michael Chand244c892005-07-05 14:42:33 -070011943static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11944{
11945 struct tg3 *tp = netdev_priv(dev);
11946 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11947 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11948
Joe Perches63c3a662011-04-26 08:12:10 +000011949 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070011950 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11951 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11952 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11953 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11954 }
11955
11956 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11957 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11958 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11959 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11960 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11961 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11962 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11963 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11964 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11965 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11966 return -EINVAL;
11967
11968 /* No rx interrupts will be generated if both are zero */
11969 if ((ec->rx_coalesce_usecs == 0) &&
11970 (ec->rx_max_coalesced_frames == 0))
11971 return -EINVAL;
11972
11973 /* No tx interrupts will be generated if both are zero */
11974 if ((ec->tx_coalesce_usecs == 0) &&
11975 (ec->tx_max_coalesced_frames == 0))
11976 return -EINVAL;
11977
11978 /* Only copy relevant parameters, ignore all others. */
11979 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11980 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11981 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11982 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11983 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11984 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11985 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11986 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11987 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11988
11989 if (netif_running(dev)) {
11990 tg3_full_lock(tp, 0);
11991 __tg3_set_coalesce(tp, &tp->coal);
11992 tg3_full_unlock(tp);
11993 }
11994 return 0;
11995}
11996
Jeff Garzik7282d492006-09-13 14:30:00 -040011997static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011998 .get_settings = tg3_get_settings,
11999 .set_settings = tg3_set_settings,
12000 .get_drvinfo = tg3_get_drvinfo,
12001 .get_regs_len = tg3_get_regs_len,
12002 .get_regs = tg3_get_regs,
12003 .get_wol = tg3_get_wol,
12004 .set_wol = tg3_set_wol,
12005 .get_msglevel = tg3_get_msglevel,
12006 .set_msglevel = tg3_set_msglevel,
12007 .nway_reset = tg3_nway_reset,
12008 .get_link = ethtool_op_get_link,
12009 .get_eeprom_len = tg3_get_eeprom_len,
12010 .get_eeprom = tg3_get_eeprom,
12011 .set_eeprom = tg3_set_eeprom,
12012 .get_ringparam = tg3_get_ringparam,
12013 .set_ringparam = tg3_set_ringparam,
12014 .get_pauseparam = tg3_get_pauseparam,
12015 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070012016 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012017 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000012018 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012019 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070012020 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070012021 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070012022 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000012023 .get_rxnfc = tg3_get_rxnfc,
12024 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
12025 .get_rxfh_indir = tg3_get_rxfh_indir,
12026 .set_rxfh_indir = tg3_set_rxfh_indir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012027};
12028
12029static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
12030{
Michael Chan1b277772006-03-20 22:27:48 -080012031 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012032
12033 tp->nvram_size = EEPROM_CHIP_SIZE;
12034
Matt Carlsone4f34112009-02-25 14:25:00 +000012035 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012036 return;
12037
Michael Chanb16250e2006-09-27 16:10:14 -070012038 if ((magic != TG3_EEPROM_MAGIC) &&
12039 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
12040 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012041 return;
12042
12043 /*
12044 * Size the chip by reading offsets at increasing powers of two.
12045 * When we encounter our validation signature, we know the addressing
12046 * has wrapped around, and thus have our chip size.
12047 */
Michael Chan1b277772006-03-20 22:27:48 -080012048 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012049
12050 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000012051 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012052 return;
12053
Michael Chan18201802006-03-20 22:29:15 -080012054 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012055 break;
12056
12057 cursize <<= 1;
12058 }
12059
12060 tp->nvram_size = cursize;
12061}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012062
Linus Torvalds1da177e2005-04-16 15:20:36 -070012063static void __devinit tg3_get_nvram_size(struct tg3 *tp)
12064{
12065 u32 val;
12066
Joe Perches63c3a662011-04-26 08:12:10 +000012067 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012068 return;
12069
12070 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080012071 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080012072 tg3_get_eeprom_size(tp);
12073 return;
12074 }
12075
Matt Carlson6d348f22009-02-25 14:25:52 +000012076 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012077 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000012078 /* This is confusing. We want to operate on the
12079 * 16-bit value at offset 0xf2. The tg3_nvram_read()
12080 * call will read from NVRAM and byteswap the data
12081 * according to the byteswapping settings for all
12082 * other register accesses. This ensures the data we
12083 * want will always reside in the lower 16-bits.
12084 * However, the data in NVRAM is in LE format, which
12085 * means the data from the NVRAM read will always be
12086 * opposite the endianness of the CPU. The 16-bit
12087 * byteswap then brings the data to CPU endianness.
12088 */
12089 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012090 return;
12091 }
12092 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070012093 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012094}
12095
12096static void __devinit tg3_get_nvram_info(struct tg3 *tp)
12097{
12098 u32 nvcfg1;
12099
12100 nvcfg1 = tr32(NVRAM_CFG1);
12101 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000012102 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012103 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012104 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12105 tw32(NVRAM_CFG1, nvcfg1);
12106 }
12107
Matt Carlson6ff6f812011-05-19 12:12:54 +000012108 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000012109 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012110 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012111 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
12112 tp->nvram_jedecnum = JEDEC_ATMEL;
12113 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012114 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012115 break;
12116 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
12117 tp->nvram_jedecnum = JEDEC_ATMEL;
12118 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
12119 break;
12120 case FLASH_VENDOR_ATMEL_EEPROM:
12121 tp->nvram_jedecnum = JEDEC_ATMEL;
12122 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012123 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012124 break;
12125 case FLASH_VENDOR_ST:
12126 tp->nvram_jedecnum = JEDEC_ST;
12127 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012128 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012129 break;
12130 case FLASH_VENDOR_SAIFUN:
12131 tp->nvram_jedecnum = JEDEC_SAIFUN;
12132 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
12133 break;
12134 case FLASH_VENDOR_SST_SMALL:
12135 case FLASH_VENDOR_SST_LARGE:
12136 tp->nvram_jedecnum = JEDEC_SST;
12137 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
12138 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012139 }
Matt Carlson8590a602009-08-28 12:29:16 +000012140 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012141 tp->nvram_jedecnum = JEDEC_ATMEL;
12142 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012143 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012144 }
12145}
12146
Matt Carlsona1b950d2009-09-01 13:20:17 +000012147static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
12148{
12149 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
12150 case FLASH_5752PAGE_SIZE_256:
12151 tp->nvram_pagesize = 256;
12152 break;
12153 case FLASH_5752PAGE_SIZE_512:
12154 tp->nvram_pagesize = 512;
12155 break;
12156 case FLASH_5752PAGE_SIZE_1K:
12157 tp->nvram_pagesize = 1024;
12158 break;
12159 case FLASH_5752PAGE_SIZE_2K:
12160 tp->nvram_pagesize = 2048;
12161 break;
12162 case FLASH_5752PAGE_SIZE_4K:
12163 tp->nvram_pagesize = 4096;
12164 break;
12165 case FLASH_5752PAGE_SIZE_264:
12166 tp->nvram_pagesize = 264;
12167 break;
12168 case FLASH_5752PAGE_SIZE_528:
12169 tp->nvram_pagesize = 528;
12170 break;
12171 }
12172}
12173
Michael Chan361b4ac2005-04-21 17:11:21 -070012174static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
12175{
12176 u32 nvcfg1;
12177
12178 nvcfg1 = tr32(NVRAM_CFG1);
12179
Michael Chane6af3012005-04-21 17:12:05 -070012180 /* NVRAM protection for TPM */
12181 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000012182 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070012183
Michael Chan361b4ac2005-04-21 17:11:21 -070012184 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012185 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
12186 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
12187 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012188 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012189 break;
12190 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12191 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012192 tg3_flag_set(tp, NVRAM_BUFFERED);
12193 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012194 break;
12195 case FLASH_5752VENDOR_ST_M45PE10:
12196 case FLASH_5752VENDOR_ST_M45PE20:
12197 case FLASH_5752VENDOR_ST_M45PE40:
12198 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012199 tg3_flag_set(tp, NVRAM_BUFFERED);
12200 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012201 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070012202 }
12203
Joe Perches63c3a662011-04-26 08:12:10 +000012204 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000012205 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000012206 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070012207 /* For eeprom, set pagesize to maximum eeprom size */
12208 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12209
12210 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12211 tw32(NVRAM_CFG1, nvcfg1);
12212 }
12213}
12214
Michael Chand3c7b882006-03-23 01:28:25 -080012215static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
12216{
Matt Carlson989a9d22007-05-05 11:51:05 -070012217 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080012218
12219 nvcfg1 = tr32(NVRAM_CFG1);
12220
12221 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070012222 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012223 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070012224 protect = 1;
12225 }
Michael Chand3c7b882006-03-23 01:28:25 -080012226
Matt Carlson989a9d22007-05-05 11:51:05 -070012227 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12228 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012229 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12230 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12231 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12232 case FLASH_5755VENDOR_ATMEL_FLASH_5:
12233 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012234 tg3_flag_set(tp, NVRAM_BUFFERED);
12235 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012236 tp->nvram_pagesize = 264;
12237 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
12238 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
12239 tp->nvram_size = (protect ? 0x3e200 :
12240 TG3_NVRAM_SIZE_512KB);
12241 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
12242 tp->nvram_size = (protect ? 0x1f200 :
12243 TG3_NVRAM_SIZE_256KB);
12244 else
12245 tp->nvram_size = (protect ? 0x1f200 :
12246 TG3_NVRAM_SIZE_128KB);
12247 break;
12248 case FLASH_5752VENDOR_ST_M45PE10:
12249 case FLASH_5752VENDOR_ST_M45PE20:
12250 case FLASH_5752VENDOR_ST_M45PE40:
12251 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012252 tg3_flag_set(tp, NVRAM_BUFFERED);
12253 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012254 tp->nvram_pagesize = 256;
12255 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
12256 tp->nvram_size = (protect ?
12257 TG3_NVRAM_SIZE_64KB :
12258 TG3_NVRAM_SIZE_128KB);
12259 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
12260 tp->nvram_size = (protect ?
12261 TG3_NVRAM_SIZE_64KB :
12262 TG3_NVRAM_SIZE_256KB);
12263 else
12264 tp->nvram_size = (protect ?
12265 TG3_NVRAM_SIZE_128KB :
12266 TG3_NVRAM_SIZE_512KB);
12267 break;
Michael Chand3c7b882006-03-23 01:28:25 -080012268 }
12269}
12270
Michael Chan1b277772006-03-20 22:27:48 -080012271static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
12272{
12273 u32 nvcfg1;
12274
12275 nvcfg1 = tr32(NVRAM_CFG1);
12276
12277 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012278 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
12279 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12280 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
12281 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12282 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012283 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012284 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080012285
Matt Carlson8590a602009-08-28 12:29:16 +000012286 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12287 tw32(NVRAM_CFG1, nvcfg1);
12288 break;
12289 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12290 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12291 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12292 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12293 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012294 tg3_flag_set(tp, NVRAM_BUFFERED);
12295 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012296 tp->nvram_pagesize = 264;
12297 break;
12298 case FLASH_5752VENDOR_ST_M45PE10:
12299 case FLASH_5752VENDOR_ST_M45PE20:
12300 case FLASH_5752VENDOR_ST_M45PE40:
12301 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012302 tg3_flag_set(tp, NVRAM_BUFFERED);
12303 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012304 tp->nvram_pagesize = 256;
12305 break;
Michael Chan1b277772006-03-20 22:27:48 -080012306 }
12307}
12308
Matt Carlson6b91fa02007-10-10 18:01:09 -070012309static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
12310{
12311 u32 nvcfg1, protect = 0;
12312
12313 nvcfg1 = tr32(NVRAM_CFG1);
12314
12315 /* NVRAM protection for TPM */
12316 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012317 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012318 protect = 1;
12319 }
12320
12321 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12322 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012323 case FLASH_5761VENDOR_ATMEL_ADB021D:
12324 case FLASH_5761VENDOR_ATMEL_ADB041D:
12325 case FLASH_5761VENDOR_ATMEL_ADB081D:
12326 case FLASH_5761VENDOR_ATMEL_ADB161D:
12327 case FLASH_5761VENDOR_ATMEL_MDB021D:
12328 case FLASH_5761VENDOR_ATMEL_MDB041D:
12329 case FLASH_5761VENDOR_ATMEL_MDB081D:
12330 case FLASH_5761VENDOR_ATMEL_MDB161D:
12331 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012332 tg3_flag_set(tp, NVRAM_BUFFERED);
12333 tg3_flag_set(tp, FLASH);
12334 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000012335 tp->nvram_pagesize = 256;
12336 break;
12337 case FLASH_5761VENDOR_ST_A_M45PE20:
12338 case FLASH_5761VENDOR_ST_A_M45PE40:
12339 case FLASH_5761VENDOR_ST_A_M45PE80:
12340 case FLASH_5761VENDOR_ST_A_M45PE16:
12341 case FLASH_5761VENDOR_ST_M_M45PE20:
12342 case FLASH_5761VENDOR_ST_M_M45PE40:
12343 case FLASH_5761VENDOR_ST_M_M45PE80:
12344 case FLASH_5761VENDOR_ST_M_M45PE16:
12345 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012346 tg3_flag_set(tp, NVRAM_BUFFERED);
12347 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012348 tp->nvram_pagesize = 256;
12349 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012350 }
12351
12352 if (protect) {
12353 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
12354 } else {
12355 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012356 case FLASH_5761VENDOR_ATMEL_ADB161D:
12357 case FLASH_5761VENDOR_ATMEL_MDB161D:
12358 case FLASH_5761VENDOR_ST_A_M45PE16:
12359 case FLASH_5761VENDOR_ST_M_M45PE16:
12360 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
12361 break;
12362 case FLASH_5761VENDOR_ATMEL_ADB081D:
12363 case FLASH_5761VENDOR_ATMEL_MDB081D:
12364 case FLASH_5761VENDOR_ST_A_M45PE80:
12365 case FLASH_5761VENDOR_ST_M_M45PE80:
12366 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12367 break;
12368 case FLASH_5761VENDOR_ATMEL_ADB041D:
12369 case FLASH_5761VENDOR_ATMEL_MDB041D:
12370 case FLASH_5761VENDOR_ST_A_M45PE40:
12371 case FLASH_5761VENDOR_ST_M_M45PE40:
12372 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12373 break;
12374 case FLASH_5761VENDOR_ATMEL_ADB021D:
12375 case FLASH_5761VENDOR_ATMEL_MDB021D:
12376 case FLASH_5761VENDOR_ST_A_M45PE20:
12377 case FLASH_5761VENDOR_ST_M_M45PE20:
12378 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12379 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012380 }
12381 }
12382}
12383
Michael Chanb5d37722006-09-27 16:06:21 -070012384static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
12385{
12386 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012387 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070012388 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12389}
12390
Matt Carlson321d32a2008-11-21 17:22:19 -080012391static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
12392{
12393 u32 nvcfg1;
12394
12395 nvcfg1 = tr32(NVRAM_CFG1);
12396
12397 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12398 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12399 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12400 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012401 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080012402 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12403
12404 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12405 tw32(NVRAM_CFG1, nvcfg1);
12406 return;
12407 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12408 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12409 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12410 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12411 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12412 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12413 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12414 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012415 tg3_flag_set(tp, NVRAM_BUFFERED);
12416 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012417
12418 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12419 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12420 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12421 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12422 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12423 break;
12424 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12425 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12426 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12427 break;
12428 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12429 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12430 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12431 break;
12432 }
12433 break;
12434 case FLASH_5752VENDOR_ST_M45PE10:
12435 case FLASH_5752VENDOR_ST_M45PE20:
12436 case FLASH_5752VENDOR_ST_M45PE40:
12437 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012438 tg3_flag_set(tp, NVRAM_BUFFERED);
12439 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012440
12441 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12442 case FLASH_5752VENDOR_ST_M45PE10:
12443 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12444 break;
12445 case FLASH_5752VENDOR_ST_M45PE20:
12446 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12447 break;
12448 case FLASH_5752VENDOR_ST_M45PE40:
12449 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12450 break;
12451 }
12452 break;
12453 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012454 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080012455 return;
12456 }
12457
Matt Carlsona1b950d2009-09-01 13:20:17 +000012458 tg3_nvram_get_pagesize(tp, nvcfg1);
12459 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012460 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012461}
12462
12463
12464static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
12465{
12466 u32 nvcfg1;
12467
12468 nvcfg1 = tr32(NVRAM_CFG1);
12469
12470 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12471 case FLASH_5717VENDOR_ATMEL_EEPROM:
12472 case FLASH_5717VENDOR_MICRO_EEPROM:
12473 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012474 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012475 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12476
12477 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12478 tw32(NVRAM_CFG1, nvcfg1);
12479 return;
12480 case FLASH_5717VENDOR_ATMEL_MDB011D:
12481 case FLASH_5717VENDOR_ATMEL_ADB011B:
12482 case FLASH_5717VENDOR_ATMEL_ADB011D:
12483 case FLASH_5717VENDOR_ATMEL_MDB021D:
12484 case FLASH_5717VENDOR_ATMEL_ADB021B:
12485 case FLASH_5717VENDOR_ATMEL_ADB021D:
12486 case FLASH_5717VENDOR_ATMEL_45USPT:
12487 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012488 tg3_flag_set(tp, NVRAM_BUFFERED);
12489 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012490
12491 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12492 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012493 /* Detect size with tg3_nvram_get_size() */
12494 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012495 case FLASH_5717VENDOR_ATMEL_ADB021B:
12496 case FLASH_5717VENDOR_ATMEL_ADB021D:
12497 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12498 break;
12499 default:
12500 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12501 break;
12502 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012503 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012504 case FLASH_5717VENDOR_ST_M_M25PE10:
12505 case FLASH_5717VENDOR_ST_A_M25PE10:
12506 case FLASH_5717VENDOR_ST_M_M45PE10:
12507 case FLASH_5717VENDOR_ST_A_M45PE10:
12508 case FLASH_5717VENDOR_ST_M_M25PE20:
12509 case FLASH_5717VENDOR_ST_A_M25PE20:
12510 case FLASH_5717VENDOR_ST_M_M45PE20:
12511 case FLASH_5717VENDOR_ST_A_M45PE20:
12512 case FLASH_5717VENDOR_ST_25USPT:
12513 case FLASH_5717VENDOR_ST_45USPT:
12514 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012515 tg3_flag_set(tp, NVRAM_BUFFERED);
12516 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012517
12518 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12519 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012520 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012521 /* Detect size with tg3_nvram_get_size() */
12522 break;
12523 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012524 case FLASH_5717VENDOR_ST_A_M45PE20:
12525 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12526 break;
12527 default:
12528 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12529 break;
12530 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012531 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012532 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012533 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012534 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080012535 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000012536
12537 tg3_nvram_get_pagesize(tp, nvcfg1);
12538 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012539 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080012540}
12541
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012542static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
12543{
12544 u32 nvcfg1, nvmpinstrp;
12545
12546 nvcfg1 = tr32(NVRAM_CFG1);
12547 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
12548
12549 switch (nvmpinstrp) {
12550 case FLASH_5720_EEPROM_HD:
12551 case FLASH_5720_EEPROM_LD:
12552 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012553 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012554
12555 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12556 tw32(NVRAM_CFG1, nvcfg1);
12557 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
12558 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12559 else
12560 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
12561 return;
12562 case FLASH_5720VENDOR_M_ATMEL_DB011D:
12563 case FLASH_5720VENDOR_A_ATMEL_DB011B:
12564 case FLASH_5720VENDOR_A_ATMEL_DB011D:
12565 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12566 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12567 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12568 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12569 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12570 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12571 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12572 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12573 case FLASH_5720VENDOR_ATMEL_45USPT:
12574 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012575 tg3_flag_set(tp, NVRAM_BUFFERED);
12576 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012577
12578 switch (nvmpinstrp) {
12579 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12580 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12581 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12582 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12583 break;
12584 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12585 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12586 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12587 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12588 break;
12589 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12590 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12591 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12592 break;
12593 default:
12594 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12595 break;
12596 }
12597 break;
12598 case FLASH_5720VENDOR_M_ST_M25PE10:
12599 case FLASH_5720VENDOR_M_ST_M45PE10:
12600 case FLASH_5720VENDOR_A_ST_M25PE10:
12601 case FLASH_5720VENDOR_A_ST_M45PE10:
12602 case FLASH_5720VENDOR_M_ST_M25PE20:
12603 case FLASH_5720VENDOR_M_ST_M45PE20:
12604 case FLASH_5720VENDOR_A_ST_M25PE20:
12605 case FLASH_5720VENDOR_A_ST_M45PE20:
12606 case FLASH_5720VENDOR_M_ST_M25PE40:
12607 case FLASH_5720VENDOR_M_ST_M45PE40:
12608 case FLASH_5720VENDOR_A_ST_M25PE40:
12609 case FLASH_5720VENDOR_A_ST_M45PE40:
12610 case FLASH_5720VENDOR_M_ST_M25PE80:
12611 case FLASH_5720VENDOR_M_ST_M45PE80:
12612 case FLASH_5720VENDOR_A_ST_M25PE80:
12613 case FLASH_5720VENDOR_A_ST_M45PE80:
12614 case FLASH_5720VENDOR_ST_25USPT:
12615 case FLASH_5720VENDOR_ST_45USPT:
12616 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012617 tg3_flag_set(tp, NVRAM_BUFFERED);
12618 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012619
12620 switch (nvmpinstrp) {
12621 case FLASH_5720VENDOR_M_ST_M25PE20:
12622 case FLASH_5720VENDOR_M_ST_M45PE20:
12623 case FLASH_5720VENDOR_A_ST_M25PE20:
12624 case FLASH_5720VENDOR_A_ST_M45PE20:
12625 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12626 break;
12627 case FLASH_5720VENDOR_M_ST_M25PE40:
12628 case FLASH_5720VENDOR_M_ST_M45PE40:
12629 case FLASH_5720VENDOR_A_ST_M25PE40:
12630 case FLASH_5720VENDOR_A_ST_M45PE40:
12631 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12632 break;
12633 case FLASH_5720VENDOR_M_ST_M25PE80:
12634 case FLASH_5720VENDOR_M_ST_M45PE80:
12635 case FLASH_5720VENDOR_A_ST_M25PE80:
12636 case FLASH_5720VENDOR_A_ST_M45PE80:
12637 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12638 break;
12639 default:
12640 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12641 break;
12642 }
12643 break;
12644 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012645 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012646 return;
12647 }
12648
12649 tg3_nvram_get_pagesize(tp, nvcfg1);
12650 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012651 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012652}
12653
Linus Torvalds1da177e2005-04-16 15:20:36 -070012654/* Chips other than 5700/5701 use the NVRAM for fetching info. */
12655static void __devinit tg3_nvram_init(struct tg3 *tp)
12656{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012657 tw32_f(GRC_EEPROM_ADDR,
12658 (EEPROM_ADDR_FSM_RESET |
12659 (EEPROM_DEFAULT_CLOCK_PERIOD <<
12660 EEPROM_ADDR_CLKPERD_SHIFT)));
12661
Michael Chan9d57f012006-12-07 00:23:25 -080012662 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012663
12664 /* Enable seeprom accesses. */
12665 tw32_f(GRC_LOCAL_CTRL,
12666 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
12667 udelay(100);
12668
12669 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12670 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000012671 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012672
Michael Chanec41c7d2006-01-17 02:40:55 -080012673 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000012674 netdev_warn(tp->dev,
12675 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000012676 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080012677 return;
12678 }
Michael Chane6af3012005-04-21 17:12:05 -070012679 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012680
Matt Carlson989a9d22007-05-05 11:51:05 -070012681 tp->nvram_size = 0;
12682
Michael Chan361b4ac2005-04-21 17:11:21 -070012683 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
12684 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080012685 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
12686 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070012687 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012688 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
12689 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080012690 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012691 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
12692 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070012693 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12694 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000012695 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000012696 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012697 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012698 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
12699 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000012700 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012701 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
12702 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070012703 else
12704 tg3_get_nvram_info(tp);
12705
Matt Carlson989a9d22007-05-05 11:51:05 -070012706 if (tp->nvram_size == 0)
12707 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012708
Michael Chane6af3012005-04-21 17:12:05 -070012709 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080012710 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012711
12712 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012713 tg3_flag_clear(tp, NVRAM);
12714 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012715
12716 tg3_get_eeprom_size(tp);
12717 }
12718}
12719
Linus Torvalds1da177e2005-04-16 15:20:36 -070012720static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
12721 u32 offset, u32 len, u8 *buf)
12722{
12723 int i, j, rc = 0;
12724 u32 val;
12725
12726 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012727 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012728 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012729
12730 addr = offset + i;
12731
12732 memcpy(&data, buf + i, 4);
12733
Matt Carlson62cedd12009-04-20 14:52:29 -070012734 /*
12735 * The SEEPROM interface expects the data to always be opposite
12736 * the native endian format. We accomplish this by reversing
12737 * all the operations that would have been performed on the
12738 * data from a call to tg3_nvram_read_be32().
12739 */
12740 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012741
12742 val = tr32(GRC_EEPROM_ADDR);
12743 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
12744
12745 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
12746 EEPROM_ADDR_READ);
12747 tw32(GRC_EEPROM_ADDR, val |
12748 (0 << EEPROM_ADDR_DEVID_SHIFT) |
12749 (addr & EEPROM_ADDR_ADDR_MASK) |
12750 EEPROM_ADDR_START |
12751 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012752
Michael Chan9d57f012006-12-07 00:23:25 -080012753 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012754 val = tr32(GRC_EEPROM_ADDR);
12755
12756 if (val & EEPROM_ADDR_COMPLETE)
12757 break;
Michael Chan9d57f012006-12-07 00:23:25 -080012758 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012759 }
12760 if (!(val & EEPROM_ADDR_COMPLETE)) {
12761 rc = -EBUSY;
12762 break;
12763 }
12764 }
12765
12766 return rc;
12767}
12768
12769/* offset and length are dword aligned */
12770static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
12771 u8 *buf)
12772{
12773 int ret = 0;
12774 u32 pagesize = tp->nvram_pagesize;
12775 u32 pagemask = pagesize - 1;
12776 u32 nvram_cmd;
12777 u8 *tmp;
12778
12779 tmp = kmalloc(pagesize, GFP_KERNEL);
12780 if (tmp == NULL)
12781 return -ENOMEM;
12782
12783 while (len) {
12784 int j;
Michael Chane6af3012005-04-21 17:12:05 -070012785 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012786
12787 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012788
Linus Torvalds1da177e2005-04-16 15:20:36 -070012789 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012790 ret = tg3_nvram_read_be32(tp, phy_addr + j,
12791 (__be32 *) (tmp + j));
12792 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012793 break;
12794 }
12795 if (ret)
12796 break;
12797
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012798 page_off = offset & pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012799 size = pagesize;
12800 if (len < size)
12801 size = len;
12802
12803 len -= size;
12804
12805 memcpy(tmp + page_off, buf, size);
12806
12807 offset = offset + (pagesize - page_off);
12808
Michael Chane6af3012005-04-21 17:12:05 -070012809 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012810
12811 /*
12812 * Before we can erase the flash page, we need
12813 * to issue a special "write enable" command.
12814 */
12815 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12816
12817 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12818 break;
12819
12820 /* Erase the target page */
12821 tw32(NVRAM_ADDR, phy_addr);
12822
12823 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
12824 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
12825
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012826 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012827 break;
12828
12829 /* Issue another write enable to start the write. */
12830 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12831
12832 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12833 break;
12834
12835 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012836 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012837
Al Virob9fc7dc2007-12-17 22:59:57 -080012838 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000012839
Al Virob9fc7dc2007-12-17 22:59:57 -080012840 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012841
12842 tw32(NVRAM_ADDR, phy_addr + j);
12843
12844 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
12845 NVRAM_CMD_WR;
12846
12847 if (j == 0)
12848 nvram_cmd |= NVRAM_CMD_FIRST;
12849 else if (j == (pagesize - 4))
12850 nvram_cmd |= NVRAM_CMD_LAST;
12851
12852 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12853 break;
12854 }
12855 if (ret)
12856 break;
12857 }
12858
12859 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12860 tg3_nvram_exec_cmd(tp, nvram_cmd);
12861
12862 kfree(tmp);
12863
12864 return ret;
12865}
12866
12867/* offset and length are dword aligned */
12868static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
12869 u8 *buf)
12870{
12871 int i, ret = 0;
12872
12873 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012874 u32 page_off, phy_addr, nvram_cmd;
12875 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012876
12877 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080012878 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012879
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012880 page_off = offset % tp->nvram_pagesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012881
Michael Chan18201802006-03-20 22:29:15 -080012882 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012883
12884 tw32(NVRAM_ADDR, phy_addr);
12885
12886 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
12887
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012888 if (page_off == 0 || i == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012889 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070012890 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012891 nvram_cmd |= NVRAM_CMD_LAST;
12892
12893 if (i == (len - 4))
12894 nvram_cmd |= NVRAM_CMD_LAST;
12895
Matt Carlson321d32a2008-11-21 17:22:19 -080012896 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012897 !tg3_flag(tp, 5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070012898 (tp->nvram_jedecnum == JEDEC_ST) &&
12899 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012900
12901 if ((ret = tg3_nvram_exec_cmd(tp,
12902 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12903 NVRAM_CMD_DONE)))
12904
12905 break;
12906 }
Joe Perches63c3a662011-04-26 08:12:10 +000012907 if (!tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012908 /* We always do complete word writes to eeprom. */
12909 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12910 }
12911
12912 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12913 break;
12914 }
12915 return ret;
12916}
12917
12918/* offset and length are dword aligned */
12919static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12920{
12921 int ret;
12922
Joe Perches63c3a662011-04-26 08:12:10 +000012923 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012924 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12925 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012926 udelay(40);
12927 }
12928
Joe Perches63c3a662011-04-26 08:12:10 +000012929 if (!tg3_flag(tp, NVRAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012930 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
Matt Carlson859a588792010-04-05 10:19:28 +000012931 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012932 u32 grc_mode;
12933
Michael Chanec41c7d2006-01-17 02:40:55 -080012934 ret = tg3_nvram_lock(tp);
12935 if (ret)
12936 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012937
Michael Chane6af3012005-04-21 17:12:05 -070012938 tg3_enable_nvram_access(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000012939 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012940 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012941
12942 grc_mode = tr32(GRC_MODE);
12943 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12944
Joe Perches63c3a662011-04-26 08:12:10 +000012945 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012946 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12947 buf);
Matt Carlson859a588792010-04-05 10:19:28 +000012948 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012949 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12950 buf);
12951 }
12952
12953 grc_mode = tr32(GRC_MODE);
12954 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12955
Michael Chane6af3012005-04-21 17:12:05 -070012956 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012957 tg3_nvram_unlock(tp);
12958 }
12959
Joe Perches63c3a662011-04-26 08:12:10 +000012960 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012961 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012962 udelay(40);
12963 }
12964
12965 return ret;
12966}
12967
12968struct subsys_tbl_ent {
12969 u16 subsys_vendor, subsys_devid;
12970 u32 phy_id;
12971};
12972
Matt Carlson24daf2b2010-02-17 15:17:02 +000012973static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012974 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012975 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012976 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012977 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012978 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012979 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012980 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012981 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12982 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
12983 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012984 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012985 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012986 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012987 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12988 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
12989 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012990 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012991 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012992 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012993 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012994 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012995 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012996 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012997
12998 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012999 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013000 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013001 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013002 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013003 { TG3PCI_SUBVENDOR_ID_3COM,
13004 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
13005 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013006 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013007 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013008 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013009
13010 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013011 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013012 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013013 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013014 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013015 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013016 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013017 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013018 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013019
13020 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013021 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013022 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013023 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013024 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013025 { TG3PCI_SUBVENDOR_ID_COMPAQ,
13026 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
13027 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013028 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013029 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013030 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013031
13032 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013033 { TG3PCI_SUBVENDOR_ID_IBM,
13034 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013035};
13036
Matt Carlson24daf2b2010-02-17 15:17:02 +000013037static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013038{
13039 int i;
13040
13041 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
13042 if ((subsys_id_to_phy_id[i].subsys_vendor ==
13043 tp->pdev->subsystem_vendor) &&
13044 (subsys_id_to_phy_id[i].subsys_devid ==
13045 tp->pdev->subsystem_device))
13046 return &subsys_id_to_phy_id[i];
13047 }
13048 return NULL;
13049}
13050
Michael Chan7d0c41e2005-04-21 17:06:20 -070013051static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013052{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013053 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070013054
Matt Carlson79eb6902010-02-17 15:17:03 +000013055 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013056 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13057
Gary Zambranoa85feb82007-05-05 11:52:19 -070013058 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000013059 tg3_flag_set(tp, EEPROM_WRITE_PROT);
13060 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080013061
Michael Chanb5d37722006-09-27 16:06:21 -070013062 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080013063 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013064 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13065 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013066 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013067 val = tr32(VCPU_CFGSHDW);
13068 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000013069 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070013070 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013071 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013072 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013073 device_set_wakeup_enable(&tp->pdev->dev, true);
13074 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013075 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070013076 }
13077
Linus Torvalds1da177e2005-04-16 15:20:36 -070013078 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
13079 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
13080 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070013081 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013082 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013083
13084 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
13085 tp->nic_sram_data_cfg = nic_cfg;
13086
13087 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
13088 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Matt Carlson6ff6f812011-05-19 12:12:54 +000013089 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13090 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13091 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070013092 (ver > 0) && (ver < 0x100))
13093 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
13094
Matt Carlsona9daf362008-05-25 23:49:44 -070013095 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
13096 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
13097
Linus Torvalds1da177e2005-04-16 15:20:36 -070013098 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
13099 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
13100 eeprom_phy_serdes = 1;
13101
13102 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
13103 if (nic_phy_id != 0) {
13104 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
13105 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
13106
13107 eeprom_phy_id = (id1 >> 16) << 10;
13108 eeprom_phy_id |= (id2 & 0xfc00) << 16;
13109 eeprom_phy_id |= (id2 & 0x03ff) << 0;
13110 } else
13111 eeprom_phy_id = 0;
13112
Michael Chan7d0c41e2005-04-21 17:06:20 -070013113 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070013114 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000013115 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013116 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000013117 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013118 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070013119 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070013120
Joe Perches63c3a662011-04-26 08:12:10 +000013121 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013122 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
13123 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070013124 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070013125 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
13126
13127 switch (led_cfg) {
13128 default:
13129 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
13130 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13131 break;
13132
13133 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
13134 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13135 break;
13136
13137 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
13138 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070013139
13140 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
13141 * read on some older 5700/5701 bootcode.
13142 */
13143 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
13144 ASIC_REV_5700 ||
13145 GET_ASIC_REV(tp->pci_chip_rev_id) ==
13146 ASIC_REV_5701)
13147 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13148
Linus Torvalds1da177e2005-04-16 15:20:36 -070013149 break;
13150
13151 case SHASTA_EXT_LED_SHARED:
13152 tp->led_ctrl = LED_CTRL_MODE_SHARED;
13153 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
13154 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
13155 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13156 LED_CTRL_MODE_PHY_2);
13157 break;
13158
13159 case SHASTA_EXT_LED_MAC:
13160 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
13161 break;
13162
13163 case SHASTA_EXT_LED_COMBO:
13164 tp->led_ctrl = LED_CTRL_MODE_COMBO;
13165 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
13166 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13167 LED_CTRL_MODE_PHY_2);
13168 break;
13169
Stephen Hemminger855e1112008-04-16 16:37:28 -070013170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013171
13172 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13173 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
13174 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
13175 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13176
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013177 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
13178 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080013179
Michael Chan9d26e212006-12-07 00:21:14 -080013180 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000013181 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013182 if ((tp->pdev->subsystem_vendor ==
13183 PCI_VENDOR_ID_ARIMA) &&
13184 (tp->pdev->subsystem_device == 0x205a ||
13185 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000013186 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013187 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013188 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13189 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013191
13192 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000013193 tg3_flag_set(tp, ENABLE_ASF);
13194 if (tg3_flag(tp, 5750_PLUS))
13195 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013196 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013197
13198 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013199 tg3_flag(tp, 5750_PLUS))
13200 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013201
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013202 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070013203 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000013204 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013205
Joe Perches63c3a662011-04-26 08:12:10 +000013206 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013207 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013208 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013209 device_set_wakeup_enable(&tp->pdev->dev, true);
13210 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013211
Linus Torvalds1da177e2005-04-16 15:20:36 -070013212 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013213 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013214
13215 /* serdes signal pre-emphasis in register 0x590 set by */
13216 /* bootcode if bit 18 is set */
13217 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013218 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070013219
Joe Perches63c3a662011-04-26 08:12:10 +000013220 if ((tg3_flag(tp, 57765_PLUS) ||
13221 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13222 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080013223 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013224 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080013225
Joe Perches63c3a662011-04-26 08:12:10 +000013226 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000013227 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000013228 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070013229 u32 cfg3;
13230
13231 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
13232 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000013233 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070013234 }
Matt Carlsona9daf362008-05-25 23:49:44 -070013235
Matt Carlson14417062010-02-17 15:16:59 +000013236 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000013237 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070013238 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013239 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070013240 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013241 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013242 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013243done:
Joe Perches63c3a662011-04-26 08:12:10 +000013244 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013245 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000013246 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013247 else
13248 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070013249}
13250
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013251static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
13252{
13253 int i;
13254 u32 val;
13255
13256 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
13257 tw32(OTP_CTRL, cmd);
13258
13259 /* Wait for up to 1 ms for command to execute. */
13260 for (i = 0; i < 100; i++) {
13261 val = tr32(OTP_STATUS);
13262 if (val & OTP_STATUS_CMD_DONE)
13263 break;
13264 udelay(10);
13265 }
13266
13267 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
13268}
13269
13270/* Read the gphy configuration from the OTP region of the chip. The gphy
13271 * configuration is a 32-bit value that straddles the alignment boundary.
13272 * We do two 32-bit reads and then shift and merge the results.
13273 */
13274static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
13275{
13276 u32 bhalf_otp, thalf_otp;
13277
13278 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
13279
13280 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
13281 return 0;
13282
13283 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
13284
13285 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13286 return 0;
13287
13288 thalf_otp = tr32(OTP_READ_DATA);
13289
13290 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
13291
13292 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13293 return 0;
13294
13295 bhalf_otp = tr32(OTP_READ_DATA);
13296
13297 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
13298}
13299
Matt Carlsone256f8a2011-03-09 16:58:24 +000013300static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
13301{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000013302 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013303
13304 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
13305 adv |= ADVERTISED_1000baseT_Half |
13306 ADVERTISED_1000baseT_Full;
13307
13308 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
13309 adv |= ADVERTISED_100baseT_Half |
13310 ADVERTISED_100baseT_Full |
13311 ADVERTISED_10baseT_Half |
13312 ADVERTISED_10baseT_Full |
13313 ADVERTISED_TP;
13314 else
13315 adv |= ADVERTISED_FIBRE;
13316
13317 tp->link_config.advertising = adv;
13318 tp->link_config.speed = SPEED_INVALID;
13319 tp->link_config.duplex = DUPLEX_INVALID;
13320 tp->link_config.autoneg = AUTONEG_ENABLE;
13321 tp->link_config.active_speed = SPEED_INVALID;
13322 tp->link_config.active_duplex = DUPLEX_INVALID;
13323 tp->link_config.orig_speed = SPEED_INVALID;
13324 tp->link_config.orig_duplex = DUPLEX_INVALID;
13325 tp->link_config.orig_autoneg = AUTONEG_INVALID;
13326}
13327
Michael Chan7d0c41e2005-04-21 17:06:20 -070013328static int __devinit tg3_phy_probe(struct tg3 *tp)
13329{
13330 u32 hw_phy_id_1, hw_phy_id_2;
13331 u32 hw_phy_id, hw_phy_id_masked;
13332 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013333
Matt Carlsone256f8a2011-03-09 16:58:24 +000013334 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000013335 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000013336 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
13337
Joe Perches63c3a662011-04-26 08:12:10 +000013338 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013339 return tg3_phy_init(tp);
13340
Linus Torvalds1da177e2005-04-16 15:20:36 -070013341 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010013342 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013343 */
13344 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000013345 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000013346 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013347 } else {
13348 /* Now read the physical PHY_ID from the chip and verify
13349 * that it is sane. If it doesn't look good, we fall back
13350 * to either the hard-coded table based PHY_ID and failing
13351 * that the value found in the eeprom area.
13352 */
13353 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
13354 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
13355
13356 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
13357 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
13358 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
13359
Matt Carlson79eb6902010-02-17 15:17:03 +000013360 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013361 }
13362
Matt Carlson79eb6902010-02-17 15:17:03 +000013363 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013364 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000013365 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013366 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070013367 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013368 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013369 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000013370 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070013371 /* Do nothing, phy ID already set up in
13372 * tg3_get_eeprom_hw_cfg().
13373 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013374 } else {
13375 struct subsys_tbl_ent *p;
13376
13377 /* No eeprom signature? Try the hardcoded
13378 * subsys device table.
13379 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013380 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013381 if (!p)
13382 return -ENODEV;
13383
13384 tp->phy_id = p->phy_id;
13385 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000013386 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013387 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013388 }
13389 }
13390
Matt Carlsona6b68da2010-12-06 08:28:52 +000013391 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Matt Carlson5baa5e92011-07-20 10:20:53 +000013392 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13393 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720 ||
13394 (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +000013395 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
13396 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
13397 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000013398 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
13399
Matt Carlsone256f8a2011-03-09 16:58:24 +000013400 tg3_phy_init_link_config(tp);
13401
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013402 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013403 !tg3_flag(tp, ENABLE_APE) &&
13404 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000013405 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013406
13407 tg3_readphy(tp, MII_BMSR, &bmsr);
13408 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
13409 (bmsr & BMSR_LSTATUS))
13410 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013411
Linus Torvalds1da177e2005-04-16 15:20:36 -070013412 err = tg3_phy_reset(tp);
13413 if (err)
13414 return err;
13415
Matt Carlson42b64a42011-05-19 12:12:49 +000013416 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013417
Matt Carlsone2bf73e2011-12-08 14:40:15 +000013418 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013419 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
13420 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013421
13422 tg3_writephy(tp, MII_BMCR,
13423 BMCR_ANENABLE | BMCR_ANRESTART);
13424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013425 }
13426
13427skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013428 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013429 err = tg3_init_5401phy_dsp(tp);
13430 if (err)
13431 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013432
Linus Torvalds1da177e2005-04-16 15:20:36 -070013433 err = tg3_init_5401phy_dsp(tp);
13434 }
13435
Linus Torvalds1da177e2005-04-16 15:20:36 -070013436 return err;
13437}
13438
Matt Carlson184b8902010-04-05 10:19:25 +000013439static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013440{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013441 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013442 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000013443 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000013444 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013445
Matt Carlson535a4902011-07-20 10:20:56 +000013446 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013447 if (!vpd_data)
13448 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013449
Matt Carlson535a4902011-07-20 10:20:56 +000013450 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000013451 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013452 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013453
13454 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13455 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13456 i += PCI_VPD_LRDT_TAG_SIZE;
13457
Matt Carlson535a4902011-07-20 10:20:56 +000013458 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013459 goto out_not_found;
13460
Matt Carlson184b8902010-04-05 10:19:25 +000013461 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13462 PCI_VPD_RO_KEYWORD_MFR_ID);
13463 if (j > 0) {
13464 len = pci_vpd_info_field_size(&vpd_data[j]);
13465
13466 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13467 if (j + len > block_end || len != 4 ||
13468 memcmp(&vpd_data[j], "1028", 4))
13469 goto partno;
13470
13471 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13472 PCI_VPD_RO_KEYWORD_VENDOR0);
13473 if (j < 0)
13474 goto partno;
13475
13476 len = pci_vpd_info_field_size(&vpd_data[j]);
13477
13478 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13479 if (j + len > block_end)
13480 goto partno;
13481
13482 memcpy(tp->fw_ver, &vpd_data[j], len);
Matt Carlson535a4902011-07-20 10:20:56 +000013483 strncat(tp->fw_ver, " bc ", vpdlen - len - 1);
Matt Carlson184b8902010-04-05 10:19:25 +000013484 }
13485
13486partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013487 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13488 PCI_VPD_RO_KEYWORD_PARTNO);
13489 if (i < 0)
13490 goto out_not_found;
13491
13492 len = pci_vpd_info_field_size(&vpd_data[i]);
13493
13494 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13495 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000013496 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013497 goto out_not_found;
13498
13499 memcpy(tp->board_part_number, &vpd_data[i], len);
13500
Linus Torvalds1da177e2005-04-16 15:20:36 -070013501out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013502 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013503 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013504 return;
13505
13506out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013507 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13508 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13509 strcpy(tp->board_part_number, "BCM5717");
13510 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13511 strcpy(tp->board_part_number, "BCM5718");
13512 else
13513 goto nomatch;
13514 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13515 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13516 strcpy(tp->board_part_number, "BCM57780");
13517 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13518 strcpy(tp->board_part_number, "BCM57760");
13519 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13520 strcpy(tp->board_part_number, "BCM57790");
13521 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13522 strcpy(tp->board_part_number, "BCM57788");
13523 else
13524 goto nomatch;
13525 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13526 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13527 strcpy(tp->board_part_number, "BCM57761");
13528 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
13529 strcpy(tp->board_part_number, "BCM57765");
13530 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
13531 strcpy(tp->board_part_number, "BCM57781");
13532 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
13533 strcpy(tp->board_part_number, "BCM57785");
13534 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
13535 strcpy(tp->board_part_number, "BCM57791");
13536 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13537 strcpy(tp->board_part_number, "BCM57795");
13538 else
13539 goto nomatch;
Matt Carlson55086ad2011-12-14 11:09:59 +000013540 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766) {
13541 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
13542 strcpy(tp->board_part_number, "BCM57762");
13543 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
13544 strcpy(tp->board_part_number, "BCM57766");
13545 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
13546 strcpy(tp->board_part_number, "BCM57782");
13547 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
13548 strcpy(tp->board_part_number, "BCM57786");
13549 else
13550 goto nomatch;
Matt Carlson37a949c2010-09-30 10:34:33 +000013551 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070013552 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000013553 } else {
13554nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070013555 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000013556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013557}
13558
Matt Carlson9c8a6202007-10-21 16:16:08 -070013559static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
13560{
13561 u32 val;
13562
Matt Carlsone4f34112009-02-25 14:25:00 +000013563 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013564 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013565 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013566 val != 0)
13567 return 0;
13568
13569 return 1;
13570}
13571
Matt Carlsonacd9c112009-02-25 14:26:33 +000013572static void __devinit tg3_read_bc_ver(struct tg3 *tp)
13573{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013574 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000013575 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013576 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013577
13578 if (tg3_nvram_read(tp, 0xc, &offset) ||
13579 tg3_nvram_read(tp, 0x4, &start))
13580 return;
13581
13582 offset = tg3_nvram_logical_addr(tp, offset);
13583
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013584 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013585 return;
13586
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013587 if ((val & 0xfc000000) == 0x0c000000) {
13588 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013589 return;
13590
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013591 if (val == 0)
13592 newver = true;
13593 }
13594
Matt Carlson75f99362010-04-05 10:19:24 +000013595 dst_off = strlen(tp->fw_ver);
13596
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013597 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000013598 if (TG3_VER_SIZE - dst_off < 16 ||
13599 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013600 return;
13601
13602 offset = offset + ver_offset - start;
13603 for (i = 0; i < 16; i += 4) {
13604 __be32 v;
13605 if (tg3_nvram_read_be32(tp, offset + i, &v))
13606 return;
13607
Matt Carlson75f99362010-04-05 10:19:24 +000013608 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013609 }
13610 } else {
13611 u32 major, minor;
13612
13613 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
13614 return;
13615
13616 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
13617 TG3_NVM_BCVER_MAJSFT;
13618 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000013619 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
13620 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013621 }
13622}
13623
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013624static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
13625{
13626 u32 val, major, minor;
13627
13628 /* Use native endian representation */
13629 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
13630 return;
13631
13632 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
13633 TG3_NVM_HWSB_CFG1_MAJSFT;
13634 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
13635 TG3_NVM_HWSB_CFG1_MINSFT;
13636
13637 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
13638}
13639
Matt Carlsondfe00d72008-11-21 17:19:41 -080013640static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
13641{
13642 u32 offset, major, minor, build;
13643
Matt Carlson75f99362010-04-05 10:19:24 +000013644 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013645
13646 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
13647 return;
13648
13649 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
13650 case TG3_EEPROM_SB_REVISION_0:
13651 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
13652 break;
13653 case TG3_EEPROM_SB_REVISION_2:
13654 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
13655 break;
13656 case TG3_EEPROM_SB_REVISION_3:
13657 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
13658 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000013659 case TG3_EEPROM_SB_REVISION_4:
13660 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
13661 break;
13662 case TG3_EEPROM_SB_REVISION_5:
13663 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
13664 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000013665 case TG3_EEPROM_SB_REVISION_6:
13666 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
13667 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013668 default:
13669 return;
13670 }
13671
Matt Carlsone4f34112009-02-25 14:25:00 +000013672 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080013673 return;
13674
13675 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
13676 TG3_EEPROM_SB_EDH_BLD_SHFT;
13677 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
13678 TG3_EEPROM_SB_EDH_MAJ_SHFT;
13679 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
13680
13681 if (minor > 99 || build > 26)
13682 return;
13683
Matt Carlson75f99362010-04-05 10:19:24 +000013684 offset = strlen(tp->fw_ver);
13685 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
13686 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013687
13688 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000013689 offset = strlen(tp->fw_ver);
13690 if (offset < TG3_VER_SIZE - 1)
13691 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013692 }
13693}
13694
Matt Carlsonacd9c112009-02-25 14:26:33 +000013695static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080013696{
13697 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013698 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070013699
13700 for (offset = TG3_NVM_DIR_START;
13701 offset < TG3_NVM_DIR_END;
13702 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013703 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013704 return;
13705
13706 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
13707 break;
13708 }
13709
13710 if (offset == TG3_NVM_DIR_END)
13711 return;
13712
Joe Perches63c3a662011-04-26 08:12:10 +000013713 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013714 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000013715 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013716 return;
13717
Matt Carlsone4f34112009-02-25 14:25:00 +000013718 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013719 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013720 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013721 return;
13722
13723 offset += val - start;
13724
Matt Carlsonacd9c112009-02-25 14:26:33 +000013725 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013726
Matt Carlsonacd9c112009-02-25 14:26:33 +000013727 tp->fw_ver[vlen++] = ',';
13728 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070013729
13730 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000013731 __be32 v;
13732 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013733 return;
13734
Al Virob9fc7dc2007-12-17 22:59:57 -080013735 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013736
Matt Carlsonacd9c112009-02-25 14:26:33 +000013737 if (vlen > TG3_VER_SIZE - sizeof(v)) {
13738 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013739 break;
13740 }
13741
Matt Carlsonacd9c112009-02-25 14:26:33 +000013742 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
13743 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013744 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000013745}
13746
Matt Carlson7fd76442009-02-25 14:27:20 +000013747static void __devinit tg3_read_dash_ver(struct tg3 *tp)
13748{
13749 int vlen;
13750 u32 apedata;
Matt Carlsonecc79642010-08-02 11:26:01 +000013751 char *fwtype;
Matt Carlson7fd76442009-02-25 14:27:20 +000013752
Joe Perches63c3a662011-04-26 08:12:10 +000013753 if (!tg3_flag(tp, ENABLE_APE) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000013754 return;
13755
13756 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
13757 if (apedata != APE_SEG_SIG_MAGIC)
13758 return;
13759
13760 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
13761 if (!(apedata & APE_FW_STATUS_READY))
13762 return;
13763
13764 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
13765
Matt Carlsondc6d0742010-09-15 08:59:55 +000013766 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI) {
Joe Perches63c3a662011-04-26 08:12:10 +000013767 tg3_flag_set(tp, APE_HAS_NCSI);
Matt Carlsonecc79642010-08-02 11:26:01 +000013768 fwtype = "NCSI";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013769 } else {
Matt Carlsonecc79642010-08-02 11:26:01 +000013770 fwtype = "DASH";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013771 }
Matt Carlsonecc79642010-08-02 11:26:01 +000013772
Matt Carlson7fd76442009-02-25 14:27:20 +000013773 vlen = strlen(tp->fw_ver);
13774
Matt Carlsonecc79642010-08-02 11:26:01 +000013775 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
13776 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000013777 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
13778 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
13779 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
13780 (apedata & APE_FW_VERSION_BLDMSK));
13781}
13782
Matt Carlsonacd9c112009-02-25 14:26:33 +000013783static void __devinit tg3_read_fw_ver(struct tg3 *tp)
13784{
13785 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000013786 bool vpd_vers = false;
13787
13788 if (tp->fw_ver[0] != 0)
13789 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013790
Joe Perches63c3a662011-04-26 08:12:10 +000013791 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000013792 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000013793 return;
13794 }
13795
Matt Carlsonacd9c112009-02-25 14:26:33 +000013796 if (tg3_nvram_read(tp, 0, &val))
13797 return;
13798
13799 if (val == TG3_EEPROM_MAGIC)
13800 tg3_read_bc_ver(tp);
13801 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
13802 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013803 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
13804 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013805 else
13806 return;
13807
Matt Carlsonc9cab242011-07-13 09:27:27 +000013808 if (vpd_vers)
Matt Carlson75f99362010-04-05 10:19:24 +000013809 goto done;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013810
Matt Carlsonc9cab242011-07-13 09:27:27 +000013811 if (tg3_flag(tp, ENABLE_APE)) {
13812 if (tg3_flag(tp, ENABLE_ASF))
13813 tg3_read_dash_ver(tp);
13814 } else if (tg3_flag(tp, ENABLE_ASF)) {
13815 tg3_read_mgmtfw_ver(tp);
13816 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070013817
Matt Carlson75f99362010-04-05 10:19:24 +000013818done:
Matt Carlson9c8a6202007-10-21 16:16:08 -070013819 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080013820}
13821
Michael Chan7544b092007-05-05 13:08:32 -070013822static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
13823
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013824static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
13825{
Joe Perches63c3a662011-04-26 08:12:10 +000013826 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013827 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000013828 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013829 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013830 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000013831 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013832}
13833
Matt Carlson41434702011-03-09 16:58:22 +000013834static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080013835 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
13836 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
13837 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
13838 { },
13839};
13840
Linus Torvalds1da177e2005-04-16 15:20:36 -070013841static int __devinit tg3_get_invariants(struct tg3 *tp)
13842{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013843 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013844 u32 pci_state_reg, grc_misc_cfg;
13845 u32 val;
13846 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013847 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013848
Linus Torvalds1da177e2005-04-16 15:20:36 -070013849 /* Force memory write invalidate off. If we leave it on,
13850 * then on 5700_BX chips we have to enable a workaround.
13851 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
13852 * to match the cacheline size. The Broadcom driver have this
13853 * workaround but turns MWI off all the times so never uses
13854 * it. This seems to suggest that the workaround is insufficient.
13855 */
13856 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13857 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
13858 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13859
Matt Carlson16821282011-07-13 09:27:28 +000013860 /* Important! -- Make sure register accesses are byteswapped
13861 * correctly. Also, for those chips that require it, make
13862 * sure that indirect register accesses are enabled before
13863 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013864 */
13865 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13866 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000013867 tp->misc_host_ctrl |= (misc_ctrl_reg &
13868 MISC_HOST_CTRL_CHIPREV);
13869 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13870 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013871
13872 tp->pci_chip_rev_id = (misc_ctrl_reg >>
13873 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070013874 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
13875 u32 prod_id_asic_rev;
13876
Matt Carlson5001e2f2009-11-13 13:03:51 +000013877 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
13878 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013879 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
13880 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013881 pci_read_config_dword(tp->pdev,
13882 TG3PCI_GEN2_PRODID_ASICREV,
13883 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000013884 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
13885 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
13886 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
13887 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
13888 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000013889 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
13890 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
13891 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
13892 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
13893 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
Matt Carlsonb703df62009-12-03 08:36:21 +000013894 pci_read_config_dword(tp->pdev,
13895 TG3PCI_GEN15_PRODID_ASICREV,
13896 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013897 else
13898 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
13899 &prod_id_asic_rev);
13900
Matt Carlson321d32a2008-11-21 17:22:19 -080013901 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070013902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013903
Michael Chanff645be2005-04-21 17:09:53 -070013904 /* Wrong chip ID in 5752 A0. This code can be removed later
13905 * as A0 is not in production.
13906 */
13907 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
13908 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
13909
Michael Chan68929142005-08-09 20:17:14 -070013910 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
13911 * we need to disable memory and use config. cycles
13912 * only to access all registers. The 5702/03 chips
13913 * can mistakenly decode the special cycles from the
13914 * ICH chipsets as memory write cycles, causing corruption
13915 * of register and memory space. Only certain ICH bridges
13916 * will drive special cycles with non-zero data during the
13917 * address phase which can fall within the 5703's address
13918 * range. This is not an ICH bug as the PCI spec allows
13919 * non-zero address during special cycles. However, only
13920 * these ICH bridges are known to drive non-zero addresses
13921 * during special cycles.
13922 *
13923 * Since special cycles do not cross PCI bridges, we only
13924 * enable this workaround if the 5703 is on the secondary
13925 * bus of these ICH bridges.
13926 */
13927 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
13928 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
13929 static struct tg3_dev_id {
13930 u32 vendor;
13931 u32 device;
13932 u32 rev;
13933 } ich_chipsets[] = {
13934 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
13935 PCI_ANY_ID },
13936 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
13937 PCI_ANY_ID },
13938 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
13939 0xa },
13940 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
13941 PCI_ANY_ID },
13942 { },
13943 };
13944 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13945 struct pci_dev *bridge = NULL;
13946
13947 while (pci_id->vendor != 0) {
13948 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13949 bridge);
13950 if (!bridge) {
13951 pci_id++;
13952 continue;
13953 }
13954 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013955 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013956 continue;
13957 }
13958 if (bridge->subordinate &&
13959 (bridge->subordinate->number ==
13960 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013961 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070013962 pci_dev_put(bridge);
13963 break;
13964 }
13965 }
13966 }
13967
Matt Carlson6ff6f812011-05-19 12:12:54 +000013968 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070013969 static struct tg3_dev_id {
13970 u32 vendor;
13971 u32 device;
13972 } bridge_chipsets[] = {
13973 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13974 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13975 { },
13976 };
13977 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13978 struct pci_dev *bridge = NULL;
13979
13980 while (pci_id->vendor != 0) {
13981 bridge = pci_get_device(pci_id->vendor,
13982 pci_id->device,
13983 bridge);
13984 if (!bridge) {
13985 pci_id++;
13986 continue;
13987 }
13988 if (bridge->subordinate &&
13989 (bridge->subordinate->number <=
13990 tp->pdev->bus->number) &&
13991 (bridge->subordinate->subordinate >=
13992 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013993 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070013994 pci_dev_put(bridge);
13995 break;
13996 }
13997 }
13998 }
13999
Michael Chan4a29cc22006-03-19 13:21:12 -080014000 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
14001 * DMA addresses > 40-bit. This bridge may have other additional
14002 * 57xx devices behind it in some 4-port NIC designs for example.
14003 * Any tg3 device found behind the bridge will also need the 40-bit
14004 * DMA workaround.
14005 */
Michael Chana4e2b342005-10-26 15:46:52 -070014006 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
14007 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Joe Perches63c3a662011-04-26 08:12:10 +000014008 tg3_flag_set(tp, 5780_CLASS);
14009 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070014010 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000014011 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080014012 struct pci_dev *bridge = NULL;
14013
14014 do {
14015 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
14016 PCI_DEVICE_ID_SERVERWORKS_EPB,
14017 bridge);
14018 if (bridge && bridge->subordinate &&
14019 (bridge->subordinate->number <=
14020 tp->pdev->bus->number) &&
14021 (bridge->subordinate->subordinate >=
14022 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014023 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080014024 pci_dev_put(bridge);
14025 break;
14026 }
14027 } while (bridge);
14028 }
Michael Chan4cf78e42005-07-25 12:29:19 -070014029
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014030 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Matt Carlson3a1e19d2011-07-13 09:27:32 +000014031 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070014032 tp->pdev_peer = tg3_find_peer(tp);
14033
Matt Carlsonc885e822010-08-02 11:25:57 +000014034 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000014035 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14036 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000014037 tg3_flag_set(tp, 5717_PLUS);
Matt Carlson0a58d662011-04-05 14:22:45 +000014038
14039 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014040 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
14041 tg3_flag_set(tp, 57765_CLASS);
14042
14043 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS))
Joe Perches63c3a662011-04-26 08:12:10 +000014044 tg3_flag_set(tp, 57765_PLUS);
Matt Carlsonc885e822010-08-02 11:25:57 +000014045
Matt Carlson321d32a2008-11-21 17:22:19 -080014046 /* Intentionally exclude ASIC_REV_5906 */
14047 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad2006-03-20 22:27:35 -080014048 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070014049 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070014050 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070014051 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014052 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014053 tg3_flag(tp, 57765_PLUS))
14054 tg3_flag_set(tp, 5755_PLUS);
Matt Carlson321d32a2008-11-21 17:22:19 -080014055
14056 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14057 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070014058 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014059 tg3_flag(tp, 5755_PLUS) ||
14060 tg3_flag(tp, 5780_CLASS))
14061 tg3_flag_set(tp, 5750_PLUS);
John W. Linville6708e5c2005-04-21 17:00:52 -070014062
Matt Carlson6ff6f812011-05-19 12:12:54 +000014063 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014064 tg3_flag(tp, 5750_PLUS))
14065 tg3_flag_set(tp, 5705_PLUS);
John W. Linville1b440c562005-04-21 17:03:18 -070014066
Matt Carlson507399f2009-11-13 13:03:37 +000014067 /* Determine TSO capabilities */
Matt Carlsona0512942011-07-27 14:20:54 +000014068 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000014069 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000014070 else if (tg3_flag(tp, 57765_PLUS))
14071 tg3_flag_set(tp, HW_TSO_3);
14072 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000014073 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000014074 tg3_flag_set(tp, HW_TSO_2);
14075 else if (tg3_flag(tp, 5750_PLUS)) {
14076 tg3_flag_set(tp, HW_TSO_1);
14077 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014078 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
14079 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000014080 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014081 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14082 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
14083 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014084 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014085 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
14086 tp->fw_needed = FIRMWARE_TG3TSO5;
14087 else
14088 tp->fw_needed = FIRMWARE_TG3TSO;
14089 }
14090
Matt Carlsondabc5c62011-05-19 12:12:52 +000014091 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014092 if (tg3_flag(tp, HW_TSO_1) ||
14093 tg3_flag(tp, HW_TSO_2) ||
14094 tg3_flag(tp, HW_TSO_3) ||
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014095 tp->fw_needed) {
14096 /* For firmware TSO, assume ASF is disabled.
14097 * We'll disable TSO later if we discover ASF
14098 * is enabled in tg3_get_eeprom_hw_cfg().
14099 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000014100 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014101 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000014102 tg3_flag_clear(tp, TSO_CAPABLE);
14103 tg3_flag_clear(tp, TSO_BUG);
14104 tp->fw_needed = NULL;
14105 }
14106
14107 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
14108 tp->fw_needed = FIRMWARE_TG3;
14109
Matt Carlson507399f2009-11-13 13:03:37 +000014110 tp->irq_max = 1;
14111
Joe Perches63c3a662011-04-26 08:12:10 +000014112 if (tg3_flag(tp, 5750_PLUS)) {
14113 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014114 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
14115 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
14116 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
14117 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
14118 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000014119 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014120
Joe Perches63c3a662011-04-26 08:12:10 +000014121 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070014122 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014123 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070014124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014125
Joe Perches63c3a662011-04-26 08:12:10 +000014126 if (tg3_flag(tp, 57765_PLUS)) {
14127 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000014128 tp->irq_max = TG3_IRQ_MAX_VECS;
Matt Carlson90415472011-12-16 13:33:23 +000014129 tg3_rss_init_dflt_indir_tbl(tp);
Matt Carlson507399f2009-11-13 13:03:37 +000014130 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014131 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000014132
Matt Carlson2ffcc982011-05-19 12:12:44 +000014133 if (tg3_flag(tp, 5755_PLUS))
Joe Perches63c3a662011-04-26 08:12:10 +000014134 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014135
Matt Carlsone31aa982011-07-27 14:20:53 +000014136 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000014137 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlson55086ad2011-12-14 11:09:59 +000014138 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
14139 tp->dma_limit = TG3_TX_BD_DMA_MAX_2K;
Matt Carlsone31aa982011-07-27 14:20:53 +000014140
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +000014141 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14142 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14143 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000014144 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000014145
Joe Perches63c3a662011-04-26 08:12:10 +000014146 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlsona0512942011-07-27 14:20:54 +000014147 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000014148 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000014149
Joe Perches63c3a662011-04-26 08:12:10 +000014150 if (!tg3_flag(tp, 5705_PLUS) ||
14151 tg3_flag(tp, 5780_CLASS) ||
14152 tg3_flag(tp, USE_JUMBO_BDFLAG))
14153 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070014154
Matt Carlson52f44902008-11-21 17:17:04 -080014155 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14156 &pci_state_reg);
14157
Jon Mason708ebb32011-06-27 12:56:50 +000014158 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014159 u16 lnkctl;
14160
Joe Perches63c3a662011-04-26 08:12:10 +000014161 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080014162
Matt Carlson2c55a3d2011-11-28 09:41:04 +000014163 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0) {
14164 int readrq = pcie_get_readrq(tp->pdev);
14165 if (readrq > 2048)
14166 pcie_set_readrq(tp->pdev, 2048);
14167 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -080014168
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014169 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +000014170 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014171 &lnkctl);
14172 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Matt Carlson7196cd62011-05-19 16:02:44 +000014173 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
14174 ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014175 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000014176 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000014177 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014178 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014179 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000014180 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
14181 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000014182 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b0592010-01-20 16:58:02 +000014183 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014184 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080014185 }
Matt Carlson52f44902008-11-21 17:17:04 -080014186 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Jon Mason708ebb32011-06-27 12:56:50 +000014187 /* BCM5785 devices are effectively PCIe devices, and should
14188 * follow PCIe codepaths, but do not have a PCIe capabilities
14189 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000014190 */
Joe Perches63c3a662011-04-26 08:12:10 +000014191 tg3_flag_set(tp, PCI_EXPRESS);
14192 } else if (!tg3_flag(tp, 5705_PLUS) ||
14193 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080014194 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
14195 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000014196 dev_err(&tp->pdev->dev,
14197 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080014198 return -EIO;
14199 }
14200
14201 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000014202 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080014203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014204
Michael Chan399de502005-10-03 14:02:39 -070014205 /* If we have an AMD 762 or VIA K8T800 chipset, write
14206 * reordering to the mailbox registers done by the host
14207 * controller can cause major troubles. We read back from
14208 * every mailbox register write to force the writes to be
14209 * posted to the chip in order.
14210 */
Matt Carlson41434702011-03-09 16:58:22 +000014211 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014212 !tg3_flag(tp, PCI_EXPRESS))
14213 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070014214
Matt Carlson69fc4052008-12-21 20:19:57 -080014215 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
14216 &tp->pci_cacheline_sz);
14217 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14218 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014219 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14220 tp->pci_lat_timer < 64) {
14221 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080014222 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14223 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014224 }
14225
Matt Carlson16821282011-07-13 09:27:28 +000014226 /* Important! -- It is critical that the PCI-X hw workaround
14227 * situation is decided before the first MMIO register access.
14228 */
Matt Carlson52f44902008-11-21 17:17:04 -080014229 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
14230 /* 5700 BX chips need to have their TX producer index
14231 * mailboxes written twice to workaround a bug.
14232 */
Joe Perches63c3a662011-04-26 08:12:10 +000014233 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070014234
Matt Carlson52f44902008-11-21 17:17:04 -080014235 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014236 *
14237 * The workaround is to use indirect register accesses
14238 * for all chip writes not to mailbox registers.
14239 */
Joe Perches63c3a662011-04-26 08:12:10 +000014240 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014241 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014242
Joe Perches63c3a662011-04-26 08:12:10 +000014243 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014244
14245 /* The chip can have it's power management PCI config
14246 * space registers clobbered due to this bug.
14247 * So explicitly force the chip into D0 here.
14248 */
Matt Carlson9974a352007-10-07 23:27:28 -070014249 pci_read_config_dword(tp->pdev,
14250 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014251 &pm_reg);
14252 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
14253 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070014254 pci_write_config_dword(tp->pdev,
14255 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014256 pm_reg);
14257
14258 /* Also, force SERR#/PERR# in PCI command. */
14259 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14260 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
14261 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14262 }
14263 }
14264
Linus Torvalds1da177e2005-04-16 15:20:36 -070014265 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014266 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014267 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014268 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014269
14270 /* Chip-specific fixup from Broadcom driver */
14271 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
14272 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
14273 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
14274 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
14275 }
14276
Michael Chan1ee582d2005-08-09 20:16:46 -070014277 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070014278 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014279 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070014280 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070014281 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014282 tp->write32_tx_mbox = tg3_write32;
14283 tp->write32_rx_mbox = tg3_write32;
14284
14285 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000014286 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070014287 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014288 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014289 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070014290 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
14291 /*
14292 * Back to back register writes can cause problems on these
14293 * chips, the workaround is to read back all reg writes
14294 * except those to mailbox regs.
14295 *
14296 * See tg3_write_indirect_reg32().
14297 */
Michael Chan1ee582d2005-08-09 20:16:46 -070014298 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014299 }
14300
Joe Perches63c3a662011-04-26 08:12:10 +000014301 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070014302 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000014303 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070014304 tp->write32_rx_mbox = tg3_write_flush_reg32;
14305 }
Michael Chan20094932005-08-09 20:16:32 -070014306
Joe Perches63c3a662011-04-26 08:12:10 +000014307 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070014308 tp->read32 = tg3_read_indirect_reg32;
14309 tp->write32 = tg3_write_indirect_reg32;
14310 tp->read32_mbox = tg3_read_indirect_mbox;
14311 tp->write32_mbox = tg3_write_indirect_mbox;
14312 tp->write32_tx_mbox = tg3_write_indirect_mbox;
14313 tp->write32_rx_mbox = tg3_write_indirect_mbox;
14314
14315 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014316 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014317
14318 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14319 pci_cmd &= ~PCI_COMMAND_MEMORY;
14320 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14321 }
Michael Chanb5d37722006-09-27 16:06:21 -070014322 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14323 tp->read32_mbox = tg3_read32_mbox_5906;
14324 tp->write32_mbox = tg3_write32_mbox_5906;
14325 tp->write32_tx_mbox = tg3_write32_mbox_5906;
14326 tp->write32_rx_mbox = tg3_write32_mbox_5906;
14327 }
Michael Chan68929142005-08-09 20:17:14 -070014328
Michael Chanbbadf502006-04-06 21:46:34 -070014329 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014330 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070014331 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070014332 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000014333 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070014334
Matt Carlson16821282011-07-13 09:27:28 +000014335 /* The memory arbiter has to be enabled in order for SRAM accesses
14336 * to succeed. Normally on powerup the tg3 chip firmware will make
14337 * sure it is enabled, but other entities such as system netboot
14338 * code might disable it.
14339 */
14340 val = tr32(MEMARB_MODE);
14341 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
14342
Matt Carlson9dc5e342011-11-04 09:15:02 +000014343 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
14344 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
14345 tg3_flag(tp, 5780_CLASS)) {
14346 if (tg3_flag(tp, PCIX_MODE)) {
14347 pci_read_config_dword(tp->pdev,
14348 tp->pcix_cap + PCI_X_STATUS,
14349 &val);
14350 tp->pci_fn = val & 0x7;
14351 }
14352 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
14353 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14354 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14355 NIC_SRAM_CPMUSTAT_SIG) {
14356 tp->pci_fn = val & TG3_CPMU_STATUS_FMSK_5717;
14357 tp->pci_fn = tp->pci_fn ? 1 : 0;
14358 }
14359 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14360 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
14361 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14362 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14363 NIC_SRAM_CPMUSTAT_SIG) {
14364 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
14365 TG3_CPMU_STATUS_FSHFT_5719;
14366 }
Matt Carlson69f11c92011-07-13 09:27:30 +000014367 }
14368
Michael Chan7d0c41e2005-04-21 17:06:20 -070014369 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000014370 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070014371 * determined before calling tg3_set_power_state() so that
14372 * we know whether or not to switch out of Vaux power.
14373 * When the flag is set, it means that GPIO1 is used for eeprom
14374 * write protect and also implies that it is a LOM where GPIOs
14375 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014376 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070014377 tg3_get_eeprom_hw_cfg(tp);
14378
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014379 if (tp->fw_needed && tg3_flag(tp, ENABLE_ASF)) {
14380 tg3_flag_clear(tp, TSO_CAPABLE);
14381 tg3_flag_clear(tp, TSO_BUG);
14382 tp->fw_needed = NULL;
14383 }
14384
Joe Perches63c3a662011-04-26 08:12:10 +000014385 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014386 /* Allow reads and writes to the
14387 * APE register and memory space.
14388 */
14389 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000014390 PCISTATE_ALLOW_APE_SHMEM_WR |
14391 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014392 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
14393 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000014394
14395 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014396 }
14397
Matt Carlson9936bcf2007-10-10 18:03:07 -070014398 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070014399 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014400 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014401 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014402 tg3_flag(tp, 57765_PLUS))
14403 tg3_flag_set(tp, CPMU_PRESENT);
Matt Carlsond30cdd22007-10-07 23:28:35 -070014404
Matt Carlson16821282011-07-13 09:27:28 +000014405 /* Set up tp->grc_local_ctrl before calling
14406 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
14407 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070014408 * It is also used as eeprom write protect on LOMs.
14409 */
14410 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014411 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014412 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070014413 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
14414 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070014415 /* Unused GPIO3 must be driven as output on 5752 because there
14416 * are no pull-up resistors on unused GPIO pins.
14417 */
14418 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
14419 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070014420
Matt Carlson321d32a2008-11-21 17:22:19 -080014421 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000014422 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014423 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080014424 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
14425
Matt Carlson8d519ab2009-04-20 06:58:01 +000014426 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
14427 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014428 /* Turn off the debug UART. */
14429 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014430 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014431 /* Keep VMain power. */
14432 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
14433 GRC_LCLCTRL_GPIO_OUTPUT0;
14434 }
14435
Matt Carlson16821282011-07-13 09:27:28 +000014436 /* Switch out of Vaux if it is a NIC */
14437 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014438
Linus Torvalds1da177e2005-04-16 15:20:36 -070014439 /* Derive initial jumbo mode from MTU assigned in
14440 * ether_setup() via the alloc_etherdev() call
14441 */
Joe Perches63c3a662011-04-26 08:12:10 +000014442 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
14443 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014444
14445 /* Determine WakeOnLan speed to use. */
14446 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14447 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
14448 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
14449 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000014450 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014451 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014452 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014453 }
14454
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014455 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014456 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014457
Linus Torvalds1da177e2005-04-16 15:20:36 -070014458 /* A few boards don't want Ethernet@WireSpeed phy feature */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014459 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14460 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014461 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070014462 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014463 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
14464 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14465 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014466
14467 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
14468 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014469 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014470 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014471 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014472
Joe Perches63c3a662011-04-26 08:12:10 +000014473 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014474 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080014475 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014476 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014477 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070014478 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070014479 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070014480 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14481 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080014482 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
14483 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014484 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080014485 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014486 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080014487 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014488 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070014489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014490
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014491 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14492 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
14493 tp->phy_otp = tg3_read_otp_phycfg(tp);
14494 if (tp->phy_otp == 0)
14495 tp->phy_otp = TG3_OTP_DEFAULT;
14496 }
14497
Joe Perches63c3a662011-04-26 08:12:10 +000014498 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070014499 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
14500 else
14501 tp->mi_mode = MAC_MI_MODE_BASE;
14502
Linus Torvalds1da177e2005-04-16 15:20:36 -070014503 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014504 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
14505 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
14506 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
14507
Matt Carlson4d958472011-04-20 07:57:35 +000014508 /* Set these bits to enable statistics workaround. */
14509 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14510 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
14511 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
14512 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
14513 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
14514 }
14515
Matt Carlson321d32a2008-11-21 17:22:19 -080014516 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14517 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000014518 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070014519
Matt Carlson158d7ab2008-05-29 01:37:54 -070014520 err = tg3_mdio_init(tp);
14521 if (err)
14522 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014523
14524 /* Initialize data/descriptor byte/word swapping. */
14525 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000014526 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14527 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
14528 GRC_MODE_WORD_SWAP_B2HRX_DATA |
14529 GRC_MODE_B2HRX_ENABLE |
14530 GRC_MODE_HTX2B_ENABLE |
14531 GRC_MODE_HOST_STACKUP);
14532 else
14533 val &= GRC_MODE_HOST_STACKUP;
14534
Linus Torvalds1da177e2005-04-16 15:20:36 -070014535 tw32(GRC_MODE, val | tp->grc_mode);
14536
14537 tg3_switch_clocks(tp);
14538
14539 /* Clear this out for sanity. */
14540 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
14541
14542 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14543 &pci_state_reg);
14544 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014545 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014546 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
14547
14548 if (chiprevid == CHIPREV_ID_5701_A0 ||
14549 chiprevid == CHIPREV_ID_5701_B0 ||
14550 chiprevid == CHIPREV_ID_5701_B2 ||
14551 chiprevid == CHIPREV_ID_5701_B5) {
14552 void __iomem *sram_base;
14553
14554 /* Write some dummy words into the SRAM status block
14555 * area, see if it reads back correctly. If the return
14556 * value is bad, force enable the PCIX workaround.
14557 */
14558 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
14559
14560 writel(0x00000000, sram_base);
14561 writel(0x00000000, sram_base + 4);
14562 writel(0xffffffff, sram_base + 4);
14563 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000014564 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014565 }
14566 }
14567
14568 udelay(50);
14569 tg3_nvram_init(tp);
14570
14571 grc_misc_cfg = tr32(GRC_MISC_CFG);
14572 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
14573
Linus Torvalds1da177e2005-04-16 15:20:36 -070014574 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14575 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
14576 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000014577 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014578
Joe Perches63c3a662011-04-26 08:12:10 +000014579 if (!tg3_flag(tp, IS_5788) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +000014580 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014581 tg3_flag_set(tp, TAGGED_STATUS);
14582 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070014583 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
14584 HOSTCC_MODE_CLRTICK_TXBD);
14585
14586 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
14587 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14588 tp->misc_host_ctrl);
14589 }
14590
Matt Carlson3bda1252008-08-15 14:08:22 -070014591 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000014592 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000014593 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070014594 else
Matt Carlson6e01b202011-08-19 13:58:20 +000014595 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070014596
Linus Torvalds1da177e2005-04-16 15:20:36 -070014597 /* these are limited to 10/100 only */
14598 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14599 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
14600 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14601 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14602 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
14603 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
14604 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
14605 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14606 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080014607 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
14608 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014609 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000014610 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14611 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014612 (tp->phy_flags & TG3_PHYFLG_IS_FET))
14613 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014614
14615 err = tg3_phy_probe(tp);
14616 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014617 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014618 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014619 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014620 }
14621
Matt Carlson184b8902010-04-05 10:19:25 +000014622 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080014623 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014624
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014625 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
14626 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014627 } else {
14628 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014629 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014630 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014631 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014632 }
14633
14634 /* 5700 {AX,BX} chips have a broken status block link
14635 * change bit implementation, so we must use the
14636 * status register in those cases.
14637 */
14638 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014639 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014640 else
Joe Perches63c3a662011-04-26 08:12:10 +000014641 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014642
14643 /* The led_ctrl is set during tg3_phy_probe, here we might
14644 * have to force the link status polling mechanism based
14645 * upon subsystem IDs.
14646 */
14647 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070014648 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014649 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
14650 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000014651 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014652 }
14653
14654 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014655 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000014656 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014657 else
Joe Perches63c3a662011-04-26 08:12:10 +000014658 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014659
Eric Dumazet9205fd92011-11-18 06:47:01 +000014660 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014661 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014662 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014663 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000014664 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014665#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000014666 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014667#endif
14668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014669
Matt Carlson2c49a442010-09-30 10:34:35 +000014670 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
14671 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014672 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
14673
Matt Carlson2c49a442010-09-30 10:34:35 +000014674 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070014675
14676 /* Increment the rx prod index on the rx std ring by at most
14677 * 8 for these chips to workaround hw errata.
14678 */
14679 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14680 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14681 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
14682 tp->rx_std_max_post = 8;
14683
Joe Perches63c3a662011-04-26 08:12:10 +000014684 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070014685 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
14686 PCIE_PWR_MGMT_L1_THRESH_MSK;
14687
Linus Torvalds1da177e2005-04-16 15:20:36 -070014688 return err;
14689}
14690
David S. Miller49b6e95f2007-03-29 01:38:42 -070014691#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014692static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
14693{
14694 struct net_device *dev = tp->dev;
14695 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014696 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070014697 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014698 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014699
David S. Miller49b6e95f2007-03-29 01:38:42 -070014700 addr = of_get_property(dp, "local-mac-address", &len);
14701 if (addr && len == 6) {
14702 memcpy(dev->dev_addr, addr, 6);
14703 memcpy(dev->perm_addr, dev->dev_addr, 6);
14704 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014705 }
14706 return -ENODEV;
14707}
14708
14709static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
14710{
14711 struct net_device *dev = tp->dev;
14712
14713 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070014714 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014715 return 0;
14716}
14717#endif
14718
14719static int __devinit tg3_get_device_address(struct tg3 *tp)
14720{
14721 struct net_device *dev = tp->dev;
14722 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080014723 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014724
David S. Miller49b6e95f2007-03-29 01:38:42 -070014725#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014726 if (!tg3_get_macaddr_sparc(tp))
14727 return 0;
14728#endif
14729
14730 mac_offset = 0x7c;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014731 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014732 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014733 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
14734 mac_offset = 0xcc;
14735 if (tg3_nvram_lock(tp))
14736 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
14737 else
14738 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000014739 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000014740 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014741 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000014742 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000014743 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014744 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014745 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014746
14747 /* First try to get it from MAC address mailbox. */
14748 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
14749 if ((hi >> 16) == 0x484b) {
14750 dev->dev_addr[0] = (hi >> 8) & 0xff;
14751 dev->dev_addr[1] = (hi >> 0) & 0xff;
14752
14753 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
14754 dev->dev_addr[2] = (lo >> 24) & 0xff;
14755 dev->dev_addr[3] = (lo >> 16) & 0xff;
14756 dev->dev_addr[4] = (lo >> 8) & 0xff;
14757 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014758
Michael Chan008652b2006-03-27 23:14:53 -080014759 /* Some old bootcode may report a 0 MAC address in SRAM */
14760 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
14761 }
14762 if (!addr_ok) {
14763 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000014764 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000014765 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000014766 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070014767 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
14768 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080014769 }
14770 /* Finally just fetch it out of the MAC control regs. */
14771 else {
14772 hi = tr32(MAC_ADDR_0_HIGH);
14773 lo = tr32(MAC_ADDR_0_LOW);
14774
14775 dev->dev_addr[5] = lo & 0xff;
14776 dev->dev_addr[4] = (lo >> 8) & 0xff;
14777 dev->dev_addr[3] = (lo >> 16) & 0xff;
14778 dev->dev_addr[2] = (lo >> 24) & 0xff;
14779 dev->dev_addr[1] = hi & 0xff;
14780 dev->dev_addr[0] = (hi >> 8) & 0xff;
14781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014782 }
14783
14784 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070014785#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014786 if (!tg3_get_default_macaddr_sparc(tp))
14787 return 0;
14788#endif
14789 return -EINVAL;
14790 }
John W. Linville2ff43692005-09-12 14:44:20 -070014791 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014792 return 0;
14793}
14794
David S. Miller59e6b432005-05-18 22:50:10 -070014795#define BOUNDARY_SINGLE_CACHELINE 1
14796#define BOUNDARY_MULTI_CACHELINE 2
14797
14798static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
14799{
14800 int cacheline_size;
14801 u8 byte;
14802 int goal;
14803
14804 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
14805 if (byte == 0)
14806 cacheline_size = 1024;
14807 else
14808 cacheline_size = (int) byte * 4;
14809
14810 /* On 5703 and later chips, the boundary bits have no
14811 * effect.
14812 */
14813 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14814 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014815 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070014816 goto out;
14817
14818#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
14819 goal = BOUNDARY_MULTI_CACHELINE;
14820#else
14821#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
14822 goal = BOUNDARY_SINGLE_CACHELINE;
14823#else
14824 goal = 0;
14825#endif
14826#endif
14827
Joe Perches63c3a662011-04-26 08:12:10 +000014828 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014829 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
14830 goto out;
14831 }
14832
David S. Miller59e6b432005-05-18 22:50:10 -070014833 if (!goal)
14834 goto out;
14835
14836 /* PCI controllers on most RISC systems tend to disconnect
14837 * when a device tries to burst across a cache-line boundary.
14838 * Therefore, letting tg3 do so just wastes PCI bandwidth.
14839 *
14840 * Unfortunately, for PCI-E there are only limited
14841 * write-side controls for this, and thus for reads
14842 * we will still get the disconnects. We'll also waste
14843 * these PCI cycles for both read and write for chips
14844 * other than 5700 and 5701 which do not implement the
14845 * boundary bits.
14846 */
Joe Perches63c3a662011-04-26 08:12:10 +000014847 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014848 switch (cacheline_size) {
14849 case 16:
14850 case 32:
14851 case 64:
14852 case 128:
14853 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14854 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
14855 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
14856 } else {
14857 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14858 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14859 }
14860 break;
14861
14862 case 256:
14863 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
14864 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
14865 break;
14866
14867 default:
14868 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14869 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14870 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014871 }
Joe Perches63c3a662011-04-26 08:12:10 +000014872 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014873 switch (cacheline_size) {
14874 case 16:
14875 case 32:
14876 case 64:
14877 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14878 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14879 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
14880 break;
14881 }
14882 /* fallthrough */
14883 case 128:
14884 default:
14885 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14886 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
14887 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014888 }
David S. Miller59e6b432005-05-18 22:50:10 -070014889 } else {
14890 switch (cacheline_size) {
14891 case 16:
14892 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14893 val |= (DMA_RWCTRL_READ_BNDRY_16 |
14894 DMA_RWCTRL_WRITE_BNDRY_16);
14895 break;
14896 }
14897 /* fallthrough */
14898 case 32:
14899 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14900 val |= (DMA_RWCTRL_READ_BNDRY_32 |
14901 DMA_RWCTRL_WRITE_BNDRY_32);
14902 break;
14903 }
14904 /* fallthrough */
14905 case 64:
14906 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14907 val |= (DMA_RWCTRL_READ_BNDRY_64 |
14908 DMA_RWCTRL_WRITE_BNDRY_64);
14909 break;
14910 }
14911 /* fallthrough */
14912 case 128:
14913 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14914 val |= (DMA_RWCTRL_READ_BNDRY_128 |
14915 DMA_RWCTRL_WRITE_BNDRY_128);
14916 break;
14917 }
14918 /* fallthrough */
14919 case 256:
14920 val |= (DMA_RWCTRL_READ_BNDRY_256 |
14921 DMA_RWCTRL_WRITE_BNDRY_256);
14922 break;
14923 case 512:
14924 val |= (DMA_RWCTRL_READ_BNDRY_512 |
14925 DMA_RWCTRL_WRITE_BNDRY_512);
14926 break;
14927 case 1024:
14928 default:
14929 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
14930 DMA_RWCTRL_WRITE_BNDRY_1024);
14931 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014932 }
David S. Miller59e6b432005-05-18 22:50:10 -070014933 }
14934
14935out:
14936 return val;
14937}
14938
Linus Torvalds1da177e2005-04-16 15:20:36 -070014939static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
14940{
14941 struct tg3_internal_buffer_desc test_desc;
14942 u32 sram_dma_descs;
14943 int i, ret;
14944
14945 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
14946
14947 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
14948 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
14949 tw32(RDMAC_STATUS, 0);
14950 tw32(WDMAC_STATUS, 0);
14951
14952 tw32(BUFMGR_MODE, 0);
14953 tw32(FTQ_RESET, 0);
14954
14955 test_desc.addr_hi = ((u64) buf_dma) >> 32;
14956 test_desc.addr_lo = buf_dma & 0xffffffff;
14957 test_desc.nic_mbuf = 0x00002100;
14958 test_desc.len = size;
14959
14960 /*
14961 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
14962 * the *second* time the tg3 driver was getting loaded after an
14963 * initial scan.
14964 *
14965 * Broadcom tells me:
14966 * ...the DMA engine is connected to the GRC block and a DMA
14967 * reset may affect the GRC block in some unpredictable way...
14968 * The behavior of resets to individual blocks has not been tested.
14969 *
14970 * Broadcom noted the GRC reset will also reset all sub-components.
14971 */
14972 if (to_device) {
14973 test_desc.cqid_sqid = (13 << 8) | 2;
14974
14975 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
14976 udelay(40);
14977 } else {
14978 test_desc.cqid_sqid = (16 << 8) | 7;
14979
14980 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
14981 udelay(40);
14982 }
14983 test_desc.flags = 0x00000005;
14984
14985 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
14986 u32 val;
14987
14988 val = *(((u32 *)&test_desc) + i);
14989 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
14990 sram_dma_descs + (i * sizeof(u32)));
14991 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
14992 }
14993 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
14994
Matt Carlson859a588792010-04-05 10:19:28 +000014995 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014996 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000014997 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014998 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014999
15000 ret = -ENODEV;
15001 for (i = 0; i < 40; i++) {
15002 u32 val;
15003
15004 if (to_device)
15005 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
15006 else
15007 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
15008 if ((val & 0xffff) == sram_dma_descs) {
15009 ret = 0;
15010 break;
15011 }
15012
15013 udelay(100);
15014 }
15015
15016 return ret;
15017}
15018
David S. Millerded73402005-05-23 13:59:47 -070015019#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070015020
Matt Carlson41434702011-03-09 16:58:22 +000015021static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080015022 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
15023 { },
15024};
15025
Linus Torvalds1da177e2005-04-16 15:20:36 -070015026static int __devinit tg3_test_dma(struct tg3 *tp)
15027{
15028 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070015029 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015030 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015031
Matt Carlson4bae65c2010-11-24 08:31:52 +000015032 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
15033 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015034 if (!buf) {
15035 ret = -ENOMEM;
15036 goto out_nofree;
15037 }
15038
15039 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
15040 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
15041
David S. Miller59e6b432005-05-18 22:50:10 -070015042 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015043
Joe Perches63c3a662011-04-26 08:12:10 +000015044 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015045 goto out;
15046
Joe Perches63c3a662011-04-26 08:12:10 +000015047 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015048 /* DMA read watermark not used on PCIE */
15049 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000015050 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070015051 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
15052 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015053 tp->dma_rwctrl |= 0x003f0000;
15054 else
15055 tp->dma_rwctrl |= 0x003f000f;
15056 } else {
15057 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
15058 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
15059 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080015060 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015061
Michael Chan4a29cc22006-03-19 13:21:12 -080015062 /* If the 5704 is behind the EPB bridge, we can
15063 * do the less restrictive ONE_DMA workaround for
15064 * better performance.
15065 */
Joe Perches63c3a662011-04-26 08:12:10 +000015066 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080015067 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
15068 tp->dma_rwctrl |= 0x8000;
15069 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015070 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
15071
Michael Chan49afdeb2007-02-13 12:17:03 -080015072 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
15073 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070015074 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080015075 tp->dma_rwctrl |=
15076 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
15077 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
15078 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070015079 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
15080 /* 5780 always in PCIX mode */
15081 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070015082 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
15083 /* 5714 always in PCIX mode */
15084 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015085 } else {
15086 tp->dma_rwctrl |= 0x001b000f;
15087 }
15088 }
15089
15090 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
15091 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
15092 tp->dma_rwctrl &= 0xfffffff0;
15093
15094 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
15095 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
15096 /* Remove this if it causes problems for some boards. */
15097 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
15098
15099 /* On 5700/5701 chips, we need to set this bit.
15100 * Otherwise the chip will issue cacheline transactions
15101 * to streamable DMA memory with not all the byte
15102 * enables turned on. This is an error on several
15103 * RISC PCI controllers, in particular sparc64.
15104 *
15105 * On 5703/5704 chips, this bit has been reassigned
15106 * a different meaning. In particular, it is used
15107 * on those chips to enable a PCI-X workaround.
15108 */
15109 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
15110 }
15111
15112 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15113
15114#if 0
15115 /* Unneeded, already done by tg3_get_invariants. */
15116 tg3_switch_clocks(tp);
15117#endif
15118
Linus Torvalds1da177e2005-04-16 15:20:36 -070015119 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
15120 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
15121 goto out;
15122
David S. Miller59e6b432005-05-18 22:50:10 -070015123 /* It is best to perform DMA test with maximum write burst size
15124 * to expose the 5700/5701 write DMA bug.
15125 */
15126 saved_dma_rwctrl = tp->dma_rwctrl;
15127 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15128 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15129
Linus Torvalds1da177e2005-04-16 15:20:36 -070015130 while (1) {
15131 u32 *p = buf, i;
15132
15133 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
15134 p[i] = i;
15135
15136 /* Send the buffer to the chip. */
15137 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
15138 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000015139 dev_err(&tp->pdev->dev,
15140 "%s: Buffer write failed. err = %d\n",
15141 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015142 break;
15143 }
15144
15145#if 0
15146 /* validate data reached card RAM correctly. */
15147 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15148 u32 val;
15149 tg3_read_mem(tp, 0x2100 + (i*4), &val);
15150 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000015151 dev_err(&tp->pdev->dev,
15152 "%s: Buffer corrupted on device! "
15153 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015154 /* ret = -ENODEV here? */
15155 }
15156 p[i] = 0;
15157 }
15158#endif
15159 /* Now read it back. */
15160 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
15161 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000015162 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
15163 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015164 break;
15165 }
15166
15167 /* Verify it. */
15168 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15169 if (p[i] == i)
15170 continue;
15171
David S. Miller59e6b432005-05-18 22:50:10 -070015172 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15173 DMA_RWCTRL_WRITE_BNDRY_16) {
15174 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015175 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
15176 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15177 break;
15178 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000015179 dev_err(&tp->pdev->dev,
15180 "%s: Buffer corrupted on read back! "
15181 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015182 ret = -ENODEV;
15183 goto out;
15184 }
15185 }
15186
15187 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
15188 /* Success. */
15189 ret = 0;
15190 break;
15191 }
15192 }
David S. Miller59e6b432005-05-18 22:50:10 -070015193 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15194 DMA_RWCTRL_WRITE_BNDRY_16) {
15195 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070015196 * now look for chipsets that are known to expose the
15197 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070015198 */
Matt Carlson41434702011-03-09 16:58:22 +000015199 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015200 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15201 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000015202 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015203 /* Safe to use the calculated DMA boundary. */
15204 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000015205 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070015206
David S. Miller59e6b432005-05-18 22:50:10 -070015207 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015209
15210out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000015211 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015212out_nofree:
15213 return ret;
15214}
15215
Linus Torvalds1da177e2005-04-16 15:20:36 -070015216static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
15217{
Joe Perches63c3a662011-04-26 08:12:10 +000015218 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000015219 tp->bufmgr_config.mbuf_read_dma_low_water =
15220 DEFAULT_MB_RDMA_LOW_WATER_5705;
15221 tp->bufmgr_config.mbuf_mac_rx_low_water =
15222 DEFAULT_MB_MACRX_LOW_WATER_57765;
15223 tp->bufmgr_config.mbuf_high_water =
15224 DEFAULT_MB_HIGH_WATER_57765;
15225
15226 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15227 DEFAULT_MB_RDMA_LOW_WATER_5705;
15228 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15229 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
15230 tp->bufmgr_config.mbuf_high_water_jumbo =
15231 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000015232 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070015233 tp->bufmgr_config.mbuf_read_dma_low_water =
15234 DEFAULT_MB_RDMA_LOW_WATER_5705;
15235 tp->bufmgr_config.mbuf_mac_rx_low_water =
15236 DEFAULT_MB_MACRX_LOW_WATER_5705;
15237 tp->bufmgr_config.mbuf_high_water =
15238 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070015239 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
15240 tp->bufmgr_config.mbuf_mac_rx_low_water =
15241 DEFAULT_MB_MACRX_LOW_WATER_5906;
15242 tp->bufmgr_config.mbuf_high_water =
15243 DEFAULT_MB_HIGH_WATER_5906;
15244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015245
Michael Chanfdfec1722005-07-25 12:31:48 -070015246 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15247 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
15248 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15249 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
15250 tp->bufmgr_config.mbuf_high_water_jumbo =
15251 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
15252 } else {
15253 tp->bufmgr_config.mbuf_read_dma_low_water =
15254 DEFAULT_MB_RDMA_LOW_WATER;
15255 tp->bufmgr_config.mbuf_mac_rx_low_water =
15256 DEFAULT_MB_MACRX_LOW_WATER;
15257 tp->bufmgr_config.mbuf_high_water =
15258 DEFAULT_MB_HIGH_WATER;
15259
15260 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15261 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
15262 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15263 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
15264 tp->bufmgr_config.mbuf_high_water_jumbo =
15265 DEFAULT_MB_HIGH_WATER_JUMBO;
15266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015267
15268 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
15269 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
15270}
15271
15272static char * __devinit tg3_phy_string(struct tg3 *tp)
15273{
Matt Carlson79eb6902010-02-17 15:17:03 +000015274 switch (tp->phy_id & TG3_PHY_ID_MASK) {
15275 case TG3_PHY_ID_BCM5400: return "5400";
15276 case TG3_PHY_ID_BCM5401: return "5401";
15277 case TG3_PHY_ID_BCM5411: return "5411";
15278 case TG3_PHY_ID_BCM5701: return "5701";
15279 case TG3_PHY_ID_BCM5703: return "5703";
15280 case TG3_PHY_ID_BCM5704: return "5704";
15281 case TG3_PHY_ID_BCM5705: return "5705";
15282 case TG3_PHY_ID_BCM5750: return "5750";
15283 case TG3_PHY_ID_BCM5752: return "5752";
15284 case TG3_PHY_ID_BCM5714: return "5714";
15285 case TG3_PHY_ID_BCM5780: return "5780";
15286 case TG3_PHY_ID_BCM5755: return "5755";
15287 case TG3_PHY_ID_BCM5787: return "5787";
15288 case TG3_PHY_ID_BCM5784: return "5784";
15289 case TG3_PHY_ID_BCM5756: return "5722/5756";
15290 case TG3_PHY_ID_BCM5906: return "5906";
15291 case TG3_PHY_ID_BCM5761: return "5761";
15292 case TG3_PHY_ID_BCM5718C: return "5718C";
15293 case TG3_PHY_ID_BCM5718S: return "5718S";
15294 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000015295 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000015296 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000015297 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070015298 case 0: return "serdes";
15299 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070015300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015301}
15302
Michael Chanf9804dd2005-09-27 12:13:10 -070015303static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
15304{
Joe Perches63c3a662011-04-26 08:12:10 +000015305 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015306 strcpy(str, "PCI Express");
15307 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000015308 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015309 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
15310
15311 strcpy(str, "PCIX:");
15312
15313 if ((clock_ctrl == 7) ||
15314 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
15315 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
15316 strcat(str, "133MHz");
15317 else if (clock_ctrl == 0)
15318 strcat(str, "33MHz");
15319 else if (clock_ctrl == 2)
15320 strcat(str, "50MHz");
15321 else if (clock_ctrl == 4)
15322 strcat(str, "66MHz");
15323 else if (clock_ctrl == 6)
15324 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070015325 } else {
15326 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000015327 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070015328 strcat(str, "66MHz");
15329 else
15330 strcat(str, "33MHz");
15331 }
Joe Perches63c3a662011-04-26 08:12:10 +000015332 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070015333 strcat(str, ":32-bit");
15334 else
15335 strcat(str, ":64-bit");
15336 return str;
15337}
15338
Michael Chan8c2dc7e2005-12-19 16:26:02 -080015339static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015340{
15341 struct pci_dev *peer;
15342 unsigned int func, devnr = tp->pdev->devfn & ~7;
15343
15344 for (func = 0; func < 8; func++) {
15345 peer = pci_get_slot(tp->pdev->bus, devnr | func);
15346 if (peer && peer != tp->pdev)
15347 break;
15348 pci_dev_put(peer);
15349 }
Michael Chan16fe9d72005-12-13 21:09:54 -080015350 /* 5704 can be configured in single-port mode, set peer to
15351 * tp->pdev in that case.
15352 */
15353 if (!peer) {
15354 peer = tp->pdev;
15355 return peer;
15356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015357
15358 /*
15359 * We don't need to keep the refcount elevated; there's no way
15360 * to remove one half of this device without removing the other
15361 */
15362 pci_dev_put(peer);
15363
15364 return peer;
15365}
15366
David S. Miller15f98502005-05-18 22:49:26 -070015367static void __devinit tg3_init_coal(struct tg3 *tp)
15368{
15369 struct ethtool_coalesce *ec = &tp->coal;
15370
15371 memset(ec, 0, sizeof(*ec));
15372 ec->cmd = ETHTOOL_GCOALESCE;
15373 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
15374 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
15375 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
15376 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
15377 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
15378 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
15379 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
15380 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
15381 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
15382
15383 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
15384 HOSTCC_MODE_CLRTICK_TXBD)) {
15385 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
15386 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
15387 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
15388 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
15389 }
Michael Chand244c892005-07-05 14:42:33 -070015390
Joe Perches63c3a662011-04-26 08:12:10 +000015391 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070015392 ec->rx_coalesce_usecs_irq = 0;
15393 ec->tx_coalesce_usecs_irq = 0;
15394 ec->stats_block_coalesce_usecs = 0;
15395 }
David S. Miller15f98502005-05-18 22:49:26 -070015396}
15397
Matt Carlson65ec6982012-02-28 23:33:37 +000015398static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
15399 struct rtnl_link_stats64 *stats)
15400{
15401 struct tg3 *tp = netdev_priv(dev);
15402
15403 if (!tp->hw_stats)
15404 return &tp->net_stats_prev;
15405
15406 spin_lock_bh(&tp->lock);
15407 tg3_get_nstats(tp, stats);
15408 spin_unlock_bh(&tp->lock);
15409
15410 return stats;
15411}
15412
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080015413static const struct net_device_ops tg3_netdev_ops = {
15414 .ndo_open = tg3_open,
15415 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080015416 .ndo_start_xmit = tg3_start_xmit,
Eric Dumazet511d2222010-07-07 20:44:24 +000015417 .ndo_get_stats64 = tg3_get_stats64,
Stephen Hemminger00829822008-11-20 20:14:53 -080015418 .ndo_validate_addr = eth_validate_addr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +000015419 .ndo_set_rx_mode = tg3_set_rx_mode,
Stephen Hemminger00829822008-11-20 20:14:53 -080015420 .ndo_set_mac_address = tg3_set_mac_addr,
15421 .ndo_do_ioctl = tg3_ioctl,
15422 .ndo_tx_timeout = tg3_tx_timeout,
15423 .ndo_change_mtu = tg3_change_mtu,
Michał Mirosławdc668912011-04-07 03:35:07 +000015424 .ndo_fix_features = tg3_fix_features,
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015425 .ndo_set_features = tg3_set_features,
Stephen Hemminger00829822008-11-20 20:14:53 -080015426#ifdef CONFIG_NET_POLL_CONTROLLER
15427 .ndo_poll_controller = tg3_poll_controller,
15428#endif
15429};
15430
Linus Torvalds1da177e2005-04-16 15:20:36 -070015431static int __devinit tg3_init_one(struct pci_dev *pdev,
15432 const struct pci_device_id *ent)
15433{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015434 struct net_device *dev;
15435 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000015436 int i, err, pm_cap;
15437 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070015438 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080015439 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000015440 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015441
Joe Perches05dbe002010-02-17 19:44:19 +000015442 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015443
15444 err = pci_enable_device(pdev);
15445 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015446 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015447 return err;
15448 }
15449
Linus Torvalds1da177e2005-04-16 15:20:36 -070015450 err = pci_request_regions(pdev, DRV_MODULE_NAME);
15451 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015452 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015453 goto err_out_disable_pdev;
15454 }
15455
15456 pci_set_master(pdev);
15457
15458 /* Find power-management capability. */
15459 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
15460 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000015461 dev_err(&pdev->dev,
15462 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015463 err = -EIO;
15464 goto err_out_free_res;
15465 }
15466
Matt Carlson16821282011-07-13 09:27:28 +000015467 err = pci_set_power_state(pdev, PCI_D0);
15468 if (err) {
15469 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
15470 goto err_out_free_res;
15471 }
15472
Matt Carlsonfe5f5782009-09-01 13:09:39 +000015473 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015474 if (!dev) {
Matt Carlson2445e462010-04-05 10:19:21 +000015475 dev_err(&pdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015476 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000015477 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015478 }
15479
Linus Torvalds1da177e2005-04-16 15:20:36 -070015480 SET_NETDEV_DEV(dev, &pdev->dev);
15481
Linus Torvalds1da177e2005-04-16 15:20:36 -070015482 tp = netdev_priv(dev);
15483 tp->pdev = pdev;
15484 tp->dev = dev;
15485 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015486 tp->rx_mode = TG3_DEF_RX_MODE;
15487 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070015488
Linus Torvalds1da177e2005-04-16 15:20:36 -070015489 if (tg3_debug > 0)
15490 tp->msg_enable = tg3_debug;
15491 else
15492 tp->msg_enable = TG3_DEF_MSG_ENABLE;
15493
15494 /* The word/byte swap controls here control register access byte
15495 * swapping. DMA data byte swapping is controlled in the GRC_MODE
15496 * setting below.
15497 */
15498 tp->misc_host_ctrl =
15499 MISC_HOST_CTRL_MASK_PCI_INT |
15500 MISC_HOST_CTRL_WORD_SWAP |
15501 MISC_HOST_CTRL_INDIR_ACCESS |
15502 MISC_HOST_CTRL_PCISTATE_RW;
15503
15504 /* The NONFRM (non-frame) byte/word swap controls take effect
15505 * on descriptor entries, anything which isn't packet data.
15506 *
15507 * The StrongARM chips on the board (one for tx, one for rx)
15508 * are running in big-endian mode.
15509 */
15510 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
15511 GRC_MODE_WSWAP_NONFRM_DATA);
15512#ifdef __BIG_ENDIAN
15513 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
15514#endif
15515 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015516 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000015517 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015518
Matt Carlsond5fe4882008-11-21 17:20:32 -080015519 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010015520 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015521 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015522 err = -ENOMEM;
15523 goto err_out_free_dev;
15524 }
15525
Matt Carlsonc9cab242011-07-13 09:27:27 +000015526 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
15527 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
15528 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
15529 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
15530 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15531 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15532 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
15533 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720) {
15534 tg3_flag_set(tp, ENABLE_APE);
15535 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
15536 if (!tp->aperegs) {
15537 dev_err(&pdev->dev,
15538 "Cannot map APE registers, aborting\n");
15539 err = -ENOMEM;
15540 goto err_out_iounmap;
15541 }
15542 }
15543
Linus Torvalds1da177e2005-04-16 15:20:36 -070015544 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
15545 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015546
Linus Torvalds1da177e2005-04-16 15:20:36 -070015547 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015548 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000015549 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015550 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015551
15552 err = tg3_get_invariants(tp);
15553 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015554 dev_err(&pdev->dev,
15555 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015556 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015557 }
15558
Michael Chan4a29cc22006-03-19 13:21:12 -080015559 /* The EPB bridge inside 5714, 5715, and 5780 and any
15560 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015561 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
15562 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
15563 * do DMA address check in tg3_start_xmit().
15564 */
Joe Perches63c3a662011-04-26 08:12:10 +000015565 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070015566 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000015567 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070015568 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080015569#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070015570 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015571#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080015572 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070015573 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015574
15575 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070015576 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080015577 err = pci_set_dma_mask(pdev, dma_mask);
15578 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000015579 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080015580 err = pci_set_consistent_dma_mask(pdev,
15581 persist_dma_mask);
15582 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015583 dev_err(&pdev->dev, "Unable to obtain 64 bit "
15584 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015585 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015586 }
15587 }
15588 }
Yang Hongyang284901a2009-04-06 19:01:15 -070015589 if (err || dma_mask == DMA_BIT_MASK(32)) {
15590 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080015591 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015592 dev_err(&pdev->dev,
15593 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015594 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015595 }
15596 }
15597
Michael Chanfdfec1722005-07-25 12:31:48 -070015598 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015599
Matt Carlson0da06062011-05-19 12:12:53 +000015600 features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
15601
15602 /* 5700 B0 chips do not support checksumming correctly due
15603 * to hardware bugs.
15604 */
15605 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
15606 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
15607
15608 if (tg3_flag(tp, 5755_PLUS))
15609 features |= NETIF_F_IPV6_CSUM;
15610 }
15611
Michael Chan4e3a7aa2006-03-20 17:47:44 -080015612 /* TSO is on by default on chips that support hardware TSO.
15613 * Firmware TSO on older chips gives lower performance, so it
15614 * is off by default, but can be enabled using ethtool.
15615 */
Joe Perches63c3a662011-04-26 08:12:10 +000015616 if ((tg3_flag(tp, HW_TSO_1) ||
15617 tg3_flag(tp, HW_TSO_2) ||
15618 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000015619 (features & NETIF_F_IP_CSUM))
15620 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000015621 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000015622 if (features & NETIF_F_IPV6_CSUM)
15623 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000015624 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000015625 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070015626 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15627 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000015628 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000015629 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000015630 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070015631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015632
Matt Carlsond542fe22011-05-19 16:02:43 +000015633 dev->features |= features;
15634 dev->vlan_features |= features;
15635
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015636 /*
15637 * Add loopback capability only for a subset of devices that support
15638 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
15639 * loopback for the remaining devices.
15640 */
15641 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
15642 !tg3_flag(tp, CPMU_PRESENT))
15643 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000015644 features |= NETIF_F_LOOPBACK;
15645
Matt Carlson0da06062011-05-19 12:12:53 +000015646 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015647
Linus Torvalds1da177e2005-04-16 15:20:36 -070015648 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015649 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015650 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015651 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015652 tp->rx_pending = 63;
15653 }
15654
Linus Torvalds1da177e2005-04-16 15:20:36 -070015655 err = tg3_get_device_address(tp);
15656 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015657 dev_err(&pdev->dev,
15658 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015659 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015660 }
15661
Matt Carlsonc88864d2007-11-12 21:07:01 -080015662 /*
15663 * Reset chip in case UNDI or EFI driver did not shutdown
15664 * DMA self test will enable WDMAC and we'll see (spurious)
15665 * pending DMA on the PCI bus at that point.
15666 */
15667 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
15668 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
15669 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
15670 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
15671 }
15672
15673 err = tg3_test_dma(tp);
15674 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015675 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080015676 goto err_out_apeunmap;
15677 }
15678
Matt Carlson78f90dc2009-11-13 13:03:42 +000015679 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
15680 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
15681 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000015682 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000015683 struct tg3_napi *tnapi = &tp->napi[i];
15684
15685 tnapi->tp = tp;
15686 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
15687
15688 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000015689 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015690 intmbx += 0x8;
15691 else
15692 intmbx += 0x4;
15693
15694 tnapi->consmbox = rcvmbx;
15695 tnapi->prodmbox = sndmbx;
15696
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015697 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015698 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015699 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000015700 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000015701
Joe Perches63c3a662011-04-26 08:12:10 +000015702 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000015703 break;
15704
15705 /*
15706 * If we support MSIX, we'll be using RSS. If we're using
15707 * RSS, the first vector only handles link interrupts and the
15708 * remaining vectors handle rx and tx interrupts. Reuse the
15709 * mailbox values for the next iteration. The values we setup
15710 * above are still useful for the single vectored mode.
15711 */
15712 if (!i)
15713 continue;
15714
15715 rcvmbx += 0x8;
15716
15717 if (sndmbx & 0x4)
15718 sndmbx -= 0x4;
15719 else
15720 sndmbx += 0xc;
15721 }
15722
Matt Carlsonc88864d2007-11-12 21:07:01 -080015723 tg3_init_coal(tp);
15724
Michael Chanc49a1562006-12-17 17:07:29 -080015725 pci_set_drvdata(pdev, dev);
15726
Matt Carlsoncd0d7222011-07-13 09:27:33 +000015727 if (tg3_flag(tp, 5717_PLUS)) {
15728 /* Resume a low-power mode */
15729 tg3_frob_aux_power(tp, false);
15730 }
15731
Linus Torvalds1da177e2005-04-16 15:20:36 -070015732 err = register_netdev(dev);
15733 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015734 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015735 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015736 }
15737
Joe Perches05dbe002010-02-17 19:44:19 +000015738 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
15739 tp->board_part_number,
15740 tp->pci_chip_rev_id,
15741 tg3_bus_string(tp, str),
15742 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015743
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015744 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000015745 struct phy_device *phydev;
15746 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000015747 netdev_info(dev,
15748 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000015749 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015750 } else {
15751 char *ethtype;
15752
15753 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
15754 ethtype = "10/100Base-TX";
15755 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
15756 ethtype = "1000Base-SX";
15757 else
15758 ethtype = "10/100/1000Base-T";
15759
Matt Carlson5129c3a2010-04-05 10:19:23 +000015760 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000015761 "(WireSpeed[%d], EEE[%d])\n",
15762 tg3_phy_string(tp), ethtype,
15763 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
15764 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015765 }
Matt Carlsondf59c942008-11-03 16:52:56 -080015766
Joe Perches05dbe002010-02-17 19:44:19 +000015767 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000015768 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015769 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015770 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015771 tg3_flag(tp, ENABLE_ASF) != 0,
15772 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000015773 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
15774 tp->dma_rwctrl,
15775 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
15776 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015777
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015778 pci_save_state(pdev);
15779
Linus Torvalds1da177e2005-04-16 15:20:36 -070015780 return 0;
15781
Matt Carlson0d3031d2007-10-10 18:02:43 -070015782err_out_apeunmap:
15783 if (tp->aperegs) {
15784 iounmap(tp->aperegs);
15785 tp->aperegs = NULL;
15786 }
15787
Linus Torvalds1da177e2005-04-16 15:20:36 -070015788err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070015789 if (tp->regs) {
15790 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015791 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015793
15794err_out_free_dev:
15795 free_netdev(dev);
15796
Matt Carlson16821282011-07-13 09:27:28 +000015797err_out_power_down:
15798 pci_set_power_state(pdev, PCI_D3hot);
15799
Linus Torvalds1da177e2005-04-16 15:20:36 -070015800err_out_free_res:
15801 pci_release_regions(pdev);
15802
15803err_out_disable_pdev:
15804 pci_disable_device(pdev);
15805 pci_set_drvdata(pdev, NULL);
15806 return err;
15807}
15808
15809static void __devexit tg3_remove_one(struct pci_dev *pdev)
15810{
15811 struct net_device *dev = pci_get_drvdata(pdev);
15812
15813 if (dev) {
15814 struct tg3 *tp = netdev_priv(dev);
15815
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015816 if (tp->fw)
15817 release_firmware(tp->fw);
15818
Matt Carlsondb219972011-11-04 09:15:03 +000015819 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015820
David S. Miller1805b2f2011-10-24 18:18:09 -040015821 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015822 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015823 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015824 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070015825
Linus Torvalds1da177e2005-04-16 15:20:36 -070015826 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015827 if (tp->aperegs) {
15828 iounmap(tp->aperegs);
15829 tp->aperegs = NULL;
15830 }
Michael Chan68929142005-08-09 20:17:14 -070015831 if (tp->regs) {
15832 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015833 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015835 free_netdev(dev);
15836 pci_release_regions(pdev);
15837 pci_disable_device(pdev);
15838 pci_set_drvdata(pdev, NULL);
15839 }
15840}
15841
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015842#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015843static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015844{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015845 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015846 struct net_device *dev = pci_get_drvdata(pdev);
15847 struct tg3 *tp = netdev_priv(dev);
15848 int err;
15849
15850 if (!netif_running(dev))
15851 return 0;
15852
Matt Carlsondb219972011-11-04 09:15:03 +000015853 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015854 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015855 tg3_netif_stop(tp);
15856
15857 del_timer_sync(&tp->timer);
15858
David S. Millerf47c11e2005-06-24 20:18:35 -070015859 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015860 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070015861 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015862
15863 netif_device_detach(dev);
15864
David S. Millerf47c11e2005-06-24 20:18:35 -070015865 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070015866 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000015867 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070015868 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015869
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015870 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015871 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015872 int err2;
15873
David S. Millerf47c11e2005-06-24 20:18:35 -070015874 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015875
Joe Perches63c3a662011-04-26 08:12:10 +000015876 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015877 err2 = tg3_restart_hw(tp, 1);
15878 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070015879 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015880
15881 tp->timer.expires = jiffies + tp->timer_offset;
15882 add_timer(&tp->timer);
15883
15884 netif_device_attach(dev);
15885 tg3_netif_start(tp);
15886
Michael Chanb9ec6c12006-07-25 16:37:27 -070015887out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015888 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015889
15890 if (!err2)
15891 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015892 }
15893
15894 return err;
15895}
15896
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015897static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015898{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015899 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015900 struct net_device *dev = pci_get_drvdata(pdev);
15901 struct tg3 *tp = netdev_priv(dev);
15902 int err;
15903
15904 if (!netif_running(dev))
15905 return 0;
15906
Linus Torvalds1da177e2005-04-16 15:20:36 -070015907 netif_device_attach(dev);
15908
David S. Millerf47c11e2005-06-24 20:18:35 -070015909 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015910
Joe Perches63c3a662011-04-26 08:12:10 +000015911 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070015912 err = tg3_restart_hw(tp, 1);
15913 if (err)
15914 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015915
15916 tp->timer.expires = jiffies + tp->timer_offset;
15917 add_timer(&tp->timer);
15918
Linus Torvalds1da177e2005-04-16 15:20:36 -070015919 tg3_netif_start(tp);
15920
Michael Chanb9ec6c12006-07-25 16:37:27 -070015921out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015922 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015923
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015924 if (!err)
15925 tg3_phy_start(tp);
15926
Michael Chanb9ec6c12006-07-25 16:37:27 -070015927 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015928}
15929
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015930static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015931#define TG3_PM_OPS (&tg3_pm_ops)
15932
15933#else
15934
15935#define TG3_PM_OPS NULL
15936
15937#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015938
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015939/**
15940 * tg3_io_error_detected - called when PCI error is detected
15941 * @pdev: Pointer to PCI device
15942 * @state: The current pci connection state
15943 *
15944 * This function is called after a PCI bus error affecting
15945 * this device has been detected.
15946 */
15947static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
15948 pci_channel_state_t state)
15949{
15950 struct net_device *netdev = pci_get_drvdata(pdev);
15951 struct tg3 *tp = netdev_priv(netdev);
15952 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
15953
15954 netdev_info(netdev, "PCI I/O error detected\n");
15955
15956 rtnl_lock();
15957
15958 if (!netif_running(netdev))
15959 goto done;
15960
15961 tg3_phy_stop(tp);
15962
15963 tg3_netif_stop(tp);
15964
15965 del_timer_sync(&tp->timer);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015966
15967 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000015968 tg3_reset_task_cancel(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000015969 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015970
15971 netif_device_detach(netdev);
15972
15973 /* Clean up software state, even if MMIO is blocked */
15974 tg3_full_lock(tp, 0);
15975 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
15976 tg3_full_unlock(tp);
15977
15978done:
15979 if (state == pci_channel_io_perm_failure)
15980 err = PCI_ERS_RESULT_DISCONNECT;
15981 else
15982 pci_disable_device(pdev);
15983
15984 rtnl_unlock();
15985
15986 return err;
15987}
15988
15989/**
15990 * tg3_io_slot_reset - called after the pci bus has been reset.
15991 * @pdev: Pointer to PCI device
15992 *
15993 * Restart the card from scratch, as if from a cold-boot.
15994 * At this point, the card has exprienced a hard reset,
15995 * followed by fixups by BIOS, and has its config space
15996 * set up identically to what it was at cold boot.
15997 */
15998static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
15999{
16000 struct net_device *netdev = pci_get_drvdata(pdev);
16001 struct tg3 *tp = netdev_priv(netdev);
16002 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
16003 int err;
16004
16005 rtnl_lock();
16006
16007 if (pci_enable_device(pdev)) {
16008 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
16009 goto done;
16010 }
16011
16012 pci_set_master(pdev);
16013 pci_restore_state(pdev);
16014 pci_save_state(pdev);
16015
16016 if (!netif_running(netdev)) {
16017 rc = PCI_ERS_RESULT_RECOVERED;
16018 goto done;
16019 }
16020
16021 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000016022 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016023 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016024
16025 rc = PCI_ERS_RESULT_RECOVERED;
16026
16027done:
16028 rtnl_unlock();
16029
16030 return rc;
16031}
16032
16033/**
16034 * tg3_io_resume - called when traffic can start flowing again.
16035 * @pdev: Pointer to PCI device
16036 *
16037 * This callback is called when the error recovery driver tells
16038 * us that its OK to resume normal operation.
16039 */
16040static void tg3_io_resume(struct pci_dev *pdev)
16041{
16042 struct net_device *netdev = pci_get_drvdata(pdev);
16043 struct tg3 *tp = netdev_priv(netdev);
16044 int err;
16045
16046 rtnl_lock();
16047
16048 if (!netif_running(netdev))
16049 goto done;
16050
16051 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000016052 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016053 err = tg3_restart_hw(tp, 1);
16054 tg3_full_unlock(tp);
16055 if (err) {
16056 netdev_err(netdev, "Cannot restart hardware after reset.\n");
16057 goto done;
16058 }
16059
16060 netif_device_attach(netdev);
16061
16062 tp->timer.expires = jiffies + tp->timer_offset;
16063 add_timer(&tp->timer);
16064
16065 tg3_netif_start(tp);
16066
16067 tg3_phy_start(tp);
16068
16069done:
16070 rtnl_unlock();
16071}
16072
16073static struct pci_error_handlers tg3_err_handler = {
16074 .error_detected = tg3_io_error_detected,
16075 .slot_reset = tg3_io_slot_reset,
16076 .resume = tg3_io_resume
16077};
16078
Linus Torvalds1da177e2005-04-16 15:20:36 -070016079static struct pci_driver tg3_driver = {
16080 .name = DRV_MODULE_NAME,
16081 .id_table = tg3_pci_tbl,
16082 .probe = tg3_init_one,
16083 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016084 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000016085 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016086};
16087
16088static int __init tg3_init(void)
16089{
Jeff Garzik29917622006-08-19 17:48:59 -040016090 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016091}
16092
16093static void __exit tg3_cleanup(void)
16094{
16095 pci_unregister_driver(&tg3_driver);
16096}
16097
16098module_init(tg3_init);
16099module_exit(tg3_cleanup);