blob: ddf260cc2db7b140315327aa463258d521f61bf6 [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>
Michael Chanaed93e02012-07-16 16:24:02 +000047#if IS_ENABLED(CONFIG_HWMON)
48#include <linux/hwmon.h>
49#include <linux/hwmon-sysfs.h>
50#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030053#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000055#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/byteorder.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000057#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
David S. Miller49b6e95f2007-03-29 01:38:42 -070059#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070061#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#endif
63
Matt Carlson63532392008-11-03 16:49:57 -080064#define BAR_0 0
65#define BAR_2 2
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include "tg3.h"
68
Joe Perches63c3a662011-04-26 08:12:10 +000069/* Functions & macros to verify TG3_FLAGS types */
70
71static inline int _tg3_flag(enum TG3_FLAGS flag, unsigned long *bits)
72{
73 return test_bit(flag, bits);
74}
75
76static inline void _tg3_flag_set(enum TG3_FLAGS flag, unsigned long *bits)
77{
78 set_bit(flag, bits);
79}
80
81static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
82{
83 clear_bit(flag, bits);
84}
85
86#define tg3_flag(tp, flag) \
87 _tg3_flag(TG3_FLAG_##flag, (tp)->tg3_flags)
88#define tg3_flag_set(tp, flag) \
89 _tg3_flag_set(TG3_FLAG_##flag, (tp)->tg3_flags)
90#define tg3_flag_clear(tp, flag) \
91 _tg3_flag_clear(TG3_FLAG_##flag, (tp)->tg3_flags)
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#define DRV_MODULE_NAME "tg3"
Matt Carlson6867c842010-07-11 09:31:44 +000094#define TG3_MAJ_NUM 3
Michael Chancac83e52012-07-29 19:15:45 +000095#define TG3_MIN_NUM 124
Matt Carlson6867c842010-07-11 09:31:44 +000096#define DRV_MODULE_VERSION \
97 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Michael Chan7ae52892012-03-21 15:38:33 +000098#define DRV_MODULE_RELDATE "March 21, 2012"
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000100#define RESET_KIND_SHUTDOWN 0
101#define RESET_KIND_INIT 1
102#define RESET_KIND_SUSPEND 2
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#define TG3_DEF_RX_MODE 0
105#define TG3_DEF_TX_MODE 0
106#define TG3_DEF_MSG_ENABLE \
107 (NETIF_MSG_DRV | \
108 NETIF_MSG_PROBE | \
109 NETIF_MSG_LINK | \
110 NETIF_MSG_TIMER | \
111 NETIF_MSG_IFDOWN | \
112 NETIF_MSG_IFUP | \
113 NETIF_MSG_RX_ERR | \
114 NETIF_MSG_TX_ERR)
115
Matt Carlson520b2752011-06-13 13:39:02 +0000116#define TG3_GRC_LCLCTL_PWRSW_DELAY 100
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/* length of time before we decide the hardware is borked,
119 * and dev->tx_timeout() should be called to fix the problem
120 */
Joe Perches63c3a662011-04-26 08:12:10 +0000121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define TG3_TX_TIMEOUT (5 * HZ)
123
124/* hardware minimum and maximum for a single frame's data payload */
125#define TG3_MIN_MTU 60
126#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000127 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/* These numbers seem to be hard coded in the NIC firmware somehow.
130 * You can't change the ring sizes, but you can change where you place
131 * them in the NIC onboard memory.
132 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000133#define TG3_RX_STD_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_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000137#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000138 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000139 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#define TG3_DEF_RX_JUMBO_RING_PENDING 100
141
142/* Do not place this n-ring entries value into the tp struct itself,
143 * we really want to expose these constants to GCC so that modulo et
144 * al. operations are done with shifts and masks instead of with
145 * hw multiply/modulo instructions. Another solution would be to
146 * replace things like '% foo' with '& (foo - 1)'.
147 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149#define TG3_TX_RING_SIZE 512
150#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
151
Matt Carlson2c49a442010-09-30 10:34:35 +0000152#define TG3_RX_STD_RING_BYTES(tp) \
153 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
154#define TG3_RX_JMB_RING_BYTES(tp) \
155 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
156#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000157 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
159 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
161
Matt Carlson287be122009-08-28 13:58:46 +0000162#define TG3_DMA_BYTE_ENAB 64
163
164#define TG3_RX_STD_DMA_SZ 1536
165#define TG3_RX_JMB_DMA_SZ 9046
166
167#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
168
169#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
170#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Matt Carlson2c49a442010-09-30 10:34:35 +0000172#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
173 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000174
Matt Carlson2c49a442010-09-30 10:34:35 +0000175#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
176 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000177
Matt Carlsond2757fc2010-04-12 06:58:27 +0000178/* Due to a hardware bug, the 5701 can only DMA to memory addresses
179 * that are at least dword aligned when used in PCIX mode. The driver
180 * works around this bug by double copying the packet. This workaround
181 * is built into the normal double copy length check for efficiency.
182 *
183 * However, the double copy is only necessary on those architectures
184 * where unaligned memory accesses are inefficient. For those architectures
185 * where unaligned memory accesses incur little penalty, we can reintegrate
186 * the 5701 in the normal rx path. Doing so saves a device structure
187 * dereference by hardcoding the double copy threshold in place.
188 */
189#define TG3_RX_COPY_THRESHOLD 256
190#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
191 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
192#else
193 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
194#endif
195
Matt Carlson81389f52011-08-31 11:44:49 +0000196#if (NET_IP_ALIGN != 0)
197#define TG3_RX_OFFSET(tp) ((tp)->rx_offset)
198#else
Eric Dumazet9205fd92011-11-18 06:47:01 +0000199#define TG3_RX_OFFSET(tp) (NET_SKB_PAD)
Matt Carlson81389f52011-08-31 11:44:49 +0000200#endif
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000203#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Matt Carlson55086ad2011-12-14 11:09:59 +0000204#define TG3_TX_BD_DMA_MAX_2K 2048
Matt Carlsona4cb4282011-12-14 11:09:58 +0000205#define TG3_TX_BD_DMA_MAX_4K 4096
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Matt Carlsonad829262008-11-21 17:16:16 -0800207#define TG3_RAW_IP_ALIGN 2
208
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000209#define TG3_FW_UPDATE_TIMEOUT_SEC 5
Matt Carlson21f76382012-02-22 12:35:21 +0000210#define TG3_FW_UPDATE_FREQ_SEC (TG3_FW_UPDATE_TIMEOUT_SEC / 2)
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000211
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800212#define FIRMWARE_TG3 "tigon/tg3.bin"
213#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
214#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216static char version[] __devinitdata =
Joe Perches05dbe002010-02-17 19:44:19 +0000217 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
220MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
221MODULE_LICENSE("GPL");
222MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800223MODULE_FIRMWARE(FIRMWARE_TG3);
224MODULE_FIRMWARE(FIRMWARE_TG3TSO);
225MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
228module_param(tg3_debug, int, 0);
229MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
230
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000231static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700257 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
258 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
260 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
261 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
264 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
265 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800272 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
278 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
286 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800287 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
288 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000289 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
290 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800291 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
292 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
293 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000294 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000295 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
296 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000297 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
298 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
299 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
300 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
301 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
302 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Matt Carlson302b5002010-06-05 17:24:38 +0000303 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000304 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Greg KH02eca3f2012-07-12 15:39:44 +0000305 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57762)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700306 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
307 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
308 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
309 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
310 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
311 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
312 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
Meelis Roos1dcb14d2011-05-25 05:43:47 +0000313 {PCI_DEVICE(0x10cf, 0x11a2)}, /* Fujitsu 1000base-SX with BCM5703SKHB */
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700314 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
317MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
318
Andreas Mohr50da8592006-08-14 23:54:30 -0700319static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000321} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 { "rx_octets" },
323 { "rx_fragments" },
324 { "rx_ucast_packets" },
325 { "rx_mcast_packets" },
326 { "rx_bcast_packets" },
327 { "rx_fcs_errors" },
328 { "rx_align_errors" },
329 { "rx_xon_pause_rcvd" },
330 { "rx_xoff_pause_rcvd" },
331 { "rx_mac_ctrl_rcvd" },
332 { "rx_xoff_entered" },
333 { "rx_frame_too_long_errors" },
334 { "rx_jabbers" },
335 { "rx_undersize_packets" },
336 { "rx_in_length_errors" },
337 { "rx_out_length_errors" },
338 { "rx_64_or_less_octet_packets" },
339 { "rx_65_to_127_octet_packets" },
340 { "rx_128_to_255_octet_packets" },
341 { "rx_256_to_511_octet_packets" },
342 { "rx_512_to_1023_octet_packets" },
343 { "rx_1024_to_1522_octet_packets" },
344 { "rx_1523_to_2047_octet_packets" },
345 { "rx_2048_to_4095_octet_packets" },
346 { "rx_4096_to_8191_octet_packets" },
347 { "rx_8192_to_9022_octet_packets" },
348
349 { "tx_octets" },
350 { "tx_collisions" },
351
352 { "tx_xon_sent" },
353 { "tx_xoff_sent" },
354 { "tx_flow_control" },
355 { "tx_mac_errors" },
356 { "tx_single_collisions" },
357 { "tx_mult_collisions" },
358 { "tx_deferred" },
359 { "tx_excessive_collisions" },
360 { "tx_late_collisions" },
361 { "tx_collide_2times" },
362 { "tx_collide_3times" },
363 { "tx_collide_4times" },
364 { "tx_collide_5times" },
365 { "tx_collide_6times" },
366 { "tx_collide_7times" },
367 { "tx_collide_8times" },
368 { "tx_collide_9times" },
369 { "tx_collide_10times" },
370 { "tx_collide_11times" },
371 { "tx_collide_12times" },
372 { "tx_collide_13times" },
373 { "tx_collide_14times" },
374 { "tx_collide_15times" },
375 { "tx_ucast_packets" },
376 { "tx_mcast_packets" },
377 { "tx_bcast_packets" },
378 { "tx_carrier_sense_errors" },
379 { "tx_discards" },
380 { "tx_errors" },
381
382 { "dma_writeq_full" },
383 { "dma_write_prioq_full" },
384 { "rxbds_empty" },
385 { "rx_discards" },
386 { "rx_errors" },
387 { "rx_threshold_hit" },
388
389 { "dma_readq_full" },
390 { "dma_read_prioq_full" },
391 { "tx_comp_queue_full" },
392
393 { "ring_set_send_prod_index" },
394 { "ring_status_update" },
395 { "nic_irqs" },
396 { "nic_avoided_irqs" },
Matt Carlson4452d092011-05-19 12:12:51 +0000397 { "nic_tx_threshold_hit" },
398
399 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400};
401
Matt Carlson48fa55a2011-04-13 11:05:06 +0000402#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
403
404
Andreas Mohr50da8592006-08-14 23:54:30 -0700405static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700406 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000407} ethtool_test_keys[] = {
Matt Carlson28a45952011-08-19 13:58:22 +0000408 { "nvram test (online) " },
409 { "link test (online) " },
410 { "register test (offline)" },
411 { "memory test (offline)" },
412 { "mac loopback test (offline)" },
413 { "phy loopback test (offline)" },
Matt Carlson941ec902011-08-19 13:58:23 +0000414 { "ext loopback test (offline)" },
Matt Carlson28a45952011-08-19 13:58:22 +0000415 { "interrupt test (offline)" },
Michael Chan4cafd3f2005-05-29 14:56:34 -0700416};
417
Matt Carlson48fa55a2011-04-13 11:05:06 +0000418#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
419
420
Michael Chanb401e9e2005-12-19 16:27:04 -0800421static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
422{
423 writel(val, tp->regs + off);
424}
425
426static u32 tg3_read32(struct tg3 *tp, u32 off)
427{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000428 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800429}
430
Matt Carlson0d3031d2007-10-10 18:02:43 -0700431static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
432{
433 writel(val, tp->aperegs + off);
434}
435
436static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
437{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000438 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
442{
Michael Chan68929142005-08-09 20:17:14 -0700443 unsigned long flags;
444
445 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700446 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
447 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700448 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700449}
450
451static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
452{
453 writel(val, tp->regs + off);
454 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
Michael Chan68929142005-08-09 20:17:14 -0700457static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
458{
459 unsigned long flags;
460 u32 val;
461
462 spin_lock_irqsave(&tp->indirect_lock, flags);
463 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
464 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
465 spin_unlock_irqrestore(&tp->indirect_lock, flags);
466 return val;
467}
468
469static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
470{
471 unsigned long flags;
472
473 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
474 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
475 TG3_64BIT_REG_LOW, val);
476 return;
477 }
Matt Carlson66711e662009-11-13 13:03:49 +0000478 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700479 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
480 TG3_64BIT_REG_LOW, val);
481 return;
482 }
483
484 spin_lock_irqsave(&tp->indirect_lock, flags);
485 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
486 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
487 spin_unlock_irqrestore(&tp->indirect_lock, flags);
488
489 /* In indirect mode when disabling interrupts, we also need
490 * to clear the interrupt bit in the GRC local ctrl register.
491 */
492 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
493 (val == 0x1)) {
494 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
495 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
496 }
497}
498
499static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
500{
501 unsigned long flags;
502 u32 val;
503
504 spin_lock_irqsave(&tp->indirect_lock, flags);
505 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
506 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
507 spin_unlock_irqrestore(&tp->indirect_lock, flags);
508 return val;
509}
510
Michael Chanb401e9e2005-12-19 16:27:04 -0800511/* usec_wait specifies the wait time in usec when writing to certain registers
512 * where it is unsafe to read back the register without some delay.
513 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
514 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
515 */
516static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Joe Perches63c3a662011-04-26 08:12:10 +0000518 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800519 /* Non-posted methods */
520 tp->write32(tp, off, val);
521 else {
522 /* Posted method */
523 tg3_write32(tp, off, val);
524 if (usec_wait)
525 udelay(usec_wait);
526 tp->read32(tp, off);
527 }
528 /* Wait again after the read for the posted method to guarantee that
529 * the wait time is met.
530 */
531 if (usec_wait)
532 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
Michael Chan09ee9292005-08-09 20:17:00 -0700535static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
536{
537 tp->write32_mbox(tp, off, val);
Joe Perches63c3a662011-04-26 08:12:10 +0000538 if (!tg3_flag(tp, MBOX_WRITE_REORDER) && !tg3_flag(tp, ICH_WORKAROUND))
Michael Chan68929142005-08-09 20:17:14 -0700539 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700540}
541
Michael Chan20094932005-08-09 20:16:32 -0700542static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 void __iomem *mbox = tp->regs + off;
545 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000546 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000548 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 readl(mbox);
550}
551
Michael Chanb5d37722006-09-27 16:06:21 -0700552static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
553{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000554 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700555}
556
557static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
558{
559 writel(val, tp->regs + off + GRCMBOX_BASE);
560}
561
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000562#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700563#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000564#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
565#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
566#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700567
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000568#define tw32(reg, val) tp->write32(tp, reg, val)
569#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
570#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
571#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
574{
Michael Chan68929142005-08-09 20:17:14 -0700575 unsigned long flags;
576
Matt Carlson6ff6f812011-05-19 12:12:54 +0000577 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700578 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
579 return;
580
Michael Chan68929142005-08-09 20:17:14 -0700581 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000582 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700583 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
584 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Michael Chanbbadf502006-04-06 21:46:34 -0700586 /* Always leave this as zero. */
587 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
588 } else {
589 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
590 tw32_f(TG3PCI_MEM_WIN_DATA, val);
591
592 /* Always leave this as zero. */
593 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
594 }
Michael Chan68929142005-08-09 20:17:14 -0700595 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
598static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
599{
Michael Chan68929142005-08-09 20:17:14 -0700600 unsigned long flags;
601
Matt Carlson6ff6f812011-05-19 12:12:54 +0000602 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700603 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
604 *val = 0;
605 return;
606 }
607
Michael Chan68929142005-08-09 20:17:14 -0700608 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000609 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700610 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
611 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Michael Chanbbadf502006-04-06 21:46:34 -0700613 /* Always leave this as zero. */
614 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
615 } else {
616 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
617 *val = tr32(TG3PCI_MEM_WIN_DATA);
618
619 /* Always leave this as zero. */
620 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
621 }
Michael Chan68929142005-08-09 20:17:14 -0700622 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Matt Carlson0d3031d2007-10-10 18:02:43 -0700625static void tg3_ape_lock_init(struct tg3 *tp)
626{
627 int i;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000628 u32 regbase, bit;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000629
630 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
631 regbase = TG3_APE_LOCK_GRANT;
632 else
633 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700634
635 /* Make sure the driver hasn't any stale locks. */
Matt Carlson78f94dc2011-11-04 09:14:58 +0000636 for (i = TG3_APE_LOCK_PHY0; i <= TG3_APE_LOCK_GPIO; i++) {
637 switch (i) {
638 case TG3_APE_LOCK_PHY0:
639 case TG3_APE_LOCK_PHY1:
640 case TG3_APE_LOCK_PHY2:
641 case TG3_APE_LOCK_PHY3:
642 bit = APE_LOCK_GRANT_DRIVER;
643 break;
644 default:
645 if (!tp->pci_fn)
646 bit = APE_LOCK_GRANT_DRIVER;
647 else
648 bit = 1 << tp->pci_fn;
649 }
650 tg3_ape_write32(tp, regbase + 4 * i, bit);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000651 }
652
Matt Carlson0d3031d2007-10-10 18:02:43 -0700653}
654
655static int tg3_ape_lock(struct tg3 *tp, int locknum)
656{
657 int i, off;
658 int ret = 0;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000659 u32 status, req, gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700660
Joe Perches63c3a662011-04-26 08:12:10 +0000661 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700662 return 0;
663
664 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000665 case TG3_APE_LOCK_GPIO:
666 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
667 return 0;
Matt Carlson33f401a2010-04-05 10:19:27 +0000668 case TG3_APE_LOCK_GRC:
669 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000670 if (!tp->pci_fn)
671 bit = APE_LOCK_REQ_DRIVER;
672 else
673 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000674 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000675 case TG3_APE_LOCK_PHY0:
676 case TG3_APE_LOCK_PHY1:
677 case TG3_APE_LOCK_PHY2:
678 case TG3_APE_LOCK_PHY3:
679 bit = APE_LOCK_REQ_DRIVER;
680 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000681 default:
682 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700683 }
684
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000685 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
686 req = TG3_APE_LOCK_REQ;
687 gnt = TG3_APE_LOCK_GRANT;
688 } else {
689 req = TG3_APE_PER_LOCK_REQ;
690 gnt = TG3_APE_PER_LOCK_GRANT;
691 }
692
Matt Carlson0d3031d2007-10-10 18:02:43 -0700693 off = 4 * locknum;
694
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000695 tg3_ape_write32(tp, req + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700696
697 /* Wait for up to 1 millisecond to acquire lock. */
698 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000699 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000700 if (status == bit)
Matt Carlson0d3031d2007-10-10 18:02:43 -0700701 break;
702 udelay(10);
703 }
704
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000705 if (status != bit) {
Matt Carlson0d3031d2007-10-10 18:02:43 -0700706 /* Revoke the lock request. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000707 tg3_ape_write32(tp, gnt + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700708 ret = -EBUSY;
709 }
710
711 return ret;
712}
713
714static void tg3_ape_unlock(struct tg3 *tp, int locknum)
715{
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000716 u32 gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700717
Joe Perches63c3a662011-04-26 08:12:10 +0000718 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700719 return;
720
721 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000722 case TG3_APE_LOCK_GPIO:
723 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
724 return;
Matt Carlson33f401a2010-04-05 10:19:27 +0000725 case TG3_APE_LOCK_GRC:
726 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000727 if (!tp->pci_fn)
728 bit = APE_LOCK_GRANT_DRIVER;
729 else
730 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000731 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000732 case TG3_APE_LOCK_PHY0:
733 case TG3_APE_LOCK_PHY1:
734 case TG3_APE_LOCK_PHY2:
735 case TG3_APE_LOCK_PHY3:
736 bit = APE_LOCK_GRANT_DRIVER;
737 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000738 default:
739 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700740 }
741
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000742 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
743 gnt = TG3_APE_LOCK_GRANT;
744 else
745 gnt = TG3_APE_PER_LOCK_GRANT;
746
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000747 tg3_ape_write32(tp, gnt + 4 * locknum, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700748}
749
Matt Carlsonb65a3722012-07-16 16:24:00 +0000750static int tg3_ape_event_lock(struct tg3 *tp, u32 timeout_us)
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000751{
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000752 u32 apedata;
753
Matt Carlsonb65a3722012-07-16 16:24:00 +0000754 while (timeout_us) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000755 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
Matt Carlsonb65a3722012-07-16 16:24:00 +0000756 return -EBUSY;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000757
758 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000759 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
760 break;
761
Matt Carlsonb65a3722012-07-16 16:24:00 +0000762 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
763
764 udelay(10);
765 timeout_us -= (timeout_us > 10) ? 10 : timeout_us;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000766 }
767
Matt Carlsonb65a3722012-07-16 16:24:00 +0000768 return timeout_us ? 0 : -EBUSY;
769}
770
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000771static int tg3_ape_wait_for_event(struct tg3 *tp, u32 timeout_us)
772{
773 u32 i, apedata;
774
775 for (i = 0; i < timeout_us / 10; i++) {
776 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
777
778 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
779 break;
780
781 udelay(10);
782 }
783
784 return i == timeout_us / 10;
785}
786
787int tg3_ape_scratchpad_read(struct tg3 *tp, u32 *data, u32 base_off, u32 len)
788{
789 int err;
790 u32 i, bufoff, msgoff, maxlen, apedata;
791
792 if (!tg3_flag(tp, APE_HAS_NCSI))
793 return 0;
794
795 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
796 if (apedata != APE_SEG_SIG_MAGIC)
797 return -ENODEV;
798
799 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
800 if (!(apedata & APE_FW_STATUS_READY))
801 return -EAGAIN;
802
803 bufoff = tg3_ape_read32(tp, TG3_APE_SEG_MSG_BUF_OFF) +
804 TG3_APE_SHMEM_BASE;
805 msgoff = bufoff + 2 * sizeof(u32);
806 maxlen = tg3_ape_read32(tp, TG3_APE_SEG_MSG_BUF_LEN);
807
808 while (len) {
809 u32 length;
810
811 /* Cap xfer sizes to scratchpad limits. */
812 length = (len > maxlen) ? maxlen : len;
813 len -= length;
814
815 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
816 if (!(apedata & APE_FW_STATUS_READY))
817 return -EAGAIN;
818
819 /* Wait for up to 1 msec for APE to service previous event. */
820 err = tg3_ape_event_lock(tp, 1000);
821 if (err)
822 return err;
823
824 apedata = APE_EVENT_STATUS_DRIVER_EVNT |
825 APE_EVENT_STATUS_SCRTCHPD_READ |
826 APE_EVENT_STATUS_EVENT_PENDING;
827 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS, apedata);
828
829 tg3_ape_write32(tp, bufoff, base_off);
830 tg3_ape_write32(tp, bufoff + sizeof(u32), length);
831
832 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
833 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
834
835 base_off += length;
836
837 if (tg3_ape_wait_for_event(tp, 30000))
838 return -EAGAIN;
839
840 for (i = 0; length; i += 4, length -= 4) {
841 u32 val = tg3_ape_read32(tp, msgoff + i);
842 memcpy(data, &val, sizeof(u32));
843 data++;
844 }
845 }
846
847 return 0;
848}
849
Matt Carlsonb65a3722012-07-16 16:24:00 +0000850static int tg3_ape_send_event(struct tg3 *tp, u32 event)
851{
852 int err;
853 u32 apedata;
854
855 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
856 if (apedata != APE_SEG_SIG_MAGIC)
857 return -EAGAIN;
858
859 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
860 if (!(apedata & APE_FW_STATUS_READY))
861 return -EAGAIN;
862
863 /* Wait for up to 1 millisecond for APE to service previous event. */
864 err = tg3_ape_event_lock(tp, 1000);
865 if (err)
866 return err;
867
868 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
869 event | APE_EVENT_STATUS_EVENT_PENDING);
870
871 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
872 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
873
874 return 0;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000875}
876
877static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
878{
879 u32 event;
880 u32 apedata;
881
882 if (!tg3_flag(tp, ENABLE_APE))
883 return;
884
885 switch (kind) {
886 case RESET_KIND_INIT:
887 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
888 APE_HOST_SEG_SIG_MAGIC);
889 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
890 APE_HOST_SEG_LEN_MAGIC);
891 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
892 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
893 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
894 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
895 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
896 APE_HOST_BEHAV_NO_PHYLOCK);
897 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
898 TG3_APE_HOST_DRVR_STATE_START);
899
900 event = APE_EVENT_STATUS_STATE_START;
901 break;
902 case RESET_KIND_SHUTDOWN:
903 /* With the interface we are currently using,
904 * APE does not track driver state. Wiping
905 * out the HOST SEGMENT SIGNATURE forces
906 * the APE to assume OS absent status.
907 */
908 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
909
910 if (device_may_wakeup(&tp->pdev->dev) &&
911 tg3_flag(tp, WOL_ENABLE)) {
912 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
913 TG3_APE_HOST_WOL_SPEED_AUTO);
914 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
915 } else
916 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
917
918 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
919
920 event = APE_EVENT_STATUS_STATE_UNLOAD;
921 break;
922 case RESET_KIND_SUSPEND:
923 event = APE_EVENT_STATUS_STATE_SUSPEND;
924 break;
925 default:
926 return;
927 }
928
929 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
930
931 tg3_ape_send_event(tp, event);
932}
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934static void tg3_disable_ints(struct tg3 *tp)
935{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000936 int i;
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 tw32(TG3PCI_MISC_HOST_CTRL,
939 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000940 for (i = 0; i < tp->irq_max; i++)
941 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944static void tg3_enable_ints(struct tg3 *tp)
945{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000946 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000947
Michael Chanbbe832c2005-06-24 20:20:04 -0700948 tp->irq_sync = 0;
949 wmb();
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 tw32(TG3PCI_MISC_HOST_CTRL,
952 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000953
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000954 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000955 for (i = 0; i < tp->irq_cnt; i++) {
956 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000957
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000958 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +0000959 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000960 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
961
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000962 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000963 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000964
965 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +0000966 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000967 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
968 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
969 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000970 tw32(HOSTCC_MODE, tp->coal_now);
971
972 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Matt Carlson17375d22009-08-28 14:02:18 +0000975static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700976{
Matt Carlson17375d22009-08-28 14:02:18 +0000977 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000978 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700979 unsigned int work_exists = 0;
980
981 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +0000982 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -0700983 if (sblk->status & SD_STATUS_LINK_CHG)
984 work_exists = 1;
985 }
Matt Carlsonf891ea12012-04-24 13:37:01 +0000986
987 /* check for TX work to do */
988 if (sblk->idx[0].tx_consumer != tnapi->tx_cons)
989 work_exists = 1;
990
991 /* check for RX work to do */
992 if (tnapi->rx_rcb_prod_idx &&
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000993 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700994 work_exists = 1;
995
996 return work_exists;
997}
998
Matt Carlson17375d22009-08-28 14:02:18 +0000999/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -07001000 * similar to tg3_enable_ints, but it accurately determines whether there
1001 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001002 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 */
Matt Carlson17375d22009-08-28 14:02:18 +00001004static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Matt Carlson17375d22009-08-28 14:02:18 +00001006 struct tg3 *tp = tnapi->tp;
1007
Matt Carlson898a56f2009-08-28 14:02:40 +00001008 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 mmiowb();
1010
David S. Millerfac9b832005-05-18 22:46:34 -07001011 /* When doing tagged status, this work check is unnecessary.
1012 * The last_tag we write above tells the chip which piece of
1013 * work we've completed.
1014 */
Joe Perches63c3a662011-04-26 08:12:10 +00001015 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -07001016 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00001017 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020static void tg3_switch_clocks(struct tg3 *tp)
1021{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00001022 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 u32 orig_clock_ctrl;
1024
Joe Perches63c3a662011-04-26 08:12:10 +00001025 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07001026 return;
1027
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00001028 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 orig_clock_ctrl = clock_ctrl;
1031 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
1032 CLOCK_CTRL_CLKRUN_OENABLE |
1033 0x1f);
1034 tp->pci_clock_ctrl = clock_ctrl;
1035
Joe Perches63c3a662011-04-26 08:12:10 +00001036 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -08001038 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1039 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -08001042 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1043 clock_ctrl |
1044 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
1045 40);
1046 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1047 clock_ctrl | (CLOCK_CTRL_ALTCLK),
1048 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
Michael Chanb401e9e2005-12-19 16:27:04 -08001050 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
1053#define PHY_BUSY_LOOPS 5000
1054
1055static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
1056{
1057 u32 frame_val;
1058 unsigned int loops;
1059 int ret;
1060
1061 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1062 tw32_f(MAC_MI_MODE,
1063 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1064 udelay(80);
1065 }
1066
Michael Chan8151ad52012-07-29 19:15:41 +00001067 tg3_ape_lock(tp, tp->phy_ape_lock);
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 *val = 0x0;
1070
Matt Carlson882e9792009-09-01 13:21:36 +00001071 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 MI_COM_PHY_ADDR_MASK);
1073 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1074 MI_COM_REG_ADDR_MASK);
1075 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 tw32_f(MAC_MI_COM, frame_val);
1078
1079 loops = PHY_BUSY_LOOPS;
1080 while (loops != 0) {
1081 udelay(10);
1082 frame_val = tr32(MAC_MI_COM);
1083
1084 if ((frame_val & MI_COM_BUSY) == 0) {
1085 udelay(5);
1086 frame_val = tr32(MAC_MI_COM);
1087 break;
1088 }
1089 loops -= 1;
1090 }
1091
1092 ret = -EBUSY;
1093 if (loops != 0) {
1094 *val = frame_val & MI_COM_DATA_MASK;
1095 ret = 0;
1096 }
1097
1098 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1099 tw32_f(MAC_MI_MODE, tp->mi_mode);
1100 udelay(80);
1101 }
1102
Michael Chan8151ad52012-07-29 19:15:41 +00001103 tg3_ape_unlock(tp, tp->phy_ape_lock);
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return ret;
1106}
1107
1108static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
1109{
1110 u32 frame_val;
1111 unsigned int loops;
1112 int ret;
1113
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001114 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson221c5632011-06-13 13:39:01 +00001115 (reg == MII_CTRL1000 || reg == MII_TG3_AUX_CTRL))
Michael Chanb5d37722006-09-27 16:06:21 -07001116 return 0;
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1119 tw32_f(MAC_MI_MODE,
1120 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1121 udelay(80);
1122 }
1123
Michael Chan8151ad52012-07-29 19:15:41 +00001124 tg3_ape_lock(tp, tp->phy_ape_lock);
1125
Matt Carlson882e9792009-09-01 13:21:36 +00001126 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 MI_COM_PHY_ADDR_MASK);
1128 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1129 MI_COM_REG_ADDR_MASK);
1130 frame_val |= (val & MI_COM_DATA_MASK);
1131 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 tw32_f(MAC_MI_COM, frame_val);
1134
1135 loops = PHY_BUSY_LOOPS;
1136 while (loops != 0) {
1137 udelay(10);
1138 frame_val = tr32(MAC_MI_COM);
1139 if ((frame_val & MI_COM_BUSY) == 0) {
1140 udelay(5);
1141 frame_val = tr32(MAC_MI_COM);
1142 break;
1143 }
1144 loops -= 1;
1145 }
1146
1147 ret = -EBUSY;
1148 if (loops != 0)
1149 ret = 0;
1150
1151 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1152 tw32_f(MAC_MI_MODE, tp->mi_mode);
1153 udelay(80);
1154 }
1155
Michael Chan8151ad52012-07-29 19:15:41 +00001156 tg3_ape_unlock(tp, tp->phy_ape_lock);
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 return ret;
1159}
1160
Matt Carlsonb0988c12011-04-20 07:57:39 +00001161static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
1162{
1163 int err;
1164
1165 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1166 if (err)
1167 goto done;
1168
1169 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1170 if (err)
1171 goto done;
1172
1173 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1174 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1175 if (err)
1176 goto done;
1177
1178 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
1179
1180done:
1181 return err;
1182}
1183
1184static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
1185{
1186 int err;
1187
1188 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1189 if (err)
1190 goto done;
1191
1192 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1193 if (err)
1194 goto done;
1195
1196 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1197 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1198 if (err)
1199 goto done;
1200
1201 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
1202
1203done:
1204 return err;
1205}
1206
1207static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
1208{
1209 int err;
1210
1211 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1212 if (!err)
1213 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
1214
1215 return err;
1216}
1217
1218static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1219{
1220 int err;
1221
1222 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1223 if (!err)
1224 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1225
1226 return err;
1227}
1228
Matt Carlson15ee95c2011-04-20 07:57:40 +00001229static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
1230{
1231 int err;
1232
1233 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
1234 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
1235 MII_TG3_AUXCTL_SHDWSEL_MISC);
1236 if (!err)
1237 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
1238
1239 return err;
1240}
1241
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001242static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
1243{
1244 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
1245 set |= MII_TG3_AUXCTL_MISC_WREN;
1246
1247 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
1248}
1249
Matt Carlson1d36ba42011-04-20 07:57:42 +00001250#define TG3_PHY_AUXCTL_SMDSP_ENABLE(tp) \
1251 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1252 MII_TG3_AUXCTL_ACTL_SMDSP_ENA | \
1253 MII_TG3_AUXCTL_ACTL_TX_6DB)
1254
1255#define TG3_PHY_AUXCTL_SMDSP_DISABLE(tp) \
1256 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1257 MII_TG3_AUXCTL_ACTL_TX_6DB);
1258
Matt Carlson95e28692008-05-25 23:44:14 -07001259static int tg3_bmcr_reset(struct tg3 *tp)
1260{
1261 u32 phy_control;
1262 int limit, err;
1263
1264 /* OK, reset it, and poll the BMCR_RESET bit until it
1265 * clears or we time out.
1266 */
1267 phy_control = BMCR_RESET;
1268 err = tg3_writephy(tp, MII_BMCR, phy_control);
1269 if (err != 0)
1270 return -EBUSY;
1271
1272 limit = 5000;
1273 while (limit--) {
1274 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1275 if (err != 0)
1276 return -EBUSY;
1277
1278 if ((phy_control & BMCR_RESET) == 0) {
1279 udelay(40);
1280 break;
1281 }
1282 udelay(10);
1283 }
Roel Kluind4675b52009-02-12 16:33:27 -08001284 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001285 return -EBUSY;
1286
1287 return 0;
1288}
1289
Matt Carlson158d7ab2008-05-29 01:37:54 -07001290static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1291{
Francois Romieu3d165432009-01-19 16:56:50 -08001292 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001293 u32 val;
1294
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001295 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001296
1297 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001298 val = -EIO;
1299
1300 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001301
1302 return val;
1303}
1304
1305static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1306{
Francois Romieu3d165432009-01-19 16:56:50 -08001307 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001308 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001309
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001310 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001311
1312 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001313 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001314
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001315 spin_unlock_bh(&tp->lock);
1316
1317 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001318}
1319
1320static int tg3_mdio_reset(struct mii_bus *bp)
1321{
1322 return 0;
1323}
1324
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001325static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001326{
1327 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001328 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001329
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001330 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001331 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001332 case PHY_ID_BCM50610:
1333 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001334 val = MAC_PHYCFG2_50610_LED_MODES;
1335 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001336 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001337 val = MAC_PHYCFG2_AC131_LED_MODES;
1338 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001339 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001340 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1341 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001342 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001343 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1344 break;
1345 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001346 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001347 }
1348
1349 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1350 tw32(MAC_PHYCFG2, val);
1351
1352 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001353 val &= ~(MAC_PHYCFG1_RGMII_INT |
1354 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1355 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001356 tw32(MAC_PHYCFG1, val);
1357
1358 return;
1359 }
1360
Joe Perches63c3a662011-04-26 08:12:10 +00001361 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001362 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1363 MAC_PHYCFG2_FMODE_MASK_MASK |
1364 MAC_PHYCFG2_GMODE_MASK_MASK |
1365 MAC_PHYCFG2_ACT_MASK_MASK |
1366 MAC_PHYCFG2_QUAL_MASK_MASK |
1367 MAC_PHYCFG2_INBAND_ENABLE;
1368
1369 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001370
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001371 val = tr32(MAC_PHYCFG1);
1372 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1373 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001374 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1375 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001376 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001377 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001378 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1379 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001380 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1381 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1382 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001383
Matt Carlsona9daf362008-05-25 23:49:44 -07001384 val = tr32(MAC_EXT_RGMII_MODE);
1385 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1386 MAC_RGMII_MODE_RX_QUALITY |
1387 MAC_RGMII_MODE_RX_ACTIVITY |
1388 MAC_RGMII_MODE_RX_ENG_DET |
1389 MAC_RGMII_MODE_TX_ENABLE |
1390 MAC_RGMII_MODE_TX_LOWPWR |
1391 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001392 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1393 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001394 val |= MAC_RGMII_MODE_RX_INT_B |
1395 MAC_RGMII_MODE_RX_QUALITY |
1396 MAC_RGMII_MODE_RX_ACTIVITY |
1397 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001398 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001399 val |= MAC_RGMII_MODE_TX_ENABLE |
1400 MAC_RGMII_MODE_TX_LOWPWR |
1401 MAC_RGMII_MODE_TX_RESET;
1402 }
1403 tw32(MAC_EXT_RGMII_MODE, val);
1404}
1405
Matt Carlson158d7ab2008-05-29 01:37:54 -07001406static void tg3_mdio_start(struct tg3 *tp)
1407{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001408 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1409 tw32_f(MAC_MI_MODE, tp->mi_mode);
1410 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001411
Joe Perches63c3a662011-04-26 08:12:10 +00001412 if (tg3_flag(tp, MDIOBUS_INITED) &&
Matt Carlson9ea48182010-02-17 15:17:01 +00001413 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1414 tg3_mdio_config_5785(tp);
1415}
1416
1417static int tg3_mdio_init(struct tg3 *tp)
1418{
1419 int i;
1420 u32 reg;
1421 struct phy_device *phydev;
1422
Joe Perches63c3a662011-04-26 08:12:10 +00001423 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001424 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001425
Matt Carlson69f11c92011-07-13 09:27:30 +00001426 tp->phy_addr = tp->pci_fn + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001427
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001428 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1429 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1430 else
1431 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1432 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001433 if (is_serdes)
1434 tp->phy_addr += 7;
1435 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001436 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001437
Matt Carlson158d7ab2008-05-29 01:37:54 -07001438 tg3_mdio_start(tp);
1439
Joe Perches63c3a662011-04-26 08:12:10 +00001440 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001441 return 0;
1442
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001443 tp->mdio_bus = mdiobus_alloc();
1444 if (tp->mdio_bus == NULL)
1445 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001446
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001447 tp->mdio_bus->name = "tg3 mdio bus";
1448 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001449 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001450 tp->mdio_bus->priv = tp;
1451 tp->mdio_bus->parent = &tp->pdev->dev;
1452 tp->mdio_bus->read = &tg3_mdio_read;
1453 tp->mdio_bus->write = &tg3_mdio_write;
1454 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001455 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001456 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001457
1458 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001459 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001460
1461 /* The bus registration will look for all the PHYs on the mdio bus.
1462 * Unfortunately, it does not ensure the PHY is powered up before
1463 * accessing the PHY ID registers. A chip reset is the
1464 * quickest way to bring the device back to an operational state..
1465 */
1466 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1467 tg3_bmcr_reset(tp);
1468
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001469 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001470 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001471 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001472 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001473 return i;
1474 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001475
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001476 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001477
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001478 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001479 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001480 mdiobus_unregister(tp->mdio_bus);
1481 mdiobus_free(tp->mdio_bus);
1482 return -ENODEV;
1483 }
1484
1485 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001486 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001487 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001488 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001489 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001490 case PHY_ID_BCM50610:
1491 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001492 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001493 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001494 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001495 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001496 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001497 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001498 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001499 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001500 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001501 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001502 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001503 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001504 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001505 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001506 case PHY_ID_RTL8201E:
1507 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001508 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001509 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001510 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001511 break;
1512 }
1513
Joe Perches63c3a662011-04-26 08:12:10 +00001514 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001515
1516 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1517 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001518
1519 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001520}
1521
1522static void tg3_mdio_fini(struct tg3 *tp)
1523{
Joe Perches63c3a662011-04-26 08:12:10 +00001524 if (tg3_flag(tp, MDIOBUS_INITED)) {
1525 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001526 mdiobus_unregister(tp->mdio_bus);
1527 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001528 }
1529}
1530
Matt Carlson95e28692008-05-25 23:44:14 -07001531/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001532static inline void tg3_generate_fw_event(struct tg3 *tp)
1533{
1534 u32 val;
1535
1536 val = tr32(GRC_RX_CPU_EVENT);
1537 val |= GRC_RX_CPU_DRIVER_EVENT;
1538 tw32_f(GRC_RX_CPU_EVENT, val);
1539
1540 tp->last_event_jiffies = jiffies;
1541}
1542
1543#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1544
1545/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001546static void tg3_wait_for_event_ack(struct tg3 *tp)
1547{
1548 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001549 unsigned int delay_cnt;
1550 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001551
Matt Carlson4ba526c2008-08-15 14:10:04 -07001552 /* If enough time has passed, no wait is necessary. */
1553 time_remain = (long)(tp->last_event_jiffies + 1 +
1554 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1555 (long)jiffies;
1556 if (time_remain < 0)
1557 return;
1558
1559 /* Check if we can shorten the wait time. */
1560 delay_cnt = jiffies_to_usecs(time_remain);
1561 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1562 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1563 delay_cnt = (delay_cnt >> 3) + 1;
1564
1565 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001566 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1567 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001568 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001569 }
1570}
1571
1572/* tp->lock is held. */
Matt Carlsonb28f3892012-02-13 15:20:12 +00001573static void tg3_phy_gather_ump_data(struct tg3 *tp, u32 *data)
Matt Carlson95e28692008-05-25 23:44:14 -07001574{
Matt Carlsonb28f3892012-02-13 15:20:12 +00001575 u32 reg, val;
Matt Carlson95e28692008-05-25 23:44:14 -07001576
1577 val = 0;
1578 if (!tg3_readphy(tp, MII_BMCR, &reg))
1579 val = reg << 16;
1580 if (!tg3_readphy(tp, MII_BMSR, &reg))
1581 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001582 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001583
1584 val = 0;
1585 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1586 val = reg << 16;
1587 if (!tg3_readphy(tp, MII_LPA, &reg))
1588 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001589 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001590
1591 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001592 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001593 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1594 val = reg << 16;
1595 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1596 val |= (reg & 0xffff);
1597 }
Matt Carlsonb28f3892012-02-13 15:20:12 +00001598 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001599
1600 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1601 val = reg << 16;
1602 else
1603 val = 0;
Matt Carlsonb28f3892012-02-13 15:20:12 +00001604 *data++ = val;
1605}
1606
1607/* tp->lock is held. */
1608static void tg3_ump_link_report(struct tg3 *tp)
1609{
1610 u32 data[4];
1611
1612 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
1613 return;
1614
1615 tg3_phy_gather_ump_data(tp, data);
1616
1617 tg3_wait_for_event_ack(tp);
1618
1619 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1620 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1621 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x0, data[0]);
1622 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x4, data[1]);
1623 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x8, data[2]);
1624 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0xc, data[3]);
Matt Carlson95e28692008-05-25 23:44:14 -07001625
Matt Carlson4ba526c2008-08-15 14:10:04 -07001626 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001627}
1628
Matt Carlson8d5a89b2011-08-31 11:44:51 +00001629/* tp->lock is held. */
1630static void tg3_stop_fw(struct tg3 *tp)
1631{
1632 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
1633 /* Wait for RX cpu to ACK the previous event. */
1634 tg3_wait_for_event_ack(tp);
1635
1636 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
1637
1638 tg3_generate_fw_event(tp);
1639
1640 /* Wait for RX cpu to ACK this event. */
1641 tg3_wait_for_event_ack(tp);
1642 }
1643}
1644
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001645/* tp->lock is held. */
1646static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
1647{
1648 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
1649 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
1650
1651 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1652 switch (kind) {
1653 case RESET_KIND_INIT:
1654 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1655 DRV_STATE_START);
1656 break;
1657
1658 case RESET_KIND_SHUTDOWN:
1659 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1660 DRV_STATE_UNLOAD);
1661 break;
1662
1663 case RESET_KIND_SUSPEND:
1664 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1665 DRV_STATE_SUSPEND);
1666 break;
1667
1668 default:
1669 break;
1670 }
1671 }
1672
1673 if (kind == RESET_KIND_INIT ||
1674 kind == RESET_KIND_SUSPEND)
1675 tg3_ape_driver_state_change(tp, kind);
1676}
1677
1678/* tp->lock is held. */
1679static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
1680{
1681 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1682 switch (kind) {
1683 case RESET_KIND_INIT:
1684 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1685 DRV_STATE_START_DONE);
1686 break;
1687
1688 case RESET_KIND_SHUTDOWN:
1689 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1690 DRV_STATE_UNLOAD_DONE);
1691 break;
1692
1693 default:
1694 break;
1695 }
1696 }
1697
1698 if (kind == RESET_KIND_SHUTDOWN)
1699 tg3_ape_driver_state_change(tp, kind);
1700}
1701
1702/* tp->lock is held. */
1703static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
1704{
1705 if (tg3_flag(tp, ENABLE_ASF)) {
1706 switch (kind) {
1707 case RESET_KIND_INIT:
1708 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1709 DRV_STATE_START);
1710 break;
1711
1712 case RESET_KIND_SHUTDOWN:
1713 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1714 DRV_STATE_UNLOAD);
1715 break;
1716
1717 case RESET_KIND_SUSPEND:
1718 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1719 DRV_STATE_SUSPEND);
1720 break;
1721
1722 default:
1723 break;
1724 }
1725 }
1726}
1727
1728static int tg3_poll_fw(struct tg3 *tp)
1729{
1730 int i;
1731 u32 val;
1732
1733 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1734 /* Wait up to 20ms for init done. */
1735 for (i = 0; i < 200; i++) {
1736 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
1737 return 0;
1738 udelay(100);
1739 }
1740 return -ENODEV;
1741 }
1742
1743 /* Wait for firmware initialization to complete. */
1744 for (i = 0; i < 100000; i++) {
1745 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
1746 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
1747 break;
1748 udelay(10);
1749 }
1750
1751 /* Chip might not be fitted with firmware. Some Sun onboard
1752 * parts are configured like that. So don't signal the timeout
1753 * of the above loop as an error, but do report the lack of
1754 * running firmware once.
1755 */
1756 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
1757 tg3_flag_set(tp, NO_FWARE_REPORTED);
1758
1759 netdev_info(tp->dev, "No firmware running\n");
1760 }
1761
1762 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
1763 /* The 57765 A0 needs a little more
1764 * time to do some important work.
1765 */
1766 mdelay(10);
1767 }
1768
1769 return 0;
1770}
1771
Matt Carlson95e28692008-05-25 23:44:14 -07001772static void tg3_link_report(struct tg3 *tp)
1773{
1774 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001775 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001776 tg3_ump_link_report(tp);
1777 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001778 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1779 (tp->link_config.active_speed == SPEED_1000 ?
1780 1000 :
1781 (tp->link_config.active_speed == SPEED_100 ?
1782 100 : 10)),
1783 (tp->link_config.active_duplex == DUPLEX_FULL ?
1784 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001785
Joe Perches05dbe002010-02-17 19:44:19 +00001786 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1787 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1788 "on" : "off",
1789 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1790 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001791
1792 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1793 netdev_info(tp->dev, "EEE is %s\n",
1794 tp->setlpicnt ? "enabled" : "disabled");
1795
Matt Carlson95e28692008-05-25 23:44:14 -07001796 tg3_ump_link_report(tp);
1797 }
1798}
1799
Matt Carlson95e28692008-05-25 23:44:14 -07001800static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1801{
1802 u16 miireg;
1803
Steve Glendinninge18ce342008-12-16 02:00:00 -08001804 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001805 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001806 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001807 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001808 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001809 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1810 else
1811 miireg = 0;
1812
1813 return miireg;
1814}
1815
Matt Carlson95e28692008-05-25 23:44:14 -07001816static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1817{
1818 u8 cap = 0;
1819
Matt Carlsonf3791cd2011-11-21 15:01:17 +00001820 if (lcladv & rmtadv & ADVERTISE_1000XPAUSE) {
1821 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
1822 } else if (lcladv & rmtadv & ADVERTISE_1000XPSE_ASYM) {
1823 if (lcladv & ADVERTISE_1000XPAUSE)
1824 cap = FLOW_CTRL_RX;
1825 if (rmtadv & ADVERTISE_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001826 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001827 }
1828
1829 return cap;
1830}
1831
Matt Carlsonf51f3562008-05-25 23:45:08 -07001832static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001833{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001834 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001835 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001836 u32 old_rx_mode = tp->rx_mode;
1837 u32 old_tx_mode = tp->tx_mode;
1838
Joe Perches63c3a662011-04-26 08:12:10 +00001839 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001840 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001841 else
1842 autoneg = tp->link_config.autoneg;
1843
Joe Perches63c3a662011-04-26 08:12:10 +00001844 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001845 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001846 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001847 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001848 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001849 } else
1850 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001851
Matt Carlsonf51f3562008-05-25 23:45:08 -07001852 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001853
Steve Glendinninge18ce342008-12-16 02:00:00 -08001854 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001855 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1856 else
1857 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1858
Matt Carlsonf51f3562008-05-25 23:45:08 -07001859 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001860 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001861
Steve Glendinninge18ce342008-12-16 02:00:00 -08001862 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001863 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1864 else
1865 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1866
Matt Carlsonf51f3562008-05-25 23:45:08 -07001867 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001868 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001869}
1870
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001871static void tg3_adjust_link(struct net_device *dev)
1872{
1873 u8 oldflowctrl, linkmesg = 0;
1874 u32 mac_mode, lcl_adv, rmt_adv;
1875 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001876 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001877
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001878 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001879
1880 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1881 MAC_MODE_HALF_DUPLEX);
1882
1883 oldflowctrl = tp->link_config.active_flowctrl;
1884
1885 if (phydev->link) {
1886 lcl_adv = 0;
1887 rmt_adv = 0;
1888
1889 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1890 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001891 else if (phydev->speed == SPEED_1000 ||
1892 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001893 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001894 else
1895 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001896
1897 if (phydev->duplex == DUPLEX_HALF)
1898 mac_mode |= MAC_MODE_HALF_DUPLEX;
1899 else {
Matt Carlsonf88788f2011-12-14 11:10:00 +00001900 lcl_adv = mii_advertise_flowctrl(
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001901 tp->link_config.flowctrl);
1902
1903 if (phydev->pause)
1904 rmt_adv = LPA_PAUSE_CAP;
1905 if (phydev->asym_pause)
1906 rmt_adv |= LPA_PAUSE_ASYM;
1907 }
1908
1909 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1910 } else
1911 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1912
1913 if (mac_mode != tp->mac_mode) {
1914 tp->mac_mode = mac_mode;
1915 tw32_f(MAC_MODE, tp->mac_mode);
1916 udelay(40);
1917 }
1918
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001919 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1920 if (phydev->speed == SPEED_10)
1921 tw32(MAC_MI_STAT,
1922 MAC_MI_STAT_10MBPS_MODE |
1923 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1924 else
1925 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1926 }
1927
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001928 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1929 tw32(MAC_TX_LENGTHS,
1930 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1931 (6 << TX_LENGTHS_IPG_SHIFT) |
1932 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1933 else
1934 tw32(MAC_TX_LENGTHS,
1935 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1936 (6 << TX_LENGTHS_IPG_SHIFT) |
1937 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1938
Matt Carlson34655ad2012-02-22 12:35:18 +00001939 if (phydev->link != tp->old_link ||
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001940 phydev->speed != tp->link_config.active_speed ||
1941 phydev->duplex != tp->link_config.active_duplex ||
1942 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001943 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001944
Matt Carlson34655ad2012-02-22 12:35:18 +00001945 tp->old_link = phydev->link;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001946 tp->link_config.active_speed = phydev->speed;
1947 tp->link_config.active_duplex = phydev->duplex;
1948
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001949 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001950
1951 if (linkmesg)
1952 tg3_link_report(tp);
1953}
1954
1955static int tg3_phy_init(struct tg3 *tp)
1956{
1957 struct phy_device *phydev;
1958
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001959 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001960 return 0;
1961
1962 /* Bring the PHY back to a known state. */
1963 tg3_bmcr_reset(tp);
1964
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001965 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001966
1967 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad32008-11-10 13:55:14 -08001968 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001969 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001970 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001971 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001972 return PTR_ERR(phydev);
1973 }
1974
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001975 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001976 switch (phydev->interface) {
1977 case PHY_INTERFACE_MODE_GMII:
1978 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001979 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001980 phydev->supported &= (PHY_GBIT_FEATURES |
1981 SUPPORTED_Pause |
1982 SUPPORTED_Asym_Pause);
1983 break;
1984 }
1985 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001986 case PHY_INTERFACE_MODE_MII:
1987 phydev->supported &= (PHY_BASIC_FEATURES |
1988 SUPPORTED_Pause |
1989 SUPPORTED_Asym_Pause);
1990 break;
1991 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001992 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001993 return -EINVAL;
1994 }
1995
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001996 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001997
1998 phydev->advertising = phydev->supported;
1999
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002000 return 0;
2001}
2002
2003static void tg3_phy_start(struct tg3 *tp)
2004{
2005 struct phy_device *phydev;
2006
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002007 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002008 return;
2009
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002010 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002011
Matt Carlson80096062010-08-02 11:26:06 +00002012 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
2013 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonc6700ce2012-02-13 15:20:15 +00002014 phydev->speed = tp->link_config.speed;
2015 phydev->duplex = tp->link_config.duplex;
2016 phydev->autoneg = tp->link_config.autoneg;
2017 phydev->advertising = tp->link_config.advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002018 }
2019
2020 phy_start(phydev);
2021
2022 phy_start_aneg(phydev);
2023}
2024
2025static void tg3_phy_stop(struct tg3 *tp)
2026{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002027 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002028 return;
2029
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002030 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002031}
2032
2033static void tg3_phy_fini(struct tg3 *tp)
2034{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002035 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002036 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002037 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002038 }
2039}
2040
Matt Carlson941ec902011-08-19 13:58:23 +00002041static int tg3_phy_set_extloopbk(struct tg3 *tp)
2042{
2043 int err;
2044 u32 val;
2045
2046 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
2047 return 0;
2048
2049 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
2050 /* Cannot do read-modify-write on 5401 */
2051 err = tg3_phy_auxctl_write(tp,
2052 MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2053 MII_TG3_AUXCTL_ACTL_EXTLOOPBK |
2054 0x4c20);
2055 goto done;
2056 }
2057
2058 err = tg3_phy_auxctl_read(tp,
2059 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2060 if (err)
2061 return err;
2062
2063 val |= MII_TG3_AUXCTL_ACTL_EXTLOOPBK;
2064 err = tg3_phy_auxctl_write(tp,
2065 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, val);
2066
2067done:
2068 return err;
2069}
2070
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002071static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
2072{
2073 u32 phytest;
2074
2075 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2076 u32 phy;
2077
2078 tg3_writephy(tp, MII_TG3_FET_TEST,
2079 phytest | MII_TG3_FET_SHADOW_EN);
2080 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
2081 if (enable)
2082 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
2083 else
2084 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
2085 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
2086 }
2087 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2088 }
2089}
2090
Matt Carlson6833c042008-11-21 17:18:59 -08002091static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
2092{
2093 u32 reg;
2094
Joe Perches63c3a662011-04-26 08:12:10 +00002095 if (!tg3_flag(tp, 5705_PLUS) ||
2096 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002097 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08002098 return;
2099
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002100 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002101 tg3_phy_fet_toggle_apd(tp, enable);
2102 return;
2103 }
2104
Matt Carlson6833c042008-11-21 17:18:59 -08002105 reg = MII_TG3_MISC_SHDW_WREN |
2106 MII_TG3_MISC_SHDW_SCR5_SEL |
2107 MII_TG3_MISC_SHDW_SCR5_LPED |
2108 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
2109 MII_TG3_MISC_SHDW_SCR5_SDTL |
2110 MII_TG3_MISC_SHDW_SCR5_C125OE;
2111 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
2112 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
2113
2114 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2115
2116
2117 reg = MII_TG3_MISC_SHDW_WREN |
2118 MII_TG3_MISC_SHDW_APD_SEL |
2119 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
2120 if (enable)
2121 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
2122
2123 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2124}
2125
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002126static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
2127{
2128 u32 phy;
2129
Joe Perches63c3a662011-04-26 08:12:10 +00002130 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002131 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002132 return;
2133
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002134 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002135 u32 ephy;
2136
Matt Carlson535ef6e2009-08-25 10:09:36 +00002137 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
2138 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
2139
2140 tg3_writephy(tp, MII_TG3_FET_TEST,
2141 ephy | MII_TG3_FET_SHADOW_EN);
2142 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002143 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00002144 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002145 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00002146 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
2147 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002148 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00002149 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002150 }
2151 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00002152 int ret;
2153
2154 ret = tg3_phy_auxctl_read(tp,
2155 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
2156 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002157 if (enable)
2158 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
2159 else
2160 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002161 tg3_phy_auxctl_write(tp,
2162 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002163 }
2164 }
2165}
2166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167static void tg3_phy_set_wirespeed(struct tg3 *tp)
2168{
Matt Carlson15ee95c2011-04-20 07:57:40 +00002169 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 u32 val;
2171
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002172 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 return;
2174
Matt Carlson15ee95c2011-04-20 07:57:40 +00002175 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
2176 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002177 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
2178 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179}
2180
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002181static void tg3_phy_apply_otp(struct tg3 *tp)
2182{
2183 u32 otp, phy;
2184
2185 if (!tp->phy_otp)
2186 return;
2187
2188 otp = tp->phy_otp;
2189
Matt Carlson1d36ba42011-04-20 07:57:42 +00002190 if (TG3_PHY_AUXCTL_SMDSP_ENABLE(tp))
2191 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002192
2193 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
2194 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
2195 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
2196
2197 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
2198 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
2199 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
2200
2201 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
2202 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
2203 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
2204
2205 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
2206 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
2207
2208 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
2209 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
2210
2211 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
2212 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
2213 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
2214
Matt Carlson1d36ba42011-04-20 07:57:42 +00002215 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002216}
2217
Matt Carlson52b02d02010-10-14 10:37:41 +00002218static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
2219{
2220 u32 val;
2221
2222 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2223 return;
2224
2225 tp->setlpicnt = 0;
2226
2227 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
2228 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00002229 tp->link_config.active_duplex == DUPLEX_FULL &&
2230 (tp->link_config.active_speed == SPEED_100 ||
2231 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00002232 u32 eeectl;
2233
2234 if (tp->link_config.active_speed == SPEED_1000)
2235 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
2236 else
2237 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
2238
2239 tw32(TG3_CPMU_EEE_CTRL, eeectl);
2240
Matt Carlson3110f5f52010-12-06 08:28:50 +00002241 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
2242 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00002243
Matt Carlsonb0c59432011-05-19 12:12:48 +00002244 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
2245 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00002246 tp->setlpicnt = 2;
2247 }
2248
2249 if (!tp->setlpicnt) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002250 if (current_link_up == 1 &&
2251 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2252 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
2253 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2254 }
2255
Matt Carlson52b02d02010-10-14 10:37:41 +00002256 val = tr32(TG3_CPMU_EEE_MODE);
2257 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
2258 }
2259}
2260
Matt Carlsonb0c59432011-05-19 12:12:48 +00002261static void tg3_phy_eee_enable(struct tg3 *tp)
2262{
2263 u32 val;
2264
2265 if (tp->link_config.active_speed == SPEED_1000 &&
2266 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2267 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00002268 tg3_flag(tp, 57765_CLASS)) &&
Matt Carlsonb0c59432011-05-19 12:12:48 +00002269 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002270 val = MII_TG3_DSP_TAP26_ALNOKO |
2271 MII_TG3_DSP_TAP26_RMRXSTO;
2272 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Matt Carlsonb0c59432011-05-19 12:12:48 +00002273 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2274 }
2275
2276 val = tr32(TG3_CPMU_EEE_MODE);
2277 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
2278}
2279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280static int tg3_wait_macro_done(struct tg3 *tp)
2281{
2282 int limit = 100;
2283
2284 while (limit--) {
2285 u32 tmp32;
2286
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002287 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 if ((tmp32 & 0x1000) == 0)
2289 break;
2290 }
2291 }
Roel Kluind4675b52009-02-12 16:33:27 -08002292 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 return -EBUSY;
2294
2295 return 0;
2296}
2297
2298static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
2299{
2300 static const u32 test_pat[4][6] = {
2301 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
2302 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
2303 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
2304 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
2305 };
2306 int chan;
2307
2308 for (chan = 0; chan < 4; chan++) {
2309 int i;
2310
2311 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2312 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002313 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
2315 for (i = 0; i < 6; i++)
2316 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
2317 test_pat[chan][i]);
2318
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002319 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 if (tg3_wait_macro_done(tp)) {
2321 *resetp = 1;
2322 return -EBUSY;
2323 }
2324
2325 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2326 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002327 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 if (tg3_wait_macro_done(tp)) {
2329 *resetp = 1;
2330 return -EBUSY;
2331 }
2332
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002333 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 if (tg3_wait_macro_done(tp)) {
2335 *resetp = 1;
2336 return -EBUSY;
2337 }
2338
2339 for (i = 0; i < 6; i += 2) {
2340 u32 low, high;
2341
2342 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
2343 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
2344 tg3_wait_macro_done(tp)) {
2345 *resetp = 1;
2346 return -EBUSY;
2347 }
2348 low &= 0x7fff;
2349 high &= 0x000f;
2350 if (low != test_pat[chan][i] ||
2351 high != test_pat[chan][i+1]) {
2352 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
2353 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
2354 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
2355
2356 return -EBUSY;
2357 }
2358 }
2359 }
2360
2361 return 0;
2362}
2363
2364static int tg3_phy_reset_chanpat(struct tg3 *tp)
2365{
2366 int chan;
2367
2368 for (chan = 0; chan < 4; chan++) {
2369 int i;
2370
2371 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2372 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002373 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 for (i = 0; i < 6; i++)
2375 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002376 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 if (tg3_wait_macro_done(tp))
2378 return -EBUSY;
2379 }
2380
2381 return 0;
2382}
2383
2384static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
2385{
2386 u32 reg32, phy9_orig;
2387 int retries, do_phy_reset, err;
2388
2389 retries = 10;
2390 do_phy_reset = 1;
2391 do {
2392 if (do_phy_reset) {
2393 err = tg3_bmcr_reset(tp);
2394 if (err)
2395 return err;
2396 do_phy_reset = 0;
2397 }
2398
2399 /* Disable transmitter and interrupt. */
2400 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2401 continue;
2402
2403 reg32 |= 0x3000;
2404 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2405
2406 /* Set full-duplex, 1000 mbps. */
2407 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002408 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
2410 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002411 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 continue;
2413
Matt Carlson221c5632011-06-13 13:39:01 +00002414 tg3_writephy(tp, MII_CTRL1000,
2415 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
Matt Carlson1d36ba42011-04-20 07:57:42 +00002417 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
2418 if (err)
2419 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
2421 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002422 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2425 if (!err)
2426 break;
2427 } while (--retries);
2428
2429 err = tg3_phy_reset_chanpat(tp);
2430 if (err)
2431 return err;
2432
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002433 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002436 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Matt Carlson1d36ba42011-04-20 07:57:42 +00002438 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Matt Carlson221c5632011-06-13 13:39:01 +00002440 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
2442 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2443 reg32 &= ~0x3000;
2444 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2445 } else if (!err)
2446 err = -EBUSY;
2447
2448 return err;
2449}
2450
2451/* This will reset the tigon3 PHY if there is no valid
2452 * link unless the FORCE argument is non-zero.
2453 */
2454static int tg3_phy_reset(struct tg3 *tp)
2455{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002456 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 int err;
2458
Michael Chan60189dd2006-12-17 17:08:07 -08002459 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002460 val = tr32(GRC_MISC_CFG);
2461 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2462 udelay(40);
2463 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002464 err = tg3_readphy(tp, MII_BMSR, &val);
2465 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 if (err != 0)
2467 return -EBUSY;
2468
Michael Chanc8e1e822006-04-29 18:55:17 -07002469 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
2470 netif_carrier_off(tp->dev);
2471 tg3_link_report(tp);
2472 }
2473
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2475 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2476 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
2477 err = tg3_phy_reset_5703_4_5(tp);
2478 if (err)
2479 return err;
2480 goto out;
2481 }
2482
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002483 cpmuctrl = 0;
2484 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
2485 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
2486 cpmuctrl = tr32(TG3_CPMU_CTRL);
2487 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2488 tw32(TG3_CPMU_CTRL,
2489 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2490 }
2491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 err = tg3_bmcr_reset(tp);
2493 if (err)
2494 return err;
2495
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002496 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002497 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2498 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002499
2500 tw32(TG3_CPMU_CTRL, cpmuctrl);
2501 }
2502
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002503 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2504 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002505 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2506 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2507 CPMU_LSPD_1000MB_MACCLK_12_5) {
2508 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2509 udelay(40);
2510 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2511 }
2512 }
2513
Joe Perches63c3a662011-04-26 08:12:10 +00002514 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002515 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002516 return 0;
2517
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002518 tg3_phy_apply_otp(tp);
2519
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002520 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002521 tg3_phy_toggle_apd(tp, true);
2522 else
2523 tg3_phy_toggle_apd(tp, false);
2524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002526 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
2527 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002528 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2529 tg3_phydsp_write(tp, 0x000a, 0x0323);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002530 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002532
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002533 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002534 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2535 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002537
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002538 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002539 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2540 tg3_phydsp_write(tp, 0x000a, 0x310b);
2541 tg3_phydsp_write(tp, 0x201f, 0x9506);
2542 tg3_phydsp_write(tp, 0x401f, 0x14e2);
2543 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2544 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002545 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002546 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2547 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2548 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2549 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2550 tg3_writephy(tp, MII_TG3_TEST1,
2551 MII_TG3_TEST1_TRIM_EN | 0x4);
2552 } else
2553 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2554
2555 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2556 }
Michael Chanc424cb22006-04-29 18:56:34 -07002557 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002558
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 /* Set Extended packet length bit (bit 14) on all chips that */
2560 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002561 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002563 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002564 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002566 err = tg3_phy_auxctl_read(tp,
2567 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2568 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002569 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2570 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 }
2572
2573 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2574 * jumbo frames transmission.
2575 */
Joe Perches63c3a662011-04-26 08:12:10 +00002576 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002577 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002578 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002579 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 }
2581
Michael Chan715116a2006-09-27 16:09:25 -07002582 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002583 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002584 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002585 }
2586
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002587 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 tg3_phy_set_wirespeed(tp);
2589 return 0;
2590}
2591
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002592#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2593#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2594#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2595 TG3_GPIO_MSG_NEED_VAUX)
2596#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2597 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2598 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2599 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2600 (TG3_GPIO_MSG_DRVR_PRES << 12))
2601
2602#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2603 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2604 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2605 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2606 (TG3_GPIO_MSG_NEED_VAUX << 12))
2607
2608static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2609{
2610 u32 status, shift;
2611
2612 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2613 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2614 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2615 else
2616 status = tr32(TG3_CPMU_DRV_STATUS);
2617
2618 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2619 status &= ~(TG3_GPIO_MSG_MASK << shift);
2620 status |= (newstat << shift);
2621
2622 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2623 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2624 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2625 else
2626 tw32(TG3_CPMU_DRV_STATUS, status);
2627
2628 return status >> TG3_APE_GPIO_MSG_SHIFT;
2629}
2630
Matt Carlson520b2752011-06-13 13:39:02 +00002631static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2632{
2633 if (!tg3_flag(tp, IS_NIC))
2634 return 0;
2635
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002636 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2637 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2638 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
2639 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2640 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002641
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002642 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2643
2644 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2645 TG3_GRC_LCLCTL_PWRSW_DELAY);
2646
2647 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2648 } else {
2649 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2650 TG3_GRC_LCLCTL_PWRSW_DELAY);
2651 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002652
Matt Carlson520b2752011-06-13 13:39:02 +00002653 return 0;
2654}
2655
2656static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2657{
2658 u32 grc_local_ctrl;
2659
2660 if (!tg3_flag(tp, IS_NIC) ||
2661 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2662 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)
2663 return;
2664
2665 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2666
2667 tw32_wait_f(GRC_LOCAL_CTRL,
2668 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2669 TG3_GRC_LCLCTL_PWRSW_DELAY);
2670
2671 tw32_wait_f(GRC_LOCAL_CTRL,
2672 grc_local_ctrl,
2673 TG3_GRC_LCLCTL_PWRSW_DELAY);
2674
2675 tw32_wait_f(GRC_LOCAL_CTRL,
2676 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2677 TG3_GRC_LCLCTL_PWRSW_DELAY);
2678}
2679
2680static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2681{
2682 if (!tg3_flag(tp, IS_NIC))
2683 return;
2684
2685 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2686 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2687 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2688 (GRC_LCLCTRL_GPIO_OE0 |
2689 GRC_LCLCTRL_GPIO_OE1 |
2690 GRC_LCLCTRL_GPIO_OE2 |
2691 GRC_LCLCTRL_GPIO_OUTPUT0 |
2692 GRC_LCLCTRL_GPIO_OUTPUT1),
2693 TG3_GRC_LCLCTL_PWRSW_DELAY);
2694 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2695 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2696 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2697 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2698 GRC_LCLCTRL_GPIO_OE1 |
2699 GRC_LCLCTRL_GPIO_OE2 |
2700 GRC_LCLCTRL_GPIO_OUTPUT0 |
2701 GRC_LCLCTRL_GPIO_OUTPUT1 |
2702 tp->grc_local_ctrl;
2703 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2704 TG3_GRC_LCLCTL_PWRSW_DELAY);
2705
2706 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2707 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2708 TG3_GRC_LCLCTL_PWRSW_DELAY);
2709
2710 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2711 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2712 TG3_GRC_LCLCTL_PWRSW_DELAY);
2713 } else {
2714 u32 no_gpio2;
2715 u32 grc_local_ctrl = 0;
2716
2717 /* Workaround to prevent overdrawing Amps. */
2718 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
2719 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2720 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2721 grc_local_ctrl,
2722 TG3_GRC_LCLCTL_PWRSW_DELAY);
2723 }
2724
2725 /* On 5753 and variants, GPIO2 cannot be used. */
2726 no_gpio2 = tp->nic_sram_data_cfg &
2727 NIC_SRAM_DATA_CFG_NO_GPIO2;
2728
2729 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2730 GRC_LCLCTRL_GPIO_OE1 |
2731 GRC_LCLCTRL_GPIO_OE2 |
2732 GRC_LCLCTRL_GPIO_OUTPUT1 |
2733 GRC_LCLCTRL_GPIO_OUTPUT2;
2734 if (no_gpio2) {
2735 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2736 GRC_LCLCTRL_GPIO_OUTPUT2);
2737 }
2738 tw32_wait_f(GRC_LOCAL_CTRL,
2739 tp->grc_local_ctrl | grc_local_ctrl,
2740 TG3_GRC_LCLCTL_PWRSW_DELAY);
2741
2742 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2743
2744 tw32_wait_f(GRC_LOCAL_CTRL,
2745 tp->grc_local_ctrl | grc_local_ctrl,
2746 TG3_GRC_LCLCTL_PWRSW_DELAY);
2747
2748 if (!no_gpio2) {
2749 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2750 tw32_wait_f(GRC_LOCAL_CTRL,
2751 tp->grc_local_ctrl | grc_local_ctrl,
2752 TG3_GRC_LCLCTL_PWRSW_DELAY);
2753 }
2754 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002755}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002756
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002757static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002758{
2759 u32 msg = 0;
2760
2761 /* Serialize power state transitions */
2762 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2763 return;
2764
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002765 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002766 msg = TG3_GPIO_MSG_NEED_VAUX;
2767
2768 msg = tg3_set_function_status(tp, msg);
2769
2770 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2771 goto done;
2772
2773 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2774 tg3_pwrsrc_switch_to_vaux(tp);
2775 else
2776 tg3_pwrsrc_die_with_vmain(tp);
2777
2778done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002779 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002780}
2781
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002782static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783{
Matt Carlson683644b2011-03-09 16:58:23 +00002784 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Matt Carlson334355a2010-01-20 16:58:10 +00002786 /* The GPIOs do something completely different on 57765. */
Matt Carlson55086ad2011-12-14 11:09:59 +00002787 if (!tg3_flag(tp, IS_NIC) || tg3_flag(tp, 57765_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 return;
2789
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002790 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2791 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2792 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002793 tg3_frob_aux_power_5717(tp, include_wol ?
2794 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002795 return;
2796 }
2797
2798 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002799 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002801 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002802
Michael Chanbc1c7562006-03-20 17:48:03 -08002803 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002804 if (dev_peer) {
2805 struct tg3 *tp_peer = netdev_priv(dev_peer);
2806
Joe Perches63c3a662011-04-26 08:12:10 +00002807 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002808 return;
2809
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002810 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002811 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002812 need_vaux = true;
2813 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002816 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2817 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002818 need_vaux = true;
2819
Matt Carlson520b2752011-06-13 13:39:02 +00002820 if (need_vaux)
2821 tg3_pwrsrc_switch_to_vaux(tp);
2822 else
2823 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824}
2825
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002826static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2827{
2828 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2829 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002830 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002831 if (speed != SPEED_10)
2832 return 1;
2833 } else if (speed == SPEED_10)
2834 return 1;
2835
2836 return 0;
2837}
2838
Matt Carlson0a459aa2008-11-03 16:54:15 -08002839static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002840{
Matt Carlsonce057f02007-11-12 21:08:03 -08002841 u32 val;
2842
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002843 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Michael Chan51297242007-02-13 12:17:57 -08002844 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2845 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2846 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2847
2848 sg_dig_ctrl |=
2849 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2850 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2851 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2852 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002853 return;
Michael Chan51297242007-02-13 12:17:57 -08002854 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002855
Michael Chan60189dd2006-12-17 17:08:07 -08002856 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002857 tg3_bmcr_reset(tp);
2858 val = tr32(GRC_MISC_CFG);
2859 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2860 udelay(40);
2861 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002862 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002863 u32 phytest;
2864 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2865 u32 phy;
2866
2867 tg3_writephy(tp, MII_ADVERTISE, 0);
2868 tg3_writephy(tp, MII_BMCR,
2869 BMCR_ANENABLE | BMCR_ANRESTART);
2870
2871 tg3_writephy(tp, MII_TG3_FET_TEST,
2872 phytest | MII_TG3_FET_SHADOW_EN);
2873 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2874 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2875 tg3_writephy(tp,
2876 MII_TG3_FET_SHDW_AUXMODE4,
2877 phy);
2878 }
2879 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2880 }
2881 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002882 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002883 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2884 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002885
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002886 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2887 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2888 MII_TG3_AUXCTL_PCTL_VREG_11V;
2889 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002890 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002891
Michael Chan15c3b692006-03-22 01:06:52 -08002892 /* The PHY should not be powered down on some chips because
2893 * of bugs.
2894 */
2895 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2896 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2897 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
Matt Carlson085f1af2012-04-02 09:01:40 +00002898 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)) ||
2899 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
2900 !tp->pci_fn))
Michael Chan15c3b692006-03-22 01:06:52 -08002901 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002902
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002903 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2904 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002905 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2906 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2907 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2908 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2909 }
2910
Michael Chan15c3b692006-03-22 01:06:52 -08002911 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2912}
2913
Matt Carlson3f007892008-11-03 16:51:36 -08002914/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002915static int tg3_nvram_lock(struct tg3 *tp)
2916{
Joe Perches63c3a662011-04-26 08:12:10 +00002917 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002918 int i;
2919
2920 if (tp->nvram_lock_cnt == 0) {
2921 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2922 for (i = 0; i < 8000; i++) {
2923 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2924 break;
2925 udelay(20);
2926 }
2927 if (i == 8000) {
2928 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2929 return -ENODEV;
2930 }
2931 }
2932 tp->nvram_lock_cnt++;
2933 }
2934 return 0;
2935}
2936
2937/* tp->lock is held. */
2938static void tg3_nvram_unlock(struct tg3 *tp)
2939{
Joe Perches63c3a662011-04-26 08:12:10 +00002940 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002941 if (tp->nvram_lock_cnt > 0)
2942 tp->nvram_lock_cnt--;
2943 if (tp->nvram_lock_cnt == 0)
2944 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2945 }
2946}
2947
2948/* tp->lock is held. */
2949static void tg3_enable_nvram_access(struct tg3 *tp)
2950{
Joe Perches63c3a662011-04-26 08:12:10 +00002951 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002952 u32 nvaccess = tr32(NVRAM_ACCESS);
2953
2954 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2955 }
2956}
2957
2958/* tp->lock is held. */
2959static void tg3_disable_nvram_access(struct tg3 *tp)
2960{
Joe Perches63c3a662011-04-26 08:12:10 +00002961 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002962 u32 nvaccess = tr32(NVRAM_ACCESS);
2963
2964 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2965 }
2966}
2967
2968static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2969 u32 offset, u32 *val)
2970{
2971 u32 tmp;
2972 int i;
2973
2974 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2975 return -EINVAL;
2976
2977 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2978 EEPROM_ADDR_DEVID_MASK |
2979 EEPROM_ADDR_READ);
2980 tw32(GRC_EEPROM_ADDR,
2981 tmp |
2982 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2983 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2984 EEPROM_ADDR_ADDR_MASK) |
2985 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2986
2987 for (i = 0; i < 1000; i++) {
2988 tmp = tr32(GRC_EEPROM_ADDR);
2989
2990 if (tmp & EEPROM_ADDR_COMPLETE)
2991 break;
2992 msleep(1);
2993 }
2994 if (!(tmp & EEPROM_ADDR_COMPLETE))
2995 return -EBUSY;
2996
Matt Carlson62cedd12009-04-20 14:52:29 -07002997 tmp = tr32(GRC_EEPROM_DATA);
2998
2999 /*
3000 * The data will always be opposite the native endian
3001 * format. Perform a blind byteswap to compensate.
3002 */
3003 *val = swab32(tmp);
3004
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003005 return 0;
3006}
3007
3008#define NVRAM_CMD_TIMEOUT 10000
3009
3010static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
3011{
3012 int i;
3013
3014 tw32(NVRAM_CMD, nvram_cmd);
3015 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
3016 udelay(10);
3017 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
3018 udelay(10);
3019 break;
3020 }
3021 }
3022
3023 if (i == NVRAM_CMD_TIMEOUT)
3024 return -EBUSY;
3025
3026 return 0;
3027}
3028
3029static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
3030{
Joe Perches63c3a662011-04-26 08:12:10 +00003031 if (tg3_flag(tp, NVRAM) &&
3032 tg3_flag(tp, NVRAM_BUFFERED) &&
3033 tg3_flag(tp, FLASH) &&
3034 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003035 (tp->nvram_jedecnum == JEDEC_ATMEL))
3036
3037 addr = ((addr / tp->nvram_pagesize) <<
3038 ATMEL_AT45DB0X1B_PAGE_POS) +
3039 (addr % tp->nvram_pagesize);
3040
3041 return addr;
3042}
3043
3044static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
3045{
Joe Perches63c3a662011-04-26 08:12:10 +00003046 if (tg3_flag(tp, NVRAM) &&
3047 tg3_flag(tp, NVRAM_BUFFERED) &&
3048 tg3_flag(tp, FLASH) &&
3049 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003050 (tp->nvram_jedecnum == JEDEC_ATMEL))
3051
3052 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
3053 tp->nvram_pagesize) +
3054 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
3055
3056 return addr;
3057}
3058
Matt Carlsone4f34112009-02-25 14:25:00 +00003059/* NOTE: Data read in from NVRAM is byteswapped according to
3060 * the byteswapping settings for all other register accesses.
3061 * tg3 devices are BE devices, so on a BE machine, the data
3062 * returned will be exactly as it is seen in NVRAM. On a LE
3063 * machine, the 32-bit value will be byteswapped.
3064 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003065static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
3066{
3067 int ret;
3068
Joe Perches63c3a662011-04-26 08:12:10 +00003069 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003070 return tg3_nvram_read_using_eeprom(tp, offset, val);
3071
3072 offset = tg3_nvram_phys_addr(tp, offset);
3073
3074 if (offset > NVRAM_ADDR_MSK)
3075 return -EINVAL;
3076
3077 ret = tg3_nvram_lock(tp);
3078 if (ret)
3079 return ret;
3080
3081 tg3_enable_nvram_access(tp);
3082
3083 tw32(NVRAM_ADDR, offset);
3084 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
3085 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
3086
3087 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00003088 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003089
3090 tg3_disable_nvram_access(tp);
3091
3092 tg3_nvram_unlock(tp);
3093
3094 return ret;
3095}
3096
Matt Carlsona9dc5292009-02-25 14:25:30 +00003097/* Ensures NVRAM data is in bytestream format. */
3098static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003099{
3100 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00003101 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003102 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00003103 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003104 return res;
3105}
3106
Matt Carlsondbe9b922012-02-13 10:20:09 +00003107static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
3108 u32 offset, u32 len, u8 *buf)
3109{
3110 int i, j, rc = 0;
3111 u32 val;
3112
3113 for (i = 0; i < len; i += 4) {
3114 u32 addr;
3115 __be32 data;
3116
3117 addr = offset + i;
3118
3119 memcpy(&data, buf + i, 4);
3120
3121 /*
3122 * The SEEPROM interface expects the data to always be opposite
3123 * the native endian format. We accomplish this by reversing
3124 * all the operations that would have been performed on the
3125 * data from a call to tg3_nvram_read_be32().
3126 */
3127 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
3128
3129 val = tr32(GRC_EEPROM_ADDR);
3130 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
3131
3132 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
3133 EEPROM_ADDR_READ);
3134 tw32(GRC_EEPROM_ADDR, val |
3135 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3136 (addr & EEPROM_ADDR_ADDR_MASK) |
3137 EEPROM_ADDR_START |
3138 EEPROM_ADDR_WRITE);
3139
3140 for (j = 0; j < 1000; j++) {
3141 val = tr32(GRC_EEPROM_ADDR);
3142
3143 if (val & EEPROM_ADDR_COMPLETE)
3144 break;
3145 msleep(1);
3146 }
3147 if (!(val & EEPROM_ADDR_COMPLETE)) {
3148 rc = -EBUSY;
3149 break;
3150 }
3151 }
3152
3153 return rc;
3154}
3155
3156/* offset and length are dword aligned */
3157static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
3158 u8 *buf)
3159{
3160 int ret = 0;
3161 u32 pagesize = tp->nvram_pagesize;
3162 u32 pagemask = pagesize - 1;
3163 u32 nvram_cmd;
3164 u8 *tmp;
3165
3166 tmp = kmalloc(pagesize, GFP_KERNEL);
3167 if (tmp == NULL)
3168 return -ENOMEM;
3169
3170 while (len) {
3171 int j;
3172 u32 phy_addr, page_off, size;
3173
3174 phy_addr = offset & ~pagemask;
3175
3176 for (j = 0; j < pagesize; j += 4) {
3177 ret = tg3_nvram_read_be32(tp, phy_addr + j,
3178 (__be32 *) (tmp + j));
3179 if (ret)
3180 break;
3181 }
3182 if (ret)
3183 break;
3184
3185 page_off = offset & pagemask;
3186 size = pagesize;
3187 if (len < size)
3188 size = len;
3189
3190 len -= size;
3191
3192 memcpy(tmp + page_off, buf, size);
3193
3194 offset = offset + (pagesize - page_off);
3195
3196 tg3_enable_nvram_access(tp);
3197
3198 /*
3199 * Before we can erase the flash page, we need
3200 * to issue a special "write enable" command.
3201 */
3202 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3203
3204 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3205 break;
3206
3207 /* Erase the target page */
3208 tw32(NVRAM_ADDR, phy_addr);
3209
3210 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
3211 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
3212
3213 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3214 break;
3215
3216 /* Issue another write enable to start the write. */
3217 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3218
3219 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3220 break;
3221
3222 for (j = 0; j < pagesize; j += 4) {
3223 __be32 data;
3224
3225 data = *((__be32 *) (tmp + j));
3226
3227 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3228
3229 tw32(NVRAM_ADDR, phy_addr + j);
3230
3231 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
3232 NVRAM_CMD_WR;
3233
3234 if (j == 0)
3235 nvram_cmd |= NVRAM_CMD_FIRST;
3236 else if (j == (pagesize - 4))
3237 nvram_cmd |= NVRAM_CMD_LAST;
3238
3239 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3240 if (ret)
3241 break;
3242 }
3243 if (ret)
3244 break;
3245 }
3246
3247 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3248 tg3_nvram_exec_cmd(tp, nvram_cmd);
3249
3250 kfree(tmp);
3251
3252 return ret;
3253}
3254
3255/* offset and length are dword aligned */
3256static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
3257 u8 *buf)
3258{
3259 int i, ret = 0;
3260
3261 for (i = 0; i < len; i += 4, offset += 4) {
3262 u32 page_off, phy_addr, nvram_cmd;
3263 __be32 data;
3264
3265 memcpy(&data, buf + i, 4);
3266 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3267
3268 page_off = offset % tp->nvram_pagesize;
3269
3270 phy_addr = tg3_nvram_phys_addr(tp, offset);
3271
Matt Carlsondbe9b922012-02-13 10:20:09 +00003272 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
3273
3274 if (page_off == 0 || i == 0)
3275 nvram_cmd |= NVRAM_CMD_FIRST;
3276 if (page_off == (tp->nvram_pagesize - 4))
3277 nvram_cmd |= NVRAM_CMD_LAST;
3278
3279 if (i == (len - 4))
3280 nvram_cmd |= NVRAM_CMD_LAST;
3281
Matt Carlson42278222012-02-13 15:20:11 +00003282 if ((nvram_cmd & NVRAM_CMD_FIRST) ||
3283 !tg3_flag(tp, FLASH) ||
3284 !tg3_flag(tp, 57765_PLUS))
3285 tw32(NVRAM_ADDR, phy_addr);
3286
Matt Carlsondbe9b922012-02-13 10:20:09 +00003287 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
3288 !tg3_flag(tp, 5755_PLUS) &&
3289 (tp->nvram_jedecnum == JEDEC_ST) &&
3290 (nvram_cmd & NVRAM_CMD_FIRST)) {
3291 u32 cmd;
3292
3293 cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3294 ret = tg3_nvram_exec_cmd(tp, cmd);
3295 if (ret)
3296 break;
3297 }
3298 if (!tg3_flag(tp, FLASH)) {
3299 /* We always do complete word writes to eeprom. */
3300 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
3301 }
3302
3303 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3304 if (ret)
3305 break;
3306 }
3307 return ret;
3308}
3309
3310/* offset and length are dword aligned */
3311static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
3312{
3313 int ret;
3314
3315 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3316 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
3317 ~GRC_LCLCTRL_GPIO_OUTPUT1);
3318 udelay(40);
3319 }
3320
3321 if (!tg3_flag(tp, NVRAM)) {
3322 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
3323 } else {
3324 u32 grc_mode;
3325
3326 ret = tg3_nvram_lock(tp);
3327 if (ret)
3328 return ret;
3329
3330 tg3_enable_nvram_access(tp);
3331 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
3332 tw32(NVRAM_WRITE1, 0x406);
3333
3334 grc_mode = tr32(GRC_MODE);
3335 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
3336
3337 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
3338 ret = tg3_nvram_write_block_buffered(tp, offset, len,
3339 buf);
3340 } else {
3341 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
3342 buf);
3343 }
3344
3345 grc_mode = tr32(GRC_MODE);
3346 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
3347
3348 tg3_disable_nvram_access(tp);
3349 tg3_nvram_unlock(tp);
3350 }
3351
3352 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3353 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
3354 udelay(40);
3355 }
3356
3357 return ret;
3358}
3359
Matt Carlson997b4f12011-08-31 11:44:53 +00003360#define RX_CPU_SCRATCH_BASE 0x30000
3361#define RX_CPU_SCRATCH_SIZE 0x04000
3362#define TX_CPU_SCRATCH_BASE 0x34000
3363#define TX_CPU_SCRATCH_SIZE 0x04000
3364
3365/* tp->lock is held. */
3366static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
3367{
3368 int i;
3369
3370 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
3371
3372 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
3373 u32 val = tr32(GRC_VCPU_EXT_CTRL);
3374
3375 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
3376 return 0;
3377 }
3378 if (offset == RX_CPU_BASE) {
3379 for (i = 0; i < 10000; i++) {
3380 tw32(offset + CPU_STATE, 0xffffffff);
3381 tw32(offset + CPU_MODE, CPU_MODE_HALT);
3382 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
3383 break;
3384 }
3385
3386 tw32(offset + CPU_STATE, 0xffffffff);
3387 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
3388 udelay(10);
3389 } else {
3390 for (i = 0; i < 10000; i++) {
3391 tw32(offset + CPU_STATE, 0xffffffff);
3392 tw32(offset + CPU_MODE, CPU_MODE_HALT);
3393 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
3394 break;
3395 }
3396 }
3397
3398 if (i >= 10000) {
3399 netdev_err(tp->dev, "%s timed out, %s CPU\n",
3400 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
3401 return -ENODEV;
3402 }
3403
3404 /* Clear firmware's nvram arbitration. */
3405 if (tg3_flag(tp, NVRAM))
3406 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3407 return 0;
3408}
3409
3410struct fw_info {
3411 unsigned int fw_base;
3412 unsigned int fw_len;
3413 const __be32 *fw_data;
3414};
3415
3416/* tp->lock is held. */
3417static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3418 u32 cpu_scratch_base, int cpu_scratch_size,
3419 struct fw_info *info)
3420{
3421 int err, lock_err, i;
3422 void (*write_op)(struct tg3 *, u32, u32);
3423
3424 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3425 netdev_err(tp->dev,
3426 "%s: Trying to load TX cpu firmware which is 5705\n",
3427 __func__);
3428 return -EINVAL;
3429 }
3430
3431 if (tg3_flag(tp, 5705_PLUS))
3432 write_op = tg3_write_mem;
3433 else
3434 write_op = tg3_write_indirect_reg32;
3435
3436 /* It is possible that bootcode is still loading at this point.
3437 * Get the nvram lock first before halting the cpu.
3438 */
3439 lock_err = tg3_nvram_lock(tp);
3440 err = tg3_halt_cpu(tp, cpu_base);
3441 if (!lock_err)
3442 tg3_nvram_unlock(tp);
3443 if (err)
3444 goto out;
3445
3446 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3447 write_op(tp, cpu_scratch_base + i, 0);
3448 tw32(cpu_base + CPU_STATE, 0xffffffff);
3449 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
3450 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
3451 write_op(tp, (cpu_scratch_base +
3452 (info->fw_base & 0xffff) +
3453 (i * sizeof(u32))),
3454 be32_to_cpu(info->fw_data[i]));
3455
3456 err = 0;
3457
3458out:
3459 return err;
3460}
3461
3462/* tp->lock is held. */
3463static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3464{
3465 struct fw_info info;
3466 const __be32 *fw_data;
3467 int err, i;
3468
3469 fw_data = (void *)tp->fw->data;
3470
3471 /* Firmware blob starts with version numbers, followed by
3472 start address and length. We are setting complete length.
3473 length = end_address_of_bss - start_address_of_text.
3474 Remainder is the blob to be loaded contiguously
3475 from start address. */
3476
3477 info.fw_base = be32_to_cpu(fw_data[1]);
3478 info.fw_len = tp->fw->size - 12;
3479 info.fw_data = &fw_data[3];
3480
3481 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3482 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
3483 &info);
3484 if (err)
3485 return err;
3486
3487 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3488 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
3489 &info);
3490 if (err)
3491 return err;
3492
3493 /* Now startup only the RX cpu. */
3494 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3495 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
3496
3497 for (i = 0; i < 5; i++) {
3498 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
3499 break;
3500 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3501 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3502 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
3503 udelay(1000);
3504 }
3505 if (i >= 5) {
3506 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3507 "should be %08x\n", __func__,
3508 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
3509 return -ENODEV;
3510 }
3511 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3512 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
3513
3514 return 0;
3515}
3516
3517/* tp->lock is held. */
3518static int tg3_load_tso_firmware(struct tg3 *tp)
3519{
3520 struct fw_info info;
3521 const __be32 *fw_data;
3522 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
3523 int err, i;
3524
3525 if (tg3_flag(tp, HW_TSO_1) ||
3526 tg3_flag(tp, HW_TSO_2) ||
3527 tg3_flag(tp, HW_TSO_3))
3528 return 0;
3529
3530 fw_data = (void *)tp->fw->data;
3531
3532 /* Firmware blob starts with version numbers, followed by
3533 start address and length. We are setting complete length.
3534 length = end_address_of_bss - start_address_of_text.
3535 Remainder is the blob to be loaded contiguously
3536 from start address. */
3537
3538 info.fw_base = be32_to_cpu(fw_data[1]);
3539 cpu_scratch_size = tp->fw_len;
3540 info.fw_len = tp->fw->size - 12;
3541 info.fw_data = &fw_data[3];
3542
3543 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
3544 cpu_base = RX_CPU_BASE;
3545 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3546 } else {
3547 cpu_base = TX_CPU_BASE;
3548 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3549 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3550 }
3551
3552 err = tg3_load_firmware_cpu(tp, cpu_base,
3553 cpu_scratch_base, cpu_scratch_size,
3554 &info);
3555 if (err)
3556 return err;
3557
3558 /* Now startup the cpu. */
3559 tw32(cpu_base + CPU_STATE, 0xffffffff);
3560 tw32_f(cpu_base + CPU_PC, info.fw_base);
3561
3562 for (i = 0; i < 5; i++) {
3563 if (tr32(cpu_base + CPU_PC) == info.fw_base)
3564 break;
3565 tw32(cpu_base + CPU_STATE, 0xffffffff);
3566 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3567 tw32_f(cpu_base + CPU_PC, info.fw_base);
3568 udelay(1000);
3569 }
3570 if (i >= 5) {
3571 netdev_err(tp->dev,
3572 "%s fails to set CPU PC, is %08x should be %08x\n",
3573 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
3574 return -ENODEV;
3575 }
3576 tw32(cpu_base + CPU_STATE, 0xffffffff);
3577 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3578 return 0;
3579}
3580
3581
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003582/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08003583static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
3584{
3585 u32 addr_high, addr_low;
3586 int i;
3587
3588 addr_high = ((tp->dev->dev_addr[0] << 8) |
3589 tp->dev->dev_addr[1]);
3590 addr_low = ((tp->dev->dev_addr[2] << 24) |
3591 (tp->dev->dev_addr[3] << 16) |
3592 (tp->dev->dev_addr[4] << 8) |
3593 (tp->dev->dev_addr[5] << 0));
3594 for (i = 0; i < 4; i++) {
3595 if (i == 1 && skip_mac_1)
3596 continue;
3597 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
3598 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
3599 }
3600
3601 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3602 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
3603 for (i = 0; i < 12; i++) {
3604 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
3605 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
3606 }
3607 }
3608
3609 addr_high = (tp->dev->dev_addr[0] +
3610 tp->dev->dev_addr[1] +
3611 tp->dev->dev_addr[2] +
3612 tp->dev->dev_addr[3] +
3613 tp->dev->dev_addr[4] +
3614 tp->dev->dev_addr[5]) &
3615 TX_BACKOFF_SEED_MASK;
3616 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3617}
3618
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003619static void tg3_enable_register_access(struct tg3 *tp)
3620{
3621 /*
3622 * Make sure register accesses (indirect or otherwise) will function
3623 * correctly.
3624 */
3625 pci_write_config_dword(tp->pdev,
3626 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
3627}
3628
3629static int tg3_power_up(struct tg3 *tp)
3630{
Matt Carlsonbed98292011-07-13 09:27:29 +00003631 int err;
3632
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003633 tg3_enable_register_access(tp);
3634
Matt Carlsonbed98292011-07-13 09:27:29 +00003635 err = pci_set_power_state(tp->pdev, PCI_D0);
3636 if (!err) {
3637 /* Switch out of Vaux if it is a NIC */
3638 tg3_pwrsrc_switch_to_vmain(tp);
3639 } else {
3640 netdev_err(tp->dev, "Transition to D0 failed\n");
3641 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003642
Matt Carlsonbed98292011-07-13 09:27:29 +00003643 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003644}
3645
Matt Carlson4b409522012-02-13 10:20:11 +00003646static int tg3_setup_phy(struct tg3 *, int);
3647
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003648static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649{
3650 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003651 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003653 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003654
3655 /* Restore the CLKREQ setting. */
Joe Perches63c3a662011-04-26 08:12:10 +00003656 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003657 u16 lnkctl;
3658
3659 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00003660 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003661 &lnkctl);
3662 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3663 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00003664 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003665 lnkctl);
3666 }
3667
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
3669 tw32(TG3PCI_MISC_HOST_CTRL,
3670 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
3671
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003672 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00003673 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003674
Joe Perches63c3a662011-04-26 08:12:10 +00003675 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08003676 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003677 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00003678 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003679 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003680 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003681
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00003682 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003683
Matt Carlson80096062010-08-02 11:26:06 +00003684 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003685
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003686 tp->link_config.speed = phydev->speed;
3687 tp->link_config.duplex = phydev->duplex;
3688 tp->link_config.autoneg = phydev->autoneg;
3689 tp->link_config.advertising = phydev->advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003690
3691 advertising = ADVERTISED_TP |
3692 ADVERTISED_Pause |
3693 ADVERTISED_Autoneg |
3694 ADVERTISED_10baseT_Half;
3695
Joe Perches63c3a662011-04-26 08:12:10 +00003696 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
3697 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003698 advertising |=
3699 ADVERTISED_100baseT_Half |
3700 ADVERTISED_100baseT_Full |
3701 ADVERTISED_10baseT_Full;
3702 else
3703 advertising |= ADVERTISED_10baseT_Full;
3704 }
3705
3706 phydev->advertising = advertising;
3707
3708 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003709
3710 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00003711 if (phyid != PHY_ID_BCMAC131) {
3712 phyid &= PHY_BCM_OUI_MASK;
3713 if (phyid == PHY_BCM_OUI_1 ||
3714 phyid == PHY_BCM_OUI_2 ||
3715 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08003716 do_low_power = true;
3717 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003718 }
Matt Carlsondd477002008-05-25 23:45:58 -07003719 } else {
Matt Carlson20232762008-12-21 20:18:56 -08003720 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003721
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003722 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER))
Matt Carlson80096062010-08-02 11:26:06 +00003723 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724
Matt Carlson2855b9f2012-02-13 15:20:14 +00003725 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlsondd477002008-05-25 23:45:58 -07003726 tg3_setup_phy(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 }
3728
Michael Chanb5d37722006-09-27 16:06:21 -07003729 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
3730 u32 val;
3731
3732 val = tr32(GRC_VCPU_EXT_CTRL);
3733 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00003734 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08003735 int i;
3736 u32 val;
3737
3738 for (i = 0; i < 200; i++) {
3739 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
3740 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
3741 break;
3742 msleep(1);
3743 }
3744 }
Joe Perches63c3a662011-04-26 08:12:10 +00003745 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07003746 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
3747 WOL_DRV_STATE_SHUTDOWN |
3748 WOL_DRV_WOL |
3749 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08003750
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003751 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 u32 mac_mode;
3753
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003754 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003755 if (do_low_power &&
3756 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
3757 tg3_phy_auxctl_write(tp,
3758 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
3759 MII_TG3_AUXCTL_PCTL_WOL_EN |
3760 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3761 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07003762 udelay(40);
3763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003765 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07003766 mac_mode = MAC_MODE_PORT_MODE_GMII;
3767 else
3768 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003770 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
3771 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
3772 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00003773 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003774 SPEED_100 : SPEED_10;
3775 if (tg3_5700_link_polarity(tp, speed))
3776 mac_mode |= MAC_MODE_LINK_POLARITY;
3777 else
3778 mac_mode &= ~MAC_MODE_LINK_POLARITY;
3779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 } else {
3781 mac_mode = MAC_MODE_PORT_MODE_TBI;
3782 }
3783
Joe Perches63c3a662011-04-26 08:12:10 +00003784 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 tw32(MAC_LED_CTRL, tp->led_ctrl);
3786
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003787 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00003788 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
3789 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003790 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Joe Perches63c3a662011-04-26 08:12:10 +00003792 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00003793 mac_mode |= MAC_MODE_APE_TX_EN |
3794 MAC_MODE_APE_RX_EN |
3795 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07003796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 tw32_f(MAC_MODE, mac_mode);
3798 udelay(100);
3799
3800 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
3801 udelay(10);
3802 }
3803
Joe Perches63c3a662011-04-26 08:12:10 +00003804 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3806 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
3807 u32 base_val;
3808
3809 base_val = tp->pci_clock_ctrl;
3810 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
3811 CLOCK_CTRL_TXCLK_DISABLE);
3812
Michael Chanb401e9e2005-12-19 16:27:04 -08003813 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
3814 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00003815 } else if (tg3_flag(tp, 5780_CLASS) ||
3816 tg3_flag(tp, CPMU_PRESENT) ||
Matt Carlson6ff6f812011-05-19 12:12:54 +00003817 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07003818 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00003819 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 u32 newbits1, newbits2;
3821
3822 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3823 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3824 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
3825 CLOCK_CTRL_TXCLK_DISABLE |
3826 CLOCK_CTRL_ALTCLK);
3827 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00003828 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 newbits1 = CLOCK_CTRL_625_CORE;
3830 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
3831 } else {
3832 newbits1 = CLOCK_CTRL_ALTCLK;
3833 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
3834 }
3835
Michael Chanb401e9e2005-12-19 16:27:04 -08003836 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
3837 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Michael Chanb401e9e2005-12-19 16:27:04 -08003839 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
3840 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Joe Perches63c3a662011-04-26 08:12:10 +00003842 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 u32 newbits3;
3844
3845 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3846 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3847 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
3848 CLOCK_CTRL_TXCLK_DISABLE |
3849 CLOCK_CTRL_44MHZ_CORE);
3850 } else {
3851 newbits3 = CLOCK_CTRL_44MHZ_CORE;
3852 }
3853
Michael Chanb401e9e2005-12-19 16:27:04 -08003854 tw32_wait_f(TG3PCI_CLOCK_CTRL,
3855 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 }
3857 }
3858
Joe Perches63c3a662011-04-26 08:12:10 +00003859 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08003860 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08003861
Matt Carlsoncd0d7222011-07-13 09:27:33 +00003862 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
3864 /* Workaround for unstable PLL clock */
3865 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
3866 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
3867 u32 val = tr32(0x7d00);
3868
3869 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
3870 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00003871 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08003872 int err;
3873
3874 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08003876 if (!err)
3877 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08003878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 }
3880
Michael Chanbbadf502006-04-06 21:46:34 -07003881 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
3882
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 return 0;
3884}
3885
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003886static void tg3_power_down(struct tg3 *tp)
3887{
3888 tg3_power_down_prepare(tp);
3889
Joe Perches63c3a662011-04-26 08:12:10 +00003890 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003891 pci_set_power_state(tp->pdev, PCI_D3hot);
3892}
3893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
3895{
3896 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
3897 case MII_TG3_AUX_STAT_10HALF:
3898 *speed = SPEED_10;
3899 *duplex = DUPLEX_HALF;
3900 break;
3901
3902 case MII_TG3_AUX_STAT_10FULL:
3903 *speed = SPEED_10;
3904 *duplex = DUPLEX_FULL;
3905 break;
3906
3907 case MII_TG3_AUX_STAT_100HALF:
3908 *speed = SPEED_100;
3909 *duplex = DUPLEX_HALF;
3910 break;
3911
3912 case MII_TG3_AUX_STAT_100FULL:
3913 *speed = SPEED_100;
3914 *duplex = DUPLEX_FULL;
3915 break;
3916
3917 case MII_TG3_AUX_STAT_1000HALF:
3918 *speed = SPEED_1000;
3919 *duplex = DUPLEX_HALF;
3920 break;
3921
3922 case MII_TG3_AUX_STAT_1000FULL:
3923 *speed = SPEED_1000;
3924 *duplex = DUPLEX_FULL;
3925 break;
3926
3927 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003928 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07003929 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
3930 SPEED_10;
3931 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
3932 DUPLEX_HALF;
3933 break;
3934 }
Matt Carlsone7405222012-02-13 15:20:16 +00003935 *speed = SPEED_UNKNOWN;
3936 *duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939}
3940
Matt Carlson42b64a42011-05-19 12:12:49 +00003941static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942{
Matt Carlson42b64a42011-05-19 12:12:49 +00003943 int err = 0;
3944 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Matt Carlson42b64a42011-05-19 12:12:49 +00003946 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00003947 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00003948 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949
Matt Carlson42b64a42011-05-19 12:12:49 +00003950 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
3951 if (err)
3952 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Matt Carlson4f272092011-12-14 11:09:57 +00003954 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
3955 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003956
Matt Carlson4f272092011-12-14 11:09:57 +00003957 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3958 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
3959 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003960
Matt Carlson4f272092011-12-14 11:09:57 +00003961 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
3962 if (err)
3963 goto done;
3964 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003965
Matt Carlson42b64a42011-05-19 12:12:49 +00003966 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
3967 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
Matt Carlson42b64a42011-05-19 12:12:49 +00003969 tw32(TG3_CPMU_EEE_MODE,
3970 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003971
Matt Carlson42b64a42011-05-19 12:12:49 +00003972 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
3973 if (!err) {
3974 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00003975
Matt Carlsona6b68da2010-12-06 08:28:52 +00003976 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00003977 /* Advertise 100-BaseTX EEE ability */
3978 if (advertise & ADVERTISED_100baseT_Full)
3979 val |= MDIO_AN_EEE_ADV_100TX;
3980 /* Advertise 1000-BaseT EEE ability */
3981 if (advertise & ADVERTISED_1000baseT_Full)
3982 val |= MDIO_AN_EEE_ADV_1000T;
3983 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00003984 if (err)
3985 val = 0;
3986
3987 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
3988 case ASIC_REV_5717:
3989 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00003990 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00003991 case ASIC_REV_5719:
3992 /* If we advertised any eee advertisements above... */
3993 if (val)
3994 val = MII_TG3_DSP_TAP26_ALNOKO |
3995 MII_TG3_DSP_TAP26_RMRXSTO |
3996 MII_TG3_DSP_TAP26_OPCSINPT;
3997 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
3998 /* Fall through */
3999 case ASIC_REV_5720:
4000 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
4001 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
4002 MII_TG3_DSP_CH34TP2_HIBW01);
4003 }
Matt Carlson52b02d02010-10-14 10:37:41 +00004004
Matt Carlson42b64a42011-05-19 12:12:49 +00004005 err2 = TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
4006 if (!err)
4007 err = err2;
4008 }
4009
4010done:
4011 return err;
4012}
4013
4014static void tg3_phy_copper_begin(struct tg3 *tp)
4015{
Matt Carlsond13ba512012-02-22 12:35:19 +00004016 if (tp->link_config.autoneg == AUTONEG_ENABLE ||
4017 (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
4018 u32 adv, fc;
Matt Carlson42b64a42011-05-19 12:12:49 +00004019
Matt Carlsond13ba512012-02-22 12:35:19 +00004020 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
4021 adv = ADVERTISED_10baseT_Half |
4022 ADVERTISED_10baseT_Full;
4023 if (tg3_flag(tp, WOL_SPEED_100MB))
4024 adv |= ADVERTISED_100baseT_Half |
4025 ADVERTISED_100baseT_Full;
Matt Carlson42b64a42011-05-19 12:12:49 +00004026
Matt Carlsond13ba512012-02-22 12:35:19 +00004027 fc = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson42b64a42011-05-19 12:12:49 +00004028 } else {
Matt Carlsond13ba512012-02-22 12:35:19 +00004029 adv = tp->link_config.advertising;
4030 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
4031 adv &= ~(ADVERTISED_1000baseT_Half |
4032 ADVERTISED_1000baseT_Full);
4033
4034 fc = tp->link_config.flowctrl;
Matt Carlson42b64a42011-05-19 12:12:49 +00004035 }
4036
Matt Carlsond13ba512012-02-22 12:35:19 +00004037 tg3_phy_autoneg_cfg(tp, adv, fc);
Matt Carlson52b02d02010-10-14 10:37:41 +00004038
Matt Carlsond13ba512012-02-22 12:35:19 +00004039 tg3_writephy(tp, MII_BMCR,
4040 BMCR_ANENABLE | BMCR_ANRESTART);
4041 } else {
4042 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 u32 bmcr, orig_bmcr;
4044
4045 tp->link_config.active_speed = tp->link_config.speed;
4046 tp->link_config.active_duplex = tp->link_config.duplex;
4047
4048 bmcr = 0;
4049 switch (tp->link_config.speed) {
4050 default:
4051 case SPEED_10:
4052 break;
4053
4054 case SPEED_100:
4055 bmcr |= BMCR_SPEED100;
4056 break;
4057
4058 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00004059 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062
4063 if (tp->link_config.duplex == DUPLEX_FULL)
4064 bmcr |= BMCR_FULLDPLX;
4065
4066 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
4067 (bmcr != orig_bmcr)) {
4068 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
4069 for (i = 0; i < 1500; i++) {
4070 u32 tmp;
4071
4072 udelay(10);
4073 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
4074 tg3_readphy(tp, MII_BMSR, &tmp))
4075 continue;
4076 if (!(tmp & BMSR_LSTATUS)) {
4077 udelay(40);
4078 break;
4079 }
4080 }
4081 tg3_writephy(tp, MII_BMCR, bmcr);
4082 udelay(40);
4083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 }
4085}
4086
4087static int tg3_init_5401phy_dsp(struct tg3 *tp)
4088{
4089 int err;
4090
4091 /* Turn off tap power management. */
4092 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004093 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00004095 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
4096 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
4097 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
4098 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
4099 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
4101 udelay(40);
4102
4103 return err;
4104}
4105
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004106static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004108 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08004109
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004110 advertising = tp->link_config.advertising;
4111 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004113 advmsk = ADVERTISE_ALL;
4114 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00004115 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004116 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004119 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
4120 return false;
4121
4122 if ((*lcladv & advmsk) != tgtadv)
4123 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00004124
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004125 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 u32 tg3_ctrl;
4127
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004128 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08004129
Matt Carlson221c5632011-06-13 13:39:01 +00004130 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004131 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
Matt Carlson3198e072012-02-13 15:20:10 +00004133 if (tgtadv &&
4134 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
4135 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)) {
4136 tgtadv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
4137 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL |
4138 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
4139 } else {
4140 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
4141 }
4142
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004143 if (tg3_ctrl != tgtadv)
4144 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 }
Matt Carlson93a700a2011-08-31 11:44:54 +00004146
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004147 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08004148}
4149
Matt Carlson859edb22011-12-08 14:40:16 +00004150static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
4151{
4152 u32 lpeth = 0;
4153
4154 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4155 u32 val;
4156
4157 if (tg3_readphy(tp, MII_STAT1000, &val))
4158 return false;
4159
4160 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
4161 }
4162
4163 if (tg3_readphy(tp, MII_LPA, rmtadv))
4164 return false;
4165
4166 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
4167 tp->link_config.rmt_adv = lpeth;
4168
4169 return true;
4170}
4171
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
4173{
4174 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004175 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08004176 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 u16 current_speed;
4178 u8 current_duplex;
4179 int i, err;
4180
4181 tw32(MAC_EVENT, 0);
4182
4183 tw32_f(MAC_STATUS,
4184 (MAC_STATUS_SYNC_CHANGED |
4185 MAC_STATUS_CFG_CHANGED |
4186 MAC_STATUS_MI_COMPLETION |
4187 MAC_STATUS_LNKSTATE_CHANGED));
4188 udelay(40);
4189
Matt Carlson8ef21422008-05-02 16:47:53 -07004190 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
4191 tw32_f(MAC_MI_MODE,
4192 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
4193 udelay(80);
4194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004196 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
4198 /* Some third-party PHYs need to be reset on link going
4199 * down.
4200 */
4201 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
4202 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
4203 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
4204 netif_carrier_ok(tp->dev)) {
4205 tg3_readphy(tp, MII_BMSR, &bmsr);
4206 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4207 !(bmsr & BMSR_LSTATUS))
4208 force_reset = 1;
4209 }
4210 if (force_reset)
4211 tg3_phy_reset(tp);
4212
Matt Carlson79eb6902010-02-17 15:17:03 +00004213 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 tg3_readphy(tp, MII_BMSR, &bmsr);
4215 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00004216 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 bmsr = 0;
4218
4219 if (!(bmsr & BMSR_LSTATUS)) {
4220 err = tg3_init_5401phy_dsp(tp);
4221 if (err)
4222 return err;
4223
4224 tg3_readphy(tp, MII_BMSR, &bmsr);
4225 for (i = 0; i < 1000; i++) {
4226 udelay(10);
4227 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4228 (bmsr & BMSR_LSTATUS)) {
4229 udelay(40);
4230 break;
4231 }
4232 }
4233
Matt Carlson79eb6902010-02-17 15:17:03 +00004234 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
4235 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 !(bmsr & BMSR_LSTATUS) &&
4237 tp->link_config.active_speed == SPEED_1000) {
4238 err = tg3_phy_reset(tp);
4239 if (!err)
4240 err = tg3_init_5401phy_dsp(tp);
4241 if (err)
4242 return err;
4243 }
4244 }
4245 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
4246 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
4247 /* 5701 {A0,B0} CRC bug workaround */
4248 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004249 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
4250 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
4251 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 }
4253
4254 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004255 tg3_readphy(tp, MII_TG3_ISTAT, &val);
4256 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004258 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004260 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 tg3_writephy(tp, MII_TG3_IMASK, ~0);
4262
4263 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
4264 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
4265 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
4266 tg3_writephy(tp, MII_TG3_EXT_CTRL,
4267 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
4268 else
4269 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
4270 }
4271
4272 current_link_up = 0;
Matt Carlsone7405222012-02-13 15:20:16 +00004273 current_speed = SPEED_UNKNOWN;
4274 current_duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +00004275 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00004276 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004278 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00004279 err = tg3_phy_auxctl_read(tp,
4280 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4281 &val);
4282 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004283 tg3_phy_auxctl_write(tp,
4284 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4285 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 goto relink;
4287 }
4288 }
4289
4290 bmsr = 0;
4291 for (i = 0; i < 100; i++) {
4292 tg3_readphy(tp, MII_BMSR, &bmsr);
4293 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4294 (bmsr & BMSR_LSTATUS))
4295 break;
4296 udelay(40);
4297 }
4298
4299 if (bmsr & BMSR_LSTATUS) {
4300 u32 aux_stat, bmcr;
4301
4302 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
4303 for (i = 0; i < 2000; i++) {
4304 udelay(10);
4305 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
4306 aux_stat)
4307 break;
4308 }
4309
4310 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
4311 &current_speed,
4312 &current_duplex);
4313
4314 bmcr = 0;
4315 for (i = 0; i < 200; i++) {
4316 tg3_readphy(tp, MII_BMCR, &bmcr);
4317 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4318 continue;
4319 if (bmcr && bmcr != 0x7fff)
4320 break;
4321 udelay(10);
4322 }
4323
Matt Carlsonef167e22007-12-20 20:10:01 -08004324 lcl_adv = 0;
4325 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326
Matt Carlsonef167e22007-12-20 20:10:01 -08004327 tp->link_config.active_speed = current_speed;
4328 tp->link_config.active_duplex = current_duplex;
4329
4330 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4331 if ((bmcr & BMCR_ANENABLE) &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004332 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00004333 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004334 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 } else {
4336 if (!(bmcr & BMCR_ANENABLE) &&
4337 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08004338 tp->link_config.duplex == current_duplex &&
4339 tp->link_config.flowctrl ==
4340 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 }
4343 }
4344
Matt Carlsonef167e22007-12-20 20:10:01 -08004345 if (current_link_up == 1 &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00004346 tp->link_config.active_duplex == DUPLEX_FULL) {
4347 u32 reg, bit;
4348
4349 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
4350 reg = MII_TG3_FET_GEN_STAT;
4351 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
4352 } else {
4353 reg = MII_TG3_EXT_STAT;
4354 bit = MII_TG3_EXT_STAT_MDIX;
4355 }
4356
4357 if (!tg3_readphy(tp, reg, &val) && (val & bit))
4358 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
4359
Matt Carlsonef167e22007-12-20 20:10:01 -08004360 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 }
4363
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364relink:
Matt Carlson80096062010-08-02 11:26:06 +00004365 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 tg3_phy_copper_begin(tp);
4367
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004368 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004369 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4370 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 current_link_up = 1;
4372 }
4373
4374 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
4375 if (current_link_up == 1) {
4376 if (tp->link_config.active_speed == SPEED_100 ||
4377 tp->link_config.active_speed == SPEED_10)
4378 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4379 else
4380 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004381 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004382 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4383 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4385
4386 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4387 if (tp->link_config.active_duplex == DUPLEX_HALF)
4388 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4389
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004391 if (current_link_up == 1 &&
4392 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004394 else
4395 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 }
4397
4398 /* ??? Without this setting Netgear GA302T PHY does not
4399 * ??? send/receive packets...
4400 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004401 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
4403 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4404 tw32_f(MAC_MI_MODE, tp->mi_mode);
4405 udelay(80);
4406 }
4407
4408 tw32_f(MAC_MODE, tp->mac_mode);
4409 udelay(40);
4410
Matt Carlson52b02d02010-10-14 10:37:41 +00004411 tg3_phy_eee_adjust(tp, current_link_up);
4412
Joe Perches63c3a662011-04-26 08:12:10 +00004413 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 /* Polled via timer. */
4415 tw32_f(MAC_EVENT, 0);
4416 } else {
4417 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4418 }
4419 udelay(40);
4420
4421 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
4422 current_link_up == 1 &&
4423 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00004424 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425 udelay(120);
4426 tw32_f(MAC_STATUS,
4427 (MAC_STATUS_SYNC_CHANGED |
4428 MAC_STATUS_CFG_CHANGED));
4429 udelay(40);
4430 tg3_write_mem(tp,
4431 NIC_SRAM_FIRMWARE_MBOX,
4432 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
4433 }
4434
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004435 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00004436 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004437 u16 oldlnkctl, newlnkctl;
4438
4439 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00004440 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004441 &oldlnkctl);
4442 if (tp->link_config.active_speed == SPEED_100 ||
4443 tp->link_config.active_speed == SPEED_10)
4444 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
4445 else
4446 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
4447 if (newlnkctl != oldlnkctl)
4448 pci_write_config_word(tp->pdev,
Matt Carlson93a700a2011-08-31 11:44:54 +00004449 pci_pcie_cap(tp->pdev) +
4450 PCI_EXP_LNKCTL, newlnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004451 }
4452
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 if (current_link_up != netif_carrier_ok(tp->dev)) {
4454 if (current_link_up)
4455 netif_carrier_on(tp->dev);
4456 else
4457 netif_carrier_off(tp->dev);
4458 tg3_link_report(tp);
4459 }
4460
4461 return 0;
4462}
4463
4464struct tg3_fiber_aneginfo {
4465 int state;
4466#define ANEG_STATE_UNKNOWN 0
4467#define ANEG_STATE_AN_ENABLE 1
4468#define ANEG_STATE_RESTART_INIT 2
4469#define ANEG_STATE_RESTART 3
4470#define ANEG_STATE_DISABLE_LINK_OK 4
4471#define ANEG_STATE_ABILITY_DETECT_INIT 5
4472#define ANEG_STATE_ABILITY_DETECT 6
4473#define ANEG_STATE_ACK_DETECT_INIT 7
4474#define ANEG_STATE_ACK_DETECT 8
4475#define ANEG_STATE_COMPLETE_ACK_INIT 9
4476#define ANEG_STATE_COMPLETE_ACK 10
4477#define ANEG_STATE_IDLE_DETECT_INIT 11
4478#define ANEG_STATE_IDLE_DETECT 12
4479#define ANEG_STATE_LINK_OK 13
4480#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
4481#define ANEG_STATE_NEXT_PAGE_WAIT 15
4482
4483 u32 flags;
4484#define MR_AN_ENABLE 0x00000001
4485#define MR_RESTART_AN 0x00000002
4486#define MR_AN_COMPLETE 0x00000004
4487#define MR_PAGE_RX 0x00000008
4488#define MR_NP_LOADED 0x00000010
4489#define MR_TOGGLE_TX 0x00000020
4490#define MR_LP_ADV_FULL_DUPLEX 0x00000040
4491#define MR_LP_ADV_HALF_DUPLEX 0x00000080
4492#define MR_LP_ADV_SYM_PAUSE 0x00000100
4493#define MR_LP_ADV_ASYM_PAUSE 0x00000200
4494#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
4495#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
4496#define MR_LP_ADV_NEXT_PAGE 0x00001000
4497#define MR_TOGGLE_RX 0x00002000
4498#define MR_NP_RX 0x00004000
4499
4500#define MR_LINK_OK 0x80000000
4501
4502 unsigned long link_time, cur_time;
4503
4504 u32 ability_match_cfg;
4505 int ability_match_count;
4506
4507 char ability_match, idle_match, ack_match;
4508
4509 u32 txconfig, rxconfig;
4510#define ANEG_CFG_NP 0x00000080
4511#define ANEG_CFG_ACK 0x00000040
4512#define ANEG_CFG_RF2 0x00000020
4513#define ANEG_CFG_RF1 0x00000010
4514#define ANEG_CFG_PS2 0x00000001
4515#define ANEG_CFG_PS1 0x00008000
4516#define ANEG_CFG_HD 0x00004000
4517#define ANEG_CFG_FD 0x00002000
4518#define ANEG_CFG_INVAL 0x00001f06
4519
4520};
4521#define ANEG_OK 0
4522#define ANEG_DONE 1
4523#define ANEG_TIMER_ENAB 2
4524#define ANEG_FAILED -1
4525
4526#define ANEG_STATE_SETTLE_TIME 10000
4527
4528static int tg3_fiber_aneg_smachine(struct tg3 *tp,
4529 struct tg3_fiber_aneginfo *ap)
4530{
Matt Carlson5be73b42007-12-20 20:09:29 -08004531 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 unsigned long delta;
4533 u32 rx_cfg_reg;
4534 int ret;
4535
4536 if (ap->state == ANEG_STATE_UNKNOWN) {
4537 ap->rxconfig = 0;
4538 ap->link_time = 0;
4539 ap->cur_time = 0;
4540 ap->ability_match_cfg = 0;
4541 ap->ability_match_count = 0;
4542 ap->ability_match = 0;
4543 ap->idle_match = 0;
4544 ap->ack_match = 0;
4545 }
4546 ap->cur_time++;
4547
4548 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
4549 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
4550
4551 if (rx_cfg_reg != ap->ability_match_cfg) {
4552 ap->ability_match_cfg = rx_cfg_reg;
4553 ap->ability_match = 0;
4554 ap->ability_match_count = 0;
4555 } else {
4556 if (++ap->ability_match_count > 1) {
4557 ap->ability_match = 1;
4558 ap->ability_match_cfg = rx_cfg_reg;
4559 }
4560 }
4561 if (rx_cfg_reg & ANEG_CFG_ACK)
4562 ap->ack_match = 1;
4563 else
4564 ap->ack_match = 0;
4565
4566 ap->idle_match = 0;
4567 } else {
4568 ap->idle_match = 1;
4569 ap->ability_match_cfg = 0;
4570 ap->ability_match_count = 0;
4571 ap->ability_match = 0;
4572 ap->ack_match = 0;
4573
4574 rx_cfg_reg = 0;
4575 }
4576
4577 ap->rxconfig = rx_cfg_reg;
4578 ret = ANEG_OK;
4579
Matt Carlson33f401a2010-04-05 10:19:27 +00004580 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 case ANEG_STATE_UNKNOWN:
4582 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
4583 ap->state = ANEG_STATE_AN_ENABLE;
4584
4585 /* fallthru */
4586 case ANEG_STATE_AN_ENABLE:
4587 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
4588 if (ap->flags & MR_AN_ENABLE) {
4589 ap->link_time = 0;
4590 ap->cur_time = 0;
4591 ap->ability_match_cfg = 0;
4592 ap->ability_match_count = 0;
4593 ap->ability_match = 0;
4594 ap->idle_match = 0;
4595 ap->ack_match = 0;
4596
4597 ap->state = ANEG_STATE_RESTART_INIT;
4598 } else {
4599 ap->state = ANEG_STATE_DISABLE_LINK_OK;
4600 }
4601 break;
4602
4603 case ANEG_STATE_RESTART_INIT:
4604 ap->link_time = ap->cur_time;
4605 ap->flags &= ~(MR_NP_LOADED);
4606 ap->txconfig = 0;
4607 tw32(MAC_TX_AUTO_NEG, 0);
4608 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4609 tw32_f(MAC_MODE, tp->mac_mode);
4610 udelay(40);
4611
4612 ret = ANEG_TIMER_ENAB;
4613 ap->state = ANEG_STATE_RESTART;
4614
4615 /* fallthru */
4616 case ANEG_STATE_RESTART:
4617 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00004618 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00004620 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 break;
4623
4624 case ANEG_STATE_DISABLE_LINK_OK:
4625 ret = ANEG_DONE;
4626 break;
4627
4628 case ANEG_STATE_ABILITY_DETECT_INIT:
4629 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08004630 ap->txconfig = ANEG_CFG_FD;
4631 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4632 if (flowctrl & ADVERTISE_1000XPAUSE)
4633 ap->txconfig |= ANEG_CFG_PS1;
4634 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4635 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4637 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4638 tw32_f(MAC_MODE, tp->mac_mode);
4639 udelay(40);
4640
4641 ap->state = ANEG_STATE_ABILITY_DETECT;
4642 break;
4643
4644 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00004645 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 break;
4648
4649 case ANEG_STATE_ACK_DETECT_INIT:
4650 ap->txconfig |= ANEG_CFG_ACK;
4651 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4652 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4653 tw32_f(MAC_MODE, tp->mac_mode);
4654 udelay(40);
4655
4656 ap->state = ANEG_STATE_ACK_DETECT;
4657
4658 /* fallthru */
4659 case ANEG_STATE_ACK_DETECT:
4660 if (ap->ack_match != 0) {
4661 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
4662 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
4663 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
4664 } else {
4665 ap->state = ANEG_STATE_AN_ENABLE;
4666 }
4667 } else if (ap->ability_match != 0 &&
4668 ap->rxconfig == 0) {
4669 ap->state = ANEG_STATE_AN_ENABLE;
4670 }
4671 break;
4672
4673 case ANEG_STATE_COMPLETE_ACK_INIT:
4674 if (ap->rxconfig & ANEG_CFG_INVAL) {
4675 ret = ANEG_FAILED;
4676 break;
4677 }
4678 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
4679 MR_LP_ADV_HALF_DUPLEX |
4680 MR_LP_ADV_SYM_PAUSE |
4681 MR_LP_ADV_ASYM_PAUSE |
4682 MR_LP_ADV_REMOTE_FAULT1 |
4683 MR_LP_ADV_REMOTE_FAULT2 |
4684 MR_LP_ADV_NEXT_PAGE |
4685 MR_TOGGLE_RX |
4686 MR_NP_RX);
4687 if (ap->rxconfig & ANEG_CFG_FD)
4688 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
4689 if (ap->rxconfig & ANEG_CFG_HD)
4690 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
4691 if (ap->rxconfig & ANEG_CFG_PS1)
4692 ap->flags |= MR_LP_ADV_SYM_PAUSE;
4693 if (ap->rxconfig & ANEG_CFG_PS2)
4694 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
4695 if (ap->rxconfig & ANEG_CFG_RF1)
4696 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
4697 if (ap->rxconfig & ANEG_CFG_RF2)
4698 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
4699 if (ap->rxconfig & ANEG_CFG_NP)
4700 ap->flags |= MR_LP_ADV_NEXT_PAGE;
4701
4702 ap->link_time = ap->cur_time;
4703
4704 ap->flags ^= (MR_TOGGLE_TX);
4705 if (ap->rxconfig & 0x0008)
4706 ap->flags |= MR_TOGGLE_RX;
4707 if (ap->rxconfig & ANEG_CFG_NP)
4708 ap->flags |= MR_NP_RX;
4709 ap->flags |= MR_PAGE_RX;
4710
4711 ap->state = ANEG_STATE_COMPLETE_ACK;
4712 ret = ANEG_TIMER_ENAB;
4713 break;
4714
4715 case ANEG_STATE_COMPLETE_ACK:
4716 if (ap->ability_match != 0 &&
4717 ap->rxconfig == 0) {
4718 ap->state = ANEG_STATE_AN_ENABLE;
4719 break;
4720 }
4721 delta = ap->cur_time - ap->link_time;
4722 if (delta > ANEG_STATE_SETTLE_TIME) {
4723 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
4724 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4725 } else {
4726 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
4727 !(ap->flags & MR_NP_RX)) {
4728 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4729 } else {
4730 ret = ANEG_FAILED;
4731 }
4732 }
4733 }
4734 break;
4735
4736 case ANEG_STATE_IDLE_DETECT_INIT:
4737 ap->link_time = ap->cur_time;
4738 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4739 tw32_f(MAC_MODE, tp->mac_mode);
4740 udelay(40);
4741
4742 ap->state = ANEG_STATE_IDLE_DETECT;
4743 ret = ANEG_TIMER_ENAB;
4744 break;
4745
4746 case ANEG_STATE_IDLE_DETECT:
4747 if (ap->ability_match != 0 &&
4748 ap->rxconfig == 0) {
4749 ap->state = ANEG_STATE_AN_ENABLE;
4750 break;
4751 }
4752 delta = ap->cur_time - ap->link_time;
4753 if (delta > ANEG_STATE_SETTLE_TIME) {
4754 /* XXX another gem from the Broadcom driver :( */
4755 ap->state = ANEG_STATE_LINK_OK;
4756 }
4757 break;
4758
4759 case ANEG_STATE_LINK_OK:
4760 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
4761 ret = ANEG_DONE;
4762 break;
4763
4764 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
4765 /* ??? unimplemented */
4766 break;
4767
4768 case ANEG_STATE_NEXT_PAGE_WAIT:
4769 /* ??? unimplemented */
4770 break;
4771
4772 default:
4773 ret = ANEG_FAILED;
4774 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776
4777 return ret;
4778}
4779
Matt Carlson5be73b42007-12-20 20:09:29 -08004780static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781{
4782 int res = 0;
4783 struct tg3_fiber_aneginfo aninfo;
4784 int status = ANEG_FAILED;
4785 unsigned int tick;
4786 u32 tmp;
4787
4788 tw32_f(MAC_TX_AUTO_NEG, 0);
4789
4790 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
4791 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
4792 udelay(40);
4793
4794 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
4795 udelay(40);
4796
4797 memset(&aninfo, 0, sizeof(aninfo));
4798 aninfo.flags |= MR_AN_ENABLE;
4799 aninfo.state = ANEG_STATE_UNKNOWN;
4800 aninfo.cur_time = 0;
4801 tick = 0;
4802 while (++tick < 195000) {
4803 status = tg3_fiber_aneg_smachine(tp, &aninfo);
4804 if (status == ANEG_DONE || status == ANEG_FAILED)
4805 break;
4806
4807 udelay(1);
4808 }
4809
4810 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4811 tw32_f(MAC_MODE, tp->mac_mode);
4812 udelay(40);
4813
Matt Carlson5be73b42007-12-20 20:09:29 -08004814 *txflags = aninfo.txconfig;
4815 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816
4817 if (status == ANEG_DONE &&
4818 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
4819 MR_LP_ADV_FULL_DUPLEX)))
4820 res = 1;
4821
4822 return res;
4823}
4824
4825static void tg3_init_bcm8002(struct tg3 *tp)
4826{
4827 u32 mac_status = tr32(MAC_STATUS);
4828 int i;
4829
4830 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00004831 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 !(mac_status & MAC_STATUS_PCS_SYNCED))
4833 return;
4834
4835 /* Set PLL lock range. */
4836 tg3_writephy(tp, 0x16, 0x8007);
4837
4838 /* SW reset */
4839 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
4840
4841 /* Wait for reset to complete. */
4842 /* XXX schedule_timeout() ... */
4843 for (i = 0; i < 500; i++)
4844 udelay(10);
4845
4846 /* Config mode; select PMA/Ch 1 regs. */
4847 tg3_writephy(tp, 0x10, 0x8411);
4848
4849 /* Enable auto-lock and comdet, select txclk for tx. */
4850 tg3_writephy(tp, 0x11, 0x0a10);
4851
4852 tg3_writephy(tp, 0x18, 0x00a0);
4853 tg3_writephy(tp, 0x16, 0x41ff);
4854
4855 /* Assert and deassert POR. */
4856 tg3_writephy(tp, 0x13, 0x0400);
4857 udelay(40);
4858 tg3_writephy(tp, 0x13, 0x0000);
4859
4860 tg3_writephy(tp, 0x11, 0x0a50);
4861 udelay(40);
4862 tg3_writephy(tp, 0x11, 0x0a10);
4863
4864 /* Wait for signal to stabilize */
4865 /* XXX schedule_timeout() ... */
4866 for (i = 0; i < 15000; i++)
4867 udelay(10);
4868
4869 /* Deselect the channel register so we can read the PHYID
4870 * later.
4871 */
4872 tg3_writephy(tp, 0x10, 0x8011);
4873}
4874
4875static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
4876{
Matt Carlson82cd3d12007-12-20 20:09:00 -08004877 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 u32 sg_dig_ctrl, sg_dig_status;
4879 u32 serdes_cfg, expected_sg_dig_ctrl;
4880 int workaround, port_a;
4881 int current_link_up;
4882
4883 serdes_cfg = 0;
4884 expected_sg_dig_ctrl = 0;
4885 workaround = 0;
4886 port_a = 1;
4887 current_link_up = 0;
4888
4889 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
4890 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
4891 workaround = 1;
4892 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
4893 port_a = 0;
4894
4895 /* preserve bits 0-11,13,14 for signal pre-emphasis */
4896 /* preserve bits 20-23 for voltage regulator */
4897 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
4898 }
4899
4900 sg_dig_ctrl = tr32(SG_DIG_CTRL);
4901
4902 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004903 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 if (workaround) {
4905 u32 val = serdes_cfg;
4906
4907 if (port_a)
4908 val |= 0xc010000;
4909 else
4910 val |= 0x4010000;
4911 tw32_f(MAC_SERDES_CFG, val);
4912 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004913
4914 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 }
4916 if (mac_status & MAC_STATUS_PCS_SYNCED) {
4917 tg3_setup_flow_control(tp, 0, 0);
4918 current_link_up = 1;
4919 }
4920 goto out;
4921 }
4922
4923 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004924 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925
Matt Carlson82cd3d12007-12-20 20:09:00 -08004926 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4927 if (flowctrl & ADVERTISE_1000XPAUSE)
4928 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
4929 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4930 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931
4932 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004933 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07004934 tp->serdes_counter &&
4935 ((mac_status & (MAC_STATUS_PCS_SYNCED |
4936 MAC_STATUS_RCVD_CFG)) ==
4937 MAC_STATUS_PCS_SYNCED)) {
4938 tp->serdes_counter--;
4939 current_link_up = 1;
4940 goto out;
4941 }
4942restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 if (workaround)
4944 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004945 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 udelay(5);
4947 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
4948
Michael Chan3d3ebe72006-09-27 15:59:15 -07004949 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004950 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
4952 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004953 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 mac_status = tr32(MAC_STATUS);
4955
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004956 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08004958 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959
Matt Carlson82cd3d12007-12-20 20:09:00 -08004960 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
4961 local_adv |= ADVERTISE_1000XPAUSE;
4962 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
4963 local_adv |= ADVERTISE_1000XPSE_ASYM;
4964
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004965 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004966 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004967 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004968 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969
Matt Carlson859edb22011-12-08 14:40:16 +00004970 tp->link_config.rmt_adv =
4971 mii_adv_to_ethtool_adv_x(remote_adv);
4972
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973 tg3_setup_flow_control(tp, local_adv, remote_adv);
4974 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004975 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004976 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004977 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004978 if (tp->serdes_counter)
4979 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 else {
4981 if (workaround) {
4982 u32 val = serdes_cfg;
4983
4984 if (port_a)
4985 val |= 0xc010000;
4986 else
4987 val |= 0x4010000;
4988
4989 tw32_f(MAC_SERDES_CFG, val);
4990 }
4991
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004992 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 udelay(40);
4994
4995 /* Link parallel detection - link is up */
4996 /* only if we have PCS_SYNC and not */
4997 /* receiving config code words */
4998 mac_status = tr32(MAC_STATUS);
4999 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
5000 !(mac_status & MAC_STATUS_RCVD_CFG)) {
5001 tg3_setup_flow_control(tp, 0, 0);
5002 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005003 tp->phy_flags |=
5004 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005005 tp->serdes_counter =
5006 SERDES_PARALLEL_DET_TIMEOUT;
5007 } else
5008 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 }
5010 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07005011 } else {
5012 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005013 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 }
5015
5016out:
5017 return current_link_up;
5018}
5019
5020static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
5021{
5022 int current_link_up = 0;
5023
Michael Chan5cf64b8a2007-05-05 12:11:21 -07005024 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
5027 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08005028 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005030
Matt Carlson5be73b42007-12-20 20:09:29 -08005031 if (fiber_autoneg(tp, &txflags, &rxflags)) {
5032 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033
Matt Carlson5be73b42007-12-20 20:09:29 -08005034 if (txflags & ANEG_CFG_PS1)
5035 local_adv |= ADVERTISE_1000XPAUSE;
5036 if (txflags & ANEG_CFG_PS2)
5037 local_adv |= ADVERTISE_1000XPSE_ASYM;
5038
5039 if (rxflags & MR_LP_ADV_SYM_PAUSE)
5040 remote_adv |= LPA_1000XPAUSE;
5041 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
5042 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043
Matt Carlson859edb22011-12-08 14:40:16 +00005044 tp->link_config.rmt_adv =
5045 mii_adv_to_ethtool_adv_x(remote_adv);
5046
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047 tg3_setup_flow_control(tp, local_adv, remote_adv);
5048
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 current_link_up = 1;
5050 }
5051 for (i = 0; i < 30; i++) {
5052 udelay(20);
5053 tw32_f(MAC_STATUS,
5054 (MAC_STATUS_SYNC_CHANGED |
5055 MAC_STATUS_CFG_CHANGED));
5056 udelay(40);
5057 if ((tr32(MAC_STATUS) &
5058 (MAC_STATUS_SYNC_CHANGED |
5059 MAC_STATUS_CFG_CHANGED)) == 0)
5060 break;
5061 }
5062
5063 mac_status = tr32(MAC_STATUS);
5064 if (current_link_up == 0 &&
5065 (mac_status & MAC_STATUS_PCS_SYNCED) &&
5066 !(mac_status & MAC_STATUS_RCVD_CFG))
5067 current_link_up = 1;
5068 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08005069 tg3_setup_flow_control(tp, 0, 0);
5070
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 /* Forcing 1000FD link up. */
5072 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
5074 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
5075 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07005076
5077 tw32_f(MAC_MODE, tp->mac_mode);
5078 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 }
5080
5081out:
5082 return current_link_up;
5083}
5084
5085static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
5086{
5087 u32 orig_pause_cfg;
5088 u16 orig_active_speed;
5089 u8 orig_active_duplex;
5090 u32 mac_status;
5091 int current_link_up;
5092 int i;
5093
Matt Carlson8d018622007-12-20 20:05:44 -08005094 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095 orig_active_speed = tp->link_config.active_speed;
5096 orig_active_duplex = tp->link_config.active_duplex;
5097
Joe Perches63c3a662011-04-26 08:12:10 +00005098 if (!tg3_flag(tp, HW_AUTONEG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099 netif_carrier_ok(tp->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00005100 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 mac_status = tr32(MAC_STATUS);
5102 mac_status &= (MAC_STATUS_PCS_SYNCED |
5103 MAC_STATUS_SIGNAL_DET |
5104 MAC_STATUS_CFG_CHANGED |
5105 MAC_STATUS_RCVD_CFG);
5106 if (mac_status == (MAC_STATUS_PCS_SYNCED |
5107 MAC_STATUS_SIGNAL_DET)) {
5108 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5109 MAC_STATUS_CFG_CHANGED));
5110 return 0;
5111 }
5112 }
5113
5114 tw32_f(MAC_TX_AUTO_NEG, 0);
5115
5116 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
5117 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
5118 tw32_f(MAC_MODE, tp->mac_mode);
5119 udelay(40);
5120
Matt Carlson79eb6902010-02-17 15:17:03 +00005121 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122 tg3_init_bcm8002(tp);
5123
5124 /* Enable link change event even when serdes polling. */
5125 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5126 udelay(40);
5127
5128 current_link_up = 0;
Matt Carlson859edb22011-12-08 14:40:16 +00005129 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 mac_status = tr32(MAC_STATUS);
5131
Joe Perches63c3a662011-04-26 08:12:10 +00005132 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
5134 else
5135 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
5136
Matt Carlson898a56f2009-08-28 14:02:40 +00005137 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00005139 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
5141 for (i = 0; i < 100; i++) {
5142 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5143 MAC_STATUS_CFG_CHANGED));
5144 udelay(5);
5145 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07005146 MAC_STATUS_CFG_CHANGED |
5147 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 break;
5149 }
5150
5151 mac_status = tr32(MAC_STATUS);
5152 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
5153 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005154 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
5155 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 tw32_f(MAC_MODE, (tp->mac_mode |
5157 MAC_MODE_SEND_CONFIGS));
5158 udelay(1);
5159 tw32_f(MAC_MODE, tp->mac_mode);
5160 }
5161 }
5162
5163 if (current_link_up == 1) {
5164 tp->link_config.active_speed = SPEED_1000;
5165 tp->link_config.active_duplex = DUPLEX_FULL;
5166 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5167 LED_CTRL_LNKLED_OVERRIDE |
5168 LED_CTRL_1000MBPS_ON));
5169 } else {
Matt Carlsone7405222012-02-13 15:20:16 +00005170 tp->link_config.active_speed = SPEED_UNKNOWN;
5171 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5173 LED_CTRL_LNKLED_OVERRIDE |
5174 LED_CTRL_TRAFFIC_OVERRIDE));
5175 }
5176
5177 if (current_link_up != netif_carrier_ok(tp->dev)) {
5178 if (current_link_up)
5179 netif_carrier_on(tp->dev);
5180 else
5181 netif_carrier_off(tp->dev);
5182 tg3_link_report(tp);
5183 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08005184 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 if (orig_pause_cfg != now_pause_cfg ||
5186 orig_active_speed != tp->link_config.active_speed ||
5187 orig_active_duplex != tp->link_config.active_duplex)
5188 tg3_link_report(tp);
5189 }
5190
5191 return 0;
5192}
5193
Michael Chan747e8f82005-07-25 12:33:22 -07005194static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
5195{
5196 int current_link_up, err = 0;
5197 u32 bmsr, bmcr;
5198 u16 current_speed;
5199 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08005200 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07005201
5202 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5203 tw32_f(MAC_MODE, tp->mac_mode);
5204 udelay(40);
5205
5206 tw32(MAC_EVENT, 0);
5207
5208 tw32_f(MAC_STATUS,
5209 (MAC_STATUS_SYNC_CHANGED |
5210 MAC_STATUS_CFG_CHANGED |
5211 MAC_STATUS_MI_COMPLETION |
5212 MAC_STATUS_LNKSTATE_CHANGED));
5213 udelay(40);
5214
5215 if (force_reset)
5216 tg3_phy_reset(tp);
5217
5218 current_link_up = 0;
Matt Carlsone7405222012-02-13 15:20:16 +00005219 current_speed = SPEED_UNKNOWN;
5220 current_duplex = DUPLEX_UNKNOWN;
Matt Carlson859edb22011-12-08 14:40:16 +00005221 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005222
5223 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5224 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08005225 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
5226 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5227 bmsr |= BMSR_LSTATUS;
5228 else
5229 bmsr &= ~BMSR_LSTATUS;
5230 }
Michael Chan747e8f82005-07-25 12:33:22 -07005231
5232 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
5233
5234 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005235 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005236 /* do nothing, just check for link up at the end */
5237 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05005238 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07005239
5240 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05005241 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
5242 ADVERTISE_1000XPAUSE |
5243 ADVERTISE_1000XPSE_ASYM |
5244 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07005245
Matt Carlson28011cf2011-11-16 18:36:59 -05005246 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00005247 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07005248
Matt Carlson28011cf2011-11-16 18:36:59 -05005249 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
5250 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07005251 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
5252 tg3_writephy(tp, MII_BMCR, bmcr);
5253
5254 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07005255 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005256 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005257
5258 return err;
5259 }
5260 } else {
5261 u32 new_bmcr;
5262
5263 bmcr &= ~BMCR_SPEED1000;
5264 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
5265
5266 if (tp->link_config.duplex == DUPLEX_FULL)
5267 new_bmcr |= BMCR_FULLDPLX;
5268
5269 if (new_bmcr != bmcr) {
5270 /* BMCR_SPEED1000 is a reserved bit that needs
5271 * to be set on write.
5272 */
5273 new_bmcr |= BMCR_SPEED1000;
5274
5275 /* Force a linkdown */
5276 if (netif_carrier_ok(tp->dev)) {
5277 u32 adv;
5278
5279 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
5280 adv &= ~(ADVERTISE_1000XFULL |
5281 ADVERTISE_1000XHALF |
5282 ADVERTISE_SLCT);
5283 tg3_writephy(tp, MII_ADVERTISE, adv);
5284 tg3_writephy(tp, MII_BMCR, bmcr |
5285 BMCR_ANRESTART |
5286 BMCR_ANENABLE);
5287 udelay(10);
5288 netif_carrier_off(tp->dev);
5289 }
5290 tg3_writephy(tp, MII_BMCR, new_bmcr);
5291 bmcr = new_bmcr;
5292 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5293 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08005294 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
5295 ASIC_REV_5714) {
5296 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5297 bmsr |= BMSR_LSTATUS;
5298 else
5299 bmsr &= ~BMSR_LSTATUS;
5300 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005301 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005302 }
5303 }
5304
5305 if (bmsr & BMSR_LSTATUS) {
5306 current_speed = SPEED_1000;
5307 current_link_up = 1;
5308 if (bmcr & BMCR_FULLDPLX)
5309 current_duplex = DUPLEX_FULL;
5310 else
5311 current_duplex = DUPLEX_HALF;
5312
Matt Carlsonef167e22007-12-20 20:10:01 -08005313 local_adv = 0;
5314 remote_adv = 0;
5315
Michael Chan747e8f82005-07-25 12:33:22 -07005316 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08005317 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07005318
5319 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
5320 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
5321 common = local_adv & remote_adv;
5322 if (common & (ADVERTISE_1000XHALF |
5323 ADVERTISE_1000XFULL)) {
5324 if (common & ADVERTISE_1000XFULL)
5325 current_duplex = DUPLEX_FULL;
5326 else
5327 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00005328
5329 tp->link_config.rmt_adv =
5330 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00005331 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005332 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00005333 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07005334 current_link_up = 0;
Matt Carlson859a588792010-04-05 10:19:28 +00005335 }
Michael Chan747e8f82005-07-25 12:33:22 -07005336 }
5337 }
5338
Matt Carlsonef167e22007-12-20 20:10:01 -08005339 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
5340 tg3_setup_flow_control(tp, local_adv, remote_adv);
5341
Michael Chan747e8f82005-07-25 12:33:22 -07005342 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5343 if (tp->link_config.active_duplex == DUPLEX_HALF)
5344 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5345
5346 tw32_f(MAC_MODE, tp->mac_mode);
5347 udelay(40);
5348
5349 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5350
5351 tp->link_config.active_speed = current_speed;
5352 tp->link_config.active_duplex = current_duplex;
5353
5354 if (current_link_up != netif_carrier_ok(tp->dev)) {
5355 if (current_link_up)
5356 netif_carrier_on(tp->dev);
5357 else {
5358 netif_carrier_off(tp->dev);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005359 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005360 }
5361 tg3_link_report(tp);
5362 }
5363 return err;
5364}
5365
5366static void tg3_serdes_parallel_detect(struct tg3 *tp)
5367{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005368 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005369 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005370 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005371 return;
5372 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005373
Michael Chan747e8f82005-07-25 12:33:22 -07005374 if (!netif_carrier_ok(tp->dev) &&
5375 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5376 u32 bmcr;
5377
5378 tg3_readphy(tp, MII_BMCR, &bmcr);
5379 if (bmcr & BMCR_ANENABLE) {
5380 u32 phy1, phy2;
5381
5382 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005383 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5384 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005385
5386 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005387 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5388 MII_TG3_DSP_EXP1_INT_STAT);
5389 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5390 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005391
5392 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5393 /* We have signal detect and not receiving
5394 * config code words, link is up by parallel
5395 * detection.
5396 */
5397
5398 bmcr &= ~BMCR_ANENABLE;
5399 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5400 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005401 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005402 }
5403 }
Matt Carlson859a588792010-04-05 10:19:28 +00005404 } else if (netif_carrier_ok(tp->dev) &&
5405 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005406 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005407 u32 phy2;
5408
5409 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005410 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5411 MII_TG3_DSP_EXP1_INT_STAT);
5412 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005413 if (phy2 & 0x20) {
5414 u32 bmcr;
5415
5416 /* Config code words received, turn on autoneg. */
5417 tg3_readphy(tp, MII_BMCR, &bmcr);
5418 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
5419
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005420 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005421
5422 }
5423 }
5424}
5425
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426static int tg3_setup_phy(struct tg3 *tp, int force_reset)
5427{
Matt Carlsonf2096f92011-04-05 14:22:48 +00005428 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 int err;
5430
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005431 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005433 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07005434 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00005435 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437
Matt Carlsonbcb37f62008-11-03 16:52:09 -08005438 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005439 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08005440
5441 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
5442 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
5443 scale = 65;
5444 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
5445 scale = 6;
5446 else
5447 scale = 12;
5448
5449 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
5450 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
5451 tw32(GRC_MISC_CFG, val);
5452 }
5453
Matt Carlsonf2096f92011-04-05 14:22:48 +00005454 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5455 (6 << TX_LENGTHS_IPG_SHIFT);
5456 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
5457 val |= tr32(MAC_TX_LENGTHS) &
5458 (TX_LENGTHS_JMB_FRM_LEN_MSK |
5459 TX_LENGTHS_CNT_DWN_VAL_MSK);
5460
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461 if (tp->link_config.active_speed == SPEED_1000 &&
5462 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005463 tw32(MAC_TX_LENGTHS, val |
5464 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00005466 tw32(MAC_TX_LENGTHS, val |
5467 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468
Joe Perches63c3a662011-04-26 08:12:10 +00005469 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470 if (netif_carrier_ok(tp->dev)) {
5471 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07005472 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 } else {
5474 tw32(HOSTCC_STAT_COAL_TICKS, 0);
5475 }
5476 }
5477
Joe Perches63c3a662011-04-26 08:12:10 +00005478 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005479 val = tr32(PCIE_PWR_MGMT_THRESH);
Matt Carlson8ed5d972007-05-07 00:25:49 -07005480 if (!netif_carrier_ok(tp->dev))
5481 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
5482 tp->pwrmgmt_thresh;
5483 else
5484 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
5485 tw32(PCIE_PWR_MGMT_THRESH, val);
5486 }
5487
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488 return err;
5489}
5490
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005491static inline int tg3_irq_sync(struct tg3 *tp)
5492{
5493 return tp->irq_sync;
5494}
5495
Matt Carlson97bd8e42011-04-13 11:05:04 +00005496static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
5497{
5498 int i;
5499
5500 dst = (u32 *)((u8 *)dst + off);
5501 for (i = 0; i < len; i += sizeof(u32))
5502 *dst++ = tr32(off + i);
5503}
5504
5505static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
5506{
5507 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
5508 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
5509 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
5510 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
5511 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
5512 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
5513 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
5514 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
5515 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
5516 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
5517 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
5518 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
5519 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
5520 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
5521 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
5522 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
5523 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
5524 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
5525 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
5526
Joe Perches63c3a662011-04-26 08:12:10 +00005527 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005528 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
5529
5530 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
5531 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
5532 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
5533 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
5534 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
5535 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
5536 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
5537 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
5538
Joe Perches63c3a662011-04-26 08:12:10 +00005539 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005540 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
5541 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
5542 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
5543 }
5544
5545 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
5546 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
5547 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
5548 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
5549 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
5550
Joe Perches63c3a662011-04-26 08:12:10 +00005551 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005552 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
5553}
5554
5555static void tg3_dump_state(struct tg3 *tp)
5556{
5557 int i;
5558 u32 *regs;
5559
5560 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
5561 if (!regs) {
5562 netdev_err(tp->dev, "Failed allocating register dump buffer\n");
5563 return;
5564 }
5565
Joe Perches63c3a662011-04-26 08:12:10 +00005566 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005567 /* Read up to but not including private PCI registers */
5568 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
5569 regs[i / sizeof(u32)] = tr32(i);
5570 } else
5571 tg3_dump_legacy_regs(tp, regs);
5572
5573 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
5574 if (!regs[i + 0] && !regs[i + 1] &&
5575 !regs[i + 2] && !regs[i + 3])
5576 continue;
5577
5578 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
5579 i * 4,
5580 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
5581 }
5582
5583 kfree(regs);
5584
5585 for (i = 0; i < tp->irq_cnt; i++) {
5586 struct tg3_napi *tnapi = &tp->napi[i];
5587
5588 /* SW status block */
5589 netdev_err(tp->dev,
5590 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
5591 i,
5592 tnapi->hw_status->status,
5593 tnapi->hw_status->status_tag,
5594 tnapi->hw_status->rx_jumbo_consumer,
5595 tnapi->hw_status->rx_consumer,
5596 tnapi->hw_status->rx_mini_consumer,
5597 tnapi->hw_status->idx[0].rx_producer,
5598 tnapi->hw_status->idx[0].tx_consumer);
5599
5600 netdev_err(tp->dev,
5601 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
5602 i,
5603 tnapi->last_tag, tnapi->last_irq_tag,
5604 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
5605 tnapi->rx_rcb_ptr,
5606 tnapi->prodring.rx_std_prod_idx,
5607 tnapi->prodring.rx_std_cons_idx,
5608 tnapi->prodring.rx_jmb_prod_idx,
5609 tnapi->prodring.rx_jmb_cons_idx);
5610 }
5611}
5612
Michael Chandf3e6542006-05-26 17:48:07 -07005613/* This is called whenever we suspect that the system chipset is re-
5614 * ordering the sequence of MMIO to the tx send mailbox. The symptom
5615 * is bogus tx completions. We try to recover by setting the
5616 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
5617 * in the workqueue.
5618 */
5619static void tg3_tx_recover(struct tg3 *tp)
5620{
Joe Perches63c3a662011-04-26 08:12:10 +00005621 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07005622 tp->write32_tx_mbox == tg3_write_indirect_mbox);
5623
Matt Carlson5129c3a2010-04-05 10:19:23 +00005624 netdev_warn(tp->dev,
5625 "The system may be re-ordering memory-mapped I/O "
5626 "cycles to the network device, attempting to recover. "
5627 "Please report the problem to the driver maintainer "
5628 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07005629
5630 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005631 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005632 spin_unlock(&tp->lock);
5633}
5634
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005635static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07005636{
Matt Carlsonf65aac12010-08-02 11:26:03 +00005637 /* Tell compiler to fetch tx indices from memory. */
5638 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005639 return tnapi->tx_pending -
5640 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07005641}
5642
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643/* Tigon3 never reports partial packet sends. So we do not
5644 * need special logic to handle SKBs that have not had all
5645 * of their frags sent yet, like SunGEM does.
5646 */
Matt Carlson17375d22009-08-28 14:02:18 +00005647static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648{
Matt Carlson17375d22009-08-28 14:02:18 +00005649 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005650 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005651 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005652 struct netdev_queue *txq;
5653 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00005654 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005655
Joe Perches63c3a662011-04-26 08:12:10 +00005656 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005657 index--;
5658
5659 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660
5661 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00005662 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07005664 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
Michael Chandf3e6542006-05-26 17:48:07 -07005666 if (unlikely(skb == NULL)) {
5667 tg3_tx_recover(tp);
5668 return;
5669 }
5670
Alexander Duyckf4188d82009-12-02 16:48:38 +00005671 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005672 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005673 skb_headlen(skb),
5674 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675
5676 ri->skb = NULL;
5677
Matt Carlsone01ee142011-07-27 14:20:50 +00005678 while (ri->fragmented) {
5679 ri->fragmented = false;
5680 sw_idx = NEXT_TX(sw_idx);
5681 ri = &tnapi->tx_buffers[sw_idx];
5682 }
5683
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684 sw_idx = NEXT_TX(sw_idx);
5685
5686 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005687 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07005688 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
5689 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005690
5691 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005692 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00005693 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005694 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00005695
5696 while (ri->fragmented) {
5697 ri->fragmented = false;
5698 sw_idx = NEXT_TX(sw_idx);
5699 ri = &tnapi->tx_buffers[sw_idx];
5700 }
5701
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702 sw_idx = NEXT_TX(sw_idx);
5703 }
5704
Tom Herbert298376d2011-11-28 16:33:30 +00005705 pkts_compl++;
5706 bytes_compl += skb->len;
5707
David S. Millerf47c11e2005-06-24 20:18:35 -07005708 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07005709
5710 if (unlikely(tx_bug)) {
5711 tg3_tx_recover(tp);
5712 return;
5713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714 }
5715
Tom Herbert5cb917b2012-03-05 19:53:50 +00005716 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00005717
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005718 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719
Michael Chan1b2a7202006-08-07 21:46:02 -07005720 /* Need to make the tx_cons update visible to tg3_start_xmit()
5721 * before checking for netif_queue_stopped(). Without the
5722 * memory barrier, there is a small possibility that tg3_start_xmit()
5723 * will miss it and cause the queue to be stopped forever.
5724 */
5725 smp_mb();
5726
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005727 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005728 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005729 __netif_tx_lock(txq, smp_processor_id());
5730 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005731 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005732 netif_tx_wake_queue(txq);
5733 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07005734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735}
5736
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005737static void tg3_frag_free(bool is_frag, void *data)
5738{
5739 if (is_frag)
5740 put_page(virt_to_head_page(data));
5741 else
5742 kfree(data);
5743}
5744
Eric Dumazet9205fd92011-11-18 06:47:01 +00005745static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005746{
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005747 unsigned int skb_size = SKB_DATA_ALIGN(map_sz + TG3_RX_OFFSET(tp)) +
5748 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
5749
Eric Dumazet9205fd92011-11-18 06:47:01 +00005750 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005751 return;
5752
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005753 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005754 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00005755 tg3_frag_free(skb_size <= PAGE_SIZE, ri->data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005756 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005757}
5758
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005759
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760/* Returns size of skb allocated or < 0 on error.
5761 *
5762 * We only need to fill in the address because the other members
5763 * of the RX descriptor are invariant, see tg3_init_rings.
5764 *
5765 * Note the purposeful assymetry of cpu vs. chip accesses. For
5766 * posting buffers we only dirty the first cache line of the RX
5767 * descriptor (containing the address). Whereas for the RX status
5768 * buffers the cpu only reads the last cacheline of the RX descriptor
5769 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
5770 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00005771static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005772 u32 opaque_key, u32 dest_idx_unmasked,
5773 unsigned int *frag_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774{
5775 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00005776 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005777 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005779 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781 switch (opaque_key) {
5782 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005783 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00005784 desc = &tpr->rx_std[dest_idx];
5785 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00005786 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787 break;
5788
5789 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005790 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00005791 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00005792 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00005793 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794 break;
5795
5796 default:
5797 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799
5800 /* Do not overwrite any of the map or rp information
5801 * until we are sure we can commit to a new buffer.
5802 *
5803 * Callers depend upon this behavior and assume that
5804 * we leave everything unchanged if we fail.
5805 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00005806 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
5807 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00005808 if (skb_size <= PAGE_SIZE) {
5809 data = netdev_alloc_frag(skb_size);
5810 *frag_size = skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005811 } else {
5812 data = kmalloc(skb_size, GFP_ATOMIC);
5813 *frag_size = 0;
5814 }
Eric Dumazet9205fd92011-11-18 06:47:01 +00005815 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816 return -ENOMEM;
5817
Eric Dumazet9205fd92011-11-18 06:47:01 +00005818 mapping = pci_map_single(tp->pdev,
5819 data + TG3_RX_OFFSET(tp),
5820 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821 PCI_DMA_FROMDEVICE);
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005822 if (unlikely(pci_dma_mapping_error(tp->pdev, mapping))) {
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00005823 tg3_frag_free(skb_size <= PAGE_SIZE, data);
Matt Carlsona21771d2009-11-02 14:25:31 +00005824 return -EIO;
5825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826
Eric Dumazet9205fd92011-11-18 06:47:01 +00005827 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005828 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 desc->addr_hi = ((u64)mapping >> 32);
5831 desc->addr_lo = ((u64)mapping & 0xffffffff);
5832
Eric Dumazet9205fd92011-11-18 06:47:01 +00005833 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834}
5835
5836/* We only need to move over in the address because the other
5837 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00005838 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839 */
Matt Carlsona3896162009-11-13 13:03:44 +00005840static void tg3_recycle_rx(struct tg3_napi *tnapi,
5841 struct tg3_rx_prodring_set *dpr,
5842 u32 opaque_key, int src_idx,
5843 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844{
Matt Carlson17375d22009-08-28 14:02:18 +00005845 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
5847 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005848 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005849 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850
5851 switch (opaque_key) {
5852 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005853 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005854 dest_desc = &dpr->rx_std[dest_idx];
5855 dest_map = &dpr->rx_std_buffers[dest_idx];
5856 src_desc = &spr->rx_std[src_idx];
5857 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858 break;
5859
5860 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005861 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005862 dest_desc = &dpr->rx_jmb[dest_idx].std;
5863 dest_map = &dpr->rx_jmb_buffers[dest_idx];
5864 src_desc = &spr->rx_jmb[src_idx].std;
5865 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866 break;
5867
5868 default:
5869 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871
Eric Dumazet9205fd92011-11-18 06:47:01 +00005872 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005873 dma_unmap_addr_set(dest_map, mapping,
5874 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875 dest_desc->addr_hi = src_desc->addr_hi;
5876 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00005877
5878 /* Ensure that the update to the skb happens after the physical
5879 * addresses have been transferred to the new BD location.
5880 */
5881 smp_wmb();
5882
Eric Dumazet9205fd92011-11-18 06:47:01 +00005883 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884}
5885
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886/* The RX ring scheme is composed of multiple rings which post fresh
5887 * buffers to the chip, and one special ring the chip uses to report
5888 * status back to the host.
5889 *
5890 * The special ring reports the status of received packets to the
5891 * host. The chip does not write into the original descriptor the
5892 * RX buffer was obtained from. The chip simply takes the original
5893 * descriptor as provided by the host, updates the status and length
5894 * field, then writes this into the next status ring entry.
5895 *
5896 * Each ring the host uses to post buffers to the chip is described
5897 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
5898 * it is first placed into the on-chip ram. When the packet's length
5899 * is known, it walks down the TG3_BDINFO entries to select the ring.
5900 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
5901 * which is within the range of the new packet's length is chosen.
5902 *
5903 * The "separate ring for rx status" scheme may sound queer, but it makes
5904 * sense from a cache coherency perspective. If only the host writes
5905 * to the buffer post rings, and only the chip writes to the rx status
5906 * rings, then cache lines never move beyond shared-modified state.
5907 * If both the host and chip were to write into the same ring, cache line
5908 * eviction could occur since both entities want it in an exclusive state.
5909 */
Matt Carlson17375d22009-08-28 14:02:18 +00005910static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911{
Matt Carlson17375d22009-08-28 14:02:18 +00005912 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07005913 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005914 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00005915 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07005916 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005918 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005920 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921 /*
5922 * We need to order the read of hw_idx and the read of
5923 * the opaque cookie.
5924 */
5925 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926 work_mask = 0;
5927 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005928 std_prod_idx = tpr->rx_std_prod_idx;
5929 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00005931 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00005932 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933 unsigned int len;
5934 struct sk_buff *skb;
5935 dma_addr_t dma_addr;
5936 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005937 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938
5939 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
5940 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
5941 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005942 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005943 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005944 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00005945 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07005946 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005948 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005949 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005950 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00005951 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00005952 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954
5955 work_mask |= opaque_key;
5956
5957 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
5958 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
5959 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00005960 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961 desc_idx, *post_ptr);
5962 drop_it_no_recycle:
5963 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00005964 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965 goto next_pkt;
5966 }
5967
Eric Dumazet9205fd92011-11-18 06:47:01 +00005968 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08005969 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
5970 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971
Matt Carlsond2757fc2010-04-12 06:58:27 +00005972 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973 int skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005974 unsigned int frag_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975
Eric Dumazet9205fd92011-11-18 06:47:01 +00005976 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005977 *post_ptr, &frag_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978 if (skb_size < 0)
5979 goto drop_it;
5980
Matt Carlson287be122009-08-28 13:58:46 +00005981 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982 PCI_DMA_FROMDEVICE);
5983
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005984 skb = build_skb(data, frag_size);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005985 if (!skb) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005986 tg3_frag_free(frag_size != 0, data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005987 goto drop_it_no_recycle;
5988 }
5989 skb_reserve(skb, TG3_RX_OFFSET(tp));
5990 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00005991 * after the usage of the old DMA mapping.
5992 */
5993 smp_wmb();
5994
Eric Dumazet9205fd92011-11-18 06:47:01 +00005995 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00005996
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00005998 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999 desc_idx, *post_ptr);
6000
Eric Dumazet9205fd92011-11-18 06:47:01 +00006001 skb = netdev_alloc_skb(tp->dev,
6002 len + TG3_RAW_IP_ALIGN);
6003 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004 goto drop_it_no_recycle;
6005
Eric Dumazet9205fd92011-11-18 06:47:01 +00006006 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006008 memcpy(skb->data,
6009 data + TG3_RX_OFFSET(tp),
6010 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012 }
6013
Eric Dumazet9205fd92011-11-18 06:47:01 +00006014 skb_put(skb, len);
Michał Mirosławdc668912011-04-07 03:35:07 +00006015 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
6017 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
6018 >> RXD_TCPCSUM_SHIFT) == 0xffff))
6019 skb->ip_summed = CHECKSUM_UNNECESSARY;
6020 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006021 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022
6023 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006024
6025 if (len > (tp->dev->mtu + ETH_HLEN) &&
6026 skb->protocol != htons(ETH_P_8021Q)) {
6027 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00006028 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006029 }
6030
Matt Carlson9dc7a112010-04-12 06:58:28 +00006031 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00006032 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
6033 __vlan_hwaccel_put_tag(skb,
6034 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00006035
Matt Carlsonbf933c82011-01-25 15:58:49 +00006036 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038 received++;
6039 budget--;
6040
6041next_pkt:
6042 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07006043
6044 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006045 tpr->rx_std_prod_idx = std_prod_idx &
6046 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00006047 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6048 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07006049 work_mask &= ~RXD_OPAQUE_RING_STD;
6050 rx_std_posted = 0;
6051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07006053 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00006054 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07006055
6056 /* Refresh hw_idx to see if there is new work */
6057 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006058 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07006059 rmb();
6060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061 }
6062
6063 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00006064 tnapi->rx_rcb_ptr = sw_idx;
6065 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066
6067 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00006068 if (!tg3_flag(tp, ENABLE_RSS)) {
Michael Chan6541b802012-03-04 14:48:14 +00006069 /* Sync BD data before updating mailbox */
6070 wmb();
6071
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006072 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006073 tpr->rx_std_prod_idx = std_prod_idx &
6074 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006075 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6076 tpr->rx_std_prod_idx);
6077 }
6078 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006079 tpr->rx_jmb_prod_idx = jmb_prod_idx &
6080 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006081 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6082 tpr->rx_jmb_prod_idx);
6083 }
6084 mmiowb();
6085 } else if (work_mask) {
6086 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
6087 * updated before the producer indices can be updated.
6088 */
6089 smp_wmb();
6090
Matt Carlson2c49a442010-09-30 10:34:35 +00006091 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
6092 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006093
Michael Chan7ae52892012-03-21 15:38:33 +00006094 if (tnapi != &tp->napi[1]) {
6095 tp->rx_refill = true;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006096 napi_schedule(&tp->napi[1].napi);
Michael Chan7ae52892012-03-21 15:38:33 +00006097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099
6100 return received;
6101}
6102
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006103static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00006106 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006107 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
6108
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109 if (sblk->status & SD_STATUS_LINK_CHG) {
6110 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006111 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07006112 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006113 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07006114 tw32_f(MAC_STATUS,
6115 (MAC_STATUS_SYNC_CHANGED |
6116 MAC_STATUS_CFG_CHANGED |
6117 MAC_STATUS_MI_COMPLETION |
6118 MAC_STATUS_LNKSTATE_CHANGED));
6119 udelay(40);
6120 } else
6121 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07006122 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123 }
6124 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006125}
6126
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006127static int tg3_rx_prodring_xfer(struct tg3 *tp,
6128 struct tg3_rx_prodring_set *dpr,
6129 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006130{
6131 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006132 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006133
6134 while (1) {
6135 src_prod_idx = spr->rx_std_prod_idx;
6136
6137 /* Make sure updates to the rx_std_buffers[] entries and the
6138 * standard producer index are seen in the correct order.
6139 */
6140 smp_rmb();
6141
6142 if (spr->rx_std_cons_idx == src_prod_idx)
6143 break;
6144
6145 if (spr->rx_std_cons_idx < src_prod_idx)
6146 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
6147 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006148 cpycnt = tp->rx_std_ring_mask + 1 -
6149 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006150
Matt Carlson2c49a442010-09-30 10:34:35 +00006151 cpycnt = min(cpycnt,
6152 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006153
6154 si = spr->rx_std_cons_idx;
6155 di = dpr->rx_std_prod_idx;
6156
Matt Carlsone92967b2010-02-12 14:47:06 +00006157 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006158 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006159 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006160 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006161 break;
6162 }
6163 }
6164
6165 if (!cpycnt)
6166 break;
6167
6168 /* Ensure that updates to the rx_std_buffers ring and the
6169 * shadowed hardware producer ring from tg3_recycle_skb() are
6170 * ordered correctly WRT the skb check above.
6171 */
6172 smp_rmb();
6173
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006174 memcpy(&dpr->rx_std_buffers[di],
6175 &spr->rx_std_buffers[si],
6176 cpycnt * sizeof(struct ring_info));
6177
6178 for (i = 0; i < cpycnt; i++, di++, si++) {
6179 struct tg3_rx_buffer_desc *sbd, *dbd;
6180 sbd = &spr->rx_std[si];
6181 dbd = &dpr->rx_std[di];
6182 dbd->addr_hi = sbd->addr_hi;
6183 dbd->addr_lo = sbd->addr_lo;
6184 }
6185
Matt Carlson2c49a442010-09-30 10:34:35 +00006186 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
6187 tp->rx_std_ring_mask;
6188 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
6189 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006190 }
6191
6192 while (1) {
6193 src_prod_idx = spr->rx_jmb_prod_idx;
6194
6195 /* Make sure updates to the rx_jmb_buffers[] entries and
6196 * the jumbo producer index are seen in the correct order.
6197 */
6198 smp_rmb();
6199
6200 if (spr->rx_jmb_cons_idx == src_prod_idx)
6201 break;
6202
6203 if (spr->rx_jmb_cons_idx < src_prod_idx)
6204 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
6205 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006206 cpycnt = tp->rx_jmb_ring_mask + 1 -
6207 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006208
6209 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00006210 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006211
6212 si = spr->rx_jmb_cons_idx;
6213 di = dpr->rx_jmb_prod_idx;
6214
Matt Carlsone92967b2010-02-12 14:47:06 +00006215 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006216 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006217 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006218 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006219 break;
6220 }
6221 }
6222
6223 if (!cpycnt)
6224 break;
6225
6226 /* Ensure that updates to the rx_jmb_buffers ring and the
6227 * shadowed hardware producer ring from tg3_recycle_skb() are
6228 * ordered correctly WRT the skb check above.
6229 */
6230 smp_rmb();
6231
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006232 memcpy(&dpr->rx_jmb_buffers[di],
6233 &spr->rx_jmb_buffers[si],
6234 cpycnt * sizeof(struct ring_info));
6235
6236 for (i = 0; i < cpycnt; i++, di++, si++) {
6237 struct tg3_rx_buffer_desc *sbd, *dbd;
6238 sbd = &spr->rx_jmb[si].std;
6239 dbd = &dpr->rx_jmb[di].std;
6240 dbd->addr_hi = sbd->addr_hi;
6241 dbd->addr_lo = sbd->addr_lo;
6242 }
6243
Matt Carlson2c49a442010-09-30 10:34:35 +00006244 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
6245 tp->rx_jmb_ring_mask;
6246 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
6247 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006248 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006249
6250 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006251}
6252
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006253static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
6254{
6255 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256
6257 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006258 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00006259 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00006260 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07006261 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262 }
6263
Matt Carlsonf891ea12012-04-24 13:37:01 +00006264 if (!tnapi->rx_rcb_prod_idx)
6265 return work_done;
6266
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267 /* run RX thread, within the bounds set by NAPI.
6268 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006269 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006271 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00006272 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273
Joe Perches63c3a662011-04-26 08:12:10 +00006274 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006275 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006276 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006277 u32 std_prod_idx = dpr->rx_std_prod_idx;
6278 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006279
Michael Chan7ae52892012-03-21 15:38:33 +00006280 tp->rx_refill = false;
Michael Chan91024262012-09-28 07:12:38 +00006281 for (i = 1; i <= tp->rxq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006282 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00006283 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006284
6285 wmb();
6286
Matt Carlsone4af1af2010-02-12 14:47:05 +00006287 if (std_prod_idx != dpr->rx_std_prod_idx)
6288 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6289 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006290
Matt Carlsone4af1af2010-02-12 14:47:05 +00006291 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
6292 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6293 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006294
6295 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006296
6297 if (err)
6298 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006299 }
6300
David S. Miller6f535762007-10-11 18:08:29 -07006301 return work_done;
6302}
David S. Millerf7383c22005-05-18 22:50:53 -07006303
Matt Carlsondb219972011-11-04 09:15:03 +00006304static inline void tg3_reset_task_schedule(struct tg3 *tp)
6305{
6306 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
6307 schedule_work(&tp->reset_task);
6308}
6309
6310static inline void tg3_reset_task_cancel(struct tg3 *tp)
6311{
6312 cancel_work_sync(&tp->reset_task);
6313 tg3_flag_clear(tp, RESET_TASK_PENDING);
Matt Carlsonc7101352012-02-22 12:35:20 +00006314 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsondb219972011-11-04 09:15:03 +00006315}
6316
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006317static int tg3_poll_msix(struct napi_struct *napi, int budget)
6318{
6319 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6320 struct tg3 *tp = tnapi->tp;
6321 int work_done = 0;
6322 struct tg3_hw_status *sblk = tnapi->hw_status;
6323
6324 while (1) {
6325 work_done = tg3_poll_work(tnapi, work_done, budget);
6326
Joe Perches63c3a662011-04-26 08:12:10 +00006327 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006328 goto tx_recovery;
6329
6330 if (unlikely(work_done >= budget))
6331 break;
6332
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006333 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006334 * to tell the hw how much work has been processed,
6335 * so we must read it before checking for more work.
6336 */
6337 tnapi->last_tag = sblk->status_tag;
6338 tnapi->last_irq_tag = tnapi->last_tag;
6339 rmb();
6340
6341 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00006342 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
6343 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Michael Chan7ae52892012-03-21 15:38:33 +00006344
6345 /* This test here is not race free, but will reduce
6346 * the number of interrupts by looping again.
6347 */
6348 if (tnapi == &tp->napi[1] && tp->rx_refill)
6349 continue;
6350
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006351 napi_complete(napi);
6352 /* Reenable interrupts. */
6353 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Michael Chan7ae52892012-03-21 15:38:33 +00006354
6355 /* This test here is synchronized by napi_schedule()
6356 * and napi_complete() to close the race condition.
6357 */
6358 if (unlikely(tnapi == &tp->napi[1] && tp->rx_refill)) {
6359 tw32(HOSTCC_MODE, tp->coalesce_mode |
6360 HOSTCC_MODE_ENABLE |
6361 tnapi->coal_now);
6362 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006363 mmiowb();
6364 break;
6365 }
6366 }
6367
6368 return work_done;
6369
6370tx_recovery:
6371 /* work_done is guaranteed to be less than budget. */
6372 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006373 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006374 return work_done;
6375}
6376
Matt Carlsone64de4e2011-04-13 11:05:05 +00006377static void tg3_process_error(struct tg3 *tp)
6378{
6379 u32 val;
6380 bool real_error = false;
6381
Joe Perches63c3a662011-04-26 08:12:10 +00006382 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00006383 return;
6384
6385 /* Check Flow Attention register */
6386 val = tr32(HOSTCC_FLOW_ATTN);
6387 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
6388 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
6389 real_error = true;
6390 }
6391
6392 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
6393 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
6394 real_error = true;
6395 }
6396
6397 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
6398 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
6399 real_error = true;
6400 }
6401
6402 if (!real_error)
6403 return;
6404
6405 tg3_dump_state(tp);
6406
Joe Perches63c3a662011-04-26 08:12:10 +00006407 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00006408 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00006409}
6410
David S. Miller6f535762007-10-11 18:08:29 -07006411static int tg3_poll(struct napi_struct *napi, int budget)
6412{
Matt Carlson8ef04422009-08-28 14:01:37 +00006413 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6414 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07006415 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00006416 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07006417
6418 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00006419 if (sblk->status & SD_STATUS_ERROR)
6420 tg3_process_error(tp);
6421
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006422 tg3_poll_link(tp);
6423
Matt Carlson17375d22009-08-28 14:02:18 +00006424 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07006425
Joe Perches63c3a662011-04-26 08:12:10 +00006426 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07006427 goto tx_recovery;
6428
6429 if (unlikely(work_done >= budget))
6430 break;
6431
Joe Perches63c3a662011-04-26 08:12:10 +00006432 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00006433 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07006434 * to tell the hw how much work has been processed,
6435 * so we must read it before checking for more work.
6436 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006437 tnapi->last_tag = sblk->status_tag;
6438 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07006439 rmb();
6440 } else
6441 sblk->status &= ~SD_STATUS_UPDATED;
6442
Matt Carlson17375d22009-08-28 14:02:18 +00006443 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006444 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00006445 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07006446 break;
6447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448 }
6449
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006450 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07006451
6452tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07006453 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08006454 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006455 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07006456 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457}
6458
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006459static void tg3_napi_disable(struct tg3 *tp)
6460{
6461 int i;
6462
6463 for (i = tp->irq_cnt - 1; i >= 0; i--)
6464 napi_disable(&tp->napi[i].napi);
6465}
6466
6467static void tg3_napi_enable(struct tg3 *tp)
6468{
6469 int i;
6470
6471 for (i = 0; i < tp->irq_cnt; i++)
6472 napi_enable(&tp->napi[i].napi);
6473}
6474
6475static void tg3_napi_init(struct tg3 *tp)
6476{
6477 int i;
6478
6479 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
6480 for (i = 1; i < tp->irq_cnt; i++)
6481 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
6482}
6483
6484static void tg3_napi_fini(struct tg3 *tp)
6485{
6486 int i;
6487
6488 for (i = 0; i < tp->irq_cnt; i++)
6489 netif_napi_del(&tp->napi[i].napi);
6490}
6491
6492static inline void tg3_netif_stop(struct tg3 *tp)
6493{
6494 tp->dev->trans_start = jiffies; /* prevent tx timeout */
6495 tg3_napi_disable(tp);
6496 netif_tx_disable(tp->dev);
6497}
6498
6499static inline void tg3_netif_start(struct tg3 *tp)
6500{
6501 /* NOTE: unconditional netif_tx_wake_all_queues is only
6502 * appropriate so long as all callers are assured to
6503 * have free tx slots (such as after tg3_init_hw)
6504 */
6505 netif_tx_wake_all_queues(tp->dev);
6506
6507 tg3_napi_enable(tp);
6508 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
6509 tg3_enable_ints(tp);
6510}
6511
David S. Millerf47c11e2005-06-24 20:18:35 -07006512static void tg3_irq_quiesce(struct tg3 *tp)
6513{
Matt Carlson4f125f42009-09-01 12:55:02 +00006514 int i;
6515
David S. Millerf47c11e2005-06-24 20:18:35 -07006516 BUG_ON(tp->irq_sync);
6517
6518 tp->irq_sync = 1;
6519 smp_mb();
6520
Matt Carlson4f125f42009-09-01 12:55:02 +00006521 for (i = 0; i < tp->irq_cnt; i++)
6522 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07006523}
6524
David S. Millerf47c11e2005-06-24 20:18:35 -07006525/* Fully shutdown all tg3 driver activity elsewhere in the system.
6526 * If irq_sync is non-zero, then the IRQ handler must be synchronized
6527 * with as well. Most of the time, this is not necessary except when
6528 * shutting down the device.
6529 */
6530static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
6531{
Michael Chan46966542007-07-11 19:47:19 -07006532 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07006533 if (irq_sync)
6534 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006535}
6536
6537static inline void tg3_full_unlock(struct tg3 *tp)
6538{
David S. Millerf47c11e2005-06-24 20:18:35 -07006539 spin_unlock_bh(&tp->lock);
6540}
6541
Michael Chanfcfa0a32006-03-20 22:28:41 -08006542/* One-shot MSI handler - Chip automatically disables interrupt
6543 * after sending MSI so driver doesn't have to do it.
6544 */
David Howells7d12e782006-10-05 14:55:46 +01006545static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08006546{
Matt Carlson09943a12009-08-28 14:01:57 +00006547 struct tg3_napi *tnapi = dev_id;
6548 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08006549
Matt Carlson898a56f2009-08-28 14:02:40 +00006550 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006551 if (tnapi->rx_rcb)
6552 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006553
6554 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006555 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006556
6557 return IRQ_HANDLED;
6558}
6559
Michael Chan88b06bc22005-04-21 17:13:25 -07006560/* MSI ISR - No need to check for interrupt sharing and no need to
6561 * flush status block and interrupt mailbox. PCI ordering rules
6562 * guarantee that MSI will arrive after the status block.
6563 */
David Howells7d12e782006-10-05 14:55:46 +01006564static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07006565{
Matt Carlson09943a12009-08-28 14:01:57 +00006566 struct tg3_napi *tnapi = dev_id;
6567 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07006568
Matt Carlson898a56f2009-08-28 14:02:40 +00006569 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006570 if (tnapi->rx_rcb)
6571 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07006572 /*
David S. Millerfac9b832005-05-18 22:46:34 -07006573 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07006574 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07006575 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07006576 * NIC to stop sending us irqs, engaging "in-intr-handler"
6577 * event coalescing.
6578 */
Matt Carlson5b39de92011-08-31 11:44:50 +00006579 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07006580 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006581 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07006582
Michael Chan88b06bc22005-04-21 17:13:25 -07006583 return IRQ_RETVAL(1);
6584}
6585
David Howells7d12e782006-10-05 14:55:46 +01006586static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587{
Matt Carlson09943a12009-08-28 14:01:57 +00006588 struct tg3_napi *tnapi = dev_id;
6589 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006590 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591 unsigned int handled = 1;
6592
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593 /* In INTx mode, it is possible for the interrupt to arrive at
6594 * the CPU before the status block posted prior to the interrupt.
6595 * Reading the PCI State register will confirm whether the
6596 * interrupt is ours and will flush the status block.
6597 */
Michael Chand18edcb2007-03-24 20:57:11 -07006598 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00006599 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006600 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6601 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006602 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07006603 }
Michael Chand18edcb2007-03-24 20:57:11 -07006604 }
6605
6606 /*
6607 * Writing any value to intr-mbox-0 clears PCI INTA# and
6608 * chip-internal interrupt pending events.
6609 * Writing non-zero to intr-mbox-0 additional tells the
6610 * NIC to stop sending us irqs, engaging "in-intr-handler"
6611 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006612 *
6613 * Flush the mailbox to de-assert the IRQ immediately to prevent
6614 * spurious interrupts. The flush impacts performance but
6615 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006616 */
Michael Chanc04cb342007-05-07 00:26:15 -07006617 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07006618 if (tg3_irq_sync(tp))
6619 goto out;
6620 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00006621 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00006622 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00006623 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07006624 } else {
6625 /* No work, shared interrupt perhaps? re-enable
6626 * interrupts, and flush that PCI write
6627 */
6628 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
6629 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07006630 }
David S. Millerf47c11e2005-06-24 20:18:35 -07006631out:
David S. Millerfac9b832005-05-18 22:46:34 -07006632 return IRQ_RETVAL(handled);
6633}
6634
David Howells7d12e782006-10-05 14:55:46 +01006635static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07006636{
Matt Carlson09943a12009-08-28 14:01:57 +00006637 struct tg3_napi *tnapi = dev_id;
6638 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006639 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07006640 unsigned int handled = 1;
6641
David S. Millerfac9b832005-05-18 22:46:34 -07006642 /* In INTx mode, it is possible for the interrupt to arrive at
6643 * the CPU before the status block posted prior to the interrupt.
6644 * Reading the PCI State register will confirm whether the
6645 * interrupt is ours and will flush the status block.
6646 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006647 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00006648 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006649 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6650 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006651 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652 }
Michael Chand18edcb2007-03-24 20:57:11 -07006653 }
6654
6655 /*
6656 * writing any value to intr-mbox-0 clears PCI INTA# and
6657 * chip-internal interrupt pending events.
6658 * writing non-zero to intr-mbox-0 additional tells the
6659 * NIC to stop sending us irqs, engaging "in-intr-handler"
6660 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006661 *
6662 * Flush the mailbox to de-assert the IRQ immediately to prevent
6663 * spurious interrupts. The flush impacts performance but
6664 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006665 */
Michael Chanc04cb342007-05-07 00:26:15 -07006666 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00006667
6668 /*
6669 * In a shared interrupt configuration, sometimes other devices'
6670 * interrupts will scream. We record the current status tag here
6671 * so that the above check can report that the screaming interrupts
6672 * are unhandled. Eventually they will be silenced.
6673 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006674 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00006675
Michael Chand18edcb2007-03-24 20:57:11 -07006676 if (tg3_irq_sync(tp))
6677 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00006678
Matt Carlson72334482009-08-28 14:03:01 +00006679 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00006680
Matt Carlson09943a12009-08-28 14:01:57 +00006681 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00006682
David S. Millerf47c11e2005-06-24 20:18:35 -07006683out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684 return IRQ_RETVAL(handled);
6685}
6686
Michael Chan79381092005-04-21 17:13:59 -07006687/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01006688static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07006689{
Matt Carlson09943a12009-08-28 14:01:57 +00006690 struct tg3_napi *tnapi = dev_id;
6691 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006692 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07006693
Michael Chanf9804dd2005-09-27 12:13:10 -07006694 if ((sblk->status & SD_STATUS_UPDATED) ||
6695 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07006696 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07006697 return IRQ_RETVAL(1);
6698 }
6699 return IRQ_RETVAL(0);
6700}
6701
Linus Torvalds1da177e2005-04-16 15:20:36 -07006702#ifdef CONFIG_NET_POLL_CONTROLLER
6703static void tg3_poll_controller(struct net_device *dev)
6704{
Matt Carlson4f125f42009-09-01 12:55:02 +00006705 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07006706 struct tg3 *tp = netdev_priv(dev);
6707
Matt Carlson4f125f42009-09-01 12:55:02 +00006708 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00006709 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710}
6711#endif
6712
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713static void tg3_tx_timeout(struct net_device *dev)
6714{
6715 struct tg3 *tp = netdev_priv(dev);
6716
Michael Chanb0408752007-02-13 12:18:30 -08006717 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00006718 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00006719 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08006720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721
Matt Carlsondb219972011-11-04 09:15:03 +00006722 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723}
6724
Michael Chanc58ec932005-09-17 00:46:27 -07006725/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
6726static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
6727{
6728 u32 base = (u32) mapping & 0xffffffff;
6729
Eric Dumazet807540b2010-09-23 05:40:09 +00006730 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07006731}
6732
Michael Chan72f2afb2006-03-06 19:28:35 -08006733/* Test for DMA addresses > 40-bit */
6734static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
6735 int len)
6736{
6737#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00006738 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00006739 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08006740 return 0;
6741#else
6742 return 0;
6743#endif
6744}
6745
Matt Carlsond1a3b732011-07-27 14:20:51 +00006746static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006747 dma_addr_t mapping, u32 len, u32 flags,
6748 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00006749{
Matt Carlson92cd3a12011-07-27 14:20:47 +00006750 txbd->addr_hi = ((u64) mapping >> 32);
6751 txbd->addr_lo = ((u64) mapping & 0xffffffff);
6752 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
6753 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00006754}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755
Matt Carlson84b67b22011-07-27 14:20:52 +00006756static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006757 dma_addr_t map, u32 len, u32 flags,
6758 u32 mss, u32 vlan)
6759{
6760 struct tg3 *tp = tnapi->tp;
6761 bool hwbug = false;
6762
6763 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00006764 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006765
6766 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00006767 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006768
6769 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00006770 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006771
Matt Carlsona4cb4282011-12-14 11:09:58 +00006772 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006773 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00006774 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00006775 while (len > tp->dma_limit && *budget) {
6776 u32 frag_len = tp->dma_limit;
6777 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00006778
Matt Carlsonb9e45482011-11-04 09:14:59 +00006779 /* Avoid the 8byte DMA problem */
6780 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00006781 len += tp->dma_limit / 2;
6782 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00006783 }
6784
Matt Carlsonb9e45482011-11-04 09:14:59 +00006785 tnapi->tx_buffers[*entry].fragmented = true;
6786
6787 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6788 frag_len, tmp_flag, mss, vlan);
6789 *budget -= 1;
6790 prvidx = *entry;
6791 *entry = NEXT_TX(*entry);
6792
Matt Carlsone31aa982011-07-27 14:20:53 +00006793 map += frag_len;
6794 }
6795
6796 if (len) {
6797 if (*budget) {
6798 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6799 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00006800 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00006801 *entry = NEXT_TX(*entry);
6802 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00006803 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00006804 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00006805 }
6806 }
6807 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00006808 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6809 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00006810 *entry = NEXT_TX(*entry);
6811 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00006812
6813 return hwbug;
6814}
6815
Matt Carlson0d681b22011-07-27 14:20:49 +00006816static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00006817{
6818 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00006819 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00006820 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006821
Matt Carlson0d681b22011-07-27 14:20:49 +00006822 skb = txb->skb;
6823 txb->skb = NULL;
6824
Matt Carlson432aa7e2011-05-19 12:12:45 +00006825 pci_unmap_single(tnapi->tp->pdev,
6826 dma_unmap_addr(txb, mapping),
6827 skb_headlen(skb),
6828 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006829
6830 while (txb->fragmented) {
6831 txb->fragmented = false;
6832 entry = NEXT_TX(entry);
6833 txb = &tnapi->tx_buffers[entry];
6834 }
6835
Matt Carlsonba1142e2011-11-04 09:15:00 +00006836 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00006837 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006838
6839 entry = NEXT_TX(entry);
6840 txb = &tnapi->tx_buffers[entry];
6841
6842 pci_unmap_page(tnapi->tp->pdev,
6843 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006844 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006845
6846 while (txb->fragmented) {
6847 txb->fragmented = false;
6848 entry = NEXT_TX(entry);
6849 txb = &tnapi->tx_buffers[entry];
6850 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00006851 }
6852}
6853
Michael Chan72f2afb2006-03-06 19:28:35 -08006854/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006855static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04006856 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00006857 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006858 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859{
Matt Carlson24f4efd2009-11-13 13:03:35 +00006860 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04006861 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07006862 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006863 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864
Matt Carlson41588ba2008-04-19 18:12:33 -07006865 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
6866 new_skb = skb_copy(skb, GFP_ATOMIC);
6867 else {
6868 int more_headroom = 4 - ((unsigned long)skb->data & 3);
6869
6870 new_skb = skb_copy_expand(skb,
6871 skb_headroom(skb) + more_headroom,
6872 skb_tailroom(skb), GFP_ATOMIC);
6873 }
6874
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07006876 ret = -1;
6877 } else {
6878 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00006879 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
6880 PCI_DMA_TODEVICE);
6881 /* Make sure the mapping succeeded */
6882 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006883 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07006884 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07006885 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006886 u32 save_entry = *entry;
6887
Matt Carlson92cd3a12011-07-27 14:20:47 +00006888 base_flags |= TXD_FLAG_END;
6889
Matt Carlson84b67b22011-07-27 14:20:52 +00006890 tnapi->tx_buffers[*entry].skb = new_skb;
6891 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00006892 mapping, new_addr);
6893
Matt Carlson84b67b22011-07-27 14:20:52 +00006894 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006895 new_skb->len, base_flags,
6896 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00006897 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00006898 dev_kfree_skb(new_skb);
6899 ret = -1;
6900 }
Michael Chanc58ec932005-09-17 00:46:27 -07006901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902 }
6903
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04006905 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07006906 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907}
6908
Matt Carlson2ffcc982011-05-19 12:12:44 +00006909static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07006910
6911/* Use GSO to workaround a rare TSO bug that may be triggered when the
6912 * TSO header is greater than 80 bytes.
6913 */
6914static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
6915{
6916 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006917 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07006918
6919 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006920 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07006921 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006922
6923 /* netif_tx_stop_queue() must be done before checking
6924 * checking tx index in tg3_tx_avail() below, because in
6925 * tg3_tx(), we update tx index before checking for
6926 * netif_tx_queue_stopped().
6927 */
6928 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006929 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08006930 return NETDEV_TX_BUSY;
6931
6932 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006933 }
6934
6935 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07006936 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07006937 goto tg3_tso_bug_end;
6938
6939 do {
6940 nskb = segs;
6941 segs = segs->next;
6942 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00006943 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006944 } while (segs);
6945
6946tg3_tso_bug_end:
6947 dev_kfree_skb(skb);
6948
6949 return NETDEV_TX_OK;
6950}
Michael Chan52c0fd82006-06-29 20:15:54 -07006951
Michael Chan5a6f3072006-03-20 22:28:05 -08006952/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00006953 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08006954 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00006955static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08006956{
6957 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00006958 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00006959 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006960 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07006961 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006962 struct tg3_napi *tnapi;
6963 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006964 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006965
Matt Carlson24f4efd2009-11-13 13:03:35 +00006966 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
6967 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00006968 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006969 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970
Matt Carlson84b67b22011-07-27 14:20:52 +00006971 budget = tg3_tx_avail(tnapi);
6972
Michael Chan00b70502006-06-17 21:58:45 -07006973 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006974 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07006975 * interrupt. Furthermore, IRQ processing runs lockless so we have
6976 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07006977 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006978 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006979 if (!netif_tx_queue_stopped(txq)) {
6980 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006981
6982 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00006983 netdev_err(dev,
6984 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006986 return NETDEV_TX_BUSY;
6987 }
6988
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006989 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006990 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07006991 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006993
Matt Carlsonbe98da62010-07-11 09:31:46 +00006994 mss = skb_shinfo(skb)->gso_size;
6995 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006996 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00006997 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998
6999 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00007000 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
7001 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002
Matt Carlson34195c32010-07-11 09:31:42 +00007003 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07007004 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005
Eric Dumazeta5a11952012-01-23 01:22:09 +00007006 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00007007
Eric Dumazeta5a11952012-01-23 01:22:09 +00007008 if (!skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00007009 iph->check = 0;
7010 iph->tot_len = htons(mss + hdr_len);
7011 }
7012
Michael Chan52c0fd82006-06-29 20:15:54 -07007013 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00007014 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00007015 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07007016
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
7018 TXD_FLAG_CPU_POST_DMA);
7019
Joe Perches63c3a662011-04-26 08:12:10 +00007020 if (tg3_flag(tp, HW_TSO_1) ||
7021 tg3_flag(tp, HW_TSO_2) ||
7022 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007023 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007025 } else
7026 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
7027 iph->daddr, 0,
7028 IPPROTO_TCP,
7029 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030
Joe Perches63c3a662011-04-26 08:12:10 +00007031 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00007032 mss |= (hdr_len & 0xc) << 12;
7033 if (hdr_len & 0x10)
7034 base_flags |= 0x00000010;
7035 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00007036 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007037 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00007038 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007039 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007040 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007041 int tsflags;
7042
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007043 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044 mss |= (tsflags << 11);
7045 }
7046 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007047 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048 int tsflags;
7049
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007050 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051 base_flags |= tsflags << 12;
7052 }
7053 }
7054 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00007055
Matt Carlson93a700a2011-08-31 11:44:54 +00007056 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
7057 !mss && skb->len > VLAN_ETH_FRAME_LEN)
7058 base_flags |= TXD_FLAG_JMB_PKT;
7059
Matt Carlson92cd3a12011-07-27 14:20:47 +00007060 if (vlan_tx_tag_present(skb)) {
7061 base_flags |= TXD_FLAG_VLAN;
7062 vlan = vlan_tx_tag_get(skb);
7063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064
Alexander Duyckf4188d82009-12-02 16:48:38 +00007065 len = skb_headlen(skb);
7066
7067 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00007068 if (pci_dma_mapping_error(tp->pdev, mapping))
7069 goto drop;
7070
David S. Miller90079ce2008-09-11 04:52:51 -07007071
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007072 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007073 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007074
7075 would_hit_hwbug = 0;
7076
Joe Perches63c3a662011-04-26 08:12:10 +00007077 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07007078 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079
Matt Carlson84b67b22011-07-27 14:20:52 +00007080 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00007081 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00007082 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00007083 would_hit_hwbug = 1;
Matt Carlsonba1142e2011-11-04 09:15:00 +00007084 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00007085 u32 tmp_mss = mss;
7086
7087 if (!tg3_flag(tp, HW_TSO_1) &&
7088 !tg3_flag(tp, HW_TSO_2) &&
7089 !tg3_flag(tp, HW_TSO_3))
7090 tmp_mss = 0;
7091
Matt Carlsonc5665a52012-02-13 10:20:12 +00007092 /* Now loop through additional data
7093 * fragments, and queue them.
7094 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007095 last = skb_shinfo(skb)->nr_frags - 1;
7096 for (i = 0; i <= last; i++) {
7097 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
7098
Eric Dumazet9e903e02011-10-18 21:00:24 +00007099 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00007100 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007101 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007103 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007104 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00007105 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007106 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00007107 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007108
Matt Carlsonb9e45482011-11-04 09:14:59 +00007109 if (!budget ||
7110 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00007111 len, base_flags |
7112 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00007113 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007114 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007115 break;
7116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007117 }
7118 }
7119
7120 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00007121 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122
7123 /* If the workaround fails due to memory/mapping
7124 * failure, silently drop this packet.
7125 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007126 entry = tnapi->tx_prod;
7127 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04007128 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00007129 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00007130 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007131 }
7132
Richard Cochrand515b452011-06-19 03:31:41 +00007133 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00007134 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00007135
Michael Chan6541b802012-03-04 14:48:14 +00007136 /* Sync BD data before updating mailbox */
7137 wmb();
7138
Linus Torvalds1da177e2005-04-16 15:20:36 -07007139 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007140 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007142 tnapi->tx_prod = entry;
7143 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007144 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007145
7146 /* netif_tx_stop_queue() must be done before checking
7147 * checking tx index in tg3_tx_avail() below, because in
7148 * tg3_tx(), we update tx index before checking for
7149 * netif_tx_queue_stopped().
7150 */
7151 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007152 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007153 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07007154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155
Eric Dumazetcdd0db02009-05-28 00:00:41 +00007156 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007158
7159dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00007160 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00007161 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00007162drop:
7163 dev_kfree_skb(skb);
7164drop_nofree:
7165 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007166 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167}
7168
Matt Carlson6e01b202011-08-19 13:58:20 +00007169static void tg3_mac_loopback(struct tg3 *tp, bool enable)
7170{
7171 if (enable) {
7172 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
7173 MAC_MODE_PORT_MODE_MASK);
7174
7175 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
7176
7177 if (!tg3_flag(tp, 5705_PLUS))
7178 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
7179
7180 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
7181 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
7182 else
7183 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7184 } else {
7185 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
7186
7187 if (tg3_flag(tp, 5705_PLUS) ||
7188 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
7189 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
7190 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
7191 }
7192
7193 tw32(MAC_MODE, tp->mac_mode);
7194 udelay(40);
7195}
7196
Matt Carlson941ec902011-08-19 13:58:23 +00007197static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007198{
Matt Carlson941ec902011-08-19 13:58:23 +00007199 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007200
7201 tg3_phy_toggle_apd(tp, false);
7202 tg3_phy_toggle_automdix(tp, 0);
7203
Matt Carlson941ec902011-08-19 13:58:23 +00007204 if (extlpbk && tg3_phy_set_extloopbk(tp))
7205 return -EIO;
7206
7207 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007208 switch (speed) {
7209 case SPEED_10:
7210 break;
7211 case SPEED_100:
7212 bmcr |= BMCR_SPEED100;
7213 break;
7214 case SPEED_1000:
7215 default:
7216 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
7217 speed = SPEED_100;
7218 bmcr |= BMCR_SPEED100;
7219 } else {
7220 speed = SPEED_1000;
7221 bmcr |= BMCR_SPEED1000;
7222 }
7223 }
7224
Matt Carlson941ec902011-08-19 13:58:23 +00007225 if (extlpbk) {
7226 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
7227 tg3_readphy(tp, MII_CTRL1000, &val);
7228 val |= CTL1000_AS_MASTER |
7229 CTL1000_ENABLE_MASTER;
7230 tg3_writephy(tp, MII_CTRL1000, val);
7231 } else {
7232 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
7233 MII_TG3_FET_PTEST_TRIM_2;
7234 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
7235 }
7236 } else
7237 bmcr |= BMCR_LOOPBACK;
7238
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007239 tg3_writephy(tp, MII_BMCR, bmcr);
7240
7241 /* The write needs to be flushed for the FETs */
7242 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
7243 tg3_readphy(tp, MII_BMCR, &bmcr);
7244
7245 udelay(40);
7246
7247 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
7248 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00007249 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007250 MII_TG3_FET_PTEST_FRC_TX_LINK |
7251 MII_TG3_FET_PTEST_FRC_TX_LOCK);
7252
7253 /* The write needs to be flushed for the AC131 */
7254 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
7255 }
7256
7257 /* Reset to prevent losing 1st rx packet intermittently */
7258 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
7259 tg3_flag(tp, 5780_CLASS)) {
7260 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7261 udelay(10);
7262 tw32_f(MAC_RX_MODE, tp->rx_mode);
7263 }
7264
7265 mac_mode = tp->mac_mode &
7266 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
7267 if (speed == SPEED_1000)
7268 mac_mode |= MAC_MODE_PORT_MODE_GMII;
7269 else
7270 mac_mode |= MAC_MODE_PORT_MODE_MII;
7271
7272 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
7273 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
7274
7275 if (masked_phy_id == TG3_PHY_ID_BCM5401)
7276 mac_mode &= ~MAC_MODE_LINK_POLARITY;
7277 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
7278 mac_mode |= MAC_MODE_LINK_POLARITY;
7279
7280 tg3_writephy(tp, MII_TG3_EXT_CTRL,
7281 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
7282 }
7283
7284 tw32(MAC_MODE, mac_mode);
7285 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00007286
7287 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007288}
7289
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007290static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007291{
7292 struct tg3 *tp = netdev_priv(dev);
7293
7294 if (features & NETIF_F_LOOPBACK) {
7295 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
7296 return;
7297
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007298 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00007299 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007300 netif_carrier_on(tp->dev);
7301 spin_unlock_bh(&tp->lock);
7302 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
7303 } else {
7304 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
7305 return;
7306
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007307 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00007308 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007309 /* Force link status check */
7310 tg3_setup_phy(tp, 1);
7311 spin_unlock_bh(&tp->lock);
7312 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
7313 }
7314}
7315
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007316static netdev_features_t tg3_fix_features(struct net_device *dev,
7317 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00007318{
7319 struct tg3 *tp = netdev_priv(dev);
7320
Joe Perches63c3a662011-04-26 08:12:10 +00007321 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00007322 features &= ~NETIF_F_ALL_TSO;
7323
7324 return features;
7325}
7326
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007327static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007328{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007329 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007330
7331 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
7332 tg3_set_loopback(dev, features);
7333
7334 return 0;
7335}
7336
Matt Carlson21f581a2009-08-28 14:00:25 +00007337static void tg3_rx_prodring_free(struct tg3 *tp,
7338 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340 int i;
7341
Matt Carlson8fea32b2010-09-15 08:59:58 +00007342 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007343 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007344 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007345 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007346 tp->rx_pkt_map_sz);
7347
Joe Perches63c3a662011-04-26 08:12:10 +00007348 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007349 for (i = tpr->rx_jmb_cons_idx;
7350 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007351 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007352 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007353 TG3_RX_JMB_MAP_SZ);
7354 }
7355 }
7356
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007357 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359
Matt Carlson2c49a442010-09-30 10:34:35 +00007360 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007361 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007362 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363
Joe Perches63c3a662011-04-26 08:12:10 +00007364 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007365 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007366 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007367 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007368 }
7369}
7370
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007371/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372 *
7373 * The chip has been shut down and the driver detached from
7374 * the networking, so no interrupts or new tx packets will
7375 * end up in the driver. tp->{tx,}lock are held and thus
7376 * we may not sleep.
7377 */
Matt Carlson21f581a2009-08-28 14:00:25 +00007378static int tg3_rx_prodring_alloc(struct tg3 *tp,
7379 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380{
Matt Carlson287be122009-08-28 13:58:46 +00007381 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007382
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007383 tpr->rx_std_cons_idx = 0;
7384 tpr->rx_std_prod_idx = 0;
7385 tpr->rx_jmb_cons_idx = 0;
7386 tpr->rx_jmb_prod_idx = 0;
7387
Matt Carlson8fea32b2010-09-15 08:59:58 +00007388 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007389 memset(&tpr->rx_std_buffers[0], 0,
7390 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00007391 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007392 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00007393 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007394 goto done;
7395 }
7396
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00007398 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399
Matt Carlson287be122009-08-28 13:58:46 +00007400 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00007401 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00007402 tp->dev->mtu > ETH_DATA_LEN)
7403 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
7404 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07007405
Linus Torvalds1da177e2005-04-16 15:20:36 -07007406 /* Initialize invariants of the rings, we only set this
7407 * stuff once. This works because the card does not
7408 * write into the rx buffer posting rings.
7409 */
Matt Carlson2c49a442010-09-30 10:34:35 +00007410 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411 struct tg3_rx_buffer_desc *rxd;
7412
Matt Carlson21f581a2009-08-28 14:00:25 +00007413 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00007414 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007415 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
7416 rxd->opaque = (RXD_OPAQUE_RING_STD |
7417 (i << RXD_OPAQUE_INDEX_SHIFT));
7418 }
7419
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007420 /* Now allocate fresh SKBs for each rx ring. */
7421 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00007422 unsigned int frag_size;
7423
7424 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i,
7425 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007426 netdev_warn(tp->dev,
7427 "Using a smaller RX standard ring. Only "
7428 "%d out of %d buffers were allocated "
7429 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007430 if (i == 0)
7431 goto initfail;
7432 tp->rx_pending = i;
7433 break;
7434 }
7435 }
7436
Joe Perches63c3a662011-04-26 08:12:10 +00007437 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007438 goto done;
7439
Matt Carlson2c49a442010-09-30 10:34:35 +00007440 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007441
Joe Perches63c3a662011-04-26 08:12:10 +00007442 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00007443 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007444
Matt Carlson2c49a442010-09-30 10:34:35 +00007445 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00007446 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447
Matt Carlson0d86df82010-02-17 15:17:00 +00007448 rxd = &tpr->rx_jmb[i].std;
7449 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
7450 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
7451 RXD_FLAG_JUMBO;
7452 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
7453 (i << RXD_OPAQUE_INDEX_SHIFT));
7454 }
7455
7456 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00007457 unsigned int frag_size;
7458
7459 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i,
7460 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007461 netdev_warn(tp->dev,
7462 "Using a smaller RX jumbo ring. Only %d "
7463 "out of %d buffers were allocated "
7464 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00007465 if (i == 0)
7466 goto initfail;
7467 tp->rx_jumbo_pending = i;
7468 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007469 }
7470 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007471
7472done:
Michael Chan32d8c572006-07-25 16:38:29 -07007473 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007474
7475initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00007476 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007477 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478}
7479
Matt Carlson21f581a2009-08-28 14:00:25 +00007480static void tg3_rx_prodring_fini(struct tg3 *tp,
7481 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482{
Matt Carlson21f581a2009-08-28 14:00:25 +00007483 kfree(tpr->rx_std_buffers);
7484 tpr->rx_std_buffers = NULL;
7485 kfree(tpr->rx_jmb_buffers);
7486 tpr->rx_jmb_buffers = NULL;
7487 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007488 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
7489 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007490 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007491 }
Matt Carlson21f581a2009-08-28 14:00:25 +00007492 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007493 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
7494 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007495 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007497}
7498
Matt Carlson21f581a2009-08-28 14:00:25 +00007499static int tg3_rx_prodring_init(struct tg3 *tp,
7500 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007501{
Matt Carlson2c49a442010-09-30 10:34:35 +00007502 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
7503 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007504 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007505 return -ENOMEM;
7506
Matt Carlson4bae65c2010-11-24 08:31:52 +00007507 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
7508 TG3_RX_STD_RING_BYTES(tp),
7509 &tpr->rx_std_mapping,
7510 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007511 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007512 goto err_out;
7513
Joe Perches63c3a662011-04-26 08:12:10 +00007514 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007515 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00007516 GFP_KERNEL);
7517 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007518 goto err_out;
7519
Matt Carlson4bae65c2010-11-24 08:31:52 +00007520 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
7521 TG3_RX_JMB_RING_BYTES(tp),
7522 &tpr->rx_jmb_mapping,
7523 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007524 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007525 goto err_out;
7526 }
7527
7528 return 0;
7529
7530err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00007531 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007532 return -ENOMEM;
7533}
7534
7535/* Free up pending packets in all rx/tx rings.
7536 *
7537 * The chip has been shut down and the driver detached from
7538 * the networking, so no interrupts or new tx packets will
7539 * end up in the driver. tp->{tx,}lock is not held and we are not
7540 * in an interrupt context and thus may sleep.
7541 */
7542static void tg3_free_rings(struct tg3 *tp)
7543{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007544 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007545
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007546 for (j = 0; j < tp->irq_cnt; j++) {
7547 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007548
Matt Carlson8fea32b2010-09-15 08:59:58 +00007549 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00007550
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007551 if (!tnapi->tx_buffers)
7552 continue;
7553
Matt Carlson0d681b22011-07-27 14:20:49 +00007554 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
7555 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007556
Matt Carlson0d681b22011-07-27 14:20:49 +00007557 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007558 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007559
Matt Carlsonba1142e2011-11-04 09:15:00 +00007560 tg3_tx_skb_unmap(tnapi, i,
7561 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007562
7563 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007564 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00007565 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007566 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007567}
7568
7569/* Initialize tx/rx rings for packet processing.
7570 *
7571 * The chip has been shut down and the driver detached from
7572 * the networking, so no interrupts or new tx packets will
7573 * end up in the driver. tp->{tx,}lock are held and thus
7574 * we may not sleep.
7575 */
7576static int tg3_init_rings(struct tg3 *tp)
7577{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007578 int i;
Matt Carlson72334482009-08-28 14:03:01 +00007579
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007580 /* Free up all the SKBs. */
7581 tg3_free_rings(tp);
7582
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007583 for (i = 0; i < tp->irq_cnt; i++) {
7584 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007585
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007586 tnapi->last_tag = 0;
7587 tnapi->last_irq_tag = 0;
7588 tnapi->hw_status->status = 0;
7589 tnapi->hw_status->status_tag = 0;
7590 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7591
7592 tnapi->tx_prod = 0;
7593 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007594 if (tnapi->tx_ring)
7595 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007596
7597 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007598 if (tnapi->rx_rcb)
7599 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007600
Matt Carlson8fea32b2010-09-15 08:59:58 +00007601 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00007602 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007603 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00007604 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007605 }
Matt Carlson72334482009-08-28 14:03:01 +00007606
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007607 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007608}
7609
Michael Chan49a359e2012-09-28 07:12:37 +00007610static void tg3_mem_tx_release(struct tg3 *tp)
7611{
7612 int i;
7613
7614 for (i = 0; i < tp->irq_max; i++) {
7615 struct tg3_napi *tnapi = &tp->napi[i];
7616
7617 if (tnapi->tx_ring) {
7618 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
7619 tnapi->tx_ring, tnapi->tx_desc_mapping);
7620 tnapi->tx_ring = NULL;
7621 }
7622
7623 kfree(tnapi->tx_buffers);
7624 tnapi->tx_buffers = NULL;
7625 }
7626}
7627
7628static int tg3_mem_tx_acquire(struct tg3 *tp)
7629{
7630 int i;
7631 struct tg3_napi *tnapi = &tp->napi[0];
7632
7633 /* If multivector TSS is enabled, vector 0 does not handle
7634 * tx interrupts. Don't allocate any resources for it.
7635 */
7636 if (tg3_flag(tp, ENABLE_TSS))
7637 tnapi++;
7638
7639 for (i = 0; i < tp->txq_cnt; i++, tnapi++) {
7640 tnapi->tx_buffers = kzalloc(sizeof(struct tg3_tx_ring_info) *
7641 TG3_TX_RING_SIZE, GFP_KERNEL);
7642 if (!tnapi->tx_buffers)
7643 goto err_out;
7644
7645 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
7646 TG3_TX_RING_BYTES,
7647 &tnapi->tx_desc_mapping,
7648 GFP_KERNEL);
7649 if (!tnapi->tx_ring)
7650 goto err_out;
7651 }
7652
7653 return 0;
7654
7655err_out:
7656 tg3_mem_tx_release(tp);
7657 return -ENOMEM;
7658}
7659
7660static void tg3_mem_rx_release(struct tg3 *tp)
7661{
7662 int i;
7663
7664 for (i = 0; i < tp->irq_max; i++) {
7665 struct tg3_napi *tnapi = &tp->napi[i];
7666
7667 tg3_rx_prodring_fini(tp, &tnapi->prodring);
7668
7669 if (!tnapi->rx_rcb)
7670 continue;
7671
7672 dma_free_coherent(&tp->pdev->dev,
7673 TG3_RX_RCB_RING_BYTES(tp),
7674 tnapi->rx_rcb,
7675 tnapi->rx_rcb_mapping);
7676 tnapi->rx_rcb = NULL;
7677 }
7678}
7679
7680static int tg3_mem_rx_acquire(struct tg3 *tp)
7681{
7682 unsigned int i, limit;
7683
7684 limit = tp->rxq_cnt;
7685
7686 /* If RSS is enabled, we need a (dummy) producer ring
7687 * set on vector zero. This is the true hw prodring.
7688 */
7689 if (tg3_flag(tp, ENABLE_RSS))
7690 limit++;
7691
7692 for (i = 0; i < limit; i++) {
7693 struct tg3_napi *tnapi = &tp->napi[i];
7694
7695 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
7696 goto err_out;
7697
7698 /* If multivector RSS is enabled, vector 0
7699 * does not handle rx or tx interrupts.
7700 * Don't allocate any resources for it.
7701 */
7702 if (!i && tg3_flag(tp, ENABLE_RSS))
7703 continue;
7704
7705 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
7706 TG3_RX_RCB_RING_BYTES(tp),
7707 &tnapi->rx_rcb_mapping,
7708 GFP_KERNEL);
7709 if (!tnapi->rx_rcb)
7710 goto err_out;
7711
7712 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
7713 }
7714
7715 return 0;
7716
7717err_out:
7718 tg3_mem_rx_release(tp);
7719 return -ENOMEM;
7720}
7721
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007722/*
7723 * Must not be invoked with interrupt sources disabled and
7724 * the hardware shutdown down.
7725 */
7726static void tg3_free_consistent(struct tg3 *tp)
7727{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007728 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007729
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007730 for (i = 0; i < tp->irq_cnt; i++) {
7731 struct tg3_napi *tnapi = &tp->napi[i];
7732
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007733 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007734 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
7735 tnapi->hw_status,
7736 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007737 tnapi->hw_status = NULL;
7738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007740
Michael Chan49a359e2012-09-28 07:12:37 +00007741 tg3_mem_rx_release(tp);
7742 tg3_mem_tx_release(tp);
7743
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007745 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
7746 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007747 tp->hw_stats = NULL;
7748 }
7749}
7750
7751/*
7752 * Must not be invoked with interrupt sources disabled and
7753 * the hardware shutdown down. Can sleep.
7754 */
7755static int tg3_alloc_consistent(struct tg3 *tp)
7756{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007757 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007758
Matt Carlson4bae65c2010-11-24 08:31:52 +00007759 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
7760 sizeof(struct tg3_hw_stats),
7761 &tp->stats_mapping,
7762 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007763 if (!tp->hw_stats)
7764 goto err_out;
7765
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
7767
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007768 for (i = 0; i < tp->irq_cnt; i++) {
7769 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007770 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007771
Matt Carlson4bae65c2010-11-24 08:31:52 +00007772 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
7773 TG3_HW_STATUS_SIZE,
7774 &tnapi->status_mapping,
7775 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007776 if (!tnapi->hw_status)
7777 goto err_out;
7778
7779 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007780 sblk = tnapi->hw_status;
7781
Michael Chan49a359e2012-09-28 07:12:37 +00007782 if (tg3_flag(tp, ENABLE_RSS)) {
7783 u16 *prodptr = 0;
Matt Carlson8fea32b2010-09-15 08:59:58 +00007784
Michael Chan49a359e2012-09-28 07:12:37 +00007785 /*
7786 * When RSS is enabled, the status block format changes
7787 * slightly. The "rx_jumbo_consumer", "reserved",
7788 * and "rx_mini_consumer" members get mapped to the
7789 * other three rx return ring producer indexes.
7790 */
7791 switch (i) {
7792 case 1:
7793 prodptr = &sblk->idx[0].rx_producer;
7794 break;
7795 case 2:
7796 prodptr = &sblk->rx_jumbo_consumer;
7797 break;
7798 case 3:
7799 prodptr = &sblk->reserved;
7800 break;
7801 case 4:
7802 prodptr = &sblk->rx_mini_consumer;
Matt Carlsonf891ea12012-04-24 13:37:01 +00007803 break;
7804 }
Michael Chan49a359e2012-09-28 07:12:37 +00007805 tnapi->rx_rcb_prod_idx = prodptr;
7806 } else {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007807 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007808 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007809 }
7810
Michael Chan49a359e2012-09-28 07:12:37 +00007811 if (tg3_mem_tx_acquire(tp) || tg3_mem_rx_acquire(tp))
7812 goto err_out;
7813
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814 return 0;
7815
7816err_out:
7817 tg3_free_consistent(tp);
7818 return -ENOMEM;
7819}
7820
7821#define MAX_WAIT_CNT 1000
7822
7823/* To stop a block, clear the enable bit and poll till it
7824 * clears. tp->lock is held.
7825 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007826static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827{
7828 unsigned int i;
7829 u32 val;
7830
Joe Perches63c3a662011-04-26 08:12:10 +00007831 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007832 switch (ofs) {
7833 case RCVLSC_MODE:
7834 case DMAC_MODE:
7835 case MBFREE_MODE:
7836 case BUFMGR_MODE:
7837 case MEMARB_MODE:
7838 /* We can't enable/disable these bits of the
7839 * 5705/5750, just say success.
7840 */
7841 return 0;
7842
7843 default:
7844 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846 }
7847
7848 val = tr32(ofs);
7849 val &= ~enable_bit;
7850 tw32_f(ofs, val);
7851
7852 for (i = 0; i < MAX_WAIT_CNT; i++) {
7853 udelay(100);
7854 val = tr32(ofs);
7855 if ((val & enable_bit) == 0)
7856 break;
7857 }
7858
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007859 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00007860 dev_err(&tp->pdev->dev,
7861 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
7862 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863 return -ENODEV;
7864 }
7865
7866 return 0;
7867}
7868
7869/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007870static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871{
7872 int i, err;
7873
7874 tg3_disable_ints(tp);
7875
7876 tp->rx_mode &= ~RX_MODE_ENABLE;
7877 tw32_f(MAC_RX_MODE, tp->rx_mode);
7878 udelay(10);
7879
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007880 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
7881 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
7882 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
7883 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
7884 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
7885 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007887 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
7888 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
7889 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
7890 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
7891 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
7892 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
7893 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007894
7895 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
7896 tw32_f(MAC_MODE, tp->mac_mode);
7897 udelay(40);
7898
7899 tp->tx_mode &= ~TX_MODE_ENABLE;
7900 tw32_f(MAC_TX_MODE, tp->tx_mode);
7901
7902 for (i = 0; i < MAX_WAIT_CNT; i++) {
7903 udelay(100);
7904 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
7905 break;
7906 }
7907 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00007908 dev_err(&tp->pdev->dev,
7909 "%s timed out, TX_MODE_ENABLE will not clear "
7910 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07007911 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007912 }
7913
Michael Chane6de8ad2005-05-05 14:42:41 -07007914 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007915 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
7916 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007917
7918 tw32(FTQ_RESET, 0xffffffff);
7919 tw32(FTQ_RESET, 0x00000000);
7920
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007921 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
7922 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007924 for (i = 0; i < tp->irq_cnt; i++) {
7925 struct tg3_napi *tnapi = &tp->napi[i];
7926 if (tnapi->hw_status)
7927 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007929
Linus Torvalds1da177e2005-04-16 15:20:36 -07007930 return err;
7931}
7932
Michael Chanee6a99b2007-07-18 21:49:10 -07007933/* Save PCI command register before chip reset */
7934static void tg3_save_pci_state(struct tg3 *tp)
7935{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007936 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007937}
7938
7939/* Restore PCI state after chip reset */
7940static void tg3_restore_pci_state(struct tg3 *tp)
7941{
7942 u32 val;
7943
7944 /* Re-enable indirect register accesses. */
7945 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7946 tp->misc_host_ctrl);
7947
7948 /* Set MAX PCI retry to zero. */
7949 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7950 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007951 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007952 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007953 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007954 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007955 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00007956 PCISTATE_ALLOW_APE_SHMEM_WR |
7957 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007958 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7959
Matt Carlson8a6eac92007-10-21 16:17:55 -07007960 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007961
Matt Carlson2c55a3d2011-11-28 09:41:04 +00007962 if (!tg3_flag(tp, PCI_EXPRESS)) {
7963 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7964 tp->pci_cacheline_sz);
7965 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7966 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07007967 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007968
Michael Chanee6a99b2007-07-18 21:49:10 -07007969 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007970 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007971 u16 pcix_cmd;
7972
7973 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7974 &pcix_cmd);
7975 pcix_cmd &= ~PCI_X_CMD_ERO;
7976 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7977 pcix_cmd);
7978 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007979
Joe Perches63c3a662011-04-26 08:12:10 +00007980 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007981
7982 /* Chip reset on 5780 will reset MSI enable bit,
7983 * so need to restore it.
7984 */
Joe Perches63c3a662011-04-26 08:12:10 +00007985 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007986 u16 ctrl;
7987
7988 pci_read_config_word(tp->pdev,
7989 tp->msi_cap + PCI_MSI_FLAGS,
7990 &ctrl);
7991 pci_write_config_word(tp->pdev,
7992 tp->msi_cap + PCI_MSI_FLAGS,
7993 ctrl | PCI_MSI_FLAGS_ENABLE);
7994 val = tr32(MSGINT_MODE);
7995 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7996 }
7997 }
7998}
7999
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000/* tp->lock is held. */
8001static int tg3_chip_reset(struct tg3 *tp)
8002{
8003 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07008004 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00008005 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008006
David S. Millerf49639e2006-06-09 11:58:36 -07008007 tg3_nvram_lock(tp);
8008
Matt Carlson77b483f2008-08-15 14:07:24 -07008009 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
8010
David S. Millerf49639e2006-06-09 11:58:36 -07008011 /* No matching tg3_nvram_unlock() after this because
8012 * chip reset below will undo the nvram lock.
8013 */
8014 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008015
Michael Chanee6a99b2007-07-18 21:49:10 -07008016 /* GRC_MISC_CFG core clock reset will clear the memory
8017 * enable bit in PCI register 4 and the MSI enable bit
8018 * on some chips, so we save relevant registers here.
8019 */
8020 tg3_save_pci_state(tp);
8021
Michael Chand9ab5ad12006-03-20 22:27:35 -08008022 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008023 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08008024 tw32(GRC_FASTBOOT_PC, 0);
8025
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026 /*
8027 * We must avoid the readl() that normally takes place.
8028 * It locks machines, causes machine checks, and other
8029 * fun things. So, temporarily disable the 5701
8030 * hardware workaround, while we do the reset.
8031 */
Michael Chan1ee582d2005-08-09 20:16:46 -07008032 write_op = tp->write32;
8033 if (write_op == tg3_write_flush_reg32)
8034 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008035
Michael Chand18edcb2007-03-24 20:57:11 -07008036 /* Prevent the irq handler from reading or writing PCI registers
8037 * during chip reset when the memory enable bit in the PCI command
8038 * register may be cleared. The chip does not generate interrupt
8039 * at this time, but the irq handler may still be called due to irq
8040 * sharing or irqpoll.
8041 */
Joe Perches63c3a662011-04-26 08:12:10 +00008042 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008043 for (i = 0; i < tp->irq_cnt; i++) {
8044 struct tg3_napi *tnapi = &tp->napi[i];
8045 if (tnapi->hw_status) {
8046 tnapi->hw_status->status = 0;
8047 tnapi->hw_status->status_tag = 0;
8048 }
8049 tnapi->last_tag = 0;
8050 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07008051 }
Michael Chand18edcb2007-03-24 20:57:11 -07008052 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00008053
8054 for (i = 0; i < tp->irq_cnt; i++)
8055 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07008056
Matt Carlson255ca312009-08-25 10:07:27 +00008057 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8058 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8059 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
8060 }
8061
Linus Torvalds1da177e2005-04-16 15:20:36 -07008062 /* do the reset */
8063 val = GRC_MISC_CFG_CORECLK_RESET;
8064
Joe Perches63c3a662011-04-26 08:12:10 +00008065 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00008066 /* Force PCIe 1.0a mode */
8067 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008068 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00008069 tr32(TG3_PCIE_PHY_TSTCTL) ==
8070 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
8071 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
8072
Linus Torvalds1da177e2005-04-16 15:20:36 -07008073 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
8074 tw32(GRC_MISC_CFG, (1 << 29));
8075 val |= (1 << 29);
8076 }
8077 }
8078
Michael Chanb5d37722006-09-27 16:06:21 -07008079 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
8080 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
8081 tw32(GRC_VCPU_EXT_CTRL,
8082 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
8083 }
8084
Matt Carlsonf37500d2010-08-02 11:25:59 +00008085 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00008086 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00008088
Linus Torvalds1da177e2005-04-16 15:20:36 -07008089 tw32(GRC_MISC_CFG, val);
8090
Michael Chan1ee582d2005-08-09 20:16:46 -07008091 /* restore 5701 hardware bug workaround write method */
8092 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093
8094 /* Unfortunately, we have to delay before the PCI read back.
8095 * Some 575X chips even will not respond to a PCI cfg access
8096 * when the reset command is given to the chip.
8097 *
8098 * How do these hardware designers expect things to work
8099 * properly if the PCI write is posted for a long period
8100 * of time? It is always necessary to have some method by
8101 * which a register read back can occur to push the write
8102 * out which does the reset.
8103 *
8104 * For most tg3 variants the trick below was working.
8105 * Ho hum...
8106 */
8107 udelay(120);
8108
8109 /* Flush PCI posted writes. The normal MMIO registers
8110 * are inaccessible at this time so this is the only
8111 * way to make this reliably (actually, this is no longer
8112 * the case, see above). I tried to use indirect
8113 * register read/write but this upset some 5701 variants.
8114 */
8115 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
8116
8117 udelay(120);
8118
Jon Mason708ebb3a2011-06-27 12:56:50 +00008119 if (tg3_flag(tp, PCI_EXPRESS) && pci_pcie_cap(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00008120 u16 val16;
8121
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
8123 int i;
8124 u32 cfg_val;
8125
8126 /* Wait for link training to complete. */
8127 for (i = 0; i < 5000; i++)
8128 udelay(100);
8129
8130 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
8131 pci_write_config_dword(tp->pdev, 0xc4,
8132 cfg_val | (1 << 15));
8133 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008134
Matt Carlsone7126992009-08-25 10:08:16 +00008135 /* Clear the "no snoop" and "relaxed ordering" bits. */
8136 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00008137 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00008138 &val16);
8139 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
8140 PCI_EXP_DEVCTL_NOSNOOP_EN);
8141 /*
8142 * Older PCIe devices only support the 128 byte
8143 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008144 */
Joe Perches63c3a662011-04-26 08:12:10 +00008145 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00008146 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008147 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00008148 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00008149 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008150
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008151 /* Clear error status */
8152 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00008153 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008154 PCI_EXP_DEVSTA_CED |
8155 PCI_EXP_DEVSTA_NFED |
8156 PCI_EXP_DEVSTA_FED |
8157 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008158 }
8159
Michael Chanee6a99b2007-07-18 21:49:10 -07008160 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008161
Joe Perches63c3a662011-04-26 08:12:10 +00008162 tg3_flag_clear(tp, CHIP_RESETTING);
8163 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07008164
Michael Chanee6a99b2007-07-18 21:49:10 -07008165 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008166 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07008167 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07008168 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008169
8170 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
8171 tg3_stop_fw(tp);
8172 tw32(0x5000, 0x400);
8173 }
8174
8175 tw32(GRC_MODE, tp->grc_mode);
8176
8177 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008178 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008179
8180 tw32(0xc4, val | (1 << 15));
8181 }
8182
8183 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
8184 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
8185 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
8186 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
8187 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
8188 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8189 }
8190
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008191 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008192 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008193 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008194 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008195 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008196 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008197 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008198 val = 0;
8199
8200 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008201 udelay(40);
8202
Matt Carlson77b483f2008-08-15 14:07:24 -07008203 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
8204
Michael Chan7a6f4362006-09-27 16:03:31 -07008205 err = tg3_poll_fw(tp);
8206 if (err)
8207 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008208
Matt Carlson0a9140c2009-08-28 12:27:50 +00008209 tg3_mdio_start(tp);
8210
Joe Perches63c3a662011-04-26 08:12:10 +00008211 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008212 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
8213 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008214 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008215 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216
8217 tw32(0x7c00, val | (1 << 25));
8218 }
8219
Matt Carlsond78b59f2011-04-05 14:22:46 +00008220 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8221 val = tr32(TG3_CPMU_CLCK_ORIDE);
8222 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
8223 }
8224
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00008226 tg3_flag_clear(tp, ENABLE_ASF);
8227 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
8229 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
8230 u32 nic_cfg;
8231
8232 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
8233 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00008234 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008235 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00008236 if (tg3_flag(tp, 5750_PLUS))
8237 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238 }
8239 }
8240
8241 return 0;
8242}
8243
Matt Carlson65ec6982012-02-28 23:33:37 +00008244static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
8245static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Matt Carlson92feeab2011-12-08 14:40:14 +00008246
Linus Torvalds1da177e2005-04-16 15:20:36 -07008247/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07008248static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249{
8250 int err;
8251
8252 tg3_stop_fw(tp);
8253
Michael Chan944d9802005-05-29 14:57:48 -07008254 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008255
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008256 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008257 err = tg3_chip_reset(tp);
8258
Matt Carlsondaba2a62009-04-20 06:58:52 +00008259 __tg3_set_mac_addr(tp, 0);
8260
Michael Chan944d9802005-05-29 14:57:48 -07008261 tg3_write_sig_legacy(tp, kind);
8262 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263
Matt Carlson92feeab2011-12-08 14:40:14 +00008264 if (tp->hw_stats) {
8265 /* Save the stats across chip resets... */
David S. Millerb4017c52012-03-01 17:57:40 -05008266 tg3_get_nstats(tp, &tp->net_stats_prev);
Matt Carlson92feeab2011-12-08 14:40:14 +00008267 tg3_get_estats(tp, &tp->estats_prev);
8268
8269 /* And make sure the next sample is new data */
8270 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
8271 }
8272
Linus Torvalds1da177e2005-04-16 15:20:36 -07008273 if (err)
8274 return err;
8275
8276 return 0;
8277}
8278
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279static int tg3_set_mac_addr(struct net_device *dev, void *p)
8280{
8281 struct tg3 *tp = netdev_priv(dev);
8282 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07008283 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008284
Michael Chanf9804dd2005-09-27 12:13:10 -07008285 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00008286 return -EADDRNOTAVAIL;
Michael Chanf9804dd2005-09-27 12:13:10 -07008287
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
8289
Michael Chane75f7c92006-03-20 21:33:26 -08008290 if (!netif_running(dev))
8291 return 0;
8292
Joe Perches63c3a662011-04-26 08:12:10 +00008293 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07008294 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07008295
Michael Chan986e0ae2007-05-05 12:10:20 -07008296 addr0_high = tr32(MAC_ADDR_0_HIGH);
8297 addr0_low = tr32(MAC_ADDR_0_LOW);
8298 addr1_high = tr32(MAC_ADDR_1_HIGH);
8299 addr1_low = tr32(MAC_ADDR_1_LOW);
8300
8301 /* Skip MAC addr 1 if ASF is using it. */
8302 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
8303 !(addr1_high == 0 && addr1_low == 0))
8304 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07008305 }
Michael Chan986e0ae2007-05-05 12:10:20 -07008306 spin_lock_bh(&tp->lock);
8307 __tg3_set_mac_addr(tp, skip_mac_1);
8308 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309
Michael Chanb9ec6c12006-07-25 16:37:27 -07008310 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311}
8312
8313/* tp->lock is held. */
8314static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
8315 dma_addr_t mapping, u32 maxlen_flags,
8316 u32 nic_addr)
8317{
8318 tg3_write_mem(tp,
8319 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
8320 ((u64) mapping >> 32));
8321 tg3_write_mem(tp,
8322 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
8323 ((u64) mapping & 0xffffffff));
8324 tg3_write_mem(tp,
8325 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
8326 maxlen_flags);
8327
Joe Perches63c3a662011-04-26 08:12:10 +00008328 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329 tg3_write_mem(tp,
8330 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
8331 nic_addr);
8332}
8333
Michael Chana489b6d2012-09-28 07:12:39 +00008334
8335static void tg3_coal_tx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07008336{
Michael Chana489b6d2012-09-28 07:12:39 +00008337 int i = 0;
Matt Carlsonb6080e12009-09-01 13:12:00 +00008338
Joe Perches63c3a662011-04-26 08:12:10 +00008339 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008340 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
8341 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
8342 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008343 } else {
8344 tw32(HOSTCC_TXCOL_TICKS, 0);
8345 tw32(HOSTCC_TXMAX_FRAMES, 0);
8346 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Michael Chana489b6d2012-09-28 07:12:39 +00008347
8348 for (; i < tp->txq_cnt; i++) {
8349 u32 reg;
8350
8351 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
8352 tw32(reg, ec->tx_coalesce_usecs);
8353 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
8354 tw32(reg, ec->tx_max_coalesced_frames);
8355 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
8356 tw32(reg, ec->tx_max_coalesced_frames_irq);
8357 }
Matt Carlson19cfaec2009-12-03 08:36:20 +00008358 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008359
Michael Chana489b6d2012-09-28 07:12:39 +00008360 for (; i < tp->irq_max - 1; i++) {
8361 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
8362 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
8363 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
8364 }
8365}
8366
8367static void tg3_coal_rx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
8368{
8369 int i = 0;
8370 u32 limit = tp->rxq_cnt;
8371
Joe Perches63c3a662011-04-26 08:12:10 +00008372 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008373 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
8374 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
8375 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
Michael Chana489b6d2012-09-28 07:12:39 +00008376 limit--;
Matt Carlson19cfaec2009-12-03 08:36:20 +00008377 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008378 tw32(HOSTCC_RXCOL_TICKS, 0);
8379 tw32(HOSTCC_RXMAX_FRAMES, 0);
8380 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07008381 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008382
Michael Chana489b6d2012-09-28 07:12:39 +00008383 for (; i < limit; i++) {
8384 u32 reg;
8385
8386 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
8387 tw32(reg, ec->rx_coalesce_usecs);
8388 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
8389 tw32(reg, ec->rx_max_coalesced_frames);
8390 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
8391 tw32(reg, ec->rx_max_coalesced_frames_irq);
8392 }
8393
8394 for (; i < tp->irq_max - 1; i++) {
8395 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
8396 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
8397 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
8398 }
8399}
8400
8401static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
8402{
8403 tg3_coal_tx_init(tp, ec);
8404 tg3_coal_rx_init(tp, ec);
8405
Joe Perches63c3a662011-04-26 08:12:10 +00008406 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07008407 u32 val = ec->stats_block_coalesce_usecs;
8408
Matt Carlsonb6080e12009-09-01 13:12:00 +00008409 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
8410 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
8411
David S. Miller15f98502005-05-18 22:49:26 -07008412 if (!netif_carrier_ok(tp->dev))
8413 val = 0;
8414
8415 tw32(HOSTCC_STAT_COAL_TICKS, val);
8416 }
8417}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008418
8419/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00008420static void tg3_rings_reset(struct tg3 *tp)
8421{
8422 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008423 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008424 struct tg3_napi *tnapi = &tp->napi[0];
8425
8426 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008427 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008428 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008429 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00008430 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlson55086ad2011-12-14 11:09:59 +00008431 else if (tg3_flag(tp, 57765_CLASS))
Matt Carlsonb703df62009-12-03 08:36:21 +00008432 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008433 else
8434 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8435
8436 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8437 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
8438 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
8439 BDINFO_FLAGS_DISABLED);
8440
8441
8442 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008443 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008444 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00008445 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008446 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00008447 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00008448 tg3_flag(tp, 57765_CLASS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008449 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
8450 else
8451 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8452
8453 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8454 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
8455 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
8456 BDINFO_FLAGS_DISABLED);
8457
8458 /* Disable interrupts */
8459 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008460 tp->napi[0].chk_msi_cnt = 0;
8461 tp->napi[0].last_rx_cons = 0;
8462 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008463
8464 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00008465 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00008466 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008467 tp->napi[i].tx_prod = 0;
8468 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008469 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008470 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008471 tw32_rx_mbox(tp->napi[i].consmbox, 0);
8472 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00008473 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008474 tp->napi[i].last_rx_cons = 0;
8475 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008476 }
Joe Perches63c3a662011-04-26 08:12:10 +00008477 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008478 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008479 } else {
8480 tp->napi[0].tx_prod = 0;
8481 tp->napi[0].tx_cons = 0;
8482 tw32_mailbox(tp->napi[0].prodmbox, 0);
8483 tw32_rx_mbox(tp->napi[0].consmbox, 0);
8484 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008485
8486 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00008487 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00008488 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
8489 for (i = 0; i < 16; i++)
8490 tw32_tx_mbox(mbox + i * 8, 0);
8491 }
8492
8493 txrcb = NIC_SRAM_SEND_RCB;
8494 rxrcb = NIC_SRAM_RCV_RET_RCB;
8495
8496 /* Clear status block in ram. */
8497 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8498
8499 /* Set status block DMA address */
8500 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8501 ((u64) tnapi->status_mapping >> 32));
8502 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8503 ((u64) tnapi->status_mapping & 0xffffffff));
8504
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008505 if (tnapi->tx_ring) {
8506 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8507 (TG3_TX_RING_SIZE <<
8508 BDINFO_FLAGS_MAXLEN_SHIFT),
8509 NIC_SRAM_TX_BUFFER_DESC);
8510 txrcb += TG3_BDINFO_SIZE;
8511 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008512
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008513 if (tnapi->rx_rcb) {
8514 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008515 (tp->rx_ret_ring_mask + 1) <<
8516 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008517 rxrcb += TG3_BDINFO_SIZE;
8518 }
8519
8520 stblk = HOSTCC_STATBLCK_RING1;
8521
8522 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
8523 u64 mapping = (u64)tnapi->status_mapping;
8524 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
8525 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
8526
8527 /* Clear status block in ram. */
8528 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8529
Matt Carlson19cfaec2009-12-03 08:36:20 +00008530 if (tnapi->tx_ring) {
8531 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8532 (TG3_TX_RING_SIZE <<
8533 BDINFO_FLAGS_MAXLEN_SHIFT),
8534 NIC_SRAM_TX_BUFFER_DESC);
8535 txrcb += TG3_BDINFO_SIZE;
8536 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008537
8538 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008539 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008540 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
8541
8542 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008543 rxrcb += TG3_BDINFO_SIZE;
8544 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008545}
8546
Matt Carlsoneb07a942011-04-20 07:57:36 +00008547static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
8548{
8549 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
8550
Joe Perches63c3a662011-04-26 08:12:10 +00008551 if (!tg3_flag(tp, 5750_PLUS) ||
8552 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00008553 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00008554 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
8555 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008556 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
8557 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
8558 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
8559 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
8560 else
8561 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
8562
8563 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
8564 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
8565
8566 val = min(nic_rep_thresh, host_rep_thresh);
8567 tw32(RCVBDI_STD_THRESH, val);
8568
Joe Perches63c3a662011-04-26 08:12:10 +00008569 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008570 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
8571
Joe Perches63c3a662011-04-26 08:12:10 +00008572 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008573 return;
8574
Matt Carlson513aa6e2011-11-21 15:01:18 +00008575 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00008576
8577 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
8578
8579 val = min(bdcache_maxcnt / 2, host_rep_thresh);
8580 tw32(RCVBDI_JUMBO_THRESH, val);
8581
Joe Perches63c3a662011-04-26 08:12:10 +00008582 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008583 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
8584}
8585
Matt Carlsonccd5ba92012-02-13 10:20:08 +00008586static inline u32 calc_crc(unsigned char *buf, int len)
8587{
8588 u32 reg;
8589 u32 tmp;
8590 int j, k;
8591
8592 reg = 0xffffffff;
8593
8594 for (j = 0; j < len; j++) {
8595 reg ^= buf[j];
8596
8597 for (k = 0; k < 8; k++) {
8598 tmp = reg & 0x01;
8599
8600 reg >>= 1;
8601
8602 if (tmp)
8603 reg ^= 0xedb88320;
8604 }
8605 }
8606
8607 return ~reg;
8608}
8609
8610static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
8611{
8612 /* accept or reject all multicast frames */
8613 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
8614 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
8615 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
8616 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
8617}
8618
8619static void __tg3_set_rx_mode(struct net_device *dev)
8620{
8621 struct tg3 *tp = netdev_priv(dev);
8622 u32 rx_mode;
8623
8624 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
8625 RX_MODE_KEEP_VLAN_TAG);
8626
8627#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
8628 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
8629 * flag clear.
8630 */
8631 if (!tg3_flag(tp, ENABLE_ASF))
8632 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
8633#endif
8634
8635 if (dev->flags & IFF_PROMISC) {
8636 /* Promiscuous mode. */
8637 rx_mode |= RX_MODE_PROMISC;
8638 } else if (dev->flags & IFF_ALLMULTI) {
8639 /* Accept all multicast. */
8640 tg3_set_multi(tp, 1);
8641 } else if (netdev_mc_empty(dev)) {
8642 /* Reject all multicast. */
8643 tg3_set_multi(tp, 0);
8644 } else {
8645 /* Accept one or more multicast(s). */
8646 struct netdev_hw_addr *ha;
8647 u32 mc_filter[4] = { 0, };
8648 u32 regidx;
8649 u32 bit;
8650 u32 crc;
8651
8652 netdev_for_each_mc_addr(ha, dev) {
8653 crc = calc_crc(ha->addr, ETH_ALEN);
8654 bit = ~crc & 0x7f;
8655 regidx = (bit & 0x60) >> 5;
8656 bit &= 0x1f;
8657 mc_filter[regidx] |= (1 << bit);
8658 }
8659
8660 tw32(MAC_HASH_REG_0, mc_filter[0]);
8661 tw32(MAC_HASH_REG_1, mc_filter[1]);
8662 tw32(MAC_HASH_REG_2, mc_filter[2]);
8663 tw32(MAC_HASH_REG_3, mc_filter[3]);
8664 }
8665
8666 if (rx_mode != tp->rx_mode) {
8667 tp->rx_mode = rx_mode;
8668 tw32_f(MAC_RX_MODE, rx_mode);
8669 udelay(10);
8670 }
8671}
8672
Michael Chan91024262012-09-28 07:12:38 +00008673static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp, u32 qcnt)
Matt Carlson90415472011-12-16 13:33:23 +00008674{
8675 int i;
8676
8677 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
Michael Chan91024262012-09-28 07:12:38 +00008678 tp->rss_ind_tbl[i] = ethtool_rxfh_indir_default(i, qcnt);
Matt Carlson90415472011-12-16 13:33:23 +00008679}
8680
8681static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008682{
8683 int i;
8684
8685 if (!tg3_flag(tp, SUPPORT_MSIX))
8686 return;
8687
Matt Carlson90415472011-12-16 13:33:23 +00008688 if (tp->irq_cnt <= 2) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008689 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00008690 return;
8691 }
8692
8693 /* Validate table against current IRQ count */
8694 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8695 if (tp->rss_ind_tbl[i] >= tp->irq_cnt - 1)
8696 break;
8697 }
8698
8699 if (i != TG3_RSS_INDIR_TBL_SIZE)
Michael Chan91024262012-09-28 07:12:38 +00008700 tg3_rss_init_dflt_indir_tbl(tp, tp->rxq_cnt);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008701}
8702
Matt Carlson90415472011-12-16 13:33:23 +00008703static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008704{
8705 int i = 0;
8706 u32 reg = MAC_RSS_INDIR_TBL_0;
8707
8708 while (i < TG3_RSS_INDIR_TBL_SIZE) {
8709 u32 val = tp->rss_ind_tbl[i];
8710 i++;
8711 for (; i % 8; i++) {
8712 val <<= 4;
8713 val |= tp->rss_ind_tbl[i];
8714 }
8715 tw32(reg, val);
8716 reg += 4;
8717 }
8718}
8719
Matt Carlson2d31eca2009-09-01 12:53:31 +00008720/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008721static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008722{
8723 u32 val, rdmac_mode;
8724 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008725 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008726
8727 tg3_disable_ints(tp);
8728
8729 tg3_stop_fw(tp);
8730
8731 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
8732
Joe Perches63c3a662011-04-26 08:12:10 +00008733 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07008734 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008735
Matt Carlson699c0192010-12-06 08:28:51 +00008736 /* Enable MAC control of LPI */
8737 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
8738 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
8739 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
8740 TG3_CPMU_EEE_LNKIDL_UART_IDL);
8741
8742 tw32_f(TG3_CPMU_EEE_CTRL,
8743 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
8744
Matt Carlsona386b902010-12-06 08:28:53 +00008745 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
8746 TG3_CPMU_EEEMD_LPI_IN_TX |
8747 TG3_CPMU_EEEMD_LPI_IN_RX |
8748 TG3_CPMU_EEEMD_EEE_ENABLE;
8749
8750 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8751 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
8752
Joe Perches63c3a662011-04-26 08:12:10 +00008753 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00008754 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
8755
8756 tw32_f(TG3_CPMU_EEE_MODE, val);
8757
8758 tw32_f(TG3_CPMU_EEE_DBTMR1,
8759 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
8760 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
8761
8762 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00008763 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00008764 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00008765 }
8766
Matt Carlson603f1172010-02-12 14:47:10 +00008767 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08008768 tg3_phy_reset(tp);
8769
Linus Torvalds1da177e2005-04-16 15:20:36 -07008770 err = tg3_chip_reset(tp);
8771 if (err)
8772 return err;
8773
8774 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
8775
Matt Carlsonbcb37f62008-11-03 16:52:09 -08008776 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008777 val = tr32(TG3_CPMU_CTRL);
8778 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
8779 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08008780
8781 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8782 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8783 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8784 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
8785
8786 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
8787 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
8788 val |= CPMU_LNK_AWARE_MACCLK_6_25;
8789 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
8790
8791 val = tr32(TG3_CPMU_HST_ACC);
8792 val &= ~CPMU_HST_ACC_MACCLK_MASK;
8793 val |= CPMU_HST_ACC_MACCLK_6_25;
8794 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07008795 }
8796
Matt Carlson33466d932009-04-20 06:57:41 +00008797 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8798 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
8799 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
8800 PCIE_PWR_MGMT_L1_THRESH_4MS;
8801 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00008802
8803 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
8804 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
8805
8806 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d932009-04-20 06:57:41 +00008807
Matt Carlsonf40386c2009-11-02 14:24:02 +00008808 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8809 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00008810 }
8811
Joe Perches63c3a662011-04-26 08:12:10 +00008812 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00008813 u32 grc_mode = tr32(GRC_MODE);
8814
8815 /* Access the lower 1K of PL PCIE block registers. */
8816 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8817 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
8818
8819 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
8820 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
8821 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
8822
8823 tw32(GRC_MODE, grc_mode);
8824 }
8825
Matt Carlson55086ad2011-12-14 11:09:59 +00008826 if (tg3_flag(tp, 57765_CLASS)) {
Matt Carlson5093eed2010-11-24 08:31:45 +00008827 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
8828 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00008829
Matt Carlson5093eed2010-11-24 08:31:45 +00008830 /* Access the lower 1K of PL PCIE block registers. */
8831 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8832 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00008833
Matt Carlson5093eed2010-11-24 08:31:45 +00008834 val = tr32(TG3_PCIE_TLDLPL_PORT +
8835 TG3_PCIE_PL_LO_PHYCTL5);
8836 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
8837 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00008838
Matt Carlson5093eed2010-11-24 08:31:45 +00008839 tw32(GRC_MODE, grc_mode);
8840 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008841
Matt Carlson1ff30a52011-05-19 12:12:46 +00008842 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_57765_AX) {
8843 u32 grc_mode = tr32(GRC_MODE);
8844
8845 /* Access the lower 1K of DL PCIE block registers. */
8846 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8847 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
8848
8849 val = tr32(TG3_PCIE_TLDLPL_PORT +
8850 TG3_PCIE_DL_LO_FTSMAX);
8851 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
8852 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
8853 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
8854
8855 tw32(GRC_MODE, grc_mode);
8856 }
8857
Matt Carlsona977dbe2010-04-12 06:58:26 +00008858 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8859 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8860 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8861 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008862 }
8863
Linus Torvalds1da177e2005-04-16 15:20:36 -07008864 /* This works around an issue with Athlon chipsets on
8865 * B3 tigon3 silicon. This bit has no effect on any
8866 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008867 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008868 */
Joe Perches63c3a662011-04-26 08:12:10 +00008869 if (!tg3_flag(tp, CPMU_PRESENT)) {
8870 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008871 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8872 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008874
8875 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008876 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008877 val = tr32(TG3PCI_PCISTATE);
8878 val |= PCISTATE_RETRY_SAME_DMA;
8879 tw32(TG3PCI_PCISTATE, val);
8880 }
8881
Joe Perches63c3a662011-04-26 08:12:10 +00008882 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008883 /* Allow reads and writes to the
8884 * APE register and memory space.
8885 */
8886 val = tr32(TG3PCI_PCISTATE);
8887 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008888 PCISTATE_ALLOW_APE_SHMEM_WR |
8889 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008890 tw32(TG3PCI_PCISTATE, val);
8891 }
8892
Linus Torvalds1da177e2005-04-16 15:20:36 -07008893 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8894 /* Enable some hw fixes. */
8895 val = tr32(TG3PCI_MSI_DATA);
8896 val |= (1 << 26) | (1 << 28) | (1 << 29);
8897 tw32(TG3PCI_MSI_DATA, val);
8898 }
8899
8900 /* Descriptor ring init may make accesses to the
8901 * NIC SRAM area to setup the TX descriptors, so we
8902 * can only do this after the hardware has been
8903 * successfully reset.
8904 */
Michael Chan32d8c572006-07-25 16:38:29 -07008905 err = tg3_init_rings(tp);
8906 if (err)
8907 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008908
Joe Perches63c3a662011-04-26 08:12:10 +00008909 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008910 val = tr32(TG3PCI_DMA_RW_CTRL) &
8911 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008912 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8913 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +00008914 if (!tg3_flag(tp, 57765_CLASS) &&
Matt Carlson0aebff42011-04-25 12:42:45 +00008915 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8916 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008917 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8918 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8919 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008920 /* This value is determined during the probe time DMA
8921 * engine test, tg3_test_dma.
8922 */
8923 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008925
8926 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8927 GRC_MODE_4X_NIC_SEND_RINGS |
8928 GRC_MODE_NO_TX_PHDR_CSUM |
8929 GRC_MODE_NO_RX_PHDR_CSUM);
8930 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008931
8932 /* Pseudo-header checksum is done by hardware logic and not
8933 * the offload processers, so make the chip do the pseudo-
8934 * header checksums on receive. For transmit it is more
8935 * convenient to do the pseudo-header checksum in software
8936 * as Linux does that on transmit for us in all cases.
8937 */
8938 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008939
8940 tw32(GRC_MODE,
8941 tp->grc_mode |
8942 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8943
8944 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8945 val = tr32(GRC_MISC_CFG);
8946 val &= ~0xff;
8947 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8948 tw32(GRC_MISC_CFG, val);
8949
8950 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008951 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008952 /* Do nothing. */
8953 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8954 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8955 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8956 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8957 else
8958 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8959 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8960 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008961 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008962 int fw_len;
8963
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008964 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008965 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8966 tw32(BUFMGR_MB_POOL_ADDR,
8967 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8968 tw32(BUFMGR_MB_POOL_SIZE,
8969 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008971
Michael Chan0f893dc2005-07-25 12:30:38 -07008972 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008973 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8974 tp->bufmgr_config.mbuf_read_dma_low_water);
8975 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8976 tp->bufmgr_config.mbuf_mac_rx_low_water);
8977 tw32(BUFMGR_MB_HIGH_WATER,
8978 tp->bufmgr_config.mbuf_high_water);
8979 } else {
8980 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8981 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8982 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8983 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8984 tw32(BUFMGR_MB_HIGH_WATER,
8985 tp->bufmgr_config.mbuf_high_water_jumbo);
8986 }
8987 tw32(BUFMGR_DMA_LOW_WATER,
8988 tp->bufmgr_config.dma_low_water);
8989 tw32(BUFMGR_DMA_HIGH_WATER,
8990 tp->bufmgr_config.dma_high_water);
8991
Matt Carlsond309a462010-09-30 10:34:31 +00008992 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8993 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8994 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008995 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8996 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8997 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8998 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008999 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009000 for (i = 0; i < 2000; i++) {
9001 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
9002 break;
9003 udelay(10);
9004 }
9005 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00009006 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009007 return -ENODEV;
9008 }
9009
Matt Carlsoneb07a942011-04-20 07:57:36 +00009010 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
9011 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07009012
Matt Carlsoneb07a942011-04-20 07:57:36 +00009013 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009014
9015 /* Initialize TG3_BDINFO's at:
9016 * RCVDBDI_STD_BD: standard eth size rx ring
9017 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
9018 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
9019 *
9020 * like so:
9021 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
9022 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
9023 * ring attribute flags
9024 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
9025 *
9026 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
9027 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
9028 *
9029 * The size of each ring is fixed in the firmware, but the location is
9030 * configurable.
9031 */
9032 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009033 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009034 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009035 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00009036 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00009037 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
9038 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009039
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009040 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00009041 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009042 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
9043 BDINFO_FLAGS_DISABLED);
9044
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009045 /* Program the jumbo buffer descriptor ring control
9046 * blocks on those devices that have them.
9047 */
Matt Carlsona0512942011-07-27 14:20:54 +00009048 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009049 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009050
Joe Perches63c3a662011-04-26 08:12:10 +00009051 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009052 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009053 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009054 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009055 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00009056 val = TG3_RX_JMB_RING_SIZE(tp) <<
9057 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009058 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00009059 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00009060 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlson55086ad2011-12-14 11:09:59 +00009061 tg3_flag(tp, 57765_CLASS))
Matt Carlson87668d32009-11-13 13:03:34 +00009062 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
9063 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009064 } else {
9065 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
9066 BDINFO_FLAGS_DISABLED);
9067 }
9068
Joe Perches63c3a662011-04-26 08:12:10 +00009069 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +00009070 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009071 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
9072 val |= (TG3_RX_STD_DMA_SZ << 2);
9073 } else
Matt Carlson04380d42010-04-12 06:58:29 +00009074 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009075 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00009076 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009077
9078 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009079
Matt Carlson411da642009-11-13 13:03:46 +00009080 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e662009-11-13 13:03:49 +00009081 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009082
Joe Perches63c3a662011-04-26 08:12:10 +00009083 tpr->rx_jmb_prod_idx =
9084 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e662009-11-13 13:03:49 +00009085 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009086
Matt Carlson2d31eca2009-09-01 12:53:31 +00009087 tg3_rings_reset(tp);
9088
Linus Torvalds1da177e2005-04-16 15:20:36 -07009089 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07009090 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009091
9092 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00009093 tw32(MAC_RX_MTU_SIZE,
9094 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009095
9096 /* The slot time is changed by tg3_setup_phy if we
9097 * run at gigabit with half duplex.
9098 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00009099 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
9100 (6 << TX_LENGTHS_IPG_SHIFT) |
9101 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
9102
9103 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
9104 val |= tr32(MAC_TX_LENGTHS) &
9105 (TX_LENGTHS_JMB_FRM_LEN_MSK |
9106 TX_LENGTHS_CNT_DWN_VAL_MSK);
9107
9108 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009109
9110 /* Receive rules. */
9111 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
9112 tw32(RCVLPC_CONFIG, 0x0181);
9113
9114 /* Calculate RDMAC_MODE setting early, we need it to determine
9115 * the RCVLPC_STATE_ENABLE mask.
9116 */
9117 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
9118 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
9119 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
9120 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
9121 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07009122
Matt Carlsondeabaac2010-11-24 08:31:50 +00009123 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00009124 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
9125
Matt Carlson57e69832008-05-25 23:48:31 -07009126 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08009127 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
9128 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07009129 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
9130 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
9131 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
9132
Matt Carlsonc5908932011-03-09 16:58:25 +00009133 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
9134 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009135 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07009136 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009137 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
9138 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009139 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009140 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9141 }
9142 }
9143
Joe Perches63c3a662011-04-26 08:12:10 +00009144 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07009145 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9146
Joe Perches63c3a662011-04-26 08:12:10 +00009147 if (tg3_flag(tp, HW_TSO_1) ||
9148 tg3_flag(tp, HW_TSO_2) ||
9149 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08009150 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
9151
Matt Carlson108a6c12011-05-19 12:12:47 +00009152 if (tg3_flag(tp, 57765_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00009153 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08009154 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
9155 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009156
Matt Carlsonf2096f92011-04-05 14:22:48 +00009157 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
9158 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
9159
Matt Carlson41a8a7e2010-09-15 08:59:53 +00009160 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
9161 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
9162 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
9163 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009164 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00009165 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Michael Chan10ce95d2012-07-29 19:15:42 +00009166 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00009167 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
9168 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
9169 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
9170 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
9171 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
9172 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00009173 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00009174 tw32(TG3_RDMA_RSRVCTRL_REG,
9175 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
9176 }
9177
Matt Carlsond78b59f2011-04-05 14:22:46 +00009178 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9179 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00009180 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
9181 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
9182 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
9183 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
9184 }
9185
Linus Torvalds1da177e2005-04-16 15:20:36 -07009186 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00009187 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07009188 val = tr32(RCVLPC_STATS_ENABLE);
9189 val &= ~RCVLPC_STATSENAB_DACK_FIX;
9190 tw32(RCVLPC_STATS_ENABLE, val);
9191 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009192 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009193 val = tr32(RCVLPC_STATS_ENABLE);
9194 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
9195 tw32(RCVLPC_STATS_ENABLE, val);
9196 } else {
9197 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
9198 }
9199 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
9200 tw32(SNDDATAI_STATSENAB, 0xffffff);
9201 tw32(SNDDATAI_STATSCTRL,
9202 (SNDDATAI_SCTRL_ENABLE |
9203 SNDDATAI_SCTRL_FASTUPD));
9204
9205 /* Setup host coalescing engine. */
9206 tw32(HOSTCC_MODE, 0);
9207 for (i = 0; i < 2000; i++) {
9208 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
9209 break;
9210 udelay(10);
9211 }
9212
Michael Chand244c892005-07-05 14:42:33 -07009213 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009214
Joe Perches63c3a662011-04-26 08:12:10 +00009215 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009216 /* Status/statistics block address. See tg3_timer,
9217 * the tg3_periodic_fetch_stats call there, and
9218 * tg3_get_stats to see how this works for 5705/5750 chips.
9219 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009220 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9221 ((u64) tp->stats_mapping >> 32));
9222 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9223 ((u64) tp->stats_mapping & 0xffffffff));
9224 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009225
Linus Torvalds1da177e2005-04-16 15:20:36 -07009226 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009227
9228 /* Clear statistics and status block memory areas */
9229 for (i = NIC_SRAM_STATS_BLK;
9230 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
9231 i += sizeof(u32)) {
9232 tg3_write_mem(tp, i, 0);
9233 udelay(40);
9234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009235 }
9236
9237 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
9238
9239 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
9240 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009241 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009242 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
9243
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009244 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
9245 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07009246 /* reset to prevent losing 1st rx packet intermittently */
9247 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9248 udelay(10);
9249 }
9250
Matt Carlson3bda1252008-08-15 14:08:22 -07009251 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +00009252 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
9253 MAC_MODE_FHDE_ENABLE;
9254 if (tg3_flag(tp, ENABLE_APE))
9255 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +00009256 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009257 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009258 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
9259 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009260 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
9261 udelay(40);
9262
Michael Chan314fba32005-04-21 17:07:04 -07009263 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00009264 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07009265 * register to preserve the GPIO settings for LOMs. The GPIOs,
9266 * whether used as inputs or outputs, are set by boot code after
9267 * reset.
9268 */
Joe Perches63c3a662011-04-26 08:12:10 +00009269 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07009270 u32 gpio_mask;
9271
Michael Chan9d26e212006-12-07 00:21:14 -08009272 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
9273 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
9274 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07009275
9276 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
9277 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
9278 GRC_LCLCTRL_GPIO_OUTPUT3;
9279
Michael Chanaf36e6b2006-03-23 01:28:06 -08009280 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
9281 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
9282
Gary Zambranoaaf84462007-05-05 11:51:45 -07009283 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07009284 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
9285
9286 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00009287 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08009288 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
9289 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07009290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009291 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9292 udelay(100);
9293
Matt Carlsonc3b50032012-01-17 15:27:23 +00009294 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009295 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +00009296 val |= MSGINT_MODE_ENABLE;
9297 if (tp->irq_cnt > 1)
9298 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +00009299 if (!tg3_flag(tp, 1SHOT_MSI))
9300 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009301 tw32(MSGINT_MODE, val);
9302 }
9303
Joe Perches63c3a662011-04-26 08:12:10 +00009304 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009305 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
9306 udelay(40);
9307 }
9308
9309 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
9310 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
9311 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
9312 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
9313 WDMAC_MODE_LNGREAD_ENAB);
9314
Matt Carlsonc5908932011-03-09 16:58:25 +00009315 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
9316 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009317 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009318 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
9319 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
9320 /* nothing */
9321 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009322 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009323 val |= WDMAC_MODE_RX_ACCEL;
9324 }
9325 }
9326
Michael Chand9ab5ad12006-03-20 22:27:35 -08009327 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00009328 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07009329 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -08009330
Matt Carlson788a0352009-11-02 14:26:03 +00009331 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
9332 val |= WDMAC_MODE_BURST_ALL_DATA;
9333
Linus Torvalds1da177e2005-04-16 15:20:36 -07009334 tw32_f(WDMAC_MODE, val);
9335 udelay(40);
9336
Joe Perches63c3a662011-04-26 08:12:10 +00009337 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07009338 u16 pcix_cmd;
9339
9340 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
9341 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009342 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07009343 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
9344 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009345 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07009346 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
9347 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009348 }
Matt Carlson9974a352007-10-07 23:27:28 -07009349 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
9350 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009351 }
9352
9353 tw32_f(RDMAC_MODE, rdmac_mode);
9354 udelay(40);
9355
Michael Chan091f0ea2012-07-29 19:15:43 +00009356 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719) {
9357 for (i = 0; i < TG3_NUM_RDMA_CHANNELS; i++) {
9358 if (tr32(TG3_RDMA_LENGTH + (i << 2)) > TG3_MAX_MTU(tp))
9359 break;
9360 }
9361 if (i < TG3_NUM_RDMA_CHANNELS) {
9362 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
9363 val |= TG3_LSO_RD_DMA_TX_LENGTH_WA;
9364 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
9365 tg3_flag_set(tp, 5719_RDMA_BUG);
9366 }
9367 }
9368
Linus Torvalds1da177e2005-04-16 15:20:36 -07009369 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009370 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009371 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07009372
9373 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
9374 tw32(SNDDATAC_MODE,
9375 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
9376 else
9377 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
9378
Linus Torvalds1da177e2005-04-16 15:20:36 -07009379 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
9380 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009381 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00009382 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009383 val |= RCVDBDI_MODE_LRG_RING_SZ;
9384 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009385 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009386 if (tg3_flag(tp, HW_TSO_1) ||
9387 tg3_flag(tp, HW_TSO_2) ||
9388 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009389 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009390 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00009391 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009392 val |= SNDBDI_MODE_MULTI_TXQ_EN;
9393 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009394 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
9395
9396 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9397 err = tg3_load_5701_a0_firmware_fix(tp);
9398 if (err)
9399 return err;
9400 }
9401
Joe Perches63c3a662011-04-26 08:12:10 +00009402 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009403 err = tg3_load_tso_firmware(tp);
9404 if (err)
9405 return err;
9406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009407
9408 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00009409
Joe Perches63c3a662011-04-26 08:12:10 +00009410 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00009411 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
9412 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00009413
9414 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
9415 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
9416 tp->tx_mode &= ~val;
9417 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
9418 }
9419
Linus Torvalds1da177e2005-04-16 15:20:36 -07009420 tw32_f(MAC_TX_MODE, tp->tx_mode);
9421 udelay(100);
9422
Joe Perches63c3a662011-04-26 08:12:10 +00009423 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009424 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009425
9426 /* Setup the "secret" hash key. */
9427 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
9428 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
9429 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
9430 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
9431 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
9432 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
9433 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
9434 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
9435 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
9436 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
9437 }
9438
Linus Torvalds1da177e2005-04-16 15:20:36 -07009439 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00009440 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08009441 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
9442
Joe Perches63c3a662011-04-26 08:12:10 +00009443 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009444 tp->rx_mode |= RX_MODE_RSS_ENABLE |
9445 RX_MODE_RSS_ITBL_HASH_BITS_7 |
9446 RX_MODE_RSS_IPV6_HASH_EN |
9447 RX_MODE_RSS_TCP_IPV6_HASH_EN |
9448 RX_MODE_RSS_IPV4_HASH_EN |
9449 RX_MODE_RSS_TCP_IPV4_HASH_EN;
9450
Linus Torvalds1da177e2005-04-16 15:20:36 -07009451 tw32_f(MAC_RX_MODE, tp->rx_mode);
9452 udelay(10);
9453
Linus Torvalds1da177e2005-04-16 15:20:36 -07009454 tw32(MAC_LED_CTRL, tp->led_ctrl);
9455
9456 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009457 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009458 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9459 udelay(10);
9460 }
9461 tw32_f(MAC_RX_MODE, tp->rx_mode);
9462 udelay(10);
9463
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009464 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009465 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009466 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009467 /* Set drive transmission level to 1.2V */
9468 /* only if the signal pre-emphasis bit is not set */
9469 val = tr32(MAC_SERDES_CFG);
9470 val &= 0xfffff000;
9471 val |= 0x880;
9472 tw32(MAC_SERDES_CFG, val);
9473 }
9474 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
9475 tw32(MAC_SERDES_CFG, 0x616000);
9476 }
9477
9478 /* Prevent chip from dropping frames when flow control
9479 * is enabled.
9480 */
Matt Carlson55086ad2011-12-14 11:09:59 +00009481 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +00009482 val = 1;
9483 else
9484 val = 2;
9485 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009486
9487 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009488 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009489 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00009490 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009491 }
9492
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009493 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +00009494 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08009495 u32 tmp;
9496
9497 tmp = tr32(SERDES_RX_CTRL);
9498 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
9499 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
9500 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
9501 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9502 }
9503
Joe Perches63c3a662011-04-26 08:12:10 +00009504 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonc6700ce2012-02-13 15:20:15 +00009505 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Matt Carlson80096062010-08-02 11:26:06 +00009506 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009507
Matt Carlsondd477002008-05-25 23:45:58 -07009508 err = tg3_setup_phy(tp, 0);
9509 if (err)
9510 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009511
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009512 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
9513 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07009514 u32 tmp;
9515
9516 /* Clear CRC stats. */
9517 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
9518 tg3_writephy(tp, MII_TG3_TEST1,
9519 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009520 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07009521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009522 }
9523 }
9524
9525 __tg3_set_rx_mode(tp->dev);
9526
9527 /* Initialize receive rules. */
9528 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
9529 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
9530 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
9531 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
9532
Joe Perches63c3a662011-04-26 08:12:10 +00009533 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009534 limit = 8;
9535 else
9536 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00009537 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009538 limit -= 4;
9539 switch (limit) {
9540 case 16:
9541 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
9542 case 15:
9543 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
9544 case 14:
9545 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
9546 case 13:
9547 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
9548 case 12:
9549 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
9550 case 11:
9551 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
9552 case 10:
9553 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
9554 case 9:
9555 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
9556 case 8:
9557 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
9558 case 7:
9559 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
9560 case 6:
9561 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
9562 case 5:
9563 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
9564 case 4:
9565 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
9566 case 3:
9567 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
9568 case 2:
9569 case 1:
9570
9571 default:
9572 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07009573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009574
Joe Perches63c3a662011-04-26 08:12:10 +00009575 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07009576 /* Write our heartbeat update interval to APE. */
9577 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
9578 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07009579
Linus Torvalds1da177e2005-04-16 15:20:36 -07009580 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
9581
Linus Torvalds1da177e2005-04-16 15:20:36 -07009582 return 0;
9583}
9584
9585/* Called at device open time to get the chip ready for
9586 * packet processing. Invoked with tp->lock held.
9587 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009588static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009589{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009590 tg3_switch_clocks(tp);
9591
9592 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
9593
Matt Carlson2f751b62008-08-04 23:17:34 -07009594 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009595}
9596
Michael Chanaed93e02012-07-16 16:24:02 +00009597#if IS_ENABLED(CONFIG_HWMON)
9598static void tg3_sd_scan_scratchpad(struct tg3 *tp, struct tg3_ocir *ocir)
9599{
9600 int i;
9601
9602 for (i = 0; i < TG3_SD_NUM_RECS; i++, ocir++) {
9603 u32 off = i * TG3_OCIR_LEN, len = TG3_OCIR_LEN;
9604
9605 tg3_ape_scratchpad_read(tp, (u32 *) ocir, off, len);
9606 off += len;
9607
9608 if (ocir->signature != TG3_OCIR_SIG_MAGIC ||
9609 !(ocir->version_flags & TG3_OCIR_FLAG_ACTIVE))
9610 memset(ocir, 0, TG3_OCIR_LEN);
9611 }
9612}
9613
9614/* sysfs attributes for hwmon */
9615static ssize_t tg3_show_temp(struct device *dev,
9616 struct device_attribute *devattr, char *buf)
9617{
9618 struct pci_dev *pdev = to_pci_dev(dev);
9619 struct net_device *netdev = pci_get_drvdata(pdev);
9620 struct tg3 *tp = netdev_priv(netdev);
9621 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
9622 u32 temperature;
9623
9624 spin_lock_bh(&tp->lock);
9625 tg3_ape_scratchpad_read(tp, &temperature, attr->index,
9626 sizeof(temperature));
9627 spin_unlock_bh(&tp->lock);
9628 return sprintf(buf, "%u\n", temperature);
9629}
9630
9631
9632static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tg3_show_temp, NULL,
9633 TG3_TEMP_SENSOR_OFFSET);
9634static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, tg3_show_temp, NULL,
9635 TG3_TEMP_CAUTION_OFFSET);
9636static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO, tg3_show_temp, NULL,
9637 TG3_TEMP_MAX_OFFSET);
9638
9639static struct attribute *tg3_attributes[] = {
9640 &sensor_dev_attr_temp1_input.dev_attr.attr,
9641 &sensor_dev_attr_temp1_crit.dev_attr.attr,
9642 &sensor_dev_attr_temp1_max.dev_attr.attr,
9643 NULL
9644};
9645
9646static const struct attribute_group tg3_group = {
9647 .attrs = tg3_attributes,
9648};
9649
9650#endif
9651
9652static void tg3_hwmon_close(struct tg3 *tp)
9653{
9654#if IS_ENABLED(CONFIG_HWMON)
9655 if (tp->hwmon_dev) {
9656 hwmon_device_unregister(tp->hwmon_dev);
9657 tp->hwmon_dev = NULL;
9658 sysfs_remove_group(&tp->pdev->dev.kobj, &tg3_group);
9659 }
9660#endif
9661}
9662
9663static void tg3_hwmon_open(struct tg3 *tp)
9664{
9665#if IS_ENABLED(CONFIG_HWMON)
9666 int i, err;
9667 u32 size = 0;
9668 struct pci_dev *pdev = tp->pdev;
9669 struct tg3_ocir ocirs[TG3_SD_NUM_RECS];
9670
9671 tg3_sd_scan_scratchpad(tp, ocirs);
9672
9673 for (i = 0; i < TG3_SD_NUM_RECS; i++) {
9674 if (!ocirs[i].src_data_length)
9675 continue;
9676
9677 size += ocirs[i].src_hdr_length;
9678 size += ocirs[i].src_data_length;
9679 }
9680
9681 if (!size)
9682 return;
9683
9684 /* Register hwmon sysfs hooks */
9685 err = sysfs_create_group(&pdev->dev.kobj, &tg3_group);
9686 if (err) {
9687 dev_err(&pdev->dev, "Cannot create sysfs group, aborting\n");
9688 return;
9689 }
9690
9691 tp->hwmon_dev = hwmon_device_register(&pdev->dev);
9692 if (IS_ERR(tp->hwmon_dev)) {
9693 tp->hwmon_dev = NULL;
9694 dev_err(&pdev->dev, "Cannot register hwmon device, aborting\n");
9695 sysfs_remove_group(&pdev->dev.kobj, &tg3_group);
9696 }
9697#endif
9698}
9699
9700
Linus Torvalds1da177e2005-04-16 15:20:36 -07009701#define TG3_STAT_ADD32(PSTAT, REG) \
9702do { u32 __val = tr32(REG); \
9703 (PSTAT)->low += __val; \
9704 if ((PSTAT)->low < __val) \
9705 (PSTAT)->high += 1; \
9706} while (0)
9707
9708static void tg3_periodic_fetch_stats(struct tg3 *tp)
9709{
9710 struct tg3_hw_stats *sp = tp->hw_stats;
9711
9712 if (!netif_carrier_ok(tp->dev))
9713 return;
9714
9715 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
9716 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
9717 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
9718 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
9719 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
9720 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
9721 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
9722 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
9723 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
9724 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
9725 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
9726 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
9727 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
Michael Chan091f0ea2012-07-29 19:15:43 +00009728 if (unlikely(tg3_flag(tp, 5719_RDMA_BUG) &&
9729 (sp->tx_ucast_packets.low + sp->tx_mcast_packets.low +
9730 sp->tx_bcast_packets.low) > TG3_NUM_RDMA_CHANNELS)) {
9731 u32 val;
9732
9733 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
9734 val &= ~TG3_LSO_RD_DMA_TX_LENGTH_WA;
9735 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
9736 tg3_flag_clear(tp, 5719_RDMA_BUG);
9737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009738
9739 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
9740 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
9741 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
9742 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
9743 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
9744 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
9745 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
9746 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
9747 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
9748 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
9749 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
9750 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
9751 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
9752 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07009753
9754 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson310050f2011-05-19 12:12:55 +00009755 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9756 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0 &&
9757 tp->pci_chip_rev_id != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +00009758 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
9759 } else {
9760 u32 val = tr32(HOSTCC_FLOW_ATTN);
9761 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
9762 if (val) {
9763 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
9764 sp->rx_discards.low += val;
9765 if (sp->rx_discards.low < val)
9766 sp->rx_discards.high += 1;
9767 }
9768 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
9769 }
Michael Chan463d3052006-05-22 16:36:27 -07009770 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009771}
9772
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009773static void tg3_chk_missed_msi(struct tg3 *tp)
9774{
9775 u32 i;
9776
9777 for (i = 0; i < tp->irq_cnt; i++) {
9778 struct tg3_napi *tnapi = &tp->napi[i];
9779
9780 if (tg3_has_work(tnapi)) {
9781 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
9782 tnapi->last_tx_cons == tnapi->tx_cons) {
9783 if (tnapi->chk_msi_cnt < 1) {
9784 tnapi->chk_msi_cnt++;
9785 return;
9786 }
Matt Carlson7f230732011-08-31 11:44:48 +00009787 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009788 }
9789 }
9790 tnapi->chk_msi_cnt = 0;
9791 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
9792 tnapi->last_tx_cons = tnapi->tx_cons;
9793 }
9794}
9795
Linus Torvalds1da177e2005-04-16 15:20:36 -07009796static void tg3_timer(unsigned long __opaque)
9797{
9798 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009799
Matt Carlson5b190622011-11-04 09:15:04 +00009800 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -08009801 goto restart_timer;
9802
David S. Millerf47c11e2005-06-24 20:18:35 -07009803 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009804
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009805 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00009806 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009807 tg3_chk_missed_msi(tp);
9808
Joe Perches63c3a662011-04-26 08:12:10 +00009809 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07009810 /* All of this garbage is because when using non-tagged
9811 * IRQ status the mailbox/status_block protocol the chip
9812 * uses with the cpu is race prone.
9813 */
Matt Carlson898a56f2009-08-28 14:02:40 +00009814 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07009815 tw32(GRC_LOCAL_CTRL,
9816 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
9817 } else {
9818 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009819 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07009820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009821
David S. Millerfac9b832005-05-18 22:46:34 -07009822 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009823 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +00009824 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +00009825 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -07009826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009827 }
9828
Linus Torvalds1da177e2005-04-16 15:20:36 -07009829 /* This part only runs once per second. */
9830 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009831 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009832 tg3_periodic_fetch_stats(tp);
9833
Matt Carlsonb0c59432011-05-19 12:12:48 +00009834 if (tp->setlpicnt && !--tp->setlpicnt)
9835 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00009836
Joe Perches63c3a662011-04-26 08:12:10 +00009837 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009838 u32 mac_stat;
9839 int phy_event;
9840
9841 mac_stat = tr32(MAC_STATUS);
9842
9843 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009844 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009845 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
9846 phy_event = 1;
9847 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
9848 phy_event = 1;
9849
9850 if (phy_event)
9851 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00009852 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009853 u32 mac_stat = tr32(MAC_STATUS);
9854 int need_setup = 0;
9855
9856 if (netif_carrier_ok(tp->dev) &&
9857 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
9858 need_setup = 1;
9859 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00009860 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009861 (mac_stat & (MAC_STATUS_PCS_SYNCED |
9862 MAC_STATUS_SIGNAL_DET))) {
9863 need_setup = 1;
9864 }
9865 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07009866 if (!tp->serdes_counter) {
9867 tw32_f(MAC_MODE,
9868 (tp->mac_mode &
9869 ~MAC_MODE_PORT_MODE_MASK));
9870 udelay(40);
9871 tw32_f(MAC_MODE, tp->mac_mode);
9872 udelay(40);
9873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009874 tg3_setup_phy(tp, 0);
9875 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009876 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009877 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07009878 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00009879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009880
9881 tp->timer_counter = tp->timer_multiplier;
9882 }
9883
Michael Chan130b8e42006-09-27 16:00:40 -07009884 /* Heartbeat is only sent once every 2 seconds.
9885 *
9886 * The heartbeat is to tell the ASF firmware that the host
9887 * driver is still alive. In the event that the OS crashes,
9888 * ASF needs to reset the hardware to free up the FIFO space
9889 * that may be filled with rx packets destined for the host.
9890 * If the FIFO is full, ASF will no longer function properly.
9891 *
9892 * Unintended resets have been reported on real time kernels
9893 * where the timer doesn't run on time. Netpoll will also have
9894 * same problem.
9895 *
9896 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
9897 * to check the ring condition when the heartbeat is expiring
9898 * before doing the reset. This will prevent most unintended
9899 * resets.
9900 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009901 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009902 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07009903 tg3_wait_for_event_ack(tp);
9904
Michael Chanbbadf502006-04-06 21:46:34 -07009905 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07009906 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07009907 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009908 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
9909 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009910
9911 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009912 }
9913 tp->asf_counter = tp->asf_multiplier;
9914 }
9915
David S. Millerf47c11e2005-06-24 20:18:35 -07009916 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009917
Michael Chanf475f162006-03-27 23:20:14 -08009918restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07009919 tp->timer.expires = jiffies + tp->timer_offset;
9920 add_timer(&tp->timer);
9921}
9922
Matt Carlson21f76382012-02-22 12:35:21 +00009923static void __devinit tg3_timer_init(struct tg3 *tp)
9924{
9925 if (tg3_flag(tp, TAGGED_STATUS) &&
9926 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9927 !tg3_flag(tp, 57765_CLASS))
9928 tp->timer_offset = HZ;
9929 else
9930 tp->timer_offset = HZ / 10;
9931
9932 BUG_ON(tp->timer_offset > HZ);
9933
9934 tp->timer_multiplier = (HZ / tp->timer_offset);
9935 tp->asf_multiplier = (HZ / tp->timer_offset) *
9936 TG3_FW_UPDATE_FREQ_SEC;
9937
9938 init_timer(&tp->timer);
9939 tp->timer.data = (unsigned long) tp;
9940 tp->timer.function = tg3_timer;
9941}
9942
9943static void tg3_timer_start(struct tg3 *tp)
9944{
9945 tp->asf_counter = tp->asf_multiplier;
9946 tp->timer_counter = tp->timer_multiplier;
9947
9948 tp->timer.expires = jiffies + tp->timer_offset;
9949 add_timer(&tp->timer);
9950}
9951
9952static void tg3_timer_stop(struct tg3 *tp)
9953{
9954 del_timer_sync(&tp->timer);
9955}
9956
9957/* Restart hardware after configuration changes, self-test, etc.
9958 * Invoked with tp->lock held.
9959 */
9960static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
9961 __releases(tp->lock)
9962 __acquires(tp->lock)
9963{
9964 int err;
9965
9966 err = tg3_init_hw(tp, reset_phy);
9967 if (err) {
9968 netdev_err(tp->dev,
9969 "Failed to re-initialize device, aborting\n");
9970 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
9971 tg3_full_unlock(tp);
9972 tg3_timer_stop(tp);
9973 tp->irq_sync = 0;
9974 tg3_napi_enable(tp);
9975 dev_close(tp->dev);
9976 tg3_full_lock(tp, 0);
9977 }
9978 return err;
9979}
9980
9981static void tg3_reset_task(struct work_struct *work)
9982{
9983 struct tg3 *tp = container_of(work, struct tg3, reset_task);
9984 int err;
9985
9986 tg3_full_lock(tp, 0);
9987
9988 if (!netif_running(tp->dev)) {
9989 tg3_flag_clear(tp, RESET_TASK_PENDING);
9990 tg3_full_unlock(tp);
9991 return;
9992 }
9993
9994 tg3_full_unlock(tp);
9995
9996 tg3_phy_stop(tp);
9997
9998 tg3_netif_stop(tp);
9999
10000 tg3_full_lock(tp, 1);
10001
10002 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
10003 tp->write32_tx_mbox = tg3_write32_tx_mbox;
10004 tp->write32_rx_mbox = tg3_write_flush_reg32;
10005 tg3_flag_set(tp, MBOX_WRITE_REORDER);
10006 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
10007 }
10008
10009 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
10010 err = tg3_init_hw(tp, 1);
10011 if (err)
10012 goto out;
10013
10014 tg3_netif_start(tp);
10015
10016out:
10017 tg3_full_unlock(tp);
10018
10019 if (!err)
10020 tg3_phy_start(tp);
10021
10022 tg3_flag_clear(tp, RESET_TASK_PENDING);
10023}
10024
Matt Carlson4f125f42009-09-01 12:55:02 +000010025static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -080010026{
David Howells7d12e782006-10-05 14:55:46 +010010027 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010028 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +000010029 char *name;
10030 struct tg3_napi *tnapi = &tp->napi[irq_num];
10031
10032 if (tp->irq_cnt == 1)
10033 name = tp->dev->name;
10034 else {
10035 name = &tnapi->irq_lbl[0];
10036 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
10037 name[IFNAMSIZ-1] = 0;
10038 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010039
Joe Perches63c3a662011-04-26 08:12:10 +000010040 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080010041 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +000010042 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010043 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010044 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010045 } else {
10046 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +000010047 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010048 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010049 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010050 }
Matt Carlson4f125f42009-09-01 12:55:02 +000010051
10052 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010053}
10054
Michael Chan79381092005-04-21 17:13:59 -070010055static int tg3_test_interrupt(struct tg3 *tp)
10056{
Matt Carlson09943a12009-08-28 14:01:57 +000010057 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -070010058 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -070010059 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010060 u32 val;
Michael Chan79381092005-04-21 17:13:59 -070010061
Michael Chand4bc3922005-05-29 14:59:20 -070010062 if (!netif_running(dev))
10063 return -ENODEV;
10064
Michael Chan79381092005-04-21 17:13:59 -070010065 tg3_disable_ints(tp);
10066
Matt Carlson4f125f42009-09-01 12:55:02 +000010067 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010068
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010069 /*
10070 * Turn off MSI one shot mode. Otherwise this test has no
10071 * observable way to know whether the interrupt was delivered.
10072 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010073 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010074 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
10075 tw32(MSGINT_MODE, val);
10076 }
10077
Matt Carlson4f125f42009-09-01 12:55:02 +000010078 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Davidlohr Buesof274fd92012-02-22 03:06:54 +000010079 IRQF_SHARED, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010080 if (err)
10081 return err;
10082
Matt Carlson898a56f2009-08-28 14:02:40 +000010083 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -070010084 tg3_enable_ints(tp);
10085
10086 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010087 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -070010088
10089 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -070010090 u32 int_mbox, misc_host_ctrl;
10091
Matt Carlson898a56f2009-08-28 14:02:40 +000010092 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -070010093 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
10094
10095 if ((int_mbox != 0) ||
10096 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
10097 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -070010098 break;
Michael Chanb16250e2006-09-27 16:10:14 -070010099 }
10100
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010101 if (tg3_flag(tp, 57765_PLUS) &&
10102 tnapi->hw_status->status_tag != tnapi->last_tag)
10103 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
10104
Michael Chan79381092005-04-21 17:13:59 -070010105 msleep(10);
10106 }
10107
10108 tg3_disable_ints(tp);
10109
Matt Carlson4f125f42009-09-01 12:55:02 +000010110 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010111
Matt Carlson4f125f42009-09-01 12:55:02 +000010112 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010113
10114 if (err)
10115 return err;
10116
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010117 if (intr_ok) {
10118 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +000010119 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010120 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
10121 tw32(MSGINT_MODE, val);
10122 }
Michael Chan79381092005-04-21 17:13:59 -070010123 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010124 }
Michael Chan79381092005-04-21 17:13:59 -070010125
10126 return -EIO;
10127}
10128
10129/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
10130 * successfully restored
10131 */
10132static int tg3_test_msi(struct tg3 *tp)
10133{
Michael Chan79381092005-04-21 17:13:59 -070010134 int err;
10135 u16 pci_cmd;
10136
Joe Perches63c3a662011-04-26 08:12:10 +000010137 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -070010138 return 0;
10139
10140 /* Turn off SERR reporting in case MSI terminates with Master
10141 * Abort.
10142 */
10143 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
10144 pci_write_config_word(tp->pdev, PCI_COMMAND,
10145 pci_cmd & ~PCI_COMMAND_SERR);
10146
10147 err = tg3_test_interrupt(tp);
10148
10149 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
10150
10151 if (!err)
10152 return 0;
10153
10154 /* other failures */
10155 if (err != -EIO)
10156 return err;
10157
10158 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +000010159 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
10160 "to INTx mode. Please report this failure to the PCI "
10161 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -070010162
Matt Carlson4f125f42009-09-01 12:55:02 +000010163 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +000010164
Michael Chan79381092005-04-21 17:13:59 -070010165 pci_disable_msi(tp->pdev);
10166
Joe Perches63c3a662011-04-26 08:12:10 +000010167 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +000010168 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -070010169
Matt Carlson4f125f42009-09-01 12:55:02 +000010170 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010171 if (err)
10172 return err;
10173
10174 /* Need to reset the chip because the MSI cycle may have terminated
10175 * with Master Abort.
10176 */
David S. Millerf47c11e2005-06-24 20:18:35 -070010177 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070010178
Michael Chan944d9802005-05-29 14:57:48 -070010179 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -070010180 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070010181
David S. Millerf47c11e2005-06-24 20:18:35 -070010182 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010183
10184 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +000010185 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -070010186
10187 return err;
10188}
10189
Matt Carlson9e9fd122009-01-19 16:57:45 -080010190static int tg3_request_firmware(struct tg3 *tp)
10191{
10192 const __be32 *fw_data;
10193
10194 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010195 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
10196 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010197 return -ENOENT;
10198 }
10199
10200 fw_data = (void *)tp->fw->data;
10201
10202 /* Firmware blob starts with version numbers, followed by
10203 * start address and _full_ length including BSS sections
10204 * (which must be longer than the actual data, of course
10205 */
10206
10207 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
10208 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010209 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
10210 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010211 release_firmware(tp->fw);
10212 tp->fw = NULL;
10213 return -EINVAL;
10214 }
10215
10216 /* We no longer need firmware; we have it. */
10217 tp->fw_needed = NULL;
10218 return 0;
10219}
10220
Michael Chan91024262012-09-28 07:12:38 +000010221static u32 tg3_irq_count(struct tg3 *tp)
Matt Carlson679563f2009-09-01 12:55:46 +000010222{
Michael Chan91024262012-09-28 07:12:38 +000010223 u32 irq_cnt = max(tp->rxq_cnt, tp->txq_cnt);
Matt Carlson679563f2009-09-01 12:55:46 +000010224
Michael Chan91024262012-09-28 07:12:38 +000010225 if (irq_cnt > 1) {
Matt Carlsonc3b50032012-01-17 15:27:23 +000010226 /* We want as many rx rings enabled as there are cpus.
10227 * In multiqueue MSI-X mode, the first MSI-X vector
10228 * only deals with link interrupts, etc, so we add
10229 * one to the number of vectors we are requesting.
10230 */
Michael Chan91024262012-09-28 07:12:38 +000010231 irq_cnt = min_t(unsigned, irq_cnt + 1, tp->irq_max);
Matt Carlsonc3b50032012-01-17 15:27:23 +000010232 }
Matt Carlson679563f2009-09-01 12:55:46 +000010233
Michael Chan91024262012-09-28 07:12:38 +000010234 return irq_cnt;
10235}
10236
10237static bool tg3_enable_msix(struct tg3 *tp)
10238{
10239 int i, rc;
10240 struct msix_entry msix_ent[tp->irq_max];
10241
10242 tp->rxq_cnt = netif_get_num_default_rss_queues();
10243 if (tp->rxq_cnt > tp->rxq_max)
10244 tp->rxq_cnt = tp->rxq_max;
10245 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
10246 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
10247 tp->txq_cnt = min(tp->rxq_cnt, tp->txq_max);
10248
10249 tp->irq_cnt = tg3_irq_count(tp);
10250
Matt Carlson679563f2009-09-01 12:55:46 +000010251 for (i = 0; i < tp->irq_max; i++) {
10252 msix_ent[i].entry = i;
10253 msix_ent[i].vector = 0;
10254 }
10255
10256 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000010257 if (rc < 0) {
10258 return false;
10259 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +000010260 if (pci_enable_msix(tp->pdev, msix_ent, rc))
10261 return false;
Joe Perches05dbe002010-02-17 19:44:19 +000010262 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
10263 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +000010264 tp->irq_cnt = rc;
Michael Chan49a359e2012-09-28 07:12:37 +000010265 tp->rxq_cnt = max(rc - 1, 1);
Michael Chan91024262012-09-28 07:12:38 +000010266 if (tp->txq_cnt)
10267 tp->txq_cnt = min(tp->rxq_cnt, tp->txq_max);
Matt Carlson679563f2009-09-01 12:55:46 +000010268 }
10269
10270 for (i = 0; i < tp->irq_max; i++)
10271 tp->napi[i].irq_vec = msix_ent[i].vector;
10272
Michael Chan49a359e2012-09-28 07:12:37 +000010273 if (netif_set_real_num_rx_queues(tp->dev, tp->rxq_cnt)) {
Ben Hutchings2ddaad32010-09-27 22:11:51 -070010274 pci_disable_msix(tp->pdev);
10275 return false;
10276 }
Matt Carlsonb92b9042010-11-24 08:31:51 +000010277
Michael Chan91024262012-09-28 07:12:38 +000010278 if (tp->irq_cnt == 1)
10279 return true;
Matt Carlsond78b59f2011-04-05 14:22:46 +000010280
Michael Chan91024262012-09-28 07:12:38 +000010281 tg3_flag_set(tp, ENABLE_RSS);
10282
10283 if (tp->txq_cnt > 1)
10284 tg3_flag_set(tp, ENABLE_TSS);
10285
10286 netif_set_real_num_tx_queues(tp->dev, tp->txq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000010287
Matt Carlson679563f2009-09-01 12:55:46 +000010288 return true;
10289}
10290
Matt Carlson07b01732009-08-28 14:01:15 +000010291static void tg3_ints_init(struct tg3 *tp)
10292{
Joe Perches63c3a662011-04-26 08:12:10 +000010293 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
10294 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +000010295 /* All MSI supporting chips should support tagged
10296 * status. Assert that this is the case.
10297 */
Matt Carlson5129c3a2010-04-05 10:19:23 +000010298 netdev_warn(tp->dev,
10299 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +000010300 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +000010301 }
Matt Carlson4f125f42009-09-01 12:55:02 +000010302
Joe Perches63c3a662011-04-26 08:12:10 +000010303 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
10304 tg3_flag_set(tp, USING_MSIX);
10305 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
10306 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +000010307
Joe Perches63c3a662011-04-26 08:12:10 +000010308 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000010309 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +000010310 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010311 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000010312 if (!tg3_flag(tp, 1SHOT_MSI))
10313 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +000010314 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
10315 }
10316defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +000010317 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000010318 tp->irq_cnt = 1;
10319 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan49a359e2012-09-28 07:12:37 +000010320 }
10321
10322 if (tp->irq_cnt == 1) {
10323 tp->txq_cnt = 1;
10324 tp->rxq_cnt = 1;
Ben Hutchings2ddaad32010-09-27 22:11:51 -070010325 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -070010326 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +000010327 }
Matt Carlson07b01732009-08-28 14:01:15 +000010328}
10329
10330static void tg3_ints_fini(struct tg3 *tp)
10331{
Joe Perches63c3a662011-04-26 08:12:10 +000010332 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +000010333 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000010334 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +000010335 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000010336 tg3_flag_clear(tp, USING_MSI);
10337 tg3_flag_clear(tp, USING_MSIX);
10338 tg3_flag_clear(tp, ENABLE_RSS);
10339 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +000010340}
10341
Linus Torvalds1da177e2005-04-16 15:20:36 -070010342static int tg3_open(struct net_device *dev)
10343{
10344 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +000010345 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010346
Matt Carlson9e9fd122009-01-19 16:57:45 -080010347 if (tp->fw_needed) {
10348 err = tg3_request_firmware(tp);
10349 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
10350 if (err)
10351 return err;
10352 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000010353 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +000010354 tg3_flag_clear(tp, TSO_CAPABLE);
10355 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010356 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +000010357 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010358 }
10359 }
10360
Michael Chanc49a1562006-12-17 17:07:29 -080010361 netif_carrier_off(tp->dev);
10362
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000010363 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -070010364 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -080010365 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -070010366
10367 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -080010368
Linus Torvalds1da177e2005-04-16 15:20:36 -070010369 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010370 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010371
David S. Millerf47c11e2005-06-24 20:18:35 -070010372 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010373
Matt Carlson679563f2009-09-01 12:55:46 +000010374 /*
10375 * Setup interrupts first so we know how
10376 * many NAPI resources to allocate
10377 */
10378 tg3_ints_init(tp);
10379
Matt Carlson90415472011-12-16 13:33:23 +000010380 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +000010381
Linus Torvalds1da177e2005-04-16 15:20:36 -070010382 /* The placement of this call is tied
10383 * to the setup and use of Host TX descriptors.
10384 */
10385 err = tg3_alloc_consistent(tp);
10386 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000010387 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010388
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010389 tg3_napi_init(tp);
10390
Matt Carlsonfed97812009-09-01 13:10:19 +000010391 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -070010392
Matt Carlson4f125f42009-09-01 12:55:02 +000010393 for (i = 0; i < tp->irq_cnt; i++) {
10394 struct tg3_napi *tnapi = &tp->napi[i];
10395 err = tg3_request_irq(tp, i);
10396 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +000010397 for (i--; i >= 0; i--) {
10398 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +000010399 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +000010400 }
10401 goto err_out2;
Matt Carlson4f125f42009-09-01 12:55:02 +000010402 }
10403 }
Matt Carlson07b01732009-08-28 14:01:15 +000010404
David S. Millerf47c11e2005-06-24 20:18:35 -070010405 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010406
Gary Zambrano8e7a22e2006-04-29 18:59:13 -070010407 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010408 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -070010409 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010410 tg3_free_rings(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010411 }
10412
David S. Millerf47c11e2005-06-24 20:18:35 -070010413 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010414
Matt Carlson07b01732009-08-28 14:01:15 +000010415 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000010416 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010417
Joe Perches63c3a662011-04-26 08:12:10 +000010418 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -070010419 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -070010420
Michael Chan79381092005-04-21 17:13:59 -070010421 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010422 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070010423 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -070010424 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070010425 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010426
Matt Carlson679563f2009-09-01 12:55:46 +000010427 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -070010428 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010429
Joe Perches63c3a662011-04-26 08:12:10 +000010430 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010431 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010432
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010433 tw32(PCIE_TRANSACTION_CFG,
10434 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010435 }
Michael Chan79381092005-04-21 17:13:59 -070010436 }
10437
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010438 tg3_phy_start(tp);
10439
Michael Chanaed93e02012-07-16 16:24:02 +000010440 tg3_hwmon_open(tp);
10441
David S. Millerf47c11e2005-06-24 20:18:35 -070010442 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010443
Matt Carlson21f76382012-02-22 12:35:21 +000010444 tg3_timer_start(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010445 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010446 tg3_enable_ints(tp);
10447
David S. Millerf47c11e2005-06-24 20:18:35 -070010448 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010449
Matt Carlsonfe5f5782009-09-01 13:09:39 +000010450 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010451
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000010452 /*
10453 * Reset loopback feature if it was turned on while the device was down
10454 * make sure that it's installed properly now.
10455 */
10456 if (dev->features & NETIF_F_LOOPBACK)
10457 tg3_set_loopback(dev, dev->features);
10458
Linus Torvalds1da177e2005-04-16 15:20:36 -070010459 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +000010460
Matt Carlson679563f2009-09-01 12:55:46 +000010461err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +000010462 for (i = tp->irq_cnt - 1; i >= 0; i--) {
10463 struct tg3_napi *tnapi = &tp->napi[i];
10464 free_irq(tnapi->irq_vec, tnapi);
10465 }
Matt Carlson07b01732009-08-28 14:01:15 +000010466
Matt Carlson679563f2009-09-01 12:55:46 +000010467err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +000010468 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010469 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +000010470 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +000010471
10472err_out1:
10473 tg3_ints_fini(tp);
Matt Carlsoncd0d7222011-07-13 09:27:33 +000010474 tg3_frob_aux_power(tp, false);
10475 pci_set_power_state(tp->pdev, PCI_D3hot);
Matt Carlson07b01732009-08-28 14:01:15 +000010476 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010477}
10478
Linus Torvalds1da177e2005-04-16 15:20:36 -070010479static int tg3_close(struct net_device *dev)
10480{
Matt Carlson4f125f42009-09-01 12:55:02 +000010481 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010482 struct tg3 *tp = netdev_priv(dev);
10483
Matt Carlsonfed97812009-09-01 13:10:19 +000010484 tg3_napi_disable(tp);
Matt Carlsondb219972011-11-04 09:15:03 +000010485 tg3_reset_task_cancel(tp);
Michael Chan7faa0062006-02-02 17:29:28 -080010486
Matt Carlsonfe5f5782009-09-01 13:09:39 +000010487 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010488
Matt Carlson21f76382012-02-22 12:35:21 +000010489 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010490
Michael Chanaed93e02012-07-16 16:24:02 +000010491 tg3_hwmon_close(tp);
10492
Matt Carlson24bb4fb2009-10-05 17:55:29 +000010493 tg3_phy_stop(tp);
10494
David S. Millerf47c11e2005-06-24 20:18:35 -070010495 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010496
10497 tg3_disable_ints(tp);
10498
Michael Chan944d9802005-05-29 14:57:48 -070010499 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010500 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010501 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010502
David S. Millerf47c11e2005-06-24 20:18:35 -070010503 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010504
Matt Carlson4f125f42009-09-01 12:55:02 +000010505 for (i = tp->irq_cnt - 1; i >= 0; i--) {
10506 struct tg3_napi *tnapi = &tp->napi[i];
10507 free_irq(tnapi->irq_vec, tnapi);
10508 }
Matt Carlson07b01732009-08-28 14:01:15 +000010509
10510 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010511
Matt Carlson92feeab2011-12-08 14:40:14 +000010512 /* Clear stats across close / open calls */
10513 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
10514 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010515
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010516 tg3_napi_fini(tp);
10517
Linus Torvalds1da177e2005-04-16 15:20:36 -070010518 tg3_free_consistent(tp);
10519
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000010520 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080010521
10522 netif_carrier_off(tp->dev);
10523
Linus Torvalds1da177e2005-04-16 15:20:36 -070010524 return 0;
10525}
10526
Eric Dumazet511d2222010-07-07 20:44:24 +000010527static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -070010528{
10529 return ((u64)val->high << 32) | ((u64)val->low);
10530}
10531
Matt Carlson65ec6982012-02-28 23:33:37 +000010532static u64 tg3_calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010533{
10534 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10535
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010536 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010537 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
10538 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010539 u32 val;
10540
Michael Chan569a5df2007-02-13 12:18:15 -080010541 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
10542 tg3_writephy(tp, MII_TG3_TEST1,
10543 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +000010544 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010545 } else
10546 val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010547
10548 tp->phy_crc_errors += val;
10549
10550 return tp->phy_crc_errors;
10551 }
10552
10553 return get_stat64(&hw_stats->rx_fcs_errors);
10554}
10555
10556#define ESTAT_ADD(member) \
10557 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +000010558 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010559
Matt Carlson65ec6982012-02-28 23:33:37 +000010560static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010561{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010562 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
10563 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10564
Linus Torvalds1da177e2005-04-16 15:20:36 -070010565 ESTAT_ADD(rx_octets);
10566 ESTAT_ADD(rx_fragments);
10567 ESTAT_ADD(rx_ucast_packets);
10568 ESTAT_ADD(rx_mcast_packets);
10569 ESTAT_ADD(rx_bcast_packets);
10570 ESTAT_ADD(rx_fcs_errors);
10571 ESTAT_ADD(rx_align_errors);
10572 ESTAT_ADD(rx_xon_pause_rcvd);
10573 ESTAT_ADD(rx_xoff_pause_rcvd);
10574 ESTAT_ADD(rx_mac_ctrl_rcvd);
10575 ESTAT_ADD(rx_xoff_entered);
10576 ESTAT_ADD(rx_frame_too_long_errors);
10577 ESTAT_ADD(rx_jabbers);
10578 ESTAT_ADD(rx_undersize_packets);
10579 ESTAT_ADD(rx_in_length_errors);
10580 ESTAT_ADD(rx_out_length_errors);
10581 ESTAT_ADD(rx_64_or_less_octet_packets);
10582 ESTAT_ADD(rx_65_to_127_octet_packets);
10583 ESTAT_ADD(rx_128_to_255_octet_packets);
10584 ESTAT_ADD(rx_256_to_511_octet_packets);
10585 ESTAT_ADD(rx_512_to_1023_octet_packets);
10586 ESTAT_ADD(rx_1024_to_1522_octet_packets);
10587 ESTAT_ADD(rx_1523_to_2047_octet_packets);
10588 ESTAT_ADD(rx_2048_to_4095_octet_packets);
10589 ESTAT_ADD(rx_4096_to_8191_octet_packets);
10590 ESTAT_ADD(rx_8192_to_9022_octet_packets);
10591
10592 ESTAT_ADD(tx_octets);
10593 ESTAT_ADD(tx_collisions);
10594 ESTAT_ADD(tx_xon_sent);
10595 ESTAT_ADD(tx_xoff_sent);
10596 ESTAT_ADD(tx_flow_control);
10597 ESTAT_ADD(tx_mac_errors);
10598 ESTAT_ADD(tx_single_collisions);
10599 ESTAT_ADD(tx_mult_collisions);
10600 ESTAT_ADD(tx_deferred);
10601 ESTAT_ADD(tx_excessive_collisions);
10602 ESTAT_ADD(tx_late_collisions);
10603 ESTAT_ADD(tx_collide_2times);
10604 ESTAT_ADD(tx_collide_3times);
10605 ESTAT_ADD(tx_collide_4times);
10606 ESTAT_ADD(tx_collide_5times);
10607 ESTAT_ADD(tx_collide_6times);
10608 ESTAT_ADD(tx_collide_7times);
10609 ESTAT_ADD(tx_collide_8times);
10610 ESTAT_ADD(tx_collide_9times);
10611 ESTAT_ADD(tx_collide_10times);
10612 ESTAT_ADD(tx_collide_11times);
10613 ESTAT_ADD(tx_collide_12times);
10614 ESTAT_ADD(tx_collide_13times);
10615 ESTAT_ADD(tx_collide_14times);
10616 ESTAT_ADD(tx_collide_15times);
10617 ESTAT_ADD(tx_ucast_packets);
10618 ESTAT_ADD(tx_mcast_packets);
10619 ESTAT_ADD(tx_bcast_packets);
10620 ESTAT_ADD(tx_carrier_sense_errors);
10621 ESTAT_ADD(tx_discards);
10622 ESTAT_ADD(tx_errors);
10623
10624 ESTAT_ADD(dma_writeq_full);
10625 ESTAT_ADD(dma_write_prioq_full);
10626 ESTAT_ADD(rxbds_empty);
10627 ESTAT_ADD(rx_discards);
10628 ESTAT_ADD(rx_errors);
10629 ESTAT_ADD(rx_threshold_hit);
10630
10631 ESTAT_ADD(dma_readq_full);
10632 ESTAT_ADD(dma_read_prioq_full);
10633 ESTAT_ADD(tx_comp_queue_full);
10634
10635 ESTAT_ADD(ring_set_send_prod_index);
10636 ESTAT_ADD(ring_status_update);
10637 ESTAT_ADD(nic_irqs);
10638 ESTAT_ADD(nic_avoided_irqs);
10639 ESTAT_ADD(nic_tx_threshold_hit);
10640
Matt Carlson4452d092011-05-19 12:12:51 +000010641 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010642}
10643
Matt Carlson65ec6982012-02-28 23:33:37 +000010644static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010645{
Eric Dumazet511d2222010-07-07 20:44:24 +000010646 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010647 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10648
Linus Torvalds1da177e2005-04-16 15:20:36 -070010649 stats->rx_packets = old_stats->rx_packets +
10650 get_stat64(&hw_stats->rx_ucast_packets) +
10651 get_stat64(&hw_stats->rx_mcast_packets) +
10652 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010653
Linus Torvalds1da177e2005-04-16 15:20:36 -070010654 stats->tx_packets = old_stats->tx_packets +
10655 get_stat64(&hw_stats->tx_ucast_packets) +
10656 get_stat64(&hw_stats->tx_mcast_packets) +
10657 get_stat64(&hw_stats->tx_bcast_packets);
10658
10659 stats->rx_bytes = old_stats->rx_bytes +
10660 get_stat64(&hw_stats->rx_octets);
10661 stats->tx_bytes = old_stats->tx_bytes +
10662 get_stat64(&hw_stats->tx_octets);
10663
10664 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -070010665 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010666 stats->tx_errors = old_stats->tx_errors +
10667 get_stat64(&hw_stats->tx_errors) +
10668 get_stat64(&hw_stats->tx_mac_errors) +
10669 get_stat64(&hw_stats->tx_carrier_sense_errors) +
10670 get_stat64(&hw_stats->tx_discards);
10671
10672 stats->multicast = old_stats->multicast +
10673 get_stat64(&hw_stats->rx_mcast_packets);
10674 stats->collisions = old_stats->collisions +
10675 get_stat64(&hw_stats->tx_collisions);
10676
10677 stats->rx_length_errors = old_stats->rx_length_errors +
10678 get_stat64(&hw_stats->rx_frame_too_long_errors) +
10679 get_stat64(&hw_stats->rx_undersize_packets);
10680
10681 stats->rx_over_errors = old_stats->rx_over_errors +
10682 get_stat64(&hw_stats->rxbds_empty);
10683 stats->rx_frame_errors = old_stats->rx_frame_errors +
10684 get_stat64(&hw_stats->rx_align_errors);
10685 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
10686 get_stat64(&hw_stats->tx_discards);
10687 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
10688 get_stat64(&hw_stats->tx_carrier_sense_errors);
10689
10690 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000010691 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010692
John W. Linville4f63b872005-09-12 14:43:18 -070010693 stats->rx_missed_errors = old_stats->rx_missed_errors +
10694 get_stat64(&hw_stats->rx_discards);
10695
Eric Dumazetb0057c52010-10-10 19:55:52 +000010696 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000010697 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010698}
10699
Linus Torvalds1da177e2005-04-16 15:20:36 -070010700static int tg3_get_regs_len(struct net_device *dev)
10701{
Matt Carlson97bd8e42011-04-13 11:05:04 +000010702 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010703}
10704
10705static void tg3_get_regs(struct net_device *dev,
10706 struct ethtool_regs *regs, void *_p)
10707{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010708 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010709
10710 regs->version = 0;
10711
Matt Carlson97bd8e42011-04-13 11:05:04 +000010712 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010713
Matt Carlson80096062010-08-02 11:26:06 +000010714 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010715 return;
10716
David S. Millerf47c11e2005-06-24 20:18:35 -070010717 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010718
Matt Carlson97bd8e42011-04-13 11:05:04 +000010719 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010720
David S. Millerf47c11e2005-06-24 20:18:35 -070010721 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010722}
10723
10724static int tg3_get_eeprom_len(struct net_device *dev)
10725{
10726 struct tg3 *tp = netdev_priv(dev);
10727
10728 return tp->nvram_size;
10729}
10730
Linus Torvalds1da177e2005-04-16 15:20:36 -070010731static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10732{
10733 struct tg3 *tp = netdev_priv(dev);
10734 int ret;
10735 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080010736 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010737 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010738
Joe Perches63c3a662011-04-26 08:12:10 +000010739 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010740 return -EINVAL;
10741
Matt Carlson80096062010-08-02 11:26:06 +000010742 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010743 return -EAGAIN;
10744
Linus Torvalds1da177e2005-04-16 15:20:36 -070010745 offset = eeprom->offset;
10746 len = eeprom->len;
10747 eeprom->len = 0;
10748
10749 eeprom->magic = TG3_EEPROM_MAGIC;
10750
10751 if (offset & 3) {
10752 /* adjustments to start on required 4 byte boundary */
10753 b_offset = offset & 3;
10754 b_count = 4 - b_offset;
10755 if (b_count > len) {
10756 /* i.e. offset=1 len=2 */
10757 b_count = len;
10758 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000010759 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010760 if (ret)
10761 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000010762 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010763 len -= b_count;
10764 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010765 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010766 }
10767
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010768 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010769 pd = &data[eeprom->len];
10770 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010771 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010772 if (ret) {
10773 eeprom->len += i;
10774 return ret;
10775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010776 memcpy(pd + i, &val, 4);
10777 }
10778 eeprom->len += i;
10779
10780 if (len & 3) {
10781 /* read last bytes not ending on 4 byte boundary */
10782 pd = &data[eeprom->len];
10783 b_count = len & 3;
10784 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010785 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010786 if (ret)
10787 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010788 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010789 eeprom->len += b_count;
10790 }
10791 return 0;
10792}
10793
Linus Torvalds1da177e2005-04-16 15:20:36 -070010794static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10795{
10796 struct tg3 *tp = netdev_priv(dev);
10797 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010798 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010799 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010800 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010801
Matt Carlson80096062010-08-02 11:26:06 +000010802 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010803 return -EAGAIN;
10804
Joe Perches63c3a662011-04-26 08:12:10 +000010805 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000010806 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010807 return -EINVAL;
10808
10809 offset = eeprom->offset;
10810 len = eeprom->len;
10811
10812 if ((b_offset = (offset & 3))) {
10813 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010814 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010815 if (ret)
10816 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010817 len += b_offset;
10818 offset &= ~3;
Michael Chan1c8594b42005-04-21 17:12:46 -070010819 if (len < 4)
10820 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010821 }
10822
10823 odd_len = 0;
Michael Chan1c8594b42005-04-21 17:12:46 -070010824 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010825 /* adjustments to end on required 4 byte boundary */
10826 odd_len = 1;
10827 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010828 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010829 if (ret)
10830 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010831 }
10832
10833 buf = data;
10834 if (b_offset || odd_len) {
10835 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010836 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010837 return -ENOMEM;
10838 if (b_offset)
10839 memcpy(buf, &start, 4);
10840 if (odd_len)
10841 memcpy(buf+len-4, &end, 4);
10842 memcpy(buf + b_offset, data, eeprom->len);
10843 }
10844
10845 ret = tg3_nvram_write_block(tp, offset, len, buf);
10846
10847 if (buf != data)
10848 kfree(buf);
10849
10850 return ret;
10851}
10852
10853static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10854{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010855 struct tg3 *tp = netdev_priv(dev);
10856
Joe Perches63c3a662011-04-26 08:12:10 +000010857 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010858 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010859 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010860 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010861 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10862 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010863 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010864
Linus Torvalds1da177e2005-04-16 15:20:36 -070010865 cmd->supported = (SUPPORTED_Autoneg);
10866
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010867 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010868 cmd->supported |= (SUPPORTED_1000baseT_Half |
10869 SUPPORTED_1000baseT_Full);
10870
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010871 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010872 cmd->supported |= (SUPPORTED_100baseT_Half |
10873 SUPPORTED_100baseT_Full |
10874 SUPPORTED_10baseT_Half |
10875 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080010876 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070010877 cmd->port = PORT_TP;
10878 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010879 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070010880 cmd->port = PORT_FIBRE;
10881 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010882
Linus Torvalds1da177e2005-04-16 15:20:36 -070010883 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000010884 if (tg3_flag(tp, PAUSE_AUTONEG)) {
10885 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
10886 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10887 cmd->advertising |= ADVERTISED_Pause;
10888 } else {
10889 cmd->advertising |= ADVERTISED_Pause |
10890 ADVERTISED_Asym_Pause;
10891 }
10892 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10893 cmd->advertising |= ADVERTISED_Asym_Pause;
10894 }
10895 }
Matt Carlson859edb22011-12-08 14:40:16 +000010896 if (netif_running(dev) && netif_carrier_ok(dev)) {
David Decotigny70739492011-04-27 18:32:40 +000010897 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010898 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000010899 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000010900 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
10901 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
10902 cmd->eth_tp_mdix = ETH_TP_MDI_X;
10903 else
10904 cmd->eth_tp_mdix = ETH_TP_MDI;
10905 }
Matt Carlson64c22182010-10-14 10:37:44 +000010906 } else {
Matt Carlsone7405222012-02-13 15:20:16 +000010907 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
10908 cmd->duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +000010909 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010910 }
Matt Carlson882e9792009-09-01 13:21:36 +000010911 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010912 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010913 cmd->autoneg = tp->link_config.autoneg;
10914 cmd->maxtxpkt = 0;
10915 cmd->maxrxpkt = 0;
10916 return 0;
10917}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010918
Linus Torvalds1da177e2005-04-16 15:20:36 -070010919static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10920{
10921 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000010922 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010923
Joe Perches63c3a662011-04-26 08:12:10 +000010924 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010925 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010926 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010927 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010928 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10929 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010930 }
10931
Matt Carlson7e5856b2009-02-25 14:23:01 +000010932 if (cmd->autoneg != AUTONEG_ENABLE &&
10933 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070010934 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010935
10936 if (cmd->autoneg == AUTONEG_DISABLE &&
10937 cmd->duplex != DUPLEX_FULL &&
10938 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070010939 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010940
Matt Carlson7e5856b2009-02-25 14:23:01 +000010941 if (cmd->autoneg == AUTONEG_ENABLE) {
10942 u32 mask = ADVERTISED_Autoneg |
10943 ADVERTISED_Pause |
10944 ADVERTISED_Asym_Pause;
10945
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010946 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010947 mask |= ADVERTISED_1000baseT_Half |
10948 ADVERTISED_1000baseT_Full;
10949
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010950 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010951 mask |= ADVERTISED_100baseT_Half |
10952 ADVERTISED_100baseT_Full |
10953 ADVERTISED_10baseT_Half |
10954 ADVERTISED_10baseT_Full |
10955 ADVERTISED_TP;
10956 else
10957 mask |= ADVERTISED_FIBRE;
10958
10959 if (cmd->advertising & ~mask)
10960 return -EINVAL;
10961
10962 mask &= (ADVERTISED_1000baseT_Half |
10963 ADVERTISED_1000baseT_Full |
10964 ADVERTISED_100baseT_Half |
10965 ADVERTISED_100baseT_Full |
10966 ADVERTISED_10baseT_Half |
10967 ADVERTISED_10baseT_Full);
10968
10969 cmd->advertising &= mask;
10970 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010971 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000010972 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010973 return -EINVAL;
10974
10975 if (cmd->duplex != DUPLEX_FULL)
10976 return -EINVAL;
10977 } else {
David Decotigny25db0332011-04-27 18:32:39 +000010978 if (speed != SPEED_100 &&
10979 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010980 return -EINVAL;
10981 }
10982 }
10983
David S. Millerf47c11e2005-06-24 20:18:35 -070010984 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010985
10986 tp->link_config.autoneg = cmd->autoneg;
10987 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070010988 tp->link_config.advertising = (cmd->advertising |
10989 ADVERTISED_Autoneg);
Matt Carlsone7405222012-02-13 15:20:16 +000010990 tp->link_config.speed = SPEED_UNKNOWN;
10991 tp->link_config.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010992 } else {
10993 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000010994 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010995 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010996 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010997
Linus Torvalds1da177e2005-04-16 15:20:36 -070010998 if (netif_running(dev))
10999 tg3_setup_phy(tp, 1);
11000
David S. Millerf47c11e2005-06-24 20:18:35 -070011001 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011002
Linus Torvalds1da177e2005-04-16 15:20:36 -070011003 return 0;
11004}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011005
Linus Torvalds1da177e2005-04-16 15:20:36 -070011006static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
11007{
11008 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011009
Rick Jones68aad782011-11-07 13:29:27 +000011010 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
11011 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
11012 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
11013 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011014}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011015
Linus Torvalds1da177e2005-04-16 15:20:36 -070011016static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11017{
11018 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011019
Joe Perches63c3a662011-04-26 08:12:10 +000011020 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070011021 wol->supported = WAKE_MAGIC;
11022 else
11023 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011024 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011025 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011026 wol->wolopts = WAKE_MAGIC;
11027 memset(&wol->sopass, 0, sizeof(wol->sopass));
11028}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011029
Linus Torvalds1da177e2005-04-16 15:20:36 -070011030static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11031{
11032 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070011033 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011034
Linus Torvalds1da177e2005-04-16 15:20:36 -070011035 if (wol->wolopts & ~WAKE_MAGIC)
11036 return -EINVAL;
11037 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011038 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011039 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011040
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011041 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
11042
David S. Millerf47c11e2005-06-24 20:18:35 -070011043 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011044 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000011045 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011046 else
Joe Perches63c3a662011-04-26 08:12:10 +000011047 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070011048 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011049
Linus Torvalds1da177e2005-04-16 15:20:36 -070011050 return 0;
11051}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011052
Linus Torvalds1da177e2005-04-16 15:20:36 -070011053static u32 tg3_get_msglevel(struct net_device *dev)
11054{
11055 struct tg3 *tp = netdev_priv(dev);
11056 return tp->msg_enable;
11057}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011058
Linus Torvalds1da177e2005-04-16 15:20:36 -070011059static void tg3_set_msglevel(struct net_device *dev, u32 value)
11060{
11061 struct tg3 *tp = netdev_priv(dev);
11062 tp->msg_enable = value;
11063}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011064
Linus Torvalds1da177e2005-04-16 15:20:36 -070011065static int tg3_nway_reset(struct net_device *dev)
11066{
11067 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011068 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011069
Linus Torvalds1da177e2005-04-16 15:20:36 -070011070 if (!netif_running(dev))
11071 return -EAGAIN;
11072
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011073 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070011074 return -EINVAL;
11075
Joe Perches63c3a662011-04-26 08:12:10 +000011076 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011077 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011078 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011079 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011080 } else {
11081 u32 bmcr;
11082
11083 spin_lock_bh(&tp->lock);
11084 r = -EINVAL;
11085 tg3_readphy(tp, MII_BMCR, &bmcr);
11086 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
11087 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011088 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011089 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
11090 BMCR_ANENABLE);
11091 r = 0;
11092 }
11093 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011094 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011095
Linus Torvalds1da177e2005-04-16 15:20:36 -070011096 return r;
11097}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011098
Linus Torvalds1da177e2005-04-16 15:20:36 -070011099static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11100{
11101 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011102
Matt Carlson2c49a442010-09-30 10:34:35 +000011103 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000011104 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000011105 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080011106 else
11107 ering->rx_jumbo_max_pending = 0;
11108
11109 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011110
11111 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000011112 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080011113 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
11114 else
11115 ering->rx_jumbo_pending = 0;
11116
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011117 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011118}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011119
Linus Torvalds1da177e2005-04-16 15:20:36 -070011120static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11121{
11122 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000011123 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011124
Matt Carlson2c49a442010-09-30 10:34:35 +000011125 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
11126 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070011127 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
11128 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000011129 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070011130 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011131 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011132
Michael Chanbbe832c2005-06-24 20:20:04 -070011133 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011134 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011135 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011136 irq_sync = 1;
11137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011138
Michael Chanbbe832c2005-06-24 20:20:04 -070011139 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011140
Linus Torvalds1da177e2005-04-16 15:20:36 -070011141 tp->rx_pending = ering->rx_pending;
11142
Joe Perches63c3a662011-04-26 08:12:10 +000011143 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070011144 tp->rx_pending > 63)
11145 tp->rx_pending = 63;
11146 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000011147
Matt Carlson6fd45cb2010-09-15 08:59:57 +000011148 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000011149 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011150
11151 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070011152 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070011153 err = tg3_restart_hw(tp, 1);
11154 if (!err)
11155 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011156 }
11157
David S. Millerf47c11e2005-06-24 20:18:35 -070011158 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011159
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011160 if (irq_sync && !err)
11161 tg3_phy_start(tp);
11162
Michael Chanb9ec6c12006-07-25 16:37:27 -070011163 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011164}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011165
Linus Torvalds1da177e2005-04-16 15:20:36 -070011166static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
11167{
11168 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011169
Joe Perches63c3a662011-04-26 08:12:10 +000011170 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080011171
Matt Carlson4a2db502011-12-08 14:40:17 +000011172 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080011173 epause->rx_pause = 1;
11174 else
11175 epause->rx_pause = 0;
11176
Matt Carlson4a2db502011-12-08 14:40:17 +000011177 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080011178 epause->tx_pause = 1;
11179 else
11180 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011181}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011182
Linus Torvalds1da177e2005-04-16 15:20:36 -070011183static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
11184{
11185 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011186 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011187
Joe Perches63c3a662011-04-26 08:12:10 +000011188 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000011189 u32 newadv;
11190 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011191
Matt Carlson27121682010-02-17 15:16:57 +000011192 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011193
Matt Carlson27121682010-02-17 15:16:57 +000011194 if (!(phydev->supported & SUPPORTED_Pause) ||
11195 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000011196 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000011197 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011198
Matt Carlson27121682010-02-17 15:16:57 +000011199 tp->link_config.flowctrl = 0;
11200 if (epause->rx_pause) {
11201 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011202
Matt Carlson27121682010-02-17 15:16:57 +000011203 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080011204 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000011205 newadv = ADVERTISED_Pause;
11206 } else
11207 newadv = ADVERTISED_Pause |
11208 ADVERTISED_Asym_Pause;
11209 } else if (epause->tx_pause) {
11210 tp->link_config.flowctrl |= FLOW_CTRL_TX;
11211 newadv = ADVERTISED_Asym_Pause;
11212 } else
11213 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011214
Matt Carlson27121682010-02-17 15:16:57 +000011215 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000011216 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000011217 else
Joe Perches63c3a662011-04-26 08:12:10 +000011218 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000011219
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011220 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000011221 u32 oldadv = phydev->advertising &
11222 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
11223 if (oldadv != newadv) {
11224 phydev->advertising &=
11225 ~(ADVERTISED_Pause |
11226 ADVERTISED_Asym_Pause);
11227 phydev->advertising |= newadv;
11228 if (phydev->autoneg) {
11229 /*
11230 * Always renegotiate the link to
11231 * inform our link partner of our
11232 * flow control settings, even if the
11233 * flow control is forced. Let
11234 * tg3_adjust_link() do the final
11235 * flow control setup.
11236 */
11237 return phy_start_aneg(phydev);
11238 }
11239 }
11240
11241 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011242 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000011243 } else {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000011244 tp->link_config.advertising &=
Matt Carlson27121682010-02-17 15:16:57 +000011245 ~(ADVERTISED_Pause |
11246 ADVERTISED_Asym_Pause);
Matt Carlsonc6700ce2012-02-13 15:20:15 +000011247 tp->link_config.advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011248 }
11249 } else {
11250 int irq_sync = 0;
11251
11252 if (netif_running(dev)) {
11253 tg3_netif_stop(tp);
11254 irq_sync = 1;
11255 }
11256
11257 tg3_full_lock(tp, irq_sync);
11258
11259 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000011260 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011261 else
Joe Perches63c3a662011-04-26 08:12:10 +000011262 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011263 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080011264 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011265 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080011266 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011267 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080011268 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011269 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080011270 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011271
11272 if (netif_running(dev)) {
11273 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11274 err = tg3_restart_hw(tp, 1);
11275 if (!err)
11276 tg3_netif_start(tp);
11277 }
11278
11279 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011281
Michael Chanb9ec6c12006-07-25 16:37:27 -070011282 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011283}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011284
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011285static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011286{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011287 switch (sset) {
11288 case ETH_SS_TEST:
11289 return TG3_NUM_TEST;
11290 case ETH_SS_STATS:
11291 return TG3_NUM_STATS;
11292 default:
11293 return -EOPNOTSUPP;
11294 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070011295}
11296
Matt Carlson90415472011-12-16 13:33:23 +000011297static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
11298 u32 *rules __always_unused)
11299{
11300 struct tg3 *tp = netdev_priv(dev);
11301
11302 if (!tg3_flag(tp, SUPPORT_MSIX))
11303 return -EOPNOTSUPP;
11304
11305 switch (info->cmd) {
11306 case ETHTOOL_GRXRINGS:
11307 if (netif_running(tp->dev))
Michael Chan91024262012-09-28 07:12:38 +000011308 info->data = tp->rxq_cnt;
Matt Carlson90415472011-12-16 13:33:23 +000011309 else {
11310 info->data = num_online_cpus();
Michael Chan91024262012-09-28 07:12:38 +000011311 if (info->data > TG3_RSS_MAX_NUM_QS)
11312 info->data = TG3_RSS_MAX_NUM_QS;
Matt Carlson90415472011-12-16 13:33:23 +000011313 }
11314
11315 /* The first interrupt vector only
11316 * handles link interrupts.
11317 */
11318 info->data -= 1;
11319 return 0;
11320
11321 default:
11322 return -EOPNOTSUPP;
11323 }
11324}
11325
11326static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
11327{
11328 u32 size = 0;
11329 struct tg3 *tp = netdev_priv(dev);
11330
11331 if (tg3_flag(tp, SUPPORT_MSIX))
11332 size = TG3_RSS_INDIR_TBL_SIZE;
11333
11334 return size;
11335}
11336
11337static int tg3_get_rxfh_indir(struct net_device *dev, u32 *indir)
11338{
11339 struct tg3 *tp = netdev_priv(dev);
11340 int i;
11341
11342 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
11343 indir[i] = tp->rss_ind_tbl[i];
11344
11345 return 0;
11346}
11347
11348static int tg3_set_rxfh_indir(struct net_device *dev, const u32 *indir)
11349{
11350 struct tg3 *tp = netdev_priv(dev);
11351 size_t i;
11352
11353 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
11354 tp->rss_ind_tbl[i] = indir[i];
11355
11356 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
11357 return 0;
11358
11359 /* It is legal to write the indirection
11360 * table while the device is running.
11361 */
11362 tg3_full_lock(tp, 0);
11363 tg3_rss_write_indir_tbl(tp);
11364 tg3_full_unlock(tp);
11365
11366 return 0;
11367}
11368
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011369static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011370{
11371 switch (stringset) {
11372 case ETH_SS_STATS:
11373 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
11374 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070011375 case ETH_SS_TEST:
11376 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
11377 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011378 default:
11379 WARN_ON(1); /* we need a WARN() */
11380 break;
11381 }
11382}
11383
stephen hemminger81b87092011-04-04 08:43:50 +000011384static int tg3_set_phys_id(struct net_device *dev,
11385 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070011386{
11387 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070011388
11389 if (!netif_running(tp->dev))
11390 return -EAGAIN;
11391
stephen hemminger81b87092011-04-04 08:43:50 +000011392 switch (state) {
11393 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000011394 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070011395
stephen hemminger81b87092011-04-04 08:43:50 +000011396 case ETHTOOL_ID_ON:
11397 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
11398 LED_CTRL_1000MBPS_ON |
11399 LED_CTRL_100MBPS_ON |
11400 LED_CTRL_10MBPS_ON |
11401 LED_CTRL_TRAFFIC_OVERRIDE |
11402 LED_CTRL_TRAFFIC_BLINK |
11403 LED_CTRL_TRAFFIC_LED);
11404 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011405
stephen hemminger81b87092011-04-04 08:43:50 +000011406 case ETHTOOL_ID_OFF:
11407 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
11408 LED_CTRL_TRAFFIC_OVERRIDE);
11409 break;
Michael Chan4009a932005-09-05 17:52:54 -070011410
stephen hemminger81b87092011-04-04 08:43:50 +000011411 case ETHTOOL_ID_INACTIVE:
11412 tw32(MAC_LED_CTRL, tp->led_ctrl);
11413 break;
Michael Chan4009a932005-09-05 17:52:54 -070011414 }
stephen hemminger81b87092011-04-04 08:43:50 +000011415
Michael Chan4009a932005-09-05 17:52:54 -070011416 return 0;
11417}
11418
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011419static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011420 struct ethtool_stats *estats, u64 *tmp_stats)
11421{
11422 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000011423
Matt Carlsonb546e462012-02-13 15:20:09 +000011424 if (tp->hw_stats)
11425 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
11426 else
11427 memset(tmp_stats, 0, sizeof(struct tg3_ethtool_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011428}
11429
Matt Carlson535a4902011-07-20 10:20:56 +000011430static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000011431{
11432 int i;
11433 __be32 *buf;
11434 u32 offset = 0, len = 0;
11435 u32 magic, val;
11436
Joe Perches63c3a662011-04-26 08:12:10 +000011437 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000011438 return NULL;
11439
11440 if (magic == TG3_EEPROM_MAGIC) {
11441 for (offset = TG3_NVM_DIR_START;
11442 offset < TG3_NVM_DIR_END;
11443 offset += TG3_NVM_DIRENT_SIZE) {
11444 if (tg3_nvram_read(tp, offset, &val))
11445 return NULL;
11446
11447 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
11448 TG3_NVM_DIRTYPE_EXTVPD)
11449 break;
11450 }
11451
11452 if (offset != TG3_NVM_DIR_END) {
11453 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
11454 if (tg3_nvram_read(tp, offset + 4, &offset))
11455 return NULL;
11456
11457 offset = tg3_nvram_logical_addr(tp, offset);
11458 }
11459 }
11460
11461 if (!offset || !len) {
11462 offset = TG3_NVM_VPD_OFF;
11463 len = TG3_NVM_VPD_LEN;
11464 }
11465
11466 buf = kmalloc(len, GFP_KERNEL);
11467 if (buf == NULL)
11468 return NULL;
11469
11470 if (magic == TG3_EEPROM_MAGIC) {
11471 for (i = 0; i < len; i += 4) {
11472 /* The data is in little-endian format in NVRAM.
11473 * Use the big-endian read routines to preserve
11474 * the byte order as it exists in NVRAM.
11475 */
11476 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
11477 goto error;
11478 }
11479 } else {
11480 u8 *ptr;
11481 ssize_t cnt;
11482 unsigned int pos = 0;
11483
11484 ptr = (u8 *)&buf[0];
11485 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
11486 cnt = pci_read_vpd(tp->pdev, pos,
11487 len - pos, ptr);
11488 if (cnt == -ETIMEDOUT || cnt == -EINTR)
11489 cnt = 0;
11490 else if (cnt < 0)
11491 goto error;
11492 }
11493 if (pos != len)
11494 goto error;
11495 }
11496
Matt Carlson535a4902011-07-20 10:20:56 +000011497 *vpdlen = len;
11498
Matt Carlsonc3e94502011-04-13 11:05:08 +000011499 return buf;
11500
11501error:
11502 kfree(buf);
11503 return NULL;
11504}
11505
Michael Chan566f86a2005-05-29 14:56:58 -070011506#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080011507#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
11508#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
11509#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000011510#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
11511#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000011512#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070011513#define NVRAM_SELFBOOT_HW_SIZE 0x20
11514#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070011515
11516static int tg3_test_nvram(struct tg3 *tp)
11517{
Matt Carlson535a4902011-07-20 10:20:56 +000011518 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011519 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010011520 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070011521
Joe Perches63c3a662011-04-26 08:12:10 +000011522 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000011523 return 0;
11524
Matt Carlsone4f34112009-02-25 14:25:00 +000011525 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011526 return -EIO;
11527
Michael Chan1b277772006-03-20 22:27:48 -080011528 if (magic == TG3_EEPROM_MAGIC)
11529 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070011530 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080011531 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
11532 TG3_EEPROM_SB_FORMAT_1) {
11533 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
11534 case TG3_EEPROM_SB_REVISION_0:
11535 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
11536 break;
11537 case TG3_EEPROM_SB_REVISION_2:
11538 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
11539 break;
11540 case TG3_EEPROM_SB_REVISION_3:
11541 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
11542 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000011543 case TG3_EEPROM_SB_REVISION_4:
11544 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
11545 break;
11546 case TG3_EEPROM_SB_REVISION_5:
11547 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
11548 break;
11549 case TG3_EEPROM_SB_REVISION_6:
11550 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
11551 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080011552 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000011553 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080011554 }
11555 } else
Michael Chan1b277772006-03-20 22:27:48 -080011556 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070011557 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
11558 size = NVRAM_SELFBOOT_HW_SIZE;
11559 else
Michael Chan1b277772006-03-20 22:27:48 -080011560 return -EIO;
11561
11562 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070011563 if (buf == NULL)
11564 return -ENOMEM;
11565
Michael Chan1b277772006-03-20 22:27:48 -080011566 err = -EIO;
11567 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011568 err = tg3_nvram_read_be32(tp, i, &buf[j]);
11569 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070011570 break;
Michael Chan566f86a2005-05-29 14:56:58 -070011571 }
Michael Chan1b277772006-03-20 22:27:48 -080011572 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070011573 goto out;
11574
Michael Chan1b277772006-03-20 22:27:48 -080011575 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000011576 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080011577 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070011578 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080011579 u8 *buf8 = (u8 *) buf, csum8 = 0;
11580
Al Virob9fc7dc2007-12-17 22:59:57 -080011581 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080011582 TG3_EEPROM_SB_REVISION_2) {
11583 /* For rev 2, the csum doesn't include the MBA. */
11584 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
11585 csum8 += buf8[i];
11586 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
11587 csum8 += buf8[i];
11588 } else {
11589 for (i = 0; i < size; i++)
11590 csum8 += buf8[i];
11591 }
Michael Chan1b277772006-03-20 22:27:48 -080011592
Adrian Bunkad96b482006-04-05 22:21:04 -070011593 if (csum8 == 0) {
11594 err = 0;
11595 goto out;
11596 }
11597
11598 err = -EIO;
11599 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080011600 }
Michael Chan566f86a2005-05-29 14:56:58 -070011601
Al Virob9fc7dc2007-12-17 22:59:57 -080011602 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070011603 TG3_EEPROM_MAGIC_HW) {
11604 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000011605 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070011606 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070011607
11608 /* Separate the parity bits and the data bytes. */
11609 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
11610 if ((i == 0) || (i == 8)) {
11611 int l;
11612 u8 msk;
11613
11614 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
11615 parity[k++] = buf8[i] & msk;
11616 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000011617 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070011618 int l;
11619 u8 msk;
11620
11621 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
11622 parity[k++] = buf8[i] & msk;
11623 i++;
11624
11625 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
11626 parity[k++] = buf8[i] & msk;
11627 i++;
11628 }
11629 data[j++] = buf8[i];
11630 }
11631
11632 err = -EIO;
11633 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
11634 u8 hw8 = hweight8(data[i]);
11635
11636 if ((hw8 & 0x1) && parity[i])
11637 goto out;
11638 else if (!(hw8 & 0x1) && !parity[i])
11639 goto out;
11640 }
11641 err = 0;
11642 goto out;
11643 }
11644
Matt Carlson01c3a392011-03-09 16:58:20 +000011645 err = -EIO;
11646
Michael Chan566f86a2005-05-29 14:56:58 -070011647 /* Bootstrap checksum at offset 0x10 */
11648 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000011649 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070011650 goto out;
11651
11652 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
11653 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000011654 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000011655 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070011656
Matt Carlsonc3e94502011-04-13 11:05:08 +000011657 kfree(buf);
11658
Matt Carlson535a4902011-07-20 10:20:56 +000011659 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000011660 if (!buf)
11661 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000011662
Matt Carlson535a4902011-07-20 10:20:56 +000011663 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000011664 if (i > 0) {
11665 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
11666 if (j < 0)
11667 goto out;
11668
Matt Carlson535a4902011-07-20 10:20:56 +000011669 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000011670 goto out;
11671
11672 i += PCI_VPD_LRDT_TAG_SIZE;
11673 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
11674 PCI_VPD_RO_KEYWORD_CHKSUM);
11675 if (j > 0) {
11676 u8 csum8 = 0;
11677
11678 j += PCI_VPD_INFO_FLD_HDR_SIZE;
11679
11680 for (i = 0; i <= j; i++)
11681 csum8 += ((u8 *)buf)[i];
11682
11683 if (csum8)
11684 goto out;
11685 }
11686 }
11687
Michael Chan566f86a2005-05-29 14:56:58 -070011688 err = 0;
11689
11690out:
11691 kfree(buf);
11692 return err;
11693}
11694
Michael Chanca430072005-05-29 14:57:23 -070011695#define TG3_SERDES_TIMEOUT_SEC 2
11696#define TG3_COPPER_TIMEOUT_SEC 6
11697
11698static int tg3_test_link(struct tg3 *tp)
11699{
11700 int i, max;
11701
11702 if (!netif_running(tp->dev))
11703 return -ENODEV;
11704
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011705 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070011706 max = TG3_SERDES_TIMEOUT_SEC;
11707 else
11708 max = TG3_COPPER_TIMEOUT_SEC;
11709
11710 for (i = 0; i < max; i++) {
11711 if (netif_carrier_ok(tp->dev))
11712 return 0;
11713
11714 if (msleep_interruptible(1000))
11715 break;
11716 }
11717
11718 return -EIO;
11719}
11720
Michael Chana71116d2005-05-29 14:58:11 -070011721/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080011722static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070011723{
Michael Chanb16250e2006-09-27 16:10:14 -070011724 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070011725 u32 offset, read_mask, write_mask, val, save_val, read_val;
11726 static struct {
11727 u16 offset;
11728 u16 flags;
11729#define TG3_FL_5705 0x1
11730#define TG3_FL_NOT_5705 0x2
11731#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070011732#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070011733 u32 read_mask;
11734 u32 write_mask;
11735 } reg_tbl[] = {
11736 /* MAC Control Registers */
11737 { MAC_MODE, TG3_FL_NOT_5705,
11738 0x00000000, 0x00ef6f8c },
11739 { MAC_MODE, TG3_FL_5705,
11740 0x00000000, 0x01ef6b8c },
11741 { MAC_STATUS, TG3_FL_NOT_5705,
11742 0x03800107, 0x00000000 },
11743 { MAC_STATUS, TG3_FL_5705,
11744 0x03800100, 0x00000000 },
11745 { MAC_ADDR_0_HIGH, 0x0000,
11746 0x00000000, 0x0000ffff },
11747 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011748 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070011749 { MAC_RX_MTU_SIZE, 0x0000,
11750 0x00000000, 0x0000ffff },
11751 { MAC_TX_MODE, 0x0000,
11752 0x00000000, 0x00000070 },
11753 { MAC_TX_LENGTHS, 0x0000,
11754 0x00000000, 0x00003fff },
11755 { MAC_RX_MODE, TG3_FL_NOT_5705,
11756 0x00000000, 0x000007fc },
11757 { MAC_RX_MODE, TG3_FL_5705,
11758 0x00000000, 0x000007dc },
11759 { MAC_HASH_REG_0, 0x0000,
11760 0x00000000, 0xffffffff },
11761 { MAC_HASH_REG_1, 0x0000,
11762 0x00000000, 0xffffffff },
11763 { MAC_HASH_REG_2, 0x0000,
11764 0x00000000, 0xffffffff },
11765 { MAC_HASH_REG_3, 0x0000,
11766 0x00000000, 0xffffffff },
11767
11768 /* Receive Data and Receive BD Initiator Control Registers. */
11769 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
11770 0x00000000, 0xffffffff },
11771 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
11772 0x00000000, 0xffffffff },
11773 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
11774 0x00000000, 0x00000003 },
11775 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
11776 0x00000000, 0xffffffff },
11777 { RCVDBDI_STD_BD+0, 0x0000,
11778 0x00000000, 0xffffffff },
11779 { RCVDBDI_STD_BD+4, 0x0000,
11780 0x00000000, 0xffffffff },
11781 { RCVDBDI_STD_BD+8, 0x0000,
11782 0x00000000, 0xffff0002 },
11783 { RCVDBDI_STD_BD+0xc, 0x0000,
11784 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011785
Michael Chana71116d2005-05-29 14:58:11 -070011786 /* Receive BD Initiator Control Registers. */
11787 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
11788 0x00000000, 0xffffffff },
11789 { RCVBDI_STD_THRESH, TG3_FL_5705,
11790 0x00000000, 0x000003ff },
11791 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
11792 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011793
Michael Chana71116d2005-05-29 14:58:11 -070011794 /* Host Coalescing Control Registers. */
11795 { HOSTCC_MODE, TG3_FL_NOT_5705,
11796 0x00000000, 0x00000004 },
11797 { HOSTCC_MODE, TG3_FL_5705,
11798 0x00000000, 0x000000f6 },
11799 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
11800 0x00000000, 0xffffffff },
11801 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
11802 0x00000000, 0x000003ff },
11803 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
11804 0x00000000, 0xffffffff },
11805 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
11806 0x00000000, 0x000003ff },
11807 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
11808 0x00000000, 0xffffffff },
11809 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11810 0x00000000, 0x000000ff },
11811 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
11812 0x00000000, 0xffffffff },
11813 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11814 0x00000000, 0x000000ff },
11815 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
11816 0x00000000, 0xffffffff },
11817 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
11818 0x00000000, 0xffffffff },
11819 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11820 0x00000000, 0xffffffff },
11821 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11822 0x00000000, 0x000000ff },
11823 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11824 0x00000000, 0xffffffff },
11825 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11826 0x00000000, 0x000000ff },
11827 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
11828 0x00000000, 0xffffffff },
11829 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
11830 0x00000000, 0xffffffff },
11831 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
11832 0x00000000, 0xffffffff },
11833 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
11834 0x00000000, 0xffffffff },
11835 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
11836 0x00000000, 0xffffffff },
11837 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
11838 0xffffffff, 0x00000000 },
11839 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
11840 0xffffffff, 0x00000000 },
11841
11842 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070011843 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011844 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070011845 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011846 0x00000000, 0x007fffff },
11847 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
11848 0x00000000, 0x0000003f },
11849 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
11850 0x00000000, 0x000001ff },
11851 { BUFMGR_MB_HIGH_WATER, 0x0000,
11852 0x00000000, 0x000001ff },
11853 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
11854 0xffffffff, 0x00000000 },
11855 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
11856 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011857
Michael Chana71116d2005-05-29 14:58:11 -070011858 /* Mailbox Registers */
11859 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
11860 0x00000000, 0x000001ff },
11861 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
11862 0x00000000, 0x000001ff },
11863 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
11864 0x00000000, 0x000007ff },
11865 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
11866 0x00000000, 0x000001ff },
11867
11868 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
11869 };
11870
Michael Chanb16250e2006-09-27 16:10:14 -070011871 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011872 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070011873 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000011874 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070011875 is_5750 = 1;
11876 }
Michael Chana71116d2005-05-29 14:58:11 -070011877
11878 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
11879 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
11880 continue;
11881
11882 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
11883 continue;
11884
Joe Perches63c3a662011-04-26 08:12:10 +000011885 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070011886 (reg_tbl[i].flags & TG3_FL_NOT_5788))
11887 continue;
11888
Michael Chanb16250e2006-09-27 16:10:14 -070011889 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
11890 continue;
11891
Michael Chana71116d2005-05-29 14:58:11 -070011892 offset = (u32) reg_tbl[i].offset;
11893 read_mask = reg_tbl[i].read_mask;
11894 write_mask = reg_tbl[i].write_mask;
11895
11896 /* Save the original register content */
11897 save_val = tr32(offset);
11898
11899 /* Determine the read-only value. */
11900 read_val = save_val & read_mask;
11901
11902 /* Write zero to the register, then make sure the read-only bits
11903 * are not changed and the read/write bits are all zeros.
11904 */
11905 tw32(offset, 0);
11906
11907 val = tr32(offset);
11908
11909 /* Test the read-only and read/write bits. */
11910 if (((val & read_mask) != read_val) || (val & write_mask))
11911 goto out;
11912
11913 /* Write ones to all the bits defined by RdMask and WrMask, then
11914 * make sure the read-only bits are not changed and the
11915 * read/write bits are all ones.
11916 */
11917 tw32(offset, read_mask | write_mask);
11918
11919 val = tr32(offset);
11920
11921 /* Test the read-only bits. */
11922 if ((val & read_mask) != read_val)
11923 goto out;
11924
11925 /* Test the read/write bits. */
11926 if ((val & write_mask) != write_mask)
11927 goto out;
11928
11929 tw32(offset, save_val);
11930 }
11931
11932 return 0;
11933
11934out:
Michael Chan9f88f292006-12-07 00:22:54 -080011935 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000011936 netdev_err(tp->dev,
11937 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070011938 tw32(offset, save_val);
11939 return -EIO;
11940}
11941
Michael Chan7942e1d2005-05-29 14:58:36 -070011942static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
11943{
Arjan van de Venf71e1302006-03-03 21:33:57 -050011944 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070011945 int i;
11946 u32 j;
11947
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020011948 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070011949 for (j = 0; j < len; j += 4) {
11950 u32 val;
11951
11952 tg3_write_mem(tp, offset + j, test_pattern[i]);
11953 tg3_read_mem(tp, offset + j, &val);
11954 if (val != test_pattern[i])
11955 return -EIO;
11956 }
11957 }
11958 return 0;
11959}
11960
11961static int tg3_test_memory(struct tg3 *tp)
11962{
11963 static struct mem_entry {
11964 u32 offset;
11965 u32 len;
11966 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080011967 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070011968 { 0x00002000, 0x1c000},
11969 { 0xffffffff, 0x00000}
11970 }, mem_tbl_5705[] = {
11971 { 0x00000100, 0x0000c},
11972 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070011973 { 0x00004000, 0x00800},
11974 { 0x00006000, 0x01000},
11975 { 0x00008000, 0x02000},
11976 { 0x00010000, 0x0e000},
11977 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080011978 }, mem_tbl_5755[] = {
11979 { 0x00000200, 0x00008},
11980 { 0x00004000, 0x00800},
11981 { 0x00006000, 0x00800},
11982 { 0x00008000, 0x02000},
11983 { 0x00010000, 0x0c000},
11984 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070011985 }, mem_tbl_5906[] = {
11986 { 0x00000200, 0x00008},
11987 { 0x00004000, 0x00400},
11988 { 0x00006000, 0x00400},
11989 { 0x00008000, 0x01000},
11990 { 0x00010000, 0x01000},
11991 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011992 }, mem_tbl_5717[] = {
11993 { 0x00000200, 0x00008},
11994 { 0x00010000, 0x0a000},
11995 { 0x00020000, 0x13c00},
11996 { 0xffffffff, 0x00000}
11997 }, mem_tbl_57765[] = {
11998 { 0x00000200, 0x00008},
11999 { 0x00004000, 0x00800},
12000 { 0x00006000, 0x09800},
12001 { 0x00010000, 0x0a000},
12002 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070012003 };
12004 struct mem_entry *mem_tbl;
12005 int err = 0;
12006 int i;
12007
Joe Perches63c3a662011-04-26 08:12:10 +000012008 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012009 mem_tbl = mem_tbl_5717;
Matt Carlson55086ad2011-12-14 11:09:59 +000012010 else if (tg3_flag(tp, 57765_CLASS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012011 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000012012 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012013 mem_tbl = mem_tbl_5755;
12014 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12015 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000012016 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012017 mem_tbl = mem_tbl_5705;
12018 else
Michael Chan7942e1d2005-05-29 14:58:36 -070012019 mem_tbl = mem_tbl_570x;
12020
12021 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000012022 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
12023 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070012024 break;
12025 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012026
Michael Chan7942e1d2005-05-29 14:58:36 -070012027 return err;
12028}
12029
Matt Carlsonbb158d62011-04-25 12:42:47 +000012030#define TG3_TSO_MSS 500
12031
12032#define TG3_TSO_IP_HDR_LEN 20
12033#define TG3_TSO_TCP_HDR_LEN 20
12034#define TG3_TSO_TCP_OPT_LEN 12
12035
12036static const u8 tg3_tso_header[] = {
120370x08, 0x00,
120380x45, 0x00, 0x00, 0x00,
120390x00, 0x00, 0x40, 0x00,
120400x40, 0x06, 0x00, 0x00,
120410x0a, 0x00, 0x00, 0x01,
120420x0a, 0x00, 0x00, 0x02,
120430x0d, 0x00, 0xe0, 0x00,
120440x00, 0x00, 0x01, 0x00,
120450x00, 0x00, 0x02, 0x00,
120460x80, 0x10, 0x10, 0x00,
120470x14, 0x09, 0x00, 0x00,
120480x01, 0x01, 0x08, 0x0a,
120490x11, 0x11, 0x11, 0x11,
120500x11, 0x11, 0x11, 0x11,
12051};
Michael Chan9f40dea2005-09-05 17:53:06 -070012052
Matt Carlson28a45952011-08-19 13:58:22 +000012053static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070012054{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012055 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012056 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000012057 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000012058 struct sk_buff *skb;
12059 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070012060 dma_addr_t map;
12061 int num_pkts, tx_len, rx_len, i, err;
12062 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000012063 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000012064 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070012065
Matt Carlsonc8873402010-02-12 14:47:11 +000012066 tnapi = &tp->napi[0];
12067 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012068 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000012069 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000012070 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000012071 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000012072 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012073 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012074 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000012075
Michael Chanc76949a2005-05-29 14:58:59 -070012076 err = -EIO;
12077
Matt Carlson4852a862011-04-13 11:05:07 +000012078 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070012079 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070012080 if (!skb)
12081 return -ENOMEM;
12082
Michael Chanc76949a2005-05-29 14:58:59 -070012083 tx_data = skb_put(skb, tx_len);
12084 memcpy(tx_data, tp->dev->dev_addr, 6);
12085 memset(tx_data + 6, 0x0, 8);
12086
Matt Carlson4852a862011-04-13 11:05:07 +000012087 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070012088
Matt Carlson28a45952011-08-19 13:58:22 +000012089 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012090 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
12091
12092 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
12093 TG3_TSO_TCP_OPT_LEN;
12094
12095 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
12096 sizeof(tg3_tso_header));
12097 mss = TG3_TSO_MSS;
12098
12099 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
12100 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
12101
12102 /* Set the total length field in the IP header */
12103 iph->tot_len = htons((u16)(mss + hdr_len));
12104
12105 base_flags = (TXD_FLAG_CPU_PRE_DMA |
12106 TXD_FLAG_CPU_POST_DMA);
12107
Joe Perches63c3a662011-04-26 08:12:10 +000012108 if (tg3_flag(tp, HW_TSO_1) ||
12109 tg3_flag(tp, HW_TSO_2) ||
12110 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012111 struct tcphdr *th;
12112 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
12113 th = (struct tcphdr *)&tx_data[val];
12114 th->check = 0;
12115 } else
12116 base_flags |= TXD_FLAG_TCPUDP_CSUM;
12117
Joe Perches63c3a662011-04-26 08:12:10 +000012118 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012119 mss |= (hdr_len & 0xc) << 12;
12120 if (hdr_len & 0x10)
12121 base_flags |= 0x00000010;
12122 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000012123 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000012124 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000012125 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000012126 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
12127 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
12128 } else {
12129 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
12130 }
12131
12132 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
12133 } else {
12134 num_pkts = 1;
12135 data_off = ETH_HLEN;
Michael Chanc441b452012-03-04 14:48:13 +000012136
12137 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
12138 tx_len > VLAN_ETH_FRAME_LEN)
12139 base_flags |= TXD_FLAG_JMB_PKT;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012140 }
12141
12142 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070012143 tx_data[i] = (u8) (i & 0xff);
12144
Alexander Duyckf4188d82009-12-02 16:48:38 +000012145 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
12146 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000012147 dev_kfree_skb(skb);
12148 return -EIO;
12149 }
Michael Chanc76949a2005-05-29 14:58:59 -070012150
Matt Carlson0d681b22011-07-27 14:20:49 +000012151 val = tnapi->tx_prod;
12152 tnapi->tx_buffers[val].skb = skb;
12153 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
12154
Michael Chanc76949a2005-05-29 14:58:59 -070012155 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012156 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070012157
12158 udelay(10);
12159
Matt Carlson898a56f2009-08-28 14:02:40 +000012160 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070012161
Matt Carlson84b67b22011-07-27 14:20:52 +000012162 budget = tg3_tx_avail(tnapi);
12163 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000012164 base_flags | TXD_FLAG_END, mss, 0)) {
12165 tnapi->tx_buffers[val].skb = NULL;
12166 dev_kfree_skb(skb);
12167 return -EIO;
12168 }
Michael Chanc76949a2005-05-29 14:58:59 -070012169
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012170 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070012171
Michael Chan6541b802012-03-04 14:48:14 +000012172 /* Sync BD data before updating mailbox */
12173 wmb();
12174
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012175 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
12176 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070012177
12178 udelay(10);
12179
Matt Carlson303fc922009-11-02 14:27:34 +000012180 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
12181 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070012182 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012183 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070012184
12185 udelay(10);
12186
Matt Carlson898a56f2009-08-28 14:02:40 +000012187 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
12188 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012189 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070012190 (rx_idx == (rx_start_idx + num_pkts)))
12191 break;
12192 }
12193
Matt Carlsonba1142e2011-11-04 09:15:00 +000012194 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070012195 dev_kfree_skb(skb);
12196
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012197 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070012198 goto out;
12199
12200 if (rx_idx != rx_start_idx + num_pkts)
12201 goto out;
12202
Matt Carlsonbb158d62011-04-25 12:42:47 +000012203 val = data_off;
12204 while (rx_idx != rx_start_idx) {
12205 desc = &rnapi->rx_rcb[rx_start_idx++];
12206 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
12207 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070012208
Matt Carlsonbb158d62011-04-25 12:42:47 +000012209 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
12210 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000012211 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070012212
Matt Carlsonbb158d62011-04-25 12:42:47 +000012213 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
12214 - ETH_FCS_LEN;
12215
Matt Carlson28a45952011-08-19 13:58:22 +000012216 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012217 if (rx_len != tx_len)
12218 goto out;
12219
12220 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
12221 if (opaque_key != RXD_OPAQUE_RING_STD)
12222 goto out;
12223 } else {
12224 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
12225 goto out;
12226 }
12227 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
12228 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000012229 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012230 goto out;
12231 }
12232
12233 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000012234 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012235 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
12236 mapping);
12237 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000012238 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012239 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
12240 mapping);
12241 } else
Matt Carlson4852a862011-04-13 11:05:07 +000012242 goto out;
12243
Matt Carlsonbb158d62011-04-25 12:42:47 +000012244 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
12245 PCI_DMA_FROMDEVICE);
12246
Eric Dumazet9205fd92011-11-18 06:47:01 +000012247 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000012248 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000012249 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000012250 goto out;
12251 }
Matt Carlson4852a862011-04-13 11:05:07 +000012252 }
12253
Michael Chanc76949a2005-05-29 14:58:59 -070012254 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012255
Eric Dumazet9205fd92011-11-18 06:47:01 +000012256 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070012257out:
12258 return err;
12259}
12260
Matt Carlson00c266b2011-04-25 12:42:46 +000012261#define TG3_STD_LOOPBACK_FAILED 1
12262#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000012263#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000012264#define TG3_LOOPBACK_FAILED \
12265 (TG3_STD_LOOPBACK_FAILED | \
12266 TG3_JMB_LOOPBACK_FAILED | \
12267 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000012268
Matt Carlson941ec902011-08-19 13:58:23 +000012269static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070012270{
Matt Carlson28a45952011-08-19 13:58:22 +000012271 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000012272 u32 eee_cap;
Michael Chanc441b452012-03-04 14:48:13 +000012273 u32 jmb_pkt_sz = 9000;
12274
12275 if (tp->dma_limit)
12276 jmb_pkt_sz = tp->dma_limit - ETH_HLEN;
Michael Chan9f40dea2005-09-05 17:53:06 -070012277
Matt Carlsonab789042011-01-25 15:58:54 +000012278 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
12279 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
12280
Matt Carlson28a45952011-08-19 13:58:22 +000012281 if (!netif_running(tp->dev)) {
12282 data[0] = TG3_LOOPBACK_FAILED;
12283 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012284 if (do_extlpbk)
12285 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000012286 goto done;
12287 }
12288
Michael Chanb9ec6c12006-07-25 16:37:27 -070012289 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000012290 if (err) {
Matt Carlson28a45952011-08-19 13:58:22 +000012291 data[0] = TG3_LOOPBACK_FAILED;
12292 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012293 if (do_extlpbk)
12294 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000012295 goto done;
12296 }
Michael Chan9f40dea2005-09-05 17:53:06 -070012297
Joe Perches63c3a662011-04-26 08:12:10 +000012298 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000012299 int i;
12300
12301 /* Reroute all rx packets to the 1st queue */
12302 for (i = MAC_RSS_INDIR_TBL_0;
12303 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
12304 tw32(i, 0x0);
12305 }
12306
Matt Carlson6e01b202011-08-19 13:58:20 +000012307 /* HW errata - mac loopback fails in some cases on 5780.
12308 * Normal traffic and PHY loopback are not affected by
12309 * errata. Also, the MAC loopback test is deprecated for
12310 * all newer ASIC revisions.
12311 */
12312 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
12313 !tg3_flag(tp, CPMU_PRESENT)) {
12314 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070012315
Matt Carlson28a45952011-08-19 13:58:22 +000012316 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
12317 data[0] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000012318
12319 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000012320 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson28a45952011-08-19 13:58:22 +000012321 data[0] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000012322
12323 tg3_mac_loopback(tp, false);
12324 }
Matt Carlson4852a862011-04-13 11:05:07 +000012325
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012326 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012327 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012328 int i;
12329
Matt Carlson941ec902011-08-19 13:58:23 +000012330 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012331
12332 /* Wait for link */
12333 for (i = 0; i < 100; i++) {
12334 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
12335 break;
12336 mdelay(1);
12337 }
12338
Matt Carlson28a45952011-08-19 13:58:22 +000012339 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
12340 data[1] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000012341 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000012342 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
12343 data[1] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000012344 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000012345 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson28a45952011-08-19 13:58:22 +000012346 data[1] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070012347
Matt Carlson941ec902011-08-19 13:58:23 +000012348 if (do_extlpbk) {
12349 tg3_phy_lpbk_set(tp, 0, true);
12350
12351 /* All link indications report up, but the hardware
12352 * isn't really ready for about 20 msec. Double it
12353 * to be sure.
12354 */
12355 mdelay(40);
12356
12357 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
12358 data[2] |= TG3_STD_LOOPBACK_FAILED;
12359 if (tg3_flag(tp, TSO_CAPABLE) &&
12360 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
12361 data[2] |= TG3_TSO_LOOPBACK_FAILED;
12362 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000012363 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson941ec902011-08-19 13:58:23 +000012364 data[2] |= TG3_JMB_LOOPBACK_FAILED;
12365 }
12366
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012367 /* Re-enable gphy autopowerdown. */
12368 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
12369 tg3_phy_toggle_apd(tp, true);
12370 }
Matt Carlson6833c042008-11-21 17:18:59 -080012371
Matt Carlson941ec902011-08-19 13:58:23 +000012372 err = (data[0] | data[1] | data[2]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000012373
Matt Carlsonab789042011-01-25 15:58:54 +000012374done:
12375 tp->phy_flags |= eee_cap;
12376
Michael Chan9f40dea2005-09-05 17:53:06 -070012377 return err;
12378}
12379
Michael Chan4cafd3f2005-05-29 14:56:34 -070012380static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
12381 u64 *data)
12382{
Michael Chan566f86a2005-05-29 14:56:58 -070012383 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000012384 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070012385
Matt Carlsonbed98292011-07-13 09:27:29 +000012386 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
12387 tg3_power_up(tp)) {
12388 etest->flags |= ETH_TEST_FL_FAILED;
12389 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
12390 return;
12391 }
Michael Chanbc1c7562006-03-20 17:48:03 -080012392
Michael Chan566f86a2005-05-29 14:56:58 -070012393 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
12394
12395 if (tg3_test_nvram(tp) != 0) {
12396 etest->flags |= ETH_TEST_FL_FAILED;
12397 data[0] = 1;
12398 }
Matt Carlson941ec902011-08-19 13:58:23 +000012399 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070012400 etest->flags |= ETH_TEST_FL_FAILED;
12401 data[1] = 1;
12402 }
Michael Chana71116d2005-05-29 14:58:11 -070012403 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012404 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070012405
Michael Chanbbe832c2005-06-24 20:20:04 -070012406 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012407 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012408 tg3_netif_stop(tp);
12409 irq_sync = 1;
12410 }
12411
12412 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070012413
12414 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080012415 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012416 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000012417 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070012418 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080012419 if (!err)
12420 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012421
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012422 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080012423 tg3_phy_reset(tp);
12424
Michael Chana71116d2005-05-29 14:58:11 -070012425 if (tg3_test_registers(tp) != 0) {
12426 etest->flags |= ETH_TEST_FL_FAILED;
12427 data[2] = 1;
12428 }
Matt Carlson28a45952011-08-19 13:58:22 +000012429
Michael Chan7942e1d2005-05-29 14:58:36 -070012430 if (tg3_test_memory(tp) != 0) {
12431 etest->flags |= ETH_TEST_FL_FAILED;
12432 data[3] = 1;
12433 }
Matt Carlson28a45952011-08-19 13:58:22 +000012434
Matt Carlson941ec902011-08-19 13:58:23 +000012435 if (doextlpbk)
12436 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
12437
12438 if (tg3_test_loopback(tp, &data[4], doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070012439 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070012440
David S. Millerf47c11e2005-06-24 20:18:35 -070012441 tg3_full_unlock(tp);
12442
Michael Chand4bc3922005-05-29 14:59:20 -070012443 if (tg3_test_interrupt(tp) != 0) {
12444 etest->flags |= ETH_TEST_FL_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012445 data[7] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070012446 }
David S. Millerf47c11e2005-06-24 20:18:35 -070012447
12448 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070012449
Michael Chana71116d2005-05-29 14:58:11 -070012450 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
12451 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012452 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012453 err2 = tg3_restart_hw(tp, 1);
12454 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070012455 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012456 }
David S. Millerf47c11e2005-06-24 20:18:35 -070012457
12458 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012459
12460 if (irq_sync && !err2)
12461 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012462 }
Matt Carlson80096062010-08-02 11:26:06 +000012463 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000012464 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080012465
Michael Chan4cafd3f2005-05-29 14:56:34 -070012466}
12467
Linus Torvalds1da177e2005-04-16 15:20:36 -070012468static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
12469{
12470 struct mii_ioctl_data *data = if_mii(ifr);
12471 struct tg3 *tp = netdev_priv(dev);
12472 int err;
12473
Joe Perches63c3a662011-04-26 08:12:10 +000012474 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012475 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012476 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012477 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012478 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000012479 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012480 }
12481
Matt Carlson33f401a2010-04-05 10:19:27 +000012482 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012483 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000012484 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012485
12486 /* fallthru */
12487 case SIOCGMIIREG: {
12488 u32 mii_regval;
12489
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012490 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012491 break; /* We have no PHY */
12492
Matt Carlson34eea5a2011-04-20 07:57:38 +000012493 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080012494 return -EAGAIN;
12495
David S. Millerf47c11e2005-06-24 20:18:35 -070012496 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012497 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070012498 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012499
12500 data->val_out = mii_regval;
12501
12502 return err;
12503 }
12504
12505 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012506 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012507 break; /* We have no PHY */
12508
Matt Carlson34eea5a2011-04-20 07:57:38 +000012509 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080012510 return -EAGAIN;
12511
David S. Millerf47c11e2005-06-24 20:18:35 -070012512 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012513 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070012514 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012515
12516 return err;
12517
12518 default:
12519 /* do nothing */
12520 break;
12521 }
12522 return -EOPNOTSUPP;
12523}
12524
David S. Miller15f98502005-05-18 22:49:26 -070012525static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
12526{
12527 struct tg3 *tp = netdev_priv(dev);
12528
12529 memcpy(ec, &tp->coal, sizeof(*ec));
12530 return 0;
12531}
12532
Michael Chand244c892005-07-05 14:42:33 -070012533static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
12534{
12535 struct tg3 *tp = netdev_priv(dev);
12536 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
12537 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
12538
Joe Perches63c3a662011-04-26 08:12:10 +000012539 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070012540 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
12541 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
12542 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
12543 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
12544 }
12545
12546 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
12547 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
12548 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
12549 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
12550 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
12551 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
12552 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
12553 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
12554 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
12555 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
12556 return -EINVAL;
12557
12558 /* No rx interrupts will be generated if both are zero */
12559 if ((ec->rx_coalesce_usecs == 0) &&
12560 (ec->rx_max_coalesced_frames == 0))
12561 return -EINVAL;
12562
12563 /* No tx interrupts will be generated if both are zero */
12564 if ((ec->tx_coalesce_usecs == 0) &&
12565 (ec->tx_max_coalesced_frames == 0))
12566 return -EINVAL;
12567
12568 /* Only copy relevant parameters, ignore all others. */
12569 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
12570 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
12571 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
12572 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
12573 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
12574 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
12575 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
12576 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
12577 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
12578
12579 if (netif_running(dev)) {
12580 tg3_full_lock(tp, 0);
12581 __tg3_set_coalesce(tp, &tp->coal);
12582 tg3_full_unlock(tp);
12583 }
12584 return 0;
12585}
12586
Jeff Garzik7282d492006-09-13 14:30:00 -040012587static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012588 .get_settings = tg3_get_settings,
12589 .set_settings = tg3_set_settings,
12590 .get_drvinfo = tg3_get_drvinfo,
12591 .get_regs_len = tg3_get_regs_len,
12592 .get_regs = tg3_get_regs,
12593 .get_wol = tg3_get_wol,
12594 .set_wol = tg3_set_wol,
12595 .get_msglevel = tg3_get_msglevel,
12596 .set_msglevel = tg3_set_msglevel,
12597 .nway_reset = tg3_nway_reset,
12598 .get_link = ethtool_op_get_link,
12599 .get_eeprom_len = tg3_get_eeprom_len,
12600 .get_eeprom = tg3_get_eeprom,
12601 .set_eeprom = tg3_set_eeprom,
12602 .get_ringparam = tg3_get_ringparam,
12603 .set_ringparam = tg3_set_ringparam,
12604 .get_pauseparam = tg3_get_pauseparam,
12605 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070012606 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012607 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000012608 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012609 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070012610 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070012611 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070012612 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000012613 .get_rxnfc = tg3_get_rxnfc,
12614 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
12615 .get_rxfh_indir = tg3_get_rxfh_indir,
12616 .set_rxfh_indir = tg3_set_rxfh_indir,
Richard Cochran3f847492012-04-03 22:59:39 +000012617 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012618};
12619
David S. Millerb4017c52012-03-01 17:57:40 -050012620static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
12621 struct rtnl_link_stats64 *stats)
12622{
12623 struct tg3 *tp = netdev_priv(dev);
12624
David S. Millerb4017c52012-03-01 17:57:40 -050012625 spin_lock_bh(&tp->lock);
Michael Chan0f566b22012-07-29 19:15:44 +000012626 if (!tp->hw_stats) {
12627 spin_unlock_bh(&tp->lock);
12628 return &tp->net_stats_prev;
12629 }
12630
David S. Millerb4017c52012-03-01 17:57:40 -050012631 tg3_get_nstats(tp, stats);
12632 spin_unlock_bh(&tp->lock);
12633
12634 return stats;
12635}
12636
Matt Carlsonccd5ba92012-02-13 10:20:08 +000012637static void tg3_set_rx_mode(struct net_device *dev)
12638{
12639 struct tg3 *tp = netdev_priv(dev);
12640
12641 if (!netif_running(dev))
12642 return;
12643
12644 tg3_full_lock(tp, 0);
12645 __tg3_set_rx_mode(dev);
12646 tg3_full_unlock(tp);
12647}
12648
Matt Carlsonfaf16272012-02-13 10:20:07 +000012649static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
12650 int new_mtu)
12651{
12652 dev->mtu = new_mtu;
12653
12654 if (new_mtu > ETH_DATA_LEN) {
12655 if (tg3_flag(tp, 5780_CLASS)) {
12656 netdev_update_features(dev);
12657 tg3_flag_clear(tp, TSO_CAPABLE);
12658 } else {
12659 tg3_flag_set(tp, JUMBO_RING_ENABLE);
12660 }
12661 } else {
12662 if (tg3_flag(tp, 5780_CLASS)) {
12663 tg3_flag_set(tp, TSO_CAPABLE);
12664 netdev_update_features(dev);
12665 }
12666 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
12667 }
12668}
12669
12670static int tg3_change_mtu(struct net_device *dev, int new_mtu)
12671{
12672 struct tg3 *tp = netdev_priv(dev);
Michael Chan2fae5e32012-03-04 14:48:15 +000012673 int err, reset_phy = 0;
Matt Carlsonfaf16272012-02-13 10:20:07 +000012674
12675 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
12676 return -EINVAL;
12677
12678 if (!netif_running(dev)) {
12679 /* We'll just catch it later when the
12680 * device is up'd.
12681 */
12682 tg3_set_mtu(dev, tp, new_mtu);
12683 return 0;
12684 }
12685
12686 tg3_phy_stop(tp);
12687
12688 tg3_netif_stop(tp);
12689
12690 tg3_full_lock(tp, 1);
12691
12692 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
12693
12694 tg3_set_mtu(dev, tp, new_mtu);
12695
Michael Chan2fae5e32012-03-04 14:48:15 +000012696 /* Reset PHY, otherwise the read DMA engine will be in a mode that
12697 * breaks all requests to 256 bytes.
12698 */
12699 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
12700 reset_phy = 1;
12701
12702 err = tg3_restart_hw(tp, reset_phy);
Matt Carlsonfaf16272012-02-13 10:20:07 +000012703
12704 if (!err)
12705 tg3_netif_start(tp);
12706
12707 tg3_full_unlock(tp);
12708
12709 if (!err)
12710 tg3_phy_start(tp);
12711
12712 return err;
12713}
12714
12715static const struct net_device_ops tg3_netdev_ops = {
12716 .ndo_open = tg3_open,
12717 .ndo_stop = tg3_close,
12718 .ndo_start_xmit = tg3_start_xmit,
12719 .ndo_get_stats64 = tg3_get_stats64,
12720 .ndo_validate_addr = eth_validate_addr,
12721 .ndo_set_rx_mode = tg3_set_rx_mode,
12722 .ndo_set_mac_address = tg3_set_mac_addr,
12723 .ndo_do_ioctl = tg3_ioctl,
12724 .ndo_tx_timeout = tg3_tx_timeout,
12725 .ndo_change_mtu = tg3_change_mtu,
12726 .ndo_fix_features = tg3_fix_features,
12727 .ndo_set_features = tg3_set_features,
12728#ifdef CONFIG_NET_POLL_CONTROLLER
12729 .ndo_poll_controller = tg3_poll_controller,
12730#endif
12731};
12732
Linus Torvalds1da177e2005-04-16 15:20:36 -070012733static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
12734{
Michael Chan1b277772006-03-20 22:27:48 -080012735 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012736
12737 tp->nvram_size = EEPROM_CHIP_SIZE;
12738
Matt Carlsone4f34112009-02-25 14:25:00 +000012739 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012740 return;
12741
Michael Chanb16250e2006-09-27 16:10:14 -070012742 if ((magic != TG3_EEPROM_MAGIC) &&
12743 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
12744 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012745 return;
12746
12747 /*
12748 * Size the chip by reading offsets at increasing powers of two.
12749 * When we encounter our validation signature, we know the addressing
12750 * has wrapped around, and thus have our chip size.
12751 */
Michael Chan1b277772006-03-20 22:27:48 -080012752 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012753
12754 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000012755 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012756 return;
12757
Michael Chan18201802006-03-20 22:29:15 -080012758 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012759 break;
12760
12761 cursize <<= 1;
12762 }
12763
12764 tp->nvram_size = cursize;
12765}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012766
Linus Torvalds1da177e2005-04-16 15:20:36 -070012767static void __devinit tg3_get_nvram_size(struct tg3 *tp)
12768{
12769 u32 val;
12770
Joe Perches63c3a662011-04-26 08:12:10 +000012771 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012772 return;
12773
12774 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080012775 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080012776 tg3_get_eeprom_size(tp);
12777 return;
12778 }
12779
Matt Carlson6d348f22009-02-25 14:25:52 +000012780 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012781 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000012782 /* This is confusing. We want to operate on the
12783 * 16-bit value at offset 0xf2. The tg3_nvram_read()
12784 * call will read from NVRAM and byteswap the data
12785 * according to the byteswapping settings for all
12786 * other register accesses. This ensures the data we
12787 * want will always reside in the lower 16-bits.
12788 * However, the data in NVRAM is in LE format, which
12789 * means the data from the NVRAM read will always be
12790 * opposite the endianness of the CPU. The 16-bit
12791 * byteswap then brings the data to CPU endianness.
12792 */
12793 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012794 return;
12795 }
12796 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070012797 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012798}
12799
12800static void __devinit tg3_get_nvram_info(struct tg3 *tp)
12801{
12802 u32 nvcfg1;
12803
12804 nvcfg1 = tr32(NVRAM_CFG1);
12805 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000012806 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012807 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012808 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12809 tw32(NVRAM_CFG1, nvcfg1);
12810 }
12811
Matt Carlson6ff6f812011-05-19 12:12:54 +000012812 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000012813 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012814 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012815 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
12816 tp->nvram_jedecnum = JEDEC_ATMEL;
12817 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012818 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012819 break;
12820 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
12821 tp->nvram_jedecnum = JEDEC_ATMEL;
12822 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
12823 break;
12824 case FLASH_VENDOR_ATMEL_EEPROM:
12825 tp->nvram_jedecnum = JEDEC_ATMEL;
12826 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012827 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012828 break;
12829 case FLASH_VENDOR_ST:
12830 tp->nvram_jedecnum = JEDEC_ST;
12831 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012832 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012833 break;
12834 case FLASH_VENDOR_SAIFUN:
12835 tp->nvram_jedecnum = JEDEC_SAIFUN;
12836 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
12837 break;
12838 case FLASH_VENDOR_SST_SMALL:
12839 case FLASH_VENDOR_SST_LARGE:
12840 tp->nvram_jedecnum = JEDEC_SST;
12841 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
12842 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012843 }
Matt Carlson8590a602009-08-28 12:29:16 +000012844 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012845 tp->nvram_jedecnum = JEDEC_ATMEL;
12846 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012847 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012848 }
12849}
12850
Matt Carlsona1b950d2009-09-01 13:20:17 +000012851static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
12852{
12853 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
12854 case FLASH_5752PAGE_SIZE_256:
12855 tp->nvram_pagesize = 256;
12856 break;
12857 case FLASH_5752PAGE_SIZE_512:
12858 tp->nvram_pagesize = 512;
12859 break;
12860 case FLASH_5752PAGE_SIZE_1K:
12861 tp->nvram_pagesize = 1024;
12862 break;
12863 case FLASH_5752PAGE_SIZE_2K:
12864 tp->nvram_pagesize = 2048;
12865 break;
12866 case FLASH_5752PAGE_SIZE_4K:
12867 tp->nvram_pagesize = 4096;
12868 break;
12869 case FLASH_5752PAGE_SIZE_264:
12870 tp->nvram_pagesize = 264;
12871 break;
12872 case FLASH_5752PAGE_SIZE_528:
12873 tp->nvram_pagesize = 528;
12874 break;
12875 }
12876}
12877
Michael Chan361b4ac2005-04-21 17:11:21 -070012878static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
12879{
12880 u32 nvcfg1;
12881
12882 nvcfg1 = tr32(NVRAM_CFG1);
12883
Michael Chane6af3012005-04-21 17:12:05 -070012884 /* NVRAM protection for TPM */
12885 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000012886 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070012887
Michael Chan361b4ac2005-04-21 17:11:21 -070012888 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012889 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
12890 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
12891 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012892 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012893 break;
12894 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12895 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012896 tg3_flag_set(tp, NVRAM_BUFFERED);
12897 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012898 break;
12899 case FLASH_5752VENDOR_ST_M45PE10:
12900 case FLASH_5752VENDOR_ST_M45PE20:
12901 case FLASH_5752VENDOR_ST_M45PE40:
12902 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012903 tg3_flag_set(tp, NVRAM_BUFFERED);
12904 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012905 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070012906 }
12907
Joe Perches63c3a662011-04-26 08:12:10 +000012908 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000012909 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000012910 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070012911 /* For eeprom, set pagesize to maximum eeprom size */
12912 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12913
12914 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12915 tw32(NVRAM_CFG1, nvcfg1);
12916 }
12917}
12918
Michael Chand3c7b882006-03-23 01:28:25 -080012919static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
12920{
Matt Carlson989a9d22007-05-05 11:51:05 -070012921 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080012922
12923 nvcfg1 = tr32(NVRAM_CFG1);
12924
12925 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070012926 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012927 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070012928 protect = 1;
12929 }
Michael Chand3c7b882006-03-23 01:28:25 -080012930
Matt Carlson989a9d22007-05-05 11:51:05 -070012931 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12932 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012933 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12934 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12935 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12936 case FLASH_5755VENDOR_ATMEL_FLASH_5:
12937 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012938 tg3_flag_set(tp, NVRAM_BUFFERED);
12939 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012940 tp->nvram_pagesize = 264;
12941 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
12942 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
12943 tp->nvram_size = (protect ? 0x3e200 :
12944 TG3_NVRAM_SIZE_512KB);
12945 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
12946 tp->nvram_size = (protect ? 0x1f200 :
12947 TG3_NVRAM_SIZE_256KB);
12948 else
12949 tp->nvram_size = (protect ? 0x1f200 :
12950 TG3_NVRAM_SIZE_128KB);
12951 break;
12952 case FLASH_5752VENDOR_ST_M45PE10:
12953 case FLASH_5752VENDOR_ST_M45PE20:
12954 case FLASH_5752VENDOR_ST_M45PE40:
12955 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012956 tg3_flag_set(tp, NVRAM_BUFFERED);
12957 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012958 tp->nvram_pagesize = 256;
12959 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
12960 tp->nvram_size = (protect ?
12961 TG3_NVRAM_SIZE_64KB :
12962 TG3_NVRAM_SIZE_128KB);
12963 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
12964 tp->nvram_size = (protect ?
12965 TG3_NVRAM_SIZE_64KB :
12966 TG3_NVRAM_SIZE_256KB);
12967 else
12968 tp->nvram_size = (protect ?
12969 TG3_NVRAM_SIZE_128KB :
12970 TG3_NVRAM_SIZE_512KB);
12971 break;
Michael Chand3c7b882006-03-23 01:28:25 -080012972 }
12973}
12974
Michael Chan1b277772006-03-20 22:27:48 -080012975static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
12976{
12977 u32 nvcfg1;
12978
12979 nvcfg1 = tr32(NVRAM_CFG1);
12980
12981 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012982 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
12983 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12984 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
12985 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12986 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012987 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012988 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080012989
Matt Carlson8590a602009-08-28 12:29:16 +000012990 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12991 tw32(NVRAM_CFG1, nvcfg1);
12992 break;
12993 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12994 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12995 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12996 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12997 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012998 tg3_flag_set(tp, NVRAM_BUFFERED);
12999 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013000 tp->nvram_pagesize = 264;
13001 break;
13002 case FLASH_5752VENDOR_ST_M45PE10:
13003 case FLASH_5752VENDOR_ST_M45PE20:
13004 case FLASH_5752VENDOR_ST_M45PE40:
13005 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013006 tg3_flag_set(tp, NVRAM_BUFFERED);
13007 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013008 tp->nvram_pagesize = 256;
13009 break;
Michael Chan1b277772006-03-20 22:27:48 -080013010 }
13011}
13012
Matt Carlson6b91fa02007-10-10 18:01:09 -070013013static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
13014{
13015 u32 nvcfg1, protect = 0;
13016
13017 nvcfg1 = tr32(NVRAM_CFG1);
13018
13019 /* NVRAM protection for TPM */
13020 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013021 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070013022 protect = 1;
13023 }
13024
13025 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
13026 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000013027 case FLASH_5761VENDOR_ATMEL_ADB021D:
13028 case FLASH_5761VENDOR_ATMEL_ADB041D:
13029 case FLASH_5761VENDOR_ATMEL_ADB081D:
13030 case FLASH_5761VENDOR_ATMEL_ADB161D:
13031 case FLASH_5761VENDOR_ATMEL_MDB021D:
13032 case FLASH_5761VENDOR_ATMEL_MDB041D:
13033 case FLASH_5761VENDOR_ATMEL_MDB081D:
13034 case FLASH_5761VENDOR_ATMEL_MDB161D:
13035 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013036 tg3_flag_set(tp, NVRAM_BUFFERED);
13037 tg3_flag_set(tp, FLASH);
13038 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000013039 tp->nvram_pagesize = 256;
13040 break;
13041 case FLASH_5761VENDOR_ST_A_M45PE20:
13042 case FLASH_5761VENDOR_ST_A_M45PE40:
13043 case FLASH_5761VENDOR_ST_A_M45PE80:
13044 case FLASH_5761VENDOR_ST_A_M45PE16:
13045 case FLASH_5761VENDOR_ST_M_M45PE20:
13046 case FLASH_5761VENDOR_ST_M_M45PE40:
13047 case FLASH_5761VENDOR_ST_M_M45PE80:
13048 case FLASH_5761VENDOR_ST_M_M45PE16:
13049 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013050 tg3_flag_set(tp, NVRAM_BUFFERED);
13051 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013052 tp->nvram_pagesize = 256;
13053 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070013054 }
13055
13056 if (protect) {
13057 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
13058 } else {
13059 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000013060 case FLASH_5761VENDOR_ATMEL_ADB161D:
13061 case FLASH_5761VENDOR_ATMEL_MDB161D:
13062 case FLASH_5761VENDOR_ST_A_M45PE16:
13063 case FLASH_5761VENDOR_ST_M_M45PE16:
13064 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
13065 break;
13066 case FLASH_5761VENDOR_ATMEL_ADB081D:
13067 case FLASH_5761VENDOR_ATMEL_MDB081D:
13068 case FLASH_5761VENDOR_ST_A_M45PE80:
13069 case FLASH_5761VENDOR_ST_M_M45PE80:
13070 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
13071 break;
13072 case FLASH_5761VENDOR_ATMEL_ADB041D:
13073 case FLASH_5761VENDOR_ATMEL_MDB041D:
13074 case FLASH_5761VENDOR_ST_A_M45PE40:
13075 case FLASH_5761VENDOR_ST_M_M45PE40:
13076 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13077 break;
13078 case FLASH_5761VENDOR_ATMEL_ADB021D:
13079 case FLASH_5761VENDOR_ATMEL_MDB021D:
13080 case FLASH_5761VENDOR_ST_A_M45PE20:
13081 case FLASH_5761VENDOR_ST_M_M45PE20:
13082 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13083 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070013084 }
13085 }
13086}
13087
Michael Chanb5d37722006-09-27 16:06:21 -070013088static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
13089{
13090 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013091 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070013092 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13093}
13094
Matt Carlson321d32a2008-11-21 17:22:19 -080013095static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
13096{
13097 u32 nvcfg1;
13098
13099 nvcfg1 = tr32(NVRAM_CFG1);
13100
13101 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13102 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
13103 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
13104 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013105 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080013106 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13107
13108 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13109 tw32(NVRAM_CFG1, nvcfg1);
13110 return;
13111 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13112 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
13113 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
13114 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
13115 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
13116 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
13117 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
13118 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013119 tg3_flag_set(tp, NVRAM_BUFFERED);
13120 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080013121
13122 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13123 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13124 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
13125 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
13126 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13127 break;
13128 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
13129 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
13130 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13131 break;
13132 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
13133 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
13134 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13135 break;
13136 }
13137 break;
13138 case FLASH_5752VENDOR_ST_M45PE10:
13139 case FLASH_5752VENDOR_ST_M45PE20:
13140 case FLASH_5752VENDOR_ST_M45PE40:
13141 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013142 tg3_flag_set(tp, NVRAM_BUFFERED);
13143 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080013144
13145 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13146 case FLASH_5752VENDOR_ST_M45PE10:
13147 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13148 break;
13149 case FLASH_5752VENDOR_ST_M45PE20:
13150 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13151 break;
13152 case FLASH_5752VENDOR_ST_M45PE40:
13153 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13154 break;
13155 }
13156 break;
13157 default:
Joe Perches63c3a662011-04-26 08:12:10 +000013158 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080013159 return;
13160 }
13161
Matt Carlsona1b950d2009-09-01 13:20:17 +000013162 tg3_nvram_get_pagesize(tp, nvcfg1);
13163 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000013164 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013165}
13166
13167
13168static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
13169{
13170 u32 nvcfg1;
13171
13172 nvcfg1 = tr32(NVRAM_CFG1);
13173
13174 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13175 case FLASH_5717VENDOR_ATMEL_EEPROM:
13176 case FLASH_5717VENDOR_MICRO_EEPROM:
13177 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013178 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013179 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13180
13181 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13182 tw32(NVRAM_CFG1, nvcfg1);
13183 return;
13184 case FLASH_5717VENDOR_ATMEL_MDB011D:
13185 case FLASH_5717VENDOR_ATMEL_ADB011B:
13186 case FLASH_5717VENDOR_ATMEL_ADB011D:
13187 case FLASH_5717VENDOR_ATMEL_MDB021D:
13188 case FLASH_5717VENDOR_ATMEL_ADB021B:
13189 case FLASH_5717VENDOR_ATMEL_ADB021D:
13190 case FLASH_5717VENDOR_ATMEL_45USPT:
13191 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013192 tg3_flag_set(tp, NVRAM_BUFFERED);
13193 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013194
13195 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13196 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000013197 /* Detect size with tg3_nvram_get_size() */
13198 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000013199 case FLASH_5717VENDOR_ATMEL_ADB021B:
13200 case FLASH_5717VENDOR_ATMEL_ADB021D:
13201 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13202 break;
13203 default:
13204 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13205 break;
13206 }
Matt Carlson321d32a2008-11-21 17:22:19 -080013207 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000013208 case FLASH_5717VENDOR_ST_M_M25PE10:
13209 case FLASH_5717VENDOR_ST_A_M25PE10:
13210 case FLASH_5717VENDOR_ST_M_M45PE10:
13211 case FLASH_5717VENDOR_ST_A_M45PE10:
13212 case FLASH_5717VENDOR_ST_M_M25PE20:
13213 case FLASH_5717VENDOR_ST_A_M25PE20:
13214 case FLASH_5717VENDOR_ST_M_M45PE20:
13215 case FLASH_5717VENDOR_ST_A_M45PE20:
13216 case FLASH_5717VENDOR_ST_25USPT:
13217 case FLASH_5717VENDOR_ST_45USPT:
13218 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013219 tg3_flag_set(tp, NVRAM_BUFFERED);
13220 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013221
13222 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13223 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000013224 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000013225 /* Detect size with tg3_nvram_get_size() */
13226 break;
13227 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000013228 case FLASH_5717VENDOR_ST_A_M45PE20:
13229 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13230 break;
13231 default:
13232 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13233 break;
13234 }
Matt Carlson321d32a2008-11-21 17:22:19 -080013235 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000013236 default:
Joe Perches63c3a662011-04-26 08:12:10 +000013237 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013238 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080013239 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000013240
13241 tg3_nvram_get_pagesize(tp, nvcfg1);
13242 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000013243 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080013244}
13245
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013246static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
13247{
13248 u32 nvcfg1, nvmpinstrp;
13249
13250 nvcfg1 = tr32(NVRAM_CFG1);
13251 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
13252
13253 switch (nvmpinstrp) {
13254 case FLASH_5720_EEPROM_HD:
13255 case FLASH_5720_EEPROM_LD:
13256 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013257 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013258
13259 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13260 tw32(NVRAM_CFG1, nvcfg1);
13261 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
13262 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13263 else
13264 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
13265 return;
13266 case FLASH_5720VENDOR_M_ATMEL_DB011D:
13267 case FLASH_5720VENDOR_A_ATMEL_DB011B:
13268 case FLASH_5720VENDOR_A_ATMEL_DB011D:
13269 case FLASH_5720VENDOR_M_ATMEL_DB021D:
13270 case FLASH_5720VENDOR_A_ATMEL_DB021B:
13271 case FLASH_5720VENDOR_A_ATMEL_DB021D:
13272 case FLASH_5720VENDOR_M_ATMEL_DB041D:
13273 case FLASH_5720VENDOR_A_ATMEL_DB041B:
13274 case FLASH_5720VENDOR_A_ATMEL_DB041D:
13275 case FLASH_5720VENDOR_M_ATMEL_DB081D:
13276 case FLASH_5720VENDOR_A_ATMEL_DB081D:
13277 case FLASH_5720VENDOR_ATMEL_45USPT:
13278 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013279 tg3_flag_set(tp, NVRAM_BUFFERED);
13280 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013281
13282 switch (nvmpinstrp) {
13283 case FLASH_5720VENDOR_M_ATMEL_DB021D:
13284 case FLASH_5720VENDOR_A_ATMEL_DB021B:
13285 case FLASH_5720VENDOR_A_ATMEL_DB021D:
13286 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13287 break;
13288 case FLASH_5720VENDOR_M_ATMEL_DB041D:
13289 case FLASH_5720VENDOR_A_ATMEL_DB041B:
13290 case FLASH_5720VENDOR_A_ATMEL_DB041D:
13291 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13292 break;
13293 case FLASH_5720VENDOR_M_ATMEL_DB081D:
13294 case FLASH_5720VENDOR_A_ATMEL_DB081D:
13295 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
13296 break;
13297 default:
13298 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13299 break;
13300 }
13301 break;
13302 case FLASH_5720VENDOR_M_ST_M25PE10:
13303 case FLASH_5720VENDOR_M_ST_M45PE10:
13304 case FLASH_5720VENDOR_A_ST_M25PE10:
13305 case FLASH_5720VENDOR_A_ST_M45PE10:
13306 case FLASH_5720VENDOR_M_ST_M25PE20:
13307 case FLASH_5720VENDOR_M_ST_M45PE20:
13308 case FLASH_5720VENDOR_A_ST_M25PE20:
13309 case FLASH_5720VENDOR_A_ST_M45PE20:
13310 case FLASH_5720VENDOR_M_ST_M25PE40:
13311 case FLASH_5720VENDOR_M_ST_M45PE40:
13312 case FLASH_5720VENDOR_A_ST_M25PE40:
13313 case FLASH_5720VENDOR_A_ST_M45PE40:
13314 case FLASH_5720VENDOR_M_ST_M25PE80:
13315 case FLASH_5720VENDOR_M_ST_M45PE80:
13316 case FLASH_5720VENDOR_A_ST_M25PE80:
13317 case FLASH_5720VENDOR_A_ST_M45PE80:
13318 case FLASH_5720VENDOR_ST_25USPT:
13319 case FLASH_5720VENDOR_ST_45USPT:
13320 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013321 tg3_flag_set(tp, NVRAM_BUFFERED);
13322 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013323
13324 switch (nvmpinstrp) {
13325 case FLASH_5720VENDOR_M_ST_M25PE20:
13326 case FLASH_5720VENDOR_M_ST_M45PE20:
13327 case FLASH_5720VENDOR_A_ST_M25PE20:
13328 case FLASH_5720VENDOR_A_ST_M45PE20:
13329 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13330 break;
13331 case FLASH_5720VENDOR_M_ST_M25PE40:
13332 case FLASH_5720VENDOR_M_ST_M45PE40:
13333 case FLASH_5720VENDOR_A_ST_M25PE40:
13334 case FLASH_5720VENDOR_A_ST_M45PE40:
13335 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13336 break;
13337 case FLASH_5720VENDOR_M_ST_M25PE80:
13338 case FLASH_5720VENDOR_M_ST_M45PE80:
13339 case FLASH_5720VENDOR_A_ST_M25PE80:
13340 case FLASH_5720VENDOR_A_ST_M45PE80:
13341 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
13342 break;
13343 default:
13344 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13345 break;
13346 }
13347 break;
13348 default:
Joe Perches63c3a662011-04-26 08:12:10 +000013349 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013350 return;
13351 }
13352
13353 tg3_nvram_get_pagesize(tp, nvcfg1);
13354 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000013355 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013356}
13357
Linus Torvalds1da177e2005-04-16 15:20:36 -070013358/* Chips other than 5700/5701 use the NVRAM for fetching info. */
13359static void __devinit tg3_nvram_init(struct tg3 *tp)
13360{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013361 tw32_f(GRC_EEPROM_ADDR,
13362 (EEPROM_ADDR_FSM_RESET |
13363 (EEPROM_DEFAULT_CLOCK_PERIOD <<
13364 EEPROM_ADDR_CLKPERD_SHIFT)));
13365
Michael Chan9d57f012006-12-07 00:23:25 -080013366 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013367
13368 /* Enable seeprom accesses. */
13369 tw32_f(GRC_LOCAL_CTRL,
13370 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
13371 udelay(100);
13372
13373 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13374 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000013375 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013376
Michael Chanec41c7d2006-01-17 02:40:55 -080013377 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000013378 netdev_warn(tp->dev,
13379 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000013380 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080013381 return;
13382 }
Michael Chane6af3012005-04-21 17:12:05 -070013383 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013384
Matt Carlson989a9d22007-05-05 11:51:05 -070013385 tp->nvram_size = 0;
13386
Michael Chan361b4ac2005-04-21 17:11:21 -070013387 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13388 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080013389 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
13390 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070013391 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013392 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
13393 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080013394 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070013395 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
13396 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070013397 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13398 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000013399 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000013400 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080013401 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013402 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13403 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000013404 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013405 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
13406 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070013407 else
13408 tg3_get_nvram_info(tp);
13409
Matt Carlson989a9d22007-05-05 11:51:05 -070013410 if (tp->nvram_size == 0)
13411 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013412
Michael Chane6af3012005-04-21 17:12:05 -070013413 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080013414 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013415
13416 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013417 tg3_flag_clear(tp, NVRAM);
13418 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013419
13420 tg3_get_eeprom_size(tp);
13421 }
13422}
13423
Linus Torvalds1da177e2005-04-16 15:20:36 -070013424struct subsys_tbl_ent {
13425 u16 subsys_vendor, subsys_devid;
13426 u32 phy_id;
13427};
13428
Matt Carlson24daf2b2010-02-17 15:17:02 +000013429static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013430 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013431 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013432 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013433 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013434 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013435 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013436 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013437 { TG3PCI_SUBVENDOR_ID_BROADCOM,
13438 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
13439 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013440 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013441 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013442 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013443 { TG3PCI_SUBVENDOR_ID_BROADCOM,
13444 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
13445 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013446 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013447 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013448 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013449 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013450 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013451 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013452 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013453
13454 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013455 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013456 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013457 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013458 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013459 { TG3PCI_SUBVENDOR_ID_3COM,
13460 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
13461 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013462 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013463 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013464 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013465
13466 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013467 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013468 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013469 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013470 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013471 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013472 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013473 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013474 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013475
13476 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013477 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013478 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013479 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013480 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013481 { TG3PCI_SUBVENDOR_ID_COMPAQ,
13482 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
13483 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013484 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013485 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013486 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013487
13488 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013489 { TG3PCI_SUBVENDOR_ID_IBM,
13490 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013491};
13492
Matt Carlson24daf2b2010-02-17 15:17:02 +000013493static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013494{
13495 int i;
13496
13497 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
13498 if ((subsys_id_to_phy_id[i].subsys_vendor ==
13499 tp->pdev->subsystem_vendor) &&
13500 (subsys_id_to_phy_id[i].subsys_devid ==
13501 tp->pdev->subsystem_device))
13502 return &subsys_id_to_phy_id[i];
13503 }
13504 return NULL;
13505}
13506
Michael Chan7d0c41e2005-04-21 17:06:20 -070013507static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013508{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013509 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070013510
Matt Carlson79eb6902010-02-17 15:17:03 +000013511 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013512 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13513
Gary Zambranoa85feb82007-05-05 11:52:19 -070013514 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000013515 tg3_flag_set(tp, EEPROM_WRITE_PROT);
13516 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080013517
Michael Chanb5d37722006-09-27 16:06:21 -070013518 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080013519 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013520 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13521 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013522 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013523 val = tr32(VCPU_CFGSHDW);
13524 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000013525 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070013526 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013527 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013528 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013529 device_set_wakeup_enable(&tp->pdev->dev, true);
13530 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013531 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070013532 }
13533
Linus Torvalds1da177e2005-04-16 15:20:36 -070013534 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
13535 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
13536 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070013537 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013538 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013539
13540 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
13541 tp->nic_sram_data_cfg = nic_cfg;
13542
13543 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
13544 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Matt Carlson6ff6f812011-05-19 12:12:54 +000013545 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13546 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13547 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070013548 (ver > 0) && (ver < 0x100))
13549 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
13550
Matt Carlsona9daf362008-05-25 23:49:44 -070013551 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
13552 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
13553
Linus Torvalds1da177e2005-04-16 15:20:36 -070013554 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
13555 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
13556 eeprom_phy_serdes = 1;
13557
13558 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
13559 if (nic_phy_id != 0) {
13560 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
13561 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
13562
13563 eeprom_phy_id = (id1 >> 16) << 10;
13564 eeprom_phy_id |= (id2 & 0xfc00) << 16;
13565 eeprom_phy_id |= (id2 & 0x03ff) << 0;
13566 } else
13567 eeprom_phy_id = 0;
13568
Michael Chan7d0c41e2005-04-21 17:06:20 -070013569 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070013570 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000013571 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013572 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000013573 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013574 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070013575 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070013576
Joe Perches63c3a662011-04-26 08:12:10 +000013577 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013578 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
13579 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070013580 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070013581 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
13582
13583 switch (led_cfg) {
13584 default:
13585 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
13586 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13587 break;
13588
13589 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
13590 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13591 break;
13592
13593 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
13594 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070013595
13596 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
13597 * read on some older 5700/5701 bootcode.
13598 */
13599 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
13600 ASIC_REV_5700 ||
13601 GET_ASIC_REV(tp->pci_chip_rev_id) ==
13602 ASIC_REV_5701)
13603 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13604
Linus Torvalds1da177e2005-04-16 15:20:36 -070013605 break;
13606
13607 case SHASTA_EXT_LED_SHARED:
13608 tp->led_ctrl = LED_CTRL_MODE_SHARED;
13609 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
13610 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
13611 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13612 LED_CTRL_MODE_PHY_2);
13613 break;
13614
13615 case SHASTA_EXT_LED_MAC:
13616 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
13617 break;
13618
13619 case SHASTA_EXT_LED_COMBO:
13620 tp->led_ctrl = LED_CTRL_MODE_COMBO;
13621 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
13622 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13623 LED_CTRL_MODE_PHY_2);
13624 break;
13625
Stephen Hemminger855e1112008-04-16 16:37:28 -070013626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013627
13628 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13629 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
13630 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
13631 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13632
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013633 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
13634 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080013635
Michael Chan9d26e212006-12-07 00:21:14 -080013636 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000013637 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013638 if ((tp->pdev->subsystem_vendor ==
13639 PCI_VENDOR_ID_ARIMA) &&
13640 (tp->pdev->subsystem_device == 0x205a ||
13641 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000013642 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013643 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013644 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13645 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013647
13648 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000013649 tg3_flag_set(tp, ENABLE_ASF);
13650 if (tg3_flag(tp, 5750_PLUS))
13651 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013652 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013653
13654 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013655 tg3_flag(tp, 5750_PLUS))
13656 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013657
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013658 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070013659 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000013660 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013661
Joe Perches63c3a662011-04-26 08:12:10 +000013662 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013663 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013664 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013665 device_set_wakeup_enable(&tp->pdev->dev, true);
13666 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013667
Linus Torvalds1da177e2005-04-16 15:20:36 -070013668 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013669 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013670
13671 /* serdes signal pre-emphasis in register 0x590 set by */
13672 /* bootcode if bit 18 is set */
13673 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013674 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070013675
Joe Perches63c3a662011-04-26 08:12:10 +000013676 if ((tg3_flag(tp, 57765_PLUS) ||
13677 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13678 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080013679 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013680 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080013681
Joe Perches63c3a662011-04-26 08:12:10 +000013682 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000013683 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000013684 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070013685 u32 cfg3;
13686
13687 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
13688 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000013689 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070013690 }
Matt Carlsona9daf362008-05-25 23:49:44 -070013691
Matt Carlson14417062010-02-17 15:16:59 +000013692 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000013693 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070013694 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013695 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070013696 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013697 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013698 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013699done:
Joe Perches63c3a662011-04-26 08:12:10 +000013700 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013701 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000013702 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013703 else
13704 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070013705}
13706
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013707static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
13708{
13709 int i;
13710 u32 val;
13711
13712 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
13713 tw32(OTP_CTRL, cmd);
13714
13715 /* Wait for up to 1 ms for command to execute. */
13716 for (i = 0; i < 100; i++) {
13717 val = tr32(OTP_STATUS);
13718 if (val & OTP_STATUS_CMD_DONE)
13719 break;
13720 udelay(10);
13721 }
13722
13723 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
13724}
13725
13726/* Read the gphy configuration from the OTP region of the chip. The gphy
13727 * configuration is a 32-bit value that straddles the alignment boundary.
13728 * We do two 32-bit reads and then shift and merge the results.
13729 */
13730static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
13731{
13732 u32 bhalf_otp, thalf_otp;
13733
13734 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
13735
13736 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
13737 return 0;
13738
13739 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
13740
13741 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13742 return 0;
13743
13744 thalf_otp = tr32(OTP_READ_DATA);
13745
13746 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
13747
13748 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13749 return 0;
13750
13751 bhalf_otp = tr32(OTP_READ_DATA);
13752
13753 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
13754}
13755
Matt Carlsone256f8a2011-03-09 16:58:24 +000013756static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
13757{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000013758 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013759
13760 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
13761 adv |= ADVERTISED_1000baseT_Half |
13762 ADVERTISED_1000baseT_Full;
13763
13764 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
13765 adv |= ADVERTISED_100baseT_Half |
13766 ADVERTISED_100baseT_Full |
13767 ADVERTISED_10baseT_Half |
13768 ADVERTISED_10baseT_Full |
13769 ADVERTISED_TP;
13770 else
13771 adv |= ADVERTISED_FIBRE;
13772
13773 tp->link_config.advertising = adv;
Matt Carlsone7405222012-02-13 15:20:16 +000013774 tp->link_config.speed = SPEED_UNKNOWN;
13775 tp->link_config.duplex = DUPLEX_UNKNOWN;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013776 tp->link_config.autoneg = AUTONEG_ENABLE;
Matt Carlsone7405222012-02-13 15:20:16 +000013777 tp->link_config.active_speed = SPEED_UNKNOWN;
13778 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Matt Carlson34655ad2012-02-22 12:35:18 +000013779
13780 tp->old_link = -1;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013781}
13782
Michael Chan7d0c41e2005-04-21 17:06:20 -070013783static int __devinit tg3_phy_probe(struct tg3 *tp)
13784{
13785 u32 hw_phy_id_1, hw_phy_id_2;
13786 u32 hw_phy_id, hw_phy_id_masked;
13787 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013788
Matt Carlsone256f8a2011-03-09 16:58:24 +000013789 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000013790 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000013791 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
13792
Michael Chan8151ad52012-07-29 19:15:41 +000013793 if (tg3_flag(tp, ENABLE_APE)) {
13794 switch (tp->pci_fn) {
13795 case 0:
13796 tp->phy_ape_lock = TG3_APE_LOCK_PHY0;
13797 break;
13798 case 1:
13799 tp->phy_ape_lock = TG3_APE_LOCK_PHY1;
13800 break;
13801 case 2:
13802 tp->phy_ape_lock = TG3_APE_LOCK_PHY2;
13803 break;
13804 case 3:
13805 tp->phy_ape_lock = TG3_APE_LOCK_PHY3;
13806 break;
13807 }
13808 }
13809
Joe Perches63c3a662011-04-26 08:12:10 +000013810 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013811 return tg3_phy_init(tp);
13812
Linus Torvalds1da177e2005-04-16 15:20:36 -070013813 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010013814 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013815 */
13816 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000013817 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000013818 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013819 } else {
13820 /* Now read the physical PHY_ID from the chip and verify
13821 * that it is sane. If it doesn't look good, we fall back
13822 * to either the hard-coded table based PHY_ID and failing
13823 * that the value found in the eeprom area.
13824 */
13825 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
13826 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
13827
13828 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
13829 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
13830 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
13831
Matt Carlson79eb6902010-02-17 15:17:03 +000013832 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013833 }
13834
Matt Carlson79eb6902010-02-17 15:17:03 +000013835 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013836 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000013837 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013838 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070013839 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013840 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013841 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000013842 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070013843 /* Do nothing, phy ID already set up in
13844 * tg3_get_eeprom_hw_cfg().
13845 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013846 } else {
13847 struct subsys_tbl_ent *p;
13848
13849 /* No eeprom signature? Try the hardcoded
13850 * subsys device table.
13851 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013852 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013853 if (!p)
13854 return -ENODEV;
13855
13856 tp->phy_id = p->phy_id;
13857 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000013858 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013859 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013860 }
13861 }
13862
Matt Carlsona6b68da2010-12-06 08:28:52 +000013863 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Matt Carlson5baa5e92011-07-20 10:20:53 +000013864 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13865 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720 ||
13866 (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +000013867 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
13868 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
13869 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000013870 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
13871
Matt Carlsone256f8a2011-03-09 16:58:24 +000013872 tg3_phy_init_link_config(tp);
13873
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013874 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013875 !tg3_flag(tp, ENABLE_APE) &&
13876 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000013877 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013878
13879 tg3_readphy(tp, MII_BMSR, &bmsr);
13880 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
13881 (bmsr & BMSR_LSTATUS))
13882 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013883
Linus Torvalds1da177e2005-04-16 15:20:36 -070013884 err = tg3_phy_reset(tp);
13885 if (err)
13886 return err;
13887
Matt Carlson42b64a42011-05-19 12:12:49 +000013888 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013889
Matt Carlsone2bf73e2011-12-08 14:40:15 +000013890 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013891 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
13892 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013893
13894 tg3_writephy(tp, MII_BMCR,
13895 BMCR_ANENABLE | BMCR_ANRESTART);
13896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013897 }
13898
13899skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013900 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013901 err = tg3_init_5401phy_dsp(tp);
13902 if (err)
13903 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013904
Linus Torvalds1da177e2005-04-16 15:20:36 -070013905 err = tg3_init_5401phy_dsp(tp);
13906 }
13907
Linus Torvalds1da177e2005-04-16 15:20:36 -070013908 return err;
13909}
13910
Matt Carlson184b8902010-04-05 10:19:25 +000013911static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013912{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013913 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013914 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000013915 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000013916 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013917
Matt Carlson535a4902011-07-20 10:20:56 +000013918 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013919 if (!vpd_data)
13920 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013921
Matt Carlson535a4902011-07-20 10:20:56 +000013922 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000013923 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013924 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013925
13926 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13927 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13928 i += PCI_VPD_LRDT_TAG_SIZE;
13929
Matt Carlson535a4902011-07-20 10:20:56 +000013930 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013931 goto out_not_found;
13932
Matt Carlson184b8902010-04-05 10:19:25 +000013933 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13934 PCI_VPD_RO_KEYWORD_MFR_ID);
13935 if (j > 0) {
13936 len = pci_vpd_info_field_size(&vpd_data[j]);
13937
13938 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13939 if (j + len > block_end || len != 4 ||
13940 memcmp(&vpd_data[j], "1028", 4))
13941 goto partno;
13942
13943 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13944 PCI_VPD_RO_KEYWORD_VENDOR0);
13945 if (j < 0)
13946 goto partno;
13947
13948 len = pci_vpd_info_field_size(&vpd_data[j]);
13949
13950 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13951 if (j + len > block_end)
13952 goto partno;
13953
13954 memcpy(tp->fw_ver, &vpd_data[j], len);
Matt Carlson535a4902011-07-20 10:20:56 +000013955 strncat(tp->fw_ver, " bc ", vpdlen - len - 1);
Matt Carlson184b8902010-04-05 10:19:25 +000013956 }
13957
13958partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013959 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13960 PCI_VPD_RO_KEYWORD_PARTNO);
13961 if (i < 0)
13962 goto out_not_found;
13963
13964 len = pci_vpd_info_field_size(&vpd_data[i]);
13965
13966 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13967 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000013968 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013969 goto out_not_found;
13970
13971 memcpy(tp->board_part_number, &vpd_data[i], len);
13972
Linus Torvalds1da177e2005-04-16 15:20:36 -070013973out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013974 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013975 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013976 return;
13977
13978out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013979 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13980 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13981 strcpy(tp->board_part_number, "BCM5717");
13982 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13983 strcpy(tp->board_part_number, "BCM5718");
13984 else
13985 goto nomatch;
13986 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13987 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13988 strcpy(tp->board_part_number, "BCM57780");
13989 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13990 strcpy(tp->board_part_number, "BCM57760");
13991 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13992 strcpy(tp->board_part_number, "BCM57790");
13993 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13994 strcpy(tp->board_part_number, "BCM57788");
13995 else
13996 goto nomatch;
13997 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13998 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13999 strcpy(tp->board_part_number, "BCM57761");
14000 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
14001 strcpy(tp->board_part_number, "BCM57765");
14002 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
14003 strcpy(tp->board_part_number, "BCM57781");
14004 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
14005 strcpy(tp->board_part_number, "BCM57785");
14006 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
14007 strcpy(tp->board_part_number, "BCM57791");
14008 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
14009 strcpy(tp->board_part_number, "BCM57795");
14010 else
14011 goto nomatch;
Matt Carlson55086ad2011-12-14 11:09:59 +000014012 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766) {
14013 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
14014 strcpy(tp->board_part_number, "BCM57762");
14015 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
14016 strcpy(tp->board_part_number, "BCM57766");
14017 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
14018 strcpy(tp->board_part_number, "BCM57782");
14019 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
14020 strcpy(tp->board_part_number, "BCM57786");
14021 else
14022 goto nomatch;
Matt Carlson37a949c2010-09-30 10:34:33 +000014023 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070014024 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000014025 } else {
14026nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070014027 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000014028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014029}
14030
Matt Carlson9c8a6202007-10-21 16:16:08 -070014031static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
14032{
14033 u32 val;
14034
Matt Carlsone4f34112009-02-25 14:25:00 +000014035 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070014036 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000014037 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070014038 val != 0)
14039 return 0;
14040
14041 return 1;
14042}
14043
Matt Carlsonacd9c112009-02-25 14:26:33 +000014044static void __devinit tg3_read_bc_ver(struct tg3 *tp)
14045{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014046 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000014047 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014048 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000014049
14050 if (tg3_nvram_read(tp, 0xc, &offset) ||
14051 tg3_nvram_read(tp, 0x4, &start))
14052 return;
14053
14054 offset = tg3_nvram_logical_addr(tp, offset);
14055
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014056 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000014057 return;
14058
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014059 if ((val & 0xfc000000) == 0x0c000000) {
14060 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000014061 return;
14062
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014063 if (val == 0)
14064 newver = true;
14065 }
14066
Matt Carlson75f99362010-04-05 10:19:24 +000014067 dst_off = strlen(tp->fw_ver);
14068
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014069 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000014070 if (TG3_VER_SIZE - dst_off < 16 ||
14071 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014072 return;
14073
14074 offset = offset + ver_offset - start;
14075 for (i = 0; i < 16; i += 4) {
14076 __be32 v;
14077 if (tg3_nvram_read_be32(tp, offset + i, &v))
14078 return;
14079
Matt Carlson75f99362010-04-05 10:19:24 +000014080 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014081 }
14082 } else {
14083 u32 major, minor;
14084
14085 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
14086 return;
14087
14088 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
14089 TG3_NVM_BCVER_MAJSFT;
14090 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000014091 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
14092 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000014093 }
14094}
14095
Matt Carlsona6f6cb12009-02-25 14:27:43 +000014096static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
14097{
14098 u32 val, major, minor;
14099
14100 /* Use native endian representation */
14101 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
14102 return;
14103
14104 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
14105 TG3_NVM_HWSB_CFG1_MAJSFT;
14106 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
14107 TG3_NVM_HWSB_CFG1_MINSFT;
14108
14109 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
14110}
14111
Matt Carlsondfe00d72008-11-21 17:19:41 -080014112static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
14113{
14114 u32 offset, major, minor, build;
14115
Matt Carlson75f99362010-04-05 10:19:24 +000014116 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080014117
14118 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
14119 return;
14120
14121 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
14122 case TG3_EEPROM_SB_REVISION_0:
14123 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
14124 break;
14125 case TG3_EEPROM_SB_REVISION_2:
14126 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
14127 break;
14128 case TG3_EEPROM_SB_REVISION_3:
14129 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
14130 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000014131 case TG3_EEPROM_SB_REVISION_4:
14132 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
14133 break;
14134 case TG3_EEPROM_SB_REVISION_5:
14135 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
14136 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000014137 case TG3_EEPROM_SB_REVISION_6:
14138 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
14139 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080014140 default:
14141 return;
14142 }
14143
Matt Carlsone4f34112009-02-25 14:25:00 +000014144 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080014145 return;
14146
14147 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
14148 TG3_EEPROM_SB_EDH_BLD_SHFT;
14149 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
14150 TG3_EEPROM_SB_EDH_MAJ_SHFT;
14151 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
14152
14153 if (minor > 99 || build > 26)
14154 return;
14155
Matt Carlson75f99362010-04-05 10:19:24 +000014156 offset = strlen(tp->fw_ver);
14157 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
14158 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080014159
14160 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000014161 offset = strlen(tp->fw_ver);
14162 if (offset < TG3_VER_SIZE - 1)
14163 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080014164 }
14165}
14166
Matt Carlsonacd9c112009-02-25 14:26:33 +000014167static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080014168{
14169 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000014170 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070014171
14172 for (offset = TG3_NVM_DIR_START;
14173 offset < TG3_NVM_DIR_END;
14174 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000014175 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070014176 return;
14177
14178 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
14179 break;
14180 }
14181
14182 if (offset == TG3_NVM_DIR_END)
14183 return;
14184
Joe Perches63c3a662011-04-26 08:12:10 +000014185 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070014186 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000014187 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070014188 return;
14189
Matt Carlsone4f34112009-02-25 14:25:00 +000014190 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070014191 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000014192 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070014193 return;
14194
14195 offset += val - start;
14196
Matt Carlsonacd9c112009-02-25 14:26:33 +000014197 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070014198
Matt Carlsonacd9c112009-02-25 14:26:33 +000014199 tp->fw_ver[vlen++] = ',';
14200 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070014201
14202 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000014203 __be32 v;
14204 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070014205 return;
14206
Al Virob9fc7dc2007-12-17 22:59:57 -080014207 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070014208
Matt Carlsonacd9c112009-02-25 14:26:33 +000014209 if (vlen > TG3_VER_SIZE - sizeof(v)) {
14210 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070014211 break;
14212 }
14213
Matt Carlsonacd9c112009-02-25 14:26:33 +000014214 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
14215 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070014216 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000014217}
14218
Michael Chan165f4d12012-07-16 16:23:59 +000014219static void __devinit tg3_probe_ncsi(struct tg3 *tp)
Matt Carlson7fd76442009-02-25 14:27:20 +000014220{
Matt Carlson7fd76442009-02-25 14:27:20 +000014221 u32 apedata;
Matt Carlson7fd76442009-02-25 14:27:20 +000014222
14223 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
14224 if (apedata != APE_SEG_SIG_MAGIC)
14225 return;
14226
14227 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
14228 if (!(apedata & APE_FW_STATUS_READY))
14229 return;
14230
Michael Chan165f4d12012-07-16 16:23:59 +000014231 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI)
14232 tg3_flag_set(tp, APE_HAS_NCSI);
14233}
14234
14235static void __devinit tg3_read_dash_ver(struct tg3 *tp)
14236{
14237 int vlen;
14238 u32 apedata;
14239 char *fwtype;
14240
Matt Carlson7fd76442009-02-25 14:27:20 +000014241 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
14242
Michael Chan165f4d12012-07-16 16:23:59 +000014243 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsonecc79642010-08-02 11:26:01 +000014244 fwtype = "NCSI";
Michael Chan165f4d12012-07-16 16:23:59 +000014245 else
Matt Carlsonecc79642010-08-02 11:26:01 +000014246 fwtype = "DASH";
14247
Matt Carlson7fd76442009-02-25 14:27:20 +000014248 vlen = strlen(tp->fw_ver);
14249
Matt Carlsonecc79642010-08-02 11:26:01 +000014250 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
14251 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000014252 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
14253 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
14254 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
14255 (apedata & APE_FW_VERSION_BLDMSK));
14256}
14257
Matt Carlsonacd9c112009-02-25 14:26:33 +000014258static void __devinit tg3_read_fw_ver(struct tg3 *tp)
14259{
14260 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000014261 bool vpd_vers = false;
14262
14263 if (tp->fw_ver[0] != 0)
14264 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000014265
Joe Perches63c3a662011-04-26 08:12:10 +000014266 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000014267 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000014268 return;
14269 }
14270
Matt Carlsonacd9c112009-02-25 14:26:33 +000014271 if (tg3_nvram_read(tp, 0, &val))
14272 return;
14273
14274 if (val == TG3_EEPROM_MAGIC)
14275 tg3_read_bc_ver(tp);
14276 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
14277 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000014278 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
14279 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000014280
Michael Chan165f4d12012-07-16 16:23:59 +000014281 if (tg3_flag(tp, ENABLE_ASF)) {
14282 if (tg3_flag(tp, ENABLE_APE)) {
14283 tg3_probe_ncsi(tp);
14284 if (!vpd_vers)
14285 tg3_read_dash_ver(tp);
14286 } else if (!vpd_vers) {
14287 tg3_read_mgmtfw_ver(tp);
14288 }
Matt Carlsonc9cab242011-07-13 09:27:27 +000014289 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070014290
14291 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080014292}
14293
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014294static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
14295{
Joe Perches63c3a662011-04-26 08:12:10 +000014296 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000014297 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000014298 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000014299 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014300 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000014301 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014302}
14303
Matt Carlson41434702011-03-09 16:58:22 +000014304static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080014305 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
14306 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
14307 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
14308 { },
14309};
14310
Matt Carlson16c7fa72012-02-13 10:20:10 +000014311static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
14312{
14313 struct pci_dev *peer;
14314 unsigned int func, devnr = tp->pdev->devfn & ~7;
14315
14316 for (func = 0; func < 8; func++) {
14317 peer = pci_get_slot(tp->pdev->bus, devnr | func);
14318 if (peer && peer != tp->pdev)
14319 break;
14320 pci_dev_put(peer);
14321 }
14322 /* 5704 can be configured in single-port mode, set peer to
14323 * tp->pdev in that case.
14324 */
14325 if (!peer) {
14326 peer = tp->pdev;
14327 return peer;
14328 }
14329
14330 /*
14331 * We don't need to keep the refcount elevated; there's no way
14332 * to remove one half of this device without removing the other
14333 */
14334 pci_dev_put(peer);
14335
14336 return peer;
14337}
14338
Matt Carlson42b123b2012-02-13 15:20:13 +000014339static void __devinit tg3_detect_asic_rev(struct tg3 *tp, u32 misc_ctrl_reg)
14340{
14341 tp->pci_chip_rev_id = misc_ctrl_reg >> MISC_HOST_CTRL_CHIPREV_SHIFT;
14342 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
14343 u32 reg;
14344
14345 /* All devices that use the alternate
14346 * ASIC REV location have a CPMU.
14347 */
14348 tg3_flag_set(tp, CPMU_PRESENT);
14349
14350 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
14351 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
14352 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
14353 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
14354 reg = TG3PCI_GEN2_PRODID_ASICREV;
14355 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
14356 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
14357 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
14358 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
14359 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14360 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
14361 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
14362 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
14363 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
14364 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
14365 reg = TG3PCI_GEN15_PRODID_ASICREV;
14366 else
14367 reg = TG3PCI_PRODID_ASICREV;
14368
14369 pci_read_config_dword(tp->pdev, reg, &tp->pci_chip_rev_id);
14370 }
14371
14372 /* Wrong chip ID in 5752 A0. This code can be removed later
14373 * as A0 is not in production.
14374 */
14375 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
14376 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
14377
14378 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14379 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14380 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14381 tg3_flag_set(tp, 5717_PLUS);
14382
14383 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
14384 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
14385 tg3_flag_set(tp, 57765_CLASS);
14386
14387 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS))
14388 tg3_flag_set(tp, 57765_PLUS);
14389
14390 /* Intentionally exclude ASIC_REV_5906 */
14391 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
14392 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
14393 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14394 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
14395 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14396 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
14397 tg3_flag(tp, 57765_PLUS))
14398 tg3_flag_set(tp, 5755_PLUS);
14399
14400 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
14401 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
14402 tg3_flag_set(tp, 5780_CLASS);
14403
14404 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14405 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14406 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
14407 tg3_flag(tp, 5755_PLUS) ||
14408 tg3_flag(tp, 5780_CLASS))
14409 tg3_flag_set(tp, 5750_PLUS);
14410
14411 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14412 tg3_flag(tp, 5750_PLUS))
14413 tg3_flag_set(tp, 5705_PLUS);
14414}
14415
Linus Torvalds1da177e2005-04-16 15:20:36 -070014416static int __devinit tg3_get_invariants(struct tg3 *tp)
14417{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014418 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014419 u32 pci_state_reg, grc_misc_cfg;
14420 u32 val;
14421 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014422 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014423
Linus Torvalds1da177e2005-04-16 15:20:36 -070014424 /* Force memory write invalidate off. If we leave it on,
14425 * then on 5700_BX chips we have to enable a workaround.
14426 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
14427 * to match the cacheline size. The Broadcom driver have this
14428 * workaround but turns MWI off all the times so never uses
14429 * it. This seems to suggest that the workaround is insufficient.
14430 */
14431 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14432 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
14433 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14434
Matt Carlson16821282011-07-13 09:27:28 +000014435 /* Important! -- Make sure register accesses are byteswapped
14436 * correctly. Also, for those chips that require it, make
14437 * sure that indirect register accesses are enabled before
14438 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014439 */
14440 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14441 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000014442 tp->misc_host_ctrl |= (misc_ctrl_reg &
14443 MISC_HOST_CTRL_CHIPREV);
14444 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14445 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014446
Matt Carlson42b123b2012-02-13 15:20:13 +000014447 tg3_detect_asic_rev(tp, misc_ctrl_reg);
Michael Chanff645be2005-04-21 17:09:53 -070014448
Michael Chan68929142005-08-09 20:17:14 -070014449 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
14450 * we need to disable memory and use config. cycles
14451 * only to access all registers. The 5702/03 chips
14452 * can mistakenly decode the special cycles from the
14453 * ICH chipsets as memory write cycles, causing corruption
14454 * of register and memory space. Only certain ICH bridges
14455 * will drive special cycles with non-zero data during the
14456 * address phase which can fall within the 5703's address
14457 * range. This is not an ICH bug as the PCI spec allows
14458 * non-zero address during special cycles. However, only
14459 * these ICH bridges are known to drive non-zero addresses
14460 * during special cycles.
14461 *
14462 * Since special cycles do not cross PCI bridges, we only
14463 * enable this workaround if the 5703 is on the secondary
14464 * bus of these ICH bridges.
14465 */
14466 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
14467 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
14468 static struct tg3_dev_id {
14469 u32 vendor;
14470 u32 device;
14471 u32 rev;
14472 } ich_chipsets[] = {
14473 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
14474 PCI_ANY_ID },
14475 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
14476 PCI_ANY_ID },
14477 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
14478 0xa },
14479 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
14480 PCI_ANY_ID },
14481 { },
14482 };
14483 struct tg3_dev_id *pci_id = &ich_chipsets[0];
14484 struct pci_dev *bridge = NULL;
14485
14486 while (pci_id->vendor != 0) {
14487 bridge = pci_get_device(pci_id->vendor, pci_id->device,
14488 bridge);
14489 if (!bridge) {
14490 pci_id++;
14491 continue;
14492 }
14493 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070014494 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070014495 continue;
14496 }
14497 if (bridge->subordinate &&
14498 (bridge->subordinate->number ==
14499 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014500 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070014501 pci_dev_put(bridge);
14502 break;
14503 }
14504 }
14505 }
14506
Matt Carlson6ff6f812011-05-19 12:12:54 +000014507 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070014508 static struct tg3_dev_id {
14509 u32 vendor;
14510 u32 device;
14511 } bridge_chipsets[] = {
14512 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
14513 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
14514 { },
14515 };
14516 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
14517 struct pci_dev *bridge = NULL;
14518
14519 while (pci_id->vendor != 0) {
14520 bridge = pci_get_device(pci_id->vendor,
14521 pci_id->device,
14522 bridge);
14523 if (!bridge) {
14524 pci_id++;
14525 continue;
14526 }
14527 if (bridge->subordinate &&
14528 (bridge->subordinate->number <=
14529 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070014530 (bridge->subordinate->busn_res.end >=
Matt Carlson41588ba2008-04-19 18:12:33 -070014531 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014532 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070014533 pci_dev_put(bridge);
14534 break;
14535 }
14536 }
14537 }
14538
Michael Chan4a29cc22006-03-19 13:21:12 -080014539 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
14540 * DMA addresses > 40-bit. This bridge may have other additional
14541 * 57xx devices behind it in some 4-port NIC designs for example.
14542 * Any tg3 device found behind the bridge will also need the 40-bit
14543 * DMA workaround.
14544 */
Matt Carlson42b123b2012-02-13 15:20:13 +000014545 if (tg3_flag(tp, 5780_CLASS)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014546 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070014547 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000014548 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080014549 struct pci_dev *bridge = NULL;
14550
14551 do {
14552 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
14553 PCI_DEVICE_ID_SERVERWORKS_EPB,
14554 bridge);
14555 if (bridge && bridge->subordinate &&
14556 (bridge->subordinate->number <=
14557 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070014558 (bridge->subordinate->busn_res.end >=
Michael Chan4a29cc22006-03-19 13:21:12 -080014559 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014560 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080014561 pci_dev_put(bridge);
14562 break;
14563 }
14564 } while (bridge);
14565 }
Michael Chan4cf78e42005-07-25 12:29:19 -070014566
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014567 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Matt Carlson3a1e19d2011-07-13 09:27:32 +000014568 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070014569 tp->pdev_peer = tg3_find_peer(tp);
14570
Matt Carlson507399f2009-11-13 13:03:37 +000014571 /* Determine TSO capabilities */
Matt Carlsona0512942011-07-27 14:20:54 +000014572 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000014573 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000014574 else if (tg3_flag(tp, 57765_PLUS))
14575 tg3_flag_set(tp, HW_TSO_3);
14576 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000014577 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000014578 tg3_flag_set(tp, HW_TSO_2);
14579 else if (tg3_flag(tp, 5750_PLUS)) {
14580 tg3_flag_set(tp, HW_TSO_1);
14581 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014582 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
14583 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000014584 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014585 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14586 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
14587 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014588 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014589 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
14590 tp->fw_needed = FIRMWARE_TG3TSO5;
14591 else
14592 tp->fw_needed = FIRMWARE_TG3TSO;
14593 }
14594
Matt Carlsondabc5c62011-05-19 12:12:52 +000014595 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014596 if (tg3_flag(tp, HW_TSO_1) ||
14597 tg3_flag(tp, HW_TSO_2) ||
14598 tg3_flag(tp, HW_TSO_3) ||
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014599 tp->fw_needed) {
14600 /* For firmware TSO, assume ASF is disabled.
14601 * We'll disable TSO later if we discover ASF
14602 * is enabled in tg3_get_eeprom_hw_cfg().
14603 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000014604 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014605 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000014606 tg3_flag_clear(tp, TSO_CAPABLE);
14607 tg3_flag_clear(tp, TSO_BUG);
14608 tp->fw_needed = NULL;
14609 }
14610
14611 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
14612 tp->fw_needed = FIRMWARE_TG3;
14613
Matt Carlson507399f2009-11-13 13:03:37 +000014614 tp->irq_max = 1;
14615
Joe Perches63c3a662011-04-26 08:12:10 +000014616 if (tg3_flag(tp, 5750_PLUS)) {
14617 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014618 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
14619 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
14620 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
14621 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
14622 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000014623 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014624
Joe Perches63c3a662011-04-26 08:12:10 +000014625 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070014626 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014627 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070014628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014629
Joe Perches63c3a662011-04-26 08:12:10 +000014630 if (tg3_flag(tp, 57765_PLUS)) {
14631 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000014632 tp->irq_max = TG3_IRQ_MAX_VECS;
14633 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014634 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000014635
Michael Chan91024262012-09-28 07:12:38 +000014636 tp->txq_max = 1;
14637 tp->rxq_max = 1;
14638 if (tp->irq_max > 1) {
14639 tp->rxq_max = TG3_RSS_MAX_NUM_QS;
14640 tg3_rss_init_dflt_indir_tbl(tp, TG3_RSS_MAX_NUM_QS);
14641
14642 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14643 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14644 tp->txq_max = tp->irq_max - 1;
14645 }
14646
Matt Carlsonb7abee62012-06-07 12:56:54 +000014647 if (tg3_flag(tp, 5755_PLUS) ||
14648 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000014649 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014650
Matt Carlsone31aa982011-07-27 14:20:53 +000014651 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000014652 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlsone31aa982011-07-27 14:20:53 +000014653
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +000014654 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14655 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14656 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000014657 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000014658
Joe Perches63c3a662011-04-26 08:12:10 +000014659 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlsona0512942011-07-27 14:20:54 +000014660 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000014661 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000014662
Joe Perches63c3a662011-04-26 08:12:10 +000014663 if (!tg3_flag(tp, 5705_PLUS) ||
14664 tg3_flag(tp, 5780_CLASS) ||
14665 tg3_flag(tp, USE_JUMBO_BDFLAG))
14666 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070014667
Matt Carlson52f44902008-11-21 17:17:04 -080014668 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14669 &pci_state_reg);
14670
Jon Mason708ebb3a2011-06-27 12:56:50 +000014671 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014672 u16 lnkctl;
14673
Joe Perches63c3a662011-04-26 08:12:10 +000014674 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080014675
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014676 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +000014677 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014678 &lnkctl);
14679 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Matt Carlson7196cd62011-05-19 16:02:44 +000014680 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
14681 ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014682 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000014683 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000014684 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014685 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014686 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000014687 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
14688 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000014689 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b0592010-01-20 16:58:02 +000014690 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014691 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080014692 }
Matt Carlson52f44902008-11-21 17:17:04 -080014693 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000014694 /* BCM5785 devices are effectively PCIe devices, and should
14695 * follow PCIe codepaths, but do not have a PCIe capabilities
14696 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000014697 */
Joe Perches63c3a662011-04-26 08:12:10 +000014698 tg3_flag_set(tp, PCI_EXPRESS);
14699 } else if (!tg3_flag(tp, 5705_PLUS) ||
14700 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080014701 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
14702 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000014703 dev_err(&tp->pdev->dev,
14704 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080014705 return -EIO;
14706 }
14707
14708 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000014709 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080014710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014711
Michael Chan399de502005-10-03 14:02:39 -070014712 /* If we have an AMD 762 or VIA K8T800 chipset, write
14713 * reordering to the mailbox registers done by the host
14714 * controller can cause major troubles. We read back from
14715 * every mailbox register write to force the writes to be
14716 * posted to the chip in order.
14717 */
Matt Carlson41434702011-03-09 16:58:22 +000014718 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014719 !tg3_flag(tp, PCI_EXPRESS))
14720 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070014721
Matt Carlson69fc4052008-12-21 20:19:57 -080014722 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
14723 &tp->pci_cacheline_sz);
14724 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14725 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014726 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14727 tp->pci_lat_timer < 64) {
14728 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080014729 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14730 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014731 }
14732
Matt Carlson16821282011-07-13 09:27:28 +000014733 /* Important! -- It is critical that the PCI-X hw workaround
14734 * situation is decided before the first MMIO register access.
14735 */
Matt Carlson52f44902008-11-21 17:17:04 -080014736 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
14737 /* 5700 BX chips need to have their TX producer index
14738 * mailboxes written twice to workaround a bug.
14739 */
Joe Perches63c3a662011-04-26 08:12:10 +000014740 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070014741
Matt Carlson52f44902008-11-21 17:17:04 -080014742 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014743 *
14744 * The workaround is to use indirect register accesses
14745 * for all chip writes not to mailbox registers.
14746 */
Joe Perches63c3a662011-04-26 08:12:10 +000014747 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014748 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014749
Joe Perches63c3a662011-04-26 08:12:10 +000014750 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014751
14752 /* The chip can have it's power management PCI config
14753 * space registers clobbered due to this bug.
14754 * So explicitly force the chip into D0 here.
14755 */
Matt Carlson9974a352007-10-07 23:27:28 -070014756 pci_read_config_dword(tp->pdev,
14757 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014758 &pm_reg);
14759 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
14760 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070014761 pci_write_config_dword(tp->pdev,
14762 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014763 pm_reg);
14764
14765 /* Also, force SERR#/PERR# in PCI command. */
14766 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14767 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
14768 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14769 }
14770 }
14771
Linus Torvalds1da177e2005-04-16 15:20:36 -070014772 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014773 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014774 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014775 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014776
14777 /* Chip-specific fixup from Broadcom driver */
14778 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
14779 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
14780 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
14781 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
14782 }
14783
Michael Chan1ee582d2005-08-09 20:16:46 -070014784 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070014785 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014786 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070014787 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070014788 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014789 tp->write32_tx_mbox = tg3_write32;
14790 tp->write32_rx_mbox = tg3_write32;
14791
14792 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000014793 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070014794 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014795 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014796 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070014797 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
14798 /*
14799 * Back to back register writes can cause problems on these
14800 * chips, the workaround is to read back all reg writes
14801 * except those to mailbox regs.
14802 *
14803 * See tg3_write_indirect_reg32().
14804 */
Michael Chan1ee582d2005-08-09 20:16:46 -070014805 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014806 }
14807
Joe Perches63c3a662011-04-26 08:12:10 +000014808 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070014809 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000014810 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070014811 tp->write32_rx_mbox = tg3_write_flush_reg32;
14812 }
Michael Chan20094932005-08-09 20:16:32 -070014813
Joe Perches63c3a662011-04-26 08:12:10 +000014814 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070014815 tp->read32 = tg3_read_indirect_reg32;
14816 tp->write32 = tg3_write_indirect_reg32;
14817 tp->read32_mbox = tg3_read_indirect_mbox;
14818 tp->write32_mbox = tg3_write_indirect_mbox;
14819 tp->write32_tx_mbox = tg3_write_indirect_mbox;
14820 tp->write32_rx_mbox = tg3_write_indirect_mbox;
14821
14822 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014823 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014824
14825 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14826 pci_cmd &= ~PCI_COMMAND_MEMORY;
14827 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14828 }
Michael Chanb5d37722006-09-27 16:06:21 -070014829 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14830 tp->read32_mbox = tg3_read32_mbox_5906;
14831 tp->write32_mbox = tg3_write32_mbox_5906;
14832 tp->write32_tx_mbox = tg3_write32_mbox_5906;
14833 tp->write32_rx_mbox = tg3_write32_mbox_5906;
14834 }
Michael Chan68929142005-08-09 20:17:14 -070014835
Michael Chanbbadf502006-04-06 21:46:34 -070014836 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014837 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070014838 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070014839 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000014840 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070014841
Matt Carlson16821282011-07-13 09:27:28 +000014842 /* The memory arbiter has to be enabled in order for SRAM accesses
14843 * to succeed. Normally on powerup the tg3 chip firmware will make
14844 * sure it is enabled, but other entities such as system netboot
14845 * code might disable it.
14846 */
14847 val = tr32(MEMARB_MODE);
14848 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
14849
Matt Carlson9dc5e342011-11-04 09:15:02 +000014850 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
14851 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
14852 tg3_flag(tp, 5780_CLASS)) {
14853 if (tg3_flag(tp, PCIX_MODE)) {
14854 pci_read_config_dword(tp->pdev,
14855 tp->pcix_cap + PCI_X_STATUS,
14856 &val);
14857 tp->pci_fn = val & 0x7;
14858 }
14859 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
14860 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14861 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14862 NIC_SRAM_CPMUSTAT_SIG) {
14863 tp->pci_fn = val & TG3_CPMU_STATUS_FMSK_5717;
14864 tp->pci_fn = tp->pci_fn ? 1 : 0;
14865 }
14866 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14867 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
14868 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14869 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14870 NIC_SRAM_CPMUSTAT_SIG) {
14871 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
14872 TG3_CPMU_STATUS_FSHFT_5719;
14873 }
Matt Carlson69f11c92011-07-13 09:27:30 +000014874 }
14875
Michael Chan7d0c41e2005-04-21 17:06:20 -070014876 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000014877 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070014878 * determined before calling tg3_set_power_state() so that
14879 * we know whether or not to switch out of Vaux power.
14880 * When the flag is set, it means that GPIO1 is used for eeprom
14881 * write protect and also implies that it is a LOM where GPIOs
14882 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014883 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070014884 tg3_get_eeprom_hw_cfg(tp);
14885
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014886 if (tp->fw_needed && tg3_flag(tp, ENABLE_ASF)) {
14887 tg3_flag_clear(tp, TSO_CAPABLE);
14888 tg3_flag_clear(tp, TSO_BUG);
14889 tp->fw_needed = NULL;
14890 }
14891
Joe Perches63c3a662011-04-26 08:12:10 +000014892 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014893 /* Allow reads and writes to the
14894 * APE register and memory space.
14895 */
14896 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000014897 PCISTATE_ALLOW_APE_SHMEM_WR |
14898 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014899 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
14900 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000014901
14902 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014903 }
14904
Matt Carlson16821282011-07-13 09:27:28 +000014905 /* Set up tp->grc_local_ctrl before calling
14906 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
14907 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070014908 * It is also used as eeprom write protect on LOMs.
14909 */
14910 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014911 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014912 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070014913 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
14914 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070014915 /* Unused GPIO3 must be driven as output on 5752 because there
14916 * are no pull-up resistors on unused GPIO pins.
14917 */
14918 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
14919 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070014920
Matt Carlson321d32a2008-11-21 17:22:19 -080014921 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000014922 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014923 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080014924 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
14925
Matt Carlson8d519ab2009-04-20 06:58:01 +000014926 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
14927 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014928 /* Turn off the debug UART. */
14929 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014930 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014931 /* Keep VMain power. */
14932 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
14933 GRC_LCLCTRL_GPIO_OUTPUT0;
14934 }
14935
Matt Carlson16821282011-07-13 09:27:28 +000014936 /* Switch out of Vaux if it is a NIC */
14937 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014938
Linus Torvalds1da177e2005-04-16 15:20:36 -070014939 /* Derive initial jumbo mode from MTU assigned in
14940 * ether_setup() via the alloc_etherdev() call
14941 */
Joe Perches63c3a662011-04-26 08:12:10 +000014942 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
14943 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014944
14945 /* Determine WakeOnLan speed to use. */
14946 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14947 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
14948 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
14949 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000014950 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014951 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014952 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014953 }
14954
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014955 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014956 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014957
Linus Torvalds1da177e2005-04-16 15:20:36 -070014958 /* A few boards don't want Ethernet@WireSpeed phy feature */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014959 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14960 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014961 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070014962 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014963 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
14964 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14965 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014966
14967 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
14968 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014969 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014970 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014971 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014972
Joe Perches63c3a662011-04-26 08:12:10 +000014973 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014974 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080014975 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014976 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014977 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070014978 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070014979 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070014980 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14981 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080014982 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
14983 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014984 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080014985 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014986 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080014987 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014988 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070014989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014990
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014991 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14992 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
14993 tp->phy_otp = tg3_read_otp_phycfg(tp);
14994 if (tp->phy_otp == 0)
14995 tp->phy_otp = TG3_OTP_DEFAULT;
14996 }
14997
Joe Perches63c3a662011-04-26 08:12:10 +000014998 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070014999 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
15000 else
15001 tp->mi_mode = MAC_MI_MODE_BASE;
15002
Linus Torvalds1da177e2005-04-16 15:20:36 -070015003 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015004 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
15005 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
15006 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
15007
Matt Carlson4d958472011-04-20 07:57:35 +000015008 /* Set these bits to enable statistics workaround. */
15009 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
15010 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
15011 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
15012 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
15013 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
15014 }
15015
Matt Carlson321d32a2008-11-21 17:22:19 -080015016 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
15017 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000015018 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070015019
Matt Carlson158d7ab2008-05-29 01:37:54 -070015020 err = tg3_mdio_init(tp);
15021 if (err)
15022 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015023
15024 /* Initialize data/descriptor byte/word swapping. */
15025 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000015026 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
15027 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
15028 GRC_MODE_WORD_SWAP_B2HRX_DATA |
15029 GRC_MODE_B2HRX_ENABLE |
15030 GRC_MODE_HTX2B_ENABLE |
15031 GRC_MODE_HOST_STACKUP);
15032 else
15033 val &= GRC_MODE_HOST_STACKUP;
15034
Linus Torvalds1da177e2005-04-16 15:20:36 -070015035 tw32(GRC_MODE, val | tp->grc_mode);
15036
15037 tg3_switch_clocks(tp);
15038
15039 /* Clear this out for sanity. */
15040 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
15041
15042 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
15043 &pci_state_reg);
15044 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015045 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015046 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
15047
15048 if (chiprevid == CHIPREV_ID_5701_A0 ||
15049 chiprevid == CHIPREV_ID_5701_B0 ||
15050 chiprevid == CHIPREV_ID_5701_B2 ||
15051 chiprevid == CHIPREV_ID_5701_B5) {
15052 void __iomem *sram_base;
15053
15054 /* Write some dummy words into the SRAM status block
15055 * area, see if it reads back correctly. If the return
15056 * value is bad, force enable the PCIX workaround.
15057 */
15058 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
15059
15060 writel(0x00000000, sram_base);
15061 writel(0x00000000, sram_base + 4);
15062 writel(0xffffffff, sram_base + 4);
15063 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000015064 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015065 }
15066 }
15067
15068 udelay(50);
15069 tg3_nvram_init(tp);
15070
15071 grc_misc_cfg = tr32(GRC_MISC_CFG);
15072 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
15073
Linus Torvalds1da177e2005-04-16 15:20:36 -070015074 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
15075 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
15076 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000015077 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015078
Joe Perches63c3a662011-04-26 08:12:10 +000015079 if (!tg3_flag(tp, IS_5788) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +000015080 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000015081 tg3_flag_set(tp, TAGGED_STATUS);
15082 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070015083 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
15084 HOSTCC_MODE_CLRTICK_TXBD);
15085
15086 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
15087 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15088 tp->misc_host_ctrl);
15089 }
15090
Matt Carlson3bda1252008-08-15 14:08:22 -070015091 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000015092 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000015093 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070015094 else
Matt Carlson6e01b202011-08-19 13:58:20 +000015095 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070015096
Linus Torvalds1da177e2005-04-16 15:20:36 -070015097 /* these are limited to 10/100 only */
15098 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
15099 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
15100 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
15101 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
15102 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
15103 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
15104 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
15105 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
15106 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080015107 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
15108 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080015109 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000015110 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
15111 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015112 (tp->phy_flags & TG3_PHYFLG_IS_FET))
15113 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015114
15115 err = tg3_phy_probe(tp);
15116 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015117 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015118 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015119 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015120 }
15121
Matt Carlson184b8902010-04-05 10:19:25 +000015122 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080015123 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015124
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015125 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
15126 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015127 } else {
15128 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015129 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015130 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015131 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015132 }
15133
15134 /* 5700 {AX,BX} chips have a broken status block link
15135 * change bit implementation, so we must use the
15136 * status register in those cases.
15137 */
15138 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000015139 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015140 else
Joe Perches63c3a662011-04-26 08:12:10 +000015141 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015142
15143 /* The led_ctrl is set during tg3_phy_probe, here we might
15144 * have to force the link status polling mechanism based
15145 * upon subsystem IDs.
15146 */
15147 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070015148 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015149 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
15150 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000015151 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015152 }
15153
15154 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015155 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000015156 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015157 else
Joe Perches63c3a662011-04-26 08:12:10 +000015158 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015159
Eric Dumazet9205fd92011-11-18 06:47:01 +000015160 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000015161 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015162 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015163 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000015164 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000015165#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000015166 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000015167#endif
15168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015169
Matt Carlson2c49a442010-09-30 10:34:35 +000015170 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
15171 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015172 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
15173
Matt Carlson2c49a442010-09-30 10:34:35 +000015174 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070015175
15176 /* Increment the rx prod index on the rx std ring by at most
15177 * 8 for these chips to workaround hw errata.
15178 */
15179 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
15180 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
15181 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
15182 tp->rx_std_max_post = 8;
15183
Joe Perches63c3a662011-04-26 08:12:10 +000015184 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070015185 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
15186 PCIE_PWR_MGMT_L1_THRESH_MSK;
15187
Linus Torvalds1da177e2005-04-16 15:20:36 -070015188 return err;
15189}
15190
David S. Miller49b6e95f2007-03-29 01:38:42 -070015191#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070015192static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
15193{
15194 struct net_device *dev = tp->dev;
15195 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070015196 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070015197 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070015198 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015199
David S. Miller49b6e95f2007-03-29 01:38:42 -070015200 addr = of_get_property(dp, "local-mac-address", &len);
15201 if (addr && len == 6) {
15202 memcpy(dev->dev_addr, addr, 6);
15203 memcpy(dev->perm_addr, dev->dev_addr, 6);
15204 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015205 }
15206 return -ENODEV;
15207}
15208
15209static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
15210{
15211 struct net_device *dev = tp->dev;
15212
15213 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070015214 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015215 return 0;
15216}
15217#endif
15218
15219static int __devinit tg3_get_device_address(struct tg3 *tp)
15220{
15221 struct net_device *dev = tp->dev;
15222 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080015223 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015224
David S. Miller49b6e95f2007-03-29 01:38:42 -070015225#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070015226 if (!tg3_get_macaddr_sparc(tp))
15227 return 0;
15228#endif
15229
15230 mac_offset = 0x7c;
Matt Carlson6ff6f812011-05-19 12:12:54 +000015231 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000015232 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015233 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
15234 mac_offset = 0xcc;
15235 if (tg3_nvram_lock(tp))
15236 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
15237 else
15238 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000015239 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000015240 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000015241 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000015242 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000015243 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000015244 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070015245 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015246
15247 /* First try to get it from MAC address mailbox. */
15248 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
15249 if ((hi >> 16) == 0x484b) {
15250 dev->dev_addr[0] = (hi >> 8) & 0xff;
15251 dev->dev_addr[1] = (hi >> 0) & 0xff;
15252
15253 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
15254 dev->dev_addr[2] = (lo >> 24) & 0xff;
15255 dev->dev_addr[3] = (lo >> 16) & 0xff;
15256 dev->dev_addr[4] = (lo >> 8) & 0xff;
15257 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015258
Michael Chan008652b2006-03-27 23:14:53 -080015259 /* Some old bootcode may report a 0 MAC address in SRAM */
15260 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
15261 }
15262 if (!addr_ok) {
15263 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000015264 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000015265 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000015266 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070015267 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
15268 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080015269 }
15270 /* Finally just fetch it out of the MAC control regs. */
15271 else {
15272 hi = tr32(MAC_ADDR_0_HIGH);
15273 lo = tr32(MAC_ADDR_0_LOW);
15274
15275 dev->dev_addr[5] = lo & 0xff;
15276 dev->dev_addr[4] = (lo >> 8) & 0xff;
15277 dev->dev_addr[3] = (lo >> 16) & 0xff;
15278 dev->dev_addr[2] = (lo >> 24) & 0xff;
15279 dev->dev_addr[1] = hi & 0xff;
15280 dev->dev_addr[0] = (hi >> 8) & 0xff;
15281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015282 }
15283
15284 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070015285#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070015286 if (!tg3_get_default_macaddr_sparc(tp))
15287 return 0;
15288#endif
15289 return -EINVAL;
15290 }
John W. Linville2ff43692005-09-12 14:44:20 -070015291 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015292 return 0;
15293}
15294
David S. Miller59e6b432005-05-18 22:50:10 -070015295#define BOUNDARY_SINGLE_CACHELINE 1
15296#define BOUNDARY_MULTI_CACHELINE 2
15297
15298static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
15299{
15300 int cacheline_size;
15301 u8 byte;
15302 int goal;
15303
15304 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
15305 if (byte == 0)
15306 cacheline_size = 1024;
15307 else
15308 cacheline_size = (int) byte * 4;
15309
15310 /* On 5703 and later chips, the boundary bits have no
15311 * effect.
15312 */
15313 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
15314 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015315 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070015316 goto out;
15317
15318#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
15319 goal = BOUNDARY_MULTI_CACHELINE;
15320#else
15321#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
15322 goal = BOUNDARY_SINGLE_CACHELINE;
15323#else
15324 goal = 0;
15325#endif
15326#endif
15327
Joe Perches63c3a662011-04-26 08:12:10 +000015328 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015329 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
15330 goto out;
15331 }
15332
David S. Miller59e6b432005-05-18 22:50:10 -070015333 if (!goal)
15334 goto out;
15335
15336 /* PCI controllers on most RISC systems tend to disconnect
15337 * when a device tries to burst across a cache-line boundary.
15338 * Therefore, letting tg3 do so just wastes PCI bandwidth.
15339 *
15340 * Unfortunately, for PCI-E there are only limited
15341 * write-side controls for this, and thus for reads
15342 * we will still get the disconnects. We'll also waste
15343 * these PCI cycles for both read and write for chips
15344 * other than 5700 and 5701 which do not implement the
15345 * boundary bits.
15346 */
Joe Perches63c3a662011-04-26 08:12:10 +000015347 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070015348 switch (cacheline_size) {
15349 case 16:
15350 case 32:
15351 case 64:
15352 case 128:
15353 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15354 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
15355 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
15356 } else {
15357 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
15358 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
15359 }
15360 break;
15361
15362 case 256:
15363 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
15364 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
15365 break;
15366
15367 default:
15368 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
15369 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
15370 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070015371 }
Joe Perches63c3a662011-04-26 08:12:10 +000015372 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070015373 switch (cacheline_size) {
15374 case 16:
15375 case 32:
15376 case 64:
15377 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15378 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
15379 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
15380 break;
15381 }
15382 /* fallthrough */
15383 case 128:
15384 default:
15385 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
15386 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
15387 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070015388 }
David S. Miller59e6b432005-05-18 22:50:10 -070015389 } else {
15390 switch (cacheline_size) {
15391 case 16:
15392 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15393 val |= (DMA_RWCTRL_READ_BNDRY_16 |
15394 DMA_RWCTRL_WRITE_BNDRY_16);
15395 break;
15396 }
15397 /* fallthrough */
15398 case 32:
15399 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15400 val |= (DMA_RWCTRL_READ_BNDRY_32 |
15401 DMA_RWCTRL_WRITE_BNDRY_32);
15402 break;
15403 }
15404 /* fallthrough */
15405 case 64:
15406 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15407 val |= (DMA_RWCTRL_READ_BNDRY_64 |
15408 DMA_RWCTRL_WRITE_BNDRY_64);
15409 break;
15410 }
15411 /* fallthrough */
15412 case 128:
15413 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15414 val |= (DMA_RWCTRL_READ_BNDRY_128 |
15415 DMA_RWCTRL_WRITE_BNDRY_128);
15416 break;
15417 }
15418 /* fallthrough */
15419 case 256:
15420 val |= (DMA_RWCTRL_READ_BNDRY_256 |
15421 DMA_RWCTRL_WRITE_BNDRY_256);
15422 break;
15423 case 512:
15424 val |= (DMA_RWCTRL_READ_BNDRY_512 |
15425 DMA_RWCTRL_WRITE_BNDRY_512);
15426 break;
15427 case 1024:
15428 default:
15429 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
15430 DMA_RWCTRL_WRITE_BNDRY_1024);
15431 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070015432 }
David S. Miller59e6b432005-05-18 22:50:10 -070015433 }
15434
15435out:
15436 return val;
15437}
15438
Linus Torvalds1da177e2005-04-16 15:20:36 -070015439static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
15440{
15441 struct tg3_internal_buffer_desc test_desc;
15442 u32 sram_dma_descs;
15443 int i, ret;
15444
15445 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
15446
15447 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
15448 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
15449 tw32(RDMAC_STATUS, 0);
15450 tw32(WDMAC_STATUS, 0);
15451
15452 tw32(BUFMGR_MODE, 0);
15453 tw32(FTQ_RESET, 0);
15454
15455 test_desc.addr_hi = ((u64) buf_dma) >> 32;
15456 test_desc.addr_lo = buf_dma & 0xffffffff;
15457 test_desc.nic_mbuf = 0x00002100;
15458 test_desc.len = size;
15459
15460 /*
15461 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
15462 * the *second* time the tg3 driver was getting loaded after an
15463 * initial scan.
15464 *
15465 * Broadcom tells me:
15466 * ...the DMA engine is connected to the GRC block and a DMA
15467 * reset may affect the GRC block in some unpredictable way...
15468 * The behavior of resets to individual blocks has not been tested.
15469 *
15470 * Broadcom noted the GRC reset will also reset all sub-components.
15471 */
15472 if (to_device) {
15473 test_desc.cqid_sqid = (13 << 8) | 2;
15474
15475 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
15476 udelay(40);
15477 } else {
15478 test_desc.cqid_sqid = (16 << 8) | 7;
15479
15480 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
15481 udelay(40);
15482 }
15483 test_desc.flags = 0x00000005;
15484
15485 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
15486 u32 val;
15487
15488 val = *(((u32 *)&test_desc) + i);
15489 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
15490 sram_dma_descs + (i * sizeof(u32)));
15491 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
15492 }
15493 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
15494
Matt Carlson859a588792010-04-05 10:19:28 +000015495 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015496 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000015497 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070015498 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015499
15500 ret = -ENODEV;
15501 for (i = 0; i < 40; i++) {
15502 u32 val;
15503
15504 if (to_device)
15505 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
15506 else
15507 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
15508 if ((val & 0xffff) == sram_dma_descs) {
15509 ret = 0;
15510 break;
15511 }
15512
15513 udelay(100);
15514 }
15515
15516 return ret;
15517}
15518
David S. Millerded73402005-05-23 13:59:47 -070015519#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070015520
Matt Carlson41434702011-03-09 16:58:22 +000015521static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080015522 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
15523 { },
15524};
15525
Linus Torvalds1da177e2005-04-16 15:20:36 -070015526static int __devinit tg3_test_dma(struct tg3 *tp)
15527{
15528 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070015529 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015530 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015531
Matt Carlson4bae65c2010-11-24 08:31:52 +000015532 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
15533 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015534 if (!buf) {
15535 ret = -ENOMEM;
15536 goto out_nofree;
15537 }
15538
15539 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
15540 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
15541
David S. Miller59e6b432005-05-18 22:50:10 -070015542 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015543
Joe Perches63c3a662011-04-26 08:12:10 +000015544 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015545 goto out;
15546
Joe Perches63c3a662011-04-26 08:12:10 +000015547 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015548 /* DMA read watermark not used on PCIE */
15549 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000015550 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070015551 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
15552 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015553 tp->dma_rwctrl |= 0x003f0000;
15554 else
15555 tp->dma_rwctrl |= 0x003f000f;
15556 } else {
15557 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
15558 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
15559 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080015560 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015561
Michael Chan4a29cc22006-03-19 13:21:12 -080015562 /* If the 5704 is behind the EPB bridge, we can
15563 * do the less restrictive ONE_DMA workaround for
15564 * better performance.
15565 */
Joe Perches63c3a662011-04-26 08:12:10 +000015566 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080015567 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
15568 tp->dma_rwctrl |= 0x8000;
15569 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015570 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
15571
Michael Chan49afdeb2007-02-13 12:17:03 -080015572 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
15573 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070015574 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080015575 tp->dma_rwctrl |=
15576 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
15577 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
15578 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070015579 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
15580 /* 5780 always in PCIX mode */
15581 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070015582 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
15583 /* 5714 always in PCIX mode */
15584 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015585 } else {
15586 tp->dma_rwctrl |= 0x001b000f;
15587 }
15588 }
15589
15590 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
15591 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
15592 tp->dma_rwctrl &= 0xfffffff0;
15593
15594 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
15595 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
15596 /* Remove this if it causes problems for some boards. */
15597 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
15598
15599 /* On 5700/5701 chips, we need to set this bit.
15600 * Otherwise the chip will issue cacheline transactions
15601 * to streamable DMA memory with not all the byte
15602 * enables turned on. This is an error on several
15603 * RISC PCI controllers, in particular sparc64.
15604 *
15605 * On 5703/5704 chips, this bit has been reassigned
15606 * a different meaning. In particular, it is used
15607 * on those chips to enable a PCI-X workaround.
15608 */
15609 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
15610 }
15611
15612 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15613
15614#if 0
15615 /* Unneeded, already done by tg3_get_invariants. */
15616 tg3_switch_clocks(tp);
15617#endif
15618
Linus Torvalds1da177e2005-04-16 15:20:36 -070015619 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
15620 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
15621 goto out;
15622
David S. Miller59e6b432005-05-18 22:50:10 -070015623 /* It is best to perform DMA test with maximum write burst size
15624 * to expose the 5700/5701 write DMA bug.
15625 */
15626 saved_dma_rwctrl = tp->dma_rwctrl;
15627 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15628 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15629
Linus Torvalds1da177e2005-04-16 15:20:36 -070015630 while (1) {
15631 u32 *p = buf, i;
15632
15633 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
15634 p[i] = i;
15635
15636 /* Send the buffer to the chip. */
15637 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
15638 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000015639 dev_err(&tp->pdev->dev,
15640 "%s: Buffer write failed. err = %d\n",
15641 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015642 break;
15643 }
15644
15645#if 0
15646 /* validate data reached card RAM correctly. */
15647 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15648 u32 val;
15649 tg3_read_mem(tp, 0x2100 + (i*4), &val);
15650 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000015651 dev_err(&tp->pdev->dev,
15652 "%s: Buffer corrupted on device! "
15653 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015654 /* ret = -ENODEV here? */
15655 }
15656 p[i] = 0;
15657 }
15658#endif
15659 /* Now read it back. */
15660 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
15661 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000015662 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
15663 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015664 break;
15665 }
15666
15667 /* Verify it. */
15668 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15669 if (p[i] == i)
15670 continue;
15671
David S. Miller59e6b432005-05-18 22:50:10 -070015672 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15673 DMA_RWCTRL_WRITE_BNDRY_16) {
15674 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015675 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
15676 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15677 break;
15678 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000015679 dev_err(&tp->pdev->dev,
15680 "%s: Buffer corrupted on read back! "
15681 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015682 ret = -ENODEV;
15683 goto out;
15684 }
15685 }
15686
15687 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
15688 /* Success. */
15689 ret = 0;
15690 break;
15691 }
15692 }
David S. Miller59e6b432005-05-18 22:50:10 -070015693 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15694 DMA_RWCTRL_WRITE_BNDRY_16) {
15695 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070015696 * now look for chipsets that are known to expose the
15697 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070015698 */
Matt Carlson41434702011-03-09 16:58:22 +000015699 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015700 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15701 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000015702 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015703 /* Safe to use the calculated DMA boundary. */
15704 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000015705 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070015706
David S. Miller59e6b432005-05-18 22:50:10 -070015707 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015709
15710out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000015711 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015712out_nofree:
15713 return ret;
15714}
15715
Linus Torvalds1da177e2005-04-16 15:20:36 -070015716static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
15717{
Joe Perches63c3a662011-04-26 08:12:10 +000015718 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000015719 tp->bufmgr_config.mbuf_read_dma_low_water =
15720 DEFAULT_MB_RDMA_LOW_WATER_5705;
15721 tp->bufmgr_config.mbuf_mac_rx_low_water =
15722 DEFAULT_MB_MACRX_LOW_WATER_57765;
15723 tp->bufmgr_config.mbuf_high_water =
15724 DEFAULT_MB_HIGH_WATER_57765;
15725
15726 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15727 DEFAULT_MB_RDMA_LOW_WATER_5705;
15728 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15729 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
15730 tp->bufmgr_config.mbuf_high_water_jumbo =
15731 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000015732 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070015733 tp->bufmgr_config.mbuf_read_dma_low_water =
15734 DEFAULT_MB_RDMA_LOW_WATER_5705;
15735 tp->bufmgr_config.mbuf_mac_rx_low_water =
15736 DEFAULT_MB_MACRX_LOW_WATER_5705;
15737 tp->bufmgr_config.mbuf_high_water =
15738 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070015739 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
15740 tp->bufmgr_config.mbuf_mac_rx_low_water =
15741 DEFAULT_MB_MACRX_LOW_WATER_5906;
15742 tp->bufmgr_config.mbuf_high_water =
15743 DEFAULT_MB_HIGH_WATER_5906;
15744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015745
Michael Chanfdfec1722005-07-25 12:31:48 -070015746 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15747 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
15748 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15749 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
15750 tp->bufmgr_config.mbuf_high_water_jumbo =
15751 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
15752 } else {
15753 tp->bufmgr_config.mbuf_read_dma_low_water =
15754 DEFAULT_MB_RDMA_LOW_WATER;
15755 tp->bufmgr_config.mbuf_mac_rx_low_water =
15756 DEFAULT_MB_MACRX_LOW_WATER;
15757 tp->bufmgr_config.mbuf_high_water =
15758 DEFAULT_MB_HIGH_WATER;
15759
15760 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15761 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
15762 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15763 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
15764 tp->bufmgr_config.mbuf_high_water_jumbo =
15765 DEFAULT_MB_HIGH_WATER_JUMBO;
15766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015767
15768 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
15769 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
15770}
15771
15772static char * __devinit tg3_phy_string(struct tg3 *tp)
15773{
Matt Carlson79eb6902010-02-17 15:17:03 +000015774 switch (tp->phy_id & TG3_PHY_ID_MASK) {
15775 case TG3_PHY_ID_BCM5400: return "5400";
15776 case TG3_PHY_ID_BCM5401: return "5401";
15777 case TG3_PHY_ID_BCM5411: return "5411";
15778 case TG3_PHY_ID_BCM5701: return "5701";
15779 case TG3_PHY_ID_BCM5703: return "5703";
15780 case TG3_PHY_ID_BCM5704: return "5704";
15781 case TG3_PHY_ID_BCM5705: return "5705";
15782 case TG3_PHY_ID_BCM5750: return "5750";
15783 case TG3_PHY_ID_BCM5752: return "5752";
15784 case TG3_PHY_ID_BCM5714: return "5714";
15785 case TG3_PHY_ID_BCM5780: return "5780";
15786 case TG3_PHY_ID_BCM5755: return "5755";
15787 case TG3_PHY_ID_BCM5787: return "5787";
15788 case TG3_PHY_ID_BCM5784: return "5784";
15789 case TG3_PHY_ID_BCM5756: return "5722/5756";
15790 case TG3_PHY_ID_BCM5906: return "5906";
15791 case TG3_PHY_ID_BCM5761: return "5761";
15792 case TG3_PHY_ID_BCM5718C: return "5718C";
15793 case TG3_PHY_ID_BCM5718S: return "5718S";
15794 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000015795 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000015796 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000015797 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070015798 case 0: return "serdes";
15799 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070015800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015801}
15802
Michael Chanf9804dd2005-09-27 12:13:10 -070015803static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
15804{
Joe Perches63c3a662011-04-26 08:12:10 +000015805 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015806 strcpy(str, "PCI Express");
15807 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000015808 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015809 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
15810
15811 strcpy(str, "PCIX:");
15812
15813 if ((clock_ctrl == 7) ||
15814 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
15815 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
15816 strcat(str, "133MHz");
15817 else if (clock_ctrl == 0)
15818 strcat(str, "33MHz");
15819 else if (clock_ctrl == 2)
15820 strcat(str, "50MHz");
15821 else if (clock_ctrl == 4)
15822 strcat(str, "66MHz");
15823 else if (clock_ctrl == 6)
15824 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070015825 } else {
15826 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000015827 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070015828 strcat(str, "66MHz");
15829 else
15830 strcat(str, "33MHz");
15831 }
Joe Perches63c3a662011-04-26 08:12:10 +000015832 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070015833 strcat(str, ":32-bit");
15834 else
15835 strcat(str, ":64-bit");
15836 return str;
15837}
15838
David S. Miller15f98502005-05-18 22:49:26 -070015839static void __devinit tg3_init_coal(struct tg3 *tp)
15840{
15841 struct ethtool_coalesce *ec = &tp->coal;
15842
15843 memset(ec, 0, sizeof(*ec));
15844 ec->cmd = ETHTOOL_GCOALESCE;
15845 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
15846 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
15847 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
15848 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
15849 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
15850 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
15851 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
15852 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
15853 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
15854
15855 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
15856 HOSTCC_MODE_CLRTICK_TXBD)) {
15857 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
15858 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
15859 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
15860 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
15861 }
Michael Chand244c892005-07-05 14:42:33 -070015862
Joe Perches63c3a662011-04-26 08:12:10 +000015863 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070015864 ec->rx_coalesce_usecs_irq = 0;
15865 ec->tx_coalesce_usecs_irq = 0;
15866 ec->stats_block_coalesce_usecs = 0;
15867 }
David S. Miller15f98502005-05-18 22:49:26 -070015868}
15869
Linus Torvalds1da177e2005-04-16 15:20:36 -070015870static int __devinit tg3_init_one(struct pci_dev *pdev,
15871 const struct pci_device_id *ent)
15872{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015873 struct net_device *dev;
15874 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000015875 int i, err, pm_cap;
15876 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070015877 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080015878 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000015879 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015880
Joe Perches05dbe002010-02-17 19:44:19 +000015881 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015882
15883 err = pci_enable_device(pdev);
15884 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015885 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015886 return err;
15887 }
15888
Linus Torvalds1da177e2005-04-16 15:20:36 -070015889 err = pci_request_regions(pdev, DRV_MODULE_NAME);
15890 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015891 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015892 goto err_out_disable_pdev;
15893 }
15894
15895 pci_set_master(pdev);
15896
15897 /* Find power-management capability. */
15898 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
15899 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000015900 dev_err(&pdev->dev,
15901 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015902 err = -EIO;
15903 goto err_out_free_res;
15904 }
15905
Matt Carlson16821282011-07-13 09:27:28 +000015906 err = pci_set_power_state(pdev, PCI_D0);
15907 if (err) {
15908 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
15909 goto err_out_free_res;
15910 }
15911
Matt Carlsonfe5f5782009-09-01 13:09:39 +000015912 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015913 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015914 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000015915 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015916 }
15917
Linus Torvalds1da177e2005-04-16 15:20:36 -070015918 SET_NETDEV_DEV(dev, &pdev->dev);
15919
Linus Torvalds1da177e2005-04-16 15:20:36 -070015920 tp = netdev_priv(dev);
15921 tp->pdev = pdev;
15922 tp->dev = dev;
15923 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015924 tp->rx_mode = TG3_DEF_RX_MODE;
15925 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070015926
Linus Torvalds1da177e2005-04-16 15:20:36 -070015927 if (tg3_debug > 0)
15928 tp->msg_enable = tg3_debug;
15929 else
15930 tp->msg_enable = TG3_DEF_MSG_ENABLE;
15931
15932 /* The word/byte swap controls here control register access byte
15933 * swapping. DMA data byte swapping is controlled in the GRC_MODE
15934 * setting below.
15935 */
15936 tp->misc_host_ctrl =
15937 MISC_HOST_CTRL_MASK_PCI_INT |
15938 MISC_HOST_CTRL_WORD_SWAP |
15939 MISC_HOST_CTRL_INDIR_ACCESS |
15940 MISC_HOST_CTRL_PCISTATE_RW;
15941
15942 /* The NONFRM (non-frame) byte/word swap controls take effect
15943 * on descriptor entries, anything which isn't packet data.
15944 *
15945 * The StrongARM chips on the board (one for tx, one for rx)
15946 * are running in big-endian mode.
15947 */
15948 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
15949 GRC_MODE_WSWAP_NONFRM_DATA);
15950#ifdef __BIG_ENDIAN
15951 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
15952#endif
15953 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015954 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000015955 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015956
Matt Carlsond5fe4882008-11-21 17:20:32 -080015957 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010015958 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015959 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015960 err = -ENOMEM;
15961 goto err_out_free_dev;
15962 }
15963
Matt Carlsonc9cab242011-07-13 09:27:27 +000015964 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
15965 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
15966 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
15967 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
15968 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15969 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15970 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
15971 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720) {
15972 tg3_flag_set(tp, ENABLE_APE);
15973 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
15974 if (!tp->aperegs) {
15975 dev_err(&pdev->dev,
15976 "Cannot map APE registers, aborting\n");
15977 err = -ENOMEM;
15978 goto err_out_iounmap;
15979 }
15980 }
15981
Linus Torvalds1da177e2005-04-16 15:20:36 -070015982 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
15983 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015984
Linus Torvalds1da177e2005-04-16 15:20:36 -070015985 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015986 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000015987 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015988 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015989
15990 err = tg3_get_invariants(tp);
15991 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015992 dev_err(&pdev->dev,
15993 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015994 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015995 }
15996
Michael Chan4a29cc22006-03-19 13:21:12 -080015997 /* The EPB bridge inside 5714, 5715, and 5780 and any
15998 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015999 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
16000 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
16001 * do DMA address check in tg3_start_xmit().
16002 */
Joe Perches63c3a662011-04-26 08:12:10 +000016003 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070016004 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000016005 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070016006 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080016007#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070016008 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080016009#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080016010 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070016011 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080016012
16013 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070016014 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080016015 err = pci_set_dma_mask(pdev, dma_mask);
16016 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000016017 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080016018 err = pci_set_consistent_dma_mask(pdev,
16019 persist_dma_mask);
16020 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016021 dev_err(&pdev->dev, "Unable to obtain 64 bit "
16022 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000016023 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080016024 }
16025 }
16026 }
Yang Hongyang284901a2009-04-06 19:01:15 -070016027 if (err || dma_mask == DMA_BIT_MASK(32)) {
16028 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080016029 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016030 dev_err(&pdev->dev,
16031 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000016032 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080016033 }
16034 }
16035
Michael Chanfdfec1722005-07-25 12:31:48 -070016036 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016037
Matt Carlson0da06062011-05-19 12:12:53 +000016038 features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
16039
16040 /* 5700 B0 chips do not support checksumming correctly due
16041 * to hardware bugs.
16042 */
16043 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
16044 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
16045
16046 if (tg3_flag(tp, 5755_PLUS))
16047 features |= NETIF_F_IPV6_CSUM;
16048 }
16049
Michael Chan4e3a7aa2006-03-20 17:47:44 -080016050 /* TSO is on by default on chips that support hardware TSO.
16051 * Firmware TSO on older chips gives lower performance, so it
16052 * is off by default, but can be enabled using ethtool.
16053 */
Joe Perches63c3a662011-04-26 08:12:10 +000016054 if ((tg3_flag(tp, HW_TSO_1) ||
16055 tg3_flag(tp, HW_TSO_2) ||
16056 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000016057 (features & NETIF_F_IP_CSUM))
16058 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000016059 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000016060 if (features & NETIF_F_IPV6_CSUM)
16061 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000016062 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000016063 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070016064 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
16065 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000016066 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000016067 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000016068 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070016069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016070
Matt Carlsond542fe22011-05-19 16:02:43 +000016071 dev->features |= features;
16072 dev->vlan_features |= features;
16073
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000016074 /*
16075 * Add loopback capability only for a subset of devices that support
16076 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
16077 * loopback for the remaining devices.
16078 */
16079 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
16080 !tg3_flag(tp, CPMU_PRESENT))
16081 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000016082 features |= NETIF_F_LOOPBACK;
16083
Matt Carlson0da06062011-05-19 12:12:53 +000016084 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000016085
Linus Torvalds1da177e2005-04-16 15:20:36 -070016086 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016087 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016088 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000016089 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016090 tp->rx_pending = 63;
16091 }
16092
Linus Torvalds1da177e2005-04-16 15:20:36 -070016093 err = tg3_get_device_address(tp);
16094 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016095 dev_err(&pdev->dev,
16096 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000016097 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070016098 }
16099
Matt Carlsonc88864d2007-11-12 21:07:01 -080016100 /*
16101 * Reset chip in case UNDI or EFI driver did not shutdown
16102 * DMA self test will enable WDMAC and we'll see (spurious)
16103 * pending DMA on the PCI bus at that point.
16104 */
16105 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
16106 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
16107 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
16108 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
16109 }
16110
16111 err = tg3_test_dma(tp);
16112 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016113 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080016114 goto err_out_apeunmap;
16115 }
16116
Matt Carlson78f90dc2009-11-13 13:03:42 +000016117 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
16118 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
16119 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000016120 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000016121 struct tg3_napi *tnapi = &tp->napi[i];
16122
16123 tnapi->tp = tp;
16124 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
16125
16126 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000016127 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000016128 intmbx += 0x8;
16129 else
16130 intmbx += 0x4;
16131
16132 tnapi->consmbox = rcvmbx;
16133 tnapi->prodmbox = sndmbx;
16134
Matt Carlson66cfd1b2010-09-30 10:34:30 +000016135 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000016136 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000016137 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000016138 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000016139
Joe Perches63c3a662011-04-26 08:12:10 +000016140 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000016141 break;
16142
16143 /*
16144 * If we support MSIX, we'll be using RSS. If we're using
16145 * RSS, the first vector only handles link interrupts and the
16146 * remaining vectors handle rx and tx interrupts. Reuse the
16147 * mailbox values for the next iteration. The values we setup
16148 * above are still useful for the single vectored mode.
16149 */
16150 if (!i)
16151 continue;
16152
16153 rcvmbx += 0x8;
16154
16155 if (sndmbx & 0x4)
16156 sndmbx -= 0x4;
16157 else
16158 sndmbx += 0xc;
16159 }
16160
Matt Carlsonc88864d2007-11-12 21:07:01 -080016161 tg3_init_coal(tp);
16162
Michael Chanc49a1562006-12-17 17:07:29 -080016163 pci_set_drvdata(pdev, dev);
16164
Matt Carlsoncd0d7222011-07-13 09:27:33 +000016165 if (tg3_flag(tp, 5717_PLUS)) {
16166 /* Resume a low-power mode */
16167 tg3_frob_aux_power(tp, false);
16168 }
16169
Matt Carlson21f76382012-02-22 12:35:21 +000016170 tg3_timer_init(tp);
16171
Linus Torvalds1da177e2005-04-16 15:20:36 -070016172 err = register_netdev(dev);
16173 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016174 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070016175 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016176 }
16177
Joe Perches05dbe002010-02-17 19:44:19 +000016178 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
16179 tp->board_part_number,
16180 tp->pci_chip_rev_id,
16181 tg3_bus_string(tp, str),
16182 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016183
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016184 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000016185 struct phy_device *phydev;
16186 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000016187 netdev_info(dev,
16188 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000016189 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016190 } else {
16191 char *ethtype;
16192
16193 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
16194 ethtype = "10/100Base-TX";
16195 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
16196 ethtype = "1000Base-SX";
16197 else
16198 ethtype = "10/100/1000Base-T";
16199
Matt Carlson5129c3a2010-04-05 10:19:23 +000016200 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000016201 "(WireSpeed[%d], EEE[%d])\n",
16202 tg3_phy_string(tp), ethtype,
16203 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
16204 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016205 }
Matt Carlsondf59c942008-11-03 16:52:56 -080016206
Joe Perches05dbe002010-02-17 19:44:19 +000016207 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000016208 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000016209 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016210 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000016211 tg3_flag(tp, ENABLE_ASF) != 0,
16212 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000016213 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
16214 tp->dma_rwctrl,
16215 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
16216 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016217
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016218 pci_save_state(pdev);
16219
Linus Torvalds1da177e2005-04-16 15:20:36 -070016220 return 0;
16221
Matt Carlson0d3031d2007-10-10 18:02:43 -070016222err_out_apeunmap:
16223 if (tp->aperegs) {
16224 iounmap(tp->aperegs);
16225 tp->aperegs = NULL;
16226 }
16227
Linus Torvalds1da177e2005-04-16 15:20:36 -070016228err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070016229 if (tp->regs) {
16230 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070016231 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070016232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016233
16234err_out_free_dev:
16235 free_netdev(dev);
16236
Matt Carlson16821282011-07-13 09:27:28 +000016237err_out_power_down:
16238 pci_set_power_state(pdev, PCI_D3hot);
16239
Linus Torvalds1da177e2005-04-16 15:20:36 -070016240err_out_free_res:
16241 pci_release_regions(pdev);
16242
16243err_out_disable_pdev:
16244 pci_disable_device(pdev);
16245 pci_set_drvdata(pdev, NULL);
16246 return err;
16247}
16248
16249static void __devexit tg3_remove_one(struct pci_dev *pdev)
16250{
16251 struct net_device *dev = pci_get_drvdata(pdev);
16252
16253 if (dev) {
16254 struct tg3 *tp = netdev_priv(dev);
16255
Jesper Juhle3c55302012-04-09 22:50:15 +020016256 release_firmware(tp->fw);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080016257
Matt Carlsondb219972011-11-04 09:15:03 +000016258 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070016259
David S. Miller1805b2f2011-10-24 18:18:09 -040016260 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016261 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070016262 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016263 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070016264
Linus Torvalds1da177e2005-04-16 15:20:36 -070016265 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070016266 if (tp->aperegs) {
16267 iounmap(tp->aperegs);
16268 tp->aperegs = NULL;
16269 }
Michael Chan68929142005-08-09 20:17:14 -070016270 if (tp->regs) {
16271 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070016272 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070016273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016274 free_netdev(dev);
16275 pci_release_regions(pdev);
16276 pci_disable_device(pdev);
16277 pci_set_drvdata(pdev, NULL);
16278 }
16279}
16280
Eric Dumazetaa6027c2011-01-01 05:22:46 +000016281#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016282static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016283{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016284 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016285 struct net_device *dev = pci_get_drvdata(pdev);
16286 struct tg3 *tp = netdev_priv(dev);
16287 int err;
16288
16289 if (!netif_running(dev))
16290 return 0;
16291
Matt Carlsondb219972011-11-04 09:15:03 +000016292 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016293 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016294 tg3_netif_stop(tp);
16295
Matt Carlson21f76382012-02-22 12:35:21 +000016296 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016297
David S. Millerf47c11e2005-06-24 20:18:35 -070016298 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016299 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070016300 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016301
16302 netif_device_detach(dev);
16303
David S. Millerf47c11e2005-06-24 20:18:35 -070016304 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070016305 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000016306 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070016307 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016308
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016309 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016310 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016311 int err2;
16312
David S. Millerf47c11e2005-06-24 20:18:35 -070016313 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016314
Joe Perches63c3a662011-04-26 08:12:10 +000016315 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016316 err2 = tg3_restart_hw(tp, 1);
16317 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070016318 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016319
Matt Carlson21f76382012-02-22 12:35:21 +000016320 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016321
16322 netif_device_attach(dev);
16323 tg3_netif_start(tp);
16324
Michael Chanb9ec6c12006-07-25 16:37:27 -070016325out:
David S. Millerf47c11e2005-06-24 20:18:35 -070016326 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016327
16328 if (!err2)
16329 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016330 }
16331
16332 return err;
16333}
16334
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016335static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016336{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016337 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016338 struct net_device *dev = pci_get_drvdata(pdev);
16339 struct tg3 *tp = netdev_priv(dev);
16340 int err;
16341
16342 if (!netif_running(dev))
16343 return 0;
16344
Linus Torvalds1da177e2005-04-16 15:20:36 -070016345 netif_device_attach(dev);
16346
David S. Millerf47c11e2005-06-24 20:18:35 -070016347 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016348
Joe Perches63c3a662011-04-26 08:12:10 +000016349 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070016350 err = tg3_restart_hw(tp, 1);
16351 if (err)
16352 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016353
Matt Carlson21f76382012-02-22 12:35:21 +000016354 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016355
Linus Torvalds1da177e2005-04-16 15:20:36 -070016356 tg3_netif_start(tp);
16357
Michael Chanb9ec6c12006-07-25 16:37:27 -070016358out:
David S. Millerf47c11e2005-06-24 20:18:35 -070016359 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016360
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016361 if (!err)
16362 tg3_phy_start(tp);
16363
Michael Chanb9ec6c12006-07-25 16:37:27 -070016364 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016365}
16366
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016367static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000016368#define TG3_PM_OPS (&tg3_pm_ops)
16369
16370#else
16371
16372#define TG3_PM_OPS NULL
16373
16374#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016375
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016376/**
16377 * tg3_io_error_detected - called when PCI error is detected
16378 * @pdev: Pointer to PCI device
16379 * @state: The current pci connection state
16380 *
16381 * This function is called after a PCI bus error affecting
16382 * this device has been detected.
16383 */
16384static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
16385 pci_channel_state_t state)
16386{
16387 struct net_device *netdev = pci_get_drvdata(pdev);
16388 struct tg3 *tp = netdev_priv(netdev);
16389 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
16390
16391 netdev_info(netdev, "PCI I/O error detected\n");
16392
16393 rtnl_lock();
16394
16395 if (!netif_running(netdev))
16396 goto done;
16397
16398 tg3_phy_stop(tp);
16399
16400 tg3_netif_stop(tp);
16401
Matt Carlson21f76382012-02-22 12:35:21 +000016402 tg3_timer_stop(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016403
16404 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000016405 tg3_reset_task_cancel(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016406
16407 netif_device_detach(netdev);
16408
16409 /* Clean up software state, even if MMIO is blocked */
16410 tg3_full_lock(tp, 0);
16411 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
16412 tg3_full_unlock(tp);
16413
16414done:
16415 if (state == pci_channel_io_perm_failure)
16416 err = PCI_ERS_RESULT_DISCONNECT;
16417 else
16418 pci_disable_device(pdev);
16419
16420 rtnl_unlock();
16421
16422 return err;
16423}
16424
16425/**
16426 * tg3_io_slot_reset - called after the pci bus has been reset.
16427 * @pdev: Pointer to PCI device
16428 *
16429 * Restart the card from scratch, as if from a cold-boot.
16430 * At this point, the card has exprienced a hard reset,
16431 * followed by fixups by BIOS, and has its config space
16432 * set up identically to what it was at cold boot.
16433 */
16434static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
16435{
16436 struct net_device *netdev = pci_get_drvdata(pdev);
16437 struct tg3 *tp = netdev_priv(netdev);
16438 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
16439 int err;
16440
16441 rtnl_lock();
16442
16443 if (pci_enable_device(pdev)) {
16444 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
16445 goto done;
16446 }
16447
16448 pci_set_master(pdev);
16449 pci_restore_state(pdev);
16450 pci_save_state(pdev);
16451
16452 if (!netif_running(netdev)) {
16453 rc = PCI_ERS_RESULT_RECOVERED;
16454 goto done;
16455 }
16456
16457 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000016458 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016459 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016460
16461 rc = PCI_ERS_RESULT_RECOVERED;
16462
16463done:
16464 rtnl_unlock();
16465
16466 return rc;
16467}
16468
16469/**
16470 * tg3_io_resume - called when traffic can start flowing again.
16471 * @pdev: Pointer to PCI device
16472 *
16473 * This callback is called when the error recovery driver tells
16474 * us that its OK to resume normal operation.
16475 */
16476static void tg3_io_resume(struct pci_dev *pdev)
16477{
16478 struct net_device *netdev = pci_get_drvdata(pdev);
16479 struct tg3 *tp = netdev_priv(netdev);
16480 int err;
16481
16482 rtnl_lock();
16483
16484 if (!netif_running(netdev))
16485 goto done;
16486
16487 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000016488 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016489 err = tg3_restart_hw(tp, 1);
16490 tg3_full_unlock(tp);
16491 if (err) {
16492 netdev_err(netdev, "Cannot restart hardware after reset.\n");
16493 goto done;
16494 }
16495
16496 netif_device_attach(netdev);
16497
Matt Carlson21f76382012-02-22 12:35:21 +000016498 tg3_timer_start(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016499
16500 tg3_netif_start(tp);
16501
16502 tg3_phy_start(tp);
16503
16504done:
16505 rtnl_unlock();
16506}
16507
16508static struct pci_error_handlers tg3_err_handler = {
16509 .error_detected = tg3_io_error_detected,
16510 .slot_reset = tg3_io_slot_reset,
16511 .resume = tg3_io_resume
16512};
16513
Linus Torvalds1da177e2005-04-16 15:20:36 -070016514static struct pci_driver tg3_driver = {
16515 .name = DRV_MODULE_NAME,
16516 .id_table = tg3_pci_tbl,
16517 .probe = tg3_init_one,
16518 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016519 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000016520 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016521};
16522
16523static int __init tg3_init(void)
16524{
Jeff Garzik29917622006-08-19 17:48:59 -040016525 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016526}
16527
16528static void __exit tg3_cleanup(void)
16529{
16530 pci_unregister_driver(&tg3_driver);
16531}
16532
16533module_init(tg3_init);
16534module_exit(tg3_cleanup);