blob: ceeab8e852ef6a2cf86b682bb17bd0f17ab5ade8 [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 Carlson9e056c02012-02-13 15:20:17 +00007 * Copyright (C) 2005-2012 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
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000051#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/byteorder.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000053#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
David S. Miller49b6e95f2007-03-29 01:38:42 -070055#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070057#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif
59
Matt Carlson63532392008-11-03 16:49:57 -080060#define BAR_0 0
61#define BAR_2 2
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include "tg3.h"
64
Joe Perches63c3a662011-04-26 08:12:10 +000065/* Functions & macros to verify TG3_FLAGS types */
66
67static inline int _tg3_flag(enum TG3_FLAGS flag, unsigned long *bits)
68{
69 return test_bit(flag, bits);
70}
71
72static inline void _tg3_flag_set(enum TG3_FLAGS flag, unsigned long *bits)
73{
74 set_bit(flag, bits);
75}
76
77static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
78{
79 clear_bit(flag, bits);
80}
81
82#define tg3_flag(tp, flag) \
83 _tg3_flag(TG3_FLAG_##flag, (tp)->tg3_flags)
84#define tg3_flag_set(tp, flag) \
85 _tg3_flag_set(TG3_FLAG_##flag, (tp)->tg3_flags)
86#define tg3_flag_clear(tp, flag) \
87 _tg3_flag_clear(TG3_FLAG_##flag, (tp)->tg3_flags)
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define DRV_MODULE_NAME "tg3"
Matt Carlson6867c842010-07-11 09:31:44 +000090#define TG3_MAJ_NUM 3
Michael Chan7ae52892012-03-21 15:38:33 +000091#define TG3_MIN_NUM 123
Matt Carlson6867c842010-07-11 09:31:44 +000092#define DRV_MODULE_VERSION \
93 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Michael Chan7ae52892012-03-21 15:38:33 +000094#define DRV_MODULE_RELDATE "March 21, 2012"
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Matt Carlsonfd6d3f02011-08-31 11:44:52 +000096#define RESET_KIND_SHUTDOWN 0
97#define RESET_KIND_INIT 1
98#define RESET_KIND_SUSPEND 2
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#define TG3_DEF_RX_MODE 0
101#define TG3_DEF_TX_MODE 0
102#define TG3_DEF_MSG_ENABLE \
103 (NETIF_MSG_DRV | \
104 NETIF_MSG_PROBE | \
105 NETIF_MSG_LINK | \
106 NETIF_MSG_TIMER | \
107 NETIF_MSG_IFDOWN | \
108 NETIF_MSG_IFUP | \
109 NETIF_MSG_RX_ERR | \
110 NETIF_MSG_TX_ERR)
111
Matt Carlson520b2752011-06-13 13:39:02 +0000112#define TG3_GRC_LCLCTL_PWRSW_DELAY 100
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/* length of time before we decide the hardware is borked,
115 * and dev->tx_timeout() should be called to fix the problem
116 */
Joe Perches63c3a662011-04-26 08:12:10 +0000117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define TG3_TX_TIMEOUT (5 * HZ)
119
120/* hardware minimum and maximum for a single frame's data payload */
121#define TG3_MIN_MTU 60
122#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000123 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/* These numbers seem to be hard coded in the NIC firmware somehow.
126 * You can't change the ring sizes, but you can change where you place
127 * them in the NIC onboard memory.
128 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000129#define TG3_RX_STD_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000130 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000131 TG3_RX_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000133#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000134 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000135 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define TG3_DEF_RX_JUMBO_RING_PENDING 100
137
138/* Do not place this n-ring entries value into the tp struct itself,
139 * we really want to expose these constants to GCC so that modulo et
140 * al. operations are done with shifts and masks instead of with
141 * hw multiply/modulo instructions. Another solution would be to
142 * replace things like '% foo' with '& (foo - 1)'.
143 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145#define TG3_TX_RING_SIZE 512
146#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
147
Matt Carlson2c49a442010-09-30 10:34:35 +0000148#define TG3_RX_STD_RING_BYTES(tp) \
149 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
150#define TG3_RX_JMB_RING_BYTES(tp) \
151 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
152#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000153 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
155 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
157
Matt Carlson287be122009-08-28 13:58:46 +0000158#define TG3_DMA_BYTE_ENAB 64
159
160#define TG3_RX_STD_DMA_SZ 1536
161#define TG3_RX_JMB_DMA_SZ 9046
162
163#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
164
165#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
166#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Matt Carlson2c49a442010-09-30 10:34:35 +0000168#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
169 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000170
Matt Carlson2c49a442010-09-30 10:34:35 +0000171#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
172 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000173
Matt Carlsond2757fc2010-04-12 06:58:27 +0000174/* Due to a hardware bug, the 5701 can only DMA to memory addresses
175 * that are at least dword aligned when used in PCIX mode. The driver
176 * works around this bug by double copying the packet. This workaround
177 * is built into the normal double copy length check for efficiency.
178 *
179 * However, the double copy is only necessary on those architectures
180 * where unaligned memory accesses are inefficient. For those architectures
181 * where unaligned memory accesses incur little penalty, we can reintegrate
182 * the 5701 in the normal rx path. Doing so saves a device structure
183 * dereference by hardcoding the double copy threshold in place.
184 */
185#define TG3_RX_COPY_THRESHOLD 256
186#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
187 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
188#else
189 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
190#endif
191
Matt Carlson81389f52011-08-31 11:44:49 +0000192#if (NET_IP_ALIGN != 0)
193#define TG3_RX_OFFSET(tp) ((tp)->rx_offset)
194#else
Eric Dumazet9205fd92011-11-18 06:47:01 +0000195#define TG3_RX_OFFSET(tp) (NET_SKB_PAD)
Matt Carlson81389f52011-08-31 11:44:49 +0000196#endif
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000199#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Matt Carlson55086ad2011-12-14 11:09:59 +0000200#define TG3_TX_BD_DMA_MAX_2K 2048
Matt Carlsona4cb4282011-12-14 11:09:58 +0000201#define TG3_TX_BD_DMA_MAX_4K 4096
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Matt Carlsonad829262008-11-21 17:16:16 -0800203#define TG3_RAW_IP_ALIGN 2
204
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000205#define TG3_FW_UPDATE_TIMEOUT_SEC 5
Matt Carlson21f76382012-02-22 12:35:21 +0000206#define TG3_FW_UPDATE_FREQ_SEC (TG3_FW_UPDATE_TIMEOUT_SEC / 2)
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000207
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 }
Matt Carlsonf891ea12012-04-24 13:37:01 +0000882
883 /* check for TX work to do */
884 if (sblk->idx[0].tx_consumer != tnapi->tx_cons)
885 work_exists = 1;
886
887 /* check for RX work to do */
888 if (tnapi->rx_rcb_prod_idx &&
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000889 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700890 work_exists = 1;
891
892 return work_exists;
893}
894
Matt Carlson17375d22009-08-28 14:02:18 +0000895/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700896 * similar to tg3_enable_ints, but it accurately determines whether there
897 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400898 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 */
Matt Carlson17375d22009-08-28 14:02:18 +0000900static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Matt Carlson17375d22009-08-28 14:02:18 +0000902 struct tg3 *tp = tnapi->tp;
903
Matt Carlson898a56f2009-08-28 14:02:40 +0000904 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 mmiowb();
906
David S. Millerfac9b832005-05-18 22:46:34 -0700907 /* When doing tagged status, this work check is unnecessary.
908 * The last_tag we write above tells the chip which piece of
909 * work we've completed.
910 */
Joe Perches63c3a662011-04-26 08:12:10 +0000911 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700912 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000913 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916static void tg3_switch_clocks(struct tg3 *tp)
917{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000918 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 u32 orig_clock_ctrl;
920
Joe Perches63c3a662011-04-26 08:12:10 +0000921 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700922 return;
923
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000924 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 orig_clock_ctrl = clock_ctrl;
927 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
928 CLOCK_CTRL_CLKRUN_OENABLE |
929 0x1f);
930 tp->pci_clock_ctrl = clock_ctrl;
931
Joe Perches63c3a662011-04-26 08:12:10 +0000932 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800934 tw32_wait_f(TG3PCI_CLOCK_CTRL,
935 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800938 tw32_wait_f(TG3PCI_CLOCK_CTRL,
939 clock_ctrl |
940 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
941 40);
942 tw32_wait_f(TG3PCI_CLOCK_CTRL,
943 clock_ctrl | (CLOCK_CTRL_ALTCLK),
944 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800946 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
949#define PHY_BUSY_LOOPS 5000
950
951static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
952{
953 u32 frame_val;
954 unsigned int loops;
955 int ret;
956
957 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
958 tw32_f(MAC_MI_MODE,
959 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
960 udelay(80);
961 }
962
963 *val = 0x0;
964
Matt Carlson882e9792009-09-01 13:21:36 +0000965 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 MI_COM_PHY_ADDR_MASK);
967 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
968 MI_COM_REG_ADDR_MASK);
969 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 tw32_f(MAC_MI_COM, frame_val);
972
973 loops = PHY_BUSY_LOOPS;
974 while (loops != 0) {
975 udelay(10);
976 frame_val = tr32(MAC_MI_COM);
977
978 if ((frame_val & MI_COM_BUSY) == 0) {
979 udelay(5);
980 frame_val = tr32(MAC_MI_COM);
981 break;
982 }
983 loops -= 1;
984 }
985
986 ret = -EBUSY;
987 if (loops != 0) {
988 *val = frame_val & MI_COM_DATA_MASK;
989 ret = 0;
990 }
991
992 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
993 tw32_f(MAC_MI_MODE, tp->mi_mode);
994 udelay(80);
995 }
996
997 return ret;
998}
999
1000static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
1001{
1002 u32 frame_val;
1003 unsigned int loops;
1004 int ret;
1005
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001006 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson221c5632011-06-13 13:39:01 +00001007 (reg == MII_CTRL1000 || reg == MII_TG3_AUX_CTRL))
Michael Chanb5d37722006-09-27 16:06:21 -07001008 return 0;
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1011 tw32_f(MAC_MI_MODE,
1012 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1013 udelay(80);
1014 }
1015
Matt Carlson882e9792009-09-01 13:21:36 +00001016 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 MI_COM_PHY_ADDR_MASK);
1018 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1019 MI_COM_REG_ADDR_MASK);
1020 frame_val |= (val & MI_COM_DATA_MASK);
1021 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 tw32_f(MAC_MI_COM, frame_val);
1024
1025 loops = PHY_BUSY_LOOPS;
1026 while (loops != 0) {
1027 udelay(10);
1028 frame_val = tr32(MAC_MI_COM);
1029 if ((frame_val & MI_COM_BUSY) == 0) {
1030 udelay(5);
1031 frame_val = tr32(MAC_MI_COM);
1032 break;
1033 }
1034 loops -= 1;
1035 }
1036
1037 ret = -EBUSY;
1038 if (loops != 0)
1039 ret = 0;
1040
1041 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1042 tw32_f(MAC_MI_MODE, tp->mi_mode);
1043 udelay(80);
1044 }
1045
1046 return ret;
1047}
1048
Matt Carlsonb0988c12011-04-20 07:57:39 +00001049static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
1050{
1051 int err;
1052
1053 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1054 if (err)
1055 goto done;
1056
1057 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1058 if (err)
1059 goto done;
1060
1061 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1062 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1063 if (err)
1064 goto done;
1065
1066 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
1067
1068done:
1069 return err;
1070}
1071
1072static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
1073{
1074 int err;
1075
1076 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1077 if (err)
1078 goto done;
1079
1080 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1081 if (err)
1082 goto done;
1083
1084 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1085 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1086 if (err)
1087 goto done;
1088
1089 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
1090
1091done:
1092 return err;
1093}
1094
1095static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
1096{
1097 int err;
1098
1099 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1100 if (!err)
1101 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
1102
1103 return err;
1104}
1105
1106static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1107{
1108 int err;
1109
1110 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1111 if (!err)
1112 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1113
1114 return err;
1115}
1116
Matt Carlson15ee95c2011-04-20 07:57:40 +00001117static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
1118{
1119 int err;
1120
1121 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
1122 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
1123 MII_TG3_AUXCTL_SHDWSEL_MISC);
1124 if (!err)
1125 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
1126
1127 return err;
1128}
1129
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001130static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
1131{
1132 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
1133 set |= MII_TG3_AUXCTL_MISC_WREN;
1134
1135 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
1136}
1137
Matt Carlson1d36ba42011-04-20 07:57:42 +00001138#define TG3_PHY_AUXCTL_SMDSP_ENABLE(tp) \
1139 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1140 MII_TG3_AUXCTL_ACTL_SMDSP_ENA | \
1141 MII_TG3_AUXCTL_ACTL_TX_6DB)
1142
1143#define TG3_PHY_AUXCTL_SMDSP_DISABLE(tp) \
1144 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1145 MII_TG3_AUXCTL_ACTL_TX_6DB);
1146
Matt Carlson95e28692008-05-25 23:44:14 -07001147static int tg3_bmcr_reset(struct tg3 *tp)
1148{
1149 u32 phy_control;
1150 int limit, err;
1151
1152 /* OK, reset it, and poll the BMCR_RESET bit until it
1153 * clears or we time out.
1154 */
1155 phy_control = BMCR_RESET;
1156 err = tg3_writephy(tp, MII_BMCR, phy_control);
1157 if (err != 0)
1158 return -EBUSY;
1159
1160 limit = 5000;
1161 while (limit--) {
1162 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1163 if (err != 0)
1164 return -EBUSY;
1165
1166 if ((phy_control & BMCR_RESET) == 0) {
1167 udelay(40);
1168 break;
1169 }
1170 udelay(10);
1171 }
Roel Kluind4675b52009-02-12 16:33:27 -08001172 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001173 return -EBUSY;
1174
1175 return 0;
1176}
1177
Matt Carlson158d7ab2008-05-29 01:37:54 -07001178static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1179{
Francois Romieu3d165432009-01-19 16:56:50 -08001180 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001181 u32 val;
1182
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001183 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001184
1185 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001186 val = -EIO;
1187
1188 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001189
1190 return val;
1191}
1192
1193static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1194{
Francois Romieu3d165432009-01-19 16:56:50 -08001195 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001196 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001197
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001198 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001199
1200 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001201 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001202
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001203 spin_unlock_bh(&tp->lock);
1204
1205 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001206}
1207
1208static int tg3_mdio_reset(struct mii_bus *bp)
1209{
1210 return 0;
1211}
1212
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001213static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001214{
1215 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001216 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001217
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001218 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001219 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001220 case PHY_ID_BCM50610:
1221 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001222 val = MAC_PHYCFG2_50610_LED_MODES;
1223 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001224 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001225 val = MAC_PHYCFG2_AC131_LED_MODES;
1226 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001227 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001228 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1229 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001230 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001231 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1232 break;
1233 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001234 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001235 }
1236
1237 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1238 tw32(MAC_PHYCFG2, val);
1239
1240 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001241 val &= ~(MAC_PHYCFG1_RGMII_INT |
1242 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1243 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001244 tw32(MAC_PHYCFG1, val);
1245
1246 return;
1247 }
1248
Joe Perches63c3a662011-04-26 08:12:10 +00001249 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001250 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1251 MAC_PHYCFG2_FMODE_MASK_MASK |
1252 MAC_PHYCFG2_GMODE_MASK_MASK |
1253 MAC_PHYCFG2_ACT_MASK_MASK |
1254 MAC_PHYCFG2_QUAL_MASK_MASK |
1255 MAC_PHYCFG2_INBAND_ENABLE;
1256
1257 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001258
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001259 val = tr32(MAC_PHYCFG1);
1260 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1261 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001262 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1263 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001264 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001265 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001266 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1267 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001268 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1269 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1270 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001271
Matt Carlsona9daf362008-05-25 23:49:44 -07001272 val = tr32(MAC_EXT_RGMII_MODE);
1273 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1274 MAC_RGMII_MODE_RX_QUALITY |
1275 MAC_RGMII_MODE_RX_ACTIVITY |
1276 MAC_RGMII_MODE_RX_ENG_DET |
1277 MAC_RGMII_MODE_TX_ENABLE |
1278 MAC_RGMII_MODE_TX_LOWPWR |
1279 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001280 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1281 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001282 val |= MAC_RGMII_MODE_RX_INT_B |
1283 MAC_RGMII_MODE_RX_QUALITY |
1284 MAC_RGMII_MODE_RX_ACTIVITY |
1285 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001286 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001287 val |= MAC_RGMII_MODE_TX_ENABLE |
1288 MAC_RGMII_MODE_TX_LOWPWR |
1289 MAC_RGMII_MODE_TX_RESET;
1290 }
1291 tw32(MAC_EXT_RGMII_MODE, val);
1292}
1293
Matt Carlson158d7ab2008-05-29 01:37:54 -07001294static void tg3_mdio_start(struct tg3 *tp)
1295{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001296 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1297 tw32_f(MAC_MI_MODE, tp->mi_mode);
1298 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001299
Joe Perches63c3a662011-04-26 08:12:10 +00001300 if (tg3_flag(tp, MDIOBUS_INITED) &&
Matt Carlson9ea48182010-02-17 15:17:01 +00001301 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1302 tg3_mdio_config_5785(tp);
1303}
1304
1305static int tg3_mdio_init(struct tg3 *tp)
1306{
1307 int i;
1308 u32 reg;
1309 struct phy_device *phydev;
1310
Joe Perches63c3a662011-04-26 08:12:10 +00001311 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001312 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001313
Matt Carlson69f11c92011-07-13 09:27:30 +00001314 tp->phy_addr = tp->pci_fn + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001315
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001316 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1317 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1318 else
1319 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1320 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001321 if (is_serdes)
1322 tp->phy_addr += 7;
1323 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001324 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001325
Matt Carlson158d7ab2008-05-29 01:37:54 -07001326 tg3_mdio_start(tp);
1327
Joe Perches63c3a662011-04-26 08:12:10 +00001328 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001329 return 0;
1330
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001331 tp->mdio_bus = mdiobus_alloc();
1332 if (tp->mdio_bus == NULL)
1333 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001334
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001335 tp->mdio_bus->name = "tg3 mdio bus";
1336 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001337 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001338 tp->mdio_bus->priv = tp;
1339 tp->mdio_bus->parent = &tp->pdev->dev;
1340 tp->mdio_bus->read = &tg3_mdio_read;
1341 tp->mdio_bus->write = &tg3_mdio_write;
1342 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001343 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001344 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001345
1346 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001347 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001348
1349 /* The bus registration will look for all the PHYs on the mdio bus.
1350 * Unfortunately, it does not ensure the PHY is powered up before
1351 * accessing the PHY ID registers. A chip reset is the
1352 * quickest way to bring the device back to an operational state..
1353 */
1354 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1355 tg3_bmcr_reset(tp);
1356
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001357 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001358 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001359 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001360 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001361 return i;
1362 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001363
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001364 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001365
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001366 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001367 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001368 mdiobus_unregister(tp->mdio_bus);
1369 mdiobus_free(tp->mdio_bus);
1370 return -ENODEV;
1371 }
1372
1373 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001374 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001375 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001376 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001377 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001378 case PHY_ID_BCM50610:
1379 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001380 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001381 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001382 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001383 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001384 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001385 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001386 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001387 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001388 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001389 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001390 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001391 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001392 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001393 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001394 case PHY_ID_RTL8201E:
1395 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001396 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001397 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001398 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001399 break;
1400 }
1401
Joe Perches63c3a662011-04-26 08:12:10 +00001402 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001403
1404 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1405 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001406
1407 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001408}
1409
1410static void tg3_mdio_fini(struct tg3 *tp)
1411{
Joe Perches63c3a662011-04-26 08:12:10 +00001412 if (tg3_flag(tp, MDIOBUS_INITED)) {
1413 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001414 mdiobus_unregister(tp->mdio_bus);
1415 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001416 }
1417}
1418
Matt Carlson95e28692008-05-25 23:44:14 -07001419/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001420static inline void tg3_generate_fw_event(struct tg3 *tp)
1421{
1422 u32 val;
1423
1424 val = tr32(GRC_RX_CPU_EVENT);
1425 val |= GRC_RX_CPU_DRIVER_EVENT;
1426 tw32_f(GRC_RX_CPU_EVENT, val);
1427
1428 tp->last_event_jiffies = jiffies;
1429}
1430
1431#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1432
1433/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001434static void tg3_wait_for_event_ack(struct tg3 *tp)
1435{
1436 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001437 unsigned int delay_cnt;
1438 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001439
Matt Carlson4ba526c2008-08-15 14:10:04 -07001440 /* If enough time has passed, no wait is necessary. */
1441 time_remain = (long)(tp->last_event_jiffies + 1 +
1442 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1443 (long)jiffies;
1444 if (time_remain < 0)
1445 return;
1446
1447 /* Check if we can shorten the wait time. */
1448 delay_cnt = jiffies_to_usecs(time_remain);
1449 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1450 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1451 delay_cnt = (delay_cnt >> 3) + 1;
1452
1453 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001454 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1455 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001456 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001457 }
1458}
1459
1460/* tp->lock is held. */
Matt Carlsonb28f3892012-02-13 15:20:12 +00001461static void tg3_phy_gather_ump_data(struct tg3 *tp, u32 *data)
Matt Carlson95e28692008-05-25 23:44:14 -07001462{
Matt Carlsonb28f3892012-02-13 15:20:12 +00001463 u32 reg, val;
Matt Carlson95e28692008-05-25 23:44:14 -07001464
1465 val = 0;
1466 if (!tg3_readphy(tp, MII_BMCR, &reg))
1467 val = reg << 16;
1468 if (!tg3_readphy(tp, MII_BMSR, &reg))
1469 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001470 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001471
1472 val = 0;
1473 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1474 val = reg << 16;
1475 if (!tg3_readphy(tp, MII_LPA, &reg))
1476 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001477 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001478
1479 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001480 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001481 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1482 val = reg << 16;
1483 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1484 val |= (reg & 0xffff);
1485 }
Matt Carlsonb28f3892012-02-13 15:20:12 +00001486 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001487
1488 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1489 val = reg << 16;
1490 else
1491 val = 0;
Matt Carlsonb28f3892012-02-13 15:20:12 +00001492 *data++ = val;
1493}
1494
1495/* tp->lock is held. */
1496static void tg3_ump_link_report(struct tg3 *tp)
1497{
1498 u32 data[4];
1499
1500 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
1501 return;
1502
1503 tg3_phy_gather_ump_data(tp, data);
1504
1505 tg3_wait_for_event_ack(tp);
1506
1507 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1508 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1509 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x0, data[0]);
1510 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x4, data[1]);
1511 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x8, data[2]);
1512 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0xc, data[3]);
Matt Carlson95e28692008-05-25 23:44:14 -07001513
Matt Carlson4ba526c2008-08-15 14:10:04 -07001514 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001515}
1516
Matt Carlson8d5a89b2011-08-31 11:44:51 +00001517/* tp->lock is held. */
1518static void tg3_stop_fw(struct tg3 *tp)
1519{
1520 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
1521 /* Wait for RX cpu to ACK the previous event. */
1522 tg3_wait_for_event_ack(tp);
1523
1524 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
1525
1526 tg3_generate_fw_event(tp);
1527
1528 /* Wait for RX cpu to ACK this event. */
1529 tg3_wait_for_event_ack(tp);
1530 }
1531}
1532
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001533/* tp->lock is held. */
1534static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
1535{
1536 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
1537 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
1538
1539 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1540 switch (kind) {
1541 case RESET_KIND_INIT:
1542 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1543 DRV_STATE_START);
1544 break;
1545
1546 case RESET_KIND_SHUTDOWN:
1547 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1548 DRV_STATE_UNLOAD);
1549 break;
1550
1551 case RESET_KIND_SUSPEND:
1552 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1553 DRV_STATE_SUSPEND);
1554 break;
1555
1556 default:
1557 break;
1558 }
1559 }
1560
1561 if (kind == RESET_KIND_INIT ||
1562 kind == RESET_KIND_SUSPEND)
1563 tg3_ape_driver_state_change(tp, kind);
1564}
1565
1566/* tp->lock is held. */
1567static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
1568{
1569 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1570 switch (kind) {
1571 case RESET_KIND_INIT:
1572 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1573 DRV_STATE_START_DONE);
1574 break;
1575
1576 case RESET_KIND_SHUTDOWN:
1577 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1578 DRV_STATE_UNLOAD_DONE);
1579 break;
1580
1581 default:
1582 break;
1583 }
1584 }
1585
1586 if (kind == RESET_KIND_SHUTDOWN)
1587 tg3_ape_driver_state_change(tp, kind);
1588}
1589
1590/* tp->lock is held. */
1591static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
1592{
1593 if (tg3_flag(tp, ENABLE_ASF)) {
1594 switch (kind) {
1595 case RESET_KIND_INIT:
1596 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1597 DRV_STATE_START);
1598 break;
1599
1600 case RESET_KIND_SHUTDOWN:
1601 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1602 DRV_STATE_UNLOAD);
1603 break;
1604
1605 case RESET_KIND_SUSPEND:
1606 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1607 DRV_STATE_SUSPEND);
1608 break;
1609
1610 default:
1611 break;
1612 }
1613 }
1614}
1615
1616static int tg3_poll_fw(struct tg3 *tp)
1617{
1618 int i;
1619 u32 val;
1620
1621 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1622 /* Wait up to 20ms for init done. */
1623 for (i = 0; i < 200; i++) {
1624 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
1625 return 0;
1626 udelay(100);
1627 }
1628 return -ENODEV;
1629 }
1630
1631 /* Wait for firmware initialization to complete. */
1632 for (i = 0; i < 100000; i++) {
1633 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
1634 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
1635 break;
1636 udelay(10);
1637 }
1638
1639 /* Chip might not be fitted with firmware. Some Sun onboard
1640 * parts are configured like that. So don't signal the timeout
1641 * of the above loop as an error, but do report the lack of
1642 * running firmware once.
1643 */
1644 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
1645 tg3_flag_set(tp, NO_FWARE_REPORTED);
1646
1647 netdev_info(tp->dev, "No firmware running\n");
1648 }
1649
1650 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
1651 /* The 57765 A0 needs a little more
1652 * time to do some important work.
1653 */
1654 mdelay(10);
1655 }
1656
1657 return 0;
1658}
1659
Matt Carlson95e28692008-05-25 23:44:14 -07001660static void tg3_link_report(struct tg3 *tp)
1661{
1662 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001663 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001664 tg3_ump_link_report(tp);
1665 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001666 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1667 (tp->link_config.active_speed == SPEED_1000 ?
1668 1000 :
1669 (tp->link_config.active_speed == SPEED_100 ?
1670 100 : 10)),
1671 (tp->link_config.active_duplex == DUPLEX_FULL ?
1672 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001673
Joe Perches05dbe002010-02-17 19:44:19 +00001674 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1675 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1676 "on" : "off",
1677 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1678 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001679
1680 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1681 netdev_info(tp->dev, "EEE is %s\n",
1682 tp->setlpicnt ? "enabled" : "disabled");
1683
Matt Carlson95e28692008-05-25 23:44:14 -07001684 tg3_ump_link_report(tp);
1685 }
1686}
1687
Matt Carlson95e28692008-05-25 23:44:14 -07001688static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1689{
1690 u16 miireg;
1691
Steve Glendinninge18ce342008-12-16 02:00:00 -08001692 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001693 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001694 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001695 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001696 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001697 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1698 else
1699 miireg = 0;
1700
1701 return miireg;
1702}
1703
Matt Carlson95e28692008-05-25 23:44:14 -07001704static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1705{
1706 u8 cap = 0;
1707
Matt Carlsonf3791cd2011-11-21 15:01:17 +00001708 if (lcladv & rmtadv & ADVERTISE_1000XPAUSE) {
1709 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
1710 } else if (lcladv & rmtadv & ADVERTISE_1000XPSE_ASYM) {
1711 if (lcladv & ADVERTISE_1000XPAUSE)
1712 cap = FLOW_CTRL_RX;
1713 if (rmtadv & ADVERTISE_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001714 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001715 }
1716
1717 return cap;
1718}
1719
Matt Carlsonf51f3562008-05-25 23:45:08 -07001720static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001721{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001722 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001723 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001724 u32 old_rx_mode = tp->rx_mode;
1725 u32 old_tx_mode = tp->tx_mode;
1726
Joe Perches63c3a662011-04-26 08:12:10 +00001727 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001728 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001729 else
1730 autoneg = tp->link_config.autoneg;
1731
Joe Perches63c3a662011-04-26 08:12:10 +00001732 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001733 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001734 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001735 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001736 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001737 } else
1738 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001739
Matt Carlsonf51f3562008-05-25 23:45:08 -07001740 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001741
Steve Glendinninge18ce342008-12-16 02:00:00 -08001742 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001743 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1744 else
1745 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1746
Matt Carlsonf51f3562008-05-25 23:45:08 -07001747 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001748 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001749
Steve Glendinninge18ce342008-12-16 02:00:00 -08001750 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001751 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1752 else
1753 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1754
Matt Carlsonf51f3562008-05-25 23:45:08 -07001755 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001756 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001757}
1758
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001759static void tg3_adjust_link(struct net_device *dev)
1760{
1761 u8 oldflowctrl, linkmesg = 0;
1762 u32 mac_mode, lcl_adv, rmt_adv;
1763 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001764 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001765
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001766 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001767
1768 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1769 MAC_MODE_HALF_DUPLEX);
1770
1771 oldflowctrl = tp->link_config.active_flowctrl;
1772
1773 if (phydev->link) {
1774 lcl_adv = 0;
1775 rmt_adv = 0;
1776
1777 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1778 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001779 else if (phydev->speed == SPEED_1000 ||
1780 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001781 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001782 else
1783 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001784
1785 if (phydev->duplex == DUPLEX_HALF)
1786 mac_mode |= MAC_MODE_HALF_DUPLEX;
1787 else {
Matt Carlsonf88788f2011-12-14 11:10:00 +00001788 lcl_adv = mii_advertise_flowctrl(
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001789 tp->link_config.flowctrl);
1790
1791 if (phydev->pause)
1792 rmt_adv = LPA_PAUSE_CAP;
1793 if (phydev->asym_pause)
1794 rmt_adv |= LPA_PAUSE_ASYM;
1795 }
1796
1797 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1798 } else
1799 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1800
1801 if (mac_mode != tp->mac_mode) {
1802 tp->mac_mode = mac_mode;
1803 tw32_f(MAC_MODE, tp->mac_mode);
1804 udelay(40);
1805 }
1806
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001807 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1808 if (phydev->speed == SPEED_10)
1809 tw32(MAC_MI_STAT,
1810 MAC_MI_STAT_10MBPS_MODE |
1811 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1812 else
1813 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1814 }
1815
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001816 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1817 tw32(MAC_TX_LENGTHS,
1818 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1819 (6 << TX_LENGTHS_IPG_SHIFT) |
1820 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1821 else
1822 tw32(MAC_TX_LENGTHS,
1823 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1824 (6 << TX_LENGTHS_IPG_SHIFT) |
1825 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1826
Matt Carlson34655ad2012-02-22 12:35:18 +00001827 if (phydev->link != tp->old_link ||
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001828 phydev->speed != tp->link_config.active_speed ||
1829 phydev->duplex != tp->link_config.active_duplex ||
1830 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001831 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001832
Matt Carlson34655ad2012-02-22 12:35:18 +00001833 tp->old_link = phydev->link;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001834 tp->link_config.active_speed = phydev->speed;
1835 tp->link_config.active_duplex = phydev->duplex;
1836
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001837 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001838
1839 if (linkmesg)
1840 tg3_link_report(tp);
1841}
1842
1843static int tg3_phy_init(struct tg3 *tp)
1844{
1845 struct phy_device *phydev;
1846
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001847 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001848 return 0;
1849
1850 /* Bring the PHY back to a known state. */
1851 tg3_bmcr_reset(tp);
1852
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001853 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001854
1855 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad352008-11-10 13:55:14 -08001856 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001857 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001858 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001859 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001860 return PTR_ERR(phydev);
1861 }
1862
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001863 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001864 switch (phydev->interface) {
1865 case PHY_INTERFACE_MODE_GMII:
1866 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001867 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001868 phydev->supported &= (PHY_GBIT_FEATURES |
1869 SUPPORTED_Pause |
1870 SUPPORTED_Asym_Pause);
1871 break;
1872 }
1873 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001874 case PHY_INTERFACE_MODE_MII:
1875 phydev->supported &= (PHY_BASIC_FEATURES |
1876 SUPPORTED_Pause |
1877 SUPPORTED_Asym_Pause);
1878 break;
1879 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001880 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001881 return -EINVAL;
1882 }
1883
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001884 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001885
1886 phydev->advertising = phydev->supported;
1887
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001888 return 0;
1889}
1890
1891static void tg3_phy_start(struct tg3 *tp)
1892{
1893 struct phy_device *phydev;
1894
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001895 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001896 return;
1897
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001898 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001899
Matt Carlson80096062010-08-02 11:26:06 +00001900 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
1901 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonc6700ce2012-02-13 15:20:15 +00001902 phydev->speed = tp->link_config.speed;
1903 phydev->duplex = tp->link_config.duplex;
1904 phydev->autoneg = tp->link_config.autoneg;
1905 phydev->advertising = tp->link_config.advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001906 }
1907
1908 phy_start(phydev);
1909
1910 phy_start_aneg(phydev);
1911}
1912
1913static void tg3_phy_stop(struct tg3 *tp)
1914{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001915 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001916 return;
1917
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001918 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001919}
1920
1921static void tg3_phy_fini(struct tg3 *tp)
1922{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001923 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001924 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001925 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001926 }
1927}
1928
Matt Carlson941ec902011-08-19 13:58:23 +00001929static int tg3_phy_set_extloopbk(struct tg3 *tp)
1930{
1931 int err;
1932 u32 val;
1933
1934 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
1935 return 0;
1936
1937 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
1938 /* Cannot do read-modify-write on 5401 */
1939 err = tg3_phy_auxctl_write(tp,
1940 MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
1941 MII_TG3_AUXCTL_ACTL_EXTLOOPBK |
1942 0x4c20);
1943 goto done;
1944 }
1945
1946 err = tg3_phy_auxctl_read(tp,
1947 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
1948 if (err)
1949 return err;
1950
1951 val |= MII_TG3_AUXCTL_ACTL_EXTLOOPBK;
1952 err = tg3_phy_auxctl_write(tp,
1953 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, val);
1954
1955done:
1956 return err;
1957}
1958
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001959static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1960{
1961 u32 phytest;
1962
1963 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1964 u32 phy;
1965
1966 tg3_writephy(tp, MII_TG3_FET_TEST,
1967 phytest | MII_TG3_FET_SHADOW_EN);
1968 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1969 if (enable)
1970 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1971 else
1972 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1973 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1974 }
1975 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1976 }
1977}
1978
Matt Carlson6833c042008-11-21 17:18:59 -08001979static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1980{
1981 u32 reg;
1982
Joe Perches63c3a662011-04-26 08:12:10 +00001983 if (!tg3_flag(tp, 5705_PLUS) ||
1984 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001985 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001986 return;
1987
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001988 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001989 tg3_phy_fet_toggle_apd(tp, enable);
1990 return;
1991 }
1992
Matt Carlson6833c042008-11-21 17:18:59 -08001993 reg = MII_TG3_MISC_SHDW_WREN |
1994 MII_TG3_MISC_SHDW_SCR5_SEL |
1995 MII_TG3_MISC_SHDW_SCR5_LPED |
1996 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1997 MII_TG3_MISC_SHDW_SCR5_SDTL |
1998 MII_TG3_MISC_SHDW_SCR5_C125OE;
1999 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
2000 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
2001
2002 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2003
2004
2005 reg = MII_TG3_MISC_SHDW_WREN |
2006 MII_TG3_MISC_SHDW_APD_SEL |
2007 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
2008 if (enable)
2009 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
2010
2011 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2012}
2013
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002014static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
2015{
2016 u32 phy;
2017
Joe Perches63c3a662011-04-26 08:12:10 +00002018 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002019 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002020 return;
2021
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002022 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002023 u32 ephy;
2024
Matt Carlson535ef6e2009-08-25 10:09:36 +00002025 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
2026 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
2027
2028 tg3_writephy(tp, MII_TG3_FET_TEST,
2029 ephy | MII_TG3_FET_SHADOW_EN);
2030 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002031 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00002032 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002033 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00002034 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
2035 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002036 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00002037 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002038 }
2039 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00002040 int ret;
2041
2042 ret = tg3_phy_auxctl_read(tp,
2043 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
2044 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002045 if (enable)
2046 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
2047 else
2048 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002049 tg3_phy_auxctl_write(tp,
2050 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002051 }
2052 }
2053}
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055static void tg3_phy_set_wirespeed(struct tg3 *tp)
2056{
Matt Carlson15ee95c2011-04-20 07:57:40 +00002057 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 u32 val;
2059
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002060 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 return;
2062
Matt Carlson15ee95c2011-04-20 07:57:40 +00002063 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
2064 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002065 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
2066 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
2068
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002069static void tg3_phy_apply_otp(struct tg3 *tp)
2070{
2071 u32 otp, phy;
2072
2073 if (!tp->phy_otp)
2074 return;
2075
2076 otp = tp->phy_otp;
2077
Matt Carlson1d36ba42011-04-20 07:57:42 +00002078 if (TG3_PHY_AUXCTL_SMDSP_ENABLE(tp))
2079 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002080
2081 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
2082 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
2083 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
2084
2085 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
2086 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
2087 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
2088
2089 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
2090 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
2091 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
2092
2093 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
2094 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
2095
2096 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
2097 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
2098
2099 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
2100 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
2101 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
2102
Matt Carlson1d36ba42011-04-20 07:57:42 +00002103 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002104}
2105
Matt Carlson52b02d02010-10-14 10:37:41 +00002106static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
2107{
2108 u32 val;
2109
2110 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2111 return;
2112
2113 tp->setlpicnt = 0;
2114
2115 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
2116 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00002117 tp->link_config.active_duplex == DUPLEX_FULL &&
2118 (tp->link_config.active_speed == SPEED_100 ||
2119 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00002120 u32 eeectl;
2121
2122 if (tp->link_config.active_speed == SPEED_1000)
2123 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
2124 else
2125 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
2126
2127 tw32(TG3_CPMU_EEE_CTRL, eeectl);
2128
Matt Carlson3110f5f52010-12-06 08:28:50 +00002129 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
2130 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00002131
Matt Carlsonb0c59432011-05-19 12:12:48 +00002132 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
2133 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00002134 tp->setlpicnt = 2;
2135 }
2136
2137 if (!tp->setlpicnt) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002138 if (current_link_up == 1 &&
2139 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2140 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
2141 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2142 }
2143
Matt Carlson52b02d02010-10-14 10:37:41 +00002144 val = tr32(TG3_CPMU_EEE_MODE);
2145 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
2146 }
2147}
2148
Matt Carlsonb0c59432011-05-19 12:12:48 +00002149static void tg3_phy_eee_enable(struct tg3 *tp)
2150{
2151 u32 val;
2152
2153 if (tp->link_config.active_speed == SPEED_1000 &&
2154 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2155 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00002156 tg3_flag(tp, 57765_CLASS)) &&
Matt Carlsonb0c59432011-05-19 12:12:48 +00002157 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002158 val = MII_TG3_DSP_TAP26_ALNOKO |
2159 MII_TG3_DSP_TAP26_RMRXSTO;
2160 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Matt Carlsonb0c59432011-05-19 12:12:48 +00002161 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2162 }
2163
2164 val = tr32(TG3_CPMU_EEE_MODE);
2165 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
2166}
2167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168static int tg3_wait_macro_done(struct tg3 *tp)
2169{
2170 int limit = 100;
2171
2172 while (limit--) {
2173 u32 tmp32;
2174
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002175 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 if ((tmp32 & 0x1000) == 0)
2177 break;
2178 }
2179 }
Roel Kluind4675b52009-02-12 16:33:27 -08002180 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 return -EBUSY;
2182
2183 return 0;
2184}
2185
2186static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
2187{
2188 static const u32 test_pat[4][6] = {
2189 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
2190 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
2191 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
2192 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
2193 };
2194 int chan;
2195
2196 for (chan = 0; chan < 4; chan++) {
2197 int i;
2198
2199 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2200 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002201 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203 for (i = 0; i < 6; i++)
2204 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
2205 test_pat[chan][i]);
2206
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002207 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (tg3_wait_macro_done(tp)) {
2209 *resetp = 1;
2210 return -EBUSY;
2211 }
2212
2213 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2214 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002215 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 if (tg3_wait_macro_done(tp)) {
2217 *resetp = 1;
2218 return -EBUSY;
2219 }
2220
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002221 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 if (tg3_wait_macro_done(tp)) {
2223 *resetp = 1;
2224 return -EBUSY;
2225 }
2226
2227 for (i = 0; i < 6; i += 2) {
2228 u32 low, high;
2229
2230 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
2231 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
2232 tg3_wait_macro_done(tp)) {
2233 *resetp = 1;
2234 return -EBUSY;
2235 }
2236 low &= 0x7fff;
2237 high &= 0x000f;
2238 if (low != test_pat[chan][i] ||
2239 high != test_pat[chan][i+1]) {
2240 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
2241 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
2242 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
2243
2244 return -EBUSY;
2245 }
2246 }
2247 }
2248
2249 return 0;
2250}
2251
2252static int tg3_phy_reset_chanpat(struct tg3 *tp)
2253{
2254 int chan;
2255
2256 for (chan = 0; chan < 4; chan++) {
2257 int i;
2258
2259 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2260 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002261 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 for (i = 0; i < 6; i++)
2263 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002264 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 if (tg3_wait_macro_done(tp))
2266 return -EBUSY;
2267 }
2268
2269 return 0;
2270}
2271
2272static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
2273{
2274 u32 reg32, phy9_orig;
2275 int retries, do_phy_reset, err;
2276
2277 retries = 10;
2278 do_phy_reset = 1;
2279 do {
2280 if (do_phy_reset) {
2281 err = tg3_bmcr_reset(tp);
2282 if (err)
2283 return err;
2284 do_phy_reset = 0;
2285 }
2286
2287 /* Disable transmitter and interrupt. */
2288 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2289 continue;
2290
2291 reg32 |= 0x3000;
2292 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2293
2294 /* Set full-duplex, 1000 mbps. */
2295 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002296 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
2298 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002299 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 continue;
2301
Matt Carlson221c5632011-06-13 13:39:01 +00002302 tg3_writephy(tp, MII_CTRL1000,
2303 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Matt Carlson1d36ba42011-04-20 07:57:42 +00002305 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
2306 if (err)
2307 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002310 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2313 if (!err)
2314 break;
2315 } while (--retries);
2316
2317 err = tg3_phy_reset_chanpat(tp);
2318 if (err)
2319 return err;
2320
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002321 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
2323 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002324 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Matt Carlson1d36ba42011-04-20 07:57:42 +00002326 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Matt Carlson221c5632011-06-13 13:39:01 +00002328 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2331 reg32 &= ~0x3000;
2332 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2333 } else if (!err)
2334 err = -EBUSY;
2335
2336 return err;
2337}
2338
2339/* This will reset the tigon3 PHY if there is no valid
2340 * link unless the FORCE argument is non-zero.
2341 */
2342static int tg3_phy_reset(struct tg3 *tp)
2343{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002344 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 int err;
2346
Michael Chan60189dd2006-12-17 17:08:07 -08002347 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002348 val = tr32(GRC_MISC_CFG);
2349 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2350 udelay(40);
2351 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002352 err = tg3_readphy(tp, MII_BMSR, &val);
2353 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 if (err != 0)
2355 return -EBUSY;
2356
Michael Chanc8e1e822006-04-29 18:55:17 -07002357 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
2358 netif_carrier_off(tp->dev);
2359 tg3_link_report(tp);
2360 }
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2363 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2364 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
2365 err = tg3_phy_reset_5703_4_5(tp);
2366 if (err)
2367 return err;
2368 goto out;
2369 }
2370
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002371 cpmuctrl = 0;
2372 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
2373 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
2374 cpmuctrl = tr32(TG3_CPMU_CTRL);
2375 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2376 tw32(TG3_CPMU_CTRL,
2377 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2378 }
2379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 err = tg3_bmcr_reset(tp);
2381 if (err)
2382 return err;
2383
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002384 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002385 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2386 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002387
2388 tw32(TG3_CPMU_CTRL, cpmuctrl);
2389 }
2390
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002391 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2392 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002393 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2394 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2395 CPMU_LSPD_1000MB_MACCLK_12_5) {
2396 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2397 udelay(40);
2398 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2399 }
2400 }
2401
Joe Perches63c3a662011-04-26 08:12:10 +00002402 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002403 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002404 return 0;
2405
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002406 tg3_phy_apply_otp(tp);
2407
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002408 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002409 tg3_phy_toggle_apd(tp, true);
2410 else
2411 tg3_phy_toggle_apd(tp, false);
2412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002414 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
2415 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002416 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2417 tg3_phydsp_write(tp, 0x000a, 0x0323);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002418 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002420
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002421 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002422 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2423 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002425
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002426 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002427 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2428 tg3_phydsp_write(tp, 0x000a, 0x310b);
2429 tg3_phydsp_write(tp, 0x201f, 0x9506);
2430 tg3_phydsp_write(tp, 0x401f, 0x14e2);
2431 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2432 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002433 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002434 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2435 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2436 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2437 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2438 tg3_writephy(tp, MII_TG3_TEST1,
2439 MII_TG3_TEST1_TRIM_EN | 0x4);
2440 } else
2441 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2442
2443 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2444 }
Michael Chanc424cb22006-04-29 18:56:34 -07002445 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 /* Set Extended packet length bit (bit 14) on all chips that */
2448 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002449 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002451 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002452 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002454 err = tg3_phy_auxctl_read(tp,
2455 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2456 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002457 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2458 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 }
2460
2461 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2462 * jumbo frames transmission.
2463 */
Joe Perches63c3a662011-04-26 08:12:10 +00002464 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002465 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002466 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002467 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 }
2469
Michael Chan715116a2006-09-27 16:09:25 -07002470 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002471 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002472 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002473 }
2474
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002475 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 tg3_phy_set_wirespeed(tp);
2477 return 0;
2478}
2479
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002480#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2481#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2482#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2483 TG3_GPIO_MSG_NEED_VAUX)
2484#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2485 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2486 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2487 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2488 (TG3_GPIO_MSG_DRVR_PRES << 12))
2489
2490#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2491 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2492 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2493 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2494 (TG3_GPIO_MSG_NEED_VAUX << 12))
2495
2496static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2497{
2498 u32 status, shift;
2499
2500 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2501 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2502 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2503 else
2504 status = tr32(TG3_CPMU_DRV_STATUS);
2505
2506 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2507 status &= ~(TG3_GPIO_MSG_MASK << shift);
2508 status |= (newstat << shift);
2509
2510 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2511 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2512 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2513 else
2514 tw32(TG3_CPMU_DRV_STATUS, status);
2515
2516 return status >> TG3_APE_GPIO_MSG_SHIFT;
2517}
2518
Matt Carlson520b2752011-06-13 13:39:02 +00002519static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2520{
2521 if (!tg3_flag(tp, IS_NIC))
2522 return 0;
2523
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002524 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2525 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2526 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
2527 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2528 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002529
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002530 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2531
2532 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2533 TG3_GRC_LCLCTL_PWRSW_DELAY);
2534
2535 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2536 } else {
2537 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2538 TG3_GRC_LCLCTL_PWRSW_DELAY);
2539 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002540
Matt Carlson520b2752011-06-13 13:39:02 +00002541 return 0;
2542}
2543
2544static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2545{
2546 u32 grc_local_ctrl;
2547
2548 if (!tg3_flag(tp, IS_NIC) ||
2549 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2550 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)
2551 return;
2552
2553 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2554
2555 tw32_wait_f(GRC_LOCAL_CTRL,
2556 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2557 TG3_GRC_LCLCTL_PWRSW_DELAY);
2558
2559 tw32_wait_f(GRC_LOCAL_CTRL,
2560 grc_local_ctrl,
2561 TG3_GRC_LCLCTL_PWRSW_DELAY);
2562
2563 tw32_wait_f(GRC_LOCAL_CTRL,
2564 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2565 TG3_GRC_LCLCTL_PWRSW_DELAY);
2566}
2567
2568static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2569{
2570 if (!tg3_flag(tp, IS_NIC))
2571 return;
2572
2573 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2574 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2575 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2576 (GRC_LCLCTRL_GPIO_OE0 |
2577 GRC_LCLCTRL_GPIO_OE1 |
2578 GRC_LCLCTRL_GPIO_OE2 |
2579 GRC_LCLCTRL_GPIO_OUTPUT0 |
2580 GRC_LCLCTRL_GPIO_OUTPUT1),
2581 TG3_GRC_LCLCTL_PWRSW_DELAY);
2582 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2583 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2584 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2585 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2586 GRC_LCLCTRL_GPIO_OE1 |
2587 GRC_LCLCTRL_GPIO_OE2 |
2588 GRC_LCLCTRL_GPIO_OUTPUT0 |
2589 GRC_LCLCTRL_GPIO_OUTPUT1 |
2590 tp->grc_local_ctrl;
2591 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2592 TG3_GRC_LCLCTL_PWRSW_DELAY);
2593
2594 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2595 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2596 TG3_GRC_LCLCTL_PWRSW_DELAY);
2597
2598 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2599 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2600 TG3_GRC_LCLCTL_PWRSW_DELAY);
2601 } else {
2602 u32 no_gpio2;
2603 u32 grc_local_ctrl = 0;
2604
2605 /* Workaround to prevent overdrawing Amps. */
2606 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
2607 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2608 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2609 grc_local_ctrl,
2610 TG3_GRC_LCLCTL_PWRSW_DELAY);
2611 }
2612
2613 /* On 5753 and variants, GPIO2 cannot be used. */
2614 no_gpio2 = tp->nic_sram_data_cfg &
2615 NIC_SRAM_DATA_CFG_NO_GPIO2;
2616
2617 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2618 GRC_LCLCTRL_GPIO_OE1 |
2619 GRC_LCLCTRL_GPIO_OE2 |
2620 GRC_LCLCTRL_GPIO_OUTPUT1 |
2621 GRC_LCLCTRL_GPIO_OUTPUT2;
2622 if (no_gpio2) {
2623 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2624 GRC_LCLCTRL_GPIO_OUTPUT2);
2625 }
2626 tw32_wait_f(GRC_LOCAL_CTRL,
2627 tp->grc_local_ctrl | grc_local_ctrl,
2628 TG3_GRC_LCLCTL_PWRSW_DELAY);
2629
2630 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2631
2632 tw32_wait_f(GRC_LOCAL_CTRL,
2633 tp->grc_local_ctrl | grc_local_ctrl,
2634 TG3_GRC_LCLCTL_PWRSW_DELAY);
2635
2636 if (!no_gpio2) {
2637 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2638 tw32_wait_f(GRC_LOCAL_CTRL,
2639 tp->grc_local_ctrl | grc_local_ctrl,
2640 TG3_GRC_LCLCTL_PWRSW_DELAY);
2641 }
2642 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002643}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002644
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002645static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002646{
2647 u32 msg = 0;
2648
2649 /* Serialize power state transitions */
2650 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2651 return;
2652
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002653 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002654 msg = TG3_GPIO_MSG_NEED_VAUX;
2655
2656 msg = tg3_set_function_status(tp, msg);
2657
2658 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2659 goto done;
2660
2661 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2662 tg3_pwrsrc_switch_to_vaux(tp);
2663 else
2664 tg3_pwrsrc_die_with_vmain(tp);
2665
2666done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002667 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002668}
2669
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002670static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671{
Matt Carlson683644b2011-03-09 16:58:23 +00002672 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Matt Carlson334355a2010-01-20 16:58:10 +00002674 /* The GPIOs do something completely different on 57765. */
Matt Carlson55086ad2011-12-14 11:09:59 +00002675 if (!tg3_flag(tp, IS_NIC) || tg3_flag(tp, 57765_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 return;
2677
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002678 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2679 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2680 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002681 tg3_frob_aux_power_5717(tp, include_wol ?
2682 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002683 return;
2684 }
2685
2686 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002687 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002689 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002690
Michael Chanbc1c7562006-03-20 17:48:03 -08002691 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002692 if (dev_peer) {
2693 struct tg3 *tp_peer = netdev_priv(dev_peer);
2694
Joe Perches63c3a662011-04-26 08:12:10 +00002695 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002696 return;
2697
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002698 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002699 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002700 need_vaux = true;
2701 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002704 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2705 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002706 need_vaux = true;
2707
Matt Carlson520b2752011-06-13 13:39:02 +00002708 if (need_vaux)
2709 tg3_pwrsrc_switch_to_vaux(tp);
2710 else
2711 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712}
2713
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002714static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2715{
2716 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2717 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002718 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002719 if (speed != SPEED_10)
2720 return 1;
2721 } else if (speed == SPEED_10)
2722 return 1;
2723
2724 return 0;
2725}
2726
Matt Carlson0a459aa2008-11-03 16:54:15 -08002727static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002728{
Matt Carlsonce057f02007-11-12 21:08:03 -08002729 u32 val;
2730
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002731 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Michael Chan51297242007-02-13 12:17:57 -08002732 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2733 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2734 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2735
2736 sg_dig_ctrl |=
2737 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2738 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2739 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2740 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002741 return;
Michael Chan51297242007-02-13 12:17:57 -08002742 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002743
Michael Chan60189dd2006-12-17 17:08:07 -08002744 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002745 tg3_bmcr_reset(tp);
2746 val = tr32(GRC_MISC_CFG);
2747 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2748 udelay(40);
2749 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002750 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002751 u32 phytest;
2752 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2753 u32 phy;
2754
2755 tg3_writephy(tp, MII_ADVERTISE, 0);
2756 tg3_writephy(tp, MII_BMCR,
2757 BMCR_ANENABLE | BMCR_ANRESTART);
2758
2759 tg3_writephy(tp, MII_TG3_FET_TEST,
2760 phytest | MII_TG3_FET_SHADOW_EN);
2761 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2762 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2763 tg3_writephy(tp,
2764 MII_TG3_FET_SHDW_AUXMODE4,
2765 phy);
2766 }
2767 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2768 }
2769 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002770 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002771 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2772 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002773
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002774 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2775 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2776 MII_TG3_AUXCTL_PCTL_VREG_11V;
2777 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002778 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002779
Michael Chan15c3b692006-03-22 01:06:52 -08002780 /* The PHY should not be powered down on some chips because
2781 * of bugs.
2782 */
2783 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2784 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2785 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
Matt Carlson085f1af2012-04-02 09:01:40 +00002786 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)) ||
2787 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
2788 !tp->pci_fn))
Michael Chan15c3b692006-03-22 01:06:52 -08002789 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002790
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002791 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2792 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002793 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2794 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2795 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2796 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2797 }
2798
Michael Chan15c3b692006-03-22 01:06:52 -08002799 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2800}
2801
Matt Carlson3f007892008-11-03 16:51:36 -08002802/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002803static int tg3_nvram_lock(struct tg3 *tp)
2804{
Joe Perches63c3a662011-04-26 08:12:10 +00002805 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002806 int i;
2807
2808 if (tp->nvram_lock_cnt == 0) {
2809 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2810 for (i = 0; i < 8000; i++) {
2811 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2812 break;
2813 udelay(20);
2814 }
2815 if (i == 8000) {
2816 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2817 return -ENODEV;
2818 }
2819 }
2820 tp->nvram_lock_cnt++;
2821 }
2822 return 0;
2823}
2824
2825/* tp->lock is held. */
2826static void tg3_nvram_unlock(struct tg3 *tp)
2827{
Joe Perches63c3a662011-04-26 08:12:10 +00002828 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002829 if (tp->nvram_lock_cnt > 0)
2830 tp->nvram_lock_cnt--;
2831 if (tp->nvram_lock_cnt == 0)
2832 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2833 }
2834}
2835
2836/* tp->lock is held. */
2837static void tg3_enable_nvram_access(struct tg3 *tp)
2838{
Joe Perches63c3a662011-04-26 08:12:10 +00002839 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002840 u32 nvaccess = tr32(NVRAM_ACCESS);
2841
2842 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2843 }
2844}
2845
2846/* tp->lock is held. */
2847static void tg3_disable_nvram_access(struct tg3 *tp)
2848{
Joe Perches63c3a662011-04-26 08:12:10 +00002849 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002850 u32 nvaccess = tr32(NVRAM_ACCESS);
2851
2852 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2853 }
2854}
2855
2856static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2857 u32 offset, u32 *val)
2858{
2859 u32 tmp;
2860 int i;
2861
2862 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2863 return -EINVAL;
2864
2865 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2866 EEPROM_ADDR_DEVID_MASK |
2867 EEPROM_ADDR_READ);
2868 tw32(GRC_EEPROM_ADDR,
2869 tmp |
2870 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2871 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2872 EEPROM_ADDR_ADDR_MASK) |
2873 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2874
2875 for (i = 0; i < 1000; i++) {
2876 tmp = tr32(GRC_EEPROM_ADDR);
2877
2878 if (tmp & EEPROM_ADDR_COMPLETE)
2879 break;
2880 msleep(1);
2881 }
2882 if (!(tmp & EEPROM_ADDR_COMPLETE))
2883 return -EBUSY;
2884
Matt Carlson62cedd12009-04-20 14:52:29 -07002885 tmp = tr32(GRC_EEPROM_DATA);
2886
2887 /*
2888 * The data will always be opposite the native endian
2889 * format. Perform a blind byteswap to compensate.
2890 */
2891 *val = swab32(tmp);
2892
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002893 return 0;
2894}
2895
2896#define NVRAM_CMD_TIMEOUT 10000
2897
2898static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2899{
2900 int i;
2901
2902 tw32(NVRAM_CMD, nvram_cmd);
2903 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2904 udelay(10);
2905 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2906 udelay(10);
2907 break;
2908 }
2909 }
2910
2911 if (i == NVRAM_CMD_TIMEOUT)
2912 return -EBUSY;
2913
2914 return 0;
2915}
2916
2917static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2918{
Joe Perches63c3a662011-04-26 08:12:10 +00002919 if (tg3_flag(tp, NVRAM) &&
2920 tg3_flag(tp, NVRAM_BUFFERED) &&
2921 tg3_flag(tp, FLASH) &&
2922 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002923 (tp->nvram_jedecnum == JEDEC_ATMEL))
2924
2925 addr = ((addr / tp->nvram_pagesize) <<
2926 ATMEL_AT45DB0X1B_PAGE_POS) +
2927 (addr % tp->nvram_pagesize);
2928
2929 return addr;
2930}
2931
2932static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2933{
Joe Perches63c3a662011-04-26 08:12:10 +00002934 if (tg3_flag(tp, NVRAM) &&
2935 tg3_flag(tp, NVRAM_BUFFERED) &&
2936 tg3_flag(tp, FLASH) &&
2937 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002938 (tp->nvram_jedecnum == JEDEC_ATMEL))
2939
2940 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2941 tp->nvram_pagesize) +
2942 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2943
2944 return addr;
2945}
2946
Matt Carlsone4f34112009-02-25 14:25:00 +00002947/* NOTE: Data read in from NVRAM is byteswapped according to
2948 * the byteswapping settings for all other register accesses.
2949 * tg3 devices are BE devices, so on a BE machine, the data
2950 * returned will be exactly as it is seen in NVRAM. On a LE
2951 * machine, the 32-bit value will be byteswapped.
2952 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002953static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2954{
2955 int ret;
2956
Joe Perches63c3a662011-04-26 08:12:10 +00002957 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002958 return tg3_nvram_read_using_eeprom(tp, offset, val);
2959
2960 offset = tg3_nvram_phys_addr(tp, offset);
2961
2962 if (offset > NVRAM_ADDR_MSK)
2963 return -EINVAL;
2964
2965 ret = tg3_nvram_lock(tp);
2966 if (ret)
2967 return ret;
2968
2969 tg3_enable_nvram_access(tp);
2970
2971 tw32(NVRAM_ADDR, offset);
2972 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2973 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2974
2975 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002976 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002977
2978 tg3_disable_nvram_access(tp);
2979
2980 tg3_nvram_unlock(tp);
2981
2982 return ret;
2983}
2984
Matt Carlsona9dc5292009-02-25 14:25:30 +00002985/* Ensures NVRAM data is in bytestream format. */
2986static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002987{
2988 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002989 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002990 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002991 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002992 return res;
2993}
2994
Matt Carlsondbe9b922012-02-13 10:20:09 +00002995static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
2996 u32 offset, u32 len, u8 *buf)
2997{
2998 int i, j, rc = 0;
2999 u32 val;
3000
3001 for (i = 0; i < len; i += 4) {
3002 u32 addr;
3003 __be32 data;
3004
3005 addr = offset + i;
3006
3007 memcpy(&data, buf + i, 4);
3008
3009 /*
3010 * The SEEPROM interface expects the data to always be opposite
3011 * the native endian format. We accomplish this by reversing
3012 * all the operations that would have been performed on the
3013 * data from a call to tg3_nvram_read_be32().
3014 */
3015 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
3016
3017 val = tr32(GRC_EEPROM_ADDR);
3018 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
3019
3020 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
3021 EEPROM_ADDR_READ);
3022 tw32(GRC_EEPROM_ADDR, val |
3023 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3024 (addr & EEPROM_ADDR_ADDR_MASK) |
3025 EEPROM_ADDR_START |
3026 EEPROM_ADDR_WRITE);
3027
3028 for (j = 0; j < 1000; j++) {
3029 val = tr32(GRC_EEPROM_ADDR);
3030
3031 if (val & EEPROM_ADDR_COMPLETE)
3032 break;
3033 msleep(1);
3034 }
3035 if (!(val & EEPROM_ADDR_COMPLETE)) {
3036 rc = -EBUSY;
3037 break;
3038 }
3039 }
3040
3041 return rc;
3042}
3043
3044/* offset and length are dword aligned */
3045static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
3046 u8 *buf)
3047{
3048 int ret = 0;
3049 u32 pagesize = tp->nvram_pagesize;
3050 u32 pagemask = pagesize - 1;
3051 u32 nvram_cmd;
3052 u8 *tmp;
3053
3054 tmp = kmalloc(pagesize, GFP_KERNEL);
3055 if (tmp == NULL)
3056 return -ENOMEM;
3057
3058 while (len) {
3059 int j;
3060 u32 phy_addr, page_off, size;
3061
3062 phy_addr = offset & ~pagemask;
3063
3064 for (j = 0; j < pagesize; j += 4) {
3065 ret = tg3_nvram_read_be32(tp, phy_addr + j,
3066 (__be32 *) (tmp + j));
3067 if (ret)
3068 break;
3069 }
3070 if (ret)
3071 break;
3072
3073 page_off = offset & pagemask;
3074 size = pagesize;
3075 if (len < size)
3076 size = len;
3077
3078 len -= size;
3079
3080 memcpy(tmp + page_off, buf, size);
3081
3082 offset = offset + (pagesize - page_off);
3083
3084 tg3_enable_nvram_access(tp);
3085
3086 /*
3087 * Before we can erase the flash page, we need
3088 * to issue a special "write enable" command.
3089 */
3090 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3091
3092 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3093 break;
3094
3095 /* Erase the target page */
3096 tw32(NVRAM_ADDR, phy_addr);
3097
3098 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
3099 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
3100
3101 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3102 break;
3103
3104 /* Issue another write enable to start the write. */
3105 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3106
3107 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3108 break;
3109
3110 for (j = 0; j < pagesize; j += 4) {
3111 __be32 data;
3112
3113 data = *((__be32 *) (tmp + j));
3114
3115 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3116
3117 tw32(NVRAM_ADDR, phy_addr + j);
3118
3119 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
3120 NVRAM_CMD_WR;
3121
3122 if (j == 0)
3123 nvram_cmd |= NVRAM_CMD_FIRST;
3124 else if (j == (pagesize - 4))
3125 nvram_cmd |= NVRAM_CMD_LAST;
3126
3127 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3128 if (ret)
3129 break;
3130 }
3131 if (ret)
3132 break;
3133 }
3134
3135 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3136 tg3_nvram_exec_cmd(tp, nvram_cmd);
3137
3138 kfree(tmp);
3139
3140 return ret;
3141}
3142
3143/* offset and length are dword aligned */
3144static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
3145 u8 *buf)
3146{
3147 int i, ret = 0;
3148
3149 for (i = 0; i < len; i += 4, offset += 4) {
3150 u32 page_off, phy_addr, nvram_cmd;
3151 __be32 data;
3152
3153 memcpy(&data, buf + i, 4);
3154 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3155
3156 page_off = offset % tp->nvram_pagesize;
3157
3158 phy_addr = tg3_nvram_phys_addr(tp, offset);
3159
Matt Carlsondbe9b922012-02-13 10:20:09 +00003160 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
3161
3162 if (page_off == 0 || i == 0)
3163 nvram_cmd |= NVRAM_CMD_FIRST;
3164 if (page_off == (tp->nvram_pagesize - 4))
3165 nvram_cmd |= NVRAM_CMD_LAST;
3166
3167 if (i == (len - 4))
3168 nvram_cmd |= NVRAM_CMD_LAST;
3169
Matt Carlson42278222012-02-13 15:20:11 +00003170 if ((nvram_cmd & NVRAM_CMD_FIRST) ||
3171 !tg3_flag(tp, FLASH) ||
3172 !tg3_flag(tp, 57765_PLUS))
3173 tw32(NVRAM_ADDR, phy_addr);
3174
Matt Carlsondbe9b922012-02-13 10:20:09 +00003175 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
3176 !tg3_flag(tp, 5755_PLUS) &&
3177 (tp->nvram_jedecnum == JEDEC_ST) &&
3178 (nvram_cmd & NVRAM_CMD_FIRST)) {
3179 u32 cmd;
3180
3181 cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3182 ret = tg3_nvram_exec_cmd(tp, cmd);
3183 if (ret)
3184 break;
3185 }
3186 if (!tg3_flag(tp, FLASH)) {
3187 /* We always do complete word writes to eeprom. */
3188 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
3189 }
3190
3191 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3192 if (ret)
3193 break;
3194 }
3195 return ret;
3196}
3197
3198/* offset and length are dword aligned */
3199static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
3200{
3201 int ret;
3202
3203 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3204 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
3205 ~GRC_LCLCTRL_GPIO_OUTPUT1);
3206 udelay(40);
3207 }
3208
3209 if (!tg3_flag(tp, NVRAM)) {
3210 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
3211 } else {
3212 u32 grc_mode;
3213
3214 ret = tg3_nvram_lock(tp);
3215 if (ret)
3216 return ret;
3217
3218 tg3_enable_nvram_access(tp);
3219 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
3220 tw32(NVRAM_WRITE1, 0x406);
3221
3222 grc_mode = tr32(GRC_MODE);
3223 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
3224
3225 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
3226 ret = tg3_nvram_write_block_buffered(tp, offset, len,
3227 buf);
3228 } else {
3229 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
3230 buf);
3231 }
3232
3233 grc_mode = tr32(GRC_MODE);
3234 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
3235
3236 tg3_disable_nvram_access(tp);
3237 tg3_nvram_unlock(tp);
3238 }
3239
3240 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3241 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
3242 udelay(40);
3243 }
3244
3245 return ret;
3246}
3247
Matt Carlson997b4f12011-08-31 11:44:53 +00003248#define RX_CPU_SCRATCH_BASE 0x30000
3249#define RX_CPU_SCRATCH_SIZE 0x04000
3250#define TX_CPU_SCRATCH_BASE 0x34000
3251#define TX_CPU_SCRATCH_SIZE 0x04000
3252
3253/* tp->lock is held. */
3254static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
3255{
3256 int i;
3257
3258 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
3259
3260 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
3261 u32 val = tr32(GRC_VCPU_EXT_CTRL);
3262
3263 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
3264 return 0;
3265 }
3266 if (offset == RX_CPU_BASE) {
3267 for (i = 0; i < 10000; i++) {
3268 tw32(offset + CPU_STATE, 0xffffffff);
3269 tw32(offset + CPU_MODE, CPU_MODE_HALT);
3270 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
3271 break;
3272 }
3273
3274 tw32(offset + CPU_STATE, 0xffffffff);
3275 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
3276 udelay(10);
3277 } else {
3278 for (i = 0; i < 10000; i++) {
3279 tw32(offset + CPU_STATE, 0xffffffff);
3280 tw32(offset + CPU_MODE, CPU_MODE_HALT);
3281 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
3282 break;
3283 }
3284 }
3285
3286 if (i >= 10000) {
3287 netdev_err(tp->dev, "%s timed out, %s CPU\n",
3288 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
3289 return -ENODEV;
3290 }
3291
3292 /* Clear firmware's nvram arbitration. */
3293 if (tg3_flag(tp, NVRAM))
3294 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3295 return 0;
3296}
3297
3298struct fw_info {
3299 unsigned int fw_base;
3300 unsigned int fw_len;
3301 const __be32 *fw_data;
3302};
3303
3304/* tp->lock is held. */
3305static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3306 u32 cpu_scratch_base, int cpu_scratch_size,
3307 struct fw_info *info)
3308{
3309 int err, lock_err, i;
3310 void (*write_op)(struct tg3 *, u32, u32);
3311
3312 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3313 netdev_err(tp->dev,
3314 "%s: Trying to load TX cpu firmware which is 5705\n",
3315 __func__);
3316 return -EINVAL;
3317 }
3318
3319 if (tg3_flag(tp, 5705_PLUS))
3320 write_op = tg3_write_mem;
3321 else
3322 write_op = tg3_write_indirect_reg32;
3323
3324 /* It is possible that bootcode is still loading at this point.
3325 * Get the nvram lock first before halting the cpu.
3326 */
3327 lock_err = tg3_nvram_lock(tp);
3328 err = tg3_halt_cpu(tp, cpu_base);
3329 if (!lock_err)
3330 tg3_nvram_unlock(tp);
3331 if (err)
3332 goto out;
3333
3334 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3335 write_op(tp, cpu_scratch_base + i, 0);
3336 tw32(cpu_base + CPU_STATE, 0xffffffff);
3337 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
3338 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
3339 write_op(tp, (cpu_scratch_base +
3340 (info->fw_base & 0xffff) +
3341 (i * sizeof(u32))),
3342 be32_to_cpu(info->fw_data[i]));
3343
3344 err = 0;
3345
3346out:
3347 return err;
3348}
3349
3350/* tp->lock is held. */
3351static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3352{
3353 struct fw_info info;
3354 const __be32 *fw_data;
3355 int err, i;
3356
3357 fw_data = (void *)tp->fw->data;
3358
3359 /* Firmware blob starts with version numbers, followed by
3360 start address and length. We are setting complete length.
3361 length = end_address_of_bss - start_address_of_text.
3362 Remainder is the blob to be loaded contiguously
3363 from start address. */
3364
3365 info.fw_base = be32_to_cpu(fw_data[1]);
3366 info.fw_len = tp->fw->size - 12;
3367 info.fw_data = &fw_data[3];
3368
3369 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3370 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
3371 &info);
3372 if (err)
3373 return err;
3374
3375 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3376 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
3377 &info);
3378 if (err)
3379 return err;
3380
3381 /* Now startup only the RX cpu. */
3382 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3383 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
3384
3385 for (i = 0; i < 5; i++) {
3386 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
3387 break;
3388 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3389 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3390 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
3391 udelay(1000);
3392 }
3393 if (i >= 5) {
3394 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3395 "should be %08x\n", __func__,
3396 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
3397 return -ENODEV;
3398 }
3399 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3400 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
3401
3402 return 0;
3403}
3404
3405/* tp->lock is held. */
3406static int tg3_load_tso_firmware(struct tg3 *tp)
3407{
3408 struct fw_info info;
3409 const __be32 *fw_data;
3410 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
3411 int err, i;
3412
3413 if (tg3_flag(tp, HW_TSO_1) ||
3414 tg3_flag(tp, HW_TSO_2) ||
3415 tg3_flag(tp, HW_TSO_3))
3416 return 0;
3417
3418 fw_data = (void *)tp->fw->data;
3419
3420 /* Firmware blob starts with version numbers, followed by
3421 start address and length. We are setting complete length.
3422 length = end_address_of_bss - start_address_of_text.
3423 Remainder is the blob to be loaded contiguously
3424 from start address. */
3425
3426 info.fw_base = be32_to_cpu(fw_data[1]);
3427 cpu_scratch_size = tp->fw_len;
3428 info.fw_len = tp->fw->size - 12;
3429 info.fw_data = &fw_data[3];
3430
3431 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
3432 cpu_base = RX_CPU_BASE;
3433 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3434 } else {
3435 cpu_base = TX_CPU_BASE;
3436 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3437 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3438 }
3439
3440 err = tg3_load_firmware_cpu(tp, cpu_base,
3441 cpu_scratch_base, cpu_scratch_size,
3442 &info);
3443 if (err)
3444 return err;
3445
3446 /* Now startup the cpu. */
3447 tw32(cpu_base + CPU_STATE, 0xffffffff);
3448 tw32_f(cpu_base + CPU_PC, info.fw_base);
3449
3450 for (i = 0; i < 5; i++) {
3451 if (tr32(cpu_base + CPU_PC) == info.fw_base)
3452 break;
3453 tw32(cpu_base + CPU_STATE, 0xffffffff);
3454 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3455 tw32_f(cpu_base + CPU_PC, info.fw_base);
3456 udelay(1000);
3457 }
3458 if (i >= 5) {
3459 netdev_err(tp->dev,
3460 "%s fails to set CPU PC, is %08x should be %08x\n",
3461 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
3462 return -ENODEV;
3463 }
3464 tw32(cpu_base + CPU_STATE, 0xffffffff);
3465 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3466 return 0;
3467}
3468
3469
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003470/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08003471static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
3472{
3473 u32 addr_high, addr_low;
3474 int i;
3475
3476 addr_high = ((tp->dev->dev_addr[0] << 8) |
3477 tp->dev->dev_addr[1]);
3478 addr_low = ((tp->dev->dev_addr[2] << 24) |
3479 (tp->dev->dev_addr[3] << 16) |
3480 (tp->dev->dev_addr[4] << 8) |
3481 (tp->dev->dev_addr[5] << 0));
3482 for (i = 0; i < 4; i++) {
3483 if (i == 1 && skip_mac_1)
3484 continue;
3485 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
3486 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
3487 }
3488
3489 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3490 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
3491 for (i = 0; i < 12; i++) {
3492 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
3493 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
3494 }
3495 }
3496
3497 addr_high = (tp->dev->dev_addr[0] +
3498 tp->dev->dev_addr[1] +
3499 tp->dev->dev_addr[2] +
3500 tp->dev->dev_addr[3] +
3501 tp->dev->dev_addr[4] +
3502 tp->dev->dev_addr[5]) &
3503 TX_BACKOFF_SEED_MASK;
3504 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3505}
3506
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003507static void tg3_enable_register_access(struct tg3 *tp)
3508{
3509 /*
3510 * Make sure register accesses (indirect or otherwise) will function
3511 * correctly.
3512 */
3513 pci_write_config_dword(tp->pdev,
3514 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
3515}
3516
3517static int tg3_power_up(struct tg3 *tp)
3518{
Matt Carlsonbed98292011-07-13 09:27:29 +00003519 int err;
3520
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003521 tg3_enable_register_access(tp);
3522
Matt Carlsonbed98292011-07-13 09:27:29 +00003523 err = pci_set_power_state(tp->pdev, PCI_D0);
3524 if (!err) {
3525 /* Switch out of Vaux if it is a NIC */
3526 tg3_pwrsrc_switch_to_vmain(tp);
3527 } else {
3528 netdev_err(tp->dev, "Transition to D0 failed\n");
3529 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003530
Matt Carlsonbed98292011-07-13 09:27:29 +00003531 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003532}
3533
Matt Carlson4b409522012-02-13 10:20:11 +00003534static int tg3_setup_phy(struct tg3 *, int);
3535
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003536static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537{
3538 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003539 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003541 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003542
3543 /* Restore the CLKREQ setting. */
Joe Perches63c3a662011-04-26 08:12:10 +00003544 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003545 u16 lnkctl;
3546
3547 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00003548 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003549 &lnkctl);
3550 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3551 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00003552 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003553 lnkctl);
3554 }
3555
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
3557 tw32(TG3PCI_MISC_HOST_CTRL,
3558 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
3559
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003560 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00003561 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003562
Joe Perches63c3a662011-04-26 08:12:10 +00003563 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08003564 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003565 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00003566 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003567 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003568 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003569
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00003570 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003571
Matt Carlson80096062010-08-02 11:26:06 +00003572 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003573
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003574 tp->link_config.speed = phydev->speed;
3575 tp->link_config.duplex = phydev->duplex;
3576 tp->link_config.autoneg = phydev->autoneg;
3577 tp->link_config.advertising = phydev->advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003578
3579 advertising = ADVERTISED_TP |
3580 ADVERTISED_Pause |
3581 ADVERTISED_Autoneg |
3582 ADVERTISED_10baseT_Half;
3583
Joe Perches63c3a662011-04-26 08:12:10 +00003584 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
3585 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003586 advertising |=
3587 ADVERTISED_100baseT_Half |
3588 ADVERTISED_100baseT_Full |
3589 ADVERTISED_10baseT_Full;
3590 else
3591 advertising |= ADVERTISED_10baseT_Full;
3592 }
3593
3594 phydev->advertising = advertising;
3595
3596 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003597
3598 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00003599 if (phyid != PHY_ID_BCMAC131) {
3600 phyid &= PHY_BCM_OUI_MASK;
3601 if (phyid == PHY_BCM_OUI_1 ||
3602 phyid == PHY_BCM_OUI_2 ||
3603 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08003604 do_low_power = true;
3605 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003606 }
Matt Carlsondd477002008-05-25 23:45:58 -07003607 } else {
Matt Carlson20232762008-12-21 20:18:56 -08003608 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003609
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003610 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER))
Matt Carlson80096062010-08-02 11:26:06 +00003611 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
Matt Carlson2855b9f2012-02-13 15:20:14 +00003613 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlsondd477002008-05-25 23:45:58 -07003614 tg3_setup_phy(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 }
3616
Michael Chanb5d37722006-09-27 16:06:21 -07003617 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
3618 u32 val;
3619
3620 val = tr32(GRC_VCPU_EXT_CTRL);
3621 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00003622 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08003623 int i;
3624 u32 val;
3625
3626 for (i = 0; i < 200; i++) {
3627 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
3628 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
3629 break;
3630 msleep(1);
3631 }
3632 }
Joe Perches63c3a662011-04-26 08:12:10 +00003633 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07003634 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
3635 WOL_DRV_STATE_SHUTDOWN |
3636 WOL_DRV_WOL |
3637 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08003638
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003639 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 u32 mac_mode;
3641
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003642 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003643 if (do_low_power &&
3644 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
3645 tg3_phy_auxctl_write(tp,
3646 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
3647 MII_TG3_AUXCTL_PCTL_WOL_EN |
3648 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3649 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07003650 udelay(40);
3651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003653 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07003654 mac_mode = MAC_MODE_PORT_MODE_GMII;
3655 else
3656 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003658 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
3659 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
3660 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00003661 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003662 SPEED_100 : SPEED_10;
3663 if (tg3_5700_link_polarity(tp, speed))
3664 mac_mode |= MAC_MODE_LINK_POLARITY;
3665 else
3666 mac_mode &= ~MAC_MODE_LINK_POLARITY;
3667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 } else {
3669 mac_mode = MAC_MODE_PORT_MODE_TBI;
3670 }
3671
Joe Perches63c3a662011-04-26 08:12:10 +00003672 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 tw32(MAC_LED_CTRL, tp->led_ctrl);
3674
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003675 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00003676 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
3677 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003678 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
Joe Perches63c3a662011-04-26 08:12:10 +00003680 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00003681 mac_mode |= MAC_MODE_APE_TX_EN |
3682 MAC_MODE_APE_RX_EN |
3683 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07003684
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 tw32_f(MAC_MODE, mac_mode);
3686 udelay(100);
3687
3688 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
3689 udelay(10);
3690 }
3691
Joe Perches63c3a662011-04-26 08:12:10 +00003692 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3694 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
3695 u32 base_val;
3696
3697 base_val = tp->pci_clock_ctrl;
3698 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
3699 CLOCK_CTRL_TXCLK_DISABLE);
3700
Michael Chanb401e9e2005-12-19 16:27:04 -08003701 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
3702 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00003703 } else if (tg3_flag(tp, 5780_CLASS) ||
3704 tg3_flag(tp, CPMU_PRESENT) ||
Matt Carlson6ff6f812011-05-19 12:12:54 +00003705 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07003706 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00003707 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 u32 newbits1, newbits2;
3709
3710 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3711 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3712 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
3713 CLOCK_CTRL_TXCLK_DISABLE |
3714 CLOCK_CTRL_ALTCLK);
3715 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00003716 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 newbits1 = CLOCK_CTRL_625_CORE;
3718 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
3719 } else {
3720 newbits1 = CLOCK_CTRL_ALTCLK;
3721 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
3722 }
3723
Michael Chanb401e9e2005-12-19 16:27:04 -08003724 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
3725 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
Michael Chanb401e9e2005-12-19 16:27:04 -08003727 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
3728 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729
Joe Perches63c3a662011-04-26 08:12:10 +00003730 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 u32 newbits3;
3732
3733 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3734 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3735 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
3736 CLOCK_CTRL_TXCLK_DISABLE |
3737 CLOCK_CTRL_44MHZ_CORE);
3738 } else {
3739 newbits3 = CLOCK_CTRL_44MHZ_CORE;
3740 }
3741
Michael Chanb401e9e2005-12-19 16:27:04 -08003742 tw32_wait_f(TG3PCI_CLOCK_CTRL,
3743 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 }
3745 }
3746
Joe Perches63c3a662011-04-26 08:12:10 +00003747 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08003748 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08003749
Matt Carlsoncd0d7222011-07-13 09:27:33 +00003750 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
3752 /* Workaround for unstable PLL clock */
3753 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
3754 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
3755 u32 val = tr32(0x7d00);
3756
3757 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
3758 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00003759 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08003760 int err;
3761
3762 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08003764 if (!err)
3765 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08003766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 }
3768
Michael Chanbbadf502006-04-06 21:46:34 -07003769 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
3770
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 return 0;
3772}
3773
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003774static void tg3_power_down(struct tg3 *tp)
3775{
3776 tg3_power_down_prepare(tp);
3777
Joe Perches63c3a662011-04-26 08:12:10 +00003778 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003779 pci_set_power_state(tp->pdev, PCI_D3hot);
3780}
3781
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
3783{
3784 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
3785 case MII_TG3_AUX_STAT_10HALF:
3786 *speed = SPEED_10;
3787 *duplex = DUPLEX_HALF;
3788 break;
3789
3790 case MII_TG3_AUX_STAT_10FULL:
3791 *speed = SPEED_10;
3792 *duplex = DUPLEX_FULL;
3793 break;
3794
3795 case MII_TG3_AUX_STAT_100HALF:
3796 *speed = SPEED_100;
3797 *duplex = DUPLEX_HALF;
3798 break;
3799
3800 case MII_TG3_AUX_STAT_100FULL:
3801 *speed = SPEED_100;
3802 *duplex = DUPLEX_FULL;
3803 break;
3804
3805 case MII_TG3_AUX_STAT_1000HALF:
3806 *speed = SPEED_1000;
3807 *duplex = DUPLEX_HALF;
3808 break;
3809
3810 case MII_TG3_AUX_STAT_1000FULL:
3811 *speed = SPEED_1000;
3812 *duplex = DUPLEX_FULL;
3813 break;
3814
3815 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003816 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07003817 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
3818 SPEED_10;
3819 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
3820 DUPLEX_HALF;
3821 break;
3822 }
Matt Carlsone7405222012-02-13 15:20:16 +00003823 *speed = SPEED_UNKNOWN;
3824 *duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827}
3828
Matt Carlson42b64a42011-05-19 12:12:49 +00003829static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830{
Matt Carlson42b64a42011-05-19 12:12:49 +00003831 int err = 0;
3832 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
Matt Carlson42b64a42011-05-19 12:12:49 +00003834 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00003835 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00003836 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
Matt Carlson42b64a42011-05-19 12:12:49 +00003838 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
3839 if (err)
3840 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Matt Carlson4f272092011-12-14 11:09:57 +00003842 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
3843 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003844
Matt Carlson4f272092011-12-14 11:09:57 +00003845 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3846 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
3847 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003848
Matt Carlson4f272092011-12-14 11:09:57 +00003849 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
3850 if (err)
3851 goto done;
3852 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003853
Matt Carlson42b64a42011-05-19 12:12:49 +00003854 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
3855 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
Matt Carlson42b64a42011-05-19 12:12:49 +00003857 tw32(TG3_CPMU_EEE_MODE,
3858 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003859
Matt Carlson42b64a42011-05-19 12:12:49 +00003860 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
3861 if (!err) {
3862 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00003863
Matt Carlsona6b68da2010-12-06 08:28:52 +00003864 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00003865 /* Advertise 100-BaseTX EEE ability */
3866 if (advertise & ADVERTISED_100baseT_Full)
3867 val |= MDIO_AN_EEE_ADV_100TX;
3868 /* Advertise 1000-BaseT EEE ability */
3869 if (advertise & ADVERTISED_1000baseT_Full)
3870 val |= MDIO_AN_EEE_ADV_1000T;
3871 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00003872 if (err)
3873 val = 0;
3874
3875 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
3876 case ASIC_REV_5717:
3877 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00003878 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00003879 case ASIC_REV_5719:
3880 /* If we advertised any eee advertisements above... */
3881 if (val)
3882 val = MII_TG3_DSP_TAP26_ALNOKO |
3883 MII_TG3_DSP_TAP26_RMRXSTO |
3884 MII_TG3_DSP_TAP26_OPCSINPT;
3885 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
3886 /* Fall through */
3887 case ASIC_REV_5720:
3888 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
3889 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
3890 MII_TG3_DSP_CH34TP2_HIBW01);
3891 }
Matt Carlson52b02d02010-10-14 10:37:41 +00003892
Matt Carlson42b64a42011-05-19 12:12:49 +00003893 err2 = TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
3894 if (!err)
3895 err = err2;
3896 }
3897
3898done:
3899 return err;
3900}
3901
3902static void tg3_phy_copper_begin(struct tg3 *tp)
3903{
Matt Carlsond13ba512012-02-22 12:35:19 +00003904 if (tp->link_config.autoneg == AUTONEG_ENABLE ||
3905 (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
3906 u32 adv, fc;
Matt Carlson42b64a42011-05-19 12:12:49 +00003907
Matt Carlsond13ba512012-02-22 12:35:19 +00003908 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
3909 adv = ADVERTISED_10baseT_Half |
3910 ADVERTISED_10baseT_Full;
3911 if (tg3_flag(tp, WOL_SPEED_100MB))
3912 adv |= ADVERTISED_100baseT_Half |
3913 ADVERTISED_100baseT_Full;
Matt Carlson42b64a42011-05-19 12:12:49 +00003914
Matt Carlsond13ba512012-02-22 12:35:19 +00003915 fc = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson42b64a42011-05-19 12:12:49 +00003916 } else {
Matt Carlsond13ba512012-02-22 12:35:19 +00003917 adv = tp->link_config.advertising;
3918 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
3919 adv &= ~(ADVERTISED_1000baseT_Half |
3920 ADVERTISED_1000baseT_Full);
3921
3922 fc = tp->link_config.flowctrl;
Matt Carlson42b64a42011-05-19 12:12:49 +00003923 }
3924
Matt Carlsond13ba512012-02-22 12:35:19 +00003925 tg3_phy_autoneg_cfg(tp, adv, fc);
Matt Carlson52b02d02010-10-14 10:37:41 +00003926
Matt Carlsond13ba512012-02-22 12:35:19 +00003927 tg3_writephy(tp, MII_BMCR,
3928 BMCR_ANENABLE | BMCR_ANRESTART);
3929 } else {
3930 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 u32 bmcr, orig_bmcr;
3932
3933 tp->link_config.active_speed = tp->link_config.speed;
3934 tp->link_config.active_duplex = tp->link_config.duplex;
3935
3936 bmcr = 0;
3937 switch (tp->link_config.speed) {
3938 default:
3939 case SPEED_10:
3940 break;
3941
3942 case SPEED_100:
3943 bmcr |= BMCR_SPEED100;
3944 break;
3945
3946 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00003947 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
3951 if (tp->link_config.duplex == DUPLEX_FULL)
3952 bmcr |= BMCR_FULLDPLX;
3953
3954 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
3955 (bmcr != orig_bmcr)) {
3956 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
3957 for (i = 0; i < 1500; i++) {
3958 u32 tmp;
3959
3960 udelay(10);
3961 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
3962 tg3_readphy(tp, MII_BMSR, &tmp))
3963 continue;
3964 if (!(tmp & BMSR_LSTATUS)) {
3965 udelay(40);
3966 break;
3967 }
3968 }
3969 tg3_writephy(tp, MII_BMCR, bmcr);
3970 udelay(40);
3971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 }
3973}
3974
3975static int tg3_init_5401phy_dsp(struct tg3 *tp)
3976{
3977 int err;
3978
3979 /* Turn off tap power management. */
3980 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003981 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00003983 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
3984 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
3985 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
3986 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
3987 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988
3989 udelay(40);
3990
3991 return err;
3992}
3993
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003994static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003996 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08003997
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003998 advertising = tp->link_config.advertising;
3999 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004001 advmsk = ADVERTISE_ALL;
4002 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00004003 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004004 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004007 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
4008 return false;
4009
4010 if ((*lcladv & advmsk) != tgtadv)
4011 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00004012
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004013 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 u32 tg3_ctrl;
4015
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004016 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08004017
Matt Carlson221c5632011-06-13 13:39:01 +00004018 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004019 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Matt Carlson3198e072012-02-13 15:20:10 +00004021 if (tgtadv &&
4022 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
4023 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)) {
4024 tgtadv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
4025 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL |
4026 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
4027 } else {
4028 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
4029 }
4030
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004031 if (tg3_ctrl != tgtadv)
4032 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 }
Matt Carlson93a700a2011-08-31 11:44:54 +00004034
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004035 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08004036}
4037
Matt Carlson859edb22011-12-08 14:40:16 +00004038static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
4039{
4040 u32 lpeth = 0;
4041
4042 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4043 u32 val;
4044
4045 if (tg3_readphy(tp, MII_STAT1000, &val))
4046 return false;
4047
4048 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
4049 }
4050
4051 if (tg3_readphy(tp, MII_LPA, rmtadv))
4052 return false;
4053
4054 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
4055 tp->link_config.rmt_adv = lpeth;
4056
4057 return true;
4058}
4059
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
4061{
4062 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004063 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08004064 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 u16 current_speed;
4066 u8 current_duplex;
4067 int i, err;
4068
4069 tw32(MAC_EVENT, 0);
4070
4071 tw32_f(MAC_STATUS,
4072 (MAC_STATUS_SYNC_CHANGED |
4073 MAC_STATUS_CFG_CHANGED |
4074 MAC_STATUS_MI_COMPLETION |
4075 MAC_STATUS_LNKSTATE_CHANGED));
4076 udelay(40);
4077
Matt Carlson8ef21422008-05-02 16:47:53 -07004078 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
4079 tw32_f(MAC_MI_MODE,
4080 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
4081 udelay(80);
4082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004084 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
4086 /* Some third-party PHYs need to be reset on link going
4087 * down.
4088 */
4089 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
4090 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
4091 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
4092 netif_carrier_ok(tp->dev)) {
4093 tg3_readphy(tp, MII_BMSR, &bmsr);
4094 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4095 !(bmsr & BMSR_LSTATUS))
4096 force_reset = 1;
4097 }
4098 if (force_reset)
4099 tg3_phy_reset(tp);
4100
Matt Carlson79eb6902010-02-17 15:17:03 +00004101 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 tg3_readphy(tp, MII_BMSR, &bmsr);
4103 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00004104 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 bmsr = 0;
4106
4107 if (!(bmsr & BMSR_LSTATUS)) {
4108 err = tg3_init_5401phy_dsp(tp);
4109 if (err)
4110 return err;
4111
4112 tg3_readphy(tp, MII_BMSR, &bmsr);
4113 for (i = 0; i < 1000; i++) {
4114 udelay(10);
4115 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4116 (bmsr & BMSR_LSTATUS)) {
4117 udelay(40);
4118 break;
4119 }
4120 }
4121
Matt Carlson79eb6902010-02-17 15:17:03 +00004122 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
4123 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 !(bmsr & BMSR_LSTATUS) &&
4125 tp->link_config.active_speed == SPEED_1000) {
4126 err = tg3_phy_reset(tp);
4127 if (!err)
4128 err = tg3_init_5401phy_dsp(tp);
4129 if (err)
4130 return err;
4131 }
4132 }
4133 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
4134 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
4135 /* 5701 {A0,B0} CRC bug workaround */
4136 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004137 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
4138 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
4139 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 }
4141
4142 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004143 tg3_readphy(tp, MII_TG3_ISTAT, &val);
4144 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004146 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004148 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 tg3_writephy(tp, MII_TG3_IMASK, ~0);
4150
4151 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
4152 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
4153 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
4154 tg3_writephy(tp, MII_TG3_EXT_CTRL,
4155 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
4156 else
4157 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
4158 }
4159
4160 current_link_up = 0;
Matt Carlsone7405222012-02-13 15:20:16 +00004161 current_speed = SPEED_UNKNOWN;
4162 current_duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +00004163 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00004164 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004166 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00004167 err = tg3_phy_auxctl_read(tp,
4168 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4169 &val);
4170 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004171 tg3_phy_auxctl_write(tp,
4172 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4173 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174 goto relink;
4175 }
4176 }
4177
4178 bmsr = 0;
4179 for (i = 0; i < 100; i++) {
4180 tg3_readphy(tp, MII_BMSR, &bmsr);
4181 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4182 (bmsr & BMSR_LSTATUS))
4183 break;
4184 udelay(40);
4185 }
4186
4187 if (bmsr & BMSR_LSTATUS) {
4188 u32 aux_stat, bmcr;
4189
4190 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
4191 for (i = 0; i < 2000; i++) {
4192 udelay(10);
4193 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
4194 aux_stat)
4195 break;
4196 }
4197
4198 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
4199 &current_speed,
4200 &current_duplex);
4201
4202 bmcr = 0;
4203 for (i = 0; i < 200; i++) {
4204 tg3_readphy(tp, MII_BMCR, &bmcr);
4205 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4206 continue;
4207 if (bmcr && bmcr != 0x7fff)
4208 break;
4209 udelay(10);
4210 }
4211
Matt Carlsonef167e22007-12-20 20:10:01 -08004212 lcl_adv = 0;
4213 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
Matt Carlsonef167e22007-12-20 20:10:01 -08004215 tp->link_config.active_speed = current_speed;
4216 tp->link_config.active_duplex = current_duplex;
4217
4218 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4219 if ((bmcr & BMCR_ANENABLE) &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004220 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00004221 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004222 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 } else {
4224 if (!(bmcr & BMCR_ANENABLE) &&
4225 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08004226 tp->link_config.duplex == current_duplex &&
4227 tp->link_config.flowctrl ==
4228 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 }
4231 }
4232
Matt Carlsonef167e22007-12-20 20:10:01 -08004233 if (current_link_up == 1 &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00004234 tp->link_config.active_duplex == DUPLEX_FULL) {
4235 u32 reg, bit;
4236
4237 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
4238 reg = MII_TG3_FET_GEN_STAT;
4239 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
4240 } else {
4241 reg = MII_TG3_EXT_STAT;
4242 bit = MII_TG3_EXT_STAT_MDIX;
4243 }
4244
4245 if (!tg3_readphy(tp, reg, &val) && (val & bit))
4246 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
4247
Matt Carlsonef167e22007-12-20 20:10:01 -08004248 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 }
4251
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252relink:
Matt Carlson80096062010-08-02 11:26:06 +00004253 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 tg3_phy_copper_begin(tp);
4255
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004256 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004257 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4258 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 current_link_up = 1;
4260 }
4261
4262 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
4263 if (current_link_up == 1) {
4264 if (tp->link_config.active_speed == SPEED_100 ||
4265 tp->link_config.active_speed == SPEED_10)
4266 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4267 else
4268 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004269 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004270 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4271 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4273
4274 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4275 if (tp->link_config.active_duplex == DUPLEX_HALF)
4276 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4277
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004279 if (current_link_up == 1 &&
4280 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004282 else
4283 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 }
4285
4286 /* ??? Without this setting Netgear GA302T PHY does not
4287 * ??? send/receive packets...
4288 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004289 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
4291 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4292 tw32_f(MAC_MI_MODE, tp->mi_mode);
4293 udelay(80);
4294 }
4295
4296 tw32_f(MAC_MODE, tp->mac_mode);
4297 udelay(40);
4298
Matt Carlson52b02d02010-10-14 10:37:41 +00004299 tg3_phy_eee_adjust(tp, current_link_up);
4300
Joe Perches63c3a662011-04-26 08:12:10 +00004301 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 /* Polled via timer. */
4303 tw32_f(MAC_EVENT, 0);
4304 } else {
4305 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4306 }
4307 udelay(40);
4308
4309 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
4310 current_link_up == 1 &&
4311 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00004312 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 udelay(120);
4314 tw32_f(MAC_STATUS,
4315 (MAC_STATUS_SYNC_CHANGED |
4316 MAC_STATUS_CFG_CHANGED));
4317 udelay(40);
4318 tg3_write_mem(tp,
4319 NIC_SRAM_FIRMWARE_MBOX,
4320 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
4321 }
4322
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004323 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00004324 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004325 u16 oldlnkctl, newlnkctl;
4326
4327 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00004328 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004329 &oldlnkctl);
4330 if (tp->link_config.active_speed == SPEED_100 ||
4331 tp->link_config.active_speed == SPEED_10)
4332 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
4333 else
4334 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
4335 if (newlnkctl != oldlnkctl)
4336 pci_write_config_word(tp->pdev,
Matt Carlson93a700a2011-08-31 11:44:54 +00004337 pci_pcie_cap(tp->pdev) +
4338 PCI_EXP_LNKCTL, newlnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004339 }
4340
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 if (current_link_up != netif_carrier_ok(tp->dev)) {
4342 if (current_link_up)
4343 netif_carrier_on(tp->dev);
4344 else
4345 netif_carrier_off(tp->dev);
4346 tg3_link_report(tp);
4347 }
4348
4349 return 0;
4350}
4351
4352struct tg3_fiber_aneginfo {
4353 int state;
4354#define ANEG_STATE_UNKNOWN 0
4355#define ANEG_STATE_AN_ENABLE 1
4356#define ANEG_STATE_RESTART_INIT 2
4357#define ANEG_STATE_RESTART 3
4358#define ANEG_STATE_DISABLE_LINK_OK 4
4359#define ANEG_STATE_ABILITY_DETECT_INIT 5
4360#define ANEG_STATE_ABILITY_DETECT 6
4361#define ANEG_STATE_ACK_DETECT_INIT 7
4362#define ANEG_STATE_ACK_DETECT 8
4363#define ANEG_STATE_COMPLETE_ACK_INIT 9
4364#define ANEG_STATE_COMPLETE_ACK 10
4365#define ANEG_STATE_IDLE_DETECT_INIT 11
4366#define ANEG_STATE_IDLE_DETECT 12
4367#define ANEG_STATE_LINK_OK 13
4368#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
4369#define ANEG_STATE_NEXT_PAGE_WAIT 15
4370
4371 u32 flags;
4372#define MR_AN_ENABLE 0x00000001
4373#define MR_RESTART_AN 0x00000002
4374#define MR_AN_COMPLETE 0x00000004
4375#define MR_PAGE_RX 0x00000008
4376#define MR_NP_LOADED 0x00000010
4377#define MR_TOGGLE_TX 0x00000020
4378#define MR_LP_ADV_FULL_DUPLEX 0x00000040
4379#define MR_LP_ADV_HALF_DUPLEX 0x00000080
4380#define MR_LP_ADV_SYM_PAUSE 0x00000100
4381#define MR_LP_ADV_ASYM_PAUSE 0x00000200
4382#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
4383#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
4384#define MR_LP_ADV_NEXT_PAGE 0x00001000
4385#define MR_TOGGLE_RX 0x00002000
4386#define MR_NP_RX 0x00004000
4387
4388#define MR_LINK_OK 0x80000000
4389
4390 unsigned long link_time, cur_time;
4391
4392 u32 ability_match_cfg;
4393 int ability_match_count;
4394
4395 char ability_match, idle_match, ack_match;
4396
4397 u32 txconfig, rxconfig;
4398#define ANEG_CFG_NP 0x00000080
4399#define ANEG_CFG_ACK 0x00000040
4400#define ANEG_CFG_RF2 0x00000020
4401#define ANEG_CFG_RF1 0x00000010
4402#define ANEG_CFG_PS2 0x00000001
4403#define ANEG_CFG_PS1 0x00008000
4404#define ANEG_CFG_HD 0x00004000
4405#define ANEG_CFG_FD 0x00002000
4406#define ANEG_CFG_INVAL 0x00001f06
4407
4408};
4409#define ANEG_OK 0
4410#define ANEG_DONE 1
4411#define ANEG_TIMER_ENAB 2
4412#define ANEG_FAILED -1
4413
4414#define ANEG_STATE_SETTLE_TIME 10000
4415
4416static int tg3_fiber_aneg_smachine(struct tg3 *tp,
4417 struct tg3_fiber_aneginfo *ap)
4418{
Matt Carlson5be73b42007-12-20 20:09:29 -08004419 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 unsigned long delta;
4421 u32 rx_cfg_reg;
4422 int ret;
4423
4424 if (ap->state == ANEG_STATE_UNKNOWN) {
4425 ap->rxconfig = 0;
4426 ap->link_time = 0;
4427 ap->cur_time = 0;
4428 ap->ability_match_cfg = 0;
4429 ap->ability_match_count = 0;
4430 ap->ability_match = 0;
4431 ap->idle_match = 0;
4432 ap->ack_match = 0;
4433 }
4434 ap->cur_time++;
4435
4436 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
4437 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
4438
4439 if (rx_cfg_reg != ap->ability_match_cfg) {
4440 ap->ability_match_cfg = rx_cfg_reg;
4441 ap->ability_match = 0;
4442 ap->ability_match_count = 0;
4443 } else {
4444 if (++ap->ability_match_count > 1) {
4445 ap->ability_match = 1;
4446 ap->ability_match_cfg = rx_cfg_reg;
4447 }
4448 }
4449 if (rx_cfg_reg & ANEG_CFG_ACK)
4450 ap->ack_match = 1;
4451 else
4452 ap->ack_match = 0;
4453
4454 ap->idle_match = 0;
4455 } else {
4456 ap->idle_match = 1;
4457 ap->ability_match_cfg = 0;
4458 ap->ability_match_count = 0;
4459 ap->ability_match = 0;
4460 ap->ack_match = 0;
4461
4462 rx_cfg_reg = 0;
4463 }
4464
4465 ap->rxconfig = rx_cfg_reg;
4466 ret = ANEG_OK;
4467
Matt Carlson33f401a2010-04-05 10:19:27 +00004468 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 case ANEG_STATE_UNKNOWN:
4470 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
4471 ap->state = ANEG_STATE_AN_ENABLE;
4472
4473 /* fallthru */
4474 case ANEG_STATE_AN_ENABLE:
4475 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
4476 if (ap->flags & MR_AN_ENABLE) {
4477 ap->link_time = 0;
4478 ap->cur_time = 0;
4479 ap->ability_match_cfg = 0;
4480 ap->ability_match_count = 0;
4481 ap->ability_match = 0;
4482 ap->idle_match = 0;
4483 ap->ack_match = 0;
4484
4485 ap->state = ANEG_STATE_RESTART_INIT;
4486 } else {
4487 ap->state = ANEG_STATE_DISABLE_LINK_OK;
4488 }
4489 break;
4490
4491 case ANEG_STATE_RESTART_INIT:
4492 ap->link_time = ap->cur_time;
4493 ap->flags &= ~(MR_NP_LOADED);
4494 ap->txconfig = 0;
4495 tw32(MAC_TX_AUTO_NEG, 0);
4496 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4497 tw32_f(MAC_MODE, tp->mac_mode);
4498 udelay(40);
4499
4500 ret = ANEG_TIMER_ENAB;
4501 ap->state = ANEG_STATE_RESTART;
4502
4503 /* fallthru */
4504 case ANEG_STATE_RESTART:
4505 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00004506 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00004508 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 break;
4511
4512 case ANEG_STATE_DISABLE_LINK_OK:
4513 ret = ANEG_DONE;
4514 break;
4515
4516 case ANEG_STATE_ABILITY_DETECT_INIT:
4517 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08004518 ap->txconfig = ANEG_CFG_FD;
4519 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4520 if (flowctrl & ADVERTISE_1000XPAUSE)
4521 ap->txconfig |= ANEG_CFG_PS1;
4522 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4523 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4525 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4526 tw32_f(MAC_MODE, tp->mac_mode);
4527 udelay(40);
4528
4529 ap->state = ANEG_STATE_ABILITY_DETECT;
4530 break;
4531
4532 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00004533 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 break;
4536
4537 case ANEG_STATE_ACK_DETECT_INIT:
4538 ap->txconfig |= ANEG_CFG_ACK;
4539 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4540 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4541 tw32_f(MAC_MODE, tp->mac_mode);
4542 udelay(40);
4543
4544 ap->state = ANEG_STATE_ACK_DETECT;
4545
4546 /* fallthru */
4547 case ANEG_STATE_ACK_DETECT:
4548 if (ap->ack_match != 0) {
4549 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
4550 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
4551 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
4552 } else {
4553 ap->state = ANEG_STATE_AN_ENABLE;
4554 }
4555 } else if (ap->ability_match != 0 &&
4556 ap->rxconfig == 0) {
4557 ap->state = ANEG_STATE_AN_ENABLE;
4558 }
4559 break;
4560
4561 case ANEG_STATE_COMPLETE_ACK_INIT:
4562 if (ap->rxconfig & ANEG_CFG_INVAL) {
4563 ret = ANEG_FAILED;
4564 break;
4565 }
4566 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
4567 MR_LP_ADV_HALF_DUPLEX |
4568 MR_LP_ADV_SYM_PAUSE |
4569 MR_LP_ADV_ASYM_PAUSE |
4570 MR_LP_ADV_REMOTE_FAULT1 |
4571 MR_LP_ADV_REMOTE_FAULT2 |
4572 MR_LP_ADV_NEXT_PAGE |
4573 MR_TOGGLE_RX |
4574 MR_NP_RX);
4575 if (ap->rxconfig & ANEG_CFG_FD)
4576 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
4577 if (ap->rxconfig & ANEG_CFG_HD)
4578 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
4579 if (ap->rxconfig & ANEG_CFG_PS1)
4580 ap->flags |= MR_LP_ADV_SYM_PAUSE;
4581 if (ap->rxconfig & ANEG_CFG_PS2)
4582 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
4583 if (ap->rxconfig & ANEG_CFG_RF1)
4584 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
4585 if (ap->rxconfig & ANEG_CFG_RF2)
4586 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
4587 if (ap->rxconfig & ANEG_CFG_NP)
4588 ap->flags |= MR_LP_ADV_NEXT_PAGE;
4589
4590 ap->link_time = ap->cur_time;
4591
4592 ap->flags ^= (MR_TOGGLE_TX);
4593 if (ap->rxconfig & 0x0008)
4594 ap->flags |= MR_TOGGLE_RX;
4595 if (ap->rxconfig & ANEG_CFG_NP)
4596 ap->flags |= MR_NP_RX;
4597 ap->flags |= MR_PAGE_RX;
4598
4599 ap->state = ANEG_STATE_COMPLETE_ACK;
4600 ret = ANEG_TIMER_ENAB;
4601 break;
4602
4603 case ANEG_STATE_COMPLETE_ACK:
4604 if (ap->ability_match != 0 &&
4605 ap->rxconfig == 0) {
4606 ap->state = ANEG_STATE_AN_ENABLE;
4607 break;
4608 }
4609 delta = ap->cur_time - ap->link_time;
4610 if (delta > ANEG_STATE_SETTLE_TIME) {
4611 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
4612 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4613 } else {
4614 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
4615 !(ap->flags & MR_NP_RX)) {
4616 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4617 } else {
4618 ret = ANEG_FAILED;
4619 }
4620 }
4621 }
4622 break;
4623
4624 case ANEG_STATE_IDLE_DETECT_INIT:
4625 ap->link_time = ap->cur_time;
4626 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4627 tw32_f(MAC_MODE, tp->mac_mode);
4628 udelay(40);
4629
4630 ap->state = ANEG_STATE_IDLE_DETECT;
4631 ret = ANEG_TIMER_ENAB;
4632 break;
4633
4634 case ANEG_STATE_IDLE_DETECT:
4635 if (ap->ability_match != 0 &&
4636 ap->rxconfig == 0) {
4637 ap->state = ANEG_STATE_AN_ENABLE;
4638 break;
4639 }
4640 delta = ap->cur_time - ap->link_time;
4641 if (delta > ANEG_STATE_SETTLE_TIME) {
4642 /* XXX another gem from the Broadcom driver :( */
4643 ap->state = ANEG_STATE_LINK_OK;
4644 }
4645 break;
4646
4647 case ANEG_STATE_LINK_OK:
4648 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
4649 ret = ANEG_DONE;
4650 break;
4651
4652 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
4653 /* ??? unimplemented */
4654 break;
4655
4656 case ANEG_STATE_NEXT_PAGE_WAIT:
4657 /* ??? unimplemented */
4658 break;
4659
4660 default:
4661 ret = ANEG_FAILED;
4662 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
4665 return ret;
4666}
4667
Matt Carlson5be73b42007-12-20 20:09:29 -08004668static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669{
4670 int res = 0;
4671 struct tg3_fiber_aneginfo aninfo;
4672 int status = ANEG_FAILED;
4673 unsigned int tick;
4674 u32 tmp;
4675
4676 tw32_f(MAC_TX_AUTO_NEG, 0);
4677
4678 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
4679 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
4680 udelay(40);
4681
4682 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
4683 udelay(40);
4684
4685 memset(&aninfo, 0, sizeof(aninfo));
4686 aninfo.flags |= MR_AN_ENABLE;
4687 aninfo.state = ANEG_STATE_UNKNOWN;
4688 aninfo.cur_time = 0;
4689 tick = 0;
4690 while (++tick < 195000) {
4691 status = tg3_fiber_aneg_smachine(tp, &aninfo);
4692 if (status == ANEG_DONE || status == ANEG_FAILED)
4693 break;
4694
4695 udelay(1);
4696 }
4697
4698 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4699 tw32_f(MAC_MODE, tp->mac_mode);
4700 udelay(40);
4701
Matt Carlson5be73b42007-12-20 20:09:29 -08004702 *txflags = aninfo.txconfig;
4703 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704
4705 if (status == ANEG_DONE &&
4706 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
4707 MR_LP_ADV_FULL_DUPLEX)))
4708 res = 1;
4709
4710 return res;
4711}
4712
4713static void tg3_init_bcm8002(struct tg3 *tp)
4714{
4715 u32 mac_status = tr32(MAC_STATUS);
4716 int i;
4717
4718 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00004719 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 !(mac_status & MAC_STATUS_PCS_SYNCED))
4721 return;
4722
4723 /* Set PLL lock range. */
4724 tg3_writephy(tp, 0x16, 0x8007);
4725
4726 /* SW reset */
4727 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
4728
4729 /* Wait for reset to complete. */
4730 /* XXX schedule_timeout() ... */
4731 for (i = 0; i < 500; i++)
4732 udelay(10);
4733
4734 /* Config mode; select PMA/Ch 1 regs. */
4735 tg3_writephy(tp, 0x10, 0x8411);
4736
4737 /* Enable auto-lock and comdet, select txclk for tx. */
4738 tg3_writephy(tp, 0x11, 0x0a10);
4739
4740 tg3_writephy(tp, 0x18, 0x00a0);
4741 tg3_writephy(tp, 0x16, 0x41ff);
4742
4743 /* Assert and deassert POR. */
4744 tg3_writephy(tp, 0x13, 0x0400);
4745 udelay(40);
4746 tg3_writephy(tp, 0x13, 0x0000);
4747
4748 tg3_writephy(tp, 0x11, 0x0a50);
4749 udelay(40);
4750 tg3_writephy(tp, 0x11, 0x0a10);
4751
4752 /* Wait for signal to stabilize */
4753 /* XXX schedule_timeout() ... */
4754 for (i = 0; i < 15000; i++)
4755 udelay(10);
4756
4757 /* Deselect the channel register so we can read the PHYID
4758 * later.
4759 */
4760 tg3_writephy(tp, 0x10, 0x8011);
4761}
4762
4763static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
4764{
Matt Carlson82cd3d12007-12-20 20:09:00 -08004765 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 u32 sg_dig_ctrl, sg_dig_status;
4767 u32 serdes_cfg, expected_sg_dig_ctrl;
4768 int workaround, port_a;
4769 int current_link_up;
4770
4771 serdes_cfg = 0;
4772 expected_sg_dig_ctrl = 0;
4773 workaround = 0;
4774 port_a = 1;
4775 current_link_up = 0;
4776
4777 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
4778 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
4779 workaround = 1;
4780 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
4781 port_a = 0;
4782
4783 /* preserve bits 0-11,13,14 for signal pre-emphasis */
4784 /* preserve bits 20-23 for voltage regulator */
4785 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
4786 }
4787
4788 sg_dig_ctrl = tr32(SG_DIG_CTRL);
4789
4790 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004791 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 if (workaround) {
4793 u32 val = serdes_cfg;
4794
4795 if (port_a)
4796 val |= 0xc010000;
4797 else
4798 val |= 0x4010000;
4799 tw32_f(MAC_SERDES_CFG, val);
4800 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004801
4802 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 }
4804 if (mac_status & MAC_STATUS_PCS_SYNCED) {
4805 tg3_setup_flow_control(tp, 0, 0);
4806 current_link_up = 1;
4807 }
4808 goto out;
4809 }
4810
4811 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004812 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813
Matt Carlson82cd3d12007-12-20 20:09:00 -08004814 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4815 if (flowctrl & ADVERTISE_1000XPAUSE)
4816 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
4817 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4818 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
4820 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004821 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07004822 tp->serdes_counter &&
4823 ((mac_status & (MAC_STATUS_PCS_SYNCED |
4824 MAC_STATUS_RCVD_CFG)) ==
4825 MAC_STATUS_PCS_SYNCED)) {
4826 tp->serdes_counter--;
4827 current_link_up = 1;
4828 goto out;
4829 }
4830restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831 if (workaround)
4832 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004833 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 udelay(5);
4835 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
4836
Michael Chan3d3ebe72006-09-27 15:59:15 -07004837 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004838 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
4840 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004841 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 mac_status = tr32(MAC_STATUS);
4843
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004844 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08004846 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
Matt Carlson82cd3d12007-12-20 20:09:00 -08004848 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
4849 local_adv |= ADVERTISE_1000XPAUSE;
4850 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
4851 local_adv |= ADVERTISE_1000XPSE_ASYM;
4852
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004853 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004854 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004855 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004856 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857
Matt Carlson859edb22011-12-08 14:40:16 +00004858 tp->link_config.rmt_adv =
4859 mii_adv_to_ethtool_adv_x(remote_adv);
4860
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861 tg3_setup_flow_control(tp, local_adv, remote_adv);
4862 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004863 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004864 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004865 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004866 if (tp->serdes_counter)
4867 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 else {
4869 if (workaround) {
4870 u32 val = serdes_cfg;
4871
4872 if (port_a)
4873 val |= 0xc010000;
4874 else
4875 val |= 0x4010000;
4876
4877 tw32_f(MAC_SERDES_CFG, val);
4878 }
4879
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004880 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 udelay(40);
4882
4883 /* Link parallel detection - link is up */
4884 /* only if we have PCS_SYNC and not */
4885 /* receiving config code words */
4886 mac_status = tr32(MAC_STATUS);
4887 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
4888 !(mac_status & MAC_STATUS_RCVD_CFG)) {
4889 tg3_setup_flow_control(tp, 0, 0);
4890 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004891 tp->phy_flags |=
4892 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004893 tp->serdes_counter =
4894 SERDES_PARALLEL_DET_TIMEOUT;
4895 } else
4896 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897 }
4898 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07004899 } else {
4900 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004901 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 }
4903
4904out:
4905 return current_link_up;
4906}
4907
4908static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
4909{
4910 int current_link_up = 0;
4911
Michael Chan5cf64b8a2007-05-05 12:11:21 -07004912 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914
4915 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08004916 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004918
Matt Carlson5be73b42007-12-20 20:09:29 -08004919 if (fiber_autoneg(tp, &txflags, &rxflags)) {
4920 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
Matt Carlson5be73b42007-12-20 20:09:29 -08004922 if (txflags & ANEG_CFG_PS1)
4923 local_adv |= ADVERTISE_1000XPAUSE;
4924 if (txflags & ANEG_CFG_PS2)
4925 local_adv |= ADVERTISE_1000XPSE_ASYM;
4926
4927 if (rxflags & MR_LP_ADV_SYM_PAUSE)
4928 remote_adv |= LPA_1000XPAUSE;
4929 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
4930 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931
Matt Carlson859edb22011-12-08 14:40:16 +00004932 tp->link_config.rmt_adv =
4933 mii_adv_to_ethtool_adv_x(remote_adv);
4934
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 tg3_setup_flow_control(tp, local_adv, remote_adv);
4936
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 current_link_up = 1;
4938 }
4939 for (i = 0; i < 30; i++) {
4940 udelay(20);
4941 tw32_f(MAC_STATUS,
4942 (MAC_STATUS_SYNC_CHANGED |
4943 MAC_STATUS_CFG_CHANGED));
4944 udelay(40);
4945 if ((tr32(MAC_STATUS) &
4946 (MAC_STATUS_SYNC_CHANGED |
4947 MAC_STATUS_CFG_CHANGED)) == 0)
4948 break;
4949 }
4950
4951 mac_status = tr32(MAC_STATUS);
4952 if (current_link_up == 0 &&
4953 (mac_status & MAC_STATUS_PCS_SYNCED) &&
4954 !(mac_status & MAC_STATUS_RCVD_CFG))
4955 current_link_up = 1;
4956 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08004957 tg3_setup_flow_control(tp, 0, 0);
4958
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 /* Forcing 1000FD link up. */
4960 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961
4962 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
4963 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004964
4965 tw32_f(MAC_MODE, tp->mac_mode);
4966 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 }
4968
4969out:
4970 return current_link_up;
4971}
4972
4973static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
4974{
4975 u32 orig_pause_cfg;
4976 u16 orig_active_speed;
4977 u8 orig_active_duplex;
4978 u32 mac_status;
4979 int current_link_up;
4980 int i;
4981
Matt Carlson8d018622007-12-20 20:05:44 -08004982 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 orig_active_speed = tp->link_config.active_speed;
4984 orig_active_duplex = tp->link_config.active_duplex;
4985
Joe Perches63c3a662011-04-26 08:12:10 +00004986 if (!tg3_flag(tp, HW_AUTONEG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 netif_carrier_ok(tp->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00004988 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 mac_status = tr32(MAC_STATUS);
4990 mac_status &= (MAC_STATUS_PCS_SYNCED |
4991 MAC_STATUS_SIGNAL_DET |
4992 MAC_STATUS_CFG_CHANGED |
4993 MAC_STATUS_RCVD_CFG);
4994 if (mac_status == (MAC_STATUS_PCS_SYNCED |
4995 MAC_STATUS_SIGNAL_DET)) {
4996 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4997 MAC_STATUS_CFG_CHANGED));
4998 return 0;
4999 }
5000 }
5001
5002 tw32_f(MAC_TX_AUTO_NEG, 0);
5003
5004 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
5005 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
5006 tw32_f(MAC_MODE, tp->mac_mode);
5007 udelay(40);
5008
Matt Carlson79eb6902010-02-17 15:17:03 +00005009 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 tg3_init_bcm8002(tp);
5011
5012 /* Enable link change event even when serdes polling. */
5013 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5014 udelay(40);
5015
5016 current_link_up = 0;
Matt Carlson859edb22011-12-08 14:40:16 +00005017 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018 mac_status = tr32(MAC_STATUS);
5019
Joe Perches63c3a662011-04-26 08:12:10 +00005020 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
5022 else
5023 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
5024
Matt Carlson898a56f2009-08-28 14:02:40 +00005025 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00005027 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
5029 for (i = 0; i < 100; i++) {
5030 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5031 MAC_STATUS_CFG_CHANGED));
5032 udelay(5);
5033 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07005034 MAC_STATUS_CFG_CHANGED |
5035 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036 break;
5037 }
5038
5039 mac_status = tr32(MAC_STATUS);
5040 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
5041 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005042 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
5043 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 tw32_f(MAC_MODE, (tp->mac_mode |
5045 MAC_MODE_SEND_CONFIGS));
5046 udelay(1);
5047 tw32_f(MAC_MODE, tp->mac_mode);
5048 }
5049 }
5050
5051 if (current_link_up == 1) {
5052 tp->link_config.active_speed = SPEED_1000;
5053 tp->link_config.active_duplex = DUPLEX_FULL;
5054 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5055 LED_CTRL_LNKLED_OVERRIDE |
5056 LED_CTRL_1000MBPS_ON));
5057 } else {
Matt Carlsone7405222012-02-13 15:20:16 +00005058 tp->link_config.active_speed = SPEED_UNKNOWN;
5059 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5061 LED_CTRL_LNKLED_OVERRIDE |
5062 LED_CTRL_TRAFFIC_OVERRIDE));
5063 }
5064
5065 if (current_link_up != netif_carrier_ok(tp->dev)) {
5066 if (current_link_up)
5067 netif_carrier_on(tp->dev);
5068 else
5069 netif_carrier_off(tp->dev);
5070 tg3_link_report(tp);
5071 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08005072 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073 if (orig_pause_cfg != now_pause_cfg ||
5074 orig_active_speed != tp->link_config.active_speed ||
5075 orig_active_duplex != tp->link_config.active_duplex)
5076 tg3_link_report(tp);
5077 }
5078
5079 return 0;
5080}
5081
Michael Chan747e8f82005-07-25 12:33:22 -07005082static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
5083{
5084 int current_link_up, err = 0;
5085 u32 bmsr, bmcr;
5086 u16 current_speed;
5087 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08005088 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07005089
5090 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5091 tw32_f(MAC_MODE, tp->mac_mode);
5092 udelay(40);
5093
5094 tw32(MAC_EVENT, 0);
5095
5096 tw32_f(MAC_STATUS,
5097 (MAC_STATUS_SYNC_CHANGED |
5098 MAC_STATUS_CFG_CHANGED |
5099 MAC_STATUS_MI_COMPLETION |
5100 MAC_STATUS_LNKSTATE_CHANGED));
5101 udelay(40);
5102
5103 if (force_reset)
5104 tg3_phy_reset(tp);
5105
5106 current_link_up = 0;
Matt Carlsone7405222012-02-13 15:20:16 +00005107 current_speed = SPEED_UNKNOWN;
5108 current_duplex = DUPLEX_UNKNOWN;
Matt Carlson859edb22011-12-08 14:40:16 +00005109 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005110
5111 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5112 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08005113 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
5114 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5115 bmsr |= BMSR_LSTATUS;
5116 else
5117 bmsr &= ~BMSR_LSTATUS;
5118 }
Michael Chan747e8f82005-07-25 12:33:22 -07005119
5120 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
5121
5122 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005123 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005124 /* do nothing, just check for link up at the end */
5125 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05005126 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07005127
5128 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05005129 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
5130 ADVERTISE_1000XPAUSE |
5131 ADVERTISE_1000XPSE_ASYM |
5132 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07005133
Matt Carlson28011cf2011-11-16 18:36:59 -05005134 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00005135 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07005136
Matt Carlson28011cf2011-11-16 18:36:59 -05005137 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
5138 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07005139 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
5140 tg3_writephy(tp, MII_BMCR, bmcr);
5141
5142 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07005143 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005144 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005145
5146 return err;
5147 }
5148 } else {
5149 u32 new_bmcr;
5150
5151 bmcr &= ~BMCR_SPEED1000;
5152 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
5153
5154 if (tp->link_config.duplex == DUPLEX_FULL)
5155 new_bmcr |= BMCR_FULLDPLX;
5156
5157 if (new_bmcr != bmcr) {
5158 /* BMCR_SPEED1000 is a reserved bit that needs
5159 * to be set on write.
5160 */
5161 new_bmcr |= BMCR_SPEED1000;
5162
5163 /* Force a linkdown */
5164 if (netif_carrier_ok(tp->dev)) {
5165 u32 adv;
5166
5167 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
5168 adv &= ~(ADVERTISE_1000XFULL |
5169 ADVERTISE_1000XHALF |
5170 ADVERTISE_SLCT);
5171 tg3_writephy(tp, MII_ADVERTISE, adv);
5172 tg3_writephy(tp, MII_BMCR, bmcr |
5173 BMCR_ANRESTART |
5174 BMCR_ANENABLE);
5175 udelay(10);
5176 netif_carrier_off(tp->dev);
5177 }
5178 tg3_writephy(tp, MII_BMCR, new_bmcr);
5179 bmcr = new_bmcr;
5180 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5181 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08005182 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
5183 ASIC_REV_5714) {
5184 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5185 bmsr |= BMSR_LSTATUS;
5186 else
5187 bmsr &= ~BMSR_LSTATUS;
5188 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005189 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005190 }
5191 }
5192
5193 if (bmsr & BMSR_LSTATUS) {
5194 current_speed = SPEED_1000;
5195 current_link_up = 1;
5196 if (bmcr & BMCR_FULLDPLX)
5197 current_duplex = DUPLEX_FULL;
5198 else
5199 current_duplex = DUPLEX_HALF;
5200
Matt Carlsonef167e22007-12-20 20:10:01 -08005201 local_adv = 0;
5202 remote_adv = 0;
5203
Michael Chan747e8f82005-07-25 12:33:22 -07005204 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08005205 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07005206
5207 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
5208 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
5209 common = local_adv & remote_adv;
5210 if (common & (ADVERTISE_1000XHALF |
5211 ADVERTISE_1000XFULL)) {
5212 if (common & ADVERTISE_1000XFULL)
5213 current_duplex = DUPLEX_FULL;
5214 else
5215 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00005216
5217 tp->link_config.rmt_adv =
5218 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00005219 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005220 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00005221 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07005222 current_link_up = 0;
Matt Carlson859a588792010-04-05 10:19:28 +00005223 }
Michael Chan747e8f82005-07-25 12:33:22 -07005224 }
5225 }
5226
Matt Carlsonef167e22007-12-20 20:10:01 -08005227 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
5228 tg3_setup_flow_control(tp, local_adv, remote_adv);
5229
Michael Chan747e8f82005-07-25 12:33:22 -07005230 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5231 if (tp->link_config.active_duplex == DUPLEX_HALF)
5232 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5233
5234 tw32_f(MAC_MODE, tp->mac_mode);
5235 udelay(40);
5236
5237 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5238
5239 tp->link_config.active_speed = current_speed;
5240 tp->link_config.active_duplex = current_duplex;
5241
5242 if (current_link_up != netif_carrier_ok(tp->dev)) {
5243 if (current_link_up)
5244 netif_carrier_on(tp->dev);
5245 else {
5246 netif_carrier_off(tp->dev);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005247 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005248 }
5249 tg3_link_report(tp);
5250 }
5251 return err;
5252}
5253
5254static void tg3_serdes_parallel_detect(struct tg3 *tp)
5255{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005256 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005257 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005258 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005259 return;
5260 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005261
Michael Chan747e8f82005-07-25 12:33:22 -07005262 if (!netif_carrier_ok(tp->dev) &&
5263 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5264 u32 bmcr;
5265
5266 tg3_readphy(tp, MII_BMCR, &bmcr);
5267 if (bmcr & BMCR_ANENABLE) {
5268 u32 phy1, phy2;
5269
5270 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005271 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5272 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005273
5274 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005275 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5276 MII_TG3_DSP_EXP1_INT_STAT);
5277 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5278 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005279
5280 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5281 /* We have signal detect and not receiving
5282 * config code words, link is up by parallel
5283 * detection.
5284 */
5285
5286 bmcr &= ~BMCR_ANENABLE;
5287 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5288 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005289 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005290 }
5291 }
Matt Carlson859a588792010-04-05 10:19:28 +00005292 } else if (netif_carrier_ok(tp->dev) &&
5293 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005294 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005295 u32 phy2;
5296
5297 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005298 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5299 MII_TG3_DSP_EXP1_INT_STAT);
5300 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005301 if (phy2 & 0x20) {
5302 u32 bmcr;
5303
5304 /* Config code words received, turn on autoneg. */
5305 tg3_readphy(tp, MII_BMCR, &bmcr);
5306 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
5307
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005308 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005309
5310 }
5311 }
5312}
5313
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314static int tg3_setup_phy(struct tg3 *tp, int force_reset)
5315{
Matt Carlsonf2096f92011-04-05 14:22:48 +00005316 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317 int err;
5318
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005319 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005321 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07005322 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00005323 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325
Matt Carlsonbcb37f62008-11-03 16:52:09 -08005326 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005327 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08005328
5329 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
5330 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
5331 scale = 65;
5332 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
5333 scale = 6;
5334 else
5335 scale = 12;
5336
5337 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
5338 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
5339 tw32(GRC_MISC_CFG, val);
5340 }
5341
Matt Carlsonf2096f92011-04-05 14:22:48 +00005342 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5343 (6 << TX_LENGTHS_IPG_SHIFT);
5344 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
5345 val |= tr32(MAC_TX_LENGTHS) &
5346 (TX_LENGTHS_JMB_FRM_LEN_MSK |
5347 TX_LENGTHS_CNT_DWN_VAL_MSK);
5348
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 if (tp->link_config.active_speed == SPEED_1000 &&
5350 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005351 tw32(MAC_TX_LENGTHS, val |
5352 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00005354 tw32(MAC_TX_LENGTHS, val |
5355 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356
Joe Perches63c3a662011-04-26 08:12:10 +00005357 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 if (netif_carrier_ok(tp->dev)) {
5359 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07005360 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 } else {
5362 tw32(HOSTCC_STAT_COAL_TICKS, 0);
5363 }
5364 }
5365
Joe Perches63c3a662011-04-26 08:12:10 +00005366 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005367 val = tr32(PCIE_PWR_MGMT_THRESH);
Matt Carlson8ed5d972007-05-07 00:25:49 -07005368 if (!netif_carrier_ok(tp->dev))
5369 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
5370 tp->pwrmgmt_thresh;
5371 else
5372 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
5373 tw32(PCIE_PWR_MGMT_THRESH, val);
5374 }
5375
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 return err;
5377}
5378
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005379static inline int tg3_irq_sync(struct tg3 *tp)
5380{
5381 return tp->irq_sync;
5382}
5383
Matt Carlson97bd8e42011-04-13 11:05:04 +00005384static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
5385{
5386 int i;
5387
5388 dst = (u32 *)((u8 *)dst + off);
5389 for (i = 0; i < len; i += sizeof(u32))
5390 *dst++ = tr32(off + i);
5391}
5392
5393static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
5394{
5395 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
5396 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
5397 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
5398 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
5399 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
5400 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
5401 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
5402 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
5403 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
5404 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
5405 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
5406 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
5407 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
5408 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
5409 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
5410 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
5411 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
5412 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
5413 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
5414
Joe Perches63c3a662011-04-26 08:12:10 +00005415 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005416 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
5417
5418 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
5419 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
5420 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
5421 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
5422 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
5423 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
5424 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
5425 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
5426
Joe Perches63c3a662011-04-26 08:12:10 +00005427 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005428 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
5429 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
5430 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
5431 }
5432
5433 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
5434 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
5435 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
5436 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
5437 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
5438
Joe Perches63c3a662011-04-26 08:12:10 +00005439 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005440 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
5441}
5442
5443static void tg3_dump_state(struct tg3 *tp)
5444{
5445 int i;
5446 u32 *regs;
5447
5448 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
5449 if (!regs) {
5450 netdev_err(tp->dev, "Failed allocating register dump buffer\n");
5451 return;
5452 }
5453
Joe Perches63c3a662011-04-26 08:12:10 +00005454 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005455 /* Read up to but not including private PCI registers */
5456 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
5457 regs[i / sizeof(u32)] = tr32(i);
5458 } else
5459 tg3_dump_legacy_regs(tp, regs);
5460
5461 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
5462 if (!regs[i + 0] && !regs[i + 1] &&
5463 !regs[i + 2] && !regs[i + 3])
5464 continue;
5465
5466 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
5467 i * 4,
5468 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
5469 }
5470
5471 kfree(regs);
5472
5473 for (i = 0; i < tp->irq_cnt; i++) {
5474 struct tg3_napi *tnapi = &tp->napi[i];
5475
5476 /* SW status block */
5477 netdev_err(tp->dev,
5478 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
5479 i,
5480 tnapi->hw_status->status,
5481 tnapi->hw_status->status_tag,
5482 tnapi->hw_status->rx_jumbo_consumer,
5483 tnapi->hw_status->rx_consumer,
5484 tnapi->hw_status->rx_mini_consumer,
5485 tnapi->hw_status->idx[0].rx_producer,
5486 tnapi->hw_status->idx[0].tx_consumer);
5487
5488 netdev_err(tp->dev,
5489 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
5490 i,
5491 tnapi->last_tag, tnapi->last_irq_tag,
5492 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
5493 tnapi->rx_rcb_ptr,
5494 tnapi->prodring.rx_std_prod_idx,
5495 tnapi->prodring.rx_std_cons_idx,
5496 tnapi->prodring.rx_jmb_prod_idx,
5497 tnapi->prodring.rx_jmb_cons_idx);
5498 }
5499}
5500
Michael Chandf3e6542006-05-26 17:48:07 -07005501/* This is called whenever we suspect that the system chipset is re-
5502 * ordering the sequence of MMIO to the tx send mailbox. The symptom
5503 * is bogus tx completions. We try to recover by setting the
5504 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
5505 * in the workqueue.
5506 */
5507static void tg3_tx_recover(struct tg3 *tp)
5508{
Joe Perches63c3a662011-04-26 08:12:10 +00005509 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07005510 tp->write32_tx_mbox == tg3_write_indirect_mbox);
5511
Matt Carlson5129c3a2010-04-05 10:19:23 +00005512 netdev_warn(tp->dev,
5513 "The system may be re-ordering memory-mapped I/O "
5514 "cycles to the network device, attempting to recover. "
5515 "Please report the problem to the driver maintainer "
5516 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07005517
5518 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005519 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005520 spin_unlock(&tp->lock);
5521}
5522
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005523static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07005524{
Matt Carlsonf65aac12010-08-02 11:26:03 +00005525 /* Tell compiler to fetch tx indices from memory. */
5526 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005527 return tnapi->tx_pending -
5528 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07005529}
5530
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531/* Tigon3 never reports partial packet sends. So we do not
5532 * need special logic to handle SKBs that have not had all
5533 * of their frags sent yet, like SunGEM does.
5534 */
Matt Carlson17375d22009-08-28 14:02:18 +00005535static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536{
Matt Carlson17375d22009-08-28 14:02:18 +00005537 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005538 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005539 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005540 struct netdev_queue *txq;
5541 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00005542 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005543
Joe Perches63c3a662011-04-26 08:12:10 +00005544 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005545 index--;
5546
5547 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548
5549 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00005550 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07005552 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553
Michael Chandf3e6542006-05-26 17:48:07 -07005554 if (unlikely(skb == NULL)) {
5555 tg3_tx_recover(tp);
5556 return;
5557 }
5558
Alexander Duyckf4188d82009-12-02 16:48:38 +00005559 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005560 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005561 skb_headlen(skb),
5562 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563
5564 ri->skb = NULL;
5565
Matt Carlsone01ee142011-07-27 14:20:50 +00005566 while (ri->fragmented) {
5567 ri->fragmented = false;
5568 sw_idx = NEXT_TX(sw_idx);
5569 ri = &tnapi->tx_buffers[sw_idx];
5570 }
5571
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 sw_idx = NEXT_TX(sw_idx);
5573
5574 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005575 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07005576 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
5577 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005578
5579 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005580 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00005581 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005582 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00005583
5584 while (ri->fragmented) {
5585 ri->fragmented = false;
5586 sw_idx = NEXT_TX(sw_idx);
5587 ri = &tnapi->tx_buffers[sw_idx];
5588 }
5589
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 sw_idx = NEXT_TX(sw_idx);
5591 }
5592
Tom Herbert298376d2011-11-28 16:33:30 +00005593 pkts_compl++;
5594 bytes_compl += skb->len;
5595
David S. Millerf47c11e2005-06-24 20:18:35 -07005596 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07005597
5598 if (unlikely(tx_bug)) {
5599 tg3_tx_recover(tp);
5600 return;
5601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602 }
5603
Tom Herbert5cb917b2012-03-05 19:53:50 +00005604 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00005605
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005606 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607
Michael Chan1b2a7202006-08-07 21:46:02 -07005608 /* Need to make the tx_cons update visible to tg3_start_xmit()
5609 * before checking for netif_queue_stopped(). Without the
5610 * memory barrier, there is a small possibility that tg3_start_xmit()
5611 * will miss it and cause the queue to be stopped forever.
5612 */
5613 smp_mb();
5614
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005615 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005616 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005617 __netif_tx_lock(txq, smp_processor_id());
5618 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005619 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005620 netif_tx_wake_queue(txq);
5621 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07005622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623}
5624
Eric Dumazet9205fd92011-11-18 06:47:01 +00005625static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005626{
Eric Dumazet9205fd92011-11-18 06:47:01 +00005627 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005628 return;
5629
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005630 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005631 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005632 kfree(ri->data);
5633 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005634}
5635
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636/* Returns size of skb allocated or < 0 on error.
5637 *
5638 * We only need to fill in the address because the other members
5639 * of the RX descriptor are invariant, see tg3_init_rings.
5640 *
5641 * Note the purposeful assymetry of cpu vs. chip accesses. For
5642 * posting buffers we only dirty the first cache line of the RX
5643 * descriptor (containing the address). Whereas for the RX status
5644 * buffers the cpu only reads the last cacheline of the RX descriptor
5645 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
5646 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00005647static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Matt Carlsona3896162009-11-13 13:03:44 +00005648 u32 opaque_key, u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649{
5650 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00005651 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005652 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005654 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656 switch (opaque_key) {
5657 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005658 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00005659 desc = &tpr->rx_std[dest_idx];
5660 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00005661 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662 break;
5663
5664 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005665 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00005666 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00005667 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00005668 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669 break;
5670
5671 default:
5672 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
5675 /* Do not overwrite any of the map or rp information
5676 * until we are sure we can commit to a new buffer.
5677 *
5678 * Callers depend upon this behavior and assume that
5679 * we leave everything unchanged if we fail.
5680 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00005681 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
5682 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
5683 data = kmalloc(skb_size, GFP_ATOMIC);
5684 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685 return -ENOMEM;
5686
Eric Dumazet9205fd92011-11-18 06:47:01 +00005687 mapping = pci_map_single(tp->pdev,
5688 data + TG3_RX_OFFSET(tp),
5689 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690 PCI_DMA_FROMDEVICE);
Matt Carlsona21771d2009-11-02 14:25:31 +00005691 if (pci_dma_mapping_error(tp->pdev, mapping)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00005692 kfree(data);
Matt Carlsona21771d2009-11-02 14:25:31 +00005693 return -EIO;
5694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695
Eric Dumazet9205fd92011-11-18 06:47:01 +00005696 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005697 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699 desc->addr_hi = ((u64)mapping >> 32);
5700 desc->addr_lo = ((u64)mapping & 0xffffffff);
5701
Eric Dumazet9205fd92011-11-18 06:47:01 +00005702 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703}
5704
5705/* We only need to move over in the address because the other
5706 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00005707 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708 */
Matt Carlsona3896162009-11-13 13:03:44 +00005709static void tg3_recycle_rx(struct tg3_napi *tnapi,
5710 struct tg3_rx_prodring_set *dpr,
5711 u32 opaque_key, int src_idx,
5712 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713{
Matt Carlson17375d22009-08-28 14:02:18 +00005714 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
5716 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005717 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005718 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719
5720 switch (opaque_key) {
5721 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005722 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005723 dest_desc = &dpr->rx_std[dest_idx];
5724 dest_map = &dpr->rx_std_buffers[dest_idx];
5725 src_desc = &spr->rx_std[src_idx];
5726 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727 break;
5728
5729 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005730 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005731 dest_desc = &dpr->rx_jmb[dest_idx].std;
5732 dest_map = &dpr->rx_jmb_buffers[dest_idx];
5733 src_desc = &spr->rx_jmb[src_idx].std;
5734 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735 break;
5736
5737 default:
5738 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740
Eric Dumazet9205fd92011-11-18 06:47:01 +00005741 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005742 dma_unmap_addr_set(dest_map, mapping,
5743 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744 dest_desc->addr_hi = src_desc->addr_hi;
5745 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00005746
5747 /* Ensure that the update to the skb happens after the physical
5748 * addresses have been transferred to the new BD location.
5749 */
5750 smp_wmb();
5751
Eric Dumazet9205fd92011-11-18 06:47:01 +00005752 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753}
5754
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755/* The RX ring scheme is composed of multiple rings which post fresh
5756 * buffers to the chip, and one special ring the chip uses to report
5757 * status back to the host.
5758 *
5759 * The special ring reports the status of received packets to the
5760 * host. The chip does not write into the original descriptor the
5761 * RX buffer was obtained from. The chip simply takes the original
5762 * descriptor as provided by the host, updates the status and length
5763 * field, then writes this into the next status ring entry.
5764 *
5765 * Each ring the host uses to post buffers to the chip is described
5766 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
5767 * it is first placed into the on-chip ram. When the packet's length
5768 * is known, it walks down the TG3_BDINFO entries to select the ring.
5769 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
5770 * which is within the range of the new packet's length is chosen.
5771 *
5772 * The "separate ring for rx status" scheme may sound queer, but it makes
5773 * sense from a cache coherency perspective. If only the host writes
5774 * to the buffer post rings, and only the chip writes to the rx status
5775 * rings, then cache lines never move beyond shared-modified state.
5776 * If both the host and chip were to write into the same ring, cache line
5777 * eviction could occur since both entities want it in an exclusive state.
5778 */
Matt Carlson17375d22009-08-28 14:02:18 +00005779static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780{
Matt Carlson17375d22009-08-28 14:02:18 +00005781 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07005782 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005783 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00005784 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07005785 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005787 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005789 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790 /*
5791 * We need to order the read of hw_idx and the read of
5792 * the opaque cookie.
5793 */
5794 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 work_mask = 0;
5796 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005797 std_prod_idx = tpr->rx_std_prod_idx;
5798 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00005800 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00005801 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802 unsigned int len;
5803 struct sk_buff *skb;
5804 dma_addr_t dma_addr;
5805 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005806 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807
5808 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
5809 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
5810 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005811 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005812 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005813 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00005814 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07005815 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005817 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005818 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005819 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00005820 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00005821 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823
5824 work_mask |= opaque_key;
5825
5826 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
5827 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
5828 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00005829 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 desc_idx, *post_ptr);
5831 drop_it_no_recycle:
5832 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00005833 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834 goto next_pkt;
5835 }
5836
Eric Dumazet9205fd92011-11-18 06:47:01 +00005837 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08005838 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
5839 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840
Matt Carlsond2757fc2010-04-12 06:58:27 +00005841 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842 int skb_size;
5843
Eric Dumazet9205fd92011-11-18 06:47:01 +00005844 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Matt Carlsonafc081f2009-11-13 13:03:43 +00005845 *post_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846 if (skb_size < 0)
5847 goto drop_it;
5848
Matt Carlson287be122009-08-28 13:58:46 +00005849 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 PCI_DMA_FROMDEVICE);
5851
Eric Dumazet9205fd92011-11-18 06:47:01 +00005852 skb = build_skb(data);
5853 if (!skb) {
5854 kfree(data);
5855 goto drop_it_no_recycle;
5856 }
5857 skb_reserve(skb, TG3_RX_OFFSET(tp));
5858 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00005859 * after the usage of the old DMA mapping.
5860 */
5861 smp_wmb();
5862
Eric Dumazet9205fd92011-11-18 06:47:01 +00005863 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00005864
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00005866 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867 desc_idx, *post_ptr);
5868
Eric Dumazet9205fd92011-11-18 06:47:01 +00005869 skb = netdev_alloc_skb(tp->dev,
5870 len + TG3_RAW_IP_ALIGN);
5871 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872 goto drop_it_no_recycle;
5873
Eric Dumazet9205fd92011-11-18 06:47:01 +00005874 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005876 memcpy(skb->data,
5877 data + TG3_RX_OFFSET(tp),
5878 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880 }
5881
Eric Dumazet9205fd92011-11-18 06:47:01 +00005882 skb_put(skb, len);
Michał Mirosławdc668912011-04-07 03:35:07 +00005883 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
5885 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
5886 >> RXD_TCPCSUM_SHIFT) == 0xffff))
5887 skb->ip_summed = CHECKSUM_UNNECESSARY;
5888 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005889 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890
5891 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005892
5893 if (len > (tp->dev->mtu + ETH_HLEN) &&
5894 skb->protocol != htons(ETH_P_8021Q)) {
5895 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00005896 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005897 }
5898
Matt Carlson9dc7a112010-04-12 06:58:28 +00005899 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00005900 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
5901 __vlan_hwaccel_put_tag(skb,
5902 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00005903
Matt Carlsonbf933c82011-01-25 15:58:49 +00005904 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906 received++;
5907 budget--;
5908
5909next_pkt:
5910 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07005911
5912 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005913 tpr->rx_std_prod_idx = std_prod_idx &
5914 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00005915 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5916 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07005917 work_mask &= ~RXD_OPAQUE_RING_STD;
5918 rx_std_posted = 0;
5919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07005921 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00005922 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07005923
5924 /* Refresh hw_idx to see if there is new work */
5925 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005926 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07005927 rmb();
5928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 }
5930
5931 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00005932 tnapi->rx_rcb_ptr = sw_idx;
5933 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934
5935 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00005936 if (!tg3_flag(tp, ENABLE_RSS)) {
Michael Chan6541b802012-03-04 14:48:14 +00005937 /* Sync BD data before updating mailbox */
5938 wmb();
5939
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005940 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005941 tpr->rx_std_prod_idx = std_prod_idx &
5942 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005943 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5944 tpr->rx_std_prod_idx);
5945 }
5946 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005947 tpr->rx_jmb_prod_idx = jmb_prod_idx &
5948 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005949 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5950 tpr->rx_jmb_prod_idx);
5951 }
5952 mmiowb();
5953 } else if (work_mask) {
5954 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
5955 * updated before the producer indices can be updated.
5956 */
5957 smp_wmb();
5958
Matt Carlson2c49a442010-09-30 10:34:35 +00005959 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
5960 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005961
Michael Chan7ae52892012-03-21 15:38:33 +00005962 if (tnapi != &tp->napi[1]) {
5963 tp->rx_refill = true;
Matt Carlsone4af1af2010-02-12 14:47:05 +00005964 napi_schedule(&tp->napi[1].napi);
Michael Chan7ae52892012-03-21 15:38:33 +00005965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967
5968 return received;
5969}
5970
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005971static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00005974 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005975 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
5976
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977 if (sblk->status & SD_STATUS_LINK_CHG) {
5978 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005979 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07005980 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005981 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07005982 tw32_f(MAC_STATUS,
5983 (MAC_STATUS_SYNC_CHANGED |
5984 MAC_STATUS_CFG_CHANGED |
5985 MAC_STATUS_MI_COMPLETION |
5986 MAC_STATUS_LNKSTATE_CHANGED));
5987 udelay(40);
5988 } else
5989 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07005990 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991 }
5992 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005993}
5994
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005995static int tg3_rx_prodring_xfer(struct tg3 *tp,
5996 struct tg3_rx_prodring_set *dpr,
5997 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005998{
5999 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006000 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006001
6002 while (1) {
6003 src_prod_idx = spr->rx_std_prod_idx;
6004
6005 /* Make sure updates to the rx_std_buffers[] entries and the
6006 * standard producer index are seen in the correct order.
6007 */
6008 smp_rmb();
6009
6010 if (spr->rx_std_cons_idx == src_prod_idx)
6011 break;
6012
6013 if (spr->rx_std_cons_idx < src_prod_idx)
6014 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
6015 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006016 cpycnt = tp->rx_std_ring_mask + 1 -
6017 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006018
Matt Carlson2c49a442010-09-30 10:34:35 +00006019 cpycnt = min(cpycnt,
6020 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006021
6022 si = spr->rx_std_cons_idx;
6023 di = dpr->rx_std_prod_idx;
6024
Matt Carlsone92967b2010-02-12 14:47:06 +00006025 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006026 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006027 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006028 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006029 break;
6030 }
6031 }
6032
6033 if (!cpycnt)
6034 break;
6035
6036 /* Ensure that updates to the rx_std_buffers ring and the
6037 * shadowed hardware producer ring from tg3_recycle_skb() are
6038 * ordered correctly WRT the skb check above.
6039 */
6040 smp_rmb();
6041
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006042 memcpy(&dpr->rx_std_buffers[di],
6043 &spr->rx_std_buffers[si],
6044 cpycnt * sizeof(struct ring_info));
6045
6046 for (i = 0; i < cpycnt; i++, di++, si++) {
6047 struct tg3_rx_buffer_desc *sbd, *dbd;
6048 sbd = &spr->rx_std[si];
6049 dbd = &dpr->rx_std[di];
6050 dbd->addr_hi = sbd->addr_hi;
6051 dbd->addr_lo = sbd->addr_lo;
6052 }
6053
Matt Carlson2c49a442010-09-30 10:34:35 +00006054 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
6055 tp->rx_std_ring_mask;
6056 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
6057 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006058 }
6059
6060 while (1) {
6061 src_prod_idx = spr->rx_jmb_prod_idx;
6062
6063 /* Make sure updates to the rx_jmb_buffers[] entries and
6064 * the jumbo producer index are seen in the correct order.
6065 */
6066 smp_rmb();
6067
6068 if (spr->rx_jmb_cons_idx == src_prod_idx)
6069 break;
6070
6071 if (spr->rx_jmb_cons_idx < src_prod_idx)
6072 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
6073 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006074 cpycnt = tp->rx_jmb_ring_mask + 1 -
6075 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006076
6077 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00006078 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006079
6080 si = spr->rx_jmb_cons_idx;
6081 di = dpr->rx_jmb_prod_idx;
6082
Matt Carlsone92967b2010-02-12 14:47:06 +00006083 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006084 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006085 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006086 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006087 break;
6088 }
6089 }
6090
6091 if (!cpycnt)
6092 break;
6093
6094 /* Ensure that updates to the rx_jmb_buffers ring and the
6095 * shadowed hardware producer ring from tg3_recycle_skb() are
6096 * ordered correctly WRT the skb check above.
6097 */
6098 smp_rmb();
6099
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006100 memcpy(&dpr->rx_jmb_buffers[di],
6101 &spr->rx_jmb_buffers[si],
6102 cpycnt * sizeof(struct ring_info));
6103
6104 for (i = 0; i < cpycnt; i++, di++, si++) {
6105 struct tg3_rx_buffer_desc *sbd, *dbd;
6106 sbd = &spr->rx_jmb[si].std;
6107 dbd = &dpr->rx_jmb[di].std;
6108 dbd->addr_hi = sbd->addr_hi;
6109 dbd->addr_lo = sbd->addr_lo;
6110 }
6111
Matt Carlson2c49a442010-09-30 10:34:35 +00006112 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
6113 tp->rx_jmb_ring_mask;
6114 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
6115 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006116 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006117
6118 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006119}
6120
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006121static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
6122{
6123 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124
6125 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006126 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00006127 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00006128 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07006129 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 }
6131
Matt Carlsonf891ea12012-04-24 13:37:01 +00006132 if (!tnapi->rx_rcb_prod_idx)
6133 return work_done;
6134
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135 /* run RX thread, within the bounds set by NAPI.
6136 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006137 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006139 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00006140 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141
Joe Perches63c3a662011-04-26 08:12:10 +00006142 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006143 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006144 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006145 u32 std_prod_idx = dpr->rx_std_prod_idx;
6146 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006147
Michael Chan7ae52892012-03-21 15:38:33 +00006148 tp->rx_refill = false;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006149 for (i = 1; i < tp->irq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006150 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00006151 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006152
6153 wmb();
6154
Matt Carlsone4af1af2010-02-12 14:47:05 +00006155 if (std_prod_idx != dpr->rx_std_prod_idx)
6156 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6157 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006158
Matt Carlsone4af1af2010-02-12 14:47:05 +00006159 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
6160 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6161 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006162
6163 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006164
6165 if (err)
6166 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006167 }
6168
David S. Miller6f535762007-10-11 18:08:29 -07006169 return work_done;
6170}
David S. Millerf7383c22005-05-18 22:50:53 -07006171
Matt Carlsondb219972011-11-04 09:15:03 +00006172static inline void tg3_reset_task_schedule(struct tg3 *tp)
6173{
6174 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
6175 schedule_work(&tp->reset_task);
6176}
6177
6178static inline void tg3_reset_task_cancel(struct tg3 *tp)
6179{
6180 cancel_work_sync(&tp->reset_task);
6181 tg3_flag_clear(tp, RESET_TASK_PENDING);
Matt Carlsonc7101352012-02-22 12:35:20 +00006182 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsondb219972011-11-04 09:15:03 +00006183}
6184
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006185static int tg3_poll_msix(struct napi_struct *napi, int budget)
6186{
6187 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6188 struct tg3 *tp = tnapi->tp;
6189 int work_done = 0;
6190 struct tg3_hw_status *sblk = tnapi->hw_status;
6191
6192 while (1) {
6193 work_done = tg3_poll_work(tnapi, work_done, budget);
6194
Joe Perches63c3a662011-04-26 08:12:10 +00006195 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006196 goto tx_recovery;
6197
6198 if (unlikely(work_done >= budget))
6199 break;
6200
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006201 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006202 * to tell the hw how much work has been processed,
6203 * so we must read it before checking for more work.
6204 */
6205 tnapi->last_tag = sblk->status_tag;
6206 tnapi->last_irq_tag = tnapi->last_tag;
6207 rmb();
6208
6209 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00006210 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
6211 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Michael Chan7ae52892012-03-21 15:38:33 +00006212
6213 /* This test here is not race free, but will reduce
6214 * the number of interrupts by looping again.
6215 */
6216 if (tnapi == &tp->napi[1] && tp->rx_refill)
6217 continue;
6218
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006219 napi_complete(napi);
6220 /* Reenable interrupts. */
6221 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Michael Chan7ae52892012-03-21 15:38:33 +00006222
6223 /* This test here is synchronized by napi_schedule()
6224 * and napi_complete() to close the race condition.
6225 */
6226 if (unlikely(tnapi == &tp->napi[1] && tp->rx_refill)) {
6227 tw32(HOSTCC_MODE, tp->coalesce_mode |
6228 HOSTCC_MODE_ENABLE |
6229 tnapi->coal_now);
6230 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006231 mmiowb();
6232 break;
6233 }
6234 }
6235
6236 return work_done;
6237
6238tx_recovery:
6239 /* work_done is guaranteed to be less than budget. */
6240 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006241 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006242 return work_done;
6243}
6244
Matt Carlsone64de4e2011-04-13 11:05:05 +00006245static void tg3_process_error(struct tg3 *tp)
6246{
6247 u32 val;
6248 bool real_error = false;
6249
Joe Perches63c3a662011-04-26 08:12:10 +00006250 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00006251 return;
6252
6253 /* Check Flow Attention register */
6254 val = tr32(HOSTCC_FLOW_ATTN);
6255 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
6256 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
6257 real_error = true;
6258 }
6259
6260 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
6261 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
6262 real_error = true;
6263 }
6264
6265 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
6266 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
6267 real_error = true;
6268 }
6269
6270 if (!real_error)
6271 return;
6272
6273 tg3_dump_state(tp);
6274
Joe Perches63c3a662011-04-26 08:12:10 +00006275 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00006276 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00006277}
6278
David S. Miller6f535762007-10-11 18:08:29 -07006279static int tg3_poll(struct napi_struct *napi, int budget)
6280{
Matt Carlson8ef04422009-08-28 14:01:37 +00006281 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6282 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07006283 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00006284 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07006285
6286 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00006287 if (sblk->status & SD_STATUS_ERROR)
6288 tg3_process_error(tp);
6289
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006290 tg3_poll_link(tp);
6291
Matt Carlson17375d22009-08-28 14:02:18 +00006292 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07006293
Joe Perches63c3a662011-04-26 08:12:10 +00006294 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07006295 goto tx_recovery;
6296
6297 if (unlikely(work_done >= budget))
6298 break;
6299
Joe Perches63c3a662011-04-26 08:12:10 +00006300 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00006301 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07006302 * to tell the hw how much work has been processed,
6303 * so we must read it before checking for more work.
6304 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006305 tnapi->last_tag = sblk->status_tag;
6306 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07006307 rmb();
6308 } else
6309 sblk->status &= ~SD_STATUS_UPDATED;
6310
Matt Carlson17375d22009-08-28 14:02:18 +00006311 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006312 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00006313 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07006314 break;
6315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316 }
6317
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006318 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07006319
6320tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07006321 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08006322 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006323 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07006324 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325}
6326
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006327static void tg3_napi_disable(struct tg3 *tp)
6328{
6329 int i;
6330
6331 for (i = tp->irq_cnt - 1; i >= 0; i--)
6332 napi_disable(&tp->napi[i].napi);
6333}
6334
6335static void tg3_napi_enable(struct tg3 *tp)
6336{
6337 int i;
6338
6339 for (i = 0; i < tp->irq_cnt; i++)
6340 napi_enable(&tp->napi[i].napi);
6341}
6342
6343static void tg3_napi_init(struct tg3 *tp)
6344{
6345 int i;
6346
6347 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
6348 for (i = 1; i < tp->irq_cnt; i++)
6349 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
6350}
6351
6352static void tg3_napi_fini(struct tg3 *tp)
6353{
6354 int i;
6355
6356 for (i = 0; i < tp->irq_cnt; i++)
6357 netif_napi_del(&tp->napi[i].napi);
6358}
6359
6360static inline void tg3_netif_stop(struct tg3 *tp)
6361{
6362 tp->dev->trans_start = jiffies; /* prevent tx timeout */
6363 tg3_napi_disable(tp);
6364 netif_tx_disable(tp->dev);
6365}
6366
6367static inline void tg3_netif_start(struct tg3 *tp)
6368{
6369 /* NOTE: unconditional netif_tx_wake_all_queues is only
6370 * appropriate so long as all callers are assured to
6371 * have free tx slots (such as after tg3_init_hw)
6372 */
6373 netif_tx_wake_all_queues(tp->dev);
6374
6375 tg3_napi_enable(tp);
6376 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
6377 tg3_enable_ints(tp);
6378}
6379
David S. Millerf47c11e2005-06-24 20:18:35 -07006380static void tg3_irq_quiesce(struct tg3 *tp)
6381{
Matt Carlson4f125f42009-09-01 12:55:02 +00006382 int i;
6383
David S. Millerf47c11e2005-06-24 20:18:35 -07006384 BUG_ON(tp->irq_sync);
6385
6386 tp->irq_sync = 1;
6387 smp_mb();
6388
Matt Carlson4f125f42009-09-01 12:55:02 +00006389 for (i = 0; i < tp->irq_cnt; i++)
6390 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07006391}
6392
David S. Millerf47c11e2005-06-24 20:18:35 -07006393/* Fully shutdown all tg3 driver activity elsewhere in the system.
6394 * If irq_sync is non-zero, then the IRQ handler must be synchronized
6395 * with as well. Most of the time, this is not necessary except when
6396 * shutting down the device.
6397 */
6398static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
6399{
Michael Chan46966542007-07-11 19:47:19 -07006400 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07006401 if (irq_sync)
6402 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006403}
6404
6405static inline void tg3_full_unlock(struct tg3 *tp)
6406{
David S. Millerf47c11e2005-06-24 20:18:35 -07006407 spin_unlock_bh(&tp->lock);
6408}
6409
Michael Chanfcfa0a32006-03-20 22:28:41 -08006410/* One-shot MSI handler - Chip automatically disables interrupt
6411 * after sending MSI so driver doesn't have to do it.
6412 */
David Howells7d12e782006-10-05 14:55:46 +01006413static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08006414{
Matt Carlson09943a12009-08-28 14:01:57 +00006415 struct tg3_napi *tnapi = dev_id;
6416 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08006417
Matt Carlson898a56f2009-08-28 14:02:40 +00006418 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006419 if (tnapi->rx_rcb)
6420 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006421
6422 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006423 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006424
6425 return IRQ_HANDLED;
6426}
6427
Michael Chan88b06bc22005-04-21 17:13:25 -07006428/* MSI ISR - No need to check for interrupt sharing and no need to
6429 * flush status block and interrupt mailbox. PCI ordering rules
6430 * guarantee that MSI will arrive after the status block.
6431 */
David Howells7d12e782006-10-05 14:55:46 +01006432static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07006433{
Matt Carlson09943a12009-08-28 14:01:57 +00006434 struct tg3_napi *tnapi = dev_id;
6435 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07006436
Matt Carlson898a56f2009-08-28 14:02:40 +00006437 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006438 if (tnapi->rx_rcb)
6439 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07006440 /*
David S. Millerfac9b832005-05-18 22:46:34 -07006441 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07006442 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07006443 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07006444 * NIC to stop sending us irqs, engaging "in-intr-handler"
6445 * event coalescing.
6446 */
Matt Carlson5b39de92011-08-31 11:44:50 +00006447 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07006448 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006449 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07006450
Michael Chan88b06bc22005-04-21 17:13:25 -07006451 return IRQ_RETVAL(1);
6452}
6453
David Howells7d12e782006-10-05 14:55:46 +01006454static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455{
Matt Carlson09943a12009-08-28 14:01:57 +00006456 struct tg3_napi *tnapi = dev_id;
6457 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006458 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459 unsigned int handled = 1;
6460
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461 /* In INTx mode, it is possible for the interrupt to arrive at
6462 * the CPU before the status block posted prior to the interrupt.
6463 * Reading the PCI State register will confirm whether the
6464 * interrupt is ours and will flush the status block.
6465 */
Michael Chand18edcb2007-03-24 20:57:11 -07006466 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00006467 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006468 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6469 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006470 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07006471 }
Michael Chand18edcb2007-03-24 20:57:11 -07006472 }
6473
6474 /*
6475 * Writing any value to intr-mbox-0 clears PCI INTA# and
6476 * chip-internal interrupt pending events.
6477 * Writing non-zero to intr-mbox-0 additional tells the
6478 * NIC to stop sending us irqs, engaging "in-intr-handler"
6479 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006480 *
6481 * Flush the mailbox to de-assert the IRQ immediately to prevent
6482 * spurious interrupts. The flush impacts performance but
6483 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006484 */
Michael Chanc04cb342007-05-07 00:26:15 -07006485 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07006486 if (tg3_irq_sync(tp))
6487 goto out;
6488 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00006489 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00006490 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00006491 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07006492 } else {
6493 /* No work, shared interrupt perhaps? re-enable
6494 * interrupts, and flush that PCI write
6495 */
6496 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
6497 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07006498 }
David S. Millerf47c11e2005-06-24 20:18:35 -07006499out:
David S. Millerfac9b832005-05-18 22:46:34 -07006500 return IRQ_RETVAL(handled);
6501}
6502
David Howells7d12e782006-10-05 14:55:46 +01006503static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07006504{
Matt Carlson09943a12009-08-28 14:01:57 +00006505 struct tg3_napi *tnapi = dev_id;
6506 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006507 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07006508 unsigned int handled = 1;
6509
David S. Millerfac9b832005-05-18 22:46:34 -07006510 /* In INTx mode, it is possible for the interrupt to arrive at
6511 * the CPU before the status block posted prior to the interrupt.
6512 * Reading the PCI State register will confirm whether the
6513 * interrupt is ours and will flush the status block.
6514 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006515 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00006516 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006517 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6518 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006519 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520 }
Michael Chand18edcb2007-03-24 20:57:11 -07006521 }
6522
6523 /*
6524 * writing any value to intr-mbox-0 clears PCI INTA# and
6525 * chip-internal interrupt pending events.
6526 * writing non-zero to intr-mbox-0 additional tells the
6527 * NIC to stop sending us irqs, engaging "in-intr-handler"
6528 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006529 *
6530 * Flush the mailbox to de-assert the IRQ immediately to prevent
6531 * spurious interrupts. The flush impacts performance but
6532 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006533 */
Michael Chanc04cb342007-05-07 00:26:15 -07006534 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00006535
6536 /*
6537 * In a shared interrupt configuration, sometimes other devices'
6538 * interrupts will scream. We record the current status tag here
6539 * so that the above check can report that the screaming interrupts
6540 * are unhandled. Eventually they will be silenced.
6541 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006542 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00006543
Michael Chand18edcb2007-03-24 20:57:11 -07006544 if (tg3_irq_sync(tp))
6545 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00006546
Matt Carlson72334482009-08-28 14:03:01 +00006547 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00006548
Matt Carlson09943a12009-08-28 14:01:57 +00006549 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00006550
David S. Millerf47c11e2005-06-24 20:18:35 -07006551out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552 return IRQ_RETVAL(handled);
6553}
6554
Michael Chan79381092005-04-21 17:13:59 -07006555/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01006556static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07006557{
Matt Carlson09943a12009-08-28 14:01:57 +00006558 struct tg3_napi *tnapi = dev_id;
6559 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006560 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07006561
Michael Chanf9804dd2005-09-27 12:13:10 -07006562 if ((sblk->status & SD_STATUS_UPDATED) ||
6563 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07006564 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07006565 return IRQ_RETVAL(1);
6566 }
6567 return IRQ_RETVAL(0);
6568}
6569
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570#ifdef CONFIG_NET_POLL_CONTROLLER
6571static void tg3_poll_controller(struct net_device *dev)
6572{
Matt Carlson4f125f42009-09-01 12:55:02 +00006573 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07006574 struct tg3 *tp = netdev_priv(dev);
6575
Matt Carlson4f125f42009-09-01 12:55:02 +00006576 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00006577 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578}
6579#endif
6580
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581static void tg3_tx_timeout(struct net_device *dev)
6582{
6583 struct tg3 *tp = netdev_priv(dev);
6584
Michael Chanb0408752007-02-13 12:18:30 -08006585 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00006586 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00006587 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08006588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589
Matt Carlsondb219972011-11-04 09:15:03 +00006590 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591}
6592
Michael Chanc58ec932005-09-17 00:46:27 -07006593/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
6594static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
6595{
6596 u32 base = (u32) mapping & 0xffffffff;
6597
Eric Dumazet807540b2010-09-23 05:40:09 +00006598 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07006599}
6600
Michael Chan72f2afb2006-03-06 19:28:35 -08006601/* Test for DMA addresses > 40-bit */
6602static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
6603 int len)
6604{
6605#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00006606 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00006607 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08006608 return 0;
6609#else
6610 return 0;
6611#endif
6612}
6613
Matt Carlsond1a3b732011-07-27 14:20:51 +00006614static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006615 dma_addr_t mapping, u32 len, u32 flags,
6616 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00006617{
Matt Carlson92cd3a12011-07-27 14:20:47 +00006618 txbd->addr_hi = ((u64) mapping >> 32);
6619 txbd->addr_lo = ((u64) mapping & 0xffffffff);
6620 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
6621 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00006622}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623
Matt Carlson84b67b22011-07-27 14:20:52 +00006624static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006625 dma_addr_t map, u32 len, u32 flags,
6626 u32 mss, u32 vlan)
6627{
6628 struct tg3 *tp = tnapi->tp;
6629 bool hwbug = false;
6630
6631 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00006632 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006633
6634 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00006635 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006636
6637 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00006638 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006639
Matt Carlsona4cb4282011-12-14 11:09:58 +00006640 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006641 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00006642 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00006643 while (len > tp->dma_limit && *budget) {
6644 u32 frag_len = tp->dma_limit;
6645 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00006646
Matt Carlsonb9e45482011-11-04 09:14:59 +00006647 /* Avoid the 8byte DMA problem */
6648 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00006649 len += tp->dma_limit / 2;
6650 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00006651 }
6652
Matt Carlsonb9e45482011-11-04 09:14:59 +00006653 tnapi->tx_buffers[*entry].fragmented = true;
6654
6655 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6656 frag_len, tmp_flag, mss, vlan);
6657 *budget -= 1;
6658 prvidx = *entry;
6659 *entry = NEXT_TX(*entry);
6660
Matt Carlsone31aa982011-07-27 14:20:53 +00006661 map += frag_len;
6662 }
6663
6664 if (len) {
6665 if (*budget) {
6666 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6667 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00006668 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00006669 *entry = NEXT_TX(*entry);
6670 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00006671 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00006672 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00006673 }
6674 }
6675 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00006676 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6677 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00006678 *entry = NEXT_TX(*entry);
6679 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00006680
6681 return hwbug;
6682}
6683
Matt Carlson0d681b22011-07-27 14:20:49 +00006684static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00006685{
6686 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00006687 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00006688 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006689
Matt Carlson0d681b22011-07-27 14:20:49 +00006690 skb = txb->skb;
6691 txb->skb = NULL;
6692
Matt Carlson432aa7e2011-05-19 12:12:45 +00006693 pci_unmap_single(tnapi->tp->pdev,
6694 dma_unmap_addr(txb, mapping),
6695 skb_headlen(skb),
6696 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006697
6698 while (txb->fragmented) {
6699 txb->fragmented = false;
6700 entry = NEXT_TX(entry);
6701 txb = &tnapi->tx_buffers[entry];
6702 }
6703
Matt Carlsonba1142e2011-11-04 09:15:00 +00006704 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00006705 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006706
6707 entry = NEXT_TX(entry);
6708 txb = &tnapi->tx_buffers[entry];
6709
6710 pci_unmap_page(tnapi->tp->pdev,
6711 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006712 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006713
6714 while (txb->fragmented) {
6715 txb->fragmented = false;
6716 entry = NEXT_TX(entry);
6717 txb = &tnapi->tx_buffers[entry];
6718 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00006719 }
6720}
6721
Michael Chan72f2afb2006-03-06 19:28:35 -08006722/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006723static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04006724 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00006725 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006726 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727{
Matt Carlson24f4efd2009-11-13 13:03:35 +00006728 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04006729 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07006730 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006731 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732
Matt Carlson41588ba2008-04-19 18:12:33 -07006733 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
6734 new_skb = skb_copy(skb, GFP_ATOMIC);
6735 else {
6736 int more_headroom = 4 - ((unsigned long)skb->data & 3);
6737
6738 new_skb = skb_copy_expand(skb,
6739 skb_headroom(skb) + more_headroom,
6740 skb_tailroom(skb), GFP_ATOMIC);
6741 }
6742
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07006744 ret = -1;
6745 } else {
6746 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00006747 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
6748 PCI_DMA_TODEVICE);
6749 /* Make sure the mapping succeeded */
6750 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006751 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07006752 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07006753 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006754 u32 save_entry = *entry;
6755
Matt Carlson92cd3a12011-07-27 14:20:47 +00006756 base_flags |= TXD_FLAG_END;
6757
Matt Carlson84b67b22011-07-27 14:20:52 +00006758 tnapi->tx_buffers[*entry].skb = new_skb;
6759 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00006760 mapping, new_addr);
6761
Matt Carlson84b67b22011-07-27 14:20:52 +00006762 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006763 new_skb->len, base_flags,
6764 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00006765 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00006766 dev_kfree_skb(new_skb);
6767 ret = -1;
6768 }
Michael Chanc58ec932005-09-17 00:46:27 -07006769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770 }
6771
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04006773 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07006774 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775}
6776
Matt Carlson2ffcc982011-05-19 12:12:44 +00006777static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07006778
6779/* Use GSO to workaround a rare TSO bug that may be triggered when the
6780 * TSO header is greater than 80 bytes.
6781 */
6782static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
6783{
6784 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006785 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07006786
6787 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006788 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07006789 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006790
6791 /* netif_tx_stop_queue() must be done before checking
6792 * checking tx index in tg3_tx_avail() below, because in
6793 * tg3_tx(), we update tx index before checking for
6794 * netif_tx_queue_stopped().
6795 */
6796 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006797 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08006798 return NETDEV_TX_BUSY;
6799
6800 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006801 }
6802
6803 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07006804 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07006805 goto tg3_tso_bug_end;
6806
6807 do {
6808 nskb = segs;
6809 segs = segs->next;
6810 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00006811 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006812 } while (segs);
6813
6814tg3_tso_bug_end:
6815 dev_kfree_skb(skb);
6816
6817 return NETDEV_TX_OK;
6818}
Michael Chan52c0fd82006-06-29 20:15:54 -07006819
Michael Chan5a6f3072006-03-20 22:28:05 -08006820/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00006821 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08006822 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00006823static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08006824{
6825 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00006826 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00006827 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006828 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07006829 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006830 struct tg3_napi *tnapi;
6831 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006832 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006833
Matt Carlson24f4efd2009-11-13 13:03:35 +00006834 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
6835 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00006836 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006837 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838
Matt Carlson84b67b22011-07-27 14:20:52 +00006839 budget = tg3_tx_avail(tnapi);
6840
Michael Chan00b70502006-06-17 21:58:45 -07006841 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006842 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07006843 * interrupt. Furthermore, IRQ processing runs lockless so we have
6844 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006846 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006847 if (!netif_tx_queue_stopped(txq)) {
6848 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006849
6850 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00006851 netdev_err(dev,
6852 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854 return NETDEV_TX_BUSY;
6855 }
6856
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006857 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006858 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07006859 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006861
Matt Carlsonbe98da62010-07-11 09:31:46 +00006862 mss = skb_shinfo(skb)->gso_size;
6863 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006864 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00006865 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866
6867 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00006868 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6869 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870
Matt Carlson34195c32010-07-11 09:31:42 +00006871 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07006872 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873
Eric Dumazeta5a11952012-01-23 01:22:09 +00006874 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00006875
Eric Dumazeta5a11952012-01-23 01:22:09 +00006876 if (!skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00006877 iph->check = 0;
6878 iph->tot_len = htons(mss + hdr_len);
6879 }
6880
Michael Chan52c0fd82006-06-29 20:15:54 -07006881 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006882 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00006883 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07006884
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
6886 TXD_FLAG_CPU_POST_DMA);
6887
Joe Perches63c3a662011-04-26 08:12:10 +00006888 if (tg3_flag(tp, HW_TSO_1) ||
6889 tg3_flag(tp, HW_TSO_2) ||
6890 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006891 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006893 } else
6894 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6895 iph->daddr, 0,
6896 IPPROTO_TCP,
6897 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898
Joe Perches63c3a662011-04-26 08:12:10 +00006899 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00006900 mss |= (hdr_len & 0xc) << 12;
6901 if (hdr_len & 0x10)
6902 base_flags |= 0x00000010;
6903 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00006904 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006905 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00006906 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006907 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006908 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909 int tsflags;
6910
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006911 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912 mss |= (tsflags << 11);
6913 }
6914 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006915 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916 int tsflags;
6917
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006918 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919 base_flags |= tsflags << 12;
6920 }
6921 }
6922 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00006923
Matt Carlson93a700a2011-08-31 11:44:54 +00006924 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
6925 !mss && skb->len > VLAN_ETH_FRAME_LEN)
6926 base_flags |= TXD_FLAG_JMB_PKT;
6927
Matt Carlson92cd3a12011-07-27 14:20:47 +00006928 if (vlan_tx_tag_present(skb)) {
6929 base_flags |= TXD_FLAG_VLAN;
6930 vlan = vlan_tx_tag_get(skb);
6931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932
Alexander Duyckf4188d82009-12-02 16:48:38 +00006933 len = skb_headlen(skb);
6934
6935 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00006936 if (pci_dma_mapping_error(tp->pdev, mapping))
6937 goto drop;
6938
David S. Miller90079ce2008-09-11 04:52:51 -07006939
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006940 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006941 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942
6943 would_hit_hwbug = 0;
6944
Joe Perches63c3a662011-04-26 08:12:10 +00006945 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07006946 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947
Matt Carlson84b67b22011-07-27 14:20:52 +00006948 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00006949 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00006950 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00006951 would_hit_hwbug = 1;
Matt Carlsonba1142e2011-11-04 09:15:00 +00006952 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00006953 u32 tmp_mss = mss;
6954
6955 if (!tg3_flag(tp, HW_TSO_1) &&
6956 !tg3_flag(tp, HW_TSO_2) &&
6957 !tg3_flag(tp, HW_TSO_3))
6958 tmp_mss = 0;
6959
Matt Carlsonc5665a52012-02-13 10:20:12 +00006960 /* Now loop through additional data
6961 * fragments, and queue them.
6962 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006963 last = skb_shinfo(skb)->nr_frags - 1;
6964 for (i = 0; i <= last; i++) {
6965 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6966
Eric Dumazet9e903e02011-10-18 21:00:24 +00006967 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00006968 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01006969 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006971 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006972 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00006973 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01006974 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00006975 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006976
Matt Carlsonb9e45482011-11-04 09:14:59 +00006977 if (!budget ||
6978 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00006979 len, base_flags |
6980 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00006981 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006982 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00006983 break;
6984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006985 }
6986 }
6987
6988 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00006989 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006990
6991 /* If the workaround fails due to memory/mapping
6992 * failure, silently drop this packet.
6993 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006994 entry = tnapi->tx_prod;
6995 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04006996 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00006997 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00006998 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999 }
7000
Richard Cochrand515b452011-06-19 03:31:41 +00007001 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00007002 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00007003
Michael Chan6541b802012-03-04 14:48:14 +00007004 /* Sync BD data before updating mailbox */
7005 wmb();
7006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007008 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007010 tnapi->tx_prod = entry;
7011 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007012 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007013
7014 /* netif_tx_stop_queue() must be done before checking
7015 * checking tx index in tg3_tx_avail() below, because in
7016 * tg3_tx(), we update tx index before checking for
7017 * netif_tx_queue_stopped().
7018 */
7019 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007020 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007021 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07007022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023
Eric Dumazetcdd0db02009-05-28 00:00:41 +00007024 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007026
7027dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00007028 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00007029 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00007030drop:
7031 dev_kfree_skb(skb);
7032drop_nofree:
7033 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007034 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035}
7036
Matt Carlson6e01b202011-08-19 13:58:20 +00007037static void tg3_mac_loopback(struct tg3 *tp, bool enable)
7038{
7039 if (enable) {
7040 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
7041 MAC_MODE_PORT_MODE_MASK);
7042
7043 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
7044
7045 if (!tg3_flag(tp, 5705_PLUS))
7046 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
7047
7048 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
7049 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
7050 else
7051 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7052 } else {
7053 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
7054
7055 if (tg3_flag(tp, 5705_PLUS) ||
7056 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
7057 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
7058 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
7059 }
7060
7061 tw32(MAC_MODE, tp->mac_mode);
7062 udelay(40);
7063}
7064
Matt Carlson941ec902011-08-19 13:58:23 +00007065static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007066{
Matt Carlson941ec902011-08-19 13:58:23 +00007067 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007068
7069 tg3_phy_toggle_apd(tp, false);
7070 tg3_phy_toggle_automdix(tp, 0);
7071
Matt Carlson941ec902011-08-19 13:58:23 +00007072 if (extlpbk && tg3_phy_set_extloopbk(tp))
7073 return -EIO;
7074
7075 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007076 switch (speed) {
7077 case SPEED_10:
7078 break;
7079 case SPEED_100:
7080 bmcr |= BMCR_SPEED100;
7081 break;
7082 case SPEED_1000:
7083 default:
7084 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
7085 speed = SPEED_100;
7086 bmcr |= BMCR_SPEED100;
7087 } else {
7088 speed = SPEED_1000;
7089 bmcr |= BMCR_SPEED1000;
7090 }
7091 }
7092
Matt Carlson941ec902011-08-19 13:58:23 +00007093 if (extlpbk) {
7094 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
7095 tg3_readphy(tp, MII_CTRL1000, &val);
7096 val |= CTL1000_AS_MASTER |
7097 CTL1000_ENABLE_MASTER;
7098 tg3_writephy(tp, MII_CTRL1000, val);
7099 } else {
7100 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
7101 MII_TG3_FET_PTEST_TRIM_2;
7102 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
7103 }
7104 } else
7105 bmcr |= BMCR_LOOPBACK;
7106
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007107 tg3_writephy(tp, MII_BMCR, bmcr);
7108
7109 /* The write needs to be flushed for the FETs */
7110 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
7111 tg3_readphy(tp, MII_BMCR, &bmcr);
7112
7113 udelay(40);
7114
7115 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
7116 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00007117 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007118 MII_TG3_FET_PTEST_FRC_TX_LINK |
7119 MII_TG3_FET_PTEST_FRC_TX_LOCK);
7120
7121 /* The write needs to be flushed for the AC131 */
7122 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
7123 }
7124
7125 /* Reset to prevent losing 1st rx packet intermittently */
7126 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
7127 tg3_flag(tp, 5780_CLASS)) {
7128 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7129 udelay(10);
7130 tw32_f(MAC_RX_MODE, tp->rx_mode);
7131 }
7132
7133 mac_mode = tp->mac_mode &
7134 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
7135 if (speed == SPEED_1000)
7136 mac_mode |= MAC_MODE_PORT_MODE_GMII;
7137 else
7138 mac_mode |= MAC_MODE_PORT_MODE_MII;
7139
7140 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
7141 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
7142
7143 if (masked_phy_id == TG3_PHY_ID_BCM5401)
7144 mac_mode &= ~MAC_MODE_LINK_POLARITY;
7145 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
7146 mac_mode |= MAC_MODE_LINK_POLARITY;
7147
7148 tg3_writephy(tp, MII_TG3_EXT_CTRL,
7149 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
7150 }
7151
7152 tw32(MAC_MODE, mac_mode);
7153 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00007154
7155 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007156}
7157
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007158static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007159{
7160 struct tg3 *tp = netdev_priv(dev);
7161
7162 if (features & NETIF_F_LOOPBACK) {
7163 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
7164 return;
7165
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007166 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00007167 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007168 netif_carrier_on(tp->dev);
7169 spin_unlock_bh(&tp->lock);
7170 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
7171 } else {
7172 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
7173 return;
7174
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007175 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00007176 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007177 /* Force link status check */
7178 tg3_setup_phy(tp, 1);
7179 spin_unlock_bh(&tp->lock);
7180 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
7181 }
7182}
7183
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007184static netdev_features_t tg3_fix_features(struct net_device *dev,
7185 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00007186{
7187 struct tg3 *tp = netdev_priv(dev);
7188
Joe Perches63c3a662011-04-26 08:12:10 +00007189 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00007190 features &= ~NETIF_F_ALL_TSO;
7191
7192 return features;
7193}
7194
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007195static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007196{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007197 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007198
7199 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
7200 tg3_set_loopback(dev, features);
7201
7202 return 0;
7203}
7204
Matt Carlson21f581a2009-08-28 14:00:25 +00007205static void tg3_rx_prodring_free(struct tg3 *tp,
7206 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208 int i;
7209
Matt Carlson8fea32b2010-09-15 08:59:58 +00007210 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007211 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007212 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007213 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007214 tp->rx_pkt_map_sz);
7215
Joe Perches63c3a662011-04-26 08:12:10 +00007216 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007217 for (i = tpr->rx_jmb_cons_idx;
7218 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007219 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007220 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007221 TG3_RX_JMB_MAP_SZ);
7222 }
7223 }
7224
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007225 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007227
Matt Carlson2c49a442010-09-30 10:34:35 +00007228 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007229 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007230 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007231
Joe Perches63c3a662011-04-26 08:12:10 +00007232 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007233 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007234 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007235 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236 }
7237}
7238
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007239/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007240 *
7241 * The chip has been shut down and the driver detached from
7242 * the networking, so no interrupts or new tx packets will
7243 * end up in the driver. tp->{tx,}lock are held and thus
7244 * we may not sleep.
7245 */
Matt Carlson21f581a2009-08-28 14:00:25 +00007246static int tg3_rx_prodring_alloc(struct tg3 *tp,
7247 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007248{
Matt Carlson287be122009-08-28 13:58:46 +00007249 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007251 tpr->rx_std_cons_idx = 0;
7252 tpr->rx_std_prod_idx = 0;
7253 tpr->rx_jmb_cons_idx = 0;
7254 tpr->rx_jmb_prod_idx = 0;
7255
Matt Carlson8fea32b2010-09-15 08:59:58 +00007256 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007257 memset(&tpr->rx_std_buffers[0], 0,
7258 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00007259 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007260 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00007261 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007262 goto done;
7263 }
7264
Linus Torvalds1da177e2005-04-16 15:20:36 -07007265 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00007266 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007267
Matt Carlson287be122009-08-28 13:58:46 +00007268 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00007269 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00007270 tp->dev->mtu > ETH_DATA_LEN)
7271 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
7272 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07007273
Linus Torvalds1da177e2005-04-16 15:20:36 -07007274 /* Initialize invariants of the rings, we only set this
7275 * stuff once. This works because the card does not
7276 * write into the rx buffer posting rings.
7277 */
Matt Carlson2c49a442010-09-30 10:34:35 +00007278 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279 struct tg3_rx_buffer_desc *rxd;
7280
Matt Carlson21f581a2009-08-28 14:00:25 +00007281 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00007282 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
7284 rxd->opaque = (RXD_OPAQUE_RING_STD |
7285 (i << RXD_OPAQUE_INDEX_SHIFT));
7286 }
7287
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007288 /* Now allocate fresh SKBs for each rx ring. */
7289 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007290 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007291 netdev_warn(tp->dev,
7292 "Using a smaller RX standard ring. Only "
7293 "%d out of %d buffers were allocated "
7294 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007295 if (i == 0)
7296 goto initfail;
7297 tp->rx_pending = i;
7298 break;
7299 }
7300 }
7301
Joe Perches63c3a662011-04-26 08:12:10 +00007302 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007303 goto done;
7304
Matt Carlson2c49a442010-09-30 10:34:35 +00007305 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007306
Joe Perches63c3a662011-04-26 08:12:10 +00007307 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00007308 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007309
Matt Carlson2c49a442010-09-30 10:34:35 +00007310 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00007311 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312
Matt Carlson0d86df82010-02-17 15:17:00 +00007313 rxd = &tpr->rx_jmb[i].std;
7314 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
7315 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
7316 RXD_FLAG_JUMBO;
7317 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
7318 (i << RXD_OPAQUE_INDEX_SHIFT));
7319 }
7320
7321 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007322 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007323 netdev_warn(tp->dev,
7324 "Using a smaller RX jumbo ring. Only %d "
7325 "out of %d buffers were allocated "
7326 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00007327 if (i == 0)
7328 goto initfail;
7329 tp->rx_jumbo_pending = i;
7330 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007331 }
7332 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007333
7334done:
Michael Chan32d8c572006-07-25 16:38:29 -07007335 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007336
7337initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00007338 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007339 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340}
7341
Matt Carlson21f581a2009-08-28 14:00:25 +00007342static void tg3_rx_prodring_fini(struct tg3 *tp,
7343 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344{
Matt Carlson21f581a2009-08-28 14:00:25 +00007345 kfree(tpr->rx_std_buffers);
7346 tpr->rx_std_buffers = NULL;
7347 kfree(tpr->rx_jmb_buffers);
7348 tpr->rx_jmb_buffers = NULL;
7349 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007350 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
7351 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007352 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353 }
Matt Carlson21f581a2009-08-28 14:00:25 +00007354 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007355 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
7356 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007357 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007358 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007359}
7360
Matt Carlson21f581a2009-08-28 14:00:25 +00007361static int tg3_rx_prodring_init(struct tg3 *tp,
7362 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007363{
Matt Carlson2c49a442010-09-30 10:34:35 +00007364 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
7365 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007366 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007367 return -ENOMEM;
7368
Matt Carlson4bae65c2010-11-24 08:31:52 +00007369 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
7370 TG3_RX_STD_RING_BYTES(tp),
7371 &tpr->rx_std_mapping,
7372 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007373 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007374 goto err_out;
7375
Joe Perches63c3a662011-04-26 08:12:10 +00007376 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007377 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00007378 GFP_KERNEL);
7379 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007380 goto err_out;
7381
Matt Carlson4bae65c2010-11-24 08:31:52 +00007382 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
7383 TG3_RX_JMB_RING_BYTES(tp),
7384 &tpr->rx_jmb_mapping,
7385 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007386 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007387 goto err_out;
7388 }
7389
7390 return 0;
7391
7392err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00007393 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007394 return -ENOMEM;
7395}
7396
7397/* Free up pending packets in all rx/tx rings.
7398 *
7399 * The chip has been shut down and the driver detached from
7400 * the networking, so no interrupts or new tx packets will
7401 * end up in the driver. tp->{tx,}lock is not held and we are not
7402 * in an interrupt context and thus may sleep.
7403 */
7404static void tg3_free_rings(struct tg3 *tp)
7405{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007406 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007407
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007408 for (j = 0; j < tp->irq_cnt; j++) {
7409 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007410
Matt Carlson8fea32b2010-09-15 08:59:58 +00007411 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00007412
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007413 if (!tnapi->tx_buffers)
7414 continue;
7415
Matt Carlson0d681b22011-07-27 14:20:49 +00007416 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
7417 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007418
Matt Carlson0d681b22011-07-27 14:20:49 +00007419 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007420 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007421
Matt Carlsonba1142e2011-11-04 09:15:00 +00007422 tg3_tx_skb_unmap(tnapi, i,
7423 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007424
7425 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007426 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00007427 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007428 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007429}
7430
7431/* Initialize tx/rx rings for packet processing.
7432 *
7433 * The chip has been shut down and the driver detached from
7434 * the networking, so no interrupts or new tx packets will
7435 * end up in the driver. tp->{tx,}lock are held and thus
7436 * we may not sleep.
7437 */
7438static int tg3_init_rings(struct tg3 *tp)
7439{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007440 int i;
Matt Carlson72334482009-08-28 14:03:01 +00007441
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007442 /* Free up all the SKBs. */
7443 tg3_free_rings(tp);
7444
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007445 for (i = 0; i < tp->irq_cnt; i++) {
7446 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007447
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007448 tnapi->last_tag = 0;
7449 tnapi->last_irq_tag = 0;
7450 tnapi->hw_status->status = 0;
7451 tnapi->hw_status->status_tag = 0;
7452 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7453
7454 tnapi->tx_prod = 0;
7455 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007456 if (tnapi->tx_ring)
7457 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007458
7459 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007460 if (tnapi->rx_rcb)
7461 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007462
Matt Carlson8fea32b2010-09-15 08:59:58 +00007463 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00007464 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007465 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00007466 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007467 }
Matt Carlson72334482009-08-28 14:03:01 +00007468
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007469 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007470}
7471
7472/*
7473 * Must not be invoked with interrupt sources disabled and
7474 * the hardware shutdown down.
7475 */
7476static void tg3_free_consistent(struct tg3 *tp)
7477{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007478 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007479
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007480 for (i = 0; i < tp->irq_cnt; i++) {
7481 struct tg3_napi *tnapi = &tp->napi[i];
7482
7483 if (tnapi->tx_ring) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007484 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007485 tnapi->tx_ring, tnapi->tx_desc_mapping);
7486 tnapi->tx_ring = NULL;
7487 }
7488
7489 kfree(tnapi->tx_buffers);
7490 tnapi->tx_buffers = NULL;
7491
7492 if (tnapi->rx_rcb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007493 dma_free_coherent(&tp->pdev->dev,
7494 TG3_RX_RCB_RING_BYTES(tp),
7495 tnapi->rx_rcb,
7496 tnapi->rx_rcb_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007497 tnapi->rx_rcb = NULL;
7498 }
7499
Matt Carlson8fea32b2010-09-15 08:59:58 +00007500 tg3_rx_prodring_fini(tp, &tnapi->prodring);
7501
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007502 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007503 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
7504 tnapi->hw_status,
7505 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007506 tnapi->hw_status = NULL;
7507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007509
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007511 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
7512 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007513 tp->hw_stats = NULL;
7514 }
7515}
7516
7517/*
7518 * Must not be invoked with interrupt sources disabled and
7519 * the hardware shutdown down. Can sleep.
7520 */
7521static int tg3_alloc_consistent(struct tg3 *tp)
7522{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007523 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007524
Matt Carlson4bae65c2010-11-24 08:31:52 +00007525 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
7526 sizeof(struct tg3_hw_stats),
7527 &tp->stats_mapping,
7528 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007529 if (!tp->hw_stats)
7530 goto err_out;
7531
Linus Torvalds1da177e2005-04-16 15:20:36 -07007532 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
7533
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007534 for (i = 0; i < tp->irq_cnt; i++) {
7535 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007536 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007537
Matt Carlson4bae65c2010-11-24 08:31:52 +00007538 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
7539 TG3_HW_STATUS_SIZE,
7540 &tnapi->status_mapping,
7541 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007542 if (!tnapi->hw_status)
7543 goto err_out;
7544
7545 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007546 sblk = tnapi->hw_status;
7547
Matt Carlson8fea32b2010-09-15 08:59:58 +00007548 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
7549 goto err_out;
7550
Matt Carlson19cfaec2009-12-03 08:36:20 +00007551 /* If multivector TSS is enabled, vector 0 does not handle
7552 * tx interrupts. Don't allocate any resources for it.
7553 */
Joe Perches63c3a662011-04-26 08:12:10 +00007554 if ((!i && !tg3_flag(tp, ENABLE_TSS)) ||
7555 (i && tg3_flag(tp, ENABLE_TSS))) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00007556 tnapi->tx_buffers = kzalloc(
7557 sizeof(struct tg3_tx_ring_info) *
7558 TG3_TX_RING_SIZE, GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007559 if (!tnapi->tx_buffers)
7560 goto err_out;
7561
Matt Carlson4bae65c2010-11-24 08:31:52 +00007562 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
7563 TG3_TX_RING_BYTES,
7564 &tnapi->tx_desc_mapping,
7565 GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007566 if (!tnapi->tx_ring)
7567 goto err_out;
7568 }
7569
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007570 /*
7571 * When RSS is enabled, the status block format changes
7572 * slightly. The "rx_jumbo_consumer", "reserved",
7573 * and "rx_mini_consumer" members get mapped to the
7574 * other three rx return ring producer indexes.
7575 */
7576 switch (i) {
7577 default:
Matt Carlsonf891ea12012-04-24 13:37:01 +00007578 if (tg3_flag(tp, ENABLE_RSS)) {
7579 tnapi->rx_rcb_prod_idx = NULL;
7580 break;
7581 }
7582 /* Fall through */
7583 case 1:
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007584 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
7585 break;
7586 case 2:
7587 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
7588 break;
7589 case 3:
7590 tnapi->rx_rcb_prod_idx = &sblk->reserved;
7591 break;
7592 case 4:
7593 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
7594 break;
7595 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007596
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007597 /*
7598 * If multivector RSS is enabled, vector 0 does not handle
7599 * rx or tx interrupts. Don't allocate any resources for it.
7600 */
Joe Perches63c3a662011-04-26 08:12:10 +00007601 if (!i && tg3_flag(tp, ENABLE_RSS))
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007602 continue;
7603
Matt Carlson4bae65c2010-11-24 08:31:52 +00007604 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
7605 TG3_RX_RCB_RING_BYTES(tp),
7606 &tnapi->rx_rcb_mapping,
7607 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007608 if (!tnapi->rx_rcb)
7609 goto err_out;
7610
7611 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007612 }
7613
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614 return 0;
7615
7616err_out:
7617 tg3_free_consistent(tp);
7618 return -ENOMEM;
7619}
7620
7621#define MAX_WAIT_CNT 1000
7622
7623/* To stop a block, clear the enable bit and poll till it
7624 * clears. tp->lock is held.
7625 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007626static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007627{
7628 unsigned int i;
7629 u32 val;
7630
Joe Perches63c3a662011-04-26 08:12:10 +00007631 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007632 switch (ofs) {
7633 case RCVLSC_MODE:
7634 case DMAC_MODE:
7635 case MBFREE_MODE:
7636 case BUFMGR_MODE:
7637 case MEMARB_MODE:
7638 /* We can't enable/disable these bits of the
7639 * 5705/5750, just say success.
7640 */
7641 return 0;
7642
7643 default:
7644 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646 }
7647
7648 val = tr32(ofs);
7649 val &= ~enable_bit;
7650 tw32_f(ofs, val);
7651
7652 for (i = 0; i < MAX_WAIT_CNT; i++) {
7653 udelay(100);
7654 val = tr32(ofs);
7655 if ((val & enable_bit) == 0)
7656 break;
7657 }
7658
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007659 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00007660 dev_err(&tp->pdev->dev,
7661 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
7662 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663 return -ENODEV;
7664 }
7665
7666 return 0;
7667}
7668
7669/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007670static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007671{
7672 int i, err;
7673
7674 tg3_disable_ints(tp);
7675
7676 tp->rx_mode &= ~RX_MODE_ENABLE;
7677 tw32_f(MAC_RX_MODE, tp->rx_mode);
7678 udelay(10);
7679
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007680 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
7681 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
7682 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
7683 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
7684 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
7685 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007686
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007687 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
7688 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
7689 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
7690 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
7691 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
7692 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
7693 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694
7695 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
7696 tw32_f(MAC_MODE, tp->mac_mode);
7697 udelay(40);
7698
7699 tp->tx_mode &= ~TX_MODE_ENABLE;
7700 tw32_f(MAC_TX_MODE, tp->tx_mode);
7701
7702 for (i = 0; i < MAX_WAIT_CNT; i++) {
7703 udelay(100);
7704 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
7705 break;
7706 }
7707 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00007708 dev_err(&tp->pdev->dev,
7709 "%s timed out, TX_MODE_ENABLE will not clear "
7710 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07007711 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007712 }
7713
Michael Chane6de8ad2005-05-05 14:42:41 -07007714 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007715 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
7716 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007717
7718 tw32(FTQ_RESET, 0xffffffff);
7719 tw32(FTQ_RESET, 0x00000000);
7720
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007721 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
7722 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007723
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007724 for (i = 0; i < tp->irq_cnt; i++) {
7725 struct tg3_napi *tnapi = &tp->napi[i];
7726 if (tnapi->hw_status)
7727 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730 return err;
7731}
7732
Michael Chanee6a99b2007-07-18 21:49:10 -07007733/* Save PCI command register before chip reset */
7734static void tg3_save_pci_state(struct tg3 *tp)
7735{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007736 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007737}
7738
7739/* Restore PCI state after chip reset */
7740static void tg3_restore_pci_state(struct tg3 *tp)
7741{
7742 u32 val;
7743
7744 /* Re-enable indirect register accesses. */
7745 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7746 tp->misc_host_ctrl);
7747
7748 /* Set MAX PCI retry to zero. */
7749 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7750 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007751 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007752 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007753 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007754 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007755 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00007756 PCISTATE_ALLOW_APE_SHMEM_WR |
7757 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007758 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7759
Matt Carlson8a6eac92007-10-21 16:17:55 -07007760 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007761
Matt Carlson2c55a3d2011-11-28 09:41:04 +00007762 if (!tg3_flag(tp, PCI_EXPRESS)) {
7763 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7764 tp->pci_cacheline_sz);
7765 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7766 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07007767 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007768
Michael Chanee6a99b2007-07-18 21:49:10 -07007769 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007770 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007771 u16 pcix_cmd;
7772
7773 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7774 &pcix_cmd);
7775 pcix_cmd &= ~PCI_X_CMD_ERO;
7776 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7777 pcix_cmd);
7778 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007779
Joe Perches63c3a662011-04-26 08:12:10 +00007780 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007781
7782 /* Chip reset on 5780 will reset MSI enable bit,
7783 * so need to restore it.
7784 */
Joe Perches63c3a662011-04-26 08:12:10 +00007785 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007786 u16 ctrl;
7787
7788 pci_read_config_word(tp->pdev,
7789 tp->msi_cap + PCI_MSI_FLAGS,
7790 &ctrl);
7791 pci_write_config_word(tp->pdev,
7792 tp->msi_cap + PCI_MSI_FLAGS,
7793 ctrl | PCI_MSI_FLAGS_ENABLE);
7794 val = tr32(MSGINT_MODE);
7795 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7796 }
7797 }
7798}
7799
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800/* tp->lock is held. */
7801static int tg3_chip_reset(struct tg3 *tp)
7802{
7803 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007804 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007805 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806
David S. Millerf49639e2006-06-09 11:58:36 -07007807 tg3_nvram_lock(tp);
7808
Matt Carlson77b483f2008-08-15 14:07:24 -07007809 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7810
David S. Millerf49639e2006-06-09 11:58:36 -07007811 /* No matching tg3_nvram_unlock() after this because
7812 * chip reset below will undo the nvram lock.
7813 */
7814 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007815
Michael Chanee6a99b2007-07-18 21:49:10 -07007816 /* GRC_MISC_CFG core clock reset will clear the memory
7817 * enable bit in PCI register 4 and the MSI enable bit
7818 * on some chips, so we save relevant registers here.
7819 */
7820 tg3_save_pci_state(tp);
7821
Michael Chand9ab5ad12006-03-20 22:27:35 -08007822 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00007823 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08007824 tw32(GRC_FASTBOOT_PC, 0);
7825
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826 /*
7827 * We must avoid the readl() that normally takes place.
7828 * It locks machines, causes machine checks, and other
7829 * fun things. So, temporarily disable the 5701
7830 * hardware workaround, while we do the reset.
7831 */
Michael Chan1ee582d2005-08-09 20:16:46 -07007832 write_op = tp->write32;
7833 if (write_op == tg3_write_flush_reg32)
7834 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007835
Michael Chand18edcb2007-03-24 20:57:11 -07007836 /* Prevent the irq handler from reading or writing PCI registers
7837 * during chip reset when the memory enable bit in the PCI command
7838 * register may be cleared. The chip does not generate interrupt
7839 * at this time, but the irq handler may still be called due to irq
7840 * sharing or irqpoll.
7841 */
Joe Perches63c3a662011-04-26 08:12:10 +00007842 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007843 for (i = 0; i < tp->irq_cnt; i++) {
7844 struct tg3_napi *tnapi = &tp->napi[i];
7845 if (tnapi->hw_status) {
7846 tnapi->hw_status->status = 0;
7847 tnapi->hw_status->status_tag = 0;
7848 }
7849 tnapi->last_tag = 0;
7850 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07007851 }
Michael Chand18edcb2007-03-24 20:57:11 -07007852 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00007853
7854 for (i = 0; i < tp->irq_cnt; i++)
7855 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07007856
Matt Carlson255ca312009-08-25 10:07:27 +00007857 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7858 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7859 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
7860 }
7861
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862 /* do the reset */
7863 val = GRC_MISC_CFG_CORECLK_RESET;
7864
Joe Perches63c3a662011-04-26 08:12:10 +00007865 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00007866 /* Force PCIe 1.0a mode */
7867 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007868 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00007869 tr32(TG3_PCIE_PHY_TSTCTL) ==
7870 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
7871 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
7872
Linus Torvalds1da177e2005-04-16 15:20:36 -07007873 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
7874 tw32(GRC_MISC_CFG, (1 << 29));
7875 val |= (1 << 29);
7876 }
7877 }
7878
Michael Chanb5d37722006-09-27 16:06:21 -07007879 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7880 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
7881 tw32(GRC_VCPU_EXT_CTRL,
7882 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
7883 }
7884
Matt Carlsonf37500d2010-08-02 11:25:59 +00007885 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00007886 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00007888
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889 tw32(GRC_MISC_CFG, val);
7890
Michael Chan1ee582d2005-08-09 20:16:46 -07007891 /* restore 5701 hardware bug workaround write method */
7892 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007893
7894 /* Unfortunately, we have to delay before the PCI read back.
7895 * Some 575X chips even will not respond to a PCI cfg access
7896 * when the reset command is given to the chip.
7897 *
7898 * How do these hardware designers expect things to work
7899 * properly if the PCI write is posted for a long period
7900 * of time? It is always necessary to have some method by
7901 * which a register read back can occur to push the write
7902 * out which does the reset.
7903 *
7904 * For most tg3 variants the trick below was working.
7905 * Ho hum...
7906 */
7907 udelay(120);
7908
7909 /* Flush PCI posted writes. The normal MMIO registers
7910 * are inaccessible at this time so this is the only
7911 * way to make this reliably (actually, this is no longer
7912 * the case, see above). I tried to use indirect
7913 * register read/write but this upset some 5701 variants.
7914 */
7915 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
7916
7917 udelay(120);
7918
Jon Mason708ebb3a2011-06-27 12:56:50 +00007919 if (tg3_flag(tp, PCI_EXPRESS) && pci_pcie_cap(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00007920 u16 val16;
7921
Linus Torvalds1da177e2005-04-16 15:20:36 -07007922 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
7923 int i;
7924 u32 cfg_val;
7925
7926 /* Wait for link training to complete. */
7927 for (i = 0; i < 5000; i++)
7928 udelay(100);
7929
7930 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
7931 pci_write_config_dword(tp->pdev, 0xc4,
7932 cfg_val | (1 << 15));
7933 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007934
Matt Carlsone7126992009-08-25 10:08:16 +00007935 /* Clear the "no snoop" and "relaxed ordering" bits. */
7936 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00007937 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007938 &val16);
7939 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
7940 PCI_EXP_DEVCTL_NOSNOOP_EN);
7941 /*
7942 * Older PCIe devices only support the 128 byte
7943 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007944 */
Joe Perches63c3a662011-04-26 08:12:10 +00007945 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00007946 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007947 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00007948 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007949 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007950
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007951 /* Clear error status */
7952 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00007953 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007954 PCI_EXP_DEVSTA_CED |
7955 PCI_EXP_DEVSTA_NFED |
7956 PCI_EXP_DEVSTA_FED |
7957 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007958 }
7959
Michael Chanee6a99b2007-07-18 21:49:10 -07007960 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961
Joe Perches63c3a662011-04-26 08:12:10 +00007962 tg3_flag_clear(tp, CHIP_RESETTING);
7963 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07007964
Michael Chanee6a99b2007-07-18 21:49:10 -07007965 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007966 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07007967 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07007968 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969
7970 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
7971 tg3_stop_fw(tp);
7972 tw32(0x5000, 0x400);
7973 }
7974
7975 tw32(GRC_MODE, tp->grc_mode);
7976
7977 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007978 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007979
7980 tw32(0xc4, val | (1 << 15));
7981 }
7982
7983 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
7984 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
7985 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
7986 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
7987 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
7988 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7989 }
7990
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007991 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00007992 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007993 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007994 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00007995 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007996 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007998 val = 0;
7999
8000 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001 udelay(40);
8002
Matt Carlson77b483f2008-08-15 14:07:24 -07008003 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
8004
Michael Chan7a6f4362006-09-27 16:03:31 -07008005 err = tg3_poll_fw(tp);
8006 if (err)
8007 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008008
Matt Carlson0a9140c2009-08-28 12:27:50 +00008009 tg3_mdio_start(tp);
8010
Joe Perches63c3a662011-04-26 08:12:10 +00008011 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008012 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
8013 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008014 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008015 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008016
8017 tw32(0x7c00, val | (1 << 25));
8018 }
8019
Matt Carlsond78b59f2011-04-05 14:22:46 +00008020 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8021 val = tr32(TG3_CPMU_CLCK_ORIDE);
8022 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
8023 }
8024
Linus Torvalds1da177e2005-04-16 15:20:36 -07008025 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00008026 tg3_flag_clear(tp, ENABLE_ASF);
8027 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
8029 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
8030 u32 nic_cfg;
8031
8032 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
8033 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00008034 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008035 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00008036 if (tg3_flag(tp, 5750_PLUS))
8037 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008038 }
8039 }
8040
8041 return 0;
8042}
8043
Matt Carlson65ec6982012-02-28 23:33:37 +00008044static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
8045static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Matt Carlson92feeab2011-12-08 14:40:14 +00008046
Linus Torvalds1da177e2005-04-16 15:20:36 -07008047/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07008048static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008049{
8050 int err;
8051
8052 tg3_stop_fw(tp);
8053
Michael Chan944d9802005-05-29 14:57:48 -07008054 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008055
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008056 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008057 err = tg3_chip_reset(tp);
8058
Matt Carlsondaba2a62009-04-20 06:58:52 +00008059 __tg3_set_mac_addr(tp, 0);
8060
Michael Chan944d9802005-05-29 14:57:48 -07008061 tg3_write_sig_legacy(tp, kind);
8062 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063
Matt Carlson92feeab2011-12-08 14:40:14 +00008064 if (tp->hw_stats) {
8065 /* Save the stats across chip resets... */
David S. Millerb4017c52012-03-01 17:57:40 -05008066 tg3_get_nstats(tp, &tp->net_stats_prev);
Matt Carlson92feeab2011-12-08 14:40:14 +00008067 tg3_get_estats(tp, &tp->estats_prev);
8068
8069 /* And make sure the next sample is new data */
8070 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
8071 }
8072
Linus Torvalds1da177e2005-04-16 15:20:36 -07008073 if (err)
8074 return err;
8075
8076 return 0;
8077}
8078
Linus Torvalds1da177e2005-04-16 15:20:36 -07008079static int tg3_set_mac_addr(struct net_device *dev, void *p)
8080{
8081 struct tg3 *tp = netdev_priv(dev);
8082 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07008083 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084
Michael Chanf9804dd2005-09-27 12:13:10 -07008085 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00008086 return -EADDRNOTAVAIL;
Michael Chanf9804dd2005-09-27 12:13:10 -07008087
Linus Torvalds1da177e2005-04-16 15:20:36 -07008088 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
8089
Michael Chane75f7c92006-03-20 21:33:26 -08008090 if (!netif_running(dev))
8091 return 0;
8092
Joe Perches63c3a662011-04-26 08:12:10 +00008093 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07008094 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07008095
Michael Chan986e0ae2007-05-05 12:10:20 -07008096 addr0_high = tr32(MAC_ADDR_0_HIGH);
8097 addr0_low = tr32(MAC_ADDR_0_LOW);
8098 addr1_high = tr32(MAC_ADDR_1_HIGH);
8099 addr1_low = tr32(MAC_ADDR_1_LOW);
8100
8101 /* Skip MAC addr 1 if ASF is using it. */
8102 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
8103 !(addr1_high == 0 && addr1_low == 0))
8104 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07008105 }
Michael Chan986e0ae2007-05-05 12:10:20 -07008106 spin_lock_bh(&tp->lock);
8107 __tg3_set_mac_addr(tp, skip_mac_1);
8108 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008109
Michael Chanb9ec6c12006-07-25 16:37:27 -07008110 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008111}
8112
8113/* tp->lock is held. */
8114static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
8115 dma_addr_t mapping, u32 maxlen_flags,
8116 u32 nic_addr)
8117{
8118 tg3_write_mem(tp,
8119 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
8120 ((u64) mapping >> 32));
8121 tg3_write_mem(tp,
8122 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
8123 ((u64) mapping & 0xffffffff));
8124 tg3_write_mem(tp,
8125 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
8126 maxlen_flags);
8127
Joe Perches63c3a662011-04-26 08:12:10 +00008128 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129 tg3_write_mem(tp,
8130 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
8131 nic_addr);
8132}
8133
Michael Chand244c892005-07-05 14:42:33 -07008134static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07008135{
Matt Carlsonb6080e12009-09-01 13:12:00 +00008136 int i;
8137
Joe Perches63c3a662011-04-26 08:12:10 +00008138 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008139 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
8140 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
8141 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008142 } else {
8143 tw32(HOSTCC_TXCOL_TICKS, 0);
8144 tw32(HOSTCC_TXMAX_FRAMES, 0);
8145 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008146 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008147
Joe Perches63c3a662011-04-26 08:12:10 +00008148 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008149 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
8150 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
8151 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
8152 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008153 tw32(HOSTCC_RXCOL_TICKS, 0);
8154 tw32(HOSTCC_RXMAX_FRAMES, 0);
8155 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07008156 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008157
Joe Perches63c3a662011-04-26 08:12:10 +00008158 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07008159 u32 val = ec->stats_block_coalesce_usecs;
8160
Matt Carlsonb6080e12009-09-01 13:12:00 +00008161 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
8162 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
8163
David S. Miller15f98502005-05-18 22:49:26 -07008164 if (!netif_carrier_ok(tp->dev))
8165 val = 0;
8166
8167 tw32(HOSTCC_STAT_COAL_TICKS, val);
8168 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008169
8170 for (i = 0; i < tp->irq_cnt - 1; i++) {
8171 u32 reg;
8172
8173 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
8174 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008175 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
8176 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008177 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
8178 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008179
Joe Perches63c3a662011-04-26 08:12:10 +00008180 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008181 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
8182 tw32(reg, ec->tx_coalesce_usecs);
8183 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
8184 tw32(reg, ec->tx_max_coalesced_frames);
8185 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
8186 tw32(reg, ec->tx_max_coalesced_frames_irq);
8187 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008188 }
8189
8190 for (; i < tp->irq_max - 1; i++) {
8191 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008192 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008193 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008194
Joe Perches63c3a662011-04-26 08:12:10 +00008195 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008196 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
8197 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
8198 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
8199 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008200 }
David S. Miller15f98502005-05-18 22:49:26 -07008201}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202
8203/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00008204static void tg3_rings_reset(struct tg3 *tp)
8205{
8206 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008207 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008208 struct tg3_napi *tnapi = &tp->napi[0];
8209
8210 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008211 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008212 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008213 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00008214 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlson55086ad2011-12-14 11:09:59 +00008215 else if (tg3_flag(tp, 57765_CLASS))
Matt Carlsonb703df62009-12-03 08:36:21 +00008216 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008217 else
8218 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8219
8220 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8221 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
8222 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
8223 BDINFO_FLAGS_DISABLED);
8224
8225
8226 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008227 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008228 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00008229 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008230 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00008231 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00008232 tg3_flag(tp, 57765_CLASS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008233 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
8234 else
8235 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8236
8237 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8238 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
8239 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
8240 BDINFO_FLAGS_DISABLED);
8241
8242 /* Disable interrupts */
8243 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008244 tp->napi[0].chk_msi_cnt = 0;
8245 tp->napi[0].last_rx_cons = 0;
8246 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008247
8248 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00008249 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00008250 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008251 tp->napi[i].tx_prod = 0;
8252 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008253 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008254 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008255 tw32_rx_mbox(tp->napi[i].consmbox, 0);
8256 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00008257 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008258 tp->napi[i].last_rx_cons = 0;
8259 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008260 }
Joe Perches63c3a662011-04-26 08:12:10 +00008261 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008262 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008263 } else {
8264 tp->napi[0].tx_prod = 0;
8265 tp->napi[0].tx_cons = 0;
8266 tw32_mailbox(tp->napi[0].prodmbox, 0);
8267 tw32_rx_mbox(tp->napi[0].consmbox, 0);
8268 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008269
8270 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00008271 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00008272 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
8273 for (i = 0; i < 16; i++)
8274 tw32_tx_mbox(mbox + i * 8, 0);
8275 }
8276
8277 txrcb = NIC_SRAM_SEND_RCB;
8278 rxrcb = NIC_SRAM_RCV_RET_RCB;
8279
8280 /* Clear status block in ram. */
8281 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8282
8283 /* Set status block DMA address */
8284 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8285 ((u64) tnapi->status_mapping >> 32));
8286 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8287 ((u64) tnapi->status_mapping & 0xffffffff));
8288
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008289 if (tnapi->tx_ring) {
8290 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8291 (TG3_TX_RING_SIZE <<
8292 BDINFO_FLAGS_MAXLEN_SHIFT),
8293 NIC_SRAM_TX_BUFFER_DESC);
8294 txrcb += TG3_BDINFO_SIZE;
8295 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008296
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008297 if (tnapi->rx_rcb) {
8298 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008299 (tp->rx_ret_ring_mask + 1) <<
8300 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008301 rxrcb += TG3_BDINFO_SIZE;
8302 }
8303
8304 stblk = HOSTCC_STATBLCK_RING1;
8305
8306 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
8307 u64 mapping = (u64)tnapi->status_mapping;
8308 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
8309 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
8310
8311 /* Clear status block in ram. */
8312 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8313
Matt Carlson19cfaec2009-12-03 08:36:20 +00008314 if (tnapi->tx_ring) {
8315 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8316 (TG3_TX_RING_SIZE <<
8317 BDINFO_FLAGS_MAXLEN_SHIFT),
8318 NIC_SRAM_TX_BUFFER_DESC);
8319 txrcb += TG3_BDINFO_SIZE;
8320 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008321
8322 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008323 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008324 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
8325
8326 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008327 rxrcb += TG3_BDINFO_SIZE;
8328 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008329}
8330
Matt Carlsoneb07a942011-04-20 07:57:36 +00008331static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
8332{
8333 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
8334
Joe Perches63c3a662011-04-26 08:12:10 +00008335 if (!tg3_flag(tp, 5750_PLUS) ||
8336 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00008337 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00008338 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
8339 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008340 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
8341 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
8342 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
8343 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
8344 else
8345 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
8346
8347 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
8348 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
8349
8350 val = min(nic_rep_thresh, host_rep_thresh);
8351 tw32(RCVBDI_STD_THRESH, val);
8352
Joe Perches63c3a662011-04-26 08:12:10 +00008353 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008354 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
8355
Joe Perches63c3a662011-04-26 08:12:10 +00008356 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008357 return;
8358
Matt Carlson513aa6e2011-11-21 15:01:18 +00008359 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00008360
8361 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
8362
8363 val = min(bdcache_maxcnt / 2, host_rep_thresh);
8364 tw32(RCVBDI_JUMBO_THRESH, val);
8365
Joe Perches63c3a662011-04-26 08:12:10 +00008366 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008367 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
8368}
8369
Matt Carlsonccd5ba92012-02-13 10:20:08 +00008370static inline u32 calc_crc(unsigned char *buf, int len)
8371{
8372 u32 reg;
8373 u32 tmp;
8374 int j, k;
8375
8376 reg = 0xffffffff;
8377
8378 for (j = 0; j < len; j++) {
8379 reg ^= buf[j];
8380
8381 for (k = 0; k < 8; k++) {
8382 tmp = reg & 0x01;
8383
8384 reg >>= 1;
8385
8386 if (tmp)
8387 reg ^= 0xedb88320;
8388 }
8389 }
8390
8391 return ~reg;
8392}
8393
8394static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
8395{
8396 /* accept or reject all multicast frames */
8397 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
8398 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
8399 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
8400 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
8401}
8402
8403static void __tg3_set_rx_mode(struct net_device *dev)
8404{
8405 struct tg3 *tp = netdev_priv(dev);
8406 u32 rx_mode;
8407
8408 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
8409 RX_MODE_KEEP_VLAN_TAG);
8410
8411#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
8412 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
8413 * flag clear.
8414 */
8415 if (!tg3_flag(tp, ENABLE_ASF))
8416 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
8417#endif
8418
8419 if (dev->flags & IFF_PROMISC) {
8420 /* Promiscuous mode. */
8421 rx_mode |= RX_MODE_PROMISC;
8422 } else if (dev->flags & IFF_ALLMULTI) {
8423 /* Accept all multicast. */
8424 tg3_set_multi(tp, 1);
8425 } else if (netdev_mc_empty(dev)) {
8426 /* Reject all multicast. */
8427 tg3_set_multi(tp, 0);
8428 } else {
8429 /* Accept one or more multicast(s). */
8430 struct netdev_hw_addr *ha;
8431 u32 mc_filter[4] = { 0, };
8432 u32 regidx;
8433 u32 bit;
8434 u32 crc;
8435
8436 netdev_for_each_mc_addr(ha, dev) {
8437 crc = calc_crc(ha->addr, ETH_ALEN);
8438 bit = ~crc & 0x7f;
8439 regidx = (bit & 0x60) >> 5;
8440 bit &= 0x1f;
8441 mc_filter[regidx] |= (1 << bit);
8442 }
8443
8444 tw32(MAC_HASH_REG_0, mc_filter[0]);
8445 tw32(MAC_HASH_REG_1, mc_filter[1]);
8446 tw32(MAC_HASH_REG_2, mc_filter[2]);
8447 tw32(MAC_HASH_REG_3, mc_filter[3]);
8448 }
8449
8450 if (rx_mode != tp->rx_mode) {
8451 tp->rx_mode = rx_mode;
8452 tw32_f(MAC_RX_MODE, rx_mode);
8453 udelay(10);
8454 }
8455}
8456
Matt Carlson90415472011-12-16 13:33:23 +00008457static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp)
8458{
8459 int i;
8460
8461 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
8462 tp->rss_ind_tbl[i] =
8463 ethtool_rxfh_indir_default(i, tp->irq_cnt - 1);
8464}
8465
8466static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008467{
8468 int i;
8469
8470 if (!tg3_flag(tp, SUPPORT_MSIX))
8471 return;
8472
Matt Carlson90415472011-12-16 13:33:23 +00008473 if (tp->irq_cnt <= 2) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008474 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00008475 return;
8476 }
8477
8478 /* Validate table against current IRQ count */
8479 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8480 if (tp->rss_ind_tbl[i] >= tp->irq_cnt - 1)
8481 break;
8482 }
8483
8484 if (i != TG3_RSS_INDIR_TBL_SIZE)
8485 tg3_rss_init_dflt_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008486}
8487
Matt Carlson90415472011-12-16 13:33:23 +00008488static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008489{
8490 int i = 0;
8491 u32 reg = MAC_RSS_INDIR_TBL_0;
8492
8493 while (i < TG3_RSS_INDIR_TBL_SIZE) {
8494 u32 val = tp->rss_ind_tbl[i];
8495 i++;
8496 for (; i % 8; i++) {
8497 val <<= 4;
8498 val |= tp->rss_ind_tbl[i];
8499 }
8500 tw32(reg, val);
8501 reg += 4;
8502 }
8503}
8504
Matt Carlson2d31eca2009-09-01 12:53:31 +00008505/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008506static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008507{
8508 u32 val, rdmac_mode;
8509 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008510 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008511
8512 tg3_disable_ints(tp);
8513
8514 tg3_stop_fw(tp);
8515
8516 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
8517
Joe Perches63c3a662011-04-26 08:12:10 +00008518 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07008519 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008520
Matt Carlson699c0192010-12-06 08:28:51 +00008521 /* Enable MAC control of LPI */
8522 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
8523 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
8524 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
8525 TG3_CPMU_EEE_LNKIDL_UART_IDL);
8526
8527 tw32_f(TG3_CPMU_EEE_CTRL,
8528 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
8529
Matt Carlsona386b902010-12-06 08:28:53 +00008530 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
8531 TG3_CPMU_EEEMD_LPI_IN_TX |
8532 TG3_CPMU_EEEMD_LPI_IN_RX |
8533 TG3_CPMU_EEEMD_EEE_ENABLE;
8534
8535 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8536 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
8537
Joe Perches63c3a662011-04-26 08:12:10 +00008538 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00008539 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
8540
8541 tw32_f(TG3_CPMU_EEE_MODE, val);
8542
8543 tw32_f(TG3_CPMU_EEE_DBTMR1,
8544 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
8545 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
8546
8547 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00008548 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00008549 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00008550 }
8551
Matt Carlson603f1172010-02-12 14:47:10 +00008552 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08008553 tg3_phy_reset(tp);
8554
Linus Torvalds1da177e2005-04-16 15:20:36 -07008555 err = tg3_chip_reset(tp);
8556 if (err)
8557 return err;
8558
8559 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
8560
Matt Carlsonbcb37f62008-11-03 16:52:09 -08008561 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008562 val = tr32(TG3_CPMU_CTRL);
8563 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
8564 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08008565
8566 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8567 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8568 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8569 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
8570
8571 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
8572 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
8573 val |= CPMU_LNK_AWARE_MACCLK_6_25;
8574 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
8575
8576 val = tr32(TG3_CPMU_HST_ACC);
8577 val &= ~CPMU_HST_ACC_MACCLK_MASK;
8578 val |= CPMU_HST_ACC_MACCLK_6_25;
8579 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07008580 }
8581
Matt Carlson33466d92009-04-20 06:57:41 +00008582 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8583 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
8584 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
8585 PCIE_PWR_MGMT_L1_THRESH_4MS;
8586 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00008587
8588 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
8589 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
8590
8591 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00008592
Matt Carlsonf40386c2009-11-02 14:24:02 +00008593 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8594 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00008595 }
8596
Joe Perches63c3a662011-04-26 08:12:10 +00008597 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00008598 u32 grc_mode = tr32(GRC_MODE);
8599
8600 /* Access the lower 1K of PL PCIE block registers. */
8601 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8602 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
8603
8604 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
8605 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
8606 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
8607
8608 tw32(GRC_MODE, grc_mode);
8609 }
8610
Matt Carlson55086ad2011-12-14 11:09:59 +00008611 if (tg3_flag(tp, 57765_CLASS)) {
Matt Carlson5093eed2010-11-24 08:31:45 +00008612 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
8613 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00008614
Matt Carlson5093eed2010-11-24 08:31:45 +00008615 /* Access the lower 1K of PL PCIE block registers. */
8616 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8617 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00008618
Matt Carlson5093eed2010-11-24 08:31:45 +00008619 val = tr32(TG3_PCIE_TLDLPL_PORT +
8620 TG3_PCIE_PL_LO_PHYCTL5);
8621 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
8622 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00008623
Matt Carlson5093eed2010-11-24 08:31:45 +00008624 tw32(GRC_MODE, grc_mode);
8625 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008626
Matt Carlson1ff30a52011-05-19 12:12:46 +00008627 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_57765_AX) {
8628 u32 grc_mode = tr32(GRC_MODE);
8629
8630 /* Access the lower 1K of DL PCIE block registers. */
8631 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8632 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
8633
8634 val = tr32(TG3_PCIE_TLDLPL_PORT +
8635 TG3_PCIE_DL_LO_FTSMAX);
8636 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
8637 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
8638 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
8639
8640 tw32(GRC_MODE, grc_mode);
8641 }
8642
Matt Carlsona977dbe2010-04-12 06:58:26 +00008643 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8644 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8645 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8646 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008647 }
8648
Linus Torvalds1da177e2005-04-16 15:20:36 -07008649 /* This works around an issue with Athlon chipsets on
8650 * B3 tigon3 silicon. This bit has no effect on any
8651 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008652 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653 */
Joe Perches63c3a662011-04-26 08:12:10 +00008654 if (!tg3_flag(tp, CPMU_PRESENT)) {
8655 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008656 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8657 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008659
8660 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008661 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008662 val = tr32(TG3PCI_PCISTATE);
8663 val |= PCISTATE_RETRY_SAME_DMA;
8664 tw32(TG3PCI_PCISTATE, val);
8665 }
8666
Joe Perches63c3a662011-04-26 08:12:10 +00008667 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008668 /* Allow reads and writes to the
8669 * APE register and memory space.
8670 */
8671 val = tr32(TG3PCI_PCISTATE);
8672 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008673 PCISTATE_ALLOW_APE_SHMEM_WR |
8674 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008675 tw32(TG3PCI_PCISTATE, val);
8676 }
8677
Linus Torvalds1da177e2005-04-16 15:20:36 -07008678 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8679 /* Enable some hw fixes. */
8680 val = tr32(TG3PCI_MSI_DATA);
8681 val |= (1 << 26) | (1 << 28) | (1 << 29);
8682 tw32(TG3PCI_MSI_DATA, val);
8683 }
8684
8685 /* Descriptor ring init may make accesses to the
8686 * NIC SRAM area to setup the TX descriptors, so we
8687 * can only do this after the hardware has been
8688 * successfully reset.
8689 */
Michael Chan32d8c572006-07-25 16:38:29 -07008690 err = tg3_init_rings(tp);
8691 if (err)
8692 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008693
Joe Perches63c3a662011-04-26 08:12:10 +00008694 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008695 val = tr32(TG3PCI_DMA_RW_CTRL) &
8696 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008697 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8698 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +00008699 if (!tg3_flag(tp, 57765_CLASS) &&
Matt Carlson0aebff42011-04-25 12:42:45 +00008700 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8701 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008702 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8703 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8704 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008705 /* This value is determined during the probe time DMA
8706 * engine test, tg3_test_dma.
8707 */
8708 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008710
8711 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8712 GRC_MODE_4X_NIC_SEND_RINGS |
8713 GRC_MODE_NO_TX_PHDR_CSUM |
8714 GRC_MODE_NO_RX_PHDR_CSUM);
8715 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008716
8717 /* Pseudo-header checksum is done by hardware logic and not
8718 * the offload processers, so make the chip do the pseudo-
8719 * header checksums on receive. For transmit it is more
8720 * convenient to do the pseudo-header checksum in software
8721 * as Linux does that on transmit for us in all cases.
8722 */
8723 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008724
8725 tw32(GRC_MODE,
8726 tp->grc_mode |
8727 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8728
8729 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8730 val = tr32(GRC_MISC_CFG);
8731 val &= ~0xff;
8732 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8733 tw32(GRC_MISC_CFG, val);
8734
8735 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008736 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008737 /* Do nothing. */
8738 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8739 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8740 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8741 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8742 else
8743 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8744 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8745 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008746 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008747 int fw_len;
8748
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008749 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008750 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8751 tw32(BUFMGR_MB_POOL_ADDR,
8752 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8753 tw32(BUFMGR_MB_POOL_SIZE,
8754 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008756
Michael Chan0f893dc2005-07-25 12:30:38 -07008757 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008758 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8759 tp->bufmgr_config.mbuf_read_dma_low_water);
8760 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8761 tp->bufmgr_config.mbuf_mac_rx_low_water);
8762 tw32(BUFMGR_MB_HIGH_WATER,
8763 tp->bufmgr_config.mbuf_high_water);
8764 } else {
8765 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8766 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8767 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8768 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8769 tw32(BUFMGR_MB_HIGH_WATER,
8770 tp->bufmgr_config.mbuf_high_water_jumbo);
8771 }
8772 tw32(BUFMGR_DMA_LOW_WATER,
8773 tp->bufmgr_config.dma_low_water);
8774 tw32(BUFMGR_DMA_HIGH_WATER,
8775 tp->bufmgr_config.dma_high_water);
8776
Matt Carlsond309a462010-09-30 10:34:31 +00008777 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8778 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8779 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008780 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8781 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8782 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8783 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008784 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008785 for (i = 0; i < 2000; i++) {
8786 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8787 break;
8788 udelay(10);
8789 }
8790 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008791 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008792 return -ENODEV;
8793 }
8794
Matt Carlsoneb07a942011-04-20 07:57:36 +00008795 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8796 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008797
Matt Carlsoneb07a942011-04-20 07:57:36 +00008798 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008799
8800 /* Initialize TG3_BDINFO's at:
8801 * RCVDBDI_STD_BD: standard eth size rx ring
8802 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8803 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8804 *
8805 * like so:
8806 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
8807 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
8808 * ring attribute flags
8809 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
8810 *
8811 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
8812 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
8813 *
8814 * The size of each ring is fixed in the firmware, but the location is
8815 * configurable.
8816 */
8817 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008818 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008819 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008820 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00008821 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00008822 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
8823 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008824
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008825 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00008826 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008827 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
8828 BDINFO_FLAGS_DISABLED);
8829
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008830 /* Program the jumbo buffer descriptor ring control
8831 * blocks on those devices that have them.
8832 */
Matt Carlsona0512942011-07-27 14:20:54 +00008833 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008834 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008835
Joe Perches63c3a662011-04-26 08:12:10 +00008836 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008837 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008838 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008840 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00008841 val = TG3_RX_JMB_RING_SIZE(tp) <<
8842 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008843 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00008844 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00008845 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlson55086ad2011-12-14 11:09:59 +00008846 tg3_flag(tp, 57765_CLASS))
Matt Carlson87668d32009-11-13 13:03:34 +00008847 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
8848 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008849 } else {
8850 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
8851 BDINFO_FLAGS_DISABLED);
8852 }
8853
Joe Perches63c3a662011-04-26 08:12:10 +00008854 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +00008855 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008856 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
8857 val |= (TG3_RX_STD_DMA_SZ << 2);
8858 } else
Matt Carlson04380d42010-04-12 06:58:29 +00008859 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008860 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008861 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008862
8863 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008864
Matt Carlson411da642009-11-13 13:03:46 +00008865 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00008866 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008867
Joe Perches63c3a662011-04-26 08:12:10 +00008868 tpr->rx_jmb_prod_idx =
8869 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00008870 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008871
Matt Carlson2d31eca2009-09-01 12:53:31 +00008872 tg3_rings_reset(tp);
8873
Linus Torvalds1da177e2005-04-16 15:20:36 -07008874 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07008875 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008876
8877 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00008878 tw32(MAC_RX_MTU_SIZE,
8879 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008880
8881 /* The slot time is changed by tg3_setup_phy if we
8882 * run at gigabit with half duplex.
8883 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00008884 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
8885 (6 << TX_LENGTHS_IPG_SHIFT) |
8886 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
8887
8888 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8889 val |= tr32(MAC_TX_LENGTHS) &
8890 (TX_LENGTHS_JMB_FRM_LEN_MSK |
8891 TX_LENGTHS_CNT_DWN_VAL_MSK);
8892
8893 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008894
8895 /* Receive rules. */
8896 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
8897 tw32(RCVLPC_CONFIG, 0x0181);
8898
8899 /* Calculate RDMAC_MODE setting early, we need it to determine
8900 * the RCVLPC_STATE_ENABLE mask.
8901 */
8902 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
8903 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
8904 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
8905 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
8906 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07008907
Matt Carlsondeabaac2010-11-24 08:31:50 +00008908 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00008909 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
8910
Matt Carlson57e69832008-05-25 23:48:31 -07008911 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08008912 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8913 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07008914 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
8915 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
8916 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
8917
Matt Carlsonc5908932011-03-09 16:58:25 +00008918 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8919 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008920 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07008921 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008922 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
8923 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008924 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008925 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8926 }
8927 }
8928
Joe Perches63c3a662011-04-26 08:12:10 +00008929 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07008930 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8931
Joe Perches63c3a662011-04-26 08:12:10 +00008932 if (tg3_flag(tp, HW_TSO_1) ||
8933 tg3_flag(tp, HW_TSO_2) ||
8934 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08008935 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
8936
Matt Carlson108a6c12011-05-19 12:12:47 +00008937 if (tg3_flag(tp, 57765_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00008938 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08008939 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
8940 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008941
Matt Carlsonf2096f92011-04-05 14:22:48 +00008942 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8943 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
8944
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008945 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
8946 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8947 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8948 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008949 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008950 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Matt Carlsond78b59f2011-04-05 14:22:46 +00008951 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8952 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00008953 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
8954 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
8955 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
8956 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
8957 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
8958 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00008959 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008960 tw32(TG3_RDMA_RSRVCTRL_REG,
8961 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
8962 }
8963
Matt Carlsond78b59f2011-04-05 14:22:46 +00008964 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8965 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00008966 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
8967 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
8968 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
8969 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
8970 }
8971
Linus Torvalds1da177e2005-04-16 15:20:36 -07008972 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00008973 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07008974 val = tr32(RCVLPC_STATS_ENABLE);
8975 val &= ~RCVLPC_STATSENAB_DACK_FIX;
8976 tw32(RCVLPC_STATS_ENABLE, val);
8977 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008978 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008979 val = tr32(RCVLPC_STATS_ENABLE);
8980 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
8981 tw32(RCVLPC_STATS_ENABLE, val);
8982 } else {
8983 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
8984 }
8985 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
8986 tw32(SNDDATAI_STATSENAB, 0xffffff);
8987 tw32(SNDDATAI_STATSCTRL,
8988 (SNDDATAI_SCTRL_ENABLE |
8989 SNDDATAI_SCTRL_FASTUPD));
8990
8991 /* Setup host coalescing engine. */
8992 tw32(HOSTCC_MODE, 0);
8993 for (i = 0; i < 2000; i++) {
8994 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
8995 break;
8996 udelay(10);
8997 }
8998
Michael Chand244c892005-07-05 14:42:33 -07008999 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009000
Joe Perches63c3a662011-04-26 08:12:10 +00009001 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009002 /* Status/statistics block address. See tg3_timer,
9003 * the tg3_periodic_fetch_stats call there, and
9004 * tg3_get_stats to see how this works for 5705/5750 chips.
9005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009006 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9007 ((u64) tp->stats_mapping >> 32));
9008 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9009 ((u64) tp->stats_mapping & 0xffffffff));
9010 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009011
Linus Torvalds1da177e2005-04-16 15:20:36 -07009012 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009013
9014 /* Clear statistics and status block memory areas */
9015 for (i = NIC_SRAM_STATS_BLK;
9016 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
9017 i += sizeof(u32)) {
9018 tg3_write_mem(tp, i, 0);
9019 udelay(40);
9020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009021 }
9022
9023 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
9024
9025 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
9026 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009027 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009028 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
9029
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009030 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
9031 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07009032 /* reset to prevent losing 1st rx packet intermittently */
9033 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9034 udelay(10);
9035 }
9036
Matt Carlson3bda1252008-08-15 14:08:22 -07009037 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +00009038 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
9039 MAC_MODE_FHDE_ENABLE;
9040 if (tg3_flag(tp, ENABLE_APE))
9041 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +00009042 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009043 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009044 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
9045 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009046 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
9047 udelay(40);
9048
Michael Chan314fba32005-04-21 17:07:04 -07009049 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00009050 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07009051 * register to preserve the GPIO settings for LOMs. The GPIOs,
9052 * whether used as inputs or outputs, are set by boot code after
9053 * reset.
9054 */
Joe Perches63c3a662011-04-26 08:12:10 +00009055 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07009056 u32 gpio_mask;
9057
Michael Chan9d26e212006-12-07 00:21:14 -08009058 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
9059 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
9060 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07009061
9062 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
9063 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
9064 GRC_LCLCTRL_GPIO_OUTPUT3;
9065
Michael Chanaf36e6b2006-03-23 01:28:06 -08009066 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
9067 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
9068
Gary Zambranoaaf84462007-05-05 11:51:45 -07009069 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07009070 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
9071
9072 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00009073 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08009074 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
9075 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07009076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009077 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9078 udelay(100);
9079
Matt Carlsonc3b50032012-01-17 15:27:23 +00009080 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009081 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +00009082 val |= MSGINT_MODE_ENABLE;
9083 if (tp->irq_cnt > 1)
9084 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +00009085 if (!tg3_flag(tp, 1SHOT_MSI))
9086 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009087 tw32(MSGINT_MODE, val);
9088 }
9089
Joe Perches63c3a662011-04-26 08:12:10 +00009090 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009091 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
9092 udelay(40);
9093 }
9094
9095 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
9096 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
9097 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
9098 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
9099 WDMAC_MODE_LNGREAD_ENAB);
9100
Matt Carlsonc5908932011-03-09 16:58:25 +00009101 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
9102 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009103 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009104 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
9105 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
9106 /* nothing */
9107 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009108 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009109 val |= WDMAC_MODE_RX_ACCEL;
9110 }
9111 }
9112
Michael Chand9ab5ad12006-03-20 22:27:35 -08009113 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00009114 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07009115 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -08009116
Matt Carlson788a0352009-11-02 14:26:03 +00009117 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
9118 val |= WDMAC_MODE_BURST_ALL_DATA;
9119
Linus Torvalds1da177e2005-04-16 15:20:36 -07009120 tw32_f(WDMAC_MODE, val);
9121 udelay(40);
9122
Joe Perches63c3a662011-04-26 08:12:10 +00009123 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07009124 u16 pcix_cmd;
9125
9126 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
9127 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009128 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07009129 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
9130 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009131 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07009132 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
9133 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009134 }
Matt Carlson9974a352007-10-07 23:27:28 -07009135 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
9136 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009137 }
9138
9139 tw32_f(RDMAC_MODE, rdmac_mode);
9140 udelay(40);
9141
9142 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009143 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009144 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07009145
9146 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
9147 tw32(SNDDATAC_MODE,
9148 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
9149 else
9150 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
9151
Linus Torvalds1da177e2005-04-16 15:20:36 -07009152 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
9153 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009154 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00009155 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009156 val |= RCVDBDI_MODE_LRG_RING_SZ;
9157 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009158 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009159 if (tg3_flag(tp, HW_TSO_1) ||
9160 tg3_flag(tp, HW_TSO_2) ||
9161 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009162 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009163 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00009164 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009165 val |= SNDBDI_MODE_MULTI_TXQ_EN;
9166 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009167 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
9168
9169 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9170 err = tg3_load_5701_a0_firmware_fix(tp);
9171 if (err)
9172 return err;
9173 }
9174
Joe Perches63c3a662011-04-26 08:12:10 +00009175 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009176 err = tg3_load_tso_firmware(tp);
9177 if (err)
9178 return err;
9179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009180
9181 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00009182
Joe Perches63c3a662011-04-26 08:12:10 +00009183 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00009184 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
9185 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00009186
9187 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
9188 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
9189 tp->tx_mode &= ~val;
9190 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
9191 }
9192
Linus Torvalds1da177e2005-04-16 15:20:36 -07009193 tw32_f(MAC_TX_MODE, tp->tx_mode);
9194 udelay(100);
9195
Joe Perches63c3a662011-04-26 08:12:10 +00009196 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009197 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009198
9199 /* Setup the "secret" hash key. */
9200 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
9201 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
9202 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
9203 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
9204 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
9205 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
9206 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
9207 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
9208 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
9209 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
9210 }
9211
Linus Torvalds1da177e2005-04-16 15:20:36 -07009212 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00009213 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08009214 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
9215
Joe Perches63c3a662011-04-26 08:12:10 +00009216 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009217 tp->rx_mode |= RX_MODE_RSS_ENABLE |
9218 RX_MODE_RSS_ITBL_HASH_BITS_7 |
9219 RX_MODE_RSS_IPV6_HASH_EN |
9220 RX_MODE_RSS_TCP_IPV6_HASH_EN |
9221 RX_MODE_RSS_IPV4_HASH_EN |
9222 RX_MODE_RSS_TCP_IPV4_HASH_EN;
9223
Linus Torvalds1da177e2005-04-16 15:20:36 -07009224 tw32_f(MAC_RX_MODE, tp->rx_mode);
9225 udelay(10);
9226
Linus Torvalds1da177e2005-04-16 15:20:36 -07009227 tw32(MAC_LED_CTRL, tp->led_ctrl);
9228
9229 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009230 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009231 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9232 udelay(10);
9233 }
9234 tw32_f(MAC_RX_MODE, tp->rx_mode);
9235 udelay(10);
9236
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009237 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009238 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009239 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009240 /* Set drive transmission level to 1.2V */
9241 /* only if the signal pre-emphasis bit is not set */
9242 val = tr32(MAC_SERDES_CFG);
9243 val &= 0xfffff000;
9244 val |= 0x880;
9245 tw32(MAC_SERDES_CFG, val);
9246 }
9247 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
9248 tw32(MAC_SERDES_CFG, 0x616000);
9249 }
9250
9251 /* Prevent chip from dropping frames when flow control
9252 * is enabled.
9253 */
Matt Carlson55086ad2011-12-14 11:09:59 +00009254 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +00009255 val = 1;
9256 else
9257 val = 2;
9258 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009259
9260 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009261 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009262 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00009263 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009264 }
9265
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009266 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +00009267 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08009268 u32 tmp;
9269
9270 tmp = tr32(SERDES_RX_CTRL);
9271 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
9272 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
9273 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
9274 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9275 }
9276
Joe Perches63c3a662011-04-26 08:12:10 +00009277 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonc6700ce2012-02-13 15:20:15 +00009278 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Matt Carlson80096062010-08-02 11:26:06 +00009279 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009280
Matt Carlsondd477002008-05-25 23:45:58 -07009281 err = tg3_setup_phy(tp, 0);
9282 if (err)
9283 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009284
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009285 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
9286 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07009287 u32 tmp;
9288
9289 /* Clear CRC stats. */
9290 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
9291 tg3_writephy(tp, MII_TG3_TEST1,
9292 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009293 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07009294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009295 }
9296 }
9297
9298 __tg3_set_rx_mode(tp->dev);
9299
9300 /* Initialize receive rules. */
9301 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
9302 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
9303 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
9304 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
9305
Joe Perches63c3a662011-04-26 08:12:10 +00009306 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009307 limit = 8;
9308 else
9309 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00009310 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009311 limit -= 4;
9312 switch (limit) {
9313 case 16:
9314 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
9315 case 15:
9316 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
9317 case 14:
9318 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
9319 case 13:
9320 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
9321 case 12:
9322 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
9323 case 11:
9324 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
9325 case 10:
9326 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
9327 case 9:
9328 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
9329 case 8:
9330 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
9331 case 7:
9332 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
9333 case 6:
9334 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
9335 case 5:
9336 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
9337 case 4:
9338 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
9339 case 3:
9340 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
9341 case 2:
9342 case 1:
9343
9344 default:
9345 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07009346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009347
Joe Perches63c3a662011-04-26 08:12:10 +00009348 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07009349 /* Write our heartbeat update interval to APE. */
9350 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
9351 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07009352
Linus Torvalds1da177e2005-04-16 15:20:36 -07009353 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
9354
Linus Torvalds1da177e2005-04-16 15:20:36 -07009355 return 0;
9356}
9357
9358/* Called at device open time to get the chip ready for
9359 * packet processing. Invoked with tp->lock held.
9360 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009361static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009362{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009363 tg3_switch_clocks(tp);
9364
9365 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
9366
Matt Carlson2f751b62008-08-04 23:17:34 -07009367 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009368}
9369
9370#define TG3_STAT_ADD32(PSTAT, REG) \
9371do { u32 __val = tr32(REG); \
9372 (PSTAT)->low += __val; \
9373 if ((PSTAT)->low < __val) \
9374 (PSTAT)->high += 1; \
9375} while (0)
9376
9377static void tg3_periodic_fetch_stats(struct tg3 *tp)
9378{
9379 struct tg3_hw_stats *sp = tp->hw_stats;
9380
9381 if (!netif_carrier_ok(tp->dev))
9382 return;
9383
9384 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
9385 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
9386 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
9387 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
9388 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
9389 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
9390 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
9391 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
9392 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
9393 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
9394 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
9395 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
9396 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
9397
9398 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
9399 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
9400 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
9401 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
9402 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
9403 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
9404 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
9405 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
9406 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
9407 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
9408 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
9409 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
9410 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
9411 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07009412
9413 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson310050f2011-05-19 12:12:55 +00009414 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9415 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0 &&
9416 tp->pci_chip_rev_id != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +00009417 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
9418 } else {
9419 u32 val = tr32(HOSTCC_FLOW_ATTN);
9420 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
9421 if (val) {
9422 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
9423 sp->rx_discards.low += val;
9424 if (sp->rx_discards.low < val)
9425 sp->rx_discards.high += 1;
9426 }
9427 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
9428 }
Michael Chan463d3052006-05-22 16:36:27 -07009429 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009430}
9431
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009432static void tg3_chk_missed_msi(struct tg3 *tp)
9433{
9434 u32 i;
9435
9436 for (i = 0; i < tp->irq_cnt; i++) {
9437 struct tg3_napi *tnapi = &tp->napi[i];
9438
9439 if (tg3_has_work(tnapi)) {
9440 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
9441 tnapi->last_tx_cons == tnapi->tx_cons) {
9442 if (tnapi->chk_msi_cnt < 1) {
9443 tnapi->chk_msi_cnt++;
9444 return;
9445 }
Matt Carlson7f230732011-08-31 11:44:48 +00009446 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009447 }
9448 }
9449 tnapi->chk_msi_cnt = 0;
9450 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
9451 tnapi->last_tx_cons = tnapi->tx_cons;
9452 }
9453}
9454
Linus Torvalds1da177e2005-04-16 15:20:36 -07009455static void tg3_timer(unsigned long __opaque)
9456{
9457 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009458
Matt Carlson5b190622011-11-04 09:15:04 +00009459 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -08009460 goto restart_timer;
9461
David S. Millerf47c11e2005-06-24 20:18:35 -07009462 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009463
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009464 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00009465 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009466 tg3_chk_missed_msi(tp);
9467
Joe Perches63c3a662011-04-26 08:12:10 +00009468 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07009469 /* All of this garbage is because when using non-tagged
9470 * IRQ status the mailbox/status_block protocol the chip
9471 * uses with the cpu is race prone.
9472 */
Matt Carlson898a56f2009-08-28 14:02:40 +00009473 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07009474 tw32(GRC_LOCAL_CTRL,
9475 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
9476 } else {
9477 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009478 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07009479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009480
David S. Millerfac9b832005-05-18 22:46:34 -07009481 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009482 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +00009483 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +00009484 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -07009485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009486 }
9487
Linus Torvalds1da177e2005-04-16 15:20:36 -07009488 /* This part only runs once per second. */
9489 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009490 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009491 tg3_periodic_fetch_stats(tp);
9492
Matt Carlsonb0c59432011-05-19 12:12:48 +00009493 if (tp->setlpicnt && !--tp->setlpicnt)
9494 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00009495
Joe Perches63c3a662011-04-26 08:12:10 +00009496 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009497 u32 mac_stat;
9498 int phy_event;
9499
9500 mac_stat = tr32(MAC_STATUS);
9501
9502 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009503 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009504 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
9505 phy_event = 1;
9506 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
9507 phy_event = 1;
9508
9509 if (phy_event)
9510 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00009511 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009512 u32 mac_stat = tr32(MAC_STATUS);
9513 int need_setup = 0;
9514
9515 if (netif_carrier_ok(tp->dev) &&
9516 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
9517 need_setup = 1;
9518 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00009519 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009520 (mac_stat & (MAC_STATUS_PCS_SYNCED |
9521 MAC_STATUS_SIGNAL_DET))) {
9522 need_setup = 1;
9523 }
9524 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07009525 if (!tp->serdes_counter) {
9526 tw32_f(MAC_MODE,
9527 (tp->mac_mode &
9528 ~MAC_MODE_PORT_MODE_MASK));
9529 udelay(40);
9530 tw32_f(MAC_MODE, tp->mac_mode);
9531 udelay(40);
9532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009533 tg3_setup_phy(tp, 0);
9534 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009535 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009536 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07009537 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00009538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009539
9540 tp->timer_counter = tp->timer_multiplier;
9541 }
9542
Michael Chan130b8e42006-09-27 16:00:40 -07009543 /* Heartbeat is only sent once every 2 seconds.
9544 *
9545 * The heartbeat is to tell the ASF firmware that the host
9546 * driver is still alive. In the event that the OS crashes,
9547 * ASF needs to reset the hardware to free up the FIFO space
9548 * that may be filled with rx packets destined for the host.
9549 * If the FIFO is full, ASF will no longer function properly.
9550 *
9551 * Unintended resets have been reported on real time kernels
9552 * where the timer doesn't run on time. Netpoll will also have
9553 * same problem.
9554 *
9555 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
9556 * to check the ring condition when the heartbeat is expiring
9557 * before doing the reset. This will prevent most unintended
9558 * resets.
9559 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009560 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009561 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07009562 tg3_wait_for_event_ack(tp);
9563
Michael Chanbbadf502006-04-06 21:46:34 -07009564 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07009565 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07009566 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009567 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
9568 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009569
9570 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009571 }
9572 tp->asf_counter = tp->asf_multiplier;
9573 }
9574
David S. Millerf47c11e2005-06-24 20:18:35 -07009575 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009576
Michael Chanf475f162006-03-27 23:20:14 -08009577restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07009578 tp->timer.expires = jiffies + tp->timer_offset;
9579 add_timer(&tp->timer);
9580}
9581
Matt Carlson21f76382012-02-22 12:35:21 +00009582static void __devinit tg3_timer_init(struct tg3 *tp)
9583{
9584 if (tg3_flag(tp, TAGGED_STATUS) &&
9585 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9586 !tg3_flag(tp, 57765_CLASS))
9587 tp->timer_offset = HZ;
9588 else
9589 tp->timer_offset = HZ / 10;
9590
9591 BUG_ON(tp->timer_offset > HZ);
9592
9593 tp->timer_multiplier = (HZ / tp->timer_offset);
9594 tp->asf_multiplier = (HZ / tp->timer_offset) *
9595 TG3_FW_UPDATE_FREQ_SEC;
9596
9597 init_timer(&tp->timer);
9598 tp->timer.data = (unsigned long) tp;
9599 tp->timer.function = tg3_timer;
9600}
9601
9602static void tg3_timer_start(struct tg3 *tp)
9603{
9604 tp->asf_counter = tp->asf_multiplier;
9605 tp->timer_counter = tp->timer_multiplier;
9606
9607 tp->timer.expires = jiffies + tp->timer_offset;
9608 add_timer(&tp->timer);
9609}
9610
9611static void tg3_timer_stop(struct tg3 *tp)
9612{
9613 del_timer_sync(&tp->timer);
9614}
9615
9616/* Restart hardware after configuration changes, self-test, etc.
9617 * Invoked with tp->lock held.
9618 */
9619static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
9620 __releases(tp->lock)
9621 __acquires(tp->lock)
9622{
9623 int err;
9624
9625 err = tg3_init_hw(tp, reset_phy);
9626 if (err) {
9627 netdev_err(tp->dev,
9628 "Failed to re-initialize device, aborting\n");
9629 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
9630 tg3_full_unlock(tp);
9631 tg3_timer_stop(tp);
9632 tp->irq_sync = 0;
9633 tg3_napi_enable(tp);
9634 dev_close(tp->dev);
9635 tg3_full_lock(tp, 0);
9636 }
9637 return err;
9638}
9639
9640static void tg3_reset_task(struct work_struct *work)
9641{
9642 struct tg3 *tp = container_of(work, struct tg3, reset_task);
9643 int err;
9644
9645 tg3_full_lock(tp, 0);
9646
9647 if (!netif_running(tp->dev)) {
9648 tg3_flag_clear(tp, RESET_TASK_PENDING);
9649 tg3_full_unlock(tp);
9650 return;
9651 }
9652
9653 tg3_full_unlock(tp);
9654
9655 tg3_phy_stop(tp);
9656
9657 tg3_netif_stop(tp);
9658
9659 tg3_full_lock(tp, 1);
9660
9661 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
9662 tp->write32_tx_mbox = tg3_write32_tx_mbox;
9663 tp->write32_rx_mbox = tg3_write_flush_reg32;
9664 tg3_flag_set(tp, MBOX_WRITE_REORDER);
9665 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
9666 }
9667
9668 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
9669 err = tg3_init_hw(tp, 1);
9670 if (err)
9671 goto out;
9672
9673 tg3_netif_start(tp);
9674
9675out:
9676 tg3_full_unlock(tp);
9677
9678 if (!err)
9679 tg3_phy_start(tp);
9680
9681 tg3_flag_clear(tp, RESET_TASK_PENDING);
9682}
9683
Matt Carlson4f125f42009-09-01 12:55:02 +00009684static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08009685{
David Howells7d12e782006-10-05 14:55:46 +01009686 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009687 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00009688 char *name;
9689 struct tg3_napi *tnapi = &tp->napi[irq_num];
9690
9691 if (tp->irq_cnt == 1)
9692 name = tp->dev->name;
9693 else {
9694 name = &tnapi->irq_lbl[0];
9695 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
9696 name[IFNAMSIZ-1] = 0;
9697 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009698
Joe Perches63c3a662011-04-26 08:12:10 +00009699 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08009700 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +00009701 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009702 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009703 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009704 } else {
9705 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +00009706 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009707 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009708 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009709 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009710
9711 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009712}
9713
Michael Chan79381092005-04-21 17:13:59 -07009714static int tg3_test_interrupt(struct tg3 *tp)
9715{
Matt Carlson09943a12009-08-28 14:01:57 +00009716 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07009717 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07009718 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009719 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07009720
Michael Chand4bc3922005-05-29 14:59:20 -07009721 if (!netif_running(dev))
9722 return -ENODEV;
9723
Michael Chan79381092005-04-21 17:13:59 -07009724 tg3_disable_ints(tp);
9725
Matt Carlson4f125f42009-09-01 12:55:02 +00009726 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009727
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009728 /*
9729 * Turn off MSI one shot mode. Otherwise this test has no
9730 * observable way to know whether the interrupt was delivered.
9731 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009732 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009733 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
9734 tw32(MSGINT_MODE, val);
9735 }
9736
Matt Carlson4f125f42009-09-01 12:55:02 +00009737 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Davidlohr Buesof274fd92012-02-22 03:06:54 +00009738 IRQF_SHARED, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009739 if (err)
9740 return err;
9741
Matt Carlson898a56f2009-08-28 14:02:40 +00009742 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07009743 tg3_enable_ints(tp);
9744
9745 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009746 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07009747
9748 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07009749 u32 int_mbox, misc_host_ctrl;
9750
Matt Carlson898a56f2009-08-28 14:02:40 +00009751 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07009752 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
9753
9754 if ((int_mbox != 0) ||
9755 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
9756 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07009757 break;
Michael Chanb16250e2006-09-27 16:10:14 -07009758 }
9759
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009760 if (tg3_flag(tp, 57765_PLUS) &&
9761 tnapi->hw_status->status_tag != tnapi->last_tag)
9762 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
9763
Michael Chan79381092005-04-21 17:13:59 -07009764 msleep(10);
9765 }
9766
9767 tg3_disable_ints(tp);
9768
Matt Carlson4f125f42009-09-01 12:55:02 +00009769 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009770
Matt Carlson4f125f42009-09-01 12:55:02 +00009771 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009772
9773 if (err)
9774 return err;
9775
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009776 if (intr_ok) {
9777 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +00009778 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009779 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
9780 tw32(MSGINT_MODE, val);
9781 }
Michael Chan79381092005-04-21 17:13:59 -07009782 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009783 }
Michael Chan79381092005-04-21 17:13:59 -07009784
9785 return -EIO;
9786}
9787
9788/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
9789 * successfully restored
9790 */
9791static int tg3_test_msi(struct tg3 *tp)
9792{
Michael Chan79381092005-04-21 17:13:59 -07009793 int err;
9794 u16 pci_cmd;
9795
Joe Perches63c3a662011-04-26 08:12:10 +00009796 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -07009797 return 0;
9798
9799 /* Turn off SERR reporting in case MSI terminates with Master
9800 * Abort.
9801 */
9802 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9803 pci_write_config_word(tp->pdev, PCI_COMMAND,
9804 pci_cmd & ~PCI_COMMAND_SERR);
9805
9806 err = tg3_test_interrupt(tp);
9807
9808 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9809
9810 if (!err)
9811 return 0;
9812
9813 /* other failures */
9814 if (err != -EIO)
9815 return err;
9816
9817 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009818 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
9819 "to INTx mode. Please report this failure to the PCI "
9820 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07009821
Matt Carlson4f125f42009-09-01 12:55:02 +00009822 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00009823
Michael Chan79381092005-04-21 17:13:59 -07009824 pci_disable_msi(tp->pdev);
9825
Joe Perches63c3a662011-04-26 08:12:10 +00009826 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +00009827 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -07009828
Matt Carlson4f125f42009-09-01 12:55:02 +00009829 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009830 if (err)
9831 return err;
9832
9833 /* Need to reset the chip because the MSI cycle may have terminated
9834 * with Master Abort.
9835 */
David S. Millerf47c11e2005-06-24 20:18:35 -07009836 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009837
Michael Chan944d9802005-05-29 14:57:48 -07009838 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009839 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009840
David S. Millerf47c11e2005-06-24 20:18:35 -07009841 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009842
9843 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00009844 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07009845
9846 return err;
9847}
9848
Matt Carlson9e9fd122009-01-19 16:57:45 -08009849static int tg3_request_firmware(struct tg3 *tp)
9850{
9851 const __be32 *fw_data;
9852
9853 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009854 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
9855 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009856 return -ENOENT;
9857 }
9858
9859 fw_data = (void *)tp->fw->data;
9860
9861 /* Firmware blob starts with version numbers, followed by
9862 * start address and _full_ length including BSS sections
9863 * (which must be longer than the actual data, of course
9864 */
9865
9866 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
9867 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009868 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
9869 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009870 release_firmware(tp->fw);
9871 tp->fw = NULL;
9872 return -EINVAL;
9873 }
9874
9875 /* We no longer need firmware; we have it. */
9876 tp->fw_needed = NULL;
9877 return 0;
9878}
9879
Matt Carlson679563f2009-09-01 12:55:46 +00009880static bool tg3_enable_msix(struct tg3 *tp)
9881{
Matt Carlsonc3b50032012-01-17 15:27:23 +00009882 int i, rc;
Matt Carlson679563f2009-09-01 12:55:46 +00009883 struct msix_entry msix_ent[tp->irq_max];
9884
Matt Carlsonc3b50032012-01-17 15:27:23 +00009885 tp->irq_cnt = num_online_cpus();
9886 if (tp->irq_cnt > 1) {
9887 /* We want as many rx rings enabled as there are cpus.
9888 * In multiqueue MSI-X mode, the first MSI-X vector
9889 * only deals with link interrupts, etc, so we add
9890 * one to the number of vectors we are requesting.
9891 */
9892 tp->irq_cnt = min_t(unsigned, tp->irq_cnt + 1, tp->irq_max);
9893 }
Matt Carlson679563f2009-09-01 12:55:46 +00009894
9895 for (i = 0; i < tp->irq_max; i++) {
9896 msix_ent[i].entry = i;
9897 msix_ent[i].vector = 0;
9898 }
9899
9900 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +00009901 if (rc < 0) {
9902 return false;
9903 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +00009904 if (pci_enable_msix(tp->pdev, msix_ent, rc))
9905 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00009906 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
9907 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00009908 tp->irq_cnt = rc;
9909 }
9910
9911 for (i = 0; i < tp->irq_max; i++)
9912 tp->napi[i].irq_vec = msix_ent[i].vector;
9913
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009914 netif_set_real_num_tx_queues(tp->dev, 1);
9915 rc = tp->irq_cnt > 1 ? tp->irq_cnt - 1 : 1;
9916 if (netif_set_real_num_rx_queues(tp->dev, rc)) {
9917 pci_disable_msix(tp->pdev);
9918 return false;
9919 }
Matt Carlsonb92b9042010-11-24 08:31:51 +00009920
9921 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +00009922 tg3_flag_set(tp, ENABLE_RSS);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009923
9924 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9925 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Joe Perches63c3a662011-04-26 08:12:10 +00009926 tg3_flag_set(tp, ENABLE_TSS);
Matt Carlsonb92b9042010-11-24 08:31:51 +00009927 netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1);
9928 }
9929 }
Matt Carlson2430b032010-06-05 17:24:34 +00009930
Matt Carlson679563f2009-09-01 12:55:46 +00009931 return true;
9932}
9933
Matt Carlson07b01732009-08-28 14:01:15 +00009934static void tg3_ints_init(struct tg3 *tp)
9935{
Joe Perches63c3a662011-04-26 08:12:10 +00009936 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
9937 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00009938 /* All MSI supporting chips should support tagged
9939 * status. Assert that this is the case.
9940 */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009941 netdev_warn(tp->dev,
9942 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00009943 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00009944 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009945
Joe Perches63c3a662011-04-26 08:12:10 +00009946 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
9947 tg3_flag_set(tp, USING_MSIX);
9948 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
9949 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +00009950
Joe Perches63c3a662011-04-26 08:12:10 +00009951 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009952 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +00009953 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009954 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +00009955 if (!tg3_flag(tp, 1SHOT_MSI))
9956 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +00009957 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
9958 }
9959defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +00009960 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009961 tp->irq_cnt = 1;
9962 tp->napi[0].irq_vec = tp->pdev->irq;
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009963 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -07009964 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +00009965 }
Matt Carlson07b01732009-08-28 14:01:15 +00009966}
9967
9968static void tg3_ints_fini(struct tg3 *tp)
9969{
Joe Perches63c3a662011-04-26 08:12:10 +00009970 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +00009971 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009972 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +00009973 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009974 tg3_flag_clear(tp, USING_MSI);
9975 tg3_flag_clear(tp, USING_MSIX);
9976 tg3_flag_clear(tp, ENABLE_RSS);
9977 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +00009978}
9979
Linus Torvalds1da177e2005-04-16 15:20:36 -07009980static int tg3_open(struct net_device *dev)
9981{
9982 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00009983 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009984
Matt Carlson9e9fd122009-01-19 16:57:45 -08009985 if (tp->fw_needed) {
9986 err = tg3_request_firmware(tp);
9987 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9988 if (err)
9989 return err;
9990 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00009991 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009992 tg3_flag_clear(tp, TSO_CAPABLE);
9993 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009994 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009995 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009996 }
9997 }
9998
Michael Chanc49a1562006-12-17 17:07:29 -08009999 netif_carrier_off(tp->dev);
10000
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000010001 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -070010002 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -080010003 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -070010004
10005 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -080010006
Linus Torvalds1da177e2005-04-16 15:20:36 -070010007 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010008 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010009
David S. Millerf47c11e2005-06-24 20:18:35 -070010010 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010011
Matt Carlson679563f2009-09-01 12:55:46 +000010012 /*
10013 * Setup interrupts first so we know how
10014 * many NAPI resources to allocate
10015 */
10016 tg3_ints_init(tp);
10017
Matt Carlson90415472011-12-16 13:33:23 +000010018 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +000010019
Linus Torvalds1da177e2005-04-16 15:20:36 -070010020 /* The placement of this call is tied
10021 * to the setup and use of Host TX descriptors.
10022 */
10023 err = tg3_alloc_consistent(tp);
10024 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000010025 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010026
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010027 tg3_napi_init(tp);
10028
Matt Carlsonfed97812009-09-01 13:10:19 +000010029 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -070010030
Matt Carlson4f125f42009-09-01 12:55:02 +000010031 for (i = 0; i < tp->irq_cnt; i++) {
10032 struct tg3_napi *tnapi = &tp->napi[i];
10033 err = tg3_request_irq(tp, i);
10034 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +000010035 for (i--; i >= 0; i--) {
10036 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +000010037 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +000010038 }
10039 goto err_out2;
Matt Carlson4f125f42009-09-01 12:55:02 +000010040 }
10041 }
Matt Carlson07b01732009-08-28 14:01:15 +000010042
David S. Millerf47c11e2005-06-24 20:18:35 -070010043 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010044
Gary Zambrano8e7a22e2006-04-29 18:59:13 -070010045 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010046 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -070010047 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010048 tg3_free_rings(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010049 }
10050
David S. Millerf47c11e2005-06-24 20:18:35 -070010051 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010052
Matt Carlson07b01732009-08-28 14:01:15 +000010053 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000010054 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010055
Joe Perches63c3a662011-04-26 08:12:10 +000010056 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -070010057 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -070010058
Michael Chan79381092005-04-21 17:13:59 -070010059 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010060 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070010061 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -070010062 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070010063 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010064
Matt Carlson679563f2009-09-01 12:55:46 +000010065 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -070010066 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010067
Joe Perches63c3a662011-04-26 08:12:10 +000010068 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010069 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010070
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010071 tw32(PCIE_TRANSACTION_CFG,
10072 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010073 }
Michael Chan79381092005-04-21 17:13:59 -070010074 }
10075
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010076 tg3_phy_start(tp);
10077
David S. Millerf47c11e2005-06-24 20:18:35 -070010078 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010079
Matt Carlson21f76382012-02-22 12:35:21 +000010080 tg3_timer_start(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010081 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010082 tg3_enable_ints(tp);
10083
David S. Millerf47c11e2005-06-24 20:18:35 -070010084 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010085
Matt Carlsonfe5f5782009-09-01 13:09:39 +000010086 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010087
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000010088 /*
10089 * Reset loopback feature if it was turned on while the device was down
10090 * make sure that it's installed properly now.
10091 */
10092 if (dev->features & NETIF_F_LOOPBACK)
10093 tg3_set_loopback(dev, dev->features);
10094
Linus Torvalds1da177e2005-04-16 15:20:36 -070010095 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +000010096
Matt Carlson679563f2009-09-01 12:55:46 +000010097err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +000010098 for (i = tp->irq_cnt - 1; i >= 0; i--) {
10099 struct tg3_napi *tnapi = &tp->napi[i];
10100 free_irq(tnapi->irq_vec, tnapi);
10101 }
Matt Carlson07b01732009-08-28 14:01:15 +000010102
Matt Carlson679563f2009-09-01 12:55:46 +000010103err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +000010104 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010105 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +000010106 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +000010107
10108err_out1:
10109 tg3_ints_fini(tp);
Matt Carlsoncd0d7222011-07-13 09:27:33 +000010110 tg3_frob_aux_power(tp, false);
10111 pci_set_power_state(tp->pdev, PCI_D3hot);
Matt Carlson07b01732009-08-28 14:01:15 +000010112 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010113}
10114
Linus Torvalds1da177e2005-04-16 15:20:36 -070010115static int tg3_close(struct net_device *dev)
10116{
Matt Carlson4f125f42009-09-01 12:55:02 +000010117 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010118 struct tg3 *tp = netdev_priv(dev);
10119
Matt Carlsonfed97812009-09-01 13:10:19 +000010120 tg3_napi_disable(tp);
Matt Carlsondb219972011-11-04 09:15:03 +000010121 tg3_reset_task_cancel(tp);
Michael Chan7faa0062006-02-02 17:29:28 -080010122
Matt Carlsonfe5f5782009-09-01 13:09:39 +000010123 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010124
Matt Carlson21f76382012-02-22 12:35:21 +000010125 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010126
Matt Carlson24bb4fb2009-10-05 17:55:29 +000010127 tg3_phy_stop(tp);
10128
David S. Millerf47c11e2005-06-24 20:18:35 -070010129 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010130
10131 tg3_disable_ints(tp);
10132
Michael Chan944d9802005-05-29 14:57:48 -070010133 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010134 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010135 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010136
David S. Millerf47c11e2005-06-24 20:18:35 -070010137 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010138
Matt Carlson4f125f42009-09-01 12:55:02 +000010139 for (i = tp->irq_cnt - 1; i >= 0; i--) {
10140 struct tg3_napi *tnapi = &tp->napi[i];
10141 free_irq(tnapi->irq_vec, tnapi);
10142 }
Matt Carlson07b01732009-08-28 14:01:15 +000010143
10144 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010145
Matt Carlson92feeab2011-12-08 14:40:14 +000010146 /* Clear stats across close / open calls */
10147 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
10148 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010149
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010150 tg3_napi_fini(tp);
10151
Linus Torvalds1da177e2005-04-16 15:20:36 -070010152 tg3_free_consistent(tp);
10153
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000010154 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080010155
10156 netif_carrier_off(tp->dev);
10157
Linus Torvalds1da177e2005-04-16 15:20:36 -070010158 return 0;
10159}
10160
Eric Dumazet511d2222010-07-07 20:44:24 +000010161static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -070010162{
10163 return ((u64)val->high << 32) | ((u64)val->low);
10164}
10165
Matt Carlson65ec6982012-02-28 23:33:37 +000010166static u64 tg3_calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010167{
10168 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10169
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010170 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010171 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
10172 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010173 u32 val;
10174
Michael Chan569a5df2007-02-13 12:18:15 -080010175 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
10176 tg3_writephy(tp, MII_TG3_TEST1,
10177 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +000010178 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010179 } else
10180 val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010181
10182 tp->phy_crc_errors += val;
10183
10184 return tp->phy_crc_errors;
10185 }
10186
10187 return get_stat64(&hw_stats->rx_fcs_errors);
10188}
10189
10190#define ESTAT_ADD(member) \
10191 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +000010192 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010193
Matt Carlson65ec6982012-02-28 23:33:37 +000010194static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010195{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010196 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
10197 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10198
Linus Torvalds1da177e2005-04-16 15:20:36 -070010199 ESTAT_ADD(rx_octets);
10200 ESTAT_ADD(rx_fragments);
10201 ESTAT_ADD(rx_ucast_packets);
10202 ESTAT_ADD(rx_mcast_packets);
10203 ESTAT_ADD(rx_bcast_packets);
10204 ESTAT_ADD(rx_fcs_errors);
10205 ESTAT_ADD(rx_align_errors);
10206 ESTAT_ADD(rx_xon_pause_rcvd);
10207 ESTAT_ADD(rx_xoff_pause_rcvd);
10208 ESTAT_ADD(rx_mac_ctrl_rcvd);
10209 ESTAT_ADD(rx_xoff_entered);
10210 ESTAT_ADD(rx_frame_too_long_errors);
10211 ESTAT_ADD(rx_jabbers);
10212 ESTAT_ADD(rx_undersize_packets);
10213 ESTAT_ADD(rx_in_length_errors);
10214 ESTAT_ADD(rx_out_length_errors);
10215 ESTAT_ADD(rx_64_or_less_octet_packets);
10216 ESTAT_ADD(rx_65_to_127_octet_packets);
10217 ESTAT_ADD(rx_128_to_255_octet_packets);
10218 ESTAT_ADD(rx_256_to_511_octet_packets);
10219 ESTAT_ADD(rx_512_to_1023_octet_packets);
10220 ESTAT_ADD(rx_1024_to_1522_octet_packets);
10221 ESTAT_ADD(rx_1523_to_2047_octet_packets);
10222 ESTAT_ADD(rx_2048_to_4095_octet_packets);
10223 ESTAT_ADD(rx_4096_to_8191_octet_packets);
10224 ESTAT_ADD(rx_8192_to_9022_octet_packets);
10225
10226 ESTAT_ADD(tx_octets);
10227 ESTAT_ADD(tx_collisions);
10228 ESTAT_ADD(tx_xon_sent);
10229 ESTAT_ADD(tx_xoff_sent);
10230 ESTAT_ADD(tx_flow_control);
10231 ESTAT_ADD(tx_mac_errors);
10232 ESTAT_ADD(tx_single_collisions);
10233 ESTAT_ADD(tx_mult_collisions);
10234 ESTAT_ADD(tx_deferred);
10235 ESTAT_ADD(tx_excessive_collisions);
10236 ESTAT_ADD(tx_late_collisions);
10237 ESTAT_ADD(tx_collide_2times);
10238 ESTAT_ADD(tx_collide_3times);
10239 ESTAT_ADD(tx_collide_4times);
10240 ESTAT_ADD(tx_collide_5times);
10241 ESTAT_ADD(tx_collide_6times);
10242 ESTAT_ADD(tx_collide_7times);
10243 ESTAT_ADD(tx_collide_8times);
10244 ESTAT_ADD(tx_collide_9times);
10245 ESTAT_ADD(tx_collide_10times);
10246 ESTAT_ADD(tx_collide_11times);
10247 ESTAT_ADD(tx_collide_12times);
10248 ESTAT_ADD(tx_collide_13times);
10249 ESTAT_ADD(tx_collide_14times);
10250 ESTAT_ADD(tx_collide_15times);
10251 ESTAT_ADD(tx_ucast_packets);
10252 ESTAT_ADD(tx_mcast_packets);
10253 ESTAT_ADD(tx_bcast_packets);
10254 ESTAT_ADD(tx_carrier_sense_errors);
10255 ESTAT_ADD(tx_discards);
10256 ESTAT_ADD(tx_errors);
10257
10258 ESTAT_ADD(dma_writeq_full);
10259 ESTAT_ADD(dma_write_prioq_full);
10260 ESTAT_ADD(rxbds_empty);
10261 ESTAT_ADD(rx_discards);
10262 ESTAT_ADD(rx_errors);
10263 ESTAT_ADD(rx_threshold_hit);
10264
10265 ESTAT_ADD(dma_readq_full);
10266 ESTAT_ADD(dma_read_prioq_full);
10267 ESTAT_ADD(tx_comp_queue_full);
10268
10269 ESTAT_ADD(ring_set_send_prod_index);
10270 ESTAT_ADD(ring_status_update);
10271 ESTAT_ADD(nic_irqs);
10272 ESTAT_ADD(nic_avoided_irqs);
10273 ESTAT_ADD(nic_tx_threshold_hit);
10274
Matt Carlson4452d092011-05-19 12:12:51 +000010275 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010276}
10277
Matt Carlson65ec6982012-02-28 23:33:37 +000010278static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010279{
Eric Dumazet511d2222010-07-07 20:44:24 +000010280 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010281 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10282
Linus Torvalds1da177e2005-04-16 15:20:36 -070010283 stats->rx_packets = old_stats->rx_packets +
10284 get_stat64(&hw_stats->rx_ucast_packets) +
10285 get_stat64(&hw_stats->rx_mcast_packets) +
10286 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010287
Linus Torvalds1da177e2005-04-16 15:20:36 -070010288 stats->tx_packets = old_stats->tx_packets +
10289 get_stat64(&hw_stats->tx_ucast_packets) +
10290 get_stat64(&hw_stats->tx_mcast_packets) +
10291 get_stat64(&hw_stats->tx_bcast_packets);
10292
10293 stats->rx_bytes = old_stats->rx_bytes +
10294 get_stat64(&hw_stats->rx_octets);
10295 stats->tx_bytes = old_stats->tx_bytes +
10296 get_stat64(&hw_stats->tx_octets);
10297
10298 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -070010299 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010300 stats->tx_errors = old_stats->tx_errors +
10301 get_stat64(&hw_stats->tx_errors) +
10302 get_stat64(&hw_stats->tx_mac_errors) +
10303 get_stat64(&hw_stats->tx_carrier_sense_errors) +
10304 get_stat64(&hw_stats->tx_discards);
10305
10306 stats->multicast = old_stats->multicast +
10307 get_stat64(&hw_stats->rx_mcast_packets);
10308 stats->collisions = old_stats->collisions +
10309 get_stat64(&hw_stats->tx_collisions);
10310
10311 stats->rx_length_errors = old_stats->rx_length_errors +
10312 get_stat64(&hw_stats->rx_frame_too_long_errors) +
10313 get_stat64(&hw_stats->rx_undersize_packets);
10314
10315 stats->rx_over_errors = old_stats->rx_over_errors +
10316 get_stat64(&hw_stats->rxbds_empty);
10317 stats->rx_frame_errors = old_stats->rx_frame_errors +
10318 get_stat64(&hw_stats->rx_align_errors);
10319 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
10320 get_stat64(&hw_stats->tx_discards);
10321 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
10322 get_stat64(&hw_stats->tx_carrier_sense_errors);
10323
10324 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000010325 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010326
John W. Linville4f63b872005-09-12 14:43:18 -070010327 stats->rx_missed_errors = old_stats->rx_missed_errors +
10328 get_stat64(&hw_stats->rx_discards);
10329
Eric Dumazetb0057c52010-10-10 19:55:52 +000010330 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000010331 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010332}
10333
Linus Torvalds1da177e2005-04-16 15:20:36 -070010334static int tg3_get_regs_len(struct net_device *dev)
10335{
Matt Carlson97bd8e42011-04-13 11:05:04 +000010336 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010337}
10338
10339static void tg3_get_regs(struct net_device *dev,
10340 struct ethtool_regs *regs, void *_p)
10341{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010342 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010343
10344 regs->version = 0;
10345
Matt Carlson97bd8e42011-04-13 11:05:04 +000010346 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010347
Matt Carlson80096062010-08-02 11:26:06 +000010348 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010349 return;
10350
David S. Millerf47c11e2005-06-24 20:18:35 -070010351 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010352
Matt Carlson97bd8e42011-04-13 11:05:04 +000010353 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010354
David S. Millerf47c11e2005-06-24 20:18:35 -070010355 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010356}
10357
10358static int tg3_get_eeprom_len(struct net_device *dev)
10359{
10360 struct tg3 *tp = netdev_priv(dev);
10361
10362 return tp->nvram_size;
10363}
10364
Linus Torvalds1da177e2005-04-16 15:20:36 -070010365static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10366{
10367 struct tg3 *tp = netdev_priv(dev);
10368 int ret;
10369 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080010370 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010371 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010372
Joe Perches63c3a662011-04-26 08:12:10 +000010373 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010374 return -EINVAL;
10375
Matt Carlson80096062010-08-02 11:26:06 +000010376 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010377 return -EAGAIN;
10378
Linus Torvalds1da177e2005-04-16 15:20:36 -070010379 offset = eeprom->offset;
10380 len = eeprom->len;
10381 eeprom->len = 0;
10382
10383 eeprom->magic = TG3_EEPROM_MAGIC;
10384
10385 if (offset & 3) {
10386 /* adjustments to start on required 4 byte boundary */
10387 b_offset = offset & 3;
10388 b_count = 4 - b_offset;
10389 if (b_count > len) {
10390 /* i.e. offset=1 len=2 */
10391 b_count = len;
10392 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000010393 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010394 if (ret)
10395 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000010396 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010397 len -= b_count;
10398 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010399 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010400 }
10401
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010402 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010403 pd = &data[eeprom->len];
10404 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010405 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010406 if (ret) {
10407 eeprom->len += i;
10408 return ret;
10409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010410 memcpy(pd + i, &val, 4);
10411 }
10412 eeprom->len += i;
10413
10414 if (len & 3) {
10415 /* read last bytes not ending on 4 byte boundary */
10416 pd = &data[eeprom->len];
10417 b_count = len & 3;
10418 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010419 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010420 if (ret)
10421 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010422 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010423 eeprom->len += b_count;
10424 }
10425 return 0;
10426}
10427
Linus Torvalds1da177e2005-04-16 15:20:36 -070010428static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10429{
10430 struct tg3 *tp = netdev_priv(dev);
10431 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010432 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010433 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010434 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010435
Matt Carlson80096062010-08-02 11:26:06 +000010436 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010437 return -EAGAIN;
10438
Joe Perches63c3a662011-04-26 08:12:10 +000010439 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000010440 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010441 return -EINVAL;
10442
10443 offset = eeprom->offset;
10444 len = eeprom->len;
10445
10446 if ((b_offset = (offset & 3))) {
10447 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010448 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010449 if (ret)
10450 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010451 len += b_offset;
10452 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -070010453 if (len < 4)
10454 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010455 }
10456
10457 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -070010458 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010459 /* adjustments to end on required 4 byte boundary */
10460 odd_len = 1;
10461 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010462 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010463 if (ret)
10464 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010465 }
10466
10467 buf = data;
10468 if (b_offset || odd_len) {
10469 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010470 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010471 return -ENOMEM;
10472 if (b_offset)
10473 memcpy(buf, &start, 4);
10474 if (odd_len)
10475 memcpy(buf+len-4, &end, 4);
10476 memcpy(buf + b_offset, data, eeprom->len);
10477 }
10478
10479 ret = tg3_nvram_write_block(tp, offset, len, buf);
10480
10481 if (buf != data)
10482 kfree(buf);
10483
10484 return ret;
10485}
10486
10487static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10488{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010489 struct tg3 *tp = netdev_priv(dev);
10490
Joe Perches63c3a662011-04-26 08:12:10 +000010491 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010492 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010493 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010494 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010495 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10496 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010497 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010498
Linus Torvalds1da177e2005-04-16 15:20:36 -070010499 cmd->supported = (SUPPORTED_Autoneg);
10500
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010501 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010502 cmd->supported |= (SUPPORTED_1000baseT_Half |
10503 SUPPORTED_1000baseT_Full);
10504
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010505 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010506 cmd->supported |= (SUPPORTED_100baseT_Half |
10507 SUPPORTED_100baseT_Full |
10508 SUPPORTED_10baseT_Half |
10509 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080010510 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070010511 cmd->port = PORT_TP;
10512 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010513 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070010514 cmd->port = PORT_FIBRE;
10515 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010516
Linus Torvalds1da177e2005-04-16 15:20:36 -070010517 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000010518 if (tg3_flag(tp, PAUSE_AUTONEG)) {
10519 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
10520 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10521 cmd->advertising |= ADVERTISED_Pause;
10522 } else {
10523 cmd->advertising |= ADVERTISED_Pause |
10524 ADVERTISED_Asym_Pause;
10525 }
10526 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10527 cmd->advertising |= ADVERTISED_Asym_Pause;
10528 }
10529 }
Matt Carlson859edb22011-12-08 14:40:16 +000010530 if (netif_running(dev) && netif_carrier_ok(dev)) {
David Decotigny70739492011-04-27 18:32:40 +000010531 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010532 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000010533 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000010534 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
10535 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
10536 cmd->eth_tp_mdix = ETH_TP_MDI_X;
10537 else
10538 cmd->eth_tp_mdix = ETH_TP_MDI;
10539 }
Matt Carlson64c22182010-10-14 10:37:44 +000010540 } else {
Matt Carlsone7405222012-02-13 15:20:16 +000010541 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
10542 cmd->duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +000010543 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010544 }
Matt Carlson882e9792009-09-01 13:21:36 +000010545 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010546 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010547 cmd->autoneg = tp->link_config.autoneg;
10548 cmd->maxtxpkt = 0;
10549 cmd->maxrxpkt = 0;
10550 return 0;
10551}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010552
Linus Torvalds1da177e2005-04-16 15:20:36 -070010553static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10554{
10555 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000010556 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010557
Joe Perches63c3a662011-04-26 08:12:10 +000010558 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010559 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010560 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010561 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010562 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10563 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010564 }
10565
Matt Carlson7e5856b2009-02-25 14:23:01 +000010566 if (cmd->autoneg != AUTONEG_ENABLE &&
10567 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070010568 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010569
10570 if (cmd->autoneg == AUTONEG_DISABLE &&
10571 cmd->duplex != DUPLEX_FULL &&
10572 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070010573 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010574
Matt Carlson7e5856b2009-02-25 14:23:01 +000010575 if (cmd->autoneg == AUTONEG_ENABLE) {
10576 u32 mask = ADVERTISED_Autoneg |
10577 ADVERTISED_Pause |
10578 ADVERTISED_Asym_Pause;
10579
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010580 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010581 mask |= ADVERTISED_1000baseT_Half |
10582 ADVERTISED_1000baseT_Full;
10583
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010584 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010585 mask |= ADVERTISED_100baseT_Half |
10586 ADVERTISED_100baseT_Full |
10587 ADVERTISED_10baseT_Half |
10588 ADVERTISED_10baseT_Full |
10589 ADVERTISED_TP;
10590 else
10591 mask |= ADVERTISED_FIBRE;
10592
10593 if (cmd->advertising & ~mask)
10594 return -EINVAL;
10595
10596 mask &= (ADVERTISED_1000baseT_Half |
10597 ADVERTISED_1000baseT_Full |
10598 ADVERTISED_100baseT_Half |
10599 ADVERTISED_100baseT_Full |
10600 ADVERTISED_10baseT_Half |
10601 ADVERTISED_10baseT_Full);
10602
10603 cmd->advertising &= mask;
10604 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010605 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000010606 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010607 return -EINVAL;
10608
10609 if (cmd->duplex != DUPLEX_FULL)
10610 return -EINVAL;
10611 } else {
David Decotigny25db0332011-04-27 18:32:39 +000010612 if (speed != SPEED_100 &&
10613 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010614 return -EINVAL;
10615 }
10616 }
10617
David S. Millerf47c11e2005-06-24 20:18:35 -070010618 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010619
10620 tp->link_config.autoneg = cmd->autoneg;
10621 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070010622 tp->link_config.advertising = (cmd->advertising |
10623 ADVERTISED_Autoneg);
Matt Carlsone7405222012-02-13 15:20:16 +000010624 tp->link_config.speed = SPEED_UNKNOWN;
10625 tp->link_config.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010626 } else {
10627 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000010628 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010629 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010630 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010631
Linus Torvalds1da177e2005-04-16 15:20:36 -070010632 if (netif_running(dev))
10633 tg3_setup_phy(tp, 1);
10634
David S. Millerf47c11e2005-06-24 20:18:35 -070010635 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010636
Linus Torvalds1da177e2005-04-16 15:20:36 -070010637 return 0;
10638}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010639
Linus Torvalds1da177e2005-04-16 15:20:36 -070010640static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
10641{
10642 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010643
Rick Jones68aad782011-11-07 13:29:27 +000010644 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
10645 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
10646 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
10647 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010648}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010649
Linus Torvalds1da177e2005-04-16 15:20:36 -070010650static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10651{
10652 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010653
Joe Perches63c3a662011-04-26 08:12:10 +000010654 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070010655 wol->supported = WAKE_MAGIC;
10656 else
10657 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010658 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010659 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010660 wol->wolopts = WAKE_MAGIC;
10661 memset(&wol->sopass, 0, sizeof(wol->sopass));
10662}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010663
Linus Torvalds1da177e2005-04-16 15:20:36 -070010664static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10665{
10666 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070010667 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010668
Linus Torvalds1da177e2005-04-16 15:20:36 -070010669 if (wol->wolopts & ~WAKE_MAGIC)
10670 return -EINVAL;
10671 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010672 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010673 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010674
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010675 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
10676
David S. Millerf47c11e2005-06-24 20:18:35 -070010677 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010678 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000010679 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010680 else
Joe Perches63c3a662011-04-26 08:12:10 +000010681 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070010682 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010683
Linus Torvalds1da177e2005-04-16 15:20:36 -070010684 return 0;
10685}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010686
Linus Torvalds1da177e2005-04-16 15:20:36 -070010687static u32 tg3_get_msglevel(struct net_device *dev)
10688{
10689 struct tg3 *tp = netdev_priv(dev);
10690 return tp->msg_enable;
10691}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010692
Linus Torvalds1da177e2005-04-16 15:20:36 -070010693static void tg3_set_msglevel(struct net_device *dev, u32 value)
10694{
10695 struct tg3 *tp = netdev_priv(dev);
10696 tp->msg_enable = value;
10697}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010698
Linus Torvalds1da177e2005-04-16 15:20:36 -070010699static int tg3_nway_reset(struct net_device *dev)
10700{
10701 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010702 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010703
Linus Torvalds1da177e2005-04-16 15:20:36 -070010704 if (!netif_running(dev))
10705 return -EAGAIN;
10706
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010707 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070010708 return -EINVAL;
10709
Joe Perches63c3a662011-04-26 08:12:10 +000010710 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010711 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010712 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010713 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010714 } else {
10715 u32 bmcr;
10716
10717 spin_lock_bh(&tp->lock);
10718 r = -EINVAL;
10719 tg3_readphy(tp, MII_BMCR, &bmcr);
10720 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
10721 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010722 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010723 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
10724 BMCR_ANENABLE);
10725 r = 0;
10726 }
10727 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010728 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010729
Linus Torvalds1da177e2005-04-16 15:20:36 -070010730 return r;
10731}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010732
Linus Torvalds1da177e2005-04-16 15:20:36 -070010733static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10734{
10735 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010736
Matt Carlson2c49a442010-09-30 10:34:35 +000010737 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000010738 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000010739 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080010740 else
10741 ering->rx_jumbo_max_pending = 0;
10742
10743 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010744
10745 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000010746 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080010747 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10748 else
10749 ering->rx_jumbo_pending = 0;
10750
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010751 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010752}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010753
Linus Torvalds1da177e2005-04-16 15:20:36 -070010754static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10755{
10756 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010757 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010758
Matt Carlson2c49a442010-09-30 10:34:35 +000010759 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
10760 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010761 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10762 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000010763 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010764 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010765 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010766
Michael Chanbbe832c2005-06-24 20:20:04 -070010767 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010768 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010769 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010770 irq_sync = 1;
10771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010772
Michael Chanbbe832c2005-06-24 20:20:04 -070010773 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010774
Linus Torvalds1da177e2005-04-16 15:20:36 -070010775 tp->rx_pending = ering->rx_pending;
10776
Joe Perches63c3a662011-04-26 08:12:10 +000010777 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010778 tp->rx_pending > 63)
10779 tp->rx_pending = 63;
10780 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010781
Matt Carlson6fd45cb2010-09-15 08:59:57 +000010782 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000010783 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010784
10785 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010786 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010787 err = tg3_restart_hw(tp, 1);
10788 if (!err)
10789 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010790 }
10791
David S. Millerf47c11e2005-06-24 20:18:35 -070010792 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010793
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010794 if (irq_sync && !err)
10795 tg3_phy_start(tp);
10796
Michael Chanb9ec6c12006-07-25 16:37:27 -070010797 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010798}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010799
Linus Torvalds1da177e2005-04-16 15:20:36 -070010800static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10801{
10802 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010803
Joe Perches63c3a662011-04-26 08:12:10 +000010804 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080010805
Matt Carlson4a2db502011-12-08 14:40:17 +000010806 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010807 epause->rx_pause = 1;
10808 else
10809 epause->rx_pause = 0;
10810
Matt Carlson4a2db502011-12-08 14:40:17 +000010811 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010812 epause->tx_pause = 1;
10813 else
10814 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010815}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010816
Linus Torvalds1da177e2005-04-16 15:20:36 -070010817static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10818{
10819 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010820 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010821
Joe Perches63c3a662011-04-26 08:12:10 +000010822 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000010823 u32 newadv;
10824 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010825
Matt Carlson27121682010-02-17 15:16:57 +000010826 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010827
Matt Carlson27121682010-02-17 15:16:57 +000010828 if (!(phydev->supported & SUPPORTED_Pause) ||
10829 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000010830 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000010831 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010832
Matt Carlson27121682010-02-17 15:16:57 +000010833 tp->link_config.flowctrl = 0;
10834 if (epause->rx_pause) {
10835 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010836
Matt Carlson27121682010-02-17 15:16:57 +000010837 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010838 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010839 newadv = ADVERTISED_Pause;
10840 } else
10841 newadv = ADVERTISED_Pause |
10842 ADVERTISED_Asym_Pause;
10843 } else if (epause->tx_pause) {
10844 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10845 newadv = ADVERTISED_Asym_Pause;
10846 } else
10847 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010848
Matt Carlson27121682010-02-17 15:16:57 +000010849 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010850 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010851 else
Joe Perches63c3a662011-04-26 08:12:10 +000010852 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010853
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010854 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000010855 u32 oldadv = phydev->advertising &
10856 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10857 if (oldadv != newadv) {
10858 phydev->advertising &=
10859 ~(ADVERTISED_Pause |
10860 ADVERTISED_Asym_Pause);
10861 phydev->advertising |= newadv;
10862 if (phydev->autoneg) {
10863 /*
10864 * Always renegotiate the link to
10865 * inform our link partner of our
10866 * flow control settings, even if the
10867 * flow control is forced. Let
10868 * tg3_adjust_link() do the final
10869 * flow control setup.
10870 */
10871 return phy_start_aneg(phydev);
10872 }
10873 }
10874
10875 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010876 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010877 } else {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000010878 tp->link_config.advertising &=
Matt Carlson27121682010-02-17 15:16:57 +000010879 ~(ADVERTISED_Pause |
10880 ADVERTISED_Asym_Pause);
Matt Carlsonc6700ce2012-02-13 15:20:15 +000010881 tp->link_config.advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010882 }
10883 } else {
10884 int irq_sync = 0;
10885
10886 if (netif_running(dev)) {
10887 tg3_netif_stop(tp);
10888 irq_sync = 1;
10889 }
10890
10891 tg3_full_lock(tp, irq_sync);
10892
10893 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010894 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010895 else
Joe Perches63c3a662011-04-26 08:12:10 +000010896 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010897 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010898 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010899 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010900 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010901 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010902 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010903 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010904 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010905
10906 if (netif_running(dev)) {
10907 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10908 err = tg3_restart_hw(tp, 1);
10909 if (!err)
10910 tg3_netif_start(tp);
10911 }
10912
10913 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010915
Michael Chanb9ec6c12006-07-25 16:37:27 -070010916 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010917}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010918
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010919static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010920{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010921 switch (sset) {
10922 case ETH_SS_TEST:
10923 return TG3_NUM_TEST;
10924 case ETH_SS_STATS:
10925 return TG3_NUM_STATS;
10926 default:
10927 return -EOPNOTSUPP;
10928 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010929}
10930
Matt Carlson90415472011-12-16 13:33:23 +000010931static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
10932 u32 *rules __always_unused)
10933{
10934 struct tg3 *tp = netdev_priv(dev);
10935
10936 if (!tg3_flag(tp, SUPPORT_MSIX))
10937 return -EOPNOTSUPP;
10938
10939 switch (info->cmd) {
10940 case ETHTOOL_GRXRINGS:
10941 if (netif_running(tp->dev))
10942 info->data = tp->irq_cnt;
10943 else {
10944 info->data = num_online_cpus();
10945 if (info->data > TG3_IRQ_MAX_VECS_RSS)
10946 info->data = TG3_IRQ_MAX_VECS_RSS;
10947 }
10948
10949 /* The first interrupt vector only
10950 * handles link interrupts.
10951 */
10952 info->data -= 1;
10953 return 0;
10954
10955 default:
10956 return -EOPNOTSUPP;
10957 }
10958}
10959
10960static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
10961{
10962 u32 size = 0;
10963 struct tg3 *tp = netdev_priv(dev);
10964
10965 if (tg3_flag(tp, SUPPORT_MSIX))
10966 size = TG3_RSS_INDIR_TBL_SIZE;
10967
10968 return size;
10969}
10970
10971static int tg3_get_rxfh_indir(struct net_device *dev, u32 *indir)
10972{
10973 struct tg3 *tp = netdev_priv(dev);
10974 int i;
10975
10976 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
10977 indir[i] = tp->rss_ind_tbl[i];
10978
10979 return 0;
10980}
10981
10982static int tg3_set_rxfh_indir(struct net_device *dev, const u32 *indir)
10983{
10984 struct tg3 *tp = netdev_priv(dev);
10985 size_t i;
10986
10987 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
10988 tp->rss_ind_tbl[i] = indir[i];
10989
10990 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
10991 return 0;
10992
10993 /* It is legal to write the indirection
10994 * table while the device is running.
10995 */
10996 tg3_full_lock(tp, 0);
10997 tg3_rss_write_indir_tbl(tp);
10998 tg3_full_unlock(tp);
10999
11000 return 0;
11001}
11002
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011003static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011004{
11005 switch (stringset) {
11006 case ETH_SS_STATS:
11007 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
11008 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070011009 case ETH_SS_TEST:
11010 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
11011 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011012 default:
11013 WARN_ON(1); /* we need a WARN() */
11014 break;
11015 }
11016}
11017
stephen hemminger81b87092011-04-04 08:43:50 +000011018static int tg3_set_phys_id(struct net_device *dev,
11019 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070011020{
11021 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070011022
11023 if (!netif_running(tp->dev))
11024 return -EAGAIN;
11025
stephen hemminger81b87092011-04-04 08:43:50 +000011026 switch (state) {
11027 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000011028 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070011029
stephen hemminger81b87092011-04-04 08:43:50 +000011030 case ETHTOOL_ID_ON:
11031 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
11032 LED_CTRL_1000MBPS_ON |
11033 LED_CTRL_100MBPS_ON |
11034 LED_CTRL_10MBPS_ON |
11035 LED_CTRL_TRAFFIC_OVERRIDE |
11036 LED_CTRL_TRAFFIC_BLINK |
11037 LED_CTRL_TRAFFIC_LED);
11038 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011039
stephen hemminger81b87092011-04-04 08:43:50 +000011040 case ETHTOOL_ID_OFF:
11041 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
11042 LED_CTRL_TRAFFIC_OVERRIDE);
11043 break;
Michael Chan4009a932005-09-05 17:52:54 -070011044
stephen hemminger81b87092011-04-04 08:43:50 +000011045 case ETHTOOL_ID_INACTIVE:
11046 tw32(MAC_LED_CTRL, tp->led_ctrl);
11047 break;
Michael Chan4009a932005-09-05 17:52:54 -070011048 }
stephen hemminger81b87092011-04-04 08:43:50 +000011049
Michael Chan4009a932005-09-05 17:52:54 -070011050 return 0;
11051}
11052
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011053static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011054 struct ethtool_stats *estats, u64 *tmp_stats)
11055{
11056 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000011057
Matt Carlsonb546e462012-02-13 15:20:09 +000011058 if (tp->hw_stats)
11059 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
11060 else
11061 memset(tmp_stats, 0, sizeof(struct tg3_ethtool_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011062}
11063
Matt Carlson535a4902011-07-20 10:20:56 +000011064static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000011065{
11066 int i;
11067 __be32 *buf;
11068 u32 offset = 0, len = 0;
11069 u32 magic, val;
11070
Joe Perches63c3a662011-04-26 08:12:10 +000011071 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000011072 return NULL;
11073
11074 if (magic == TG3_EEPROM_MAGIC) {
11075 for (offset = TG3_NVM_DIR_START;
11076 offset < TG3_NVM_DIR_END;
11077 offset += TG3_NVM_DIRENT_SIZE) {
11078 if (tg3_nvram_read(tp, offset, &val))
11079 return NULL;
11080
11081 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
11082 TG3_NVM_DIRTYPE_EXTVPD)
11083 break;
11084 }
11085
11086 if (offset != TG3_NVM_DIR_END) {
11087 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
11088 if (tg3_nvram_read(tp, offset + 4, &offset))
11089 return NULL;
11090
11091 offset = tg3_nvram_logical_addr(tp, offset);
11092 }
11093 }
11094
11095 if (!offset || !len) {
11096 offset = TG3_NVM_VPD_OFF;
11097 len = TG3_NVM_VPD_LEN;
11098 }
11099
11100 buf = kmalloc(len, GFP_KERNEL);
11101 if (buf == NULL)
11102 return NULL;
11103
11104 if (magic == TG3_EEPROM_MAGIC) {
11105 for (i = 0; i < len; i += 4) {
11106 /* The data is in little-endian format in NVRAM.
11107 * Use the big-endian read routines to preserve
11108 * the byte order as it exists in NVRAM.
11109 */
11110 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
11111 goto error;
11112 }
11113 } else {
11114 u8 *ptr;
11115 ssize_t cnt;
11116 unsigned int pos = 0;
11117
11118 ptr = (u8 *)&buf[0];
11119 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
11120 cnt = pci_read_vpd(tp->pdev, pos,
11121 len - pos, ptr);
11122 if (cnt == -ETIMEDOUT || cnt == -EINTR)
11123 cnt = 0;
11124 else if (cnt < 0)
11125 goto error;
11126 }
11127 if (pos != len)
11128 goto error;
11129 }
11130
Matt Carlson535a4902011-07-20 10:20:56 +000011131 *vpdlen = len;
11132
Matt Carlsonc3e94502011-04-13 11:05:08 +000011133 return buf;
11134
11135error:
11136 kfree(buf);
11137 return NULL;
11138}
11139
Michael Chan566f86a2005-05-29 14:56:58 -070011140#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080011141#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
11142#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
11143#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000011144#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
11145#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000011146#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070011147#define NVRAM_SELFBOOT_HW_SIZE 0x20
11148#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070011149
11150static int tg3_test_nvram(struct tg3 *tp)
11151{
Matt Carlson535a4902011-07-20 10:20:56 +000011152 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011153 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010011154 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070011155
Joe Perches63c3a662011-04-26 08:12:10 +000011156 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000011157 return 0;
11158
Matt Carlsone4f34112009-02-25 14:25:00 +000011159 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011160 return -EIO;
11161
Michael Chan1b277772006-03-20 22:27:48 -080011162 if (magic == TG3_EEPROM_MAGIC)
11163 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070011164 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080011165 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
11166 TG3_EEPROM_SB_FORMAT_1) {
11167 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
11168 case TG3_EEPROM_SB_REVISION_0:
11169 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
11170 break;
11171 case TG3_EEPROM_SB_REVISION_2:
11172 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
11173 break;
11174 case TG3_EEPROM_SB_REVISION_3:
11175 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
11176 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000011177 case TG3_EEPROM_SB_REVISION_4:
11178 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
11179 break;
11180 case TG3_EEPROM_SB_REVISION_5:
11181 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
11182 break;
11183 case TG3_EEPROM_SB_REVISION_6:
11184 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
11185 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080011186 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000011187 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080011188 }
11189 } else
Michael Chan1b277772006-03-20 22:27:48 -080011190 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070011191 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
11192 size = NVRAM_SELFBOOT_HW_SIZE;
11193 else
Michael Chan1b277772006-03-20 22:27:48 -080011194 return -EIO;
11195
11196 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070011197 if (buf == NULL)
11198 return -ENOMEM;
11199
Michael Chan1b277772006-03-20 22:27:48 -080011200 err = -EIO;
11201 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011202 err = tg3_nvram_read_be32(tp, i, &buf[j]);
11203 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070011204 break;
Michael Chan566f86a2005-05-29 14:56:58 -070011205 }
Michael Chan1b277772006-03-20 22:27:48 -080011206 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070011207 goto out;
11208
Michael Chan1b277772006-03-20 22:27:48 -080011209 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000011210 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080011211 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070011212 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080011213 u8 *buf8 = (u8 *) buf, csum8 = 0;
11214
Al Virob9fc7dc2007-12-17 22:59:57 -080011215 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080011216 TG3_EEPROM_SB_REVISION_2) {
11217 /* For rev 2, the csum doesn't include the MBA. */
11218 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
11219 csum8 += buf8[i];
11220 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
11221 csum8 += buf8[i];
11222 } else {
11223 for (i = 0; i < size; i++)
11224 csum8 += buf8[i];
11225 }
Michael Chan1b277772006-03-20 22:27:48 -080011226
Adrian Bunkad96b482006-04-05 22:21:04 -070011227 if (csum8 == 0) {
11228 err = 0;
11229 goto out;
11230 }
11231
11232 err = -EIO;
11233 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080011234 }
Michael Chan566f86a2005-05-29 14:56:58 -070011235
Al Virob9fc7dc2007-12-17 22:59:57 -080011236 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070011237 TG3_EEPROM_MAGIC_HW) {
11238 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000011239 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070011240 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070011241
11242 /* Separate the parity bits and the data bytes. */
11243 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
11244 if ((i == 0) || (i == 8)) {
11245 int l;
11246 u8 msk;
11247
11248 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
11249 parity[k++] = buf8[i] & msk;
11250 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000011251 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070011252 int l;
11253 u8 msk;
11254
11255 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
11256 parity[k++] = buf8[i] & msk;
11257 i++;
11258
11259 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
11260 parity[k++] = buf8[i] & msk;
11261 i++;
11262 }
11263 data[j++] = buf8[i];
11264 }
11265
11266 err = -EIO;
11267 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
11268 u8 hw8 = hweight8(data[i]);
11269
11270 if ((hw8 & 0x1) && parity[i])
11271 goto out;
11272 else if (!(hw8 & 0x1) && !parity[i])
11273 goto out;
11274 }
11275 err = 0;
11276 goto out;
11277 }
11278
Matt Carlson01c3a392011-03-09 16:58:20 +000011279 err = -EIO;
11280
Michael Chan566f86a2005-05-29 14:56:58 -070011281 /* Bootstrap checksum at offset 0x10 */
11282 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000011283 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070011284 goto out;
11285
11286 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
11287 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000011288 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000011289 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070011290
Matt Carlsonc3e94502011-04-13 11:05:08 +000011291 kfree(buf);
11292
Matt Carlson535a4902011-07-20 10:20:56 +000011293 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000011294 if (!buf)
11295 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000011296
Matt Carlson535a4902011-07-20 10:20:56 +000011297 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000011298 if (i > 0) {
11299 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
11300 if (j < 0)
11301 goto out;
11302
Matt Carlson535a4902011-07-20 10:20:56 +000011303 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000011304 goto out;
11305
11306 i += PCI_VPD_LRDT_TAG_SIZE;
11307 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
11308 PCI_VPD_RO_KEYWORD_CHKSUM);
11309 if (j > 0) {
11310 u8 csum8 = 0;
11311
11312 j += PCI_VPD_INFO_FLD_HDR_SIZE;
11313
11314 for (i = 0; i <= j; i++)
11315 csum8 += ((u8 *)buf)[i];
11316
11317 if (csum8)
11318 goto out;
11319 }
11320 }
11321
Michael Chan566f86a2005-05-29 14:56:58 -070011322 err = 0;
11323
11324out:
11325 kfree(buf);
11326 return err;
11327}
11328
Michael Chanca430072005-05-29 14:57:23 -070011329#define TG3_SERDES_TIMEOUT_SEC 2
11330#define TG3_COPPER_TIMEOUT_SEC 6
11331
11332static int tg3_test_link(struct tg3 *tp)
11333{
11334 int i, max;
11335
11336 if (!netif_running(tp->dev))
11337 return -ENODEV;
11338
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011339 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070011340 max = TG3_SERDES_TIMEOUT_SEC;
11341 else
11342 max = TG3_COPPER_TIMEOUT_SEC;
11343
11344 for (i = 0; i < max; i++) {
11345 if (netif_carrier_ok(tp->dev))
11346 return 0;
11347
11348 if (msleep_interruptible(1000))
11349 break;
11350 }
11351
11352 return -EIO;
11353}
11354
Michael Chana71116d2005-05-29 14:58:11 -070011355/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080011356static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070011357{
Michael Chanb16250e2006-09-27 16:10:14 -070011358 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070011359 u32 offset, read_mask, write_mask, val, save_val, read_val;
11360 static struct {
11361 u16 offset;
11362 u16 flags;
11363#define TG3_FL_5705 0x1
11364#define TG3_FL_NOT_5705 0x2
11365#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070011366#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070011367 u32 read_mask;
11368 u32 write_mask;
11369 } reg_tbl[] = {
11370 /* MAC Control Registers */
11371 { MAC_MODE, TG3_FL_NOT_5705,
11372 0x00000000, 0x00ef6f8c },
11373 { MAC_MODE, TG3_FL_5705,
11374 0x00000000, 0x01ef6b8c },
11375 { MAC_STATUS, TG3_FL_NOT_5705,
11376 0x03800107, 0x00000000 },
11377 { MAC_STATUS, TG3_FL_5705,
11378 0x03800100, 0x00000000 },
11379 { MAC_ADDR_0_HIGH, 0x0000,
11380 0x00000000, 0x0000ffff },
11381 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011382 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070011383 { MAC_RX_MTU_SIZE, 0x0000,
11384 0x00000000, 0x0000ffff },
11385 { MAC_TX_MODE, 0x0000,
11386 0x00000000, 0x00000070 },
11387 { MAC_TX_LENGTHS, 0x0000,
11388 0x00000000, 0x00003fff },
11389 { MAC_RX_MODE, TG3_FL_NOT_5705,
11390 0x00000000, 0x000007fc },
11391 { MAC_RX_MODE, TG3_FL_5705,
11392 0x00000000, 0x000007dc },
11393 { MAC_HASH_REG_0, 0x0000,
11394 0x00000000, 0xffffffff },
11395 { MAC_HASH_REG_1, 0x0000,
11396 0x00000000, 0xffffffff },
11397 { MAC_HASH_REG_2, 0x0000,
11398 0x00000000, 0xffffffff },
11399 { MAC_HASH_REG_3, 0x0000,
11400 0x00000000, 0xffffffff },
11401
11402 /* Receive Data and Receive BD Initiator Control Registers. */
11403 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
11404 0x00000000, 0xffffffff },
11405 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
11406 0x00000000, 0xffffffff },
11407 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
11408 0x00000000, 0x00000003 },
11409 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
11410 0x00000000, 0xffffffff },
11411 { RCVDBDI_STD_BD+0, 0x0000,
11412 0x00000000, 0xffffffff },
11413 { RCVDBDI_STD_BD+4, 0x0000,
11414 0x00000000, 0xffffffff },
11415 { RCVDBDI_STD_BD+8, 0x0000,
11416 0x00000000, 0xffff0002 },
11417 { RCVDBDI_STD_BD+0xc, 0x0000,
11418 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011419
Michael Chana71116d2005-05-29 14:58:11 -070011420 /* Receive BD Initiator Control Registers. */
11421 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
11422 0x00000000, 0xffffffff },
11423 { RCVBDI_STD_THRESH, TG3_FL_5705,
11424 0x00000000, 0x000003ff },
11425 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
11426 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011427
Michael Chana71116d2005-05-29 14:58:11 -070011428 /* Host Coalescing Control Registers. */
11429 { HOSTCC_MODE, TG3_FL_NOT_5705,
11430 0x00000000, 0x00000004 },
11431 { HOSTCC_MODE, TG3_FL_5705,
11432 0x00000000, 0x000000f6 },
11433 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
11434 0x00000000, 0xffffffff },
11435 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
11436 0x00000000, 0x000003ff },
11437 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
11438 0x00000000, 0xffffffff },
11439 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
11440 0x00000000, 0x000003ff },
11441 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
11442 0x00000000, 0xffffffff },
11443 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11444 0x00000000, 0x000000ff },
11445 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
11446 0x00000000, 0xffffffff },
11447 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11448 0x00000000, 0x000000ff },
11449 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
11450 0x00000000, 0xffffffff },
11451 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
11452 0x00000000, 0xffffffff },
11453 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11454 0x00000000, 0xffffffff },
11455 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11456 0x00000000, 0x000000ff },
11457 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11458 0x00000000, 0xffffffff },
11459 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11460 0x00000000, 0x000000ff },
11461 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
11462 0x00000000, 0xffffffff },
11463 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
11464 0x00000000, 0xffffffff },
11465 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
11466 0x00000000, 0xffffffff },
11467 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
11468 0x00000000, 0xffffffff },
11469 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
11470 0x00000000, 0xffffffff },
11471 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
11472 0xffffffff, 0x00000000 },
11473 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
11474 0xffffffff, 0x00000000 },
11475
11476 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070011477 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011478 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070011479 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011480 0x00000000, 0x007fffff },
11481 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
11482 0x00000000, 0x0000003f },
11483 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
11484 0x00000000, 0x000001ff },
11485 { BUFMGR_MB_HIGH_WATER, 0x0000,
11486 0x00000000, 0x000001ff },
11487 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
11488 0xffffffff, 0x00000000 },
11489 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
11490 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011491
Michael Chana71116d2005-05-29 14:58:11 -070011492 /* Mailbox Registers */
11493 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
11494 0x00000000, 0x000001ff },
11495 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
11496 0x00000000, 0x000001ff },
11497 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
11498 0x00000000, 0x000007ff },
11499 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
11500 0x00000000, 0x000001ff },
11501
11502 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
11503 };
11504
Michael Chanb16250e2006-09-27 16:10:14 -070011505 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011506 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070011507 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000011508 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070011509 is_5750 = 1;
11510 }
Michael Chana71116d2005-05-29 14:58:11 -070011511
11512 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
11513 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
11514 continue;
11515
11516 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
11517 continue;
11518
Joe Perches63c3a662011-04-26 08:12:10 +000011519 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070011520 (reg_tbl[i].flags & TG3_FL_NOT_5788))
11521 continue;
11522
Michael Chanb16250e2006-09-27 16:10:14 -070011523 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
11524 continue;
11525
Michael Chana71116d2005-05-29 14:58:11 -070011526 offset = (u32) reg_tbl[i].offset;
11527 read_mask = reg_tbl[i].read_mask;
11528 write_mask = reg_tbl[i].write_mask;
11529
11530 /* Save the original register content */
11531 save_val = tr32(offset);
11532
11533 /* Determine the read-only value. */
11534 read_val = save_val & read_mask;
11535
11536 /* Write zero to the register, then make sure the read-only bits
11537 * are not changed and the read/write bits are all zeros.
11538 */
11539 tw32(offset, 0);
11540
11541 val = tr32(offset);
11542
11543 /* Test the read-only and read/write bits. */
11544 if (((val & read_mask) != read_val) || (val & write_mask))
11545 goto out;
11546
11547 /* Write ones to all the bits defined by RdMask and WrMask, then
11548 * make sure the read-only bits are not changed and the
11549 * read/write bits are all ones.
11550 */
11551 tw32(offset, read_mask | write_mask);
11552
11553 val = tr32(offset);
11554
11555 /* Test the read-only bits. */
11556 if ((val & read_mask) != read_val)
11557 goto out;
11558
11559 /* Test the read/write bits. */
11560 if ((val & write_mask) != write_mask)
11561 goto out;
11562
11563 tw32(offset, save_val);
11564 }
11565
11566 return 0;
11567
11568out:
Michael Chan9f88f292006-12-07 00:22:54 -080011569 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000011570 netdev_err(tp->dev,
11571 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070011572 tw32(offset, save_val);
11573 return -EIO;
11574}
11575
Michael Chan7942e1d2005-05-29 14:58:36 -070011576static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
11577{
Arjan van de Venf71e1302006-03-03 21:33:57 -050011578 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070011579 int i;
11580 u32 j;
11581
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020011582 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070011583 for (j = 0; j < len; j += 4) {
11584 u32 val;
11585
11586 tg3_write_mem(tp, offset + j, test_pattern[i]);
11587 tg3_read_mem(tp, offset + j, &val);
11588 if (val != test_pattern[i])
11589 return -EIO;
11590 }
11591 }
11592 return 0;
11593}
11594
11595static int tg3_test_memory(struct tg3 *tp)
11596{
11597 static struct mem_entry {
11598 u32 offset;
11599 u32 len;
11600 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080011601 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070011602 { 0x00002000, 0x1c000},
11603 { 0xffffffff, 0x00000}
11604 }, mem_tbl_5705[] = {
11605 { 0x00000100, 0x0000c},
11606 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070011607 { 0x00004000, 0x00800},
11608 { 0x00006000, 0x01000},
11609 { 0x00008000, 0x02000},
11610 { 0x00010000, 0x0e000},
11611 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080011612 }, mem_tbl_5755[] = {
11613 { 0x00000200, 0x00008},
11614 { 0x00004000, 0x00800},
11615 { 0x00006000, 0x00800},
11616 { 0x00008000, 0x02000},
11617 { 0x00010000, 0x0c000},
11618 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070011619 }, mem_tbl_5906[] = {
11620 { 0x00000200, 0x00008},
11621 { 0x00004000, 0x00400},
11622 { 0x00006000, 0x00400},
11623 { 0x00008000, 0x01000},
11624 { 0x00010000, 0x01000},
11625 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011626 }, mem_tbl_5717[] = {
11627 { 0x00000200, 0x00008},
11628 { 0x00010000, 0x0a000},
11629 { 0x00020000, 0x13c00},
11630 { 0xffffffff, 0x00000}
11631 }, mem_tbl_57765[] = {
11632 { 0x00000200, 0x00008},
11633 { 0x00004000, 0x00800},
11634 { 0x00006000, 0x09800},
11635 { 0x00010000, 0x0a000},
11636 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070011637 };
11638 struct mem_entry *mem_tbl;
11639 int err = 0;
11640 int i;
11641
Joe Perches63c3a662011-04-26 08:12:10 +000011642 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011643 mem_tbl = mem_tbl_5717;
Matt Carlson55086ad2011-12-14 11:09:59 +000011644 else if (tg3_flag(tp, 57765_CLASS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011645 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000011646 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011647 mem_tbl = mem_tbl_5755;
11648 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11649 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000011650 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011651 mem_tbl = mem_tbl_5705;
11652 else
Michael Chan7942e1d2005-05-29 14:58:36 -070011653 mem_tbl = mem_tbl_570x;
11654
11655 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000011656 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
11657 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070011658 break;
11659 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011660
Michael Chan7942e1d2005-05-29 14:58:36 -070011661 return err;
11662}
11663
Matt Carlsonbb158d62011-04-25 12:42:47 +000011664#define TG3_TSO_MSS 500
11665
11666#define TG3_TSO_IP_HDR_LEN 20
11667#define TG3_TSO_TCP_HDR_LEN 20
11668#define TG3_TSO_TCP_OPT_LEN 12
11669
11670static const u8 tg3_tso_header[] = {
116710x08, 0x00,
116720x45, 0x00, 0x00, 0x00,
116730x00, 0x00, 0x40, 0x00,
116740x40, 0x06, 0x00, 0x00,
116750x0a, 0x00, 0x00, 0x01,
116760x0a, 0x00, 0x00, 0x02,
116770x0d, 0x00, 0xe0, 0x00,
116780x00, 0x00, 0x01, 0x00,
116790x00, 0x00, 0x02, 0x00,
116800x80, 0x10, 0x10, 0x00,
116810x14, 0x09, 0x00, 0x00,
116820x01, 0x01, 0x08, 0x0a,
116830x11, 0x11, 0x11, 0x11,
116840x11, 0x11, 0x11, 0x11,
11685};
Michael Chan9f40dea2005-09-05 17:53:06 -070011686
Matt Carlson28a45952011-08-19 13:58:22 +000011687static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070011688{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011689 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011690 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000011691 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000011692 struct sk_buff *skb;
11693 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070011694 dma_addr_t map;
11695 int num_pkts, tx_len, rx_len, i, err;
11696 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000011697 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000011698 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070011699
Matt Carlsonc8873402010-02-12 14:47:11 +000011700 tnapi = &tp->napi[0];
11701 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011702 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000011703 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000011704 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000011705 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000011706 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011707 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011708 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000011709
Michael Chanc76949a2005-05-29 14:58:59 -070011710 err = -EIO;
11711
Matt Carlson4852a862011-04-13 11:05:07 +000011712 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070011713 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070011714 if (!skb)
11715 return -ENOMEM;
11716
Michael Chanc76949a2005-05-29 14:58:59 -070011717 tx_data = skb_put(skb, tx_len);
11718 memcpy(tx_data, tp->dev->dev_addr, 6);
11719 memset(tx_data + 6, 0x0, 8);
11720
Matt Carlson4852a862011-04-13 11:05:07 +000011721 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070011722
Matt Carlson28a45952011-08-19 13:58:22 +000011723 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011724 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
11725
11726 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
11727 TG3_TSO_TCP_OPT_LEN;
11728
11729 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
11730 sizeof(tg3_tso_header));
11731 mss = TG3_TSO_MSS;
11732
11733 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
11734 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
11735
11736 /* Set the total length field in the IP header */
11737 iph->tot_len = htons((u16)(mss + hdr_len));
11738
11739 base_flags = (TXD_FLAG_CPU_PRE_DMA |
11740 TXD_FLAG_CPU_POST_DMA);
11741
Joe Perches63c3a662011-04-26 08:12:10 +000011742 if (tg3_flag(tp, HW_TSO_1) ||
11743 tg3_flag(tp, HW_TSO_2) ||
11744 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011745 struct tcphdr *th;
11746 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
11747 th = (struct tcphdr *)&tx_data[val];
11748 th->check = 0;
11749 } else
11750 base_flags |= TXD_FLAG_TCPUDP_CSUM;
11751
Joe Perches63c3a662011-04-26 08:12:10 +000011752 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011753 mss |= (hdr_len & 0xc) << 12;
11754 if (hdr_len & 0x10)
11755 base_flags |= 0x00000010;
11756 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000011757 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011758 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000011759 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000011760 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
11761 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
11762 } else {
11763 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
11764 }
11765
11766 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
11767 } else {
11768 num_pkts = 1;
11769 data_off = ETH_HLEN;
Michael Chanc441b452012-03-04 14:48:13 +000011770
11771 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
11772 tx_len > VLAN_ETH_FRAME_LEN)
11773 base_flags |= TXD_FLAG_JMB_PKT;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011774 }
11775
11776 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070011777 tx_data[i] = (u8) (i & 0xff);
11778
Alexander Duyckf4188d82009-12-02 16:48:38 +000011779 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
11780 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000011781 dev_kfree_skb(skb);
11782 return -EIO;
11783 }
Michael Chanc76949a2005-05-29 14:58:59 -070011784
Matt Carlson0d681b22011-07-27 14:20:49 +000011785 val = tnapi->tx_prod;
11786 tnapi->tx_buffers[val].skb = skb;
11787 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
11788
Michael Chanc76949a2005-05-29 14:58:59 -070011789 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011790 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011791
11792 udelay(10);
11793
Matt Carlson898a56f2009-08-28 14:02:40 +000011794 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070011795
Matt Carlson84b67b22011-07-27 14:20:52 +000011796 budget = tg3_tx_avail(tnapi);
11797 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000011798 base_flags | TXD_FLAG_END, mss, 0)) {
11799 tnapi->tx_buffers[val].skb = NULL;
11800 dev_kfree_skb(skb);
11801 return -EIO;
11802 }
Michael Chanc76949a2005-05-29 14:58:59 -070011803
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011804 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070011805
Michael Chan6541b802012-03-04 14:48:14 +000011806 /* Sync BD data before updating mailbox */
11807 wmb();
11808
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011809 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
11810 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070011811
11812 udelay(10);
11813
Matt Carlson303fc922009-11-02 14:27:34 +000011814 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
11815 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070011816 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011817 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011818
11819 udelay(10);
11820
Matt Carlson898a56f2009-08-28 14:02:40 +000011821 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
11822 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011823 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070011824 (rx_idx == (rx_start_idx + num_pkts)))
11825 break;
11826 }
11827
Matt Carlsonba1142e2011-11-04 09:15:00 +000011828 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070011829 dev_kfree_skb(skb);
11830
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011831 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070011832 goto out;
11833
11834 if (rx_idx != rx_start_idx + num_pkts)
11835 goto out;
11836
Matt Carlsonbb158d62011-04-25 12:42:47 +000011837 val = data_off;
11838 while (rx_idx != rx_start_idx) {
11839 desc = &rnapi->rx_rcb[rx_start_idx++];
11840 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
11841 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070011842
Matt Carlsonbb158d62011-04-25 12:42:47 +000011843 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
11844 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000011845 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070011846
Matt Carlsonbb158d62011-04-25 12:42:47 +000011847 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
11848 - ETH_FCS_LEN;
11849
Matt Carlson28a45952011-08-19 13:58:22 +000011850 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011851 if (rx_len != tx_len)
11852 goto out;
11853
11854 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
11855 if (opaque_key != RXD_OPAQUE_RING_STD)
11856 goto out;
11857 } else {
11858 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
11859 goto out;
11860 }
11861 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
11862 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000011863 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011864 goto out;
11865 }
11866
11867 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000011868 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011869 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
11870 mapping);
11871 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000011872 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011873 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
11874 mapping);
11875 } else
Matt Carlson4852a862011-04-13 11:05:07 +000011876 goto out;
11877
Matt Carlsonbb158d62011-04-25 12:42:47 +000011878 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
11879 PCI_DMA_FROMDEVICE);
11880
Eric Dumazet9205fd92011-11-18 06:47:01 +000011881 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000011882 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000011883 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011884 goto out;
11885 }
Matt Carlson4852a862011-04-13 11:05:07 +000011886 }
11887
Michael Chanc76949a2005-05-29 14:58:59 -070011888 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011889
Eric Dumazet9205fd92011-11-18 06:47:01 +000011890 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070011891out:
11892 return err;
11893}
11894
Matt Carlson00c266b2011-04-25 12:42:46 +000011895#define TG3_STD_LOOPBACK_FAILED 1
11896#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000011897#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000011898#define TG3_LOOPBACK_FAILED \
11899 (TG3_STD_LOOPBACK_FAILED | \
11900 TG3_JMB_LOOPBACK_FAILED | \
11901 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000011902
Matt Carlson941ec902011-08-19 13:58:23 +000011903static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070011904{
Matt Carlson28a45952011-08-19 13:58:22 +000011905 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000011906 u32 eee_cap;
Michael Chanc441b452012-03-04 14:48:13 +000011907 u32 jmb_pkt_sz = 9000;
11908
11909 if (tp->dma_limit)
11910 jmb_pkt_sz = tp->dma_limit - ETH_HLEN;
Michael Chan9f40dea2005-09-05 17:53:06 -070011911
Matt Carlsonab789042011-01-25 15:58:54 +000011912 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
11913 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11914
Matt Carlson28a45952011-08-19 13:58:22 +000011915 if (!netif_running(tp->dev)) {
11916 data[0] = TG3_LOOPBACK_FAILED;
11917 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000011918 if (do_extlpbk)
11919 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000011920 goto done;
11921 }
11922
Michael Chanb9ec6c12006-07-25 16:37:27 -070011923 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000011924 if (err) {
Matt Carlson28a45952011-08-19 13:58:22 +000011925 data[0] = TG3_LOOPBACK_FAILED;
11926 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000011927 if (do_extlpbk)
11928 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000011929 goto done;
11930 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011931
Joe Perches63c3a662011-04-26 08:12:10 +000011932 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000011933 int i;
11934
11935 /* Reroute all rx packets to the 1st queue */
11936 for (i = MAC_RSS_INDIR_TBL_0;
11937 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
11938 tw32(i, 0x0);
11939 }
11940
Matt Carlson6e01b202011-08-19 13:58:20 +000011941 /* HW errata - mac loopback fails in some cases on 5780.
11942 * Normal traffic and PHY loopback are not affected by
11943 * errata. Also, the MAC loopback test is deprecated for
11944 * all newer ASIC revisions.
11945 */
11946 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
11947 !tg3_flag(tp, CPMU_PRESENT)) {
11948 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070011949
Matt Carlson28a45952011-08-19 13:58:22 +000011950 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
11951 data[0] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000011952
11953 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000011954 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson28a45952011-08-19 13:58:22 +000011955 data[0] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000011956
11957 tg3_mac_loopback(tp, false);
11958 }
Matt Carlson4852a862011-04-13 11:05:07 +000011959
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011960 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011961 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011962 int i;
11963
Matt Carlson941ec902011-08-19 13:58:23 +000011964 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011965
11966 /* Wait for link */
11967 for (i = 0; i < 100; i++) {
11968 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
11969 break;
11970 mdelay(1);
11971 }
11972
Matt Carlson28a45952011-08-19 13:58:22 +000011973 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
11974 data[1] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000011975 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000011976 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
11977 data[1] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000011978 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000011979 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson28a45952011-08-19 13:58:22 +000011980 data[1] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070011981
Matt Carlson941ec902011-08-19 13:58:23 +000011982 if (do_extlpbk) {
11983 tg3_phy_lpbk_set(tp, 0, true);
11984
11985 /* All link indications report up, but the hardware
11986 * isn't really ready for about 20 msec. Double it
11987 * to be sure.
11988 */
11989 mdelay(40);
11990
11991 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
11992 data[2] |= TG3_STD_LOOPBACK_FAILED;
11993 if (tg3_flag(tp, TSO_CAPABLE) &&
11994 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
11995 data[2] |= TG3_TSO_LOOPBACK_FAILED;
11996 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000011997 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson941ec902011-08-19 13:58:23 +000011998 data[2] |= TG3_JMB_LOOPBACK_FAILED;
11999 }
12000
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012001 /* Re-enable gphy autopowerdown. */
12002 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
12003 tg3_phy_toggle_apd(tp, true);
12004 }
Matt Carlson6833c042008-11-21 17:18:59 -080012005
Matt Carlson941ec902011-08-19 13:58:23 +000012006 err = (data[0] | data[1] | data[2]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000012007
Matt Carlsonab789042011-01-25 15:58:54 +000012008done:
12009 tp->phy_flags |= eee_cap;
12010
Michael Chan9f40dea2005-09-05 17:53:06 -070012011 return err;
12012}
12013
Michael Chan4cafd3f2005-05-29 14:56:34 -070012014static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
12015 u64 *data)
12016{
Michael Chan566f86a2005-05-29 14:56:58 -070012017 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000012018 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070012019
Matt Carlsonbed98292011-07-13 09:27:29 +000012020 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
12021 tg3_power_up(tp)) {
12022 etest->flags |= ETH_TEST_FL_FAILED;
12023 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
12024 return;
12025 }
Michael Chanbc1c7562006-03-20 17:48:03 -080012026
Michael Chan566f86a2005-05-29 14:56:58 -070012027 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
12028
12029 if (tg3_test_nvram(tp) != 0) {
12030 etest->flags |= ETH_TEST_FL_FAILED;
12031 data[0] = 1;
12032 }
Matt Carlson941ec902011-08-19 13:58:23 +000012033 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070012034 etest->flags |= ETH_TEST_FL_FAILED;
12035 data[1] = 1;
12036 }
Michael Chana71116d2005-05-29 14:58:11 -070012037 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012038 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070012039
Michael Chanbbe832c2005-06-24 20:20:04 -070012040 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012041 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012042 tg3_netif_stop(tp);
12043 irq_sync = 1;
12044 }
12045
12046 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070012047
12048 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080012049 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012050 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000012051 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070012052 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080012053 if (!err)
12054 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012055
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012056 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080012057 tg3_phy_reset(tp);
12058
Michael Chana71116d2005-05-29 14:58:11 -070012059 if (tg3_test_registers(tp) != 0) {
12060 etest->flags |= ETH_TEST_FL_FAILED;
12061 data[2] = 1;
12062 }
Matt Carlson28a45952011-08-19 13:58:22 +000012063
Michael Chan7942e1d2005-05-29 14:58:36 -070012064 if (tg3_test_memory(tp) != 0) {
12065 etest->flags |= ETH_TEST_FL_FAILED;
12066 data[3] = 1;
12067 }
Matt Carlson28a45952011-08-19 13:58:22 +000012068
Matt Carlson941ec902011-08-19 13:58:23 +000012069 if (doextlpbk)
12070 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
12071
12072 if (tg3_test_loopback(tp, &data[4], doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070012073 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070012074
David S. Millerf47c11e2005-06-24 20:18:35 -070012075 tg3_full_unlock(tp);
12076
Michael Chand4bc3922005-05-29 14:59:20 -070012077 if (tg3_test_interrupt(tp) != 0) {
12078 etest->flags |= ETH_TEST_FL_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012079 data[7] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070012080 }
David S. Millerf47c11e2005-06-24 20:18:35 -070012081
12082 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070012083
Michael Chana71116d2005-05-29 14:58:11 -070012084 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
12085 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012086 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012087 err2 = tg3_restart_hw(tp, 1);
12088 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070012089 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012090 }
David S. Millerf47c11e2005-06-24 20:18:35 -070012091
12092 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012093
12094 if (irq_sync && !err2)
12095 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012096 }
Matt Carlson80096062010-08-02 11:26:06 +000012097 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000012098 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080012099
Michael Chan4cafd3f2005-05-29 14:56:34 -070012100}
12101
Linus Torvalds1da177e2005-04-16 15:20:36 -070012102static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
12103{
12104 struct mii_ioctl_data *data = if_mii(ifr);
12105 struct tg3 *tp = netdev_priv(dev);
12106 int err;
12107
Joe Perches63c3a662011-04-26 08:12:10 +000012108 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012109 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012110 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012111 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012112 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000012113 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012114 }
12115
Matt Carlson33f401a2010-04-05 10:19:27 +000012116 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012117 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000012118 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012119
12120 /* fallthru */
12121 case SIOCGMIIREG: {
12122 u32 mii_regval;
12123
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012124 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012125 break; /* We have no PHY */
12126
Matt Carlson34eea5a2011-04-20 07:57:38 +000012127 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080012128 return -EAGAIN;
12129
David S. Millerf47c11e2005-06-24 20:18:35 -070012130 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012131 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070012132 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012133
12134 data->val_out = mii_regval;
12135
12136 return err;
12137 }
12138
12139 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012140 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012141 break; /* We have no PHY */
12142
Matt Carlson34eea5a2011-04-20 07:57:38 +000012143 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080012144 return -EAGAIN;
12145
David S. Millerf47c11e2005-06-24 20:18:35 -070012146 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012147 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070012148 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012149
12150 return err;
12151
12152 default:
12153 /* do nothing */
12154 break;
12155 }
12156 return -EOPNOTSUPP;
12157}
12158
David S. Miller15f98502005-05-18 22:49:26 -070012159static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
12160{
12161 struct tg3 *tp = netdev_priv(dev);
12162
12163 memcpy(ec, &tp->coal, sizeof(*ec));
12164 return 0;
12165}
12166
Michael Chand244c892005-07-05 14:42:33 -070012167static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
12168{
12169 struct tg3 *tp = netdev_priv(dev);
12170 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
12171 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
12172
Joe Perches63c3a662011-04-26 08:12:10 +000012173 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070012174 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
12175 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
12176 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
12177 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
12178 }
12179
12180 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
12181 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
12182 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
12183 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
12184 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
12185 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
12186 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
12187 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
12188 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
12189 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
12190 return -EINVAL;
12191
12192 /* No rx interrupts will be generated if both are zero */
12193 if ((ec->rx_coalesce_usecs == 0) &&
12194 (ec->rx_max_coalesced_frames == 0))
12195 return -EINVAL;
12196
12197 /* No tx interrupts will be generated if both are zero */
12198 if ((ec->tx_coalesce_usecs == 0) &&
12199 (ec->tx_max_coalesced_frames == 0))
12200 return -EINVAL;
12201
12202 /* Only copy relevant parameters, ignore all others. */
12203 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
12204 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
12205 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
12206 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
12207 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
12208 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
12209 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
12210 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
12211 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
12212
12213 if (netif_running(dev)) {
12214 tg3_full_lock(tp, 0);
12215 __tg3_set_coalesce(tp, &tp->coal);
12216 tg3_full_unlock(tp);
12217 }
12218 return 0;
12219}
12220
Jeff Garzik7282d492006-09-13 14:30:00 -040012221static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012222 .get_settings = tg3_get_settings,
12223 .set_settings = tg3_set_settings,
12224 .get_drvinfo = tg3_get_drvinfo,
12225 .get_regs_len = tg3_get_regs_len,
12226 .get_regs = tg3_get_regs,
12227 .get_wol = tg3_get_wol,
12228 .set_wol = tg3_set_wol,
12229 .get_msglevel = tg3_get_msglevel,
12230 .set_msglevel = tg3_set_msglevel,
12231 .nway_reset = tg3_nway_reset,
12232 .get_link = ethtool_op_get_link,
12233 .get_eeprom_len = tg3_get_eeprom_len,
12234 .get_eeprom = tg3_get_eeprom,
12235 .set_eeprom = tg3_set_eeprom,
12236 .get_ringparam = tg3_get_ringparam,
12237 .set_ringparam = tg3_set_ringparam,
12238 .get_pauseparam = tg3_get_pauseparam,
12239 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070012240 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012241 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000012242 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012243 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070012244 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070012245 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070012246 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000012247 .get_rxnfc = tg3_get_rxnfc,
12248 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
12249 .get_rxfh_indir = tg3_get_rxfh_indir,
12250 .set_rxfh_indir = tg3_set_rxfh_indir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012251};
12252
David S. Millerb4017c52012-03-01 17:57:40 -050012253static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
12254 struct rtnl_link_stats64 *stats)
12255{
12256 struct tg3 *tp = netdev_priv(dev);
12257
12258 if (!tp->hw_stats)
12259 return &tp->net_stats_prev;
12260
12261 spin_lock_bh(&tp->lock);
12262 tg3_get_nstats(tp, stats);
12263 spin_unlock_bh(&tp->lock);
12264
12265 return stats;
12266}
12267
Matt Carlsonccd5ba92012-02-13 10:20:08 +000012268static void tg3_set_rx_mode(struct net_device *dev)
12269{
12270 struct tg3 *tp = netdev_priv(dev);
12271
12272 if (!netif_running(dev))
12273 return;
12274
12275 tg3_full_lock(tp, 0);
12276 __tg3_set_rx_mode(dev);
12277 tg3_full_unlock(tp);
12278}
12279
Matt Carlsonfaf16272012-02-13 10:20:07 +000012280static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
12281 int new_mtu)
12282{
12283 dev->mtu = new_mtu;
12284
12285 if (new_mtu > ETH_DATA_LEN) {
12286 if (tg3_flag(tp, 5780_CLASS)) {
12287 netdev_update_features(dev);
12288 tg3_flag_clear(tp, TSO_CAPABLE);
12289 } else {
12290 tg3_flag_set(tp, JUMBO_RING_ENABLE);
12291 }
12292 } else {
12293 if (tg3_flag(tp, 5780_CLASS)) {
12294 tg3_flag_set(tp, TSO_CAPABLE);
12295 netdev_update_features(dev);
12296 }
12297 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
12298 }
12299}
12300
12301static int tg3_change_mtu(struct net_device *dev, int new_mtu)
12302{
12303 struct tg3 *tp = netdev_priv(dev);
Michael Chan2fae5e32012-03-04 14:48:15 +000012304 int err, reset_phy = 0;
Matt Carlsonfaf16272012-02-13 10:20:07 +000012305
12306 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
12307 return -EINVAL;
12308
12309 if (!netif_running(dev)) {
12310 /* We'll just catch it later when the
12311 * device is up'd.
12312 */
12313 tg3_set_mtu(dev, tp, new_mtu);
12314 return 0;
12315 }
12316
12317 tg3_phy_stop(tp);
12318
12319 tg3_netif_stop(tp);
12320
12321 tg3_full_lock(tp, 1);
12322
12323 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
12324
12325 tg3_set_mtu(dev, tp, new_mtu);
12326
Michael Chan2fae5e32012-03-04 14:48:15 +000012327 /* Reset PHY, otherwise the read DMA engine will be in a mode that
12328 * breaks all requests to 256 bytes.
12329 */
12330 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
12331 reset_phy = 1;
12332
12333 err = tg3_restart_hw(tp, reset_phy);
Matt Carlsonfaf16272012-02-13 10:20:07 +000012334
12335 if (!err)
12336 tg3_netif_start(tp);
12337
12338 tg3_full_unlock(tp);
12339
12340 if (!err)
12341 tg3_phy_start(tp);
12342
12343 return err;
12344}
12345
12346static const struct net_device_ops tg3_netdev_ops = {
12347 .ndo_open = tg3_open,
12348 .ndo_stop = tg3_close,
12349 .ndo_start_xmit = tg3_start_xmit,
12350 .ndo_get_stats64 = tg3_get_stats64,
12351 .ndo_validate_addr = eth_validate_addr,
12352 .ndo_set_rx_mode = tg3_set_rx_mode,
12353 .ndo_set_mac_address = tg3_set_mac_addr,
12354 .ndo_do_ioctl = tg3_ioctl,
12355 .ndo_tx_timeout = tg3_tx_timeout,
12356 .ndo_change_mtu = tg3_change_mtu,
12357 .ndo_fix_features = tg3_fix_features,
12358 .ndo_set_features = tg3_set_features,
12359#ifdef CONFIG_NET_POLL_CONTROLLER
12360 .ndo_poll_controller = tg3_poll_controller,
12361#endif
12362};
12363
Linus Torvalds1da177e2005-04-16 15:20:36 -070012364static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
12365{
Michael Chan1b277772006-03-20 22:27:48 -080012366 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012367
12368 tp->nvram_size = EEPROM_CHIP_SIZE;
12369
Matt Carlsone4f34112009-02-25 14:25:00 +000012370 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012371 return;
12372
Michael Chanb16250e2006-09-27 16:10:14 -070012373 if ((magic != TG3_EEPROM_MAGIC) &&
12374 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
12375 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012376 return;
12377
12378 /*
12379 * Size the chip by reading offsets at increasing powers of two.
12380 * When we encounter our validation signature, we know the addressing
12381 * has wrapped around, and thus have our chip size.
12382 */
Michael Chan1b277772006-03-20 22:27:48 -080012383 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012384
12385 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000012386 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012387 return;
12388
Michael Chan18201802006-03-20 22:29:15 -080012389 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012390 break;
12391
12392 cursize <<= 1;
12393 }
12394
12395 tp->nvram_size = cursize;
12396}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012397
Linus Torvalds1da177e2005-04-16 15:20:36 -070012398static void __devinit tg3_get_nvram_size(struct tg3 *tp)
12399{
12400 u32 val;
12401
Joe Perches63c3a662011-04-26 08:12:10 +000012402 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012403 return;
12404
12405 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080012406 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080012407 tg3_get_eeprom_size(tp);
12408 return;
12409 }
12410
Matt Carlson6d348f22009-02-25 14:25:52 +000012411 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012412 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000012413 /* This is confusing. We want to operate on the
12414 * 16-bit value at offset 0xf2. The tg3_nvram_read()
12415 * call will read from NVRAM and byteswap the data
12416 * according to the byteswapping settings for all
12417 * other register accesses. This ensures the data we
12418 * want will always reside in the lower 16-bits.
12419 * However, the data in NVRAM is in LE format, which
12420 * means the data from the NVRAM read will always be
12421 * opposite the endianness of the CPU. The 16-bit
12422 * byteswap then brings the data to CPU endianness.
12423 */
12424 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012425 return;
12426 }
12427 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070012428 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012429}
12430
12431static void __devinit tg3_get_nvram_info(struct tg3 *tp)
12432{
12433 u32 nvcfg1;
12434
12435 nvcfg1 = tr32(NVRAM_CFG1);
12436 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000012437 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012438 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012439 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12440 tw32(NVRAM_CFG1, nvcfg1);
12441 }
12442
Matt Carlson6ff6f812011-05-19 12:12:54 +000012443 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000012444 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012445 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012446 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
12447 tp->nvram_jedecnum = JEDEC_ATMEL;
12448 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012449 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012450 break;
12451 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
12452 tp->nvram_jedecnum = JEDEC_ATMEL;
12453 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
12454 break;
12455 case FLASH_VENDOR_ATMEL_EEPROM:
12456 tp->nvram_jedecnum = JEDEC_ATMEL;
12457 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012458 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012459 break;
12460 case FLASH_VENDOR_ST:
12461 tp->nvram_jedecnum = JEDEC_ST;
12462 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012463 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012464 break;
12465 case FLASH_VENDOR_SAIFUN:
12466 tp->nvram_jedecnum = JEDEC_SAIFUN;
12467 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
12468 break;
12469 case FLASH_VENDOR_SST_SMALL:
12470 case FLASH_VENDOR_SST_LARGE:
12471 tp->nvram_jedecnum = JEDEC_SST;
12472 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
12473 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012474 }
Matt Carlson8590a602009-08-28 12:29:16 +000012475 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012476 tp->nvram_jedecnum = JEDEC_ATMEL;
12477 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012478 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012479 }
12480}
12481
Matt Carlsona1b950d2009-09-01 13:20:17 +000012482static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
12483{
12484 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
12485 case FLASH_5752PAGE_SIZE_256:
12486 tp->nvram_pagesize = 256;
12487 break;
12488 case FLASH_5752PAGE_SIZE_512:
12489 tp->nvram_pagesize = 512;
12490 break;
12491 case FLASH_5752PAGE_SIZE_1K:
12492 tp->nvram_pagesize = 1024;
12493 break;
12494 case FLASH_5752PAGE_SIZE_2K:
12495 tp->nvram_pagesize = 2048;
12496 break;
12497 case FLASH_5752PAGE_SIZE_4K:
12498 tp->nvram_pagesize = 4096;
12499 break;
12500 case FLASH_5752PAGE_SIZE_264:
12501 tp->nvram_pagesize = 264;
12502 break;
12503 case FLASH_5752PAGE_SIZE_528:
12504 tp->nvram_pagesize = 528;
12505 break;
12506 }
12507}
12508
Michael Chan361b4ac2005-04-21 17:11:21 -070012509static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
12510{
12511 u32 nvcfg1;
12512
12513 nvcfg1 = tr32(NVRAM_CFG1);
12514
Michael Chane6af3012005-04-21 17:12:05 -070012515 /* NVRAM protection for TPM */
12516 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000012517 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070012518
Michael Chan361b4ac2005-04-21 17:11:21 -070012519 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012520 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
12521 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
12522 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012523 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012524 break;
12525 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12526 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012527 tg3_flag_set(tp, NVRAM_BUFFERED);
12528 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012529 break;
12530 case FLASH_5752VENDOR_ST_M45PE10:
12531 case FLASH_5752VENDOR_ST_M45PE20:
12532 case FLASH_5752VENDOR_ST_M45PE40:
12533 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012534 tg3_flag_set(tp, NVRAM_BUFFERED);
12535 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012536 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070012537 }
12538
Joe Perches63c3a662011-04-26 08:12:10 +000012539 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000012540 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000012541 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070012542 /* For eeprom, set pagesize to maximum eeprom size */
12543 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12544
12545 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12546 tw32(NVRAM_CFG1, nvcfg1);
12547 }
12548}
12549
Michael Chand3c7b882006-03-23 01:28:25 -080012550static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
12551{
Matt Carlson989a9d22007-05-05 11:51:05 -070012552 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080012553
12554 nvcfg1 = tr32(NVRAM_CFG1);
12555
12556 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070012557 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012558 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070012559 protect = 1;
12560 }
Michael Chand3c7b882006-03-23 01:28:25 -080012561
Matt Carlson989a9d22007-05-05 11:51:05 -070012562 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12563 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012564 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12565 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12566 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12567 case FLASH_5755VENDOR_ATMEL_FLASH_5:
12568 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012569 tg3_flag_set(tp, NVRAM_BUFFERED);
12570 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012571 tp->nvram_pagesize = 264;
12572 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
12573 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
12574 tp->nvram_size = (protect ? 0x3e200 :
12575 TG3_NVRAM_SIZE_512KB);
12576 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
12577 tp->nvram_size = (protect ? 0x1f200 :
12578 TG3_NVRAM_SIZE_256KB);
12579 else
12580 tp->nvram_size = (protect ? 0x1f200 :
12581 TG3_NVRAM_SIZE_128KB);
12582 break;
12583 case FLASH_5752VENDOR_ST_M45PE10:
12584 case FLASH_5752VENDOR_ST_M45PE20:
12585 case FLASH_5752VENDOR_ST_M45PE40:
12586 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012587 tg3_flag_set(tp, NVRAM_BUFFERED);
12588 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012589 tp->nvram_pagesize = 256;
12590 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
12591 tp->nvram_size = (protect ?
12592 TG3_NVRAM_SIZE_64KB :
12593 TG3_NVRAM_SIZE_128KB);
12594 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
12595 tp->nvram_size = (protect ?
12596 TG3_NVRAM_SIZE_64KB :
12597 TG3_NVRAM_SIZE_256KB);
12598 else
12599 tp->nvram_size = (protect ?
12600 TG3_NVRAM_SIZE_128KB :
12601 TG3_NVRAM_SIZE_512KB);
12602 break;
Michael Chand3c7b882006-03-23 01:28:25 -080012603 }
12604}
12605
Michael Chan1b277772006-03-20 22:27:48 -080012606static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
12607{
12608 u32 nvcfg1;
12609
12610 nvcfg1 = tr32(NVRAM_CFG1);
12611
12612 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012613 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
12614 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12615 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
12616 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12617 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012618 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012619 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080012620
Matt Carlson8590a602009-08-28 12:29:16 +000012621 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12622 tw32(NVRAM_CFG1, nvcfg1);
12623 break;
12624 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12625 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12626 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12627 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12628 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012629 tg3_flag_set(tp, NVRAM_BUFFERED);
12630 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012631 tp->nvram_pagesize = 264;
12632 break;
12633 case FLASH_5752VENDOR_ST_M45PE10:
12634 case FLASH_5752VENDOR_ST_M45PE20:
12635 case FLASH_5752VENDOR_ST_M45PE40:
12636 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012637 tg3_flag_set(tp, NVRAM_BUFFERED);
12638 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012639 tp->nvram_pagesize = 256;
12640 break;
Michael Chan1b277772006-03-20 22:27:48 -080012641 }
12642}
12643
Matt Carlson6b91fa02007-10-10 18:01:09 -070012644static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
12645{
12646 u32 nvcfg1, protect = 0;
12647
12648 nvcfg1 = tr32(NVRAM_CFG1);
12649
12650 /* NVRAM protection for TPM */
12651 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012652 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012653 protect = 1;
12654 }
12655
12656 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12657 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012658 case FLASH_5761VENDOR_ATMEL_ADB021D:
12659 case FLASH_5761VENDOR_ATMEL_ADB041D:
12660 case FLASH_5761VENDOR_ATMEL_ADB081D:
12661 case FLASH_5761VENDOR_ATMEL_ADB161D:
12662 case FLASH_5761VENDOR_ATMEL_MDB021D:
12663 case FLASH_5761VENDOR_ATMEL_MDB041D:
12664 case FLASH_5761VENDOR_ATMEL_MDB081D:
12665 case FLASH_5761VENDOR_ATMEL_MDB161D:
12666 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012667 tg3_flag_set(tp, NVRAM_BUFFERED);
12668 tg3_flag_set(tp, FLASH);
12669 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000012670 tp->nvram_pagesize = 256;
12671 break;
12672 case FLASH_5761VENDOR_ST_A_M45PE20:
12673 case FLASH_5761VENDOR_ST_A_M45PE40:
12674 case FLASH_5761VENDOR_ST_A_M45PE80:
12675 case FLASH_5761VENDOR_ST_A_M45PE16:
12676 case FLASH_5761VENDOR_ST_M_M45PE20:
12677 case FLASH_5761VENDOR_ST_M_M45PE40:
12678 case FLASH_5761VENDOR_ST_M_M45PE80:
12679 case FLASH_5761VENDOR_ST_M_M45PE16:
12680 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012681 tg3_flag_set(tp, NVRAM_BUFFERED);
12682 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012683 tp->nvram_pagesize = 256;
12684 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012685 }
12686
12687 if (protect) {
12688 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
12689 } else {
12690 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012691 case FLASH_5761VENDOR_ATMEL_ADB161D:
12692 case FLASH_5761VENDOR_ATMEL_MDB161D:
12693 case FLASH_5761VENDOR_ST_A_M45PE16:
12694 case FLASH_5761VENDOR_ST_M_M45PE16:
12695 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
12696 break;
12697 case FLASH_5761VENDOR_ATMEL_ADB081D:
12698 case FLASH_5761VENDOR_ATMEL_MDB081D:
12699 case FLASH_5761VENDOR_ST_A_M45PE80:
12700 case FLASH_5761VENDOR_ST_M_M45PE80:
12701 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12702 break;
12703 case FLASH_5761VENDOR_ATMEL_ADB041D:
12704 case FLASH_5761VENDOR_ATMEL_MDB041D:
12705 case FLASH_5761VENDOR_ST_A_M45PE40:
12706 case FLASH_5761VENDOR_ST_M_M45PE40:
12707 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12708 break;
12709 case FLASH_5761VENDOR_ATMEL_ADB021D:
12710 case FLASH_5761VENDOR_ATMEL_MDB021D:
12711 case FLASH_5761VENDOR_ST_A_M45PE20:
12712 case FLASH_5761VENDOR_ST_M_M45PE20:
12713 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12714 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012715 }
12716 }
12717}
12718
Michael Chanb5d37722006-09-27 16:06:21 -070012719static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
12720{
12721 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012722 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070012723 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12724}
12725
Matt Carlson321d32a2008-11-21 17:22:19 -080012726static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
12727{
12728 u32 nvcfg1;
12729
12730 nvcfg1 = tr32(NVRAM_CFG1);
12731
12732 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12733 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12734 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12735 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012736 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080012737 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12738
12739 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12740 tw32(NVRAM_CFG1, nvcfg1);
12741 return;
12742 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12743 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12744 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12745 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12746 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12747 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12748 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12749 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012750 tg3_flag_set(tp, NVRAM_BUFFERED);
12751 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012752
12753 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12754 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12755 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12756 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12757 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12758 break;
12759 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12760 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12761 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12762 break;
12763 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12764 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12765 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12766 break;
12767 }
12768 break;
12769 case FLASH_5752VENDOR_ST_M45PE10:
12770 case FLASH_5752VENDOR_ST_M45PE20:
12771 case FLASH_5752VENDOR_ST_M45PE40:
12772 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012773 tg3_flag_set(tp, NVRAM_BUFFERED);
12774 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012775
12776 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12777 case FLASH_5752VENDOR_ST_M45PE10:
12778 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12779 break;
12780 case FLASH_5752VENDOR_ST_M45PE20:
12781 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12782 break;
12783 case FLASH_5752VENDOR_ST_M45PE40:
12784 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12785 break;
12786 }
12787 break;
12788 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012789 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080012790 return;
12791 }
12792
Matt Carlsona1b950d2009-09-01 13:20:17 +000012793 tg3_nvram_get_pagesize(tp, nvcfg1);
12794 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012795 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012796}
12797
12798
12799static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
12800{
12801 u32 nvcfg1;
12802
12803 nvcfg1 = tr32(NVRAM_CFG1);
12804
12805 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12806 case FLASH_5717VENDOR_ATMEL_EEPROM:
12807 case FLASH_5717VENDOR_MICRO_EEPROM:
12808 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012809 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012810 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12811
12812 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12813 tw32(NVRAM_CFG1, nvcfg1);
12814 return;
12815 case FLASH_5717VENDOR_ATMEL_MDB011D:
12816 case FLASH_5717VENDOR_ATMEL_ADB011B:
12817 case FLASH_5717VENDOR_ATMEL_ADB011D:
12818 case FLASH_5717VENDOR_ATMEL_MDB021D:
12819 case FLASH_5717VENDOR_ATMEL_ADB021B:
12820 case FLASH_5717VENDOR_ATMEL_ADB021D:
12821 case FLASH_5717VENDOR_ATMEL_45USPT:
12822 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012823 tg3_flag_set(tp, NVRAM_BUFFERED);
12824 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012825
12826 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12827 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012828 /* Detect size with tg3_nvram_get_size() */
12829 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012830 case FLASH_5717VENDOR_ATMEL_ADB021B:
12831 case FLASH_5717VENDOR_ATMEL_ADB021D:
12832 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12833 break;
12834 default:
12835 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12836 break;
12837 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012838 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012839 case FLASH_5717VENDOR_ST_M_M25PE10:
12840 case FLASH_5717VENDOR_ST_A_M25PE10:
12841 case FLASH_5717VENDOR_ST_M_M45PE10:
12842 case FLASH_5717VENDOR_ST_A_M45PE10:
12843 case FLASH_5717VENDOR_ST_M_M25PE20:
12844 case FLASH_5717VENDOR_ST_A_M25PE20:
12845 case FLASH_5717VENDOR_ST_M_M45PE20:
12846 case FLASH_5717VENDOR_ST_A_M45PE20:
12847 case FLASH_5717VENDOR_ST_25USPT:
12848 case FLASH_5717VENDOR_ST_45USPT:
12849 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012850 tg3_flag_set(tp, NVRAM_BUFFERED);
12851 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012852
12853 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12854 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012855 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012856 /* Detect size with tg3_nvram_get_size() */
12857 break;
12858 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012859 case FLASH_5717VENDOR_ST_A_M45PE20:
12860 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12861 break;
12862 default:
12863 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12864 break;
12865 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012866 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012867 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012868 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012869 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080012870 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000012871
12872 tg3_nvram_get_pagesize(tp, nvcfg1);
12873 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012874 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080012875}
12876
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012877static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
12878{
12879 u32 nvcfg1, nvmpinstrp;
12880
12881 nvcfg1 = tr32(NVRAM_CFG1);
12882 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
12883
12884 switch (nvmpinstrp) {
12885 case FLASH_5720_EEPROM_HD:
12886 case FLASH_5720_EEPROM_LD:
12887 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012888 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012889
12890 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12891 tw32(NVRAM_CFG1, nvcfg1);
12892 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
12893 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12894 else
12895 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
12896 return;
12897 case FLASH_5720VENDOR_M_ATMEL_DB011D:
12898 case FLASH_5720VENDOR_A_ATMEL_DB011B:
12899 case FLASH_5720VENDOR_A_ATMEL_DB011D:
12900 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12901 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12902 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12903 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12904 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12905 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12906 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12907 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12908 case FLASH_5720VENDOR_ATMEL_45USPT:
12909 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012910 tg3_flag_set(tp, NVRAM_BUFFERED);
12911 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012912
12913 switch (nvmpinstrp) {
12914 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12915 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12916 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12917 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12918 break;
12919 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12920 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12921 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12922 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12923 break;
12924 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12925 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12926 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12927 break;
12928 default:
12929 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12930 break;
12931 }
12932 break;
12933 case FLASH_5720VENDOR_M_ST_M25PE10:
12934 case FLASH_5720VENDOR_M_ST_M45PE10:
12935 case FLASH_5720VENDOR_A_ST_M25PE10:
12936 case FLASH_5720VENDOR_A_ST_M45PE10:
12937 case FLASH_5720VENDOR_M_ST_M25PE20:
12938 case FLASH_5720VENDOR_M_ST_M45PE20:
12939 case FLASH_5720VENDOR_A_ST_M25PE20:
12940 case FLASH_5720VENDOR_A_ST_M45PE20:
12941 case FLASH_5720VENDOR_M_ST_M25PE40:
12942 case FLASH_5720VENDOR_M_ST_M45PE40:
12943 case FLASH_5720VENDOR_A_ST_M25PE40:
12944 case FLASH_5720VENDOR_A_ST_M45PE40:
12945 case FLASH_5720VENDOR_M_ST_M25PE80:
12946 case FLASH_5720VENDOR_M_ST_M45PE80:
12947 case FLASH_5720VENDOR_A_ST_M25PE80:
12948 case FLASH_5720VENDOR_A_ST_M45PE80:
12949 case FLASH_5720VENDOR_ST_25USPT:
12950 case FLASH_5720VENDOR_ST_45USPT:
12951 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012952 tg3_flag_set(tp, NVRAM_BUFFERED);
12953 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012954
12955 switch (nvmpinstrp) {
12956 case FLASH_5720VENDOR_M_ST_M25PE20:
12957 case FLASH_5720VENDOR_M_ST_M45PE20:
12958 case FLASH_5720VENDOR_A_ST_M25PE20:
12959 case FLASH_5720VENDOR_A_ST_M45PE20:
12960 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12961 break;
12962 case FLASH_5720VENDOR_M_ST_M25PE40:
12963 case FLASH_5720VENDOR_M_ST_M45PE40:
12964 case FLASH_5720VENDOR_A_ST_M25PE40:
12965 case FLASH_5720VENDOR_A_ST_M45PE40:
12966 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12967 break;
12968 case FLASH_5720VENDOR_M_ST_M25PE80:
12969 case FLASH_5720VENDOR_M_ST_M45PE80:
12970 case FLASH_5720VENDOR_A_ST_M25PE80:
12971 case FLASH_5720VENDOR_A_ST_M45PE80:
12972 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12973 break;
12974 default:
12975 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12976 break;
12977 }
12978 break;
12979 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012980 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012981 return;
12982 }
12983
12984 tg3_nvram_get_pagesize(tp, nvcfg1);
12985 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012986 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012987}
12988
Linus Torvalds1da177e2005-04-16 15:20:36 -070012989/* Chips other than 5700/5701 use the NVRAM for fetching info. */
12990static void __devinit tg3_nvram_init(struct tg3 *tp)
12991{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012992 tw32_f(GRC_EEPROM_ADDR,
12993 (EEPROM_ADDR_FSM_RESET |
12994 (EEPROM_DEFAULT_CLOCK_PERIOD <<
12995 EEPROM_ADDR_CLKPERD_SHIFT)));
12996
Michael Chan9d57f012006-12-07 00:23:25 -080012997 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012998
12999 /* Enable seeprom accesses. */
13000 tw32_f(GRC_LOCAL_CTRL,
13001 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
13002 udelay(100);
13003
13004 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13005 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000013006 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013007
Michael Chanec41c7d2006-01-17 02:40:55 -080013008 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000013009 netdev_warn(tp->dev,
13010 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000013011 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080013012 return;
13013 }
Michael Chane6af3012005-04-21 17:12:05 -070013014 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013015
Matt Carlson989a9d22007-05-05 11:51:05 -070013016 tp->nvram_size = 0;
13017
Michael Chan361b4ac2005-04-21 17:11:21 -070013018 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13019 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080013020 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
13021 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070013022 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013023 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
13024 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080013025 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070013026 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
13027 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070013028 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13029 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000013030 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000013031 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080013032 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013033 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13034 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000013035 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013036 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
13037 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070013038 else
13039 tg3_get_nvram_info(tp);
13040
Matt Carlson989a9d22007-05-05 11:51:05 -070013041 if (tp->nvram_size == 0)
13042 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013043
Michael Chane6af3012005-04-21 17:12:05 -070013044 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080013045 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013046
13047 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013048 tg3_flag_clear(tp, NVRAM);
13049 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013050
13051 tg3_get_eeprom_size(tp);
13052 }
13053}
13054
Linus Torvalds1da177e2005-04-16 15:20:36 -070013055struct subsys_tbl_ent {
13056 u16 subsys_vendor, subsys_devid;
13057 u32 phy_id;
13058};
13059
Matt Carlson24daf2b2010-02-17 15:17:02 +000013060static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013061 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013062 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013063 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013064 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013065 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013066 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013067 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013068 { TG3PCI_SUBVENDOR_ID_BROADCOM,
13069 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
13070 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013071 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013072 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013073 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013074 { TG3PCI_SUBVENDOR_ID_BROADCOM,
13075 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
13076 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013077 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013078 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013079 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013080 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013081 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013082 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013083 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013084
13085 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013086 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013087 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013088 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013089 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013090 { TG3PCI_SUBVENDOR_ID_3COM,
13091 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
13092 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013093 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013094 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013095 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013096
13097 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013098 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013099 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013100 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013101 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013102 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013103 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013104 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013105 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013106
13107 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013108 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013109 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013110 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013111 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013112 { TG3PCI_SUBVENDOR_ID_COMPAQ,
13113 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
13114 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013115 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013116 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013117 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013118
13119 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013120 { TG3PCI_SUBVENDOR_ID_IBM,
13121 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013122};
13123
Matt Carlson24daf2b2010-02-17 15:17:02 +000013124static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013125{
13126 int i;
13127
13128 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
13129 if ((subsys_id_to_phy_id[i].subsys_vendor ==
13130 tp->pdev->subsystem_vendor) &&
13131 (subsys_id_to_phy_id[i].subsys_devid ==
13132 tp->pdev->subsystem_device))
13133 return &subsys_id_to_phy_id[i];
13134 }
13135 return NULL;
13136}
13137
Michael Chan7d0c41e2005-04-21 17:06:20 -070013138static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013139{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013140 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070013141
Matt Carlson79eb6902010-02-17 15:17:03 +000013142 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013143 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13144
Gary Zambranoa85feb82007-05-05 11:52:19 -070013145 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000013146 tg3_flag_set(tp, EEPROM_WRITE_PROT);
13147 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080013148
Michael Chanb5d37722006-09-27 16:06:21 -070013149 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080013150 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013151 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13152 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013153 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013154 val = tr32(VCPU_CFGSHDW);
13155 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000013156 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070013157 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013158 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013159 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013160 device_set_wakeup_enable(&tp->pdev->dev, true);
13161 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013162 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070013163 }
13164
Linus Torvalds1da177e2005-04-16 15:20:36 -070013165 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
13166 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
13167 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070013168 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013169 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013170
13171 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
13172 tp->nic_sram_data_cfg = nic_cfg;
13173
13174 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
13175 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Matt Carlson6ff6f812011-05-19 12:12:54 +000013176 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13177 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13178 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070013179 (ver > 0) && (ver < 0x100))
13180 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
13181
Matt Carlsona9daf362008-05-25 23:49:44 -070013182 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
13183 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
13184
Linus Torvalds1da177e2005-04-16 15:20:36 -070013185 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
13186 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
13187 eeprom_phy_serdes = 1;
13188
13189 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
13190 if (nic_phy_id != 0) {
13191 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
13192 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
13193
13194 eeprom_phy_id = (id1 >> 16) << 10;
13195 eeprom_phy_id |= (id2 & 0xfc00) << 16;
13196 eeprom_phy_id |= (id2 & 0x03ff) << 0;
13197 } else
13198 eeprom_phy_id = 0;
13199
Michael Chan7d0c41e2005-04-21 17:06:20 -070013200 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070013201 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000013202 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013203 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000013204 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013205 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070013206 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070013207
Joe Perches63c3a662011-04-26 08:12:10 +000013208 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013209 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
13210 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070013211 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070013212 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
13213
13214 switch (led_cfg) {
13215 default:
13216 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
13217 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13218 break;
13219
13220 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
13221 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13222 break;
13223
13224 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
13225 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070013226
13227 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
13228 * read on some older 5700/5701 bootcode.
13229 */
13230 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
13231 ASIC_REV_5700 ||
13232 GET_ASIC_REV(tp->pci_chip_rev_id) ==
13233 ASIC_REV_5701)
13234 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13235
Linus Torvalds1da177e2005-04-16 15:20:36 -070013236 break;
13237
13238 case SHASTA_EXT_LED_SHARED:
13239 tp->led_ctrl = LED_CTRL_MODE_SHARED;
13240 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
13241 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
13242 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13243 LED_CTRL_MODE_PHY_2);
13244 break;
13245
13246 case SHASTA_EXT_LED_MAC:
13247 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
13248 break;
13249
13250 case SHASTA_EXT_LED_COMBO:
13251 tp->led_ctrl = LED_CTRL_MODE_COMBO;
13252 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
13253 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13254 LED_CTRL_MODE_PHY_2);
13255 break;
13256
Stephen Hemminger855e1112008-04-16 16:37:28 -070013257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013258
13259 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13260 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
13261 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
13262 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13263
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013264 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
13265 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080013266
Michael Chan9d26e212006-12-07 00:21:14 -080013267 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000013268 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013269 if ((tp->pdev->subsystem_vendor ==
13270 PCI_VENDOR_ID_ARIMA) &&
13271 (tp->pdev->subsystem_device == 0x205a ||
13272 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000013273 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013274 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013275 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13276 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013278
13279 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000013280 tg3_flag_set(tp, ENABLE_ASF);
13281 if (tg3_flag(tp, 5750_PLUS))
13282 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013283 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013284
13285 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013286 tg3_flag(tp, 5750_PLUS))
13287 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013288
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013289 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070013290 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000013291 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013292
Joe Perches63c3a662011-04-26 08:12:10 +000013293 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013294 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013295 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013296 device_set_wakeup_enable(&tp->pdev->dev, true);
13297 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013298
Linus Torvalds1da177e2005-04-16 15:20:36 -070013299 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013300 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013301
13302 /* serdes signal pre-emphasis in register 0x590 set by */
13303 /* bootcode if bit 18 is set */
13304 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013305 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070013306
Joe Perches63c3a662011-04-26 08:12:10 +000013307 if ((tg3_flag(tp, 57765_PLUS) ||
13308 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13309 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080013310 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013311 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080013312
Joe Perches63c3a662011-04-26 08:12:10 +000013313 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000013314 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000013315 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070013316 u32 cfg3;
13317
13318 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
13319 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000013320 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070013321 }
Matt Carlsona9daf362008-05-25 23:49:44 -070013322
Matt Carlson14417062010-02-17 15:16:59 +000013323 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000013324 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070013325 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013326 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070013327 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013328 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013329 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013330done:
Joe Perches63c3a662011-04-26 08:12:10 +000013331 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013332 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000013333 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013334 else
13335 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070013336}
13337
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013338static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
13339{
13340 int i;
13341 u32 val;
13342
13343 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
13344 tw32(OTP_CTRL, cmd);
13345
13346 /* Wait for up to 1 ms for command to execute. */
13347 for (i = 0; i < 100; i++) {
13348 val = tr32(OTP_STATUS);
13349 if (val & OTP_STATUS_CMD_DONE)
13350 break;
13351 udelay(10);
13352 }
13353
13354 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
13355}
13356
13357/* Read the gphy configuration from the OTP region of the chip. The gphy
13358 * configuration is a 32-bit value that straddles the alignment boundary.
13359 * We do two 32-bit reads and then shift and merge the results.
13360 */
13361static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
13362{
13363 u32 bhalf_otp, thalf_otp;
13364
13365 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
13366
13367 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
13368 return 0;
13369
13370 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
13371
13372 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13373 return 0;
13374
13375 thalf_otp = tr32(OTP_READ_DATA);
13376
13377 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
13378
13379 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13380 return 0;
13381
13382 bhalf_otp = tr32(OTP_READ_DATA);
13383
13384 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
13385}
13386
Matt Carlsone256f8a2011-03-09 16:58:24 +000013387static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
13388{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000013389 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013390
13391 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
13392 adv |= ADVERTISED_1000baseT_Half |
13393 ADVERTISED_1000baseT_Full;
13394
13395 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
13396 adv |= ADVERTISED_100baseT_Half |
13397 ADVERTISED_100baseT_Full |
13398 ADVERTISED_10baseT_Half |
13399 ADVERTISED_10baseT_Full |
13400 ADVERTISED_TP;
13401 else
13402 adv |= ADVERTISED_FIBRE;
13403
13404 tp->link_config.advertising = adv;
Matt Carlsone7405222012-02-13 15:20:16 +000013405 tp->link_config.speed = SPEED_UNKNOWN;
13406 tp->link_config.duplex = DUPLEX_UNKNOWN;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013407 tp->link_config.autoneg = AUTONEG_ENABLE;
Matt Carlsone7405222012-02-13 15:20:16 +000013408 tp->link_config.active_speed = SPEED_UNKNOWN;
13409 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Matt Carlson34655ad2012-02-22 12:35:18 +000013410
13411 tp->old_link = -1;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013412}
13413
Michael Chan7d0c41e2005-04-21 17:06:20 -070013414static int __devinit tg3_phy_probe(struct tg3 *tp)
13415{
13416 u32 hw_phy_id_1, hw_phy_id_2;
13417 u32 hw_phy_id, hw_phy_id_masked;
13418 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013419
Matt Carlsone256f8a2011-03-09 16:58:24 +000013420 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000013421 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000013422 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
13423
Joe Perches63c3a662011-04-26 08:12:10 +000013424 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013425 return tg3_phy_init(tp);
13426
Linus Torvalds1da177e2005-04-16 15:20:36 -070013427 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010013428 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013429 */
13430 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000013431 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000013432 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013433 } else {
13434 /* Now read the physical PHY_ID from the chip and verify
13435 * that it is sane. If it doesn't look good, we fall back
13436 * to either the hard-coded table based PHY_ID and failing
13437 * that the value found in the eeprom area.
13438 */
13439 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
13440 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
13441
13442 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
13443 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
13444 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
13445
Matt Carlson79eb6902010-02-17 15:17:03 +000013446 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013447 }
13448
Matt Carlson79eb6902010-02-17 15:17:03 +000013449 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013450 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000013451 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013452 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070013453 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013454 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013455 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000013456 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070013457 /* Do nothing, phy ID already set up in
13458 * tg3_get_eeprom_hw_cfg().
13459 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013460 } else {
13461 struct subsys_tbl_ent *p;
13462
13463 /* No eeprom signature? Try the hardcoded
13464 * subsys device table.
13465 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013466 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013467 if (!p)
13468 return -ENODEV;
13469
13470 tp->phy_id = p->phy_id;
13471 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000013472 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013473 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013474 }
13475 }
13476
Matt Carlsona6b68da2010-12-06 08:28:52 +000013477 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Matt Carlson5baa5e92011-07-20 10:20:53 +000013478 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13479 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720 ||
13480 (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +000013481 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
13482 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
13483 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000013484 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
13485
Matt Carlsone256f8a2011-03-09 16:58:24 +000013486 tg3_phy_init_link_config(tp);
13487
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013488 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013489 !tg3_flag(tp, ENABLE_APE) &&
13490 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000013491 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013492
13493 tg3_readphy(tp, MII_BMSR, &bmsr);
13494 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
13495 (bmsr & BMSR_LSTATUS))
13496 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013497
Linus Torvalds1da177e2005-04-16 15:20:36 -070013498 err = tg3_phy_reset(tp);
13499 if (err)
13500 return err;
13501
Matt Carlson42b64a42011-05-19 12:12:49 +000013502 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013503
Matt Carlsone2bf73e2011-12-08 14:40:15 +000013504 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013505 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
13506 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013507
13508 tg3_writephy(tp, MII_BMCR,
13509 BMCR_ANENABLE | BMCR_ANRESTART);
13510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013511 }
13512
13513skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013514 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013515 err = tg3_init_5401phy_dsp(tp);
13516 if (err)
13517 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013518
Linus Torvalds1da177e2005-04-16 15:20:36 -070013519 err = tg3_init_5401phy_dsp(tp);
13520 }
13521
Linus Torvalds1da177e2005-04-16 15:20:36 -070013522 return err;
13523}
13524
Matt Carlson184b8902010-04-05 10:19:25 +000013525static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013526{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013527 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013528 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000013529 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000013530 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013531
Matt Carlson535a4902011-07-20 10:20:56 +000013532 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013533 if (!vpd_data)
13534 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013535
Matt Carlson535a4902011-07-20 10:20:56 +000013536 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000013537 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013538 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013539
13540 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13541 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13542 i += PCI_VPD_LRDT_TAG_SIZE;
13543
Matt Carlson535a4902011-07-20 10:20:56 +000013544 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013545 goto out_not_found;
13546
Matt Carlson184b8902010-04-05 10:19:25 +000013547 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13548 PCI_VPD_RO_KEYWORD_MFR_ID);
13549 if (j > 0) {
13550 len = pci_vpd_info_field_size(&vpd_data[j]);
13551
13552 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13553 if (j + len > block_end || len != 4 ||
13554 memcmp(&vpd_data[j], "1028", 4))
13555 goto partno;
13556
13557 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13558 PCI_VPD_RO_KEYWORD_VENDOR0);
13559 if (j < 0)
13560 goto partno;
13561
13562 len = pci_vpd_info_field_size(&vpd_data[j]);
13563
13564 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13565 if (j + len > block_end)
13566 goto partno;
13567
13568 memcpy(tp->fw_ver, &vpd_data[j], len);
Matt Carlson535a4902011-07-20 10:20:56 +000013569 strncat(tp->fw_ver, " bc ", vpdlen - len - 1);
Matt Carlson184b8902010-04-05 10:19:25 +000013570 }
13571
13572partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013573 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13574 PCI_VPD_RO_KEYWORD_PARTNO);
13575 if (i < 0)
13576 goto out_not_found;
13577
13578 len = pci_vpd_info_field_size(&vpd_data[i]);
13579
13580 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13581 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000013582 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013583 goto out_not_found;
13584
13585 memcpy(tp->board_part_number, &vpd_data[i], len);
13586
Linus Torvalds1da177e2005-04-16 15:20:36 -070013587out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013588 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013589 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013590 return;
13591
13592out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013593 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13594 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13595 strcpy(tp->board_part_number, "BCM5717");
13596 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13597 strcpy(tp->board_part_number, "BCM5718");
13598 else
13599 goto nomatch;
13600 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13601 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13602 strcpy(tp->board_part_number, "BCM57780");
13603 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13604 strcpy(tp->board_part_number, "BCM57760");
13605 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13606 strcpy(tp->board_part_number, "BCM57790");
13607 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13608 strcpy(tp->board_part_number, "BCM57788");
13609 else
13610 goto nomatch;
13611 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13612 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13613 strcpy(tp->board_part_number, "BCM57761");
13614 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
13615 strcpy(tp->board_part_number, "BCM57765");
13616 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
13617 strcpy(tp->board_part_number, "BCM57781");
13618 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
13619 strcpy(tp->board_part_number, "BCM57785");
13620 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
13621 strcpy(tp->board_part_number, "BCM57791");
13622 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13623 strcpy(tp->board_part_number, "BCM57795");
13624 else
13625 goto nomatch;
Matt Carlson55086ad2011-12-14 11:09:59 +000013626 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766) {
13627 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
13628 strcpy(tp->board_part_number, "BCM57762");
13629 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
13630 strcpy(tp->board_part_number, "BCM57766");
13631 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
13632 strcpy(tp->board_part_number, "BCM57782");
13633 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
13634 strcpy(tp->board_part_number, "BCM57786");
13635 else
13636 goto nomatch;
Matt Carlson37a949c2010-09-30 10:34:33 +000013637 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070013638 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000013639 } else {
13640nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070013641 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000013642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013643}
13644
Matt Carlson9c8a6202007-10-21 16:16:08 -070013645static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
13646{
13647 u32 val;
13648
Matt Carlsone4f34112009-02-25 14:25:00 +000013649 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013650 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013651 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013652 val != 0)
13653 return 0;
13654
13655 return 1;
13656}
13657
Matt Carlsonacd9c112009-02-25 14:26:33 +000013658static void __devinit tg3_read_bc_ver(struct tg3 *tp)
13659{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013660 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000013661 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013662 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013663
13664 if (tg3_nvram_read(tp, 0xc, &offset) ||
13665 tg3_nvram_read(tp, 0x4, &start))
13666 return;
13667
13668 offset = tg3_nvram_logical_addr(tp, offset);
13669
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013670 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013671 return;
13672
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013673 if ((val & 0xfc000000) == 0x0c000000) {
13674 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013675 return;
13676
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013677 if (val == 0)
13678 newver = true;
13679 }
13680
Matt Carlson75f99362010-04-05 10:19:24 +000013681 dst_off = strlen(tp->fw_ver);
13682
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013683 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000013684 if (TG3_VER_SIZE - dst_off < 16 ||
13685 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013686 return;
13687
13688 offset = offset + ver_offset - start;
13689 for (i = 0; i < 16; i += 4) {
13690 __be32 v;
13691 if (tg3_nvram_read_be32(tp, offset + i, &v))
13692 return;
13693
Matt Carlson75f99362010-04-05 10:19:24 +000013694 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013695 }
13696 } else {
13697 u32 major, minor;
13698
13699 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
13700 return;
13701
13702 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
13703 TG3_NVM_BCVER_MAJSFT;
13704 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000013705 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
13706 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013707 }
13708}
13709
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013710static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
13711{
13712 u32 val, major, minor;
13713
13714 /* Use native endian representation */
13715 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
13716 return;
13717
13718 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
13719 TG3_NVM_HWSB_CFG1_MAJSFT;
13720 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
13721 TG3_NVM_HWSB_CFG1_MINSFT;
13722
13723 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
13724}
13725
Matt Carlsondfe00d72008-11-21 17:19:41 -080013726static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
13727{
13728 u32 offset, major, minor, build;
13729
Matt Carlson75f99362010-04-05 10:19:24 +000013730 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013731
13732 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
13733 return;
13734
13735 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
13736 case TG3_EEPROM_SB_REVISION_0:
13737 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
13738 break;
13739 case TG3_EEPROM_SB_REVISION_2:
13740 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
13741 break;
13742 case TG3_EEPROM_SB_REVISION_3:
13743 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
13744 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000013745 case TG3_EEPROM_SB_REVISION_4:
13746 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
13747 break;
13748 case TG3_EEPROM_SB_REVISION_5:
13749 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
13750 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000013751 case TG3_EEPROM_SB_REVISION_6:
13752 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
13753 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013754 default:
13755 return;
13756 }
13757
Matt Carlsone4f34112009-02-25 14:25:00 +000013758 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080013759 return;
13760
13761 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
13762 TG3_EEPROM_SB_EDH_BLD_SHFT;
13763 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
13764 TG3_EEPROM_SB_EDH_MAJ_SHFT;
13765 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
13766
13767 if (minor > 99 || build > 26)
13768 return;
13769
Matt Carlson75f99362010-04-05 10:19:24 +000013770 offset = strlen(tp->fw_ver);
13771 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
13772 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013773
13774 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000013775 offset = strlen(tp->fw_ver);
13776 if (offset < TG3_VER_SIZE - 1)
13777 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013778 }
13779}
13780
Matt Carlsonacd9c112009-02-25 14:26:33 +000013781static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080013782{
13783 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013784 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070013785
13786 for (offset = TG3_NVM_DIR_START;
13787 offset < TG3_NVM_DIR_END;
13788 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013789 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013790 return;
13791
13792 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
13793 break;
13794 }
13795
13796 if (offset == TG3_NVM_DIR_END)
13797 return;
13798
Joe Perches63c3a662011-04-26 08:12:10 +000013799 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013800 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000013801 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013802 return;
13803
Matt Carlsone4f34112009-02-25 14:25:00 +000013804 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013805 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013806 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013807 return;
13808
13809 offset += val - start;
13810
Matt Carlsonacd9c112009-02-25 14:26:33 +000013811 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013812
Matt Carlsonacd9c112009-02-25 14:26:33 +000013813 tp->fw_ver[vlen++] = ',';
13814 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070013815
13816 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000013817 __be32 v;
13818 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013819 return;
13820
Al Virob9fc7dc2007-12-17 22:59:57 -080013821 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013822
Matt Carlsonacd9c112009-02-25 14:26:33 +000013823 if (vlen > TG3_VER_SIZE - sizeof(v)) {
13824 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013825 break;
13826 }
13827
Matt Carlsonacd9c112009-02-25 14:26:33 +000013828 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
13829 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013830 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000013831}
13832
Matt Carlson7fd76442009-02-25 14:27:20 +000013833static void __devinit tg3_read_dash_ver(struct tg3 *tp)
13834{
13835 int vlen;
13836 u32 apedata;
Matt Carlsonecc79642010-08-02 11:26:01 +000013837 char *fwtype;
Matt Carlson7fd76442009-02-25 14:27:20 +000013838
Joe Perches63c3a662011-04-26 08:12:10 +000013839 if (!tg3_flag(tp, ENABLE_APE) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000013840 return;
13841
13842 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
13843 if (apedata != APE_SEG_SIG_MAGIC)
13844 return;
13845
13846 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
13847 if (!(apedata & APE_FW_STATUS_READY))
13848 return;
13849
13850 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
13851
Matt Carlsondc6d0742010-09-15 08:59:55 +000013852 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI) {
Joe Perches63c3a662011-04-26 08:12:10 +000013853 tg3_flag_set(tp, APE_HAS_NCSI);
Matt Carlsonecc79642010-08-02 11:26:01 +000013854 fwtype = "NCSI";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013855 } else {
Matt Carlsonecc79642010-08-02 11:26:01 +000013856 fwtype = "DASH";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013857 }
Matt Carlsonecc79642010-08-02 11:26:01 +000013858
Matt Carlson7fd76442009-02-25 14:27:20 +000013859 vlen = strlen(tp->fw_ver);
13860
Matt Carlsonecc79642010-08-02 11:26:01 +000013861 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
13862 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000013863 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
13864 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
13865 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
13866 (apedata & APE_FW_VERSION_BLDMSK));
13867}
13868
Matt Carlsonacd9c112009-02-25 14:26:33 +000013869static void __devinit tg3_read_fw_ver(struct tg3 *tp)
13870{
13871 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000013872 bool vpd_vers = false;
13873
13874 if (tp->fw_ver[0] != 0)
13875 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013876
Joe Perches63c3a662011-04-26 08:12:10 +000013877 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000013878 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000013879 return;
13880 }
13881
Matt Carlsonacd9c112009-02-25 14:26:33 +000013882 if (tg3_nvram_read(tp, 0, &val))
13883 return;
13884
13885 if (val == TG3_EEPROM_MAGIC)
13886 tg3_read_bc_ver(tp);
13887 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
13888 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013889 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
13890 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013891 else
13892 return;
13893
Matt Carlsonc9cab242011-07-13 09:27:27 +000013894 if (vpd_vers)
Matt Carlson75f99362010-04-05 10:19:24 +000013895 goto done;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013896
Matt Carlsonc9cab242011-07-13 09:27:27 +000013897 if (tg3_flag(tp, ENABLE_APE)) {
13898 if (tg3_flag(tp, ENABLE_ASF))
13899 tg3_read_dash_ver(tp);
13900 } else if (tg3_flag(tp, ENABLE_ASF)) {
13901 tg3_read_mgmtfw_ver(tp);
13902 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070013903
Matt Carlson75f99362010-04-05 10:19:24 +000013904done:
Matt Carlson9c8a6202007-10-21 16:16:08 -070013905 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080013906}
13907
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013908static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
13909{
Joe Perches63c3a662011-04-26 08:12:10 +000013910 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013911 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000013912 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013913 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013914 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000013915 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013916}
13917
Matt Carlson41434702011-03-09 16:58:22 +000013918static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080013919 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
13920 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
13921 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
13922 { },
13923};
13924
Matt Carlson16c7fa72012-02-13 10:20:10 +000013925static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
13926{
13927 struct pci_dev *peer;
13928 unsigned int func, devnr = tp->pdev->devfn & ~7;
13929
13930 for (func = 0; func < 8; func++) {
13931 peer = pci_get_slot(tp->pdev->bus, devnr | func);
13932 if (peer && peer != tp->pdev)
13933 break;
13934 pci_dev_put(peer);
13935 }
13936 /* 5704 can be configured in single-port mode, set peer to
13937 * tp->pdev in that case.
13938 */
13939 if (!peer) {
13940 peer = tp->pdev;
13941 return peer;
13942 }
13943
13944 /*
13945 * We don't need to keep the refcount elevated; there's no way
13946 * to remove one half of this device without removing the other
13947 */
13948 pci_dev_put(peer);
13949
13950 return peer;
13951}
13952
Matt Carlson42b123b2012-02-13 15:20:13 +000013953static void __devinit tg3_detect_asic_rev(struct tg3 *tp, u32 misc_ctrl_reg)
13954{
13955 tp->pci_chip_rev_id = misc_ctrl_reg >> MISC_HOST_CTRL_CHIPREV_SHIFT;
13956 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
13957 u32 reg;
13958
13959 /* All devices that use the alternate
13960 * ASIC REV location have a CPMU.
13961 */
13962 tg3_flag_set(tp, CPMU_PRESENT);
13963
13964 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
13965 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
13966 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
13967 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
13968 reg = TG3PCI_GEN2_PRODID_ASICREV;
13969 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
13970 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
13971 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
13972 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
13973 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13974 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
13975 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
13976 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
13977 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
13978 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
13979 reg = TG3PCI_GEN15_PRODID_ASICREV;
13980 else
13981 reg = TG3PCI_PRODID_ASICREV;
13982
13983 pci_read_config_dword(tp->pdev, reg, &tp->pci_chip_rev_id);
13984 }
13985
13986 /* Wrong chip ID in 5752 A0. This code can be removed later
13987 * as A0 is not in production.
13988 */
13989 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
13990 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
13991
13992 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13993 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13994 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
13995 tg3_flag_set(tp, 5717_PLUS);
13996
13997 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
13998 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
13999 tg3_flag_set(tp, 57765_CLASS);
14000
14001 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS))
14002 tg3_flag_set(tp, 57765_PLUS);
14003
14004 /* Intentionally exclude ASIC_REV_5906 */
14005 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
14006 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
14007 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14008 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
14009 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14010 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
14011 tg3_flag(tp, 57765_PLUS))
14012 tg3_flag_set(tp, 5755_PLUS);
14013
14014 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
14015 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
14016 tg3_flag_set(tp, 5780_CLASS);
14017
14018 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14019 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14020 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
14021 tg3_flag(tp, 5755_PLUS) ||
14022 tg3_flag(tp, 5780_CLASS))
14023 tg3_flag_set(tp, 5750_PLUS);
14024
14025 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14026 tg3_flag(tp, 5750_PLUS))
14027 tg3_flag_set(tp, 5705_PLUS);
14028}
14029
Linus Torvalds1da177e2005-04-16 15:20:36 -070014030static int __devinit tg3_get_invariants(struct tg3 *tp)
14031{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014032 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014033 u32 pci_state_reg, grc_misc_cfg;
14034 u32 val;
14035 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014036 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014037
Linus Torvalds1da177e2005-04-16 15:20:36 -070014038 /* Force memory write invalidate off. If we leave it on,
14039 * then on 5700_BX chips we have to enable a workaround.
14040 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
14041 * to match the cacheline size. The Broadcom driver have this
14042 * workaround but turns MWI off all the times so never uses
14043 * it. This seems to suggest that the workaround is insufficient.
14044 */
14045 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14046 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
14047 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14048
Matt Carlson16821282011-07-13 09:27:28 +000014049 /* Important! -- Make sure register accesses are byteswapped
14050 * correctly. Also, for those chips that require it, make
14051 * sure that indirect register accesses are enabled before
14052 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014053 */
14054 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14055 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000014056 tp->misc_host_ctrl |= (misc_ctrl_reg &
14057 MISC_HOST_CTRL_CHIPREV);
14058 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14059 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014060
Matt Carlson42b123b2012-02-13 15:20:13 +000014061 tg3_detect_asic_rev(tp, misc_ctrl_reg);
Michael Chanff645be2005-04-21 17:09:53 -070014062
Michael Chan68929142005-08-09 20:17:14 -070014063 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
14064 * we need to disable memory and use config. cycles
14065 * only to access all registers. The 5702/03 chips
14066 * can mistakenly decode the special cycles from the
14067 * ICH chipsets as memory write cycles, causing corruption
14068 * of register and memory space. Only certain ICH bridges
14069 * will drive special cycles with non-zero data during the
14070 * address phase which can fall within the 5703's address
14071 * range. This is not an ICH bug as the PCI spec allows
14072 * non-zero address during special cycles. However, only
14073 * these ICH bridges are known to drive non-zero addresses
14074 * during special cycles.
14075 *
14076 * Since special cycles do not cross PCI bridges, we only
14077 * enable this workaround if the 5703 is on the secondary
14078 * bus of these ICH bridges.
14079 */
14080 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
14081 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
14082 static struct tg3_dev_id {
14083 u32 vendor;
14084 u32 device;
14085 u32 rev;
14086 } ich_chipsets[] = {
14087 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
14088 PCI_ANY_ID },
14089 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
14090 PCI_ANY_ID },
14091 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
14092 0xa },
14093 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
14094 PCI_ANY_ID },
14095 { },
14096 };
14097 struct tg3_dev_id *pci_id = &ich_chipsets[0];
14098 struct pci_dev *bridge = NULL;
14099
14100 while (pci_id->vendor != 0) {
14101 bridge = pci_get_device(pci_id->vendor, pci_id->device,
14102 bridge);
14103 if (!bridge) {
14104 pci_id++;
14105 continue;
14106 }
14107 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070014108 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070014109 continue;
14110 }
14111 if (bridge->subordinate &&
14112 (bridge->subordinate->number ==
14113 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014114 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070014115 pci_dev_put(bridge);
14116 break;
14117 }
14118 }
14119 }
14120
Matt Carlson6ff6f812011-05-19 12:12:54 +000014121 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070014122 static struct tg3_dev_id {
14123 u32 vendor;
14124 u32 device;
14125 } bridge_chipsets[] = {
14126 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
14127 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
14128 { },
14129 };
14130 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
14131 struct pci_dev *bridge = NULL;
14132
14133 while (pci_id->vendor != 0) {
14134 bridge = pci_get_device(pci_id->vendor,
14135 pci_id->device,
14136 bridge);
14137 if (!bridge) {
14138 pci_id++;
14139 continue;
14140 }
14141 if (bridge->subordinate &&
14142 (bridge->subordinate->number <=
14143 tp->pdev->bus->number) &&
14144 (bridge->subordinate->subordinate >=
14145 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014146 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070014147 pci_dev_put(bridge);
14148 break;
14149 }
14150 }
14151 }
14152
Michael Chan4a29cc22006-03-19 13:21:12 -080014153 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
14154 * DMA addresses > 40-bit. This bridge may have other additional
14155 * 57xx devices behind it in some 4-port NIC designs for example.
14156 * Any tg3 device found behind the bridge will also need the 40-bit
14157 * DMA workaround.
14158 */
Matt Carlson42b123b2012-02-13 15:20:13 +000014159 if (tg3_flag(tp, 5780_CLASS)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014160 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070014161 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000014162 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080014163 struct pci_dev *bridge = NULL;
14164
14165 do {
14166 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
14167 PCI_DEVICE_ID_SERVERWORKS_EPB,
14168 bridge);
14169 if (bridge && bridge->subordinate &&
14170 (bridge->subordinate->number <=
14171 tp->pdev->bus->number) &&
14172 (bridge->subordinate->subordinate >=
14173 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014174 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080014175 pci_dev_put(bridge);
14176 break;
14177 }
14178 } while (bridge);
14179 }
Michael Chan4cf78e42005-07-25 12:29:19 -070014180
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014181 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Matt Carlson3a1e19d2011-07-13 09:27:32 +000014182 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070014183 tp->pdev_peer = tg3_find_peer(tp);
14184
Matt Carlson507399f2009-11-13 13:03:37 +000014185 /* Determine TSO capabilities */
Matt Carlsona0512942011-07-27 14:20:54 +000014186 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000014187 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000014188 else if (tg3_flag(tp, 57765_PLUS))
14189 tg3_flag_set(tp, HW_TSO_3);
14190 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000014191 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000014192 tg3_flag_set(tp, HW_TSO_2);
14193 else if (tg3_flag(tp, 5750_PLUS)) {
14194 tg3_flag_set(tp, HW_TSO_1);
14195 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014196 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
14197 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000014198 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014199 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14200 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
14201 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014202 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014203 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
14204 tp->fw_needed = FIRMWARE_TG3TSO5;
14205 else
14206 tp->fw_needed = FIRMWARE_TG3TSO;
14207 }
14208
Matt Carlsondabc5c62011-05-19 12:12:52 +000014209 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014210 if (tg3_flag(tp, HW_TSO_1) ||
14211 tg3_flag(tp, HW_TSO_2) ||
14212 tg3_flag(tp, HW_TSO_3) ||
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014213 tp->fw_needed) {
14214 /* For firmware TSO, assume ASF is disabled.
14215 * We'll disable TSO later if we discover ASF
14216 * is enabled in tg3_get_eeprom_hw_cfg().
14217 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000014218 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014219 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000014220 tg3_flag_clear(tp, TSO_CAPABLE);
14221 tg3_flag_clear(tp, TSO_BUG);
14222 tp->fw_needed = NULL;
14223 }
14224
14225 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
14226 tp->fw_needed = FIRMWARE_TG3;
14227
Matt Carlson507399f2009-11-13 13:03:37 +000014228 tp->irq_max = 1;
14229
Joe Perches63c3a662011-04-26 08:12:10 +000014230 if (tg3_flag(tp, 5750_PLUS)) {
14231 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014232 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
14233 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
14234 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
14235 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
14236 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000014237 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014238
Joe Perches63c3a662011-04-26 08:12:10 +000014239 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070014240 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014241 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070014242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014243
Joe Perches63c3a662011-04-26 08:12:10 +000014244 if (tg3_flag(tp, 57765_PLUS)) {
14245 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000014246 tp->irq_max = TG3_IRQ_MAX_VECS;
Matt Carlson90415472011-12-16 13:33:23 +000014247 tg3_rss_init_dflt_indir_tbl(tp);
Matt Carlson507399f2009-11-13 13:03:37 +000014248 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014249 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000014250
Matt Carlson2ffcc982011-05-19 12:12:44 +000014251 if (tg3_flag(tp, 5755_PLUS))
Joe Perches63c3a662011-04-26 08:12:10 +000014252 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014253
Matt Carlsone31aa982011-07-27 14:20:53 +000014254 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000014255 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlsone31aa982011-07-27 14:20:53 +000014256
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +000014257 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14258 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14259 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000014260 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000014261
Joe Perches63c3a662011-04-26 08:12:10 +000014262 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlsona0512942011-07-27 14:20:54 +000014263 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000014264 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000014265
Joe Perches63c3a662011-04-26 08:12:10 +000014266 if (!tg3_flag(tp, 5705_PLUS) ||
14267 tg3_flag(tp, 5780_CLASS) ||
14268 tg3_flag(tp, USE_JUMBO_BDFLAG))
14269 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070014270
Matt Carlson52f44902008-11-21 17:17:04 -080014271 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14272 &pci_state_reg);
14273
Jon Mason708ebb3a2011-06-27 12:56:50 +000014274 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014275 u16 lnkctl;
14276
Joe Perches63c3a662011-04-26 08:12:10 +000014277 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080014278
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014279 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +000014280 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014281 &lnkctl);
14282 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Matt Carlson7196cd62011-05-19 16:02:44 +000014283 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
14284 ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014285 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000014286 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000014287 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014288 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014289 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000014290 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
14291 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000014292 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b0592010-01-20 16:58:02 +000014293 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014294 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080014295 }
Matt Carlson52f44902008-11-21 17:17:04 -080014296 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000014297 /* BCM5785 devices are effectively PCIe devices, and should
14298 * follow PCIe codepaths, but do not have a PCIe capabilities
14299 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000014300 */
Joe Perches63c3a662011-04-26 08:12:10 +000014301 tg3_flag_set(tp, PCI_EXPRESS);
14302 } else if (!tg3_flag(tp, 5705_PLUS) ||
14303 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080014304 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
14305 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000014306 dev_err(&tp->pdev->dev,
14307 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080014308 return -EIO;
14309 }
14310
14311 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000014312 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080014313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014314
Michael Chan399de502005-10-03 14:02:39 -070014315 /* If we have an AMD 762 or VIA K8T800 chipset, write
14316 * reordering to the mailbox registers done by the host
14317 * controller can cause major troubles. We read back from
14318 * every mailbox register write to force the writes to be
14319 * posted to the chip in order.
14320 */
Matt Carlson41434702011-03-09 16:58:22 +000014321 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014322 !tg3_flag(tp, PCI_EXPRESS))
14323 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070014324
Matt Carlson69fc4052008-12-21 20:19:57 -080014325 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
14326 &tp->pci_cacheline_sz);
14327 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14328 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014329 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14330 tp->pci_lat_timer < 64) {
14331 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080014332 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14333 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014334 }
14335
Matt Carlson16821282011-07-13 09:27:28 +000014336 /* Important! -- It is critical that the PCI-X hw workaround
14337 * situation is decided before the first MMIO register access.
14338 */
Matt Carlson52f44902008-11-21 17:17:04 -080014339 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
14340 /* 5700 BX chips need to have their TX producer index
14341 * mailboxes written twice to workaround a bug.
14342 */
Joe Perches63c3a662011-04-26 08:12:10 +000014343 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070014344
Matt Carlson52f44902008-11-21 17:17:04 -080014345 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014346 *
14347 * The workaround is to use indirect register accesses
14348 * for all chip writes not to mailbox registers.
14349 */
Joe Perches63c3a662011-04-26 08:12:10 +000014350 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014351 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014352
Joe Perches63c3a662011-04-26 08:12:10 +000014353 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014354
14355 /* The chip can have it's power management PCI config
14356 * space registers clobbered due to this bug.
14357 * So explicitly force the chip into D0 here.
14358 */
Matt Carlson9974a352007-10-07 23:27:28 -070014359 pci_read_config_dword(tp->pdev,
14360 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014361 &pm_reg);
14362 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
14363 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070014364 pci_write_config_dword(tp->pdev,
14365 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014366 pm_reg);
14367
14368 /* Also, force SERR#/PERR# in PCI command. */
14369 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14370 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
14371 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14372 }
14373 }
14374
Linus Torvalds1da177e2005-04-16 15:20:36 -070014375 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014376 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014377 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014378 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014379
14380 /* Chip-specific fixup from Broadcom driver */
14381 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
14382 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
14383 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
14384 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
14385 }
14386
Michael Chan1ee582d2005-08-09 20:16:46 -070014387 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070014388 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014389 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070014390 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070014391 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014392 tp->write32_tx_mbox = tg3_write32;
14393 tp->write32_rx_mbox = tg3_write32;
14394
14395 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000014396 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070014397 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014398 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014399 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070014400 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
14401 /*
14402 * Back to back register writes can cause problems on these
14403 * chips, the workaround is to read back all reg writes
14404 * except those to mailbox regs.
14405 *
14406 * See tg3_write_indirect_reg32().
14407 */
Michael Chan1ee582d2005-08-09 20:16:46 -070014408 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014409 }
14410
Joe Perches63c3a662011-04-26 08:12:10 +000014411 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070014412 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000014413 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070014414 tp->write32_rx_mbox = tg3_write_flush_reg32;
14415 }
Michael Chan20094932005-08-09 20:16:32 -070014416
Joe Perches63c3a662011-04-26 08:12:10 +000014417 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070014418 tp->read32 = tg3_read_indirect_reg32;
14419 tp->write32 = tg3_write_indirect_reg32;
14420 tp->read32_mbox = tg3_read_indirect_mbox;
14421 tp->write32_mbox = tg3_write_indirect_mbox;
14422 tp->write32_tx_mbox = tg3_write_indirect_mbox;
14423 tp->write32_rx_mbox = tg3_write_indirect_mbox;
14424
14425 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014426 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014427
14428 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14429 pci_cmd &= ~PCI_COMMAND_MEMORY;
14430 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14431 }
Michael Chanb5d37722006-09-27 16:06:21 -070014432 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14433 tp->read32_mbox = tg3_read32_mbox_5906;
14434 tp->write32_mbox = tg3_write32_mbox_5906;
14435 tp->write32_tx_mbox = tg3_write32_mbox_5906;
14436 tp->write32_rx_mbox = tg3_write32_mbox_5906;
14437 }
Michael Chan68929142005-08-09 20:17:14 -070014438
Michael Chanbbadf502006-04-06 21:46:34 -070014439 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014440 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070014441 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070014442 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000014443 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070014444
Matt Carlson16821282011-07-13 09:27:28 +000014445 /* The memory arbiter has to be enabled in order for SRAM accesses
14446 * to succeed. Normally on powerup the tg3 chip firmware will make
14447 * sure it is enabled, but other entities such as system netboot
14448 * code might disable it.
14449 */
14450 val = tr32(MEMARB_MODE);
14451 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
14452
Matt Carlson9dc5e342011-11-04 09:15:02 +000014453 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
14454 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
14455 tg3_flag(tp, 5780_CLASS)) {
14456 if (tg3_flag(tp, PCIX_MODE)) {
14457 pci_read_config_dword(tp->pdev,
14458 tp->pcix_cap + PCI_X_STATUS,
14459 &val);
14460 tp->pci_fn = val & 0x7;
14461 }
14462 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
14463 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14464 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14465 NIC_SRAM_CPMUSTAT_SIG) {
14466 tp->pci_fn = val & TG3_CPMU_STATUS_FMSK_5717;
14467 tp->pci_fn = tp->pci_fn ? 1 : 0;
14468 }
14469 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14470 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
14471 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14472 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14473 NIC_SRAM_CPMUSTAT_SIG) {
14474 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
14475 TG3_CPMU_STATUS_FSHFT_5719;
14476 }
Matt Carlson69f11c92011-07-13 09:27:30 +000014477 }
14478
Michael Chan7d0c41e2005-04-21 17:06:20 -070014479 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000014480 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070014481 * determined before calling tg3_set_power_state() so that
14482 * we know whether or not to switch out of Vaux power.
14483 * When the flag is set, it means that GPIO1 is used for eeprom
14484 * write protect and also implies that it is a LOM where GPIOs
14485 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014486 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070014487 tg3_get_eeprom_hw_cfg(tp);
14488
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014489 if (tp->fw_needed && tg3_flag(tp, ENABLE_ASF)) {
14490 tg3_flag_clear(tp, TSO_CAPABLE);
14491 tg3_flag_clear(tp, TSO_BUG);
14492 tp->fw_needed = NULL;
14493 }
14494
Joe Perches63c3a662011-04-26 08:12:10 +000014495 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014496 /* Allow reads and writes to the
14497 * APE register and memory space.
14498 */
14499 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000014500 PCISTATE_ALLOW_APE_SHMEM_WR |
14501 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014502 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
14503 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000014504
14505 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014506 }
14507
Matt Carlson16821282011-07-13 09:27:28 +000014508 /* Set up tp->grc_local_ctrl before calling
14509 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
14510 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070014511 * It is also used as eeprom write protect on LOMs.
14512 */
14513 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014514 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014515 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070014516 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
14517 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070014518 /* Unused GPIO3 must be driven as output on 5752 because there
14519 * are no pull-up resistors on unused GPIO pins.
14520 */
14521 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
14522 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070014523
Matt Carlson321d32a2008-11-21 17:22:19 -080014524 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000014525 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014526 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080014527 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
14528
Matt Carlson8d519ab2009-04-20 06:58:01 +000014529 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
14530 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014531 /* Turn off the debug UART. */
14532 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014533 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014534 /* Keep VMain power. */
14535 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
14536 GRC_LCLCTRL_GPIO_OUTPUT0;
14537 }
14538
Matt Carlson16821282011-07-13 09:27:28 +000014539 /* Switch out of Vaux if it is a NIC */
14540 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014541
Linus Torvalds1da177e2005-04-16 15:20:36 -070014542 /* Derive initial jumbo mode from MTU assigned in
14543 * ether_setup() via the alloc_etherdev() call
14544 */
Joe Perches63c3a662011-04-26 08:12:10 +000014545 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
14546 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014547
14548 /* Determine WakeOnLan speed to use. */
14549 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14550 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
14551 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
14552 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000014553 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014554 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014555 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014556 }
14557
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014558 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014559 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014560
Linus Torvalds1da177e2005-04-16 15:20:36 -070014561 /* A few boards don't want Ethernet@WireSpeed phy feature */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014562 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14563 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014564 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070014565 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014566 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
14567 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14568 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014569
14570 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
14571 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014572 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014573 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014574 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014575
Joe Perches63c3a662011-04-26 08:12:10 +000014576 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014577 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080014578 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014579 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014580 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070014581 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070014582 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070014583 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14584 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080014585 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
14586 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014587 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080014588 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014589 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080014590 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014591 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070014592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014593
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014594 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14595 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
14596 tp->phy_otp = tg3_read_otp_phycfg(tp);
14597 if (tp->phy_otp == 0)
14598 tp->phy_otp = TG3_OTP_DEFAULT;
14599 }
14600
Joe Perches63c3a662011-04-26 08:12:10 +000014601 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070014602 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
14603 else
14604 tp->mi_mode = MAC_MI_MODE_BASE;
14605
Linus Torvalds1da177e2005-04-16 15:20:36 -070014606 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014607 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
14608 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
14609 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
14610
Matt Carlson4d958472011-04-20 07:57:35 +000014611 /* Set these bits to enable statistics workaround. */
14612 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14613 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
14614 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
14615 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
14616 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
14617 }
14618
Matt Carlson321d32a2008-11-21 17:22:19 -080014619 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14620 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000014621 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070014622
Matt Carlson158d7ab2008-05-29 01:37:54 -070014623 err = tg3_mdio_init(tp);
14624 if (err)
14625 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014626
14627 /* Initialize data/descriptor byte/word swapping. */
14628 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000014629 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14630 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
14631 GRC_MODE_WORD_SWAP_B2HRX_DATA |
14632 GRC_MODE_B2HRX_ENABLE |
14633 GRC_MODE_HTX2B_ENABLE |
14634 GRC_MODE_HOST_STACKUP);
14635 else
14636 val &= GRC_MODE_HOST_STACKUP;
14637
Linus Torvalds1da177e2005-04-16 15:20:36 -070014638 tw32(GRC_MODE, val | tp->grc_mode);
14639
14640 tg3_switch_clocks(tp);
14641
14642 /* Clear this out for sanity. */
14643 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
14644
14645 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14646 &pci_state_reg);
14647 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014648 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014649 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
14650
14651 if (chiprevid == CHIPREV_ID_5701_A0 ||
14652 chiprevid == CHIPREV_ID_5701_B0 ||
14653 chiprevid == CHIPREV_ID_5701_B2 ||
14654 chiprevid == CHIPREV_ID_5701_B5) {
14655 void __iomem *sram_base;
14656
14657 /* Write some dummy words into the SRAM status block
14658 * area, see if it reads back correctly. If the return
14659 * value is bad, force enable the PCIX workaround.
14660 */
14661 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
14662
14663 writel(0x00000000, sram_base);
14664 writel(0x00000000, sram_base + 4);
14665 writel(0xffffffff, sram_base + 4);
14666 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000014667 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014668 }
14669 }
14670
14671 udelay(50);
14672 tg3_nvram_init(tp);
14673
14674 grc_misc_cfg = tr32(GRC_MISC_CFG);
14675 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
14676
Linus Torvalds1da177e2005-04-16 15:20:36 -070014677 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14678 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
14679 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000014680 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014681
Joe Perches63c3a662011-04-26 08:12:10 +000014682 if (!tg3_flag(tp, IS_5788) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +000014683 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014684 tg3_flag_set(tp, TAGGED_STATUS);
14685 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070014686 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
14687 HOSTCC_MODE_CLRTICK_TXBD);
14688
14689 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
14690 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14691 tp->misc_host_ctrl);
14692 }
14693
Matt Carlson3bda1252008-08-15 14:08:22 -070014694 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000014695 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000014696 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070014697 else
Matt Carlson6e01b202011-08-19 13:58:20 +000014698 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070014699
Linus Torvalds1da177e2005-04-16 15:20:36 -070014700 /* these are limited to 10/100 only */
14701 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14702 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
14703 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14704 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14705 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
14706 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
14707 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
14708 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14709 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080014710 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
14711 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014712 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000014713 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14714 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014715 (tp->phy_flags & TG3_PHYFLG_IS_FET))
14716 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014717
14718 err = tg3_phy_probe(tp);
14719 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014720 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014721 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014722 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014723 }
14724
Matt Carlson184b8902010-04-05 10:19:25 +000014725 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080014726 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014727
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014728 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
14729 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014730 } else {
14731 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014732 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014733 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014734 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014735 }
14736
14737 /* 5700 {AX,BX} chips have a broken status block link
14738 * change bit implementation, so we must use the
14739 * status register in those cases.
14740 */
14741 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014742 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014743 else
Joe Perches63c3a662011-04-26 08:12:10 +000014744 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014745
14746 /* The led_ctrl is set during tg3_phy_probe, here we might
14747 * have to force the link status polling mechanism based
14748 * upon subsystem IDs.
14749 */
14750 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070014751 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014752 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
14753 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000014754 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014755 }
14756
14757 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014758 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000014759 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014760 else
Joe Perches63c3a662011-04-26 08:12:10 +000014761 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014762
Eric Dumazet9205fd92011-11-18 06:47:01 +000014763 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014764 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014765 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014766 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000014767 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014768#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000014769 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014770#endif
14771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014772
Matt Carlson2c49a442010-09-30 10:34:35 +000014773 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
14774 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014775 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
14776
Matt Carlson2c49a442010-09-30 10:34:35 +000014777 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070014778
14779 /* Increment the rx prod index on the rx std ring by at most
14780 * 8 for these chips to workaround hw errata.
14781 */
14782 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14783 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14784 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
14785 tp->rx_std_max_post = 8;
14786
Joe Perches63c3a662011-04-26 08:12:10 +000014787 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070014788 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
14789 PCIE_PWR_MGMT_L1_THRESH_MSK;
14790
Linus Torvalds1da177e2005-04-16 15:20:36 -070014791 return err;
14792}
14793
David S. Miller49b6e95f2007-03-29 01:38:42 -070014794#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014795static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
14796{
14797 struct net_device *dev = tp->dev;
14798 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014799 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070014800 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014801 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014802
David S. Miller49b6e95f2007-03-29 01:38:42 -070014803 addr = of_get_property(dp, "local-mac-address", &len);
14804 if (addr && len == 6) {
14805 memcpy(dev->dev_addr, addr, 6);
14806 memcpy(dev->perm_addr, dev->dev_addr, 6);
14807 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014808 }
14809 return -ENODEV;
14810}
14811
14812static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
14813{
14814 struct net_device *dev = tp->dev;
14815
14816 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070014817 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014818 return 0;
14819}
14820#endif
14821
14822static int __devinit tg3_get_device_address(struct tg3 *tp)
14823{
14824 struct net_device *dev = tp->dev;
14825 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080014826 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014827
David S. Miller49b6e95f2007-03-29 01:38:42 -070014828#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014829 if (!tg3_get_macaddr_sparc(tp))
14830 return 0;
14831#endif
14832
14833 mac_offset = 0x7c;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014834 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014835 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014836 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
14837 mac_offset = 0xcc;
14838 if (tg3_nvram_lock(tp))
14839 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
14840 else
14841 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000014842 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000014843 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014844 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000014845 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000014846 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014847 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014848 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014849
14850 /* First try to get it from MAC address mailbox. */
14851 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
14852 if ((hi >> 16) == 0x484b) {
14853 dev->dev_addr[0] = (hi >> 8) & 0xff;
14854 dev->dev_addr[1] = (hi >> 0) & 0xff;
14855
14856 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
14857 dev->dev_addr[2] = (lo >> 24) & 0xff;
14858 dev->dev_addr[3] = (lo >> 16) & 0xff;
14859 dev->dev_addr[4] = (lo >> 8) & 0xff;
14860 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014861
Michael Chan008652b2006-03-27 23:14:53 -080014862 /* Some old bootcode may report a 0 MAC address in SRAM */
14863 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
14864 }
14865 if (!addr_ok) {
14866 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000014867 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000014868 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000014869 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070014870 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
14871 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080014872 }
14873 /* Finally just fetch it out of the MAC control regs. */
14874 else {
14875 hi = tr32(MAC_ADDR_0_HIGH);
14876 lo = tr32(MAC_ADDR_0_LOW);
14877
14878 dev->dev_addr[5] = lo & 0xff;
14879 dev->dev_addr[4] = (lo >> 8) & 0xff;
14880 dev->dev_addr[3] = (lo >> 16) & 0xff;
14881 dev->dev_addr[2] = (lo >> 24) & 0xff;
14882 dev->dev_addr[1] = hi & 0xff;
14883 dev->dev_addr[0] = (hi >> 8) & 0xff;
14884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014885 }
14886
14887 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070014888#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014889 if (!tg3_get_default_macaddr_sparc(tp))
14890 return 0;
14891#endif
14892 return -EINVAL;
14893 }
John W. Linville2ff43692005-09-12 14:44:20 -070014894 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014895 return 0;
14896}
14897
David S. Miller59e6b432005-05-18 22:50:10 -070014898#define BOUNDARY_SINGLE_CACHELINE 1
14899#define BOUNDARY_MULTI_CACHELINE 2
14900
14901static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
14902{
14903 int cacheline_size;
14904 u8 byte;
14905 int goal;
14906
14907 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
14908 if (byte == 0)
14909 cacheline_size = 1024;
14910 else
14911 cacheline_size = (int) byte * 4;
14912
14913 /* On 5703 and later chips, the boundary bits have no
14914 * effect.
14915 */
14916 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14917 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014918 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070014919 goto out;
14920
14921#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
14922 goal = BOUNDARY_MULTI_CACHELINE;
14923#else
14924#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
14925 goal = BOUNDARY_SINGLE_CACHELINE;
14926#else
14927 goal = 0;
14928#endif
14929#endif
14930
Joe Perches63c3a662011-04-26 08:12:10 +000014931 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014932 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
14933 goto out;
14934 }
14935
David S. Miller59e6b432005-05-18 22:50:10 -070014936 if (!goal)
14937 goto out;
14938
14939 /* PCI controllers on most RISC systems tend to disconnect
14940 * when a device tries to burst across a cache-line boundary.
14941 * Therefore, letting tg3 do so just wastes PCI bandwidth.
14942 *
14943 * Unfortunately, for PCI-E there are only limited
14944 * write-side controls for this, and thus for reads
14945 * we will still get the disconnects. We'll also waste
14946 * these PCI cycles for both read and write for chips
14947 * other than 5700 and 5701 which do not implement the
14948 * boundary bits.
14949 */
Joe Perches63c3a662011-04-26 08:12:10 +000014950 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014951 switch (cacheline_size) {
14952 case 16:
14953 case 32:
14954 case 64:
14955 case 128:
14956 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14957 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
14958 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
14959 } else {
14960 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14961 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14962 }
14963 break;
14964
14965 case 256:
14966 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
14967 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
14968 break;
14969
14970 default:
14971 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14972 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14973 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014974 }
Joe Perches63c3a662011-04-26 08:12:10 +000014975 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014976 switch (cacheline_size) {
14977 case 16:
14978 case 32:
14979 case 64:
14980 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14981 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14982 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
14983 break;
14984 }
14985 /* fallthrough */
14986 case 128:
14987 default:
14988 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14989 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
14990 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014991 }
David S. Miller59e6b432005-05-18 22:50:10 -070014992 } else {
14993 switch (cacheline_size) {
14994 case 16:
14995 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14996 val |= (DMA_RWCTRL_READ_BNDRY_16 |
14997 DMA_RWCTRL_WRITE_BNDRY_16);
14998 break;
14999 }
15000 /* fallthrough */
15001 case 32:
15002 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15003 val |= (DMA_RWCTRL_READ_BNDRY_32 |
15004 DMA_RWCTRL_WRITE_BNDRY_32);
15005 break;
15006 }
15007 /* fallthrough */
15008 case 64:
15009 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15010 val |= (DMA_RWCTRL_READ_BNDRY_64 |
15011 DMA_RWCTRL_WRITE_BNDRY_64);
15012 break;
15013 }
15014 /* fallthrough */
15015 case 128:
15016 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15017 val |= (DMA_RWCTRL_READ_BNDRY_128 |
15018 DMA_RWCTRL_WRITE_BNDRY_128);
15019 break;
15020 }
15021 /* fallthrough */
15022 case 256:
15023 val |= (DMA_RWCTRL_READ_BNDRY_256 |
15024 DMA_RWCTRL_WRITE_BNDRY_256);
15025 break;
15026 case 512:
15027 val |= (DMA_RWCTRL_READ_BNDRY_512 |
15028 DMA_RWCTRL_WRITE_BNDRY_512);
15029 break;
15030 case 1024:
15031 default:
15032 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
15033 DMA_RWCTRL_WRITE_BNDRY_1024);
15034 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070015035 }
David S. Miller59e6b432005-05-18 22:50:10 -070015036 }
15037
15038out:
15039 return val;
15040}
15041
Linus Torvalds1da177e2005-04-16 15:20:36 -070015042static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
15043{
15044 struct tg3_internal_buffer_desc test_desc;
15045 u32 sram_dma_descs;
15046 int i, ret;
15047
15048 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
15049
15050 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
15051 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
15052 tw32(RDMAC_STATUS, 0);
15053 tw32(WDMAC_STATUS, 0);
15054
15055 tw32(BUFMGR_MODE, 0);
15056 tw32(FTQ_RESET, 0);
15057
15058 test_desc.addr_hi = ((u64) buf_dma) >> 32;
15059 test_desc.addr_lo = buf_dma & 0xffffffff;
15060 test_desc.nic_mbuf = 0x00002100;
15061 test_desc.len = size;
15062
15063 /*
15064 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
15065 * the *second* time the tg3 driver was getting loaded after an
15066 * initial scan.
15067 *
15068 * Broadcom tells me:
15069 * ...the DMA engine is connected to the GRC block and a DMA
15070 * reset may affect the GRC block in some unpredictable way...
15071 * The behavior of resets to individual blocks has not been tested.
15072 *
15073 * Broadcom noted the GRC reset will also reset all sub-components.
15074 */
15075 if (to_device) {
15076 test_desc.cqid_sqid = (13 << 8) | 2;
15077
15078 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
15079 udelay(40);
15080 } else {
15081 test_desc.cqid_sqid = (16 << 8) | 7;
15082
15083 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
15084 udelay(40);
15085 }
15086 test_desc.flags = 0x00000005;
15087
15088 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
15089 u32 val;
15090
15091 val = *(((u32 *)&test_desc) + i);
15092 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
15093 sram_dma_descs + (i * sizeof(u32)));
15094 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
15095 }
15096 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
15097
Matt Carlson859a588792010-04-05 10:19:28 +000015098 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015099 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000015100 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070015101 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015102
15103 ret = -ENODEV;
15104 for (i = 0; i < 40; i++) {
15105 u32 val;
15106
15107 if (to_device)
15108 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
15109 else
15110 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
15111 if ((val & 0xffff) == sram_dma_descs) {
15112 ret = 0;
15113 break;
15114 }
15115
15116 udelay(100);
15117 }
15118
15119 return ret;
15120}
15121
David S. Millerded73402005-05-23 13:59:47 -070015122#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070015123
Matt Carlson41434702011-03-09 16:58:22 +000015124static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080015125 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
15126 { },
15127};
15128
Linus Torvalds1da177e2005-04-16 15:20:36 -070015129static int __devinit tg3_test_dma(struct tg3 *tp)
15130{
15131 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070015132 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015133 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015134
Matt Carlson4bae65c2010-11-24 08:31:52 +000015135 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
15136 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015137 if (!buf) {
15138 ret = -ENOMEM;
15139 goto out_nofree;
15140 }
15141
15142 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
15143 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
15144
David S. Miller59e6b432005-05-18 22:50:10 -070015145 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015146
Joe Perches63c3a662011-04-26 08:12:10 +000015147 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015148 goto out;
15149
Joe Perches63c3a662011-04-26 08:12:10 +000015150 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015151 /* DMA read watermark not used on PCIE */
15152 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000015153 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070015154 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
15155 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015156 tp->dma_rwctrl |= 0x003f0000;
15157 else
15158 tp->dma_rwctrl |= 0x003f000f;
15159 } else {
15160 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
15161 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
15162 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080015163 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015164
Michael Chan4a29cc22006-03-19 13:21:12 -080015165 /* If the 5704 is behind the EPB bridge, we can
15166 * do the less restrictive ONE_DMA workaround for
15167 * better performance.
15168 */
Joe Perches63c3a662011-04-26 08:12:10 +000015169 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080015170 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
15171 tp->dma_rwctrl |= 0x8000;
15172 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015173 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
15174
Michael Chan49afdeb2007-02-13 12:17:03 -080015175 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
15176 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070015177 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080015178 tp->dma_rwctrl |=
15179 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
15180 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
15181 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070015182 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
15183 /* 5780 always in PCIX mode */
15184 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070015185 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
15186 /* 5714 always in PCIX mode */
15187 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015188 } else {
15189 tp->dma_rwctrl |= 0x001b000f;
15190 }
15191 }
15192
15193 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
15194 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
15195 tp->dma_rwctrl &= 0xfffffff0;
15196
15197 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
15198 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
15199 /* Remove this if it causes problems for some boards. */
15200 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
15201
15202 /* On 5700/5701 chips, we need to set this bit.
15203 * Otherwise the chip will issue cacheline transactions
15204 * to streamable DMA memory with not all the byte
15205 * enables turned on. This is an error on several
15206 * RISC PCI controllers, in particular sparc64.
15207 *
15208 * On 5703/5704 chips, this bit has been reassigned
15209 * a different meaning. In particular, it is used
15210 * on those chips to enable a PCI-X workaround.
15211 */
15212 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
15213 }
15214
15215 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15216
15217#if 0
15218 /* Unneeded, already done by tg3_get_invariants. */
15219 tg3_switch_clocks(tp);
15220#endif
15221
Linus Torvalds1da177e2005-04-16 15:20:36 -070015222 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
15223 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
15224 goto out;
15225
David S. Miller59e6b432005-05-18 22:50:10 -070015226 /* It is best to perform DMA test with maximum write burst size
15227 * to expose the 5700/5701 write DMA bug.
15228 */
15229 saved_dma_rwctrl = tp->dma_rwctrl;
15230 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15231 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15232
Linus Torvalds1da177e2005-04-16 15:20:36 -070015233 while (1) {
15234 u32 *p = buf, i;
15235
15236 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
15237 p[i] = i;
15238
15239 /* Send the buffer to the chip. */
15240 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
15241 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000015242 dev_err(&tp->pdev->dev,
15243 "%s: Buffer write failed. err = %d\n",
15244 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015245 break;
15246 }
15247
15248#if 0
15249 /* validate data reached card RAM correctly. */
15250 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15251 u32 val;
15252 tg3_read_mem(tp, 0x2100 + (i*4), &val);
15253 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000015254 dev_err(&tp->pdev->dev,
15255 "%s: Buffer corrupted on device! "
15256 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015257 /* ret = -ENODEV here? */
15258 }
15259 p[i] = 0;
15260 }
15261#endif
15262 /* Now read it back. */
15263 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
15264 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000015265 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
15266 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015267 break;
15268 }
15269
15270 /* Verify it. */
15271 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15272 if (p[i] == i)
15273 continue;
15274
David S. Miller59e6b432005-05-18 22:50:10 -070015275 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15276 DMA_RWCTRL_WRITE_BNDRY_16) {
15277 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015278 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
15279 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15280 break;
15281 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000015282 dev_err(&tp->pdev->dev,
15283 "%s: Buffer corrupted on read back! "
15284 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015285 ret = -ENODEV;
15286 goto out;
15287 }
15288 }
15289
15290 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
15291 /* Success. */
15292 ret = 0;
15293 break;
15294 }
15295 }
David S. Miller59e6b432005-05-18 22:50:10 -070015296 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15297 DMA_RWCTRL_WRITE_BNDRY_16) {
15298 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070015299 * now look for chipsets that are known to expose the
15300 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070015301 */
Matt Carlson41434702011-03-09 16:58:22 +000015302 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015303 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15304 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000015305 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015306 /* Safe to use the calculated DMA boundary. */
15307 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000015308 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070015309
David S. Miller59e6b432005-05-18 22:50:10 -070015310 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015312
15313out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000015314 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015315out_nofree:
15316 return ret;
15317}
15318
Linus Torvalds1da177e2005-04-16 15:20:36 -070015319static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
15320{
Joe Perches63c3a662011-04-26 08:12:10 +000015321 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000015322 tp->bufmgr_config.mbuf_read_dma_low_water =
15323 DEFAULT_MB_RDMA_LOW_WATER_5705;
15324 tp->bufmgr_config.mbuf_mac_rx_low_water =
15325 DEFAULT_MB_MACRX_LOW_WATER_57765;
15326 tp->bufmgr_config.mbuf_high_water =
15327 DEFAULT_MB_HIGH_WATER_57765;
15328
15329 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15330 DEFAULT_MB_RDMA_LOW_WATER_5705;
15331 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15332 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
15333 tp->bufmgr_config.mbuf_high_water_jumbo =
15334 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000015335 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070015336 tp->bufmgr_config.mbuf_read_dma_low_water =
15337 DEFAULT_MB_RDMA_LOW_WATER_5705;
15338 tp->bufmgr_config.mbuf_mac_rx_low_water =
15339 DEFAULT_MB_MACRX_LOW_WATER_5705;
15340 tp->bufmgr_config.mbuf_high_water =
15341 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070015342 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
15343 tp->bufmgr_config.mbuf_mac_rx_low_water =
15344 DEFAULT_MB_MACRX_LOW_WATER_5906;
15345 tp->bufmgr_config.mbuf_high_water =
15346 DEFAULT_MB_HIGH_WATER_5906;
15347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015348
Michael Chanfdfec1722005-07-25 12:31:48 -070015349 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15350 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
15351 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15352 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
15353 tp->bufmgr_config.mbuf_high_water_jumbo =
15354 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
15355 } else {
15356 tp->bufmgr_config.mbuf_read_dma_low_water =
15357 DEFAULT_MB_RDMA_LOW_WATER;
15358 tp->bufmgr_config.mbuf_mac_rx_low_water =
15359 DEFAULT_MB_MACRX_LOW_WATER;
15360 tp->bufmgr_config.mbuf_high_water =
15361 DEFAULT_MB_HIGH_WATER;
15362
15363 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15364 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
15365 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15366 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
15367 tp->bufmgr_config.mbuf_high_water_jumbo =
15368 DEFAULT_MB_HIGH_WATER_JUMBO;
15369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015370
15371 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
15372 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
15373}
15374
15375static char * __devinit tg3_phy_string(struct tg3 *tp)
15376{
Matt Carlson79eb6902010-02-17 15:17:03 +000015377 switch (tp->phy_id & TG3_PHY_ID_MASK) {
15378 case TG3_PHY_ID_BCM5400: return "5400";
15379 case TG3_PHY_ID_BCM5401: return "5401";
15380 case TG3_PHY_ID_BCM5411: return "5411";
15381 case TG3_PHY_ID_BCM5701: return "5701";
15382 case TG3_PHY_ID_BCM5703: return "5703";
15383 case TG3_PHY_ID_BCM5704: return "5704";
15384 case TG3_PHY_ID_BCM5705: return "5705";
15385 case TG3_PHY_ID_BCM5750: return "5750";
15386 case TG3_PHY_ID_BCM5752: return "5752";
15387 case TG3_PHY_ID_BCM5714: return "5714";
15388 case TG3_PHY_ID_BCM5780: return "5780";
15389 case TG3_PHY_ID_BCM5755: return "5755";
15390 case TG3_PHY_ID_BCM5787: return "5787";
15391 case TG3_PHY_ID_BCM5784: return "5784";
15392 case TG3_PHY_ID_BCM5756: return "5722/5756";
15393 case TG3_PHY_ID_BCM5906: return "5906";
15394 case TG3_PHY_ID_BCM5761: return "5761";
15395 case TG3_PHY_ID_BCM5718C: return "5718C";
15396 case TG3_PHY_ID_BCM5718S: return "5718S";
15397 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000015398 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000015399 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000015400 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070015401 case 0: return "serdes";
15402 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070015403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015404}
15405
Michael Chanf9804dd2005-09-27 12:13:10 -070015406static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
15407{
Joe Perches63c3a662011-04-26 08:12:10 +000015408 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015409 strcpy(str, "PCI Express");
15410 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000015411 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015412 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
15413
15414 strcpy(str, "PCIX:");
15415
15416 if ((clock_ctrl == 7) ||
15417 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
15418 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
15419 strcat(str, "133MHz");
15420 else if (clock_ctrl == 0)
15421 strcat(str, "33MHz");
15422 else if (clock_ctrl == 2)
15423 strcat(str, "50MHz");
15424 else if (clock_ctrl == 4)
15425 strcat(str, "66MHz");
15426 else if (clock_ctrl == 6)
15427 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070015428 } else {
15429 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000015430 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070015431 strcat(str, "66MHz");
15432 else
15433 strcat(str, "33MHz");
15434 }
Joe Perches63c3a662011-04-26 08:12:10 +000015435 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070015436 strcat(str, ":32-bit");
15437 else
15438 strcat(str, ":64-bit");
15439 return str;
15440}
15441
David S. Miller15f98502005-05-18 22:49:26 -070015442static void __devinit tg3_init_coal(struct tg3 *tp)
15443{
15444 struct ethtool_coalesce *ec = &tp->coal;
15445
15446 memset(ec, 0, sizeof(*ec));
15447 ec->cmd = ETHTOOL_GCOALESCE;
15448 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
15449 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
15450 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
15451 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
15452 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
15453 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
15454 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
15455 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
15456 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
15457
15458 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
15459 HOSTCC_MODE_CLRTICK_TXBD)) {
15460 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
15461 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
15462 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
15463 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
15464 }
Michael Chand244c892005-07-05 14:42:33 -070015465
Joe Perches63c3a662011-04-26 08:12:10 +000015466 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070015467 ec->rx_coalesce_usecs_irq = 0;
15468 ec->tx_coalesce_usecs_irq = 0;
15469 ec->stats_block_coalesce_usecs = 0;
15470 }
David S. Miller15f98502005-05-18 22:49:26 -070015471}
15472
Linus Torvalds1da177e2005-04-16 15:20:36 -070015473static int __devinit tg3_init_one(struct pci_dev *pdev,
15474 const struct pci_device_id *ent)
15475{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015476 struct net_device *dev;
15477 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000015478 int i, err, pm_cap;
15479 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070015480 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080015481 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000015482 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015483
Joe Perches05dbe002010-02-17 19:44:19 +000015484 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015485
15486 err = pci_enable_device(pdev);
15487 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015488 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015489 return err;
15490 }
15491
Linus Torvalds1da177e2005-04-16 15:20:36 -070015492 err = pci_request_regions(pdev, DRV_MODULE_NAME);
15493 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015494 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015495 goto err_out_disable_pdev;
15496 }
15497
15498 pci_set_master(pdev);
15499
15500 /* Find power-management capability. */
15501 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
15502 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000015503 dev_err(&pdev->dev,
15504 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015505 err = -EIO;
15506 goto err_out_free_res;
15507 }
15508
Matt Carlson16821282011-07-13 09:27:28 +000015509 err = pci_set_power_state(pdev, PCI_D0);
15510 if (err) {
15511 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
15512 goto err_out_free_res;
15513 }
15514
Matt Carlsonfe5f5782009-09-01 13:09:39 +000015515 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015516 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015517 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000015518 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015519 }
15520
Linus Torvalds1da177e2005-04-16 15:20:36 -070015521 SET_NETDEV_DEV(dev, &pdev->dev);
15522
Linus Torvalds1da177e2005-04-16 15:20:36 -070015523 tp = netdev_priv(dev);
15524 tp->pdev = pdev;
15525 tp->dev = dev;
15526 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015527 tp->rx_mode = TG3_DEF_RX_MODE;
15528 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070015529
Linus Torvalds1da177e2005-04-16 15:20:36 -070015530 if (tg3_debug > 0)
15531 tp->msg_enable = tg3_debug;
15532 else
15533 tp->msg_enable = TG3_DEF_MSG_ENABLE;
15534
15535 /* The word/byte swap controls here control register access byte
15536 * swapping. DMA data byte swapping is controlled in the GRC_MODE
15537 * setting below.
15538 */
15539 tp->misc_host_ctrl =
15540 MISC_HOST_CTRL_MASK_PCI_INT |
15541 MISC_HOST_CTRL_WORD_SWAP |
15542 MISC_HOST_CTRL_INDIR_ACCESS |
15543 MISC_HOST_CTRL_PCISTATE_RW;
15544
15545 /* The NONFRM (non-frame) byte/word swap controls take effect
15546 * on descriptor entries, anything which isn't packet data.
15547 *
15548 * The StrongARM chips on the board (one for tx, one for rx)
15549 * are running in big-endian mode.
15550 */
15551 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
15552 GRC_MODE_WSWAP_NONFRM_DATA);
15553#ifdef __BIG_ENDIAN
15554 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
15555#endif
15556 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015557 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000015558 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015559
Matt Carlsond5fe4882008-11-21 17:20:32 -080015560 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010015561 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015562 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015563 err = -ENOMEM;
15564 goto err_out_free_dev;
15565 }
15566
Matt Carlsonc9cab242011-07-13 09:27:27 +000015567 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
15568 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
15569 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
15570 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
15571 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15572 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15573 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
15574 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720) {
15575 tg3_flag_set(tp, ENABLE_APE);
15576 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
15577 if (!tp->aperegs) {
15578 dev_err(&pdev->dev,
15579 "Cannot map APE registers, aborting\n");
15580 err = -ENOMEM;
15581 goto err_out_iounmap;
15582 }
15583 }
15584
Linus Torvalds1da177e2005-04-16 15:20:36 -070015585 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
15586 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015587
Linus Torvalds1da177e2005-04-16 15:20:36 -070015588 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015589 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000015590 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015591 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015592
15593 err = tg3_get_invariants(tp);
15594 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015595 dev_err(&pdev->dev,
15596 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015597 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015598 }
15599
Michael Chan4a29cc22006-03-19 13:21:12 -080015600 /* The EPB bridge inside 5714, 5715, and 5780 and any
15601 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015602 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
15603 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
15604 * do DMA address check in tg3_start_xmit().
15605 */
Joe Perches63c3a662011-04-26 08:12:10 +000015606 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070015607 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000015608 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070015609 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080015610#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070015611 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015612#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080015613 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070015614 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015615
15616 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070015617 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080015618 err = pci_set_dma_mask(pdev, dma_mask);
15619 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000015620 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080015621 err = pci_set_consistent_dma_mask(pdev,
15622 persist_dma_mask);
15623 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015624 dev_err(&pdev->dev, "Unable to obtain 64 bit "
15625 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015626 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015627 }
15628 }
15629 }
Yang Hongyang284901a2009-04-06 19:01:15 -070015630 if (err || dma_mask == DMA_BIT_MASK(32)) {
15631 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080015632 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015633 dev_err(&pdev->dev,
15634 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015635 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015636 }
15637 }
15638
Michael Chanfdfec1722005-07-25 12:31:48 -070015639 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015640
Matt Carlson0da06062011-05-19 12:12:53 +000015641 features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
15642
15643 /* 5700 B0 chips do not support checksumming correctly due
15644 * to hardware bugs.
15645 */
15646 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
15647 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
15648
15649 if (tg3_flag(tp, 5755_PLUS))
15650 features |= NETIF_F_IPV6_CSUM;
15651 }
15652
Michael Chan4e3a7aa2006-03-20 17:47:44 -080015653 /* TSO is on by default on chips that support hardware TSO.
15654 * Firmware TSO on older chips gives lower performance, so it
15655 * is off by default, but can be enabled using ethtool.
15656 */
Joe Perches63c3a662011-04-26 08:12:10 +000015657 if ((tg3_flag(tp, HW_TSO_1) ||
15658 tg3_flag(tp, HW_TSO_2) ||
15659 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000015660 (features & NETIF_F_IP_CSUM))
15661 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000015662 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000015663 if (features & NETIF_F_IPV6_CSUM)
15664 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000015665 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000015666 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070015667 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15668 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000015669 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000015670 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000015671 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070015672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015673
Matt Carlsond542fe22011-05-19 16:02:43 +000015674 dev->features |= features;
15675 dev->vlan_features |= features;
15676
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015677 /*
15678 * Add loopback capability only for a subset of devices that support
15679 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
15680 * loopback for the remaining devices.
15681 */
15682 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
15683 !tg3_flag(tp, CPMU_PRESENT))
15684 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000015685 features |= NETIF_F_LOOPBACK;
15686
Matt Carlson0da06062011-05-19 12:12:53 +000015687 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015688
Linus Torvalds1da177e2005-04-16 15:20:36 -070015689 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015690 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015691 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015692 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015693 tp->rx_pending = 63;
15694 }
15695
Linus Torvalds1da177e2005-04-16 15:20:36 -070015696 err = tg3_get_device_address(tp);
15697 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015698 dev_err(&pdev->dev,
15699 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015700 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015701 }
15702
Matt Carlsonc88864d2007-11-12 21:07:01 -080015703 /*
15704 * Reset chip in case UNDI or EFI driver did not shutdown
15705 * DMA self test will enable WDMAC and we'll see (spurious)
15706 * pending DMA on the PCI bus at that point.
15707 */
15708 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
15709 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
15710 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
15711 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
15712 }
15713
15714 err = tg3_test_dma(tp);
15715 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015716 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080015717 goto err_out_apeunmap;
15718 }
15719
Matt Carlson78f90dc2009-11-13 13:03:42 +000015720 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
15721 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
15722 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000015723 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000015724 struct tg3_napi *tnapi = &tp->napi[i];
15725
15726 tnapi->tp = tp;
15727 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
15728
15729 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000015730 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015731 intmbx += 0x8;
15732 else
15733 intmbx += 0x4;
15734
15735 tnapi->consmbox = rcvmbx;
15736 tnapi->prodmbox = sndmbx;
15737
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015738 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015739 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015740 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000015741 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000015742
Joe Perches63c3a662011-04-26 08:12:10 +000015743 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000015744 break;
15745
15746 /*
15747 * If we support MSIX, we'll be using RSS. If we're using
15748 * RSS, the first vector only handles link interrupts and the
15749 * remaining vectors handle rx and tx interrupts. Reuse the
15750 * mailbox values for the next iteration. The values we setup
15751 * above are still useful for the single vectored mode.
15752 */
15753 if (!i)
15754 continue;
15755
15756 rcvmbx += 0x8;
15757
15758 if (sndmbx & 0x4)
15759 sndmbx -= 0x4;
15760 else
15761 sndmbx += 0xc;
15762 }
15763
Matt Carlsonc88864d2007-11-12 21:07:01 -080015764 tg3_init_coal(tp);
15765
Michael Chanc49a1562006-12-17 17:07:29 -080015766 pci_set_drvdata(pdev, dev);
15767
Matt Carlsoncd0d7222011-07-13 09:27:33 +000015768 if (tg3_flag(tp, 5717_PLUS)) {
15769 /* Resume a low-power mode */
15770 tg3_frob_aux_power(tp, false);
15771 }
15772
Matt Carlson21f76382012-02-22 12:35:21 +000015773 tg3_timer_init(tp);
15774
Linus Torvalds1da177e2005-04-16 15:20:36 -070015775 err = register_netdev(dev);
15776 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015777 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015778 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015779 }
15780
Joe Perches05dbe002010-02-17 19:44:19 +000015781 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
15782 tp->board_part_number,
15783 tp->pci_chip_rev_id,
15784 tg3_bus_string(tp, str),
15785 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015786
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015787 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000015788 struct phy_device *phydev;
15789 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000015790 netdev_info(dev,
15791 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000015792 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015793 } else {
15794 char *ethtype;
15795
15796 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
15797 ethtype = "10/100Base-TX";
15798 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
15799 ethtype = "1000Base-SX";
15800 else
15801 ethtype = "10/100/1000Base-T";
15802
Matt Carlson5129c3a2010-04-05 10:19:23 +000015803 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000015804 "(WireSpeed[%d], EEE[%d])\n",
15805 tg3_phy_string(tp), ethtype,
15806 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
15807 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015808 }
Matt Carlsondf59c942008-11-03 16:52:56 -080015809
Joe Perches05dbe002010-02-17 19:44:19 +000015810 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000015811 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015812 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015813 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015814 tg3_flag(tp, ENABLE_ASF) != 0,
15815 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000015816 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
15817 tp->dma_rwctrl,
15818 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
15819 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015820
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015821 pci_save_state(pdev);
15822
Linus Torvalds1da177e2005-04-16 15:20:36 -070015823 return 0;
15824
Matt Carlson0d3031d2007-10-10 18:02:43 -070015825err_out_apeunmap:
15826 if (tp->aperegs) {
15827 iounmap(tp->aperegs);
15828 tp->aperegs = NULL;
15829 }
15830
Linus Torvalds1da177e2005-04-16 15:20:36 -070015831err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070015832 if (tp->regs) {
15833 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015834 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015836
15837err_out_free_dev:
15838 free_netdev(dev);
15839
Matt Carlson16821282011-07-13 09:27:28 +000015840err_out_power_down:
15841 pci_set_power_state(pdev, PCI_D3hot);
15842
Linus Torvalds1da177e2005-04-16 15:20:36 -070015843err_out_free_res:
15844 pci_release_regions(pdev);
15845
15846err_out_disable_pdev:
15847 pci_disable_device(pdev);
15848 pci_set_drvdata(pdev, NULL);
15849 return err;
15850}
15851
15852static void __devexit tg3_remove_one(struct pci_dev *pdev)
15853{
15854 struct net_device *dev = pci_get_drvdata(pdev);
15855
15856 if (dev) {
15857 struct tg3 *tp = netdev_priv(dev);
15858
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015859 if (tp->fw)
15860 release_firmware(tp->fw);
15861
Matt Carlsondb219972011-11-04 09:15:03 +000015862 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015863
David S. Miller1805b2f2011-10-24 18:18:09 -040015864 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015865 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015866 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015867 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070015868
Linus Torvalds1da177e2005-04-16 15:20:36 -070015869 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015870 if (tp->aperegs) {
15871 iounmap(tp->aperegs);
15872 tp->aperegs = NULL;
15873 }
Michael Chan68929142005-08-09 20:17:14 -070015874 if (tp->regs) {
15875 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015876 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015878 free_netdev(dev);
15879 pci_release_regions(pdev);
15880 pci_disable_device(pdev);
15881 pci_set_drvdata(pdev, NULL);
15882 }
15883}
15884
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015885#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015886static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015887{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015888 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015889 struct net_device *dev = pci_get_drvdata(pdev);
15890 struct tg3 *tp = netdev_priv(dev);
15891 int err;
15892
15893 if (!netif_running(dev))
15894 return 0;
15895
Matt Carlsondb219972011-11-04 09:15:03 +000015896 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015897 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015898 tg3_netif_stop(tp);
15899
Matt Carlson21f76382012-02-22 12:35:21 +000015900 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015901
David S. Millerf47c11e2005-06-24 20:18:35 -070015902 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015903 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070015904 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015905
15906 netif_device_detach(dev);
15907
David S. Millerf47c11e2005-06-24 20:18:35 -070015908 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070015909 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000015910 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070015911 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015912
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015913 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015914 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015915 int err2;
15916
David S. Millerf47c11e2005-06-24 20:18:35 -070015917 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015918
Joe Perches63c3a662011-04-26 08:12:10 +000015919 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015920 err2 = tg3_restart_hw(tp, 1);
15921 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070015922 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015923
Matt Carlson21f76382012-02-22 12:35:21 +000015924 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015925
15926 netif_device_attach(dev);
15927 tg3_netif_start(tp);
15928
Michael Chanb9ec6c12006-07-25 16:37:27 -070015929out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015930 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015931
15932 if (!err2)
15933 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015934 }
15935
15936 return err;
15937}
15938
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015939static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015940{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015941 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015942 struct net_device *dev = pci_get_drvdata(pdev);
15943 struct tg3 *tp = netdev_priv(dev);
15944 int err;
15945
15946 if (!netif_running(dev))
15947 return 0;
15948
Linus Torvalds1da177e2005-04-16 15:20:36 -070015949 netif_device_attach(dev);
15950
David S. Millerf47c11e2005-06-24 20:18:35 -070015951 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015952
Joe Perches63c3a662011-04-26 08:12:10 +000015953 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070015954 err = tg3_restart_hw(tp, 1);
15955 if (err)
15956 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015957
Matt Carlson21f76382012-02-22 12:35:21 +000015958 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015959
Linus Torvalds1da177e2005-04-16 15:20:36 -070015960 tg3_netif_start(tp);
15961
Michael Chanb9ec6c12006-07-25 16:37:27 -070015962out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015963 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015964
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015965 if (!err)
15966 tg3_phy_start(tp);
15967
Michael Chanb9ec6c12006-07-25 16:37:27 -070015968 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015969}
15970
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015971static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015972#define TG3_PM_OPS (&tg3_pm_ops)
15973
15974#else
15975
15976#define TG3_PM_OPS NULL
15977
15978#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015979
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015980/**
15981 * tg3_io_error_detected - called when PCI error is detected
15982 * @pdev: Pointer to PCI device
15983 * @state: The current pci connection state
15984 *
15985 * This function is called after a PCI bus error affecting
15986 * this device has been detected.
15987 */
15988static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
15989 pci_channel_state_t state)
15990{
15991 struct net_device *netdev = pci_get_drvdata(pdev);
15992 struct tg3 *tp = netdev_priv(netdev);
15993 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
15994
15995 netdev_info(netdev, "PCI I/O error detected\n");
15996
15997 rtnl_lock();
15998
15999 if (!netif_running(netdev))
16000 goto done;
16001
16002 tg3_phy_stop(tp);
16003
16004 tg3_netif_stop(tp);
16005
Matt Carlson21f76382012-02-22 12:35:21 +000016006 tg3_timer_stop(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016007
16008 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000016009 tg3_reset_task_cancel(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016010
16011 netif_device_detach(netdev);
16012
16013 /* Clean up software state, even if MMIO is blocked */
16014 tg3_full_lock(tp, 0);
16015 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
16016 tg3_full_unlock(tp);
16017
16018done:
16019 if (state == pci_channel_io_perm_failure)
16020 err = PCI_ERS_RESULT_DISCONNECT;
16021 else
16022 pci_disable_device(pdev);
16023
16024 rtnl_unlock();
16025
16026 return err;
16027}
16028
16029/**
16030 * tg3_io_slot_reset - called after the pci bus has been reset.
16031 * @pdev: Pointer to PCI device
16032 *
16033 * Restart the card from scratch, as if from a cold-boot.
16034 * At this point, the card has exprienced a hard reset,
16035 * followed by fixups by BIOS, and has its config space
16036 * set up identically to what it was at cold boot.
16037 */
16038static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
16039{
16040 struct net_device *netdev = pci_get_drvdata(pdev);
16041 struct tg3 *tp = netdev_priv(netdev);
16042 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
16043 int err;
16044
16045 rtnl_lock();
16046
16047 if (pci_enable_device(pdev)) {
16048 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
16049 goto done;
16050 }
16051
16052 pci_set_master(pdev);
16053 pci_restore_state(pdev);
16054 pci_save_state(pdev);
16055
16056 if (!netif_running(netdev)) {
16057 rc = PCI_ERS_RESULT_RECOVERED;
16058 goto done;
16059 }
16060
16061 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000016062 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016063 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016064
16065 rc = PCI_ERS_RESULT_RECOVERED;
16066
16067done:
16068 rtnl_unlock();
16069
16070 return rc;
16071}
16072
16073/**
16074 * tg3_io_resume - called when traffic can start flowing again.
16075 * @pdev: Pointer to PCI device
16076 *
16077 * This callback is called when the error recovery driver tells
16078 * us that its OK to resume normal operation.
16079 */
16080static void tg3_io_resume(struct pci_dev *pdev)
16081{
16082 struct net_device *netdev = pci_get_drvdata(pdev);
16083 struct tg3 *tp = netdev_priv(netdev);
16084 int err;
16085
16086 rtnl_lock();
16087
16088 if (!netif_running(netdev))
16089 goto done;
16090
16091 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000016092 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016093 err = tg3_restart_hw(tp, 1);
16094 tg3_full_unlock(tp);
16095 if (err) {
16096 netdev_err(netdev, "Cannot restart hardware after reset.\n");
16097 goto done;
16098 }
16099
16100 netif_device_attach(netdev);
16101
Matt Carlson21f76382012-02-22 12:35:21 +000016102 tg3_timer_start(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016103
16104 tg3_netif_start(tp);
16105
16106 tg3_phy_start(tp);
16107
16108done:
16109 rtnl_unlock();
16110}
16111
16112static struct pci_error_handlers tg3_err_handler = {
16113 .error_detected = tg3_io_error_detected,
16114 .slot_reset = tg3_io_slot_reset,
16115 .resume = tg3_io_resume
16116};
16117
Linus Torvalds1da177e2005-04-16 15:20:36 -070016118static struct pci_driver tg3_driver = {
16119 .name = DRV_MODULE_NAME,
16120 .id_table = tg3_pci_tbl,
16121 .probe = tg3_init_one,
16122 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016123 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000016124 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016125};
16126
16127static int __init tg3_init(void)
16128{
Jeff Garzik29917622006-08-19 17:48:59 -040016129 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016130}
16131
16132static void __exit tg3_cleanup(void)
16133{
16134 pci_unregister_driver(&tg3_driver);
16135}
16136
16137module_init(tg3_init);
16138module_exit(tg3_cleanup);