blob: 038ce0215e3e2ddc188a673fd99ab6d08a42dfed [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#include <linux/hwmon.h>
48#include <linux/hwmon-sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030051#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000053#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/byteorder.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000055#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
David S. Miller49b6e95f2007-03-29 01:38:42 -070057#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070059#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#endif
61
Matt Carlson63532392008-11-03 16:49:57 -080062#define BAR_0 0
63#define BAR_2 2
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include "tg3.h"
66
Joe Perches63c3a662011-04-26 08:12:10 +000067/* Functions & macros to verify TG3_FLAGS types */
68
69static inline int _tg3_flag(enum TG3_FLAGS flag, unsigned long *bits)
70{
71 return test_bit(flag, bits);
72}
73
74static inline void _tg3_flag_set(enum TG3_FLAGS flag, unsigned long *bits)
75{
76 set_bit(flag, bits);
77}
78
79static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
80{
81 clear_bit(flag, bits);
82}
83
84#define tg3_flag(tp, flag) \
85 _tg3_flag(TG3_FLAG_##flag, (tp)->tg3_flags)
86#define tg3_flag_set(tp, flag) \
87 _tg3_flag_set(TG3_FLAG_##flag, (tp)->tg3_flags)
88#define tg3_flag_clear(tp, flag) \
89 _tg3_flag_clear(TG3_FLAG_##flag, (tp)->tg3_flags)
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#define DRV_MODULE_NAME "tg3"
Matt Carlson6867c842010-07-11 09:31:44 +000092#define TG3_MAJ_NUM 3
Nithin Nayak Sujirbd473da2012-11-05 14:26:30 +000093#define TG3_MIN_NUM 126
Matt Carlson6867c842010-07-11 09:31:44 +000094#define DRV_MODULE_VERSION \
95 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Nithin Nayak Sujirbd473da2012-11-05 14:26:30 +000096#define DRV_MODULE_RELDATE "November 05, 2012"
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Matt Carlsonfd6d3f02011-08-31 11:44:52 +000098#define RESET_KIND_SHUTDOWN 0
99#define RESET_KIND_INIT 1
100#define RESET_KIND_SUSPEND 2
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define TG3_DEF_RX_MODE 0
103#define TG3_DEF_TX_MODE 0
104#define TG3_DEF_MSG_ENABLE \
105 (NETIF_MSG_DRV | \
106 NETIF_MSG_PROBE | \
107 NETIF_MSG_LINK | \
108 NETIF_MSG_TIMER | \
109 NETIF_MSG_IFDOWN | \
110 NETIF_MSG_IFUP | \
111 NETIF_MSG_RX_ERR | \
112 NETIF_MSG_TX_ERR)
113
Matt Carlson520b2752011-06-13 13:39:02 +0000114#define TG3_GRC_LCLCTL_PWRSW_DELAY 100
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/* length of time before we decide the hardware is borked,
117 * and dev->tx_timeout() should be called to fix the problem
118 */
Joe Perches63c3a662011-04-26 08:12:10 +0000119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#define TG3_TX_TIMEOUT (5 * HZ)
121
122/* hardware minimum and maximum for a single frame's data payload */
123#define TG3_MIN_MTU 60
124#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000125 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/* These numbers seem to be hard coded in the NIC firmware somehow.
128 * You can't change the ring sizes, but you can change where you place
129 * them in the NIC onboard memory.
130 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000131#define TG3_RX_STD_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000132 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000133 TG3_RX_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000135#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000136 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000137 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#define TG3_DEF_RX_JUMBO_RING_PENDING 100
139
140/* Do not place this n-ring entries value into the tp struct itself,
141 * we really want to expose these constants to GCC so that modulo et
142 * al. operations are done with shifts and masks instead of with
143 * hw multiply/modulo instructions. Another solution would be to
144 * replace things like '% foo' with '& (foo - 1)'.
145 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147#define TG3_TX_RING_SIZE 512
148#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
149
Matt Carlson2c49a442010-09-30 10:34:35 +0000150#define TG3_RX_STD_RING_BYTES(tp) \
151 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
152#define TG3_RX_JMB_RING_BYTES(tp) \
153 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
154#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000155 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
157 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
159
Matt Carlson287be122009-08-28 13:58:46 +0000160#define TG3_DMA_BYTE_ENAB 64
161
162#define TG3_RX_STD_DMA_SZ 1536
163#define TG3_RX_JMB_DMA_SZ 9046
164
165#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
166
167#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
168#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Matt Carlson2c49a442010-09-30 10:34:35 +0000170#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
171 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000172
Matt Carlson2c49a442010-09-30 10:34:35 +0000173#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
174 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000175
Matt Carlsond2757fc2010-04-12 06:58:27 +0000176/* Due to a hardware bug, the 5701 can only DMA to memory addresses
177 * that are at least dword aligned when used in PCIX mode. The driver
178 * works around this bug by double copying the packet. This workaround
179 * is built into the normal double copy length check for efficiency.
180 *
181 * However, the double copy is only necessary on those architectures
182 * where unaligned memory accesses are inefficient. For those architectures
183 * where unaligned memory accesses incur little penalty, we can reintegrate
184 * the 5701 in the normal rx path. Doing so saves a device structure
185 * dereference by hardcoding the double copy threshold in place.
186 */
187#define TG3_RX_COPY_THRESHOLD 256
188#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
189 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
190#else
191 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
192#endif
193
Matt Carlson81389f52011-08-31 11:44:49 +0000194#if (NET_IP_ALIGN != 0)
195#define TG3_RX_OFFSET(tp) ((tp)->rx_offset)
196#else
Eric Dumazet9205fd92011-11-18 06:47:01 +0000197#define TG3_RX_OFFSET(tp) (NET_SKB_PAD)
Matt Carlson81389f52011-08-31 11:44:49 +0000198#endif
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000201#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Matt Carlson55086ad2011-12-14 11:09:59 +0000202#define TG3_TX_BD_DMA_MAX_2K 2048
Matt Carlsona4cb4282011-12-14 11:09:58 +0000203#define TG3_TX_BD_DMA_MAX_4K 4096
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Matt Carlsonad829262008-11-21 17:16:16 -0800205#define TG3_RAW_IP_ALIGN 2
206
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000207#define TG3_FW_UPDATE_TIMEOUT_SEC 5
Matt Carlson21f76382012-02-22 12:35:21 +0000208#define TG3_FW_UPDATE_FREQ_SEC (TG3_FW_UPDATE_TIMEOUT_SEC / 2)
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000209
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800210#define FIRMWARE_TG3 "tigon/tg3.bin"
211#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
212#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214static char version[] __devinitdata =
Joe Perches05dbe002010-02-17 19:44:19 +0000215 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
218MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
219MODULE_LICENSE("GPL");
220MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800221MODULE_FIRMWARE(FIRMWARE_TG3);
222MODULE_FIRMWARE(FIRMWARE_TG3TSO);
223MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
226module_param(tg3_debug, int, 0);
227MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
228
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000229static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700230 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
231 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
257 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
258 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
260 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
261 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
264 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
265 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
272 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700278 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
286 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000287 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
288 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800289 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
290 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
291 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000292 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000293 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
Michael Chan79d49692012-11-05 14:26:29 +0000294 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717_C)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000295 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000296 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
297 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
298 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
299 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
300 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
301 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Matt Carlson302b5002010-06-05 17:24:38 +0000302 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000303 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Greg KH02eca3f2012-07-12 15:39:44 +0000304 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57762)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700305 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
306 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
307 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
308 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
309 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
310 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
311 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
Meelis Roos1dcb14d2011-05-25 05:43:47 +0000312 {PCI_DEVICE(0x10cf, 0x11a2)}, /* Fujitsu 1000base-SX with BCM5703SKHB */
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700313 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314};
315
316MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
317
Andreas Mohr50da8592006-08-14 23:54:30 -0700318static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000320} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 { "rx_octets" },
322 { "rx_fragments" },
323 { "rx_ucast_packets" },
324 { "rx_mcast_packets" },
325 { "rx_bcast_packets" },
326 { "rx_fcs_errors" },
327 { "rx_align_errors" },
328 { "rx_xon_pause_rcvd" },
329 { "rx_xoff_pause_rcvd" },
330 { "rx_mac_ctrl_rcvd" },
331 { "rx_xoff_entered" },
332 { "rx_frame_too_long_errors" },
333 { "rx_jabbers" },
334 { "rx_undersize_packets" },
335 { "rx_in_length_errors" },
336 { "rx_out_length_errors" },
337 { "rx_64_or_less_octet_packets" },
338 { "rx_65_to_127_octet_packets" },
339 { "rx_128_to_255_octet_packets" },
340 { "rx_256_to_511_octet_packets" },
341 { "rx_512_to_1023_octet_packets" },
342 { "rx_1024_to_1522_octet_packets" },
343 { "rx_1523_to_2047_octet_packets" },
344 { "rx_2048_to_4095_octet_packets" },
345 { "rx_4096_to_8191_octet_packets" },
346 { "rx_8192_to_9022_octet_packets" },
347
348 { "tx_octets" },
349 { "tx_collisions" },
350
351 { "tx_xon_sent" },
352 { "tx_xoff_sent" },
353 { "tx_flow_control" },
354 { "tx_mac_errors" },
355 { "tx_single_collisions" },
356 { "tx_mult_collisions" },
357 { "tx_deferred" },
358 { "tx_excessive_collisions" },
359 { "tx_late_collisions" },
360 { "tx_collide_2times" },
361 { "tx_collide_3times" },
362 { "tx_collide_4times" },
363 { "tx_collide_5times" },
364 { "tx_collide_6times" },
365 { "tx_collide_7times" },
366 { "tx_collide_8times" },
367 { "tx_collide_9times" },
368 { "tx_collide_10times" },
369 { "tx_collide_11times" },
370 { "tx_collide_12times" },
371 { "tx_collide_13times" },
372 { "tx_collide_14times" },
373 { "tx_collide_15times" },
374 { "tx_ucast_packets" },
375 { "tx_mcast_packets" },
376 { "tx_bcast_packets" },
377 { "tx_carrier_sense_errors" },
378 { "tx_discards" },
379 { "tx_errors" },
380
381 { "dma_writeq_full" },
382 { "dma_write_prioq_full" },
383 { "rxbds_empty" },
384 { "rx_discards" },
385 { "rx_errors" },
386 { "rx_threshold_hit" },
387
388 { "dma_readq_full" },
389 { "dma_read_prioq_full" },
390 { "tx_comp_queue_full" },
391
392 { "ring_set_send_prod_index" },
393 { "ring_status_update" },
394 { "nic_irqs" },
395 { "nic_avoided_irqs" },
Matt Carlson4452d092011-05-19 12:12:51 +0000396 { "nic_tx_threshold_hit" },
397
398 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399};
400
Matt Carlson48fa55a2011-04-13 11:05:06 +0000401#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
402
403
Andreas Mohr50da8592006-08-14 23:54:30 -0700404static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700405 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000406} ethtool_test_keys[] = {
Matt Carlson28a45952011-08-19 13:58:22 +0000407 { "nvram test (online) " },
408 { "link test (online) " },
409 { "register test (offline)" },
410 { "memory test (offline)" },
411 { "mac loopback test (offline)" },
412 { "phy loopback test (offline)" },
Matt Carlson941ec902011-08-19 13:58:23 +0000413 { "ext loopback test (offline)" },
Matt Carlson28a45952011-08-19 13:58:22 +0000414 { "interrupt test (offline)" },
Michael Chan4cafd3f2005-05-29 14:56:34 -0700415};
416
Matt Carlson48fa55a2011-04-13 11:05:06 +0000417#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
418
419
Michael Chanb401e9e2005-12-19 16:27:04 -0800420static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
421{
422 writel(val, tp->regs + off);
423}
424
425static u32 tg3_read32(struct tg3 *tp, u32 off)
426{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000427 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800428}
429
Matt Carlson0d3031d2007-10-10 18:02:43 -0700430static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
431{
432 writel(val, tp->aperegs + off);
433}
434
435static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
436{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000437 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
441{
Michael Chan68929142005-08-09 20:17:14 -0700442 unsigned long flags;
443
444 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700445 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
446 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700447 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700448}
449
450static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
451{
452 writel(val, tp->regs + off);
453 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Michael Chan68929142005-08-09 20:17:14 -0700456static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
457{
458 unsigned long flags;
459 u32 val;
460
461 spin_lock_irqsave(&tp->indirect_lock, flags);
462 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
463 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
464 spin_unlock_irqrestore(&tp->indirect_lock, flags);
465 return val;
466}
467
468static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
469{
470 unsigned long flags;
471
472 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
473 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
474 TG3_64BIT_REG_LOW, val);
475 return;
476 }
Matt Carlson66711e662009-11-13 13:03:49 +0000477 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700478 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
479 TG3_64BIT_REG_LOW, val);
480 return;
481 }
482
483 spin_lock_irqsave(&tp->indirect_lock, flags);
484 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
485 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
486 spin_unlock_irqrestore(&tp->indirect_lock, flags);
487
488 /* In indirect mode when disabling interrupts, we also need
489 * to clear the interrupt bit in the GRC local ctrl register.
490 */
491 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
492 (val == 0x1)) {
493 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
494 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
495 }
496}
497
498static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
499{
500 unsigned long flags;
501 u32 val;
502
503 spin_lock_irqsave(&tp->indirect_lock, flags);
504 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
505 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
506 spin_unlock_irqrestore(&tp->indirect_lock, flags);
507 return val;
508}
509
Michael Chanb401e9e2005-12-19 16:27:04 -0800510/* usec_wait specifies the wait time in usec when writing to certain registers
511 * where it is unsafe to read back the register without some delay.
512 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
513 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
514 */
515static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Joe Perches63c3a662011-04-26 08:12:10 +0000517 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800518 /* Non-posted methods */
519 tp->write32(tp, off, val);
520 else {
521 /* Posted method */
522 tg3_write32(tp, off, val);
523 if (usec_wait)
524 udelay(usec_wait);
525 tp->read32(tp, off);
526 }
527 /* Wait again after the read for the posted method to guarantee that
528 * the wait time is met.
529 */
530 if (usec_wait)
531 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Michael Chan09ee9292005-08-09 20:17:00 -0700534static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
535{
536 tp->write32_mbox(tp, off, val);
Joe Perches63c3a662011-04-26 08:12:10 +0000537 if (!tg3_flag(tp, MBOX_WRITE_REORDER) && !tg3_flag(tp, ICH_WORKAROUND))
Michael Chan68929142005-08-09 20:17:14 -0700538 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700539}
540
Michael Chan20094932005-08-09 20:16:32 -0700541static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 void __iomem *mbox = tp->regs + off;
544 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000545 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000547 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 readl(mbox);
549}
550
Michael Chanb5d37722006-09-27 16:06:21 -0700551static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
552{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000553 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700554}
555
556static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
557{
558 writel(val, tp->regs + off + GRCMBOX_BASE);
559}
560
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000561#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700562#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000563#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
564#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
565#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700566
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000567#define tw32(reg, val) tp->write32(tp, reg, val)
568#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
569#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
570#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
573{
Michael Chan68929142005-08-09 20:17:14 -0700574 unsigned long flags;
575
Matt Carlson6ff6f812011-05-19 12:12:54 +0000576 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700577 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
578 return;
579
Michael Chan68929142005-08-09 20:17:14 -0700580 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000581 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700582 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
583 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Michael Chanbbadf502006-04-06 21:46:34 -0700585 /* Always leave this as zero. */
586 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
587 } else {
588 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
589 tw32_f(TG3PCI_MEM_WIN_DATA, val);
590
591 /* Always leave this as zero. */
592 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
593 }
Michael Chan68929142005-08-09 20:17:14 -0700594 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
597static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
598{
Michael Chan68929142005-08-09 20:17:14 -0700599 unsigned long flags;
600
Matt Carlson6ff6f812011-05-19 12:12:54 +0000601 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700602 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
603 *val = 0;
604 return;
605 }
606
Michael Chan68929142005-08-09 20:17:14 -0700607 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000608 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700609 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
610 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Michael Chanbbadf502006-04-06 21:46:34 -0700612 /* Always leave this as zero. */
613 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
614 } else {
615 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
616 *val = tr32(TG3PCI_MEM_WIN_DATA);
617
618 /* Always leave this as zero. */
619 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
620 }
Michael Chan68929142005-08-09 20:17:14 -0700621 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Matt Carlson0d3031d2007-10-10 18:02:43 -0700624static void tg3_ape_lock_init(struct tg3 *tp)
625{
626 int i;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000627 u32 regbase, bit;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000628
629 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
630 regbase = TG3_APE_LOCK_GRANT;
631 else
632 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700633
634 /* Make sure the driver hasn't any stale locks. */
Matt Carlson78f94dc2011-11-04 09:14:58 +0000635 for (i = TG3_APE_LOCK_PHY0; i <= TG3_APE_LOCK_GPIO; i++) {
636 switch (i) {
637 case TG3_APE_LOCK_PHY0:
638 case TG3_APE_LOCK_PHY1:
639 case TG3_APE_LOCK_PHY2:
640 case TG3_APE_LOCK_PHY3:
641 bit = APE_LOCK_GRANT_DRIVER;
642 break;
643 default:
644 if (!tp->pci_fn)
645 bit = APE_LOCK_GRANT_DRIVER;
646 else
647 bit = 1 << tp->pci_fn;
648 }
649 tg3_ape_write32(tp, regbase + 4 * i, bit);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000650 }
651
Matt Carlson0d3031d2007-10-10 18:02:43 -0700652}
653
654static int tg3_ape_lock(struct tg3 *tp, int locknum)
655{
656 int i, off;
657 int ret = 0;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000658 u32 status, req, gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700659
Joe Perches63c3a662011-04-26 08:12:10 +0000660 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700661 return 0;
662
663 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000664 case TG3_APE_LOCK_GPIO:
665 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
666 return 0;
Matt Carlson33f401a2010-04-05 10:19:27 +0000667 case TG3_APE_LOCK_GRC:
668 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000669 if (!tp->pci_fn)
670 bit = APE_LOCK_REQ_DRIVER;
671 else
672 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000673 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000674 case TG3_APE_LOCK_PHY0:
675 case TG3_APE_LOCK_PHY1:
676 case TG3_APE_LOCK_PHY2:
677 case TG3_APE_LOCK_PHY3:
678 bit = APE_LOCK_REQ_DRIVER;
679 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000680 default:
681 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700682 }
683
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000684 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
685 req = TG3_APE_LOCK_REQ;
686 gnt = TG3_APE_LOCK_GRANT;
687 } else {
688 req = TG3_APE_PER_LOCK_REQ;
689 gnt = TG3_APE_PER_LOCK_GRANT;
690 }
691
Matt Carlson0d3031d2007-10-10 18:02:43 -0700692 off = 4 * locknum;
693
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000694 tg3_ape_write32(tp, req + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700695
696 /* Wait for up to 1 millisecond to acquire lock. */
697 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000698 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000699 if (status == bit)
Matt Carlson0d3031d2007-10-10 18:02:43 -0700700 break;
701 udelay(10);
702 }
703
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000704 if (status != bit) {
Matt Carlson0d3031d2007-10-10 18:02:43 -0700705 /* Revoke the lock request. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000706 tg3_ape_write32(tp, gnt + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700707 ret = -EBUSY;
708 }
709
710 return ret;
711}
712
713static void tg3_ape_unlock(struct tg3 *tp, int locknum)
714{
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000715 u32 gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700716
Joe Perches63c3a662011-04-26 08:12:10 +0000717 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700718 return;
719
720 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000721 case TG3_APE_LOCK_GPIO:
722 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
723 return;
Matt Carlson33f401a2010-04-05 10:19:27 +0000724 case TG3_APE_LOCK_GRC:
725 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000726 if (!tp->pci_fn)
727 bit = APE_LOCK_GRANT_DRIVER;
728 else
729 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000730 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000731 case TG3_APE_LOCK_PHY0:
732 case TG3_APE_LOCK_PHY1:
733 case TG3_APE_LOCK_PHY2:
734 case TG3_APE_LOCK_PHY3:
735 bit = APE_LOCK_GRANT_DRIVER;
736 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000737 default:
738 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700739 }
740
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000741 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
742 gnt = TG3_APE_LOCK_GRANT;
743 else
744 gnt = TG3_APE_PER_LOCK_GRANT;
745
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000746 tg3_ape_write32(tp, gnt + 4 * locknum, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700747}
748
Matt Carlsonb65a3722012-07-16 16:24:00 +0000749static int tg3_ape_event_lock(struct tg3 *tp, u32 timeout_us)
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000750{
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000751 u32 apedata;
752
Matt Carlsonb65a3722012-07-16 16:24:00 +0000753 while (timeout_us) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000754 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
Matt Carlsonb65a3722012-07-16 16:24:00 +0000755 return -EBUSY;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000756
757 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000758 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
759 break;
760
Matt Carlsonb65a3722012-07-16 16:24:00 +0000761 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
762
763 udelay(10);
764 timeout_us -= (timeout_us > 10) ? 10 : timeout_us;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000765 }
766
Matt Carlsonb65a3722012-07-16 16:24:00 +0000767 return timeout_us ? 0 : -EBUSY;
768}
769
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000770static int tg3_ape_wait_for_event(struct tg3 *tp, u32 timeout_us)
771{
772 u32 i, apedata;
773
774 for (i = 0; i < timeout_us / 10; i++) {
775 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
776
777 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
778 break;
779
780 udelay(10);
781 }
782
783 return i == timeout_us / 10;
784}
785
Michael Chan86449942012-10-02 20:31:14 -0700786static int tg3_ape_scratchpad_read(struct tg3 *tp, u32 *data, u32 base_off,
787 u32 len)
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000788{
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. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06003656 if (tg3_flag(tp, CLKREQ_BUG))
3657 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
3658 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003659
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
3661 tw32(TG3PCI_MISC_HOST_CTRL,
3662 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
3663
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003664 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00003665 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003666
Joe Perches63c3a662011-04-26 08:12:10 +00003667 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08003668 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003669 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00003670 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003671 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003672 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003673
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00003674 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003675
Matt Carlson80096062010-08-02 11:26:06 +00003676 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003677
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003678 tp->link_config.speed = phydev->speed;
3679 tp->link_config.duplex = phydev->duplex;
3680 tp->link_config.autoneg = phydev->autoneg;
3681 tp->link_config.advertising = phydev->advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003682
3683 advertising = ADVERTISED_TP |
3684 ADVERTISED_Pause |
3685 ADVERTISED_Autoneg |
3686 ADVERTISED_10baseT_Half;
3687
Joe Perches63c3a662011-04-26 08:12:10 +00003688 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
3689 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003690 advertising |=
3691 ADVERTISED_100baseT_Half |
3692 ADVERTISED_100baseT_Full |
3693 ADVERTISED_10baseT_Full;
3694 else
3695 advertising |= ADVERTISED_10baseT_Full;
3696 }
3697
3698 phydev->advertising = advertising;
3699
3700 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003701
3702 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00003703 if (phyid != PHY_ID_BCMAC131) {
3704 phyid &= PHY_BCM_OUI_MASK;
3705 if (phyid == PHY_BCM_OUI_1 ||
3706 phyid == PHY_BCM_OUI_2 ||
3707 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08003708 do_low_power = true;
3709 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003710 }
Matt Carlsondd477002008-05-25 23:45:58 -07003711 } else {
Matt Carlson20232762008-12-21 20:18:56 -08003712 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003713
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003714 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER))
Matt Carlson80096062010-08-02 11:26:06 +00003715 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716
Matt Carlson2855b9f2012-02-13 15:20:14 +00003717 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlsondd477002008-05-25 23:45:58 -07003718 tg3_setup_phy(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 }
3720
Michael Chanb5d37722006-09-27 16:06:21 -07003721 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
3722 u32 val;
3723
3724 val = tr32(GRC_VCPU_EXT_CTRL);
3725 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00003726 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08003727 int i;
3728 u32 val;
3729
3730 for (i = 0; i < 200; i++) {
3731 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
3732 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
3733 break;
3734 msleep(1);
3735 }
3736 }
Joe Perches63c3a662011-04-26 08:12:10 +00003737 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07003738 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
3739 WOL_DRV_STATE_SHUTDOWN |
3740 WOL_DRV_WOL |
3741 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08003742
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003743 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 u32 mac_mode;
3745
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003746 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003747 if (do_low_power &&
3748 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
3749 tg3_phy_auxctl_write(tp,
3750 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
3751 MII_TG3_AUXCTL_PCTL_WOL_EN |
3752 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3753 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07003754 udelay(40);
3755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003757 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07003758 mac_mode = MAC_MODE_PORT_MODE_GMII;
3759 else
3760 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003762 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
3763 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
3764 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00003765 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003766 SPEED_100 : SPEED_10;
3767 if (tg3_5700_link_polarity(tp, speed))
3768 mac_mode |= MAC_MODE_LINK_POLARITY;
3769 else
3770 mac_mode &= ~MAC_MODE_LINK_POLARITY;
3771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 } else {
3773 mac_mode = MAC_MODE_PORT_MODE_TBI;
3774 }
3775
Joe Perches63c3a662011-04-26 08:12:10 +00003776 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 tw32(MAC_LED_CTRL, tp->led_ctrl);
3778
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003779 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00003780 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
3781 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003782 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
Joe Perches63c3a662011-04-26 08:12:10 +00003784 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00003785 mac_mode |= MAC_MODE_APE_TX_EN |
3786 MAC_MODE_APE_RX_EN |
3787 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07003788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 tw32_f(MAC_MODE, mac_mode);
3790 udelay(100);
3791
3792 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
3793 udelay(10);
3794 }
3795
Joe Perches63c3a662011-04-26 08:12:10 +00003796 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3798 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
3799 u32 base_val;
3800
3801 base_val = tp->pci_clock_ctrl;
3802 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
3803 CLOCK_CTRL_TXCLK_DISABLE);
3804
Michael Chanb401e9e2005-12-19 16:27:04 -08003805 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
3806 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00003807 } else if (tg3_flag(tp, 5780_CLASS) ||
3808 tg3_flag(tp, CPMU_PRESENT) ||
Matt Carlson6ff6f812011-05-19 12:12:54 +00003809 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07003810 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00003811 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 u32 newbits1, newbits2;
3813
3814 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3815 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3816 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
3817 CLOCK_CTRL_TXCLK_DISABLE |
3818 CLOCK_CTRL_ALTCLK);
3819 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00003820 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 newbits1 = CLOCK_CTRL_625_CORE;
3822 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
3823 } else {
3824 newbits1 = CLOCK_CTRL_ALTCLK;
3825 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
3826 }
3827
Michael Chanb401e9e2005-12-19 16:27:04 -08003828 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
3829 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Michael Chanb401e9e2005-12-19 16:27:04 -08003831 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
3832 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
Joe Perches63c3a662011-04-26 08:12:10 +00003834 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 u32 newbits3;
3836
3837 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3838 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3839 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
3840 CLOCK_CTRL_TXCLK_DISABLE |
3841 CLOCK_CTRL_44MHZ_CORE);
3842 } else {
3843 newbits3 = CLOCK_CTRL_44MHZ_CORE;
3844 }
3845
Michael Chanb401e9e2005-12-19 16:27:04 -08003846 tw32_wait_f(TG3PCI_CLOCK_CTRL,
3847 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 }
3849 }
3850
Joe Perches63c3a662011-04-26 08:12:10 +00003851 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08003852 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08003853
Matt Carlsoncd0d7222011-07-13 09:27:33 +00003854 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
3856 /* Workaround for unstable PLL clock */
3857 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
3858 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
3859 u32 val = tr32(0x7d00);
3860
3861 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
3862 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00003863 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08003864 int err;
3865
3866 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08003868 if (!err)
3869 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08003870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 }
3872
Michael Chanbbadf502006-04-06 21:46:34 -07003873 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
3874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 return 0;
3876}
3877
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003878static void tg3_power_down(struct tg3 *tp)
3879{
3880 tg3_power_down_prepare(tp);
3881
Joe Perches63c3a662011-04-26 08:12:10 +00003882 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003883 pci_set_power_state(tp->pdev, PCI_D3hot);
3884}
3885
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
3887{
3888 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
3889 case MII_TG3_AUX_STAT_10HALF:
3890 *speed = SPEED_10;
3891 *duplex = DUPLEX_HALF;
3892 break;
3893
3894 case MII_TG3_AUX_STAT_10FULL:
3895 *speed = SPEED_10;
3896 *duplex = DUPLEX_FULL;
3897 break;
3898
3899 case MII_TG3_AUX_STAT_100HALF:
3900 *speed = SPEED_100;
3901 *duplex = DUPLEX_HALF;
3902 break;
3903
3904 case MII_TG3_AUX_STAT_100FULL:
3905 *speed = SPEED_100;
3906 *duplex = DUPLEX_FULL;
3907 break;
3908
3909 case MII_TG3_AUX_STAT_1000HALF:
3910 *speed = SPEED_1000;
3911 *duplex = DUPLEX_HALF;
3912 break;
3913
3914 case MII_TG3_AUX_STAT_1000FULL:
3915 *speed = SPEED_1000;
3916 *duplex = DUPLEX_FULL;
3917 break;
3918
3919 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003920 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07003921 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
3922 SPEED_10;
3923 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
3924 DUPLEX_HALF;
3925 break;
3926 }
Matt Carlsone7405222012-02-13 15:20:16 +00003927 *speed = SPEED_UNKNOWN;
3928 *duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931}
3932
Matt Carlson42b64a42011-05-19 12:12:49 +00003933static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934{
Matt Carlson42b64a42011-05-19 12:12:49 +00003935 int err = 0;
3936 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
Matt Carlson42b64a42011-05-19 12:12:49 +00003938 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00003939 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00003940 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Matt Carlson42b64a42011-05-19 12:12:49 +00003942 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
3943 if (err)
3944 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Matt Carlson4f272092011-12-14 11:09:57 +00003946 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
3947 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003948
Matt Carlson4f272092011-12-14 11:09:57 +00003949 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3950 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
3951 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003952
Matt Carlson4f272092011-12-14 11:09:57 +00003953 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
3954 if (err)
3955 goto done;
3956 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003957
Matt Carlson42b64a42011-05-19 12:12:49 +00003958 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
3959 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
Matt Carlson42b64a42011-05-19 12:12:49 +00003961 tw32(TG3_CPMU_EEE_MODE,
3962 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003963
Matt Carlson42b64a42011-05-19 12:12:49 +00003964 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
3965 if (!err) {
3966 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00003967
Matt Carlsona6b68da2010-12-06 08:28:52 +00003968 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00003969 /* Advertise 100-BaseTX EEE ability */
3970 if (advertise & ADVERTISED_100baseT_Full)
3971 val |= MDIO_AN_EEE_ADV_100TX;
3972 /* Advertise 1000-BaseT EEE ability */
3973 if (advertise & ADVERTISED_1000baseT_Full)
3974 val |= MDIO_AN_EEE_ADV_1000T;
3975 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00003976 if (err)
3977 val = 0;
3978
3979 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
3980 case ASIC_REV_5717:
3981 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00003982 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00003983 case ASIC_REV_5719:
3984 /* If we advertised any eee advertisements above... */
3985 if (val)
3986 val = MII_TG3_DSP_TAP26_ALNOKO |
3987 MII_TG3_DSP_TAP26_RMRXSTO |
3988 MII_TG3_DSP_TAP26_OPCSINPT;
3989 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
3990 /* Fall through */
3991 case ASIC_REV_5720:
3992 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
3993 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
3994 MII_TG3_DSP_CH34TP2_HIBW01);
3995 }
Matt Carlson52b02d02010-10-14 10:37:41 +00003996
Matt Carlson42b64a42011-05-19 12:12:49 +00003997 err2 = TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
3998 if (!err)
3999 err = err2;
4000 }
4001
4002done:
4003 return err;
4004}
4005
4006static void tg3_phy_copper_begin(struct tg3 *tp)
4007{
Matt Carlsond13ba512012-02-22 12:35:19 +00004008 if (tp->link_config.autoneg == AUTONEG_ENABLE ||
4009 (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
4010 u32 adv, fc;
Matt Carlson42b64a42011-05-19 12:12:49 +00004011
Matt Carlsond13ba512012-02-22 12:35:19 +00004012 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
4013 adv = ADVERTISED_10baseT_Half |
4014 ADVERTISED_10baseT_Full;
4015 if (tg3_flag(tp, WOL_SPEED_100MB))
4016 adv |= ADVERTISED_100baseT_Half |
4017 ADVERTISED_100baseT_Full;
Matt Carlson42b64a42011-05-19 12:12:49 +00004018
Matt Carlsond13ba512012-02-22 12:35:19 +00004019 fc = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson42b64a42011-05-19 12:12:49 +00004020 } else {
Matt Carlsond13ba512012-02-22 12:35:19 +00004021 adv = tp->link_config.advertising;
4022 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
4023 adv &= ~(ADVERTISED_1000baseT_Half |
4024 ADVERTISED_1000baseT_Full);
4025
4026 fc = tp->link_config.flowctrl;
Matt Carlson42b64a42011-05-19 12:12:49 +00004027 }
4028
Matt Carlsond13ba512012-02-22 12:35:19 +00004029 tg3_phy_autoneg_cfg(tp, adv, fc);
Matt Carlson52b02d02010-10-14 10:37:41 +00004030
Matt Carlsond13ba512012-02-22 12:35:19 +00004031 tg3_writephy(tp, MII_BMCR,
4032 BMCR_ANENABLE | BMCR_ANRESTART);
4033 } else {
4034 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 u32 bmcr, orig_bmcr;
4036
4037 tp->link_config.active_speed = tp->link_config.speed;
4038 tp->link_config.active_duplex = tp->link_config.duplex;
4039
4040 bmcr = 0;
4041 switch (tp->link_config.speed) {
4042 default:
4043 case SPEED_10:
4044 break;
4045
4046 case SPEED_100:
4047 bmcr |= BMCR_SPEED100;
4048 break;
4049
4050 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00004051 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054
4055 if (tp->link_config.duplex == DUPLEX_FULL)
4056 bmcr |= BMCR_FULLDPLX;
4057
4058 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
4059 (bmcr != orig_bmcr)) {
4060 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
4061 for (i = 0; i < 1500; i++) {
4062 u32 tmp;
4063
4064 udelay(10);
4065 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
4066 tg3_readphy(tp, MII_BMSR, &tmp))
4067 continue;
4068 if (!(tmp & BMSR_LSTATUS)) {
4069 udelay(40);
4070 break;
4071 }
4072 }
4073 tg3_writephy(tp, MII_BMCR, bmcr);
4074 udelay(40);
4075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 }
4077}
4078
4079static int tg3_init_5401phy_dsp(struct tg3 *tp)
4080{
4081 int err;
4082
4083 /* Turn off tap power management. */
4084 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004085 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00004087 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
4088 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
4089 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
4090 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
4091 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092
4093 udelay(40);
4094
4095 return err;
4096}
4097
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004098static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004100 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08004101
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004102 advertising = tp->link_config.advertising;
4103 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004105 advmsk = ADVERTISE_ALL;
4106 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00004107 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004108 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004111 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
4112 return false;
4113
4114 if ((*lcladv & advmsk) != tgtadv)
4115 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00004116
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004117 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 u32 tg3_ctrl;
4119
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004120 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08004121
Matt Carlson221c5632011-06-13 13:39:01 +00004122 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004123 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124
Matt Carlson3198e072012-02-13 15:20:10 +00004125 if (tgtadv &&
4126 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
4127 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)) {
4128 tgtadv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
4129 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL |
4130 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
4131 } else {
4132 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
4133 }
4134
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004135 if (tg3_ctrl != tgtadv)
4136 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 }
Matt Carlson93a700a2011-08-31 11:44:54 +00004138
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004139 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08004140}
4141
Matt Carlson859edb22011-12-08 14:40:16 +00004142static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
4143{
4144 u32 lpeth = 0;
4145
4146 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4147 u32 val;
4148
4149 if (tg3_readphy(tp, MII_STAT1000, &val))
4150 return false;
4151
4152 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
4153 }
4154
4155 if (tg3_readphy(tp, MII_LPA, rmtadv))
4156 return false;
4157
4158 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
4159 tp->link_config.rmt_adv = lpeth;
4160
4161 return true;
4162}
4163
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
4165{
4166 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004167 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08004168 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 u16 current_speed;
4170 u8 current_duplex;
4171 int i, err;
4172
4173 tw32(MAC_EVENT, 0);
4174
4175 tw32_f(MAC_STATUS,
4176 (MAC_STATUS_SYNC_CHANGED |
4177 MAC_STATUS_CFG_CHANGED |
4178 MAC_STATUS_MI_COMPLETION |
4179 MAC_STATUS_LNKSTATE_CHANGED));
4180 udelay(40);
4181
Matt Carlson8ef21422008-05-02 16:47:53 -07004182 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
4183 tw32_f(MAC_MI_MODE,
4184 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
4185 udelay(80);
4186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004188 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
4190 /* Some third-party PHYs need to be reset on link going
4191 * down.
4192 */
4193 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
4194 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
4195 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
4196 netif_carrier_ok(tp->dev)) {
4197 tg3_readphy(tp, MII_BMSR, &bmsr);
4198 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4199 !(bmsr & BMSR_LSTATUS))
4200 force_reset = 1;
4201 }
4202 if (force_reset)
4203 tg3_phy_reset(tp);
4204
Matt Carlson79eb6902010-02-17 15:17:03 +00004205 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 tg3_readphy(tp, MII_BMSR, &bmsr);
4207 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00004208 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 bmsr = 0;
4210
4211 if (!(bmsr & BMSR_LSTATUS)) {
4212 err = tg3_init_5401phy_dsp(tp);
4213 if (err)
4214 return err;
4215
4216 tg3_readphy(tp, MII_BMSR, &bmsr);
4217 for (i = 0; i < 1000; i++) {
4218 udelay(10);
4219 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4220 (bmsr & BMSR_LSTATUS)) {
4221 udelay(40);
4222 break;
4223 }
4224 }
4225
Matt Carlson79eb6902010-02-17 15:17:03 +00004226 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
4227 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 !(bmsr & BMSR_LSTATUS) &&
4229 tp->link_config.active_speed == SPEED_1000) {
4230 err = tg3_phy_reset(tp);
4231 if (!err)
4232 err = tg3_init_5401phy_dsp(tp);
4233 if (err)
4234 return err;
4235 }
4236 }
4237 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
4238 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
4239 /* 5701 {A0,B0} CRC bug workaround */
4240 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004241 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
4242 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
4243 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 }
4245
4246 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004247 tg3_readphy(tp, MII_TG3_ISTAT, &val);
4248 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004250 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004252 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 tg3_writephy(tp, MII_TG3_IMASK, ~0);
4254
4255 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
4256 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
4257 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
4258 tg3_writephy(tp, MII_TG3_EXT_CTRL,
4259 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
4260 else
4261 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
4262 }
4263
4264 current_link_up = 0;
Matt Carlsone7405222012-02-13 15:20:16 +00004265 current_speed = SPEED_UNKNOWN;
4266 current_duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +00004267 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00004268 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004270 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00004271 err = tg3_phy_auxctl_read(tp,
4272 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4273 &val);
4274 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004275 tg3_phy_auxctl_write(tp,
4276 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4277 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 goto relink;
4279 }
4280 }
4281
4282 bmsr = 0;
4283 for (i = 0; i < 100; i++) {
4284 tg3_readphy(tp, MII_BMSR, &bmsr);
4285 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4286 (bmsr & BMSR_LSTATUS))
4287 break;
4288 udelay(40);
4289 }
4290
4291 if (bmsr & BMSR_LSTATUS) {
4292 u32 aux_stat, bmcr;
4293
4294 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
4295 for (i = 0; i < 2000; i++) {
4296 udelay(10);
4297 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
4298 aux_stat)
4299 break;
4300 }
4301
4302 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
4303 &current_speed,
4304 &current_duplex);
4305
4306 bmcr = 0;
4307 for (i = 0; i < 200; i++) {
4308 tg3_readphy(tp, MII_BMCR, &bmcr);
4309 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4310 continue;
4311 if (bmcr && bmcr != 0x7fff)
4312 break;
4313 udelay(10);
4314 }
4315
Matt Carlsonef167e22007-12-20 20:10:01 -08004316 lcl_adv = 0;
4317 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318
Matt Carlsonef167e22007-12-20 20:10:01 -08004319 tp->link_config.active_speed = current_speed;
4320 tp->link_config.active_duplex = current_duplex;
4321
4322 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4323 if ((bmcr & BMCR_ANENABLE) &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004324 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00004325 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004326 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 } else {
4328 if (!(bmcr & BMCR_ANENABLE) &&
4329 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08004330 tp->link_config.duplex == current_duplex &&
4331 tp->link_config.flowctrl ==
4332 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 }
4335 }
4336
Matt Carlsonef167e22007-12-20 20:10:01 -08004337 if (current_link_up == 1 &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00004338 tp->link_config.active_duplex == DUPLEX_FULL) {
4339 u32 reg, bit;
4340
4341 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
4342 reg = MII_TG3_FET_GEN_STAT;
4343 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
4344 } else {
4345 reg = MII_TG3_EXT_STAT;
4346 bit = MII_TG3_EXT_STAT_MDIX;
4347 }
4348
4349 if (!tg3_readphy(tp, reg, &val) && (val & bit))
4350 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
4351
Matt Carlsonef167e22007-12-20 20:10:01 -08004352 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 }
4355
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356relink:
Matt Carlson80096062010-08-02 11:26:06 +00004357 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 tg3_phy_copper_begin(tp);
4359
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004360 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004361 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4362 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 current_link_up = 1;
4364 }
4365
4366 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
4367 if (current_link_up == 1) {
4368 if (tp->link_config.active_speed == SPEED_100 ||
4369 tp->link_config.active_speed == SPEED_10)
4370 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4371 else
4372 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004373 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004374 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4375 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4377
4378 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4379 if (tp->link_config.active_duplex == DUPLEX_HALF)
4380 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4381
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004383 if (current_link_up == 1 &&
4384 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004386 else
4387 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 }
4389
4390 /* ??? Without this setting Netgear GA302T PHY does not
4391 * ??? send/receive packets...
4392 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004393 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
4395 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4396 tw32_f(MAC_MI_MODE, tp->mi_mode);
4397 udelay(80);
4398 }
4399
4400 tw32_f(MAC_MODE, tp->mac_mode);
4401 udelay(40);
4402
Matt Carlson52b02d02010-10-14 10:37:41 +00004403 tg3_phy_eee_adjust(tp, current_link_up);
4404
Joe Perches63c3a662011-04-26 08:12:10 +00004405 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 /* Polled via timer. */
4407 tw32_f(MAC_EVENT, 0);
4408 } else {
4409 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4410 }
4411 udelay(40);
4412
4413 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
4414 current_link_up == 1 &&
4415 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00004416 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 udelay(120);
4418 tw32_f(MAC_STATUS,
4419 (MAC_STATUS_SYNC_CHANGED |
4420 MAC_STATUS_CFG_CHANGED));
4421 udelay(40);
4422 tg3_write_mem(tp,
4423 NIC_SRAM_FIRMWARE_MBOX,
4424 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
4425 }
4426
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004427 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00004428 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004429 if (tp->link_config.active_speed == SPEED_100 ||
4430 tp->link_config.active_speed == SPEED_10)
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004431 pcie_capability_clear_word(tp->pdev, PCI_EXP_LNKCTL,
4432 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004433 else
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004434 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
4435 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004436 }
4437
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 if (current_link_up != netif_carrier_ok(tp->dev)) {
4439 if (current_link_up)
4440 netif_carrier_on(tp->dev);
4441 else
4442 netif_carrier_off(tp->dev);
4443 tg3_link_report(tp);
4444 }
4445
4446 return 0;
4447}
4448
4449struct tg3_fiber_aneginfo {
4450 int state;
4451#define ANEG_STATE_UNKNOWN 0
4452#define ANEG_STATE_AN_ENABLE 1
4453#define ANEG_STATE_RESTART_INIT 2
4454#define ANEG_STATE_RESTART 3
4455#define ANEG_STATE_DISABLE_LINK_OK 4
4456#define ANEG_STATE_ABILITY_DETECT_INIT 5
4457#define ANEG_STATE_ABILITY_DETECT 6
4458#define ANEG_STATE_ACK_DETECT_INIT 7
4459#define ANEG_STATE_ACK_DETECT 8
4460#define ANEG_STATE_COMPLETE_ACK_INIT 9
4461#define ANEG_STATE_COMPLETE_ACK 10
4462#define ANEG_STATE_IDLE_DETECT_INIT 11
4463#define ANEG_STATE_IDLE_DETECT 12
4464#define ANEG_STATE_LINK_OK 13
4465#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
4466#define ANEG_STATE_NEXT_PAGE_WAIT 15
4467
4468 u32 flags;
4469#define MR_AN_ENABLE 0x00000001
4470#define MR_RESTART_AN 0x00000002
4471#define MR_AN_COMPLETE 0x00000004
4472#define MR_PAGE_RX 0x00000008
4473#define MR_NP_LOADED 0x00000010
4474#define MR_TOGGLE_TX 0x00000020
4475#define MR_LP_ADV_FULL_DUPLEX 0x00000040
4476#define MR_LP_ADV_HALF_DUPLEX 0x00000080
4477#define MR_LP_ADV_SYM_PAUSE 0x00000100
4478#define MR_LP_ADV_ASYM_PAUSE 0x00000200
4479#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
4480#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
4481#define MR_LP_ADV_NEXT_PAGE 0x00001000
4482#define MR_TOGGLE_RX 0x00002000
4483#define MR_NP_RX 0x00004000
4484
4485#define MR_LINK_OK 0x80000000
4486
4487 unsigned long link_time, cur_time;
4488
4489 u32 ability_match_cfg;
4490 int ability_match_count;
4491
4492 char ability_match, idle_match, ack_match;
4493
4494 u32 txconfig, rxconfig;
4495#define ANEG_CFG_NP 0x00000080
4496#define ANEG_CFG_ACK 0x00000040
4497#define ANEG_CFG_RF2 0x00000020
4498#define ANEG_CFG_RF1 0x00000010
4499#define ANEG_CFG_PS2 0x00000001
4500#define ANEG_CFG_PS1 0x00008000
4501#define ANEG_CFG_HD 0x00004000
4502#define ANEG_CFG_FD 0x00002000
4503#define ANEG_CFG_INVAL 0x00001f06
4504
4505};
4506#define ANEG_OK 0
4507#define ANEG_DONE 1
4508#define ANEG_TIMER_ENAB 2
4509#define ANEG_FAILED -1
4510
4511#define ANEG_STATE_SETTLE_TIME 10000
4512
4513static int tg3_fiber_aneg_smachine(struct tg3 *tp,
4514 struct tg3_fiber_aneginfo *ap)
4515{
Matt Carlson5be73b42007-12-20 20:09:29 -08004516 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 unsigned long delta;
4518 u32 rx_cfg_reg;
4519 int ret;
4520
4521 if (ap->state == ANEG_STATE_UNKNOWN) {
4522 ap->rxconfig = 0;
4523 ap->link_time = 0;
4524 ap->cur_time = 0;
4525 ap->ability_match_cfg = 0;
4526 ap->ability_match_count = 0;
4527 ap->ability_match = 0;
4528 ap->idle_match = 0;
4529 ap->ack_match = 0;
4530 }
4531 ap->cur_time++;
4532
4533 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
4534 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
4535
4536 if (rx_cfg_reg != ap->ability_match_cfg) {
4537 ap->ability_match_cfg = rx_cfg_reg;
4538 ap->ability_match = 0;
4539 ap->ability_match_count = 0;
4540 } else {
4541 if (++ap->ability_match_count > 1) {
4542 ap->ability_match = 1;
4543 ap->ability_match_cfg = rx_cfg_reg;
4544 }
4545 }
4546 if (rx_cfg_reg & ANEG_CFG_ACK)
4547 ap->ack_match = 1;
4548 else
4549 ap->ack_match = 0;
4550
4551 ap->idle_match = 0;
4552 } else {
4553 ap->idle_match = 1;
4554 ap->ability_match_cfg = 0;
4555 ap->ability_match_count = 0;
4556 ap->ability_match = 0;
4557 ap->ack_match = 0;
4558
4559 rx_cfg_reg = 0;
4560 }
4561
4562 ap->rxconfig = rx_cfg_reg;
4563 ret = ANEG_OK;
4564
Matt Carlson33f401a2010-04-05 10:19:27 +00004565 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 case ANEG_STATE_UNKNOWN:
4567 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
4568 ap->state = ANEG_STATE_AN_ENABLE;
4569
4570 /* fallthru */
4571 case ANEG_STATE_AN_ENABLE:
4572 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
4573 if (ap->flags & MR_AN_ENABLE) {
4574 ap->link_time = 0;
4575 ap->cur_time = 0;
4576 ap->ability_match_cfg = 0;
4577 ap->ability_match_count = 0;
4578 ap->ability_match = 0;
4579 ap->idle_match = 0;
4580 ap->ack_match = 0;
4581
4582 ap->state = ANEG_STATE_RESTART_INIT;
4583 } else {
4584 ap->state = ANEG_STATE_DISABLE_LINK_OK;
4585 }
4586 break;
4587
4588 case ANEG_STATE_RESTART_INIT:
4589 ap->link_time = ap->cur_time;
4590 ap->flags &= ~(MR_NP_LOADED);
4591 ap->txconfig = 0;
4592 tw32(MAC_TX_AUTO_NEG, 0);
4593 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4594 tw32_f(MAC_MODE, tp->mac_mode);
4595 udelay(40);
4596
4597 ret = ANEG_TIMER_ENAB;
4598 ap->state = ANEG_STATE_RESTART;
4599
4600 /* fallthru */
4601 case ANEG_STATE_RESTART:
4602 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00004603 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00004605 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 break;
4608
4609 case ANEG_STATE_DISABLE_LINK_OK:
4610 ret = ANEG_DONE;
4611 break;
4612
4613 case ANEG_STATE_ABILITY_DETECT_INIT:
4614 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08004615 ap->txconfig = ANEG_CFG_FD;
4616 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4617 if (flowctrl & ADVERTISE_1000XPAUSE)
4618 ap->txconfig |= ANEG_CFG_PS1;
4619 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4620 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4622 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4623 tw32_f(MAC_MODE, tp->mac_mode);
4624 udelay(40);
4625
4626 ap->state = ANEG_STATE_ABILITY_DETECT;
4627 break;
4628
4629 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00004630 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 break;
4633
4634 case ANEG_STATE_ACK_DETECT_INIT:
4635 ap->txconfig |= ANEG_CFG_ACK;
4636 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_ACK_DETECT;
4642
4643 /* fallthru */
4644 case ANEG_STATE_ACK_DETECT:
4645 if (ap->ack_match != 0) {
4646 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
4647 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
4648 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
4649 } else {
4650 ap->state = ANEG_STATE_AN_ENABLE;
4651 }
4652 } else if (ap->ability_match != 0 &&
4653 ap->rxconfig == 0) {
4654 ap->state = ANEG_STATE_AN_ENABLE;
4655 }
4656 break;
4657
4658 case ANEG_STATE_COMPLETE_ACK_INIT:
4659 if (ap->rxconfig & ANEG_CFG_INVAL) {
4660 ret = ANEG_FAILED;
4661 break;
4662 }
4663 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
4664 MR_LP_ADV_HALF_DUPLEX |
4665 MR_LP_ADV_SYM_PAUSE |
4666 MR_LP_ADV_ASYM_PAUSE |
4667 MR_LP_ADV_REMOTE_FAULT1 |
4668 MR_LP_ADV_REMOTE_FAULT2 |
4669 MR_LP_ADV_NEXT_PAGE |
4670 MR_TOGGLE_RX |
4671 MR_NP_RX);
4672 if (ap->rxconfig & ANEG_CFG_FD)
4673 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
4674 if (ap->rxconfig & ANEG_CFG_HD)
4675 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
4676 if (ap->rxconfig & ANEG_CFG_PS1)
4677 ap->flags |= MR_LP_ADV_SYM_PAUSE;
4678 if (ap->rxconfig & ANEG_CFG_PS2)
4679 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
4680 if (ap->rxconfig & ANEG_CFG_RF1)
4681 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
4682 if (ap->rxconfig & ANEG_CFG_RF2)
4683 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
4684 if (ap->rxconfig & ANEG_CFG_NP)
4685 ap->flags |= MR_LP_ADV_NEXT_PAGE;
4686
4687 ap->link_time = ap->cur_time;
4688
4689 ap->flags ^= (MR_TOGGLE_TX);
4690 if (ap->rxconfig & 0x0008)
4691 ap->flags |= MR_TOGGLE_RX;
4692 if (ap->rxconfig & ANEG_CFG_NP)
4693 ap->flags |= MR_NP_RX;
4694 ap->flags |= MR_PAGE_RX;
4695
4696 ap->state = ANEG_STATE_COMPLETE_ACK;
4697 ret = ANEG_TIMER_ENAB;
4698 break;
4699
4700 case ANEG_STATE_COMPLETE_ACK:
4701 if (ap->ability_match != 0 &&
4702 ap->rxconfig == 0) {
4703 ap->state = ANEG_STATE_AN_ENABLE;
4704 break;
4705 }
4706 delta = ap->cur_time - ap->link_time;
4707 if (delta > ANEG_STATE_SETTLE_TIME) {
4708 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
4709 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4710 } else {
4711 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
4712 !(ap->flags & MR_NP_RX)) {
4713 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4714 } else {
4715 ret = ANEG_FAILED;
4716 }
4717 }
4718 }
4719 break;
4720
4721 case ANEG_STATE_IDLE_DETECT_INIT:
4722 ap->link_time = ap->cur_time;
4723 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4724 tw32_f(MAC_MODE, tp->mac_mode);
4725 udelay(40);
4726
4727 ap->state = ANEG_STATE_IDLE_DETECT;
4728 ret = ANEG_TIMER_ENAB;
4729 break;
4730
4731 case ANEG_STATE_IDLE_DETECT:
4732 if (ap->ability_match != 0 &&
4733 ap->rxconfig == 0) {
4734 ap->state = ANEG_STATE_AN_ENABLE;
4735 break;
4736 }
4737 delta = ap->cur_time - ap->link_time;
4738 if (delta > ANEG_STATE_SETTLE_TIME) {
4739 /* XXX another gem from the Broadcom driver :( */
4740 ap->state = ANEG_STATE_LINK_OK;
4741 }
4742 break;
4743
4744 case ANEG_STATE_LINK_OK:
4745 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
4746 ret = ANEG_DONE;
4747 break;
4748
4749 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
4750 /* ??? unimplemented */
4751 break;
4752
4753 case ANEG_STATE_NEXT_PAGE_WAIT:
4754 /* ??? unimplemented */
4755 break;
4756
4757 default:
4758 ret = ANEG_FAILED;
4759 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761
4762 return ret;
4763}
4764
Matt Carlson5be73b42007-12-20 20:09:29 -08004765static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766{
4767 int res = 0;
4768 struct tg3_fiber_aneginfo aninfo;
4769 int status = ANEG_FAILED;
4770 unsigned int tick;
4771 u32 tmp;
4772
4773 tw32_f(MAC_TX_AUTO_NEG, 0);
4774
4775 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
4776 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
4777 udelay(40);
4778
4779 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
4780 udelay(40);
4781
4782 memset(&aninfo, 0, sizeof(aninfo));
4783 aninfo.flags |= MR_AN_ENABLE;
4784 aninfo.state = ANEG_STATE_UNKNOWN;
4785 aninfo.cur_time = 0;
4786 tick = 0;
4787 while (++tick < 195000) {
4788 status = tg3_fiber_aneg_smachine(tp, &aninfo);
4789 if (status == ANEG_DONE || status == ANEG_FAILED)
4790 break;
4791
4792 udelay(1);
4793 }
4794
4795 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4796 tw32_f(MAC_MODE, tp->mac_mode);
4797 udelay(40);
4798
Matt Carlson5be73b42007-12-20 20:09:29 -08004799 *txflags = aninfo.txconfig;
4800 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801
4802 if (status == ANEG_DONE &&
4803 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
4804 MR_LP_ADV_FULL_DUPLEX)))
4805 res = 1;
4806
4807 return res;
4808}
4809
4810static void tg3_init_bcm8002(struct tg3 *tp)
4811{
4812 u32 mac_status = tr32(MAC_STATUS);
4813 int i;
4814
4815 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00004816 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 !(mac_status & MAC_STATUS_PCS_SYNCED))
4818 return;
4819
4820 /* Set PLL lock range. */
4821 tg3_writephy(tp, 0x16, 0x8007);
4822
4823 /* SW reset */
4824 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
4825
4826 /* Wait for reset to complete. */
4827 /* XXX schedule_timeout() ... */
4828 for (i = 0; i < 500; i++)
4829 udelay(10);
4830
4831 /* Config mode; select PMA/Ch 1 regs. */
4832 tg3_writephy(tp, 0x10, 0x8411);
4833
4834 /* Enable auto-lock and comdet, select txclk for tx. */
4835 tg3_writephy(tp, 0x11, 0x0a10);
4836
4837 tg3_writephy(tp, 0x18, 0x00a0);
4838 tg3_writephy(tp, 0x16, 0x41ff);
4839
4840 /* Assert and deassert POR. */
4841 tg3_writephy(tp, 0x13, 0x0400);
4842 udelay(40);
4843 tg3_writephy(tp, 0x13, 0x0000);
4844
4845 tg3_writephy(tp, 0x11, 0x0a50);
4846 udelay(40);
4847 tg3_writephy(tp, 0x11, 0x0a10);
4848
4849 /* Wait for signal to stabilize */
4850 /* XXX schedule_timeout() ... */
4851 for (i = 0; i < 15000; i++)
4852 udelay(10);
4853
4854 /* Deselect the channel register so we can read the PHYID
4855 * later.
4856 */
4857 tg3_writephy(tp, 0x10, 0x8011);
4858}
4859
4860static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
4861{
Matt Carlson82cd3d12007-12-20 20:09:00 -08004862 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863 u32 sg_dig_ctrl, sg_dig_status;
4864 u32 serdes_cfg, expected_sg_dig_ctrl;
4865 int workaround, port_a;
4866 int current_link_up;
4867
4868 serdes_cfg = 0;
4869 expected_sg_dig_ctrl = 0;
4870 workaround = 0;
4871 port_a = 1;
4872 current_link_up = 0;
4873
4874 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
4875 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
4876 workaround = 1;
4877 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
4878 port_a = 0;
4879
4880 /* preserve bits 0-11,13,14 for signal pre-emphasis */
4881 /* preserve bits 20-23 for voltage regulator */
4882 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
4883 }
4884
4885 sg_dig_ctrl = tr32(SG_DIG_CTRL);
4886
4887 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004888 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 if (workaround) {
4890 u32 val = serdes_cfg;
4891
4892 if (port_a)
4893 val |= 0xc010000;
4894 else
4895 val |= 0x4010000;
4896 tw32_f(MAC_SERDES_CFG, val);
4897 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004898
4899 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 }
4901 if (mac_status & MAC_STATUS_PCS_SYNCED) {
4902 tg3_setup_flow_control(tp, 0, 0);
4903 current_link_up = 1;
4904 }
4905 goto out;
4906 }
4907
4908 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004909 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910
Matt Carlson82cd3d12007-12-20 20:09:00 -08004911 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4912 if (flowctrl & ADVERTISE_1000XPAUSE)
4913 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
4914 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4915 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916
4917 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004918 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07004919 tp->serdes_counter &&
4920 ((mac_status & (MAC_STATUS_PCS_SYNCED |
4921 MAC_STATUS_RCVD_CFG)) ==
4922 MAC_STATUS_PCS_SYNCED)) {
4923 tp->serdes_counter--;
4924 current_link_up = 1;
4925 goto out;
4926 }
4927restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 if (workaround)
4929 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004930 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 udelay(5);
4932 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
4933
Michael Chan3d3ebe72006-09-27 15:59:15 -07004934 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004935 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
4937 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004938 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 mac_status = tr32(MAC_STATUS);
4940
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004941 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08004943 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944
Matt Carlson82cd3d12007-12-20 20:09:00 -08004945 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
4946 local_adv |= ADVERTISE_1000XPAUSE;
4947 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
4948 local_adv |= ADVERTISE_1000XPSE_ASYM;
4949
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004950 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004951 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004952 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004953 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954
Matt Carlson859edb22011-12-08 14:40:16 +00004955 tp->link_config.rmt_adv =
4956 mii_adv_to_ethtool_adv_x(remote_adv);
4957
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958 tg3_setup_flow_control(tp, local_adv, remote_adv);
4959 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004960 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004961 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004962 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004963 if (tp->serdes_counter)
4964 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 else {
4966 if (workaround) {
4967 u32 val = serdes_cfg;
4968
4969 if (port_a)
4970 val |= 0xc010000;
4971 else
4972 val |= 0x4010000;
4973
4974 tw32_f(MAC_SERDES_CFG, val);
4975 }
4976
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004977 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 udelay(40);
4979
4980 /* Link parallel detection - link is up */
4981 /* only if we have PCS_SYNC and not */
4982 /* receiving config code words */
4983 mac_status = tr32(MAC_STATUS);
4984 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
4985 !(mac_status & MAC_STATUS_RCVD_CFG)) {
4986 tg3_setup_flow_control(tp, 0, 0);
4987 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004988 tp->phy_flags |=
4989 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004990 tp->serdes_counter =
4991 SERDES_PARALLEL_DET_TIMEOUT;
4992 } else
4993 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 }
4995 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07004996 } else {
4997 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004998 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 }
5000
5001out:
5002 return current_link_up;
5003}
5004
5005static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
5006{
5007 int current_link_up = 0;
5008
Michael Chan5cf64b8a2007-05-05 12:11:21 -07005009 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011
5012 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08005013 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005015
Matt Carlson5be73b42007-12-20 20:09:29 -08005016 if (fiber_autoneg(tp, &txflags, &rxflags)) {
5017 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
Matt Carlson5be73b42007-12-20 20:09:29 -08005019 if (txflags & ANEG_CFG_PS1)
5020 local_adv |= ADVERTISE_1000XPAUSE;
5021 if (txflags & ANEG_CFG_PS2)
5022 local_adv |= ADVERTISE_1000XPSE_ASYM;
5023
5024 if (rxflags & MR_LP_ADV_SYM_PAUSE)
5025 remote_adv |= LPA_1000XPAUSE;
5026 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
5027 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
Matt Carlson859edb22011-12-08 14:40:16 +00005029 tp->link_config.rmt_adv =
5030 mii_adv_to_ethtool_adv_x(remote_adv);
5031
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032 tg3_setup_flow_control(tp, local_adv, remote_adv);
5033
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 current_link_up = 1;
5035 }
5036 for (i = 0; i < 30; i++) {
5037 udelay(20);
5038 tw32_f(MAC_STATUS,
5039 (MAC_STATUS_SYNC_CHANGED |
5040 MAC_STATUS_CFG_CHANGED));
5041 udelay(40);
5042 if ((tr32(MAC_STATUS) &
5043 (MAC_STATUS_SYNC_CHANGED |
5044 MAC_STATUS_CFG_CHANGED)) == 0)
5045 break;
5046 }
5047
5048 mac_status = tr32(MAC_STATUS);
5049 if (current_link_up == 0 &&
5050 (mac_status & MAC_STATUS_PCS_SYNCED) &&
5051 !(mac_status & MAC_STATUS_RCVD_CFG))
5052 current_link_up = 1;
5053 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08005054 tg3_setup_flow_control(tp, 0, 0);
5055
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 /* Forcing 1000FD link up. */
5057 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
5059 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
5060 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07005061
5062 tw32_f(MAC_MODE, tp->mac_mode);
5063 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 }
5065
5066out:
5067 return current_link_up;
5068}
5069
5070static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
5071{
5072 u32 orig_pause_cfg;
5073 u16 orig_active_speed;
5074 u8 orig_active_duplex;
5075 u32 mac_status;
5076 int current_link_up;
5077 int i;
5078
Matt Carlson8d018622007-12-20 20:05:44 -08005079 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 orig_active_speed = tp->link_config.active_speed;
5081 orig_active_duplex = tp->link_config.active_duplex;
5082
Joe Perches63c3a662011-04-26 08:12:10 +00005083 if (!tg3_flag(tp, HW_AUTONEG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084 netif_carrier_ok(tp->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00005085 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 mac_status = tr32(MAC_STATUS);
5087 mac_status &= (MAC_STATUS_PCS_SYNCED |
5088 MAC_STATUS_SIGNAL_DET |
5089 MAC_STATUS_CFG_CHANGED |
5090 MAC_STATUS_RCVD_CFG);
5091 if (mac_status == (MAC_STATUS_PCS_SYNCED |
5092 MAC_STATUS_SIGNAL_DET)) {
5093 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5094 MAC_STATUS_CFG_CHANGED));
5095 return 0;
5096 }
5097 }
5098
5099 tw32_f(MAC_TX_AUTO_NEG, 0);
5100
5101 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
5102 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
5103 tw32_f(MAC_MODE, tp->mac_mode);
5104 udelay(40);
5105
Matt Carlson79eb6902010-02-17 15:17:03 +00005106 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 tg3_init_bcm8002(tp);
5108
5109 /* Enable link change event even when serdes polling. */
5110 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5111 udelay(40);
5112
5113 current_link_up = 0;
Matt Carlson859edb22011-12-08 14:40:16 +00005114 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 mac_status = tr32(MAC_STATUS);
5116
Joe Perches63c3a662011-04-26 08:12:10 +00005117 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
5119 else
5120 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
5121
Matt Carlson898a56f2009-08-28 14:02:40 +00005122 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00005124 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125
5126 for (i = 0; i < 100; i++) {
5127 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5128 MAC_STATUS_CFG_CHANGED));
5129 udelay(5);
5130 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07005131 MAC_STATUS_CFG_CHANGED |
5132 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 break;
5134 }
5135
5136 mac_status = tr32(MAC_STATUS);
5137 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
5138 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005139 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
5140 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 tw32_f(MAC_MODE, (tp->mac_mode |
5142 MAC_MODE_SEND_CONFIGS));
5143 udelay(1);
5144 tw32_f(MAC_MODE, tp->mac_mode);
5145 }
5146 }
5147
5148 if (current_link_up == 1) {
5149 tp->link_config.active_speed = SPEED_1000;
5150 tp->link_config.active_duplex = DUPLEX_FULL;
5151 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5152 LED_CTRL_LNKLED_OVERRIDE |
5153 LED_CTRL_1000MBPS_ON));
5154 } else {
Matt Carlsone7405222012-02-13 15:20:16 +00005155 tp->link_config.active_speed = SPEED_UNKNOWN;
5156 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5158 LED_CTRL_LNKLED_OVERRIDE |
5159 LED_CTRL_TRAFFIC_OVERRIDE));
5160 }
5161
5162 if (current_link_up != netif_carrier_ok(tp->dev)) {
5163 if (current_link_up)
5164 netif_carrier_on(tp->dev);
5165 else
5166 netif_carrier_off(tp->dev);
5167 tg3_link_report(tp);
5168 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08005169 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 if (orig_pause_cfg != now_pause_cfg ||
5171 orig_active_speed != tp->link_config.active_speed ||
5172 orig_active_duplex != tp->link_config.active_duplex)
5173 tg3_link_report(tp);
5174 }
5175
5176 return 0;
5177}
5178
Michael Chan747e8f82005-07-25 12:33:22 -07005179static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
5180{
5181 int current_link_up, err = 0;
5182 u32 bmsr, bmcr;
5183 u16 current_speed;
5184 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08005185 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07005186
5187 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5188 tw32_f(MAC_MODE, tp->mac_mode);
5189 udelay(40);
5190
5191 tw32(MAC_EVENT, 0);
5192
5193 tw32_f(MAC_STATUS,
5194 (MAC_STATUS_SYNC_CHANGED |
5195 MAC_STATUS_CFG_CHANGED |
5196 MAC_STATUS_MI_COMPLETION |
5197 MAC_STATUS_LNKSTATE_CHANGED));
5198 udelay(40);
5199
5200 if (force_reset)
5201 tg3_phy_reset(tp);
5202
5203 current_link_up = 0;
Matt Carlsone7405222012-02-13 15:20:16 +00005204 current_speed = SPEED_UNKNOWN;
5205 current_duplex = DUPLEX_UNKNOWN;
Matt Carlson859edb22011-12-08 14:40:16 +00005206 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005207
5208 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5209 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08005210 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
5211 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5212 bmsr |= BMSR_LSTATUS;
5213 else
5214 bmsr &= ~BMSR_LSTATUS;
5215 }
Michael Chan747e8f82005-07-25 12:33:22 -07005216
5217 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
5218
5219 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005220 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005221 /* do nothing, just check for link up at the end */
5222 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05005223 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07005224
5225 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05005226 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
5227 ADVERTISE_1000XPAUSE |
5228 ADVERTISE_1000XPSE_ASYM |
5229 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07005230
Matt Carlson28011cf2011-11-16 18:36:59 -05005231 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00005232 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07005233
Matt Carlson28011cf2011-11-16 18:36:59 -05005234 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
5235 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07005236 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
5237 tg3_writephy(tp, MII_BMCR, bmcr);
5238
5239 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07005240 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005241 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005242
5243 return err;
5244 }
5245 } else {
5246 u32 new_bmcr;
5247
5248 bmcr &= ~BMCR_SPEED1000;
5249 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
5250
5251 if (tp->link_config.duplex == DUPLEX_FULL)
5252 new_bmcr |= BMCR_FULLDPLX;
5253
5254 if (new_bmcr != bmcr) {
5255 /* BMCR_SPEED1000 is a reserved bit that needs
5256 * to be set on write.
5257 */
5258 new_bmcr |= BMCR_SPEED1000;
5259
5260 /* Force a linkdown */
5261 if (netif_carrier_ok(tp->dev)) {
5262 u32 adv;
5263
5264 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
5265 adv &= ~(ADVERTISE_1000XFULL |
5266 ADVERTISE_1000XHALF |
5267 ADVERTISE_SLCT);
5268 tg3_writephy(tp, MII_ADVERTISE, adv);
5269 tg3_writephy(tp, MII_BMCR, bmcr |
5270 BMCR_ANRESTART |
5271 BMCR_ANENABLE);
5272 udelay(10);
5273 netif_carrier_off(tp->dev);
5274 }
5275 tg3_writephy(tp, MII_BMCR, new_bmcr);
5276 bmcr = new_bmcr;
5277 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5278 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08005279 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
5280 ASIC_REV_5714) {
5281 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5282 bmsr |= BMSR_LSTATUS;
5283 else
5284 bmsr &= ~BMSR_LSTATUS;
5285 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005286 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005287 }
5288 }
5289
5290 if (bmsr & BMSR_LSTATUS) {
5291 current_speed = SPEED_1000;
5292 current_link_up = 1;
5293 if (bmcr & BMCR_FULLDPLX)
5294 current_duplex = DUPLEX_FULL;
5295 else
5296 current_duplex = DUPLEX_HALF;
5297
Matt Carlsonef167e22007-12-20 20:10:01 -08005298 local_adv = 0;
5299 remote_adv = 0;
5300
Michael Chan747e8f82005-07-25 12:33:22 -07005301 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08005302 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07005303
5304 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
5305 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
5306 common = local_adv & remote_adv;
5307 if (common & (ADVERTISE_1000XHALF |
5308 ADVERTISE_1000XFULL)) {
5309 if (common & ADVERTISE_1000XFULL)
5310 current_duplex = DUPLEX_FULL;
5311 else
5312 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00005313
5314 tp->link_config.rmt_adv =
5315 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00005316 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005317 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00005318 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07005319 current_link_up = 0;
Matt Carlson859a588792010-04-05 10:19:28 +00005320 }
Michael Chan747e8f82005-07-25 12:33:22 -07005321 }
5322 }
5323
Matt Carlsonef167e22007-12-20 20:10:01 -08005324 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
5325 tg3_setup_flow_control(tp, local_adv, remote_adv);
5326
Michael Chan747e8f82005-07-25 12:33:22 -07005327 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5328 if (tp->link_config.active_duplex == DUPLEX_HALF)
5329 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5330
5331 tw32_f(MAC_MODE, tp->mac_mode);
5332 udelay(40);
5333
5334 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5335
5336 tp->link_config.active_speed = current_speed;
5337 tp->link_config.active_duplex = current_duplex;
5338
5339 if (current_link_up != netif_carrier_ok(tp->dev)) {
5340 if (current_link_up)
5341 netif_carrier_on(tp->dev);
5342 else {
5343 netif_carrier_off(tp->dev);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005344 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005345 }
5346 tg3_link_report(tp);
5347 }
5348 return err;
5349}
5350
5351static void tg3_serdes_parallel_detect(struct tg3 *tp)
5352{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005353 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005354 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005355 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005356 return;
5357 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005358
Michael Chan747e8f82005-07-25 12:33:22 -07005359 if (!netif_carrier_ok(tp->dev) &&
5360 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5361 u32 bmcr;
5362
5363 tg3_readphy(tp, MII_BMCR, &bmcr);
5364 if (bmcr & BMCR_ANENABLE) {
5365 u32 phy1, phy2;
5366
5367 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005368 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5369 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005370
5371 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005372 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5373 MII_TG3_DSP_EXP1_INT_STAT);
5374 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5375 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005376
5377 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5378 /* We have signal detect and not receiving
5379 * config code words, link is up by parallel
5380 * detection.
5381 */
5382
5383 bmcr &= ~BMCR_ANENABLE;
5384 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5385 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005386 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005387 }
5388 }
Matt Carlson859a588792010-04-05 10:19:28 +00005389 } else if (netif_carrier_ok(tp->dev) &&
5390 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005391 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005392 u32 phy2;
5393
5394 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005395 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5396 MII_TG3_DSP_EXP1_INT_STAT);
5397 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005398 if (phy2 & 0x20) {
5399 u32 bmcr;
5400
5401 /* Config code words received, turn on autoneg. */
5402 tg3_readphy(tp, MII_BMCR, &bmcr);
5403 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
5404
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005405 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005406
5407 }
5408 }
5409}
5410
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411static int tg3_setup_phy(struct tg3 *tp, int force_reset)
5412{
Matt Carlsonf2096f92011-04-05 14:22:48 +00005413 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 int err;
5415
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005416 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005418 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07005419 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00005420 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
Matt Carlsonbcb37f62008-11-03 16:52:09 -08005423 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005424 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08005425
5426 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
5427 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
5428 scale = 65;
5429 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
5430 scale = 6;
5431 else
5432 scale = 12;
5433
5434 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
5435 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
5436 tw32(GRC_MISC_CFG, val);
5437 }
5438
Matt Carlsonf2096f92011-04-05 14:22:48 +00005439 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5440 (6 << TX_LENGTHS_IPG_SHIFT);
5441 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
5442 val |= tr32(MAC_TX_LENGTHS) &
5443 (TX_LENGTHS_JMB_FRM_LEN_MSK |
5444 TX_LENGTHS_CNT_DWN_VAL_MSK);
5445
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446 if (tp->link_config.active_speed == SPEED_1000 &&
5447 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005448 tw32(MAC_TX_LENGTHS, val |
5449 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00005451 tw32(MAC_TX_LENGTHS, val |
5452 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453
Joe Perches63c3a662011-04-26 08:12:10 +00005454 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455 if (netif_carrier_ok(tp->dev)) {
5456 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07005457 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458 } else {
5459 tw32(HOSTCC_STAT_COAL_TICKS, 0);
5460 }
5461 }
5462
Joe Perches63c3a662011-04-26 08:12:10 +00005463 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005464 val = tr32(PCIE_PWR_MGMT_THRESH);
Matt Carlson8ed5d972007-05-07 00:25:49 -07005465 if (!netif_carrier_ok(tp->dev))
5466 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
5467 tp->pwrmgmt_thresh;
5468 else
5469 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
5470 tw32(PCIE_PWR_MGMT_THRESH, val);
5471 }
5472
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 return err;
5474}
5475
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005476static inline int tg3_irq_sync(struct tg3 *tp)
5477{
5478 return tp->irq_sync;
5479}
5480
Matt Carlson97bd8e42011-04-13 11:05:04 +00005481static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
5482{
5483 int i;
5484
5485 dst = (u32 *)((u8 *)dst + off);
5486 for (i = 0; i < len; i += sizeof(u32))
5487 *dst++ = tr32(off + i);
5488}
5489
5490static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
5491{
5492 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
5493 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
5494 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
5495 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
5496 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
5497 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
5498 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
5499 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
5500 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
5501 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
5502 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
5503 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
5504 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
5505 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
5506 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
5507 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
5508 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
5509 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
5510 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
5511
Joe Perches63c3a662011-04-26 08:12:10 +00005512 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005513 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
5514
5515 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
5516 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
5517 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
5518 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
5519 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
5520 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
5521 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
5522 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
5523
Joe Perches63c3a662011-04-26 08:12:10 +00005524 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005525 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
5526 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
5527 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
5528 }
5529
5530 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
5531 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
5532 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
5533 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
5534 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
5535
Joe Perches63c3a662011-04-26 08:12:10 +00005536 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005537 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
5538}
5539
5540static void tg3_dump_state(struct tg3 *tp)
5541{
5542 int i;
5543 u32 *regs;
5544
5545 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
5546 if (!regs) {
5547 netdev_err(tp->dev, "Failed allocating register dump buffer\n");
5548 return;
5549 }
5550
Joe Perches63c3a662011-04-26 08:12:10 +00005551 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005552 /* Read up to but not including private PCI registers */
5553 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
5554 regs[i / sizeof(u32)] = tr32(i);
5555 } else
5556 tg3_dump_legacy_regs(tp, regs);
5557
5558 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
5559 if (!regs[i + 0] && !regs[i + 1] &&
5560 !regs[i + 2] && !regs[i + 3])
5561 continue;
5562
5563 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
5564 i * 4,
5565 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
5566 }
5567
5568 kfree(regs);
5569
5570 for (i = 0; i < tp->irq_cnt; i++) {
5571 struct tg3_napi *tnapi = &tp->napi[i];
5572
5573 /* SW status block */
5574 netdev_err(tp->dev,
5575 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
5576 i,
5577 tnapi->hw_status->status,
5578 tnapi->hw_status->status_tag,
5579 tnapi->hw_status->rx_jumbo_consumer,
5580 tnapi->hw_status->rx_consumer,
5581 tnapi->hw_status->rx_mini_consumer,
5582 tnapi->hw_status->idx[0].rx_producer,
5583 tnapi->hw_status->idx[0].tx_consumer);
5584
5585 netdev_err(tp->dev,
5586 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
5587 i,
5588 tnapi->last_tag, tnapi->last_irq_tag,
5589 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
5590 tnapi->rx_rcb_ptr,
5591 tnapi->prodring.rx_std_prod_idx,
5592 tnapi->prodring.rx_std_cons_idx,
5593 tnapi->prodring.rx_jmb_prod_idx,
5594 tnapi->prodring.rx_jmb_cons_idx);
5595 }
5596}
5597
Michael Chandf3e6542006-05-26 17:48:07 -07005598/* This is called whenever we suspect that the system chipset is re-
5599 * ordering the sequence of MMIO to the tx send mailbox. The symptom
5600 * is bogus tx completions. We try to recover by setting the
5601 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
5602 * in the workqueue.
5603 */
5604static void tg3_tx_recover(struct tg3 *tp)
5605{
Joe Perches63c3a662011-04-26 08:12:10 +00005606 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07005607 tp->write32_tx_mbox == tg3_write_indirect_mbox);
5608
Matt Carlson5129c3a2010-04-05 10:19:23 +00005609 netdev_warn(tp->dev,
5610 "The system may be re-ordering memory-mapped I/O "
5611 "cycles to the network device, attempting to recover. "
5612 "Please report the problem to the driver maintainer "
5613 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07005614
5615 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005616 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005617 spin_unlock(&tp->lock);
5618}
5619
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005620static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07005621{
Matt Carlsonf65aac12010-08-02 11:26:03 +00005622 /* Tell compiler to fetch tx indices from memory. */
5623 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005624 return tnapi->tx_pending -
5625 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07005626}
5627
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628/* Tigon3 never reports partial packet sends. So we do not
5629 * need special logic to handle SKBs that have not had all
5630 * of their frags sent yet, like SunGEM does.
5631 */
Matt Carlson17375d22009-08-28 14:02:18 +00005632static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633{
Matt Carlson17375d22009-08-28 14:02:18 +00005634 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005635 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005636 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005637 struct netdev_queue *txq;
5638 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00005639 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005640
Joe Perches63c3a662011-04-26 08:12:10 +00005641 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005642 index--;
5643
5644 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645
5646 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00005647 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07005649 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650
Michael Chandf3e6542006-05-26 17:48:07 -07005651 if (unlikely(skb == NULL)) {
5652 tg3_tx_recover(tp);
5653 return;
5654 }
5655
Alexander Duyckf4188d82009-12-02 16:48:38 +00005656 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005657 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005658 skb_headlen(skb),
5659 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660
5661 ri->skb = NULL;
5662
Matt Carlsone01ee142011-07-27 14:20:50 +00005663 while (ri->fragmented) {
5664 ri->fragmented = false;
5665 sw_idx = NEXT_TX(sw_idx);
5666 ri = &tnapi->tx_buffers[sw_idx];
5667 }
5668
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669 sw_idx = NEXT_TX(sw_idx);
5670
5671 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005672 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07005673 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
5674 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005675
5676 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005677 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00005678 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005679 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00005680
5681 while (ri->fragmented) {
5682 ri->fragmented = false;
5683 sw_idx = NEXT_TX(sw_idx);
5684 ri = &tnapi->tx_buffers[sw_idx];
5685 }
5686
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 sw_idx = NEXT_TX(sw_idx);
5688 }
5689
Tom Herbert298376d2011-11-28 16:33:30 +00005690 pkts_compl++;
5691 bytes_compl += skb->len;
5692
David S. Millerf47c11e2005-06-24 20:18:35 -07005693 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07005694
5695 if (unlikely(tx_bug)) {
5696 tg3_tx_recover(tp);
5697 return;
5698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699 }
5700
Tom Herbert5cb917b2012-03-05 19:53:50 +00005701 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00005702
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005703 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704
Michael Chan1b2a7202006-08-07 21:46:02 -07005705 /* Need to make the tx_cons update visible to tg3_start_xmit()
5706 * before checking for netif_queue_stopped(). Without the
5707 * memory barrier, there is a small possibility that tg3_start_xmit()
5708 * will miss it and cause the queue to be stopped forever.
5709 */
5710 smp_mb();
5711
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005712 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005713 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005714 __netif_tx_lock(txq, smp_processor_id());
5715 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005716 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005717 netif_tx_wake_queue(txq);
5718 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07005719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720}
5721
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005722static void tg3_frag_free(bool is_frag, void *data)
5723{
5724 if (is_frag)
5725 put_page(virt_to_head_page(data));
5726 else
5727 kfree(data);
5728}
5729
Eric Dumazet9205fd92011-11-18 06:47:01 +00005730static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005731{
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005732 unsigned int skb_size = SKB_DATA_ALIGN(map_sz + TG3_RX_OFFSET(tp)) +
5733 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
5734
Eric Dumazet9205fd92011-11-18 06:47:01 +00005735 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005736 return;
5737
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005738 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005739 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00005740 tg3_frag_free(skb_size <= PAGE_SIZE, ri->data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005741 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005742}
5743
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005744
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745/* Returns size of skb allocated or < 0 on error.
5746 *
5747 * We only need to fill in the address because the other members
5748 * of the RX descriptor are invariant, see tg3_init_rings.
5749 *
5750 * Note the purposeful assymetry of cpu vs. chip accesses. For
5751 * posting buffers we only dirty the first cache line of the RX
5752 * descriptor (containing the address). Whereas for the RX status
5753 * buffers the cpu only reads the last cacheline of the RX descriptor
5754 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
5755 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00005756static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005757 u32 opaque_key, u32 dest_idx_unmasked,
5758 unsigned int *frag_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759{
5760 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00005761 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005762 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005764 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766 switch (opaque_key) {
5767 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005768 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00005769 desc = &tpr->rx_std[dest_idx];
5770 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00005771 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772 break;
5773
5774 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005775 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00005776 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00005777 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00005778 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779 break;
5780
5781 default:
5782 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784
5785 /* Do not overwrite any of the map or rp information
5786 * until we are sure we can commit to a new buffer.
5787 *
5788 * Callers depend upon this behavior and assume that
5789 * we leave everything unchanged if we fail.
5790 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00005791 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
5792 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00005793 if (skb_size <= PAGE_SIZE) {
5794 data = netdev_alloc_frag(skb_size);
5795 *frag_size = skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005796 } else {
5797 data = kmalloc(skb_size, GFP_ATOMIC);
5798 *frag_size = 0;
5799 }
Eric Dumazet9205fd92011-11-18 06:47:01 +00005800 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801 return -ENOMEM;
5802
Eric Dumazet9205fd92011-11-18 06:47:01 +00005803 mapping = pci_map_single(tp->pdev,
5804 data + TG3_RX_OFFSET(tp),
5805 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806 PCI_DMA_FROMDEVICE);
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005807 if (unlikely(pci_dma_mapping_error(tp->pdev, mapping))) {
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00005808 tg3_frag_free(skb_size <= PAGE_SIZE, data);
Matt Carlsona21771d2009-11-02 14:25:31 +00005809 return -EIO;
5810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811
Eric Dumazet9205fd92011-11-18 06:47:01 +00005812 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005813 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 desc->addr_hi = ((u64)mapping >> 32);
5816 desc->addr_lo = ((u64)mapping & 0xffffffff);
5817
Eric Dumazet9205fd92011-11-18 06:47:01 +00005818 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819}
5820
5821/* We only need to move over in the address because the other
5822 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00005823 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824 */
Matt Carlsona3896162009-11-13 13:03:44 +00005825static void tg3_recycle_rx(struct tg3_napi *tnapi,
5826 struct tg3_rx_prodring_set *dpr,
5827 u32 opaque_key, int src_idx,
5828 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829{
Matt Carlson17375d22009-08-28 14:02:18 +00005830 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
5832 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005833 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005834 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835
5836 switch (opaque_key) {
5837 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005838 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005839 dest_desc = &dpr->rx_std[dest_idx];
5840 dest_map = &dpr->rx_std_buffers[dest_idx];
5841 src_desc = &spr->rx_std[src_idx];
5842 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843 break;
5844
5845 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005846 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005847 dest_desc = &dpr->rx_jmb[dest_idx].std;
5848 dest_map = &dpr->rx_jmb_buffers[dest_idx];
5849 src_desc = &spr->rx_jmb[src_idx].std;
5850 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851 break;
5852
5853 default:
5854 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856
Eric Dumazet9205fd92011-11-18 06:47:01 +00005857 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005858 dma_unmap_addr_set(dest_map, mapping,
5859 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860 dest_desc->addr_hi = src_desc->addr_hi;
5861 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00005862
5863 /* Ensure that the update to the skb happens after the physical
5864 * addresses have been transferred to the new BD location.
5865 */
5866 smp_wmb();
5867
Eric Dumazet9205fd92011-11-18 06:47:01 +00005868 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869}
5870
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871/* The RX ring scheme is composed of multiple rings which post fresh
5872 * buffers to the chip, and one special ring the chip uses to report
5873 * status back to the host.
5874 *
5875 * The special ring reports the status of received packets to the
5876 * host. The chip does not write into the original descriptor the
5877 * RX buffer was obtained from. The chip simply takes the original
5878 * descriptor as provided by the host, updates the status and length
5879 * field, then writes this into the next status ring entry.
5880 *
5881 * Each ring the host uses to post buffers to the chip is described
5882 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
5883 * it is first placed into the on-chip ram. When the packet's length
5884 * is known, it walks down the TG3_BDINFO entries to select the ring.
5885 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
5886 * which is within the range of the new packet's length is chosen.
5887 *
5888 * The "separate ring for rx status" scheme may sound queer, but it makes
5889 * sense from a cache coherency perspective. If only the host writes
5890 * to the buffer post rings, and only the chip writes to the rx status
5891 * rings, then cache lines never move beyond shared-modified state.
5892 * If both the host and chip were to write into the same ring, cache line
5893 * eviction could occur since both entities want it in an exclusive state.
5894 */
Matt Carlson17375d22009-08-28 14:02:18 +00005895static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896{
Matt Carlson17375d22009-08-28 14:02:18 +00005897 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07005898 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005899 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00005900 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07005901 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005903 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005905 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906 /*
5907 * We need to order the read of hw_idx and the read of
5908 * the opaque cookie.
5909 */
5910 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911 work_mask = 0;
5912 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005913 std_prod_idx = tpr->rx_std_prod_idx;
5914 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00005916 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00005917 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 unsigned int len;
5919 struct sk_buff *skb;
5920 dma_addr_t dma_addr;
5921 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005922 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923
5924 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
5925 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
5926 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005927 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005928 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005929 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00005930 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07005931 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005933 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005934 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005935 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00005936 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00005937 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939
5940 work_mask |= opaque_key;
5941
5942 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
5943 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
5944 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00005945 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946 desc_idx, *post_ptr);
5947 drop_it_no_recycle:
5948 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00005949 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950 goto next_pkt;
5951 }
5952
Eric Dumazet9205fd92011-11-18 06:47:01 +00005953 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08005954 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
5955 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956
Matt Carlsond2757fc2010-04-12 06:58:27 +00005957 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958 int skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005959 unsigned int frag_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960
Eric Dumazet9205fd92011-11-18 06:47:01 +00005961 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005962 *post_ptr, &frag_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963 if (skb_size < 0)
5964 goto drop_it;
5965
Matt Carlson287be122009-08-28 13:58:46 +00005966 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967 PCI_DMA_FROMDEVICE);
5968
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005969 skb = build_skb(data, frag_size);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005970 if (!skb) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005971 tg3_frag_free(frag_size != 0, data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005972 goto drop_it_no_recycle;
5973 }
5974 skb_reserve(skb, TG3_RX_OFFSET(tp));
5975 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00005976 * after the usage of the old DMA mapping.
5977 */
5978 smp_wmb();
5979
Eric Dumazet9205fd92011-11-18 06:47:01 +00005980 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00005981
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00005983 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984 desc_idx, *post_ptr);
5985
Eric Dumazet9205fd92011-11-18 06:47:01 +00005986 skb = netdev_alloc_skb(tp->dev,
5987 len + TG3_RAW_IP_ALIGN);
5988 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 goto drop_it_no_recycle;
5990
Eric Dumazet9205fd92011-11-18 06:47:01 +00005991 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005993 memcpy(skb->data,
5994 data + TG3_RX_OFFSET(tp),
5995 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997 }
5998
Eric Dumazet9205fd92011-11-18 06:47:01 +00005999 skb_put(skb, len);
Michał Mirosławdc668912011-04-07 03:35:07 +00006000 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
6002 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
6003 >> RXD_TCPCSUM_SHIFT) == 0xffff))
6004 skb->ip_summed = CHECKSUM_UNNECESSARY;
6005 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006006 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007
6008 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006009
6010 if (len > (tp->dev->mtu + ETH_HLEN) &&
6011 skb->protocol != htons(ETH_P_8021Q)) {
6012 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00006013 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006014 }
6015
Matt Carlson9dc7a112010-04-12 06:58:28 +00006016 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00006017 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
6018 __vlan_hwaccel_put_tag(skb,
6019 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00006020
Matt Carlsonbf933c82011-01-25 15:58:49 +00006021 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023 received++;
6024 budget--;
6025
6026next_pkt:
6027 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07006028
6029 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006030 tpr->rx_std_prod_idx = std_prod_idx &
6031 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00006032 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6033 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07006034 work_mask &= ~RXD_OPAQUE_RING_STD;
6035 rx_std_posted = 0;
6036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07006038 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00006039 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07006040
6041 /* Refresh hw_idx to see if there is new work */
6042 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006043 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07006044 rmb();
6045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046 }
6047
6048 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00006049 tnapi->rx_rcb_ptr = sw_idx;
6050 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051
6052 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00006053 if (!tg3_flag(tp, ENABLE_RSS)) {
Michael Chan6541b802012-03-04 14:48:14 +00006054 /* Sync BD data before updating mailbox */
6055 wmb();
6056
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006057 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006058 tpr->rx_std_prod_idx = std_prod_idx &
6059 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006060 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6061 tpr->rx_std_prod_idx);
6062 }
6063 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006064 tpr->rx_jmb_prod_idx = jmb_prod_idx &
6065 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006066 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6067 tpr->rx_jmb_prod_idx);
6068 }
6069 mmiowb();
6070 } else if (work_mask) {
6071 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
6072 * updated before the producer indices can be updated.
6073 */
6074 smp_wmb();
6075
Matt Carlson2c49a442010-09-30 10:34:35 +00006076 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
6077 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006078
Michael Chan7ae52892012-03-21 15:38:33 +00006079 if (tnapi != &tp->napi[1]) {
6080 tp->rx_refill = true;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006081 napi_schedule(&tp->napi[1].napi);
Michael Chan7ae52892012-03-21 15:38:33 +00006082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084
6085 return received;
6086}
6087
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006088static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00006091 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006092 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
6093
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094 if (sblk->status & SD_STATUS_LINK_CHG) {
6095 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006096 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07006097 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006098 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07006099 tw32_f(MAC_STATUS,
6100 (MAC_STATUS_SYNC_CHANGED |
6101 MAC_STATUS_CFG_CHANGED |
6102 MAC_STATUS_MI_COMPLETION |
6103 MAC_STATUS_LNKSTATE_CHANGED));
6104 udelay(40);
6105 } else
6106 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07006107 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108 }
6109 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006110}
6111
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006112static int tg3_rx_prodring_xfer(struct tg3 *tp,
6113 struct tg3_rx_prodring_set *dpr,
6114 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006115{
6116 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006117 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006118
6119 while (1) {
6120 src_prod_idx = spr->rx_std_prod_idx;
6121
6122 /* Make sure updates to the rx_std_buffers[] entries and the
6123 * standard producer index are seen in the correct order.
6124 */
6125 smp_rmb();
6126
6127 if (spr->rx_std_cons_idx == src_prod_idx)
6128 break;
6129
6130 if (spr->rx_std_cons_idx < src_prod_idx)
6131 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
6132 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006133 cpycnt = tp->rx_std_ring_mask + 1 -
6134 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006135
Matt Carlson2c49a442010-09-30 10:34:35 +00006136 cpycnt = min(cpycnt,
6137 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006138
6139 si = spr->rx_std_cons_idx;
6140 di = dpr->rx_std_prod_idx;
6141
Matt Carlsone92967b2010-02-12 14:47:06 +00006142 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006143 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006144 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006145 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006146 break;
6147 }
6148 }
6149
6150 if (!cpycnt)
6151 break;
6152
6153 /* Ensure that updates to the rx_std_buffers ring and the
6154 * shadowed hardware producer ring from tg3_recycle_skb() are
6155 * ordered correctly WRT the skb check above.
6156 */
6157 smp_rmb();
6158
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006159 memcpy(&dpr->rx_std_buffers[di],
6160 &spr->rx_std_buffers[si],
6161 cpycnt * sizeof(struct ring_info));
6162
6163 for (i = 0; i < cpycnt; i++, di++, si++) {
6164 struct tg3_rx_buffer_desc *sbd, *dbd;
6165 sbd = &spr->rx_std[si];
6166 dbd = &dpr->rx_std[di];
6167 dbd->addr_hi = sbd->addr_hi;
6168 dbd->addr_lo = sbd->addr_lo;
6169 }
6170
Matt Carlson2c49a442010-09-30 10:34:35 +00006171 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
6172 tp->rx_std_ring_mask;
6173 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
6174 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006175 }
6176
6177 while (1) {
6178 src_prod_idx = spr->rx_jmb_prod_idx;
6179
6180 /* Make sure updates to the rx_jmb_buffers[] entries and
6181 * the jumbo producer index are seen in the correct order.
6182 */
6183 smp_rmb();
6184
6185 if (spr->rx_jmb_cons_idx == src_prod_idx)
6186 break;
6187
6188 if (spr->rx_jmb_cons_idx < src_prod_idx)
6189 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
6190 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006191 cpycnt = tp->rx_jmb_ring_mask + 1 -
6192 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006193
6194 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00006195 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006196
6197 si = spr->rx_jmb_cons_idx;
6198 di = dpr->rx_jmb_prod_idx;
6199
Matt Carlsone92967b2010-02-12 14:47:06 +00006200 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006201 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006202 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006203 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006204 break;
6205 }
6206 }
6207
6208 if (!cpycnt)
6209 break;
6210
6211 /* Ensure that updates to the rx_jmb_buffers ring and the
6212 * shadowed hardware producer ring from tg3_recycle_skb() are
6213 * ordered correctly WRT the skb check above.
6214 */
6215 smp_rmb();
6216
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006217 memcpy(&dpr->rx_jmb_buffers[di],
6218 &spr->rx_jmb_buffers[si],
6219 cpycnt * sizeof(struct ring_info));
6220
6221 for (i = 0; i < cpycnt; i++, di++, si++) {
6222 struct tg3_rx_buffer_desc *sbd, *dbd;
6223 sbd = &spr->rx_jmb[si].std;
6224 dbd = &dpr->rx_jmb[di].std;
6225 dbd->addr_hi = sbd->addr_hi;
6226 dbd->addr_lo = sbd->addr_lo;
6227 }
6228
Matt Carlson2c49a442010-09-30 10:34:35 +00006229 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
6230 tp->rx_jmb_ring_mask;
6231 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
6232 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006233 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006234
6235 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006236}
6237
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006238static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
6239{
6240 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241
6242 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006243 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00006244 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00006245 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07006246 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247 }
6248
Matt Carlsonf891ea12012-04-24 13:37:01 +00006249 if (!tnapi->rx_rcb_prod_idx)
6250 return work_done;
6251
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252 /* run RX thread, within the bounds set by NAPI.
6253 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006254 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006256 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00006257 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258
Joe Perches63c3a662011-04-26 08:12:10 +00006259 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006260 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006261 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006262 u32 std_prod_idx = dpr->rx_std_prod_idx;
6263 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006264
Michael Chan7ae52892012-03-21 15:38:33 +00006265 tp->rx_refill = false;
Michael Chan91024262012-09-28 07:12:38 +00006266 for (i = 1; i <= tp->rxq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006267 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00006268 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006269
6270 wmb();
6271
Matt Carlsone4af1af2010-02-12 14:47:05 +00006272 if (std_prod_idx != dpr->rx_std_prod_idx)
6273 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6274 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006275
Matt Carlsone4af1af2010-02-12 14:47:05 +00006276 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
6277 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6278 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006279
6280 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006281
6282 if (err)
6283 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006284 }
6285
David S. Miller6f535762007-10-11 18:08:29 -07006286 return work_done;
6287}
David S. Millerf7383c22005-05-18 22:50:53 -07006288
Matt Carlsondb219972011-11-04 09:15:03 +00006289static inline void tg3_reset_task_schedule(struct tg3 *tp)
6290{
6291 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
6292 schedule_work(&tp->reset_task);
6293}
6294
6295static inline void tg3_reset_task_cancel(struct tg3 *tp)
6296{
6297 cancel_work_sync(&tp->reset_task);
6298 tg3_flag_clear(tp, RESET_TASK_PENDING);
Matt Carlsonc7101352012-02-22 12:35:20 +00006299 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsondb219972011-11-04 09:15:03 +00006300}
6301
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006302static int tg3_poll_msix(struct napi_struct *napi, int budget)
6303{
6304 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6305 struct tg3 *tp = tnapi->tp;
6306 int work_done = 0;
6307 struct tg3_hw_status *sblk = tnapi->hw_status;
6308
6309 while (1) {
6310 work_done = tg3_poll_work(tnapi, work_done, budget);
6311
Joe Perches63c3a662011-04-26 08:12:10 +00006312 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006313 goto tx_recovery;
6314
6315 if (unlikely(work_done >= budget))
6316 break;
6317
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006318 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006319 * to tell the hw how much work has been processed,
6320 * so we must read it before checking for more work.
6321 */
6322 tnapi->last_tag = sblk->status_tag;
6323 tnapi->last_irq_tag = tnapi->last_tag;
6324 rmb();
6325
6326 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00006327 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
6328 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Michael Chan7ae52892012-03-21 15:38:33 +00006329
6330 /* This test here is not race free, but will reduce
6331 * the number of interrupts by looping again.
6332 */
6333 if (tnapi == &tp->napi[1] && tp->rx_refill)
6334 continue;
6335
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006336 napi_complete(napi);
6337 /* Reenable interrupts. */
6338 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Michael Chan7ae52892012-03-21 15:38:33 +00006339
6340 /* This test here is synchronized by napi_schedule()
6341 * and napi_complete() to close the race condition.
6342 */
6343 if (unlikely(tnapi == &tp->napi[1] && tp->rx_refill)) {
6344 tw32(HOSTCC_MODE, tp->coalesce_mode |
6345 HOSTCC_MODE_ENABLE |
6346 tnapi->coal_now);
6347 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006348 mmiowb();
6349 break;
6350 }
6351 }
6352
6353 return work_done;
6354
6355tx_recovery:
6356 /* work_done is guaranteed to be less than budget. */
6357 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006358 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006359 return work_done;
6360}
6361
Matt Carlsone64de4e2011-04-13 11:05:05 +00006362static void tg3_process_error(struct tg3 *tp)
6363{
6364 u32 val;
6365 bool real_error = false;
6366
Joe Perches63c3a662011-04-26 08:12:10 +00006367 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00006368 return;
6369
6370 /* Check Flow Attention register */
6371 val = tr32(HOSTCC_FLOW_ATTN);
6372 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
6373 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
6374 real_error = true;
6375 }
6376
6377 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
6378 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
6379 real_error = true;
6380 }
6381
6382 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
6383 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
6384 real_error = true;
6385 }
6386
6387 if (!real_error)
6388 return;
6389
6390 tg3_dump_state(tp);
6391
Joe Perches63c3a662011-04-26 08:12:10 +00006392 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00006393 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00006394}
6395
David S. Miller6f535762007-10-11 18:08:29 -07006396static int tg3_poll(struct napi_struct *napi, int budget)
6397{
Matt Carlson8ef04422009-08-28 14:01:37 +00006398 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6399 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07006400 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00006401 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07006402
6403 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00006404 if (sblk->status & SD_STATUS_ERROR)
6405 tg3_process_error(tp);
6406
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006407 tg3_poll_link(tp);
6408
Matt Carlson17375d22009-08-28 14:02:18 +00006409 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07006410
Joe Perches63c3a662011-04-26 08:12:10 +00006411 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07006412 goto tx_recovery;
6413
6414 if (unlikely(work_done >= budget))
6415 break;
6416
Joe Perches63c3a662011-04-26 08:12:10 +00006417 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00006418 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07006419 * to tell the hw how much work has been processed,
6420 * so we must read it before checking for more work.
6421 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006422 tnapi->last_tag = sblk->status_tag;
6423 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07006424 rmb();
6425 } else
6426 sblk->status &= ~SD_STATUS_UPDATED;
6427
Matt Carlson17375d22009-08-28 14:02:18 +00006428 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006429 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00006430 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07006431 break;
6432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433 }
6434
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006435 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07006436
6437tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07006438 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08006439 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006440 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07006441 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442}
6443
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006444static void tg3_napi_disable(struct tg3 *tp)
6445{
6446 int i;
6447
6448 for (i = tp->irq_cnt - 1; i >= 0; i--)
6449 napi_disable(&tp->napi[i].napi);
6450}
6451
6452static void tg3_napi_enable(struct tg3 *tp)
6453{
6454 int i;
6455
6456 for (i = 0; i < tp->irq_cnt; i++)
6457 napi_enable(&tp->napi[i].napi);
6458}
6459
6460static void tg3_napi_init(struct tg3 *tp)
6461{
6462 int i;
6463
6464 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
6465 for (i = 1; i < tp->irq_cnt; i++)
6466 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
6467}
6468
6469static void tg3_napi_fini(struct tg3 *tp)
6470{
6471 int i;
6472
6473 for (i = 0; i < tp->irq_cnt; i++)
6474 netif_napi_del(&tp->napi[i].napi);
6475}
6476
6477static inline void tg3_netif_stop(struct tg3 *tp)
6478{
6479 tp->dev->trans_start = jiffies; /* prevent tx timeout */
6480 tg3_napi_disable(tp);
6481 netif_tx_disable(tp->dev);
6482}
6483
6484static inline void tg3_netif_start(struct tg3 *tp)
6485{
6486 /* NOTE: unconditional netif_tx_wake_all_queues is only
6487 * appropriate so long as all callers are assured to
6488 * have free tx slots (such as after tg3_init_hw)
6489 */
6490 netif_tx_wake_all_queues(tp->dev);
6491
6492 tg3_napi_enable(tp);
6493 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
6494 tg3_enable_ints(tp);
6495}
6496
David S. Millerf47c11e2005-06-24 20:18:35 -07006497static void tg3_irq_quiesce(struct tg3 *tp)
6498{
Matt Carlson4f125f42009-09-01 12:55:02 +00006499 int i;
6500
David S. Millerf47c11e2005-06-24 20:18:35 -07006501 BUG_ON(tp->irq_sync);
6502
6503 tp->irq_sync = 1;
6504 smp_mb();
6505
Matt Carlson4f125f42009-09-01 12:55:02 +00006506 for (i = 0; i < tp->irq_cnt; i++)
6507 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07006508}
6509
David S. Millerf47c11e2005-06-24 20:18:35 -07006510/* Fully shutdown all tg3 driver activity elsewhere in the system.
6511 * If irq_sync is non-zero, then the IRQ handler must be synchronized
6512 * with as well. Most of the time, this is not necessary except when
6513 * shutting down the device.
6514 */
6515static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
6516{
Michael Chan46966542007-07-11 19:47:19 -07006517 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07006518 if (irq_sync)
6519 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006520}
6521
6522static inline void tg3_full_unlock(struct tg3 *tp)
6523{
David S. Millerf47c11e2005-06-24 20:18:35 -07006524 spin_unlock_bh(&tp->lock);
6525}
6526
Michael Chanfcfa0a32006-03-20 22:28:41 -08006527/* One-shot MSI handler - Chip automatically disables interrupt
6528 * after sending MSI so driver doesn't have to do it.
6529 */
David Howells7d12e782006-10-05 14:55:46 +01006530static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08006531{
Matt Carlson09943a12009-08-28 14:01:57 +00006532 struct tg3_napi *tnapi = dev_id;
6533 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08006534
Matt Carlson898a56f2009-08-28 14:02:40 +00006535 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006536 if (tnapi->rx_rcb)
6537 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006538
6539 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006540 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006541
6542 return IRQ_HANDLED;
6543}
6544
Michael Chan88b06bc22005-04-21 17:13:25 -07006545/* MSI ISR - No need to check for interrupt sharing and no need to
6546 * flush status block and interrupt mailbox. PCI ordering rules
6547 * guarantee that MSI will arrive after the status block.
6548 */
David Howells7d12e782006-10-05 14:55:46 +01006549static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07006550{
Matt Carlson09943a12009-08-28 14:01:57 +00006551 struct tg3_napi *tnapi = dev_id;
6552 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07006553
Matt Carlson898a56f2009-08-28 14:02:40 +00006554 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006555 if (tnapi->rx_rcb)
6556 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07006557 /*
David S. Millerfac9b832005-05-18 22:46:34 -07006558 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07006559 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07006560 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07006561 * NIC to stop sending us irqs, engaging "in-intr-handler"
6562 * event coalescing.
6563 */
Matt Carlson5b39de92011-08-31 11:44:50 +00006564 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07006565 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006566 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07006567
Michael Chan88b06bc22005-04-21 17:13:25 -07006568 return IRQ_RETVAL(1);
6569}
6570
David Howells7d12e782006-10-05 14:55:46 +01006571static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572{
Matt Carlson09943a12009-08-28 14:01:57 +00006573 struct tg3_napi *tnapi = dev_id;
6574 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006575 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576 unsigned int handled = 1;
6577
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578 /* In INTx mode, it is possible for the interrupt to arrive at
6579 * the CPU before the status block posted prior to the interrupt.
6580 * Reading the PCI State register will confirm whether the
6581 * interrupt is ours and will flush the status block.
6582 */
Michael Chand18edcb2007-03-24 20:57:11 -07006583 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00006584 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006585 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6586 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006587 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07006588 }
Michael Chand18edcb2007-03-24 20:57:11 -07006589 }
6590
6591 /*
6592 * Writing any value to intr-mbox-0 clears PCI INTA# and
6593 * chip-internal interrupt pending events.
6594 * Writing non-zero to intr-mbox-0 additional tells the
6595 * NIC to stop sending us irqs, engaging "in-intr-handler"
6596 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006597 *
6598 * Flush the mailbox to de-assert the IRQ immediately to prevent
6599 * spurious interrupts. The flush impacts performance but
6600 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006601 */
Michael Chanc04cb342007-05-07 00:26:15 -07006602 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07006603 if (tg3_irq_sync(tp))
6604 goto out;
6605 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00006606 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00006607 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00006608 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07006609 } else {
6610 /* No work, shared interrupt perhaps? re-enable
6611 * interrupts, and flush that PCI write
6612 */
6613 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
6614 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07006615 }
David S. Millerf47c11e2005-06-24 20:18:35 -07006616out:
David S. Millerfac9b832005-05-18 22:46:34 -07006617 return IRQ_RETVAL(handled);
6618}
6619
David Howells7d12e782006-10-05 14:55:46 +01006620static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07006621{
Matt Carlson09943a12009-08-28 14:01:57 +00006622 struct tg3_napi *tnapi = dev_id;
6623 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006624 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07006625 unsigned int handled = 1;
6626
David S. Millerfac9b832005-05-18 22:46:34 -07006627 /* In INTx mode, it is possible for the interrupt to arrive at
6628 * the CPU before the status block posted prior to the interrupt.
6629 * Reading the PCI State register will confirm whether the
6630 * interrupt is ours and will flush the status block.
6631 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006632 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00006633 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006634 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6635 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006636 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637 }
Michael Chand18edcb2007-03-24 20:57:11 -07006638 }
6639
6640 /*
6641 * writing any value to intr-mbox-0 clears PCI INTA# and
6642 * chip-internal interrupt pending events.
6643 * writing non-zero to intr-mbox-0 additional tells the
6644 * NIC to stop sending us irqs, engaging "in-intr-handler"
6645 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006646 *
6647 * Flush the mailbox to de-assert the IRQ immediately to prevent
6648 * spurious interrupts. The flush impacts performance but
6649 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006650 */
Michael Chanc04cb342007-05-07 00:26:15 -07006651 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00006652
6653 /*
6654 * In a shared interrupt configuration, sometimes other devices'
6655 * interrupts will scream. We record the current status tag here
6656 * so that the above check can report that the screaming interrupts
6657 * are unhandled. Eventually they will be silenced.
6658 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006659 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00006660
Michael Chand18edcb2007-03-24 20:57:11 -07006661 if (tg3_irq_sync(tp))
6662 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00006663
Matt Carlson72334482009-08-28 14:03:01 +00006664 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00006665
Matt Carlson09943a12009-08-28 14:01:57 +00006666 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00006667
David S. Millerf47c11e2005-06-24 20:18:35 -07006668out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669 return IRQ_RETVAL(handled);
6670}
6671
Michael Chan79381092005-04-21 17:13:59 -07006672/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01006673static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07006674{
Matt Carlson09943a12009-08-28 14:01:57 +00006675 struct tg3_napi *tnapi = dev_id;
6676 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006677 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07006678
Michael Chanf9804dd2005-09-27 12:13:10 -07006679 if ((sblk->status & SD_STATUS_UPDATED) ||
6680 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07006681 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07006682 return IRQ_RETVAL(1);
6683 }
6684 return IRQ_RETVAL(0);
6685}
6686
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687#ifdef CONFIG_NET_POLL_CONTROLLER
6688static void tg3_poll_controller(struct net_device *dev)
6689{
Matt Carlson4f125f42009-09-01 12:55:02 +00006690 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07006691 struct tg3 *tp = netdev_priv(dev);
6692
Matt Carlson4f125f42009-09-01 12:55:02 +00006693 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00006694 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695}
6696#endif
6697
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698static void tg3_tx_timeout(struct net_device *dev)
6699{
6700 struct tg3 *tp = netdev_priv(dev);
6701
Michael Chanb0408752007-02-13 12:18:30 -08006702 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00006703 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00006704 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08006705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706
Matt Carlsondb219972011-11-04 09:15:03 +00006707 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006708}
6709
Michael Chanc58ec932005-09-17 00:46:27 -07006710/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
6711static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
6712{
6713 u32 base = (u32) mapping & 0xffffffff;
6714
Eric Dumazet807540b2010-09-23 05:40:09 +00006715 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07006716}
6717
Michael Chan72f2afb2006-03-06 19:28:35 -08006718/* Test for DMA addresses > 40-bit */
6719static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
6720 int len)
6721{
6722#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00006723 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00006724 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08006725 return 0;
6726#else
6727 return 0;
6728#endif
6729}
6730
Matt Carlsond1a3b732011-07-27 14:20:51 +00006731static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006732 dma_addr_t mapping, u32 len, u32 flags,
6733 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00006734{
Matt Carlson92cd3a12011-07-27 14:20:47 +00006735 txbd->addr_hi = ((u64) mapping >> 32);
6736 txbd->addr_lo = ((u64) mapping & 0xffffffff);
6737 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
6738 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00006739}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006740
Matt Carlson84b67b22011-07-27 14:20:52 +00006741static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006742 dma_addr_t map, u32 len, u32 flags,
6743 u32 mss, u32 vlan)
6744{
6745 struct tg3 *tp = tnapi->tp;
6746 bool hwbug = false;
6747
6748 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00006749 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006750
6751 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00006752 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006753
6754 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00006755 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006756
Matt Carlsona4cb4282011-12-14 11:09:58 +00006757 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006758 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00006759 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00006760 while (len > tp->dma_limit && *budget) {
6761 u32 frag_len = tp->dma_limit;
6762 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00006763
Matt Carlsonb9e45482011-11-04 09:14:59 +00006764 /* Avoid the 8byte DMA problem */
6765 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00006766 len += tp->dma_limit / 2;
6767 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00006768 }
6769
Matt Carlsonb9e45482011-11-04 09:14:59 +00006770 tnapi->tx_buffers[*entry].fragmented = true;
6771
6772 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6773 frag_len, tmp_flag, mss, vlan);
6774 *budget -= 1;
6775 prvidx = *entry;
6776 *entry = NEXT_TX(*entry);
6777
Matt Carlsone31aa982011-07-27 14:20:53 +00006778 map += frag_len;
6779 }
6780
6781 if (len) {
6782 if (*budget) {
6783 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6784 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00006785 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00006786 *entry = NEXT_TX(*entry);
6787 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00006788 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00006789 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00006790 }
6791 }
6792 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00006793 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6794 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00006795 *entry = NEXT_TX(*entry);
6796 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00006797
6798 return hwbug;
6799}
6800
Matt Carlson0d681b22011-07-27 14:20:49 +00006801static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00006802{
6803 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00006804 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00006805 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006806
Matt Carlson0d681b22011-07-27 14:20:49 +00006807 skb = txb->skb;
6808 txb->skb = NULL;
6809
Matt Carlson432aa7e2011-05-19 12:12:45 +00006810 pci_unmap_single(tnapi->tp->pdev,
6811 dma_unmap_addr(txb, mapping),
6812 skb_headlen(skb),
6813 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006814
6815 while (txb->fragmented) {
6816 txb->fragmented = false;
6817 entry = NEXT_TX(entry);
6818 txb = &tnapi->tx_buffers[entry];
6819 }
6820
Matt Carlsonba1142e2011-11-04 09:15:00 +00006821 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00006822 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006823
6824 entry = NEXT_TX(entry);
6825 txb = &tnapi->tx_buffers[entry];
6826
6827 pci_unmap_page(tnapi->tp->pdev,
6828 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006829 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006830
6831 while (txb->fragmented) {
6832 txb->fragmented = false;
6833 entry = NEXT_TX(entry);
6834 txb = &tnapi->tx_buffers[entry];
6835 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00006836 }
6837}
6838
Michael Chan72f2afb2006-03-06 19:28:35 -08006839/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006840static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04006841 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00006842 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006843 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844{
Matt Carlson24f4efd2009-11-13 13:03:35 +00006845 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04006846 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07006847 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006848 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849
Matt Carlson41588ba2008-04-19 18:12:33 -07006850 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
6851 new_skb = skb_copy(skb, GFP_ATOMIC);
6852 else {
6853 int more_headroom = 4 - ((unsigned long)skb->data & 3);
6854
6855 new_skb = skb_copy_expand(skb,
6856 skb_headroom(skb) + more_headroom,
6857 skb_tailroom(skb), GFP_ATOMIC);
6858 }
6859
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07006861 ret = -1;
6862 } else {
6863 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00006864 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
6865 PCI_DMA_TODEVICE);
6866 /* Make sure the mapping succeeded */
6867 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006868 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07006869 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07006870 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006871 u32 save_entry = *entry;
6872
Matt Carlson92cd3a12011-07-27 14:20:47 +00006873 base_flags |= TXD_FLAG_END;
6874
Matt Carlson84b67b22011-07-27 14:20:52 +00006875 tnapi->tx_buffers[*entry].skb = new_skb;
6876 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00006877 mapping, new_addr);
6878
Matt Carlson84b67b22011-07-27 14:20:52 +00006879 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006880 new_skb->len, base_flags,
6881 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00006882 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00006883 dev_kfree_skb(new_skb);
6884 ret = -1;
6885 }
Michael Chanc58ec932005-09-17 00:46:27 -07006886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006887 }
6888
Linus Torvalds1da177e2005-04-16 15:20:36 -07006889 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04006890 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07006891 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892}
6893
Matt Carlson2ffcc982011-05-19 12:12:44 +00006894static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07006895
6896/* Use GSO to workaround a rare TSO bug that may be triggered when the
6897 * TSO header is greater than 80 bytes.
6898 */
6899static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
6900{
6901 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006902 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07006903
6904 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006905 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07006906 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006907
6908 /* netif_tx_stop_queue() must be done before checking
6909 * checking tx index in tg3_tx_avail() below, because in
6910 * tg3_tx(), we update tx index before checking for
6911 * netif_tx_queue_stopped().
6912 */
6913 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006914 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08006915 return NETDEV_TX_BUSY;
6916
6917 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006918 }
6919
6920 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07006921 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07006922 goto tg3_tso_bug_end;
6923
6924 do {
6925 nskb = segs;
6926 segs = segs->next;
6927 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00006928 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006929 } while (segs);
6930
6931tg3_tso_bug_end:
6932 dev_kfree_skb(skb);
6933
6934 return NETDEV_TX_OK;
6935}
Michael Chan52c0fd82006-06-29 20:15:54 -07006936
Michael Chan5a6f3072006-03-20 22:28:05 -08006937/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00006938 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08006939 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00006940static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08006941{
6942 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00006943 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00006944 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006945 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07006946 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006947 struct tg3_napi *tnapi;
6948 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006949 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006950
Matt Carlson24f4efd2009-11-13 13:03:35 +00006951 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
6952 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00006953 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006954 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955
Matt Carlson84b67b22011-07-27 14:20:52 +00006956 budget = tg3_tx_avail(tnapi);
6957
Michael Chan00b70502006-06-17 21:58:45 -07006958 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006959 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07006960 * interrupt. Furthermore, IRQ processing runs lockless so we have
6961 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006963 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006964 if (!netif_tx_queue_stopped(txq)) {
6965 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006966
6967 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00006968 netdev_err(dev,
6969 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971 return NETDEV_TX_BUSY;
6972 }
6973
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006974 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07006976 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006977 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006978
Matt Carlsonbe98da62010-07-11 09:31:46 +00006979 mss = skb_shinfo(skb)->gso_size;
6980 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006981 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00006982 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983
6984 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00006985 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6986 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006987
Matt Carlson34195c32010-07-11 09:31:42 +00006988 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07006989 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006990
Eric Dumazeta5a11952012-01-23 01:22:09 +00006991 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00006992
Eric Dumazeta5a11952012-01-23 01:22:09 +00006993 if (!skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00006994 iph->check = 0;
6995 iph->tot_len = htons(mss + hdr_len);
6996 }
6997
Michael Chan52c0fd82006-06-29 20:15:54 -07006998 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006999 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00007000 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07007001
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
7003 TXD_FLAG_CPU_POST_DMA);
7004
Joe Perches63c3a662011-04-26 08:12:10 +00007005 if (tg3_flag(tp, HW_TSO_1) ||
7006 tg3_flag(tp, HW_TSO_2) ||
7007 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007008 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007010 } else
7011 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
7012 iph->daddr, 0,
7013 IPPROTO_TCP,
7014 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015
Joe Perches63c3a662011-04-26 08:12:10 +00007016 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00007017 mss |= (hdr_len & 0xc) << 12;
7018 if (hdr_len & 0x10)
7019 base_flags |= 0x00000010;
7020 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00007021 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007022 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00007023 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007024 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007025 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007026 int tsflags;
7027
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007028 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029 mss |= (tsflags << 11);
7030 }
7031 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007032 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007033 int tsflags;
7034
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007035 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036 base_flags |= tsflags << 12;
7037 }
7038 }
7039 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00007040
Matt Carlson93a700a2011-08-31 11:44:54 +00007041 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
7042 !mss && skb->len > VLAN_ETH_FRAME_LEN)
7043 base_flags |= TXD_FLAG_JMB_PKT;
7044
Matt Carlson92cd3a12011-07-27 14:20:47 +00007045 if (vlan_tx_tag_present(skb)) {
7046 base_flags |= TXD_FLAG_VLAN;
7047 vlan = vlan_tx_tag_get(skb);
7048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049
Alexander Duyckf4188d82009-12-02 16:48:38 +00007050 len = skb_headlen(skb);
7051
7052 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00007053 if (pci_dma_mapping_error(tp->pdev, mapping))
7054 goto drop;
7055
David S. Miller90079ce2008-09-11 04:52:51 -07007056
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007057 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007058 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059
7060 would_hit_hwbug = 0;
7061
Joe Perches63c3a662011-04-26 08:12:10 +00007062 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07007063 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064
Matt Carlson84b67b22011-07-27 14:20:52 +00007065 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00007066 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00007067 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00007068 would_hit_hwbug = 1;
Matt Carlsonba1142e2011-11-04 09:15:00 +00007069 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00007070 u32 tmp_mss = mss;
7071
7072 if (!tg3_flag(tp, HW_TSO_1) &&
7073 !tg3_flag(tp, HW_TSO_2) &&
7074 !tg3_flag(tp, HW_TSO_3))
7075 tmp_mss = 0;
7076
Matt Carlsonc5665a52012-02-13 10:20:12 +00007077 /* Now loop through additional data
7078 * fragments, and queue them.
7079 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080 last = skb_shinfo(skb)->nr_frags - 1;
7081 for (i = 0; i <= last; i++) {
7082 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
7083
Eric Dumazet9e903e02011-10-18 21:00:24 +00007084 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00007085 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007086 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007088 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007089 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00007090 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007091 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00007092 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007093
Matt Carlsonb9e45482011-11-04 09:14:59 +00007094 if (!budget ||
7095 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00007096 len, base_flags |
7097 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00007098 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007099 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007100 break;
7101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102 }
7103 }
7104
7105 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00007106 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107
7108 /* If the workaround fails due to memory/mapping
7109 * failure, silently drop this packet.
7110 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007111 entry = tnapi->tx_prod;
7112 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04007113 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00007114 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00007115 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116 }
7117
Richard Cochrand515b452011-06-19 03:31:41 +00007118 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00007119 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00007120
Michael Chan6541b802012-03-04 14:48:14 +00007121 /* Sync BD data before updating mailbox */
7122 wmb();
7123
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007125 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007126
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007127 tnapi->tx_prod = entry;
7128 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007129 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007130
7131 /* netif_tx_stop_queue() must be done before checking
7132 * checking tx index in tg3_tx_avail() below, because in
7133 * tg3_tx(), we update tx index before checking for
7134 * netif_tx_queue_stopped().
7135 */
7136 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007137 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007138 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07007139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007140
Eric Dumazetcdd0db02009-05-28 00:00:41 +00007141 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007143
7144dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00007145 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00007146 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00007147drop:
7148 dev_kfree_skb(skb);
7149drop_nofree:
7150 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007151 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007152}
7153
Matt Carlson6e01b202011-08-19 13:58:20 +00007154static void tg3_mac_loopback(struct tg3 *tp, bool enable)
7155{
7156 if (enable) {
7157 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
7158 MAC_MODE_PORT_MODE_MASK);
7159
7160 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
7161
7162 if (!tg3_flag(tp, 5705_PLUS))
7163 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
7164
7165 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
7166 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
7167 else
7168 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7169 } else {
7170 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
7171
7172 if (tg3_flag(tp, 5705_PLUS) ||
7173 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
7174 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
7175 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
7176 }
7177
7178 tw32(MAC_MODE, tp->mac_mode);
7179 udelay(40);
7180}
7181
Matt Carlson941ec902011-08-19 13:58:23 +00007182static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007183{
Matt Carlson941ec902011-08-19 13:58:23 +00007184 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007185
7186 tg3_phy_toggle_apd(tp, false);
7187 tg3_phy_toggle_automdix(tp, 0);
7188
Matt Carlson941ec902011-08-19 13:58:23 +00007189 if (extlpbk && tg3_phy_set_extloopbk(tp))
7190 return -EIO;
7191
7192 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007193 switch (speed) {
7194 case SPEED_10:
7195 break;
7196 case SPEED_100:
7197 bmcr |= BMCR_SPEED100;
7198 break;
7199 case SPEED_1000:
7200 default:
7201 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
7202 speed = SPEED_100;
7203 bmcr |= BMCR_SPEED100;
7204 } else {
7205 speed = SPEED_1000;
7206 bmcr |= BMCR_SPEED1000;
7207 }
7208 }
7209
Matt Carlson941ec902011-08-19 13:58:23 +00007210 if (extlpbk) {
7211 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
7212 tg3_readphy(tp, MII_CTRL1000, &val);
7213 val |= CTL1000_AS_MASTER |
7214 CTL1000_ENABLE_MASTER;
7215 tg3_writephy(tp, MII_CTRL1000, val);
7216 } else {
7217 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
7218 MII_TG3_FET_PTEST_TRIM_2;
7219 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
7220 }
7221 } else
7222 bmcr |= BMCR_LOOPBACK;
7223
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007224 tg3_writephy(tp, MII_BMCR, bmcr);
7225
7226 /* The write needs to be flushed for the FETs */
7227 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
7228 tg3_readphy(tp, MII_BMCR, &bmcr);
7229
7230 udelay(40);
7231
7232 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
7233 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00007234 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007235 MII_TG3_FET_PTEST_FRC_TX_LINK |
7236 MII_TG3_FET_PTEST_FRC_TX_LOCK);
7237
7238 /* The write needs to be flushed for the AC131 */
7239 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
7240 }
7241
7242 /* Reset to prevent losing 1st rx packet intermittently */
7243 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
7244 tg3_flag(tp, 5780_CLASS)) {
7245 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7246 udelay(10);
7247 tw32_f(MAC_RX_MODE, tp->rx_mode);
7248 }
7249
7250 mac_mode = tp->mac_mode &
7251 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
7252 if (speed == SPEED_1000)
7253 mac_mode |= MAC_MODE_PORT_MODE_GMII;
7254 else
7255 mac_mode |= MAC_MODE_PORT_MODE_MII;
7256
7257 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
7258 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
7259
7260 if (masked_phy_id == TG3_PHY_ID_BCM5401)
7261 mac_mode &= ~MAC_MODE_LINK_POLARITY;
7262 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
7263 mac_mode |= MAC_MODE_LINK_POLARITY;
7264
7265 tg3_writephy(tp, MII_TG3_EXT_CTRL,
7266 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
7267 }
7268
7269 tw32(MAC_MODE, mac_mode);
7270 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00007271
7272 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007273}
7274
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007275static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007276{
7277 struct tg3 *tp = netdev_priv(dev);
7278
7279 if (features & NETIF_F_LOOPBACK) {
7280 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
7281 return;
7282
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007283 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00007284 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007285 netif_carrier_on(tp->dev);
7286 spin_unlock_bh(&tp->lock);
7287 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
7288 } else {
7289 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
7290 return;
7291
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007292 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00007293 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007294 /* Force link status check */
7295 tg3_setup_phy(tp, 1);
7296 spin_unlock_bh(&tp->lock);
7297 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
7298 }
7299}
7300
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007301static netdev_features_t tg3_fix_features(struct net_device *dev,
7302 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00007303{
7304 struct tg3 *tp = netdev_priv(dev);
7305
Joe Perches63c3a662011-04-26 08:12:10 +00007306 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00007307 features &= ~NETIF_F_ALL_TSO;
7308
7309 return features;
7310}
7311
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007312static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007313{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007314 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007315
7316 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
7317 tg3_set_loopback(dev, features);
7318
7319 return 0;
7320}
7321
Matt Carlson21f581a2009-08-28 14:00:25 +00007322static void tg3_rx_prodring_free(struct tg3 *tp,
7323 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325 int i;
7326
Matt Carlson8fea32b2010-09-15 08:59:58 +00007327 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007328 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007329 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007330 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007331 tp->rx_pkt_map_sz);
7332
Joe Perches63c3a662011-04-26 08:12:10 +00007333 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007334 for (i = tpr->rx_jmb_cons_idx;
7335 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007336 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007337 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007338 TG3_RX_JMB_MAP_SZ);
7339 }
7340 }
7341
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007342 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344
Matt Carlson2c49a442010-09-30 10:34:35 +00007345 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007346 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007347 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348
Joe Perches63c3a662011-04-26 08:12:10 +00007349 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007350 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007351 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007352 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353 }
7354}
7355
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007356/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357 *
7358 * The chip has been shut down and the driver detached from
7359 * the networking, so no interrupts or new tx packets will
7360 * end up in the driver. tp->{tx,}lock are held and thus
7361 * we may not sleep.
7362 */
Matt Carlson21f581a2009-08-28 14:00:25 +00007363static int tg3_rx_prodring_alloc(struct tg3 *tp,
7364 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365{
Matt Carlson287be122009-08-28 13:58:46 +00007366 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007368 tpr->rx_std_cons_idx = 0;
7369 tpr->rx_std_prod_idx = 0;
7370 tpr->rx_jmb_cons_idx = 0;
7371 tpr->rx_jmb_prod_idx = 0;
7372
Matt Carlson8fea32b2010-09-15 08:59:58 +00007373 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007374 memset(&tpr->rx_std_buffers[0], 0,
7375 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00007376 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007377 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00007378 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007379 goto done;
7380 }
7381
Linus Torvalds1da177e2005-04-16 15:20:36 -07007382 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00007383 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384
Matt Carlson287be122009-08-28 13:58:46 +00007385 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00007386 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00007387 tp->dev->mtu > ETH_DATA_LEN)
7388 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
7389 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07007390
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391 /* Initialize invariants of the rings, we only set this
7392 * stuff once. This works because the card does not
7393 * write into the rx buffer posting rings.
7394 */
Matt Carlson2c49a442010-09-30 10:34:35 +00007395 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007396 struct tg3_rx_buffer_desc *rxd;
7397
Matt Carlson21f581a2009-08-28 14:00:25 +00007398 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00007399 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007400 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
7401 rxd->opaque = (RXD_OPAQUE_RING_STD |
7402 (i << RXD_OPAQUE_INDEX_SHIFT));
7403 }
7404
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007405 /* Now allocate fresh SKBs for each rx ring. */
7406 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00007407 unsigned int frag_size;
7408
7409 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i,
7410 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007411 netdev_warn(tp->dev,
7412 "Using a smaller RX standard ring. Only "
7413 "%d out of %d buffers were allocated "
7414 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007415 if (i == 0)
7416 goto initfail;
7417 tp->rx_pending = i;
7418 break;
7419 }
7420 }
7421
Joe Perches63c3a662011-04-26 08:12:10 +00007422 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007423 goto done;
7424
Matt Carlson2c49a442010-09-30 10:34:35 +00007425 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007426
Joe Perches63c3a662011-04-26 08:12:10 +00007427 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00007428 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429
Matt Carlson2c49a442010-09-30 10:34:35 +00007430 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00007431 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007432
Matt Carlson0d86df82010-02-17 15:17:00 +00007433 rxd = &tpr->rx_jmb[i].std;
7434 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
7435 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
7436 RXD_FLAG_JUMBO;
7437 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
7438 (i << RXD_OPAQUE_INDEX_SHIFT));
7439 }
7440
7441 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00007442 unsigned int frag_size;
7443
7444 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i,
7445 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007446 netdev_warn(tp->dev,
7447 "Using a smaller RX jumbo ring. Only %d "
7448 "out of %d buffers were allocated "
7449 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00007450 if (i == 0)
7451 goto initfail;
7452 tp->rx_jumbo_pending = i;
7453 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007454 }
7455 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007456
7457done:
Michael Chan32d8c572006-07-25 16:38:29 -07007458 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007459
7460initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00007461 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007462 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463}
7464
Matt Carlson21f581a2009-08-28 14:00:25 +00007465static void tg3_rx_prodring_fini(struct tg3 *tp,
7466 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467{
Matt Carlson21f581a2009-08-28 14:00:25 +00007468 kfree(tpr->rx_std_buffers);
7469 tpr->rx_std_buffers = NULL;
7470 kfree(tpr->rx_jmb_buffers);
7471 tpr->rx_jmb_buffers = NULL;
7472 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007473 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
7474 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007475 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476 }
Matt Carlson21f581a2009-08-28 14:00:25 +00007477 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007478 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
7479 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007480 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007482}
7483
Matt Carlson21f581a2009-08-28 14:00:25 +00007484static int tg3_rx_prodring_init(struct tg3 *tp,
7485 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007486{
Matt Carlson2c49a442010-09-30 10:34:35 +00007487 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
7488 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007489 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007490 return -ENOMEM;
7491
Matt Carlson4bae65c2010-11-24 08:31:52 +00007492 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
7493 TG3_RX_STD_RING_BYTES(tp),
7494 &tpr->rx_std_mapping,
7495 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007496 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007497 goto err_out;
7498
Joe Perches63c3a662011-04-26 08:12:10 +00007499 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007500 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00007501 GFP_KERNEL);
7502 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007503 goto err_out;
7504
Matt Carlson4bae65c2010-11-24 08:31:52 +00007505 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
7506 TG3_RX_JMB_RING_BYTES(tp),
7507 &tpr->rx_jmb_mapping,
7508 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007509 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007510 goto err_out;
7511 }
7512
7513 return 0;
7514
7515err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00007516 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007517 return -ENOMEM;
7518}
7519
7520/* Free up pending packets in all rx/tx rings.
7521 *
7522 * The chip has been shut down and the driver detached from
7523 * the networking, so no interrupts or new tx packets will
7524 * end up in the driver. tp->{tx,}lock is not held and we are not
7525 * in an interrupt context and thus may sleep.
7526 */
7527static void tg3_free_rings(struct tg3 *tp)
7528{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007529 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007530
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007531 for (j = 0; j < tp->irq_cnt; j++) {
7532 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007533
Matt Carlson8fea32b2010-09-15 08:59:58 +00007534 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00007535
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007536 if (!tnapi->tx_buffers)
7537 continue;
7538
Matt Carlson0d681b22011-07-27 14:20:49 +00007539 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
7540 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007541
Matt Carlson0d681b22011-07-27 14:20:49 +00007542 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007543 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007544
Matt Carlsonba1142e2011-11-04 09:15:00 +00007545 tg3_tx_skb_unmap(tnapi, i,
7546 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007547
7548 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007549 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00007550 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007551 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007552}
7553
7554/* Initialize tx/rx rings for packet processing.
7555 *
7556 * The chip has been shut down and the driver detached from
7557 * the networking, so no interrupts or new tx packets will
7558 * end up in the driver. tp->{tx,}lock are held and thus
7559 * we may not sleep.
7560 */
7561static int tg3_init_rings(struct tg3 *tp)
7562{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007563 int i;
Matt Carlson72334482009-08-28 14:03:01 +00007564
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007565 /* Free up all the SKBs. */
7566 tg3_free_rings(tp);
7567
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007568 for (i = 0; i < tp->irq_cnt; i++) {
7569 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007570
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007571 tnapi->last_tag = 0;
7572 tnapi->last_irq_tag = 0;
7573 tnapi->hw_status->status = 0;
7574 tnapi->hw_status->status_tag = 0;
7575 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7576
7577 tnapi->tx_prod = 0;
7578 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007579 if (tnapi->tx_ring)
7580 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007581
7582 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007583 if (tnapi->rx_rcb)
7584 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007585
Matt Carlson8fea32b2010-09-15 08:59:58 +00007586 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00007587 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007588 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00007589 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007590 }
Matt Carlson72334482009-08-28 14:03:01 +00007591
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007592 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007593}
7594
Michael Chan49a359e2012-09-28 07:12:37 +00007595static void tg3_mem_tx_release(struct tg3 *tp)
7596{
7597 int i;
7598
7599 for (i = 0; i < tp->irq_max; i++) {
7600 struct tg3_napi *tnapi = &tp->napi[i];
7601
7602 if (tnapi->tx_ring) {
7603 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
7604 tnapi->tx_ring, tnapi->tx_desc_mapping);
7605 tnapi->tx_ring = NULL;
7606 }
7607
7608 kfree(tnapi->tx_buffers);
7609 tnapi->tx_buffers = NULL;
7610 }
7611}
7612
7613static int tg3_mem_tx_acquire(struct tg3 *tp)
7614{
7615 int i;
7616 struct tg3_napi *tnapi = &tp->napi[0];
7617
7618 /* If multivector TSS is enabled, vector 0 does not handle
7619 * tx interrupts. Don't allocate any resources for it.
7620 */
7621 if (tg3_flag(tp, ENABLE_TSS))
7622 tnapi++;
7623
7624 for (i = 0; i < tp->txq_cnt; i++, tnapi++) {
7625 tnapi->tx_buffers = kzalloc(sizeof(struct tg3_tx_ring_info) *
7626 TG3_TX_RING_SIZE, GFP_KERNEL);
7627 if (!tnapi->tx_buffers)
7628 goto err_out;
7629
7630 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
7631 TG3_TX_RING_BYTES,
7632 &tnapi->tx_desc_mapping,
7633 GFP_KERNEL);
7634 if (!tnapi->tx_ring)
7635 goto err_out;
7636 }
7637
7638 return 0;
7639
7640err_out:
7641 tg3_mem_tx_release(tp);
7642 return -ENOMEM;
7643}
7644
7645static void tg3_mem_rx_release(struct tg3 *tp)
7646{
7647 int i;
7648
7649 for (i = 0; i < tp->irq_max; i++) {
7650 struct tg3_napi *tnapi = &tp->napi[i];
7651
7652 tg3_rx_prodring_fini(tp, &tnapi->prodring);
7653
7654 if (!tnapi->rx_rcb)
7655 continue;
7656
7657 dma_free_coherent(&tp->pdev->dev,
7658 TG3_RX_RCB_RING_BYTES(tp),
7659 tnapi->rx_rcb,
7660 tnapi->rx_rcb_mapping);
7661 tnapi->rx_rcb = NULL;
7662 }
7663}
7664
7665static int tg3_mem_rx_acquire(struct tg3 *tp)
7666{
7667 unsigned int i, limit;
7668
7669 limit = tp->rxq_cnt;
7670
7671 /* If RSS is enabled, we need a (dummy) producer ring
7672 * set on vector zero. This is the true hw prodring.
7673 */
7674 if (tg3_flag(tp, ENABLE_RSS))
7675 limit++;
7676
7677 for (i = 0; i < limit; i++) {
7678 struct tg3_napi *tnapi = &tp->napi[i];
7679
7680 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
7681 goto err_out;
7682
7683 /* If multivector RSS is enabled, vector 0
7684 * does not handle rx or tx interrupts.
7685 * Don't allocate any resources for it.
7686 */
7687 if (!i && tg3_flag(tp, ENABLE_RSS))
7688 continue;
7689
7690 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
7691 TG3_RX_RCB_RING_BYTES(tp),
7692 &tnapi->rx_rcb_mapping,
7693 GFP_KERNEL);
7694 if (!tnapi->rx_rcb)
7695 goto err_out;
7696
7697 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
7698 }
7699
7700 return 0;
7701
7702err_out:
7703 tg3_mem_rx_release(tp);
7704 return -ENOMEM;
7705}
7706
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007707/*
7708 * Must not be invoked with interrupt sources disabled and
7709 * the hardware shutdown down.
7710 */
7711static void tg3_free_consistent(struct tg3 *tp)
7712{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007713 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007714
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007715 for (i = 0; i < tp->irq_cnt; i++) {
7716 struct tg3_napi *tnapi = &tp->napi[i];
7717
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007718 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007719 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
7720 tnapi->hw_status,
7721 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007722 tnapi->hw_status = NULL;
7723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007725
Michael Chan49a359e2012-09-28 07:12:37 +00007726 tg3_mem_rx_release(tp);
7727 tg3_mem_tx_release(tp);
7728
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007730 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
7731 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732 tp->hw_stats = NULL;
7733 }
7734}
7735
7736/*
7737 * Must not be invoked with interrupt sources disabled and
7738 * the hardware shutdown down. Can sleep.
7739 */
7740static int tg3_alloc_consistent(struct tg3 *tp)
7741{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007742 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007743
Matt Carlson4bae65c2010-11-24 08:31:52 +00007744 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
7745 sizeof(struct tg3_hw_stats),
7746 &tp->stats_mapping,
7747 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748 if (!tp->hw_stats)
7749 goto err_out;
7750
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
7752
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007753 for (i = 0; i < tp->irq_cnt; i++) {
7754 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007755 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007756
Matt Carlson4bae65c2010-11-24 08:31:52 +00007757 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
7758 TG3_HW_STATUS_SIZE,
7759 &tnapi->status_mapping,
7760 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007761 if (!tnapi->hw_status)
7762 goto err_out;
7763
7764 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007765 sblk = tnapi->hw_status;
7766
Michael Chan49a359e2012-09-28 07:12:37 +00007767 if (tg3_flag(tp, ENABLE_RSS)) {
Michael Chan86449942012-10-02 20:31:14 -07007768 u16 *prodptr = NULL;
Matt Carlson8fea32b2010-09-15 08:59:58 +00007769
Michael Chan49a359e2012-09-28 07:12:37 +00007770 /*
7771 * When RSS is enabled, the status block format changes
7772 * slightly. The "rx_jumbo_consumer", "reserved",
7773 * and "rx_mini_consumer" members get mapped to the
7774 * other three rx return ring producer indexes.
7775 */
7776 switch (i) {
7777 case 1:
7778 prodptr = &sblk->idx[0].rx_producer;
7779 break;
7780 case 2:
7781 prodptr = &sblk->rx_jumbo_consumer;
7782 break;
7783 case 3:
7784 prodptr = &sblk->reserved;
7785 break;
7786 case 4:
7787 prodptr = &sblk->rx_mini_consumer;
Matt Carlsonf891ea12012-04-24 13:37:01 +00007788 break;
7789 }
Michael Chan49a359e2012-09-28 07:12:37 +00007790 tnapi->rx_rcb_prod_idx = prodptr;
7791 } else {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007792 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007793 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007794 }
7795
Michael Chan49a359e2012-09-28 07:12:37 +00007796 if (tg3_mem_tx_acquire(tp) || tg3_mem_rx_acquire(tp))
7797 goto err_out;
7798
Linus Torvalds1da177e2005-04-16 15:20:36 -07007799 return 0;
7800
7801err_out:
7802 tg3_free_consistent(tp);
7803 return -ENOMEM;
7804}
7805
7806#define MAX_WAIT_CNT 1000
7807
7808/* To stop a block, clear the enable bit and poll till it
7809 * clears. tp->lock is held.
7810 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007811static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812{
7813 unsigned int i;
7814 u32 val;
7815
Joe Perches63c3a662011-04-26 08:12:10 +00007816 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817 switch (ofs) {
7818 case RCVLSC_MODE:
7819 case DMAC_MODE:
7820 case MBFREE_MODE:
7821 case BUFMGR_MODE:
7822 case MEMARB_MODE:
7823 /* We can't enable/disable these bits of the
7824 * 5705/5750, just say success.
7825 */
7826 return 0;
7827
7828 default:
7829 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831 }
7832
7833 val = tr32(ofs);
7834 val &= ~enable_bit;
7835 tw32_f(ofs, val);
7836
7837 for (i = 0; i < MAX_WAIT_CNT; i++) {
7838 udelay(100);
7839 val = tr32(ofs);
7840 if ((val & enable_bit) == 0)
7841 break;
7842 }
7843
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007844 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00007845 dev_err(&tp->pdev->dev,
7846 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
7847 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007848 return -ENODEV;
7849 }
7850
7851 return 0;
7852}
7853
7854/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007855static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007856{
7857 int i, err;
7858
7859 tg3_disable_ints(tp);
7860
7861 tp->rx_mode &= ~RX_MODE_ENABLE;
7862 tw32_f(MAC_RX_MODE, tp->rx_mode);
7863 udelay(10);
7864
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007865 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
7866 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
7867 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
7868 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
7869 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
7870 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007872 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
7873 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
7874 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
7875 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
7876 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
7877 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
7878 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879
7880 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
7881 tw32_f(MAC_MODE, tp->mac_mode);
7882 udelay(40);
7883
7884 tp->tx_mode &= ~TX_MODE_ENABLE;
7885 tw32_f(MAC_TX_MODE, tp->tx_mode);
7886
7887 for (i = 0; i < MAX_WAIT_CNT; i++) {
7888 udelay(100);
7889 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
7890 break;
7891 }
7892 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00007893 dev_err(&tp->pdev->dev,
7894 "%s timed out, TX_MODE_ENABLE will not clear "
7895 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07007896 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897 }
7898
Michael Chane6de8ad2005-05-05 14:42:41 -07007899 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007900 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
7901 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007902
7903 tw32(FTQ_RESET, 0xffffffff);
7904 tw32(FTQ_RESET, 0x00000000);
7905
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007906 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
7907 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007908
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007909 for (i = 0; i < tp->irq_cnt; i++) {
7910 struct tg3_napi *tnapi = &tp->napi[i];
7911 if (tnapi->hw_status)
7912 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007914
Linus Torvalds1da177e2005-04-16 15:20:36 -07007915 return err;
7916}
7917
Michael Chanee6a99b2007-07-18 21:49:10 -07007918/* Save PCI command register before chip reset */
7919static void tg3_save_pci_state(struct tg3 *tp)
7920{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007921 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007922}
7923
7924/* Restore PCI state after chip reset */
7925static void tg3_restore_pci_state(struct tg3 *tp)
7926{
7927 u32 val;
7928
7929 /* Re-enable indirect register accesses. */
7930 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7931 tp->misc_host_ctrl);
7932
7933 /* Set MAX PCI retry to zero. */
7934 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7935 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007936 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007937 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007938 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007939 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007940 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00007941 PCISTATE_ALLOW_APE_SHMEM_WR |
7942 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007943 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7944
Matt Carlson8a6eac92007-10-21 16:17:55 -07007945 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007946
Matt Carlson2c55a3d2011-11-28 09:41:04 +00007947 if (!tg3_flag(tp, PCI_EXPRESS)) {
7948 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7949 tp->pci_cacheline_sz);
7950 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7951 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07007952 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007953
Michael Chanee6a99b2007-07-18 21:49:10 -07007954 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007955 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007956 u16 pcix_cmd;
7957
7958 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7959 &pcix_cmd);
7960 pcix_cmd &= ~PCI_X_CMD_ERO;
7961 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7962 pcix_cmd);
7963 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007964
Joe Perches63c3a662011-04-26 08:12:10 +00007965 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007966
7967 /* Chip reset on 5780 will reset MSI enable bit,
7968 * so need to restore it.
7969 */
Joe Perches63c3a662011-04-26 08:12:10 +00007970 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007971 u16 ctrl;
7972
7973 pci_read_config_word(tp->pdev,
7974 tp->msi_cap + PCI_MSI_FLAGS,
7975 &ctrl);
7976 pci_write_config_word(tp->pdev,
7977 tp->msi_cap + PCI_MSI_FLAGS,
7978 ctrl | PCI_MSI_FLAGS_ENABLE);
7979 val = tr32(MSGINT_MODE);
7980 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7981 }
7982 }
7983}
7984
Linus Torvalds1da177e2005-04-16 15:20:36 -07007985/* tp->lock is held. */
7986static int tg3_chip_reset(struct tg3 *tp)
7987{
7988 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007989 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007990 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007991
David S. Millerf49639e2006-06-09 11:58:36 -07007992 tg3_nvram_lock(tp);
7993
Matt Carlson77b483f2008-08-15 14:07:24 -07007994 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7995
David S. Millerf49639e2006-06-09 11:58:36 -07007996 /* No matching tg3_nvram_unlock() after this because
7997 * chip reset below will undo the nvram lock.
7998 */
7999 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000
Michael Chanee6a99b2007-07-18 21:49:10 -07008001 /* GRC_MISC_CFG core clock reset will clear the memory
8002 * enable bit in PCI register 4 and the MSI enable bit
8003 * on some chips, so we save relevant registers here.
8004 */
8005 tg3_save_pci_state(tp);
8006
Michael Chand9ab5ad12006-03-20 22:27:35 -08008007 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008008 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08008009 tw32(GRC_FASTBOOT_PC, 0);
8010
Linus Torvalds1da177e2005-04-16 15:20:36 -07008011 /*
8012 * We must avoid the readl() that normally takes place.
8013 * It locks machines, causes machine checks, and other
8014 * fun things. So, temporarily disable the 5701
8015 * hardware workaround, while we do the reset.
8016 */
Michael Chan1ee582d2005-08-09 20:16:46 -07008017 write_op = tp->write32;
8018 if (write_op == tg3_write_flush_reg32)
8019 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008020
Michael Chand18edcb2007-03-24 20:57:11 -07008021 /* Prevent the irq handler from reading or writing PCI registers
8022 * during chip reset when the memory enable bit in the PCI command
8023 * register may be cleared. The chip does not generate interrupt
8024 * at this time, but the irq handler may still be called due to irq
8025 * sharing or irqpoll.
8026 */
Joe Perches63c3a662011-04-26 08:12:10 +00008027 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008028 for (i = 0; i < tp->irq_cnt; i++) {
8029 struct tg3_napi *tnapi = &tp->napi[i];
8030 if (tnapi->hw_status) {
8031 tnapi->hw_status->status = 0;
8032 tnapi->hw_status->status_tag = 0;
8033 }
8034 tnapi->last_tag = 0;
8035 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07008036 }
Michael Chand18edcb2007-03-24 20:57:11 -07008037 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00008038
8039 for (i = 0; i < tp->irq_cnt; i++)
8040 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07008041
Matt Carlson255ca312009-08-25 10:07:27 +00008042 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8043 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8044 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
8045 }
8046
Linus Torvalds1da177e2005-04-16 15:20:36 -07008047 /* do the reset */
8048 val = GRC_MISC_CFG_CORECLK_RESET;
8049
Joe Perches63c3a662011-04-26 08:12:10 +00008050 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00008051 /* Force PCIe 1.0a mode */
8052 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008053 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00008054 tr32(TG3_PCIE_PHY_TSTCTL) ==
8055 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
8056 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
8057
Linus Torvalds1da177e2005-04-16 15:20:36 -07008058 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
8059 tw32(GRC_MISC_CFG, (1 << 29));
8060 val |= (1 << 29);
8061 }
8062 }
8063
Michael Chanb5d37722006-09-27 16:06:21 -07008064 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
8065 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
8066 tw32(GRC_VCPU_EXT_CTRL,
8067 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
8068 }
8069
Matt Carlsonf37500d2010-08-02 11:25:59 +00008070 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00008071 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00008073
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074 tw32(GRC_MISC_CFG, val);
8075
Michael Chan1ee582d2005-08-09 20:16:46 -07008076 /* restore 5701 hardware bug workaround write method */
8077 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008078
8079 /* Unfortunately, we have to delay before the PCI read back.
8080 * Some 575X chips even will not respond to a PCI cfg access
8081 * when the reset command is given to the chip.
8082 *
8083 * How do these hardware designers expect things to work
8084 * properly if the PCI write is posted for a long period
8085 * of time? It is always necessary to have some method by
8086 * which a register read back can occur to push the write
8087 * out which does the reset.
8088 *
8089 * For most tg3 variants the trick below was working.
8090 * Ho hum...
8091 */
8092 udelay(120);
8093
8094 /* Flush PCI posted writes. The normal MMIO registers
8095 * are inaccessible at this time so this is the only
8096 * way to make this reliably (actually, this is no longer
8097 * the case, see above). I tried to use indirect
8098 * register read/write but this upset some 5701 variants.
8099 */
8100 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
8101
8102 udelay(120);
8103
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008104 if (tg3_flag(tp, PCI_EXPRESS) && pci_is_pcie(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00008105 u16 val16;
8106
Linus Torvalds1da177e2005-04-16 15:20:36 -07008107 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
Michael Chan86449942012-10-02 20:31:14 -07008108 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008109 u32 cfg_val;
8110
8111 /* Wait for link training to complete. */
Michael Chan86449942012-10-02 20:31:14 -07008112 for (j = 0; j < 5000; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008113 udelay(100);
8114
8115 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
8116 pci_write_config_dword(tp->pdev, 0xc4,
8117 cfg_val | (1 << 15));
8118 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008119
Matt Carlsone7126992009-08-25 10:08:16 +00008120 /* Clear the "no snoop" and "relaxed ordering" bits. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008121 val16 = PCI_EXP_DEVCTL_RELAX_EN | PCI_EXP_DEVCTL_NOSNOOP_EN;
Matt Carlsone7126992009-08-25 10:08:16 +00008122 /*
8123 * Older PCIe devices only support the 128 byte
8124 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008125 */
Joe Perches63c3a662011-04-26 08:12:10 +00008126 if (!tg3_flag(tp, CPMU_PRESENT))
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008127 val16 |= PCI_EXP_DEVCTL_PAYLOAD;
8128 pcie_capability_clear_word(tp->pdev, PCI_EXP_DEVCTL, val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008129
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008130 /* Clear error status */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008131 pcie_capability_write_word(tp->pdev, PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008132 PCI_EXP_DEVSTA_CED |
8133 PCI_EXP_DEVSTA_NFED |
8134 PCI_EXP_DEVSTA_FED |
8135 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136 }
8137
Michael Chanee6a99b2007-07-18 21:49:10 -07008138 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139
Joe Perches63c3a662011-04-26 08:12:10 +00008140 tg3_flag_clear(tp, CHIP_RESETTING);
8141 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07008142
Michael Chanee6a99b2007-07-18 21:49:10 -07008143 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008144 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07008145 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07008146 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147
8148 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
8149 tg3_stop_fw(tp);
8150 tw32(0x5000, 0x400);
8151 }
8152
8153 tw32(GRC_MODE, tp->grc_mode);
8154
8155 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008156 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008157
8158 tw32(0xc4, val | (1 << 15));
8159 }
8160
8161 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
8162 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
8163 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
8164 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
8165 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
8166 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8167 }
8168
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008169 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008170 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008171 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008172 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008173 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008174 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008175 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008176 val = 0;
8177
8178 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008179 udelay(40);
8180
Matt Carlson77b483f2008-08-15 14:07:24 -07008181 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
8182
Michael Chan7a6f4362006-09-27 16:03:31 -07008183 err = tg3_poll_fw(tp);
8184 if (err)
8185 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008186
Matt Carlson0a9140c2009-08-28 12:27:50 +00008187 tg3_mdio_start(tp);
8188
Joe Perches63c3a662011-04-26 08:12:10 +00008189 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008190 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
8191 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008192 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008193 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194
8195 tw32(0x7c00, val | (1 << 25));
8196 }
8197
Matt Carlsond78b59f2011-04-05 14:22:46 +00008198 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8199 val = tr32(TG3_CPMU_CLCK_ORIDE);
8200 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
8201 }
8202
Linus Torvalds1da177e2005-04-16 15:20:36 -07008203 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00008204 tg3_flag_clear(tp, ENABLE_ASF);
8205 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
8207 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
8208 u32 nic_cfg;
8209
8210 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
8211 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00008212 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008213 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00008214 if (tg3_flag(tp, 5750_PLUS))
8215 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216 }
8217 }
8218
8219 return 0;
8220}
8221
Matt Carlson65ec6982012-02-28 23:33:37 +00008222static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
8223static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Matt Carlson92feeab2011-12-08 14:40:14 +00008224
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07008226static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008227{
8228 int err;
8229
8230 tg3_stop_fw(tp);
8231
Michael Chan944d9802005-05-29 14:57:48 -07008232 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008233
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008234 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008235 err = tg3_chip_reset(tp);
8236
Matt Carlsondaba2a62009-04-20 06:58:52 +00008237 __tg3_set_mac_addr(tp, 0);
8238
Michael Chan944d9802005-05-29 14:57:48 -07008239 tg3_write_sig_legacy(tp, kind);
8240 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241
Matt Carlson92feeab2011-12-08 14:40:14 +00008242 if (tp->hw_stats) {
8243 /* Save the stats across chip resets... */
David S. Millerb4017c52012-03-01 17:57:40 -05008244 tg3_get_nstats(tp, &tp->net_stats_prev);
Matt Carlson92feeab2011-12-08 14:40:14 +00008245 tg3_get_estats(tp, &tp->estats_prev);
8246
8247 /* And make sure the next sample is new data */
8248 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
8249 }
8250
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251 if (err)
8252 return err;
8253
8254 return 0;
8255}
8256
Linus Torvalds1da177e2005-04-16 15:20:36 -07008257static int tg3_set_mac_addr(struct net_device *dev, void *p)
8258{
8259 struct tg3 *tp = netdev_priv(dev);
8260 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07008261 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008262
Michael Chanf9804dd2005-09-27 12:13:10 -07008263 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00008264 return -EADDRNOTAVAIL;
Michael Chanf9804dd2005-09-27 12:13:10 -07008265
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
8267
Michael Chane75f7c92006-03-20 21:33:26 -08008268 if (!netif_running(dev))
8269 return 0;
8270
Joe Perches63c3a662011-04-26 08:12:10 +00008271 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07008272 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07008273
Michael Chan986e0ae2007-05-05 12:10:20 -07008274 addr0_high = tr32(MAC_ADDR_0_HIGH);
8275 addr0_low = tr32(MAC_ADDR_0_LOW);
8276 addr1_high = tr32(MAC_ADDR_1_HIGH);
8277 addr1_low = tr32(MAC_ADDR_1_LOW);
8278
8279 /* Skip MAC addr 1 if ASF is using it. */
8280 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
8281 !(addr1_high == 0 && addr1_low == 0))
8282 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07008283 }
Michael Chan986e0ae2007-05-05 12:10:20 -07008284 spin_lock_bh(&tp->lock);
8285 __tg3_set_mac_addr(tp, skip_mac_1);
8286 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008287
Michael Chanb9ec6c12006-07-25 16:37:27 -07008288 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008289}
8290
8291/* tp->lock is held. */
8292static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
8293 dma_addr_t mapping, u32 maxlen_flags,
8294 u32 nic_addr)
8295{
8296 tg3_write_mem(tp,
8297 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
8298 ((u64) mapping >> 32));
8299 tg3_write_mem(tp,
8300 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
8301 ((u64) mapping & 0xffffffff));
8302 tg3_write_mem(tp,
8303 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
8304 maxlen_flags);
8305
Joe Perches63c3a662011-04-26 08:12:10 +00008306 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008307 tg3_write_mem(tp,
8308 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
8309 nic_addr);
8310}
8311
Michael Chana489b6d2012-09-28 07:12:39 +00008312
8313static void tg3_coal_tx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07008314{
Michael Chana489b6d2012-09-28 07:12:39 +00008315 int i = 0;
Matt Carlsonb6080e12009-09-01 13:12:00 +00008316
Joe Perches63c3a662011-04-26 08:12:10 +00008317 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008318 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
8319 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
8320 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008321 } else {
8322 tw32(HOSTCC_TXCOL_TICKS, 0);
8323 tw32(HOSTCC_TXMAX_FRAMES, 0);
8324 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Michael Chana489b6d2012-09-28 07:12:39 +00008325
8326 for (; i < tp->txq_cnt; i++) {
8327 u32 reg;
8328
8329 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
8330 tw32(reg, ec->tx_coalesce_usecs);
8331 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
8332 tw32(reg, ec->tx_max_coalesced_frames);
8333 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
8334 tw32(reg, ec->tx_max_coalesced_frames_irq);
8335 }
Matt Carlson19cfaec2009-12-03 08:36:20 +00008336 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008337
Michael Chana489b6d2012-09-28 07:12:39 +00008338 for (; i < tp->irq_max - 1; i++) {
8339 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
8340 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
8341 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
8342 }
8343}
8344
8345static void tg3_coal_rx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
8346{
8347 int i = 0;
8348 u32 limit = tp->rxq_cnt;
8349
Joe Perches63c3a662011-04-26 08:12:10 +00008350 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008351 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
8352 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
8353 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
Michael Chana489b6d2012-09-28 07:12:39 +00008354 limit--;
Matt Carlson19cfaec2009-12-03 08:36:20 +00008355 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008356 tw32(HOSTCC_RXCOL_TICKS, 0);
8357 tw32(HOSTCC_RXMAX_FRAMES, 0);
8358 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07008359 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008360
Michael Chana489b6d2012-09-28 07:12:39 +00008361 for (; i < limit; i++) {
8362 u32 reg;
8363
8364 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
8365 tw32(reg, ec->rx_coalesce_usecs);
8366 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
8367 tw32(reg, ec->rx_max_coalesced_frames);
8368 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
8369 tw32(reg, ec->rx_max_coalesced_frames_irq);
8370 }
8371
8372 for (; i < tp->irq_max - 1; i++) {
8373 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
8374 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
8375 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
8376 }
8377}
8378
8379static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
8380{
8381 tg3_coal_tx_init(tp, ec);
8382 tg3_coal_rx_init(tp, ec);
8383
Joe Perches63c3a662011-04-26 08:12:10 +00008384 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07008385 u32 val = ec->stats_block_coalesce_usecs;
8386
Matt Carlsonb6080e12009-09-01 13:12:00 +00008387 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
8388 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
8389
David S. Miller15f98502005-05-18 22:49:26 -07008390 if (!netif_carrier_ok(tp->dev))
8391 val = 0;
8392
8393 tw32(HOSTCC_STAT_COAL_TICKS, val);
8394 }
8395}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008396
8397/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00008398static void tg3_rings_reset(struct tg3 *tp)
8399{
8400 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008401 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008402 struct tg3_napi *tnapi = &tp->napi[0];
8403
8404 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008405 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008406 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008407 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00008408 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlson55086ad2011-12-14 11:09:59 +00008409 else if (tg3_flag(tp, 57765_CLASS))
Matt Carlsonb703df62009-12-03 08:36:21 +00008410 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008411 else
8412 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8413
8414 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8415 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
8416 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
8417 BDINFO_FLAGS_DISABLED);
8418
8419
8420 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008421 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008422 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00008423 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008424 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00008425 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00008426 tg3_flag(tp, 57765_CLASS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008427 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
8428 else
8429 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8430
8431 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8432 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
8433 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
8434 BDINFO_FLAGS_DISABLED);
8435
8436 /* Disable interrupts */
8437 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008438 tp->napi[0].chk_msi_cnt = 0;
8439 tp->napi[0].last_rx_cons = 0;
8440 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008441
8442 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00008443 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00008444 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008445 tp->napi[i].tx_prod = 0;
8446 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008447 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008448 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008449 tw32_rx_mbox(tp->napi[i].consmbox, 0);
8450 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00008451 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008452 tp->napi[i].last_rx_cons = 0;
8453 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008454 }
Joe Perches63c3a662011-04-26 08:12:10 +00008455 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008456 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008457 } else {
8458 tp->napi[0].tx_prod = 0;
8459 tp->napi[0].tx_cons = 0;
8460 tw32_mailbox(tp->napi[0].prodmbox, 0);
8461 tw32_rx_mbox(tp->napi[0].consmbox, 0);
8462 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008463
8464 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00008465 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00008466 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
8467 for (i = 0; i < 16; i++)
8468 tw32_tx_mbox(mbox + i * 8, 0);
8469 }
8470
8471 txrcb = NIC_SRAM_SEND_RCB;
8472 rxrcb = NIC_SRAM_RCV_RET_RCB;
8473
8474 /* Clear status block in ram. */
8475 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8476
8477 /* Set status block DMA address */
8478 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8479 ((u64) tnapi->status_mapping >> 32));
8480 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8481 ((u64) tnapi->status_mapping & 0xffffffff));
8482
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008483 if (tnapi->tx_ring) {
8484 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8485 (TG3_TX_RING_SIZE <<
8486 BDINFO_FLAGS_MAXLEN_SHIFT),
8487 NIC_SRAM_TX_BUFFER_DESC);
8488 txrcb += TG3_BDINFO_SIZE;
8489 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008490
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008491 if (tnapi->rx_rcb) {
8492 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008493 (tp->rx_ret_ring_mask + 1) <<
8494 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008495 rxrcb += TG3_BDINFO_SIZE;
8496 }
8497
8498 stblk = HOSTCC_STATBLCK_RING1;
8499
8500 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
8501 u64 mapping = (u64)tnapi->status_mapping;
8502 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
8503 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
8504
8505 /* Clear status block in ram. */
8506 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8507
Matt Carlson19cfaec2009-12-03 08:36:20 +00008508 if (tnapi->tx_ring) {
8509 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8510 (TG3_TX_RING_SIZE <<
8511 BDINFO_FLAGS_MAXLEN_SHIFT),
8512 NIC_SRAM_TX_BUFFER_DESC);
8513 txrcb += TG3_BDINFO_SIZE;
8514 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008515
8516 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008517 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008518 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
8519
8520 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008521 rxrcb += TG3_BDINFO_SIZE;
8522 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008523}
8524
Matt Carlsoneb07a942011-04-20 07:57:36 +00008525static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
8526{
8527 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
8528
Joe Perches63c3a662011-04-26 08:12:10 +00008529 if (!tg3_flag(tp, 5750_PLUS) ||
8530 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00008531 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00008532 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
8533 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008534 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
8535 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
8536 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
8537 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
8538 else
8539 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
8540
8541 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
8542 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
8543
8544 val = min(nic_rep_thresh, host_rep_thresh);
8545 tw32(RCVBDI_STD_THRESH, val);
8546
Joe Perches63c3a662011-04-26 08:12:10 +00008547 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008548 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
8549
Joe Perches63c3a662011-04-26 08:12:10 +00008550 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008551 return;
8552
Matt Carlson513aa6e2011-11-21 15:01:18 +00008553 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00008554
8555 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
8556
8557 val = min(bdcache_maxcnt / 2, host_rep_thresh);
8558 tw32(RCVBDI_JUMBO_THRESH, val);
8559
Joe Perches63c3a662011-04-26 08:12:10 +00008560 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008561 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
8562}
8563
Matt Carlsonccd5ba92012-02-13 10:20:08 +00008564static inline u32 calc_crc(unsigned char *buf, int len)
8565{
8566 u32 reg;
8567 u32 tmp;
8568 int j, k;
8569
8570 reg = 0xffffffff;
8571
8572 for (j = 0; j < len; j++) {
8573 reg ^= buf[j];
8574
8575 for (k = 0; k < 8; k++) {
8576 tmp = reg & 0x01;
8577
8578 reg >>= 1;
8579
8580 if (tmp)
8581 reg ^= 0xedb88320;
8582 }
8583 }
8584
8585 return ~reg;
8586}
8587
8588static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
8589{
8590 /* accept or reject all multicast frames */
8591 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
8592 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
8593 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
8594 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
8595}
8596
8597static void __tg3_set_rx_mode(struct net_device *dev)
8598{
8599 struct tg3 *tp = netdev_priv(dev);
8600 u32 rx_mode;
8601
8602 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
8603 RX_MODE_KEEP_VLAN_TAG);
8604
8605#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
8606 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
8607 * flag clear.
8608 */
8609 if (!tg3_flag(tp, ENABLE_ASF))
8610 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
8611#endif
8612
8613 if (dev->flags & IFF_PROMISC) {
8614 /* Promiscuous mode. */
8615 rx_mode |= RX_MODE_PROMISC;
8616 } else if (dev->flags & IFF_ALLMULTI) {
8617 /* Accept all multicast. */
8618 tg3_set_multi(tp, 1);
8619 } else if (netdev_mc_empty(dev)) {
8620 /* Reject all multicast. */
8621 tg3_set_multi(tp, 0);
8622 } else {
8623 /* Accept one or more multicast(s). */
8624 struct netdev_hw_addr *ha;
8625 u32 mc_filter[4] = { 0, };
8626 u32 regidx;
8627 u32 bit;
8628 u32 crc;
8629
8630 netdev_for_each_mc_addr(ha, dev) {
8631 crc = calc_crc(ha->addr, ETH_ALEN);
8632 bit = ~crc & 0x7f;
8633 regidx = (bit & 0x60) >> 5;
8634 bit &= 0x1f;
8635 mc_filter[regidx] |= (1 << bit);
8636 }
8637
8638 tw32(MAC_HASH_REG_0, mc_filter[0]);
8639 tw32(MAC_HASH_REG_1, mc_filter[1]);
8640 tw32(MAC_HASH_REG_2, mc_filter[2]);
8641 tw32(MAC_HASH_REG_3, mc_filter[3]);
8642 }
8643
8644 if (rx_mode != tp->rx_mode) {
8645 tp->rx_mode = rx_mode;
8646 tw32_f(MAC_RX_MODE, rx_mode);
8647 udelay(10);
8648 }
8649}
8650
Michael Chan91024262012-09-28 07:12:38 +00008651static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp, u32 qcnt)
Matt Carlson90415472011-12-16 13:33:23 +00008652{
8653 int i;
8654
8655 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
Michael Chan91024262012-09-28 07:12:38 +00008656 tp->rss_ind_tbl[i] = ethtool_rxfh_indir_default(i, qcnt);
Matt Carlson90415472011-12-16 13:33:23 +00008657}
8658
8659static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008660{
8661 int i;
8662
8663 if (!tg3_flag(tp, SUPPORT_MSIX))
8664 return;
8665
Matt Carlson90415472011-12-16 13:33:23 +00008666 if (tp->irq_cnt <= 2) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008667 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00008668 return;
8669 }
8670
8671 /* Validate table against current IRQ count */
8672 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8673 if (tp->rss_ind_tbl[i] >= tp->irq_cnt - 1)
8674 break;
8675 }
8676
8677 if (i != TG3_RSS_INDIR_TBL_SIZE)
Michael Chan91024262012-09-28 07:12:38 +00008678 tg3_rss_init_dflt_indir_tbl(tp, tp->rxq_cnt);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008679}
8680
Matt Carlson90415472011-12-16 13:33:23 +00008681static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008682{
8683 int i = 0;
8684 u32 reg = MAC_RSS_INDIR_TBL_0;
8685
8686 while (i < TG3_RSS_INDIR_TBL_SIZE) {
8687 u32 val = tp->rss_ind_tbl[i];
8688 i++;
8689 for (; i % 8; i++) {
8690 val <<= 4;
8691 val |= tp->rss_ind_tbl[i];
8692 }
8693 tw32(reg, val);
8694 reg += 4;
8695 }
8696}
8697
Matt Carlson2d31eca2009-09-01 12:53:31 +00008698/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008699static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008700{
8701 u32 val, rdmac_mode;
8702 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008703 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008704
8705 tg3_disable_ints(tp);
8706
8707 tg3_stop_fw(tp);
8708
8709 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
8710
Joe Perches63c3a662011-04-26 08:12:10 +00008711 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07008712 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008713
Matt Carlson699c0192010-12-06 08:28:51 +00008714 /* Enable MAC control of LPI */
8715 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
8716 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
8717 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
8718 TG3_CPMU_EEE_LNKIDL_UART_IDL);
8719
8720 tw32_f(TG3_CPMU_EEE_CTRL,
8721 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
8722
Matt Carlsona386b902010-12-06 08:28:53 +00008723 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
8724 TG3_CPMU_EEEMD_LPI_IN_TX |
8725 TG3_CPMU_EEEMD_LPI_IN_RX |
8726 TG3_CPMU_EEEMD_EEE_ENABLE;
8727
8728 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8729 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
8730
Joe Perches63c3a662011-04-26 08:12:10 +00008731 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00008732 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
8733
8734 tw32_f(TG3_CPMU_EEE_MODE, val);
8735
8736 tw32_f(TG3_CPMU_EEE_DBTMR1,
8737 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
8738 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
8739
8740 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00008741 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00008742 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00008743 }
8744
Matt Carlson603f1172010-02-12 14:47:10 +00008745 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08008746 tg3_phy_reset(tp);
8747
Linus Torvalds1da177e2005-04-16 15:20:36 -07008748 err = tg3_chip_reset(tp);
8749 if (err)
8750 return err;
8751
8752 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
8753
Matt Carlsonbcb37f62008-11-03 16:52:09 -08008754 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008755 val = tr32(TG3_CPMU_CTRL);
8756 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
8757 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08008758
8759 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8760 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8761 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8762 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
8763
8764 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
8765 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
8766 val |= CPMU_LNK_AWARE_MACCLK_6_25;
8767 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
8768
8769 val = tr32(TG3_CPMU_HST_ACC);
8770 val &= ~CPMU_HST_ACC_MACCLK_MASK;
8771 val |= CPMU_HST_ACC_MACCLK_6_25;
8772 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07008773 }
8774
Matt Carlson33466d932009-04-20 06:57:41 +00008775 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8776 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
8777 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
8778 PCIE_PWR_MGMT_L1_THRESH_4MS;
8779 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00008780
8781 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
8782 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
8783
8784 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d932009-04-20 06:57:41 +00008785
Matt Carlsonf40386c2009-11-02 14:24:02 +00008786 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8787 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00008788 }
8789
Joe Perches63c3a662011-04-26 08:12:10 +00008790 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00008791 u32 grc_mode = tr32(GRC_MODE);
8792
8793 /* Access the lower 1K of PL PCIE block registers. */
8794 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8795 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
8796
8797 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
8798 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
8799 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
8800
8801 tw32(GRC_MODE, grc_mode);
8802 }
8803
Matt Carlson55086ad2011-12-14 11:09:59 +00008804 if (tg3_flag(tp, 57765_CLASS)) {
Matt Carlson5093eed2010-11-24 08:31:45 +00008805 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
8806 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00008807
Matt Carlson5093eed2010-11-24 08:31:45 +00008808 /* Access the lower 1K of PL PCIE block registers. */
8809 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8810 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00008811
Matt Carlson5093eed2010-11-24 08:31:45 +00008812 val = tr32(TG3_PCIE_TLDLPL_PORT +
8813 TG3_PCIE_PL_LO_PHYCTL5);
8814 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
8815 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00008816
Matt Carlson5093eed2010-11-24 08:31:45 +00008817 tw32(GRC_MODE, grc_mode);
8818 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008819
Matt Carlson1ff30a52011-05-19 12:12:46 +00008820 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_57765_AX) {
8821 u32 grc_mode = tr32(GRC_MODE);
8822
8823 /* Access the lower 1K of DL PCIE block registers. */
8824 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8825 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
8826
8827 val = tr32(TG3_PCIE_TLDLPL_PORT +
8828 TG3_PCIE_DL_LO_FTSMAX);
8829 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
8830 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
8831 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
8832
8833 tw32(GRC_MODE, grc_mode);
8834 }
8835
Matt Carlsona977dbe2010-04-12 06:58:26 +00008836 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8837 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8838 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8839 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008840 }
8841
Linus Torvalds1da177e2005-04-16 15:20:36 -07008842 /* This works around an issue with Athlon chipsets on
8843 * B3 tigon3 silicon. This bit has no effect on any
8844 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008845 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008846 */
Joe Perches63c3a662011-04-26 08:12:10 +00008847 if (!tg3_flag(tp, CPMU_PRESENT)) {
8848 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008849 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8850 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008852
8853 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008854 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008855 val = tr32(TG3PCI_PCISTATE);
8856 val |= PCISTATE_RETRY_SAME_DMA;
8857 tw32(TG3PCI_PCISTATE, val);
8858 }
8859
Joe Perches63c3a662011-04-26 08:12:10 +00008860 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008861 /* Allow reads and writes to the
8862 * APE register and memory space.
8863 */
8864 val = tr32(TG3PCI_PCISTATE);
8865 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008866 PCISTATE_ALLOW_APE_SHMEM_WR |
8867 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008868 tw32(TG3PCI_PCISTATE, val);
8869 }
8870
Linus Torvalds1da177e2005-04-16 15:20:36 -07008871 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8872 /* Enable some hw fixes. */
8873 val = tr32(TG3PCI_MSI_DATA);
8874 val |= (1 << 26) | (1 << 28) | (1 << 29);
8875 tw32(TG3PCI_MSI_DATA, val);
8876 }
8877
8878 /* Descriptor ring init may make accesses to the
8879 * NIC SRAM area to setup the TX descriptors, so we
8880 * can only do this after the hardware has been
8881 * successfully reset.
8882 */
Michael Chan32d8c572006-07-25 16:38:29 -07008883 err = tg3_init_rings(tp);
8884 if (err)
8885 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886
Joe Perches63c3a662011-04-26 08:12:10 +00008887 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008888 val = tr32(TG3PCI_DMA_RW_CTRL) &
8889 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008890 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8891 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +00008892 if (!tg3_flag(tp, 57765_CLASS) &&
Matt Carlson0aebff42011-04-25 12:42:45 +00008893 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8894 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008895 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8896 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8897 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008898 /* This value is determined during the probe time DMA
8899 * engine test, tg3_test_dma.
8900 */
8901 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008903
8904 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8905 GRC_MODE_4X_NIC_SEND_RINGS |
8906 GRC_MODE_NO_TX_PHDR_CSUM |
8907 GRC_MODE_NO_RX_PHDR_CSUM);
8908 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008909
8910 /* Pseudo-header checksum is done by hardware logic and not
8911 * the offload processers, so make the chip do the pseudo-
8912 * header checksums on receive. For transmit it is more
8913 * convenient to do the pseudo-header checksum in software
8914 * as Linux does that on transmit for us in all cases.
8915 */
8916 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008917
8918 tw32(GRC_MODE,
8919 tp->grc_mode |
8920 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8921
8922 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8923 val = tr32(GRC_MISC_CFG);
8924 val &= ~0xff;
8925 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8926 tw32(GRC_MISC_CFG, val);
8927
8928 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008929 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008930 /* Do nothing. */
8931 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8932 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8933 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8934 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8935 else
8936 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8937 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8938 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008939 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008940 int fw_len;
8941
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008942 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008943 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8944 tw32(BUFMGR_MB_POOL_ADDR,
8945 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8946 tw32(BUFMGR_MB_POOL_SIZE,
8947 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008949
Michael Chan0f893dc2005-07-25 12:30:38 -07008950 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008951 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8952 tp->bufmgr_config.mbuf_read_dma_low_water);
8953 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8954 tp->bufmgr_config.mbuf_mac_rx_low_water);
8955 tw32(BUFMGR_MB_HIGH_WATER,
8956 tp->bufmgr_config.mbuf_high_water);
8957 } else {
8958 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8959 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8960 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8961 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8962 tw32(BUFMGR_MB_HIGH_WATER,
8963 tp->bufmgr_config.mbuf_high_water_jumbo);
8964 }
8965 tw32(BUFMGR_DMA_LOW_WATER,
8966 tp->bufmgr_config.dma_low_water);
8967 tw32(BUFMGR_DMA_HIGH_WATER,
8968 tp->bufmgr_config.dma_high_water);
8969
Matt Carlsond309a462010-09-30 10:34:31 +00008970 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8971 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8972 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008973 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8974 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8975 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8976 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008977 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008978 for (i = 0; i < 2000; i++) {
8979 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8980 break;
8981 udelay(10);
8982 }
8983 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008984 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008985 return -ENODEV;
8986 }
8987
Matt Carlsoneb07a942011-04-20 07:57:36 +00008988 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8989 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008990
Matt Carlsoneb07a942011-04-20 07:57:36 +00008991 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008992
8993 /* Initialize TG3_BDINFO's at:
8994 * RCVDBDI_STD_BD: standard eth size rx ring
8995 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8996 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8997 *
8998 * like so:
8999 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
9000 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
9001 * ring attribute flags
9002 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
9003 *
9004 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
9005 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
9006 *
9007 * The size of each ring is fixed in the firmware, but the location is
9008 * configurable.
9009 */
9010 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009011 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009012 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009013 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00009014 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00009015 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
9016 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009017
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009018 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00009019 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009020 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
9021 BDINFO_FLAGS_DISABLED);
9022
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009023 /* Program the jumbo buffer descriptor ring control
9024 * blocks on those devices that have them.
9025 */
Matt Carlsona0512942011-07-27 14:20:54 +00009026 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009027 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009028
Joe Perches63c3a662011-04-26 08:12:10 +00009029 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009031 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009032 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009033 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00009034 val = TG3_RX_JMB_RING_SIZE(tp) <<
9035 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009036 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00009037 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00009038 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlson55086ad2011-12-14 11:09:59 +00009039 tg3_flag(tp, 57765_CLASS))
Matt Carlson87668d32009-11-13 13:03:34 +00009040 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
9041 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009042 } else {
9043 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
9044 BDINFO_FLAGS_DISABLED);
9045 }
9046
Joe Perches63c3a662011-04-26 08:12:10 +00009047 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +00009048 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009049 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
9050 val |= (TG3_RX_STD_DMA_SZ << 2);
9051 } else
Matt Carlson04380d42010-04-12 06:58:29 +00009052 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009053 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00009054 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009055
9056 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009057
Matt Carlson411da642009-11-13 13:03:46 +00009058 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e662009-11-13 13:03:49 +00009059 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009060
Joe Perches63c3a662011-04-26 08:12:10 +00009061 tpr->rx_jmb_prod_idx =
9062 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e662009-11-13 13:03:49 +00009063 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009064
Matt Carlson2d31eca2009-09-01 12:53:31 +00009065 tg3_rings_reset(tp);
9066
Linus Torvalds1da177e2005-04-16 15:20:36 -07009067 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07009068 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009069
9070 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00009071 tw32(MAC_RX_MTU_SIZE,
9072 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009073
9074 /* The slot time is changed by tg3_setup_phy if we
9075 * run at gigabit with half duplex.
9076 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00009077 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
9078 (6 << TX_LENGTHS_IPG_SHIFT) |
9079 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
9080
9081 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
9082 val |= tr32(MAC_TX_LENGTHS) &
9083 (TX_LENGTHS_JMB_FRM_LEN_MSK |
9084 TX_LENGTHS_CNT_DWN_VAL_MSK);
9085
9086 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009087
9088 /* Receive rules. */
9089 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
9090 tw32(RCVLPC_CONFIG, 0x0181);
9091
9092 /* Calculate RDMAC_MODE setting early, we need it to determine
9093 * the RCVLPC_STATE_ENABLE mask.
9094 */
9095 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
9096 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
9097 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
9098 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
9099 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07009100
Matt Carlsondeabaac2010-11-24 08:31:50 +00009101 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00009102 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
9103
Matt Carlson57e69832008-05-25 23:48:31 -07009104 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08009105 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
9106 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07009107 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
9108 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
9109 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
9110
Matt Carlsonc5908932011-03-09 16:58:25 +00009111 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
9112 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009113 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07009114 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009115 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
9116 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009117 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009118 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9119 }
9120 }
9121
Joe Perches63c3a662011-04-26 08:12:10 +00009122 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07009123 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9124
Joe Perches63c3a662011-04-26 08:12:10 +00009125 if (tg3_flag(tp, HW_TSO_1) ||
9126 tg3_flag(tp, HW_TSO_2) ||
9127 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08009128 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
9129
Matt Carlson108a6c12011-05-19 12:12:47 +00009130 if (tg3_flag(tp, 57765_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00009131 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08009132 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
9133 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009134
Matt Carlsonf2096f92011-04-05 14:22:48 +00009135 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
9136 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
9137
Matt Carlson41a8a7e2010-09-15 08:59:53 +00009138 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
9139 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
9140 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
9141 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009142 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00009143 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Michael Chan10ce95d2012-07-29 19:15:42 +00009144 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00009145 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
9146 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
9147 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
9148 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
9149 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
9150 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00009151 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00009152 tw32(TG3_RDMA_RSRVCTRL_REG,
9153 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
9154 }
9155
Matt Carlsond78b59f2011-04-05 14:22:46 +00009156 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9157 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00009158 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
9159 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
9160 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
9161 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
9162 }
9163
Linus Torvalds1da177e2005-04-16 15:20:36 -07009164 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00009165 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07009166 val = tr32(RCVLPC_STATS_ENABLE);
9167 val &= ~RCVLPC_STATSENAB_DACK_FIX;
9168 tw32(RCVLPC_STATS_ENABLE, val);
9169 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009170 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009171 val = tr32(RCVLPC_STATS_ENABLE);
9172 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
9173 tw32(RCVLPC_STATS_ENABLE, val);
9174 } else {
9175 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
9176 }
9177 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
9178 tw32(SNDDATAI_STATSENAB, 0xffffff);
9179 tw32(SNDDATAI_STATSCTRL,
9180 (SNDDATAI_SCTRL_ENABLE |
9181 SNDDATAI_SCTRL_FASTUPD));
9182
9183 /* Setup host coalescing engine. */
9184 tw32(HOSTCC_MODE, 0);
9185 for (i = 0; i < 2000; i++) {
9186 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
9187 break;
9188 udelay(10);
9189 }
9190
Michael Chand244c892005-07-05 14:42:33 -07009191 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009192
Joe Perches63c3a662011-04-26 08:12:10 +00009193 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009194 /* Status/statistics block address. See tg3_timer,
9195 * the tg3_periodic_fetch_stats call there, and
9196 * tg3_get_stats to see how this works for 5705/5750 chips.
9197 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009198 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9199 ((u64) tp->stats_mapping >> 32));
9200 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9201 ((u64) tp->stats_mapping & 0xffffffff));
9202 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009203
Linus Torvalds1da177e2005-04-16 15:20:36 -07009204 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009205
9206 /* Clear statistics and status block memory areas */
9207 for (i = NIC_SRAM_STATS_BLK;
9208 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
9209 i += sizeof(u32)) {
9210 tg3_write_mem(tp, i, 0);
9211 udelay(40);
9212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009213 }
9214
9215 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
9216
9217 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
9218 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009219 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009220 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
9221
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009222 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
9223 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07009224 /* reset to prevent losing 1st rx packet intermittently */
9225 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9226 udelay(10);
9227 }
9228
Matt Carlson3bda1252008-08-15 14:08:22 -07009229 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +00009230 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
9231 MAC_MODE_FHDE_ENABLE;
9232 if (tg3_flag(tp, ENABLE_APE))
9233 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +00009234 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009235 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009236 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
9237 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009238 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
9239 udelay(40);
9240
Michael Chan314fba32005-04-21 17:07:04 -07009241 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00009242 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07009243 * register to preserve the GPIO settings for LOMs. The GPIOs,
9244 * whether used as inputs or outputs, are set by boot code after
9245 * reset.
9246 */
Joe Perches63c3a662011-04-26 08:12:10 +00009247 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07009248 u32 gpio_mask;
9249
Michael Chan9d26e212006-12-07 00:21:14 -08009250 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
9251 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
9252 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07009253
9254 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
9255 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
9256 GRC_LCLCTRL_GPIO_OUTPUT3;
9257
Michael Chanaf36e6b2006-03-23 01:28:06 -08009258 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
9259 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
9260
Gary Zambranoaaf84462007-05-05 11:51:45 -07009261 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07009262 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
9263
9264 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00009265 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08009266 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
9267 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07009268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009269 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9270 udelay(100);
9271
Matt Carlsonc3b50032012-01-17 15:27:23 +00009272 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009273 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +00009274 val |= MSGINT_MODE_ENABLE;
9275 if (tp->irq_cnt > 1)
9276 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +00009277 if (!tg3_flag(tp, 1SHOT_MSI))
9278 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009279 tw32(MSGINT_MODE, val);
9280 }
9281
Joe Perches63c3a662011-04-26 08:12:10 +00009282 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009283 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
9284 udelay(40);
9285 }
9286
9287 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
9288 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
9289 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
9290 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
9291 WDMAC_MODE_LNGREAD_ENAB);
9292
Matt Carlsonc5908932011-03-09 16:58:25 +00009293 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
9294 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009295 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009296 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
9297 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
9298 /* nothing */
9299 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009300 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009301 val |= WDMAC_MODE_RX_ACCEL;
9302 }
9303 }
9304
Michael Chand9ab5ad12006-03-20 22:27:35 -08009305 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00009306 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07009307 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -08009308
Matt Carlson788a0352009-11-02 14:26:03 +00009309 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
9310 val |= WDMAC_MODE_BURST_ALL_DATA;
9311
Linus Torvalds1da177e2005-04-16 15:20:36 -07009312 tw32_f(WDMAC_MODE, val);
9313 udelay(40);
9314
Joe Perches63c3a662011-04-26 08:12:10 +00009315 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07009316 u16 pcix_cmd;
9317
9318 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
9319 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009320 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07009321 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
9322 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009323 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07009324 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
9325 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009326 }
Matt Carlson9974a352007-10-07 23:27:28 -07009327 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
9328 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009329 }
9330
9331 tw32_f(RDMAC_MODE, rdmac_mode);
9332 udelay(40);
9333
Michael Chan091f0ea2012-07-29 19:15:43 +00009334 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719) {
9335 for (i = 0; i < TG3_NUM_RDMA_CHANNELS; i++) {
9336 if (tr32(TG3_RDMA_LENGTH + (i << 2)) > TG3_MAX_MTU(tp))
9337 break;
9338 }
9339 if (i < TG3_NUM_RDMA_CHANNELS) {
9340 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
9341 val |= TG3_LSO_RD_DMA_TX_LENGTH_WA;
9342 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
9343 tg3_flag_set(tp, 5719_RDMA_BUG);
9344 }
9345 }
9346
Linus Torvalds1da177e2005-04-16 15:20:36 -07009347 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009348 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009349 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07009350
9351 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
9352 tw32(SNDDATAC_MODE,
9353 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
9354 else
9355 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
9356
Linus Torvalds1da177e2005-04-16 15:20:36 -07009357 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
9358 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009359 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00009360 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009361 val |= RCVDBDI_MODE_LRG_RING_SZ;
9362 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009363 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009364 if (tg3_flag(tp, HW_TSO_1) ||
9365 tg3_flag(tp, HW_TSO_2) ||
9366 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009367 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009368 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00009369 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009370 val |= SNDBDI_MODE_MULTI_TXQ_EN;
9371 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009372 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
9373
9374 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9375 err = tg3_load_5701_a0_firmware_fix(tp);
9376 if (err)
9377 return err;
9378 }
9379
Joe Perches63c3a662011-04-26 08:12:10 +00009380 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009381 err = tg3_load_tso_firmware(tp);
9382 if (err)
9383 return err;
9384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009385
9386 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00009387
Joe Perches63c3a662011-04-26 08:12:10 +00009388 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00009389 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
9390 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00009391
9392 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
9393 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
9394 tp->tx_mode &= ~val;
9395 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
9396 }
9397
Linus Torvalds1da177e2005-04-16 15:20:36 -07009398 tw32_f(MAC_TX_MODE, tp->tx_mode);
9399 udelay(100);
9400
Joe Perches63c3a662011-04-26 08:12:10 +00009401 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009402 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009403
9404 /* Setup the "secret" hash key. */
9405 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
9406 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
9407 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
9408 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
9409 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
9410 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
9411 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
9412 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
9413 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
9414 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
9415 }
9416
Linus Torvalds1da177e2005-04-16 15:20:36 -07009417 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00009418 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08009419 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
9420
Joe Perches63c3a662011-04-26 08:12:10 +00009421 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009422 tp->rx_mode |= RX_MODE_RSS_ENABLE |
9423 RX_MODE_RSS_ITBL_HASH_BITS_7 |
9424 RX_MODE_RSS_IPV6_HASH_EN |
9425 RX_MODE_RSS_TCP_IPV6_HASH_EN |
9426 RX_MODE_RSS_IPV4_HASH_EN |
9427 RX_MODE_RSS_TCP_IPV4_HASH_EN;
9428
Linus Torvalds1da177e2005-04-16 15:20:36 -07009429 tw32_f(MAC_RX_MODE, tp->rx_mode);
9430 udelay(10);
9431
Linus Torvalds1da177e2005-04-16 15:20:36 -07009432 tw32(MAC_LED_CTRL, tp->led_ctrl);
9433
9434 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009435 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009436 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9437 udelay(10);
9438 }
9439 tw32_f(MAC_RX_MODE, tp->rx_mode);
9440 udelay(10);
9441
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009442 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009443 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009444 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009445 /* Set drive transmission level to 1.2V */
9446 /* only if the signal pre-emphasis bit is not set */
9447 val = tr32(MAC_SERDES_CFG);
9448 val &= 0xfffff000;
9449 val |= 0x880;
9450 tw32(MAC_SERDES_CFG, val);
9451 }
9452 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
9453 tw32(MAC_SERDES_CFG, 0x616000);
9454 }
9455
9456 /* Prevent chip from dropping frames when flow control
9457 * is enabled.
9458 */
Matt Carlson55086ad2011-12-14 11:09:59 +00009459 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +00009460 val = 1;
9461 else
9462 val = 2;
9463 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009464
9465 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_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009467 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00009468 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009469 }
9470
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009471 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +00009472 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08009473 u32 tmp;
9474
9475 tmp = tr32(SERDES_RX_CTRL);
9476 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
9477 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
9478 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
9479 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9480 }
9481
Joe Perches63c3a662011-04-26 08:12:10 +00009482 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonc6700ce2012-02-13 15:20:15 +00009483 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Matt Carlson80096062010-08-02 11:26:06 +00009484 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009485
Matt Carlsondd477002008-05-25 23:45:58 -07009486 err = tg3_setup_phy(tp, 0);
9487 if (err)
9488 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009489
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009490 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
9491 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07009492 u32 tmp;
9493
9494 /* Clear CRC stats. */
9495 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
9496 tg3_writephy(tp, MII_TG3_TEST1,
9497 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009498 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07009499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009500 }
9501 }
9502
9503 __tg3_set_rx_mode(tp->dev);
9504
9505 /* Initialize receive rules. */
9506 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
9507 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
9508 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
9509 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
9510
Joe Perches63c3a662011-04-26 08:12:10 +00009511 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009512 limit = 8;
9513 else
9514 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00009515 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009516 limit -= 4;
9517 switch (limit) {
9518 case 16:
9519 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
9520 case 15:
9521 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
9522 case 14:
9523 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
9524 case 13:
9525 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
9526 case 12:
9527 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
9528 case 11:
9529 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
9530 case 10:
9531 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
9532 case 9:
9533 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
9534 case 8:
9535 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
9536 case 7:
9537 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
9538 case 6:
9539 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
9540 case 5:
9541 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
9542 case 4:
9543 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
9544 case 3:
9545 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
9546 case 2:
9547 case 1:
9548
9549 default:
9550 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07009551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009552
Joe Perches63c3a662011-04-26 08:12:10 +00009553 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07009554 /* Write our heartbeat update interval to APE. */
9555 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
9556 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07009557
Linus Torvalds1da177e2005-04-16 15:20:36 -07009558 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
9559
Linus Torvalds1da177e2005-04-16 15:20:36 -07009560 return 0;
9561}
9562
9563/* Called at device open time to get the chip ready for
9564 * packet processing. Invoked with tp->lock held.
9565 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009566static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009567{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009568 tg3_switch_clocks(tp);
9569
9570 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
9571
Matt Carlson2f751b62008-08-04 23:17:34 -07009572 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009573}
9574
Michael Chanaed93e02012-07-16 16:24:02 +00009575static void tg3_sd_scan_scratchpad(struct tg3 *tp, struct tg3_ocir *ocir)
9576{
9577 int i;
9578
9579 for (i = 0; i < TG3_SD_NUM_RECS; i++, ocir++) {
9580 u32 off = i * TG3_OCIR_LEN, len = TG3_OCIR_LEN;
9581
9582 tg3_ape_scratchpad_read(tp, (u32 *) ocir, off, len);
9583 off += len;
9584
9585 if (ocir->signature != TG3_OCIR_SIG_MAGIC ||
9586 !(ocir->version_flags & TG3_OCIR_FLAG_ACTIVE))
9587 memset(ocir, 0, TG3_OCIR_LEN);
9588 }
9589}
9590
9591/* sysfs attributes for hwmon */
9592static ssize_t tg3_show_temp(struct device *dev,
9593 struct device_attribute *devattr, char *buf)
9594{
9595 struct pci_dev *pdev = to_pci_dev(dev);
9596 struct net_device *netdev = pci_get_drvdata(pdev);
9597 struct tg3 *tp = netdev_priv(netdev);
9598 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
9599 u32 temperature;
9600
9601 spin_lock_bh(&tp->lock);
9602 tg3_ape_scratchpad_read(tp, &temperature, attr->index,
9603 sizeof(temperature));
9604 spin_unlock_bh(&tp->lock);
9605 return sprintf(buf, "%u\n", temperature);
9606}
9607
9608
9609static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tg3_show_temp, NULL,
9610 TG3_TEMP_SENSOR_OFFSET);
9611static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, tg3_show_temp, NULL,
9612 TG3_TEMP_CAUTION_OFFSET);
9613static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO, tg3_show_temp, NULL,
9614 TG3_TEMP_MAX_OFFSET);
9615
9616static struct attribute *tg3_attributes[] = {
9617 &sensor_dev_attr_temp1_input.dev_attr.attr,
9618 &sensor_dev_attr_temp1_crit.dev_attr.attr,
9619 &sensor_dev_attr_temp1_max.dev_attr.attr,
9620 NULL
9621};
9622
9623static const struct attribute_group tg3_group = {
9624 .attrs = tg3_attributes,
9625};
9626
Michael Chanaed93e02012-07-16 16:24:02 +00009627static void tg3_hwmon_close(struct tg3 *tp)
9628{
Michael Chanaed93e02012-07-16 16:24:02 +00009629 if (tp->hwmon_dev) {
9630 hwmon_device_unregister(tp->hwmon_dev);
9631 tp->hwmon_dev = NULL;
9632 sysfs_remove_group(&tp->pdev->dev.kobj, &tg3_group);
9633 }
Michael Chanaed93e02012-07-16 16:24:02 +00009634}
9635
9636static void tg3_hwmon_open(struct tg3 *tp)
9637{
Michael Chanaed93e02012-07-16 16:24:02 +00009638 int i, err;
9639 u32 size = 0;
9640 struct pci_dev *pdev = tp->pdev;
9641 struct tg3_ocir ocirs[TG3_SD_NUM_RECS];
9642
9643 tg3_sd_scan_scratchpad(tp, ocirs);
9644
9645 for (i = 0; i < TG3_SD_NUM_RECS; i++) {
9646 if (!ocirs[i].src_data_length)
9647 continue;
9648
9649 size += ocirs[i].src_hdr_length;
9650 size += ocirs[i].src_data_length;
9651 }
9652
9653 if (!size)
9654 return;
9655
9656 /* Register hwmon sysfs hooks */
9657 err = sysfs_create_group(&pdev->dev.kobj, &tg3_group);
9658 if (err) {
9659 dev_err(&pdev->dev, "Cannot create sysfs group, aborting\n");
9660 return;
9661 }
9662
9663 tp->hwmon_dev = hwmon_device_register(&pdev->dev);
9664 if (IS_ERR(tp->hwmon_dev)) {
9665 tp->hwmon_dev = NULL;
9666 dev_err(&pdev->dev, "Cannot register hwmon device, aborting\n");
9667 sysfs_remove_group(&pdev->dev.kobj, &tg3_group);
9668 }
Michael Chanaed93e02012-07-16 16:24:02 +00009669}
9670
9671
Linus Torvalds1da177e2005-04-16 15:20:36 -07009672#define TG3_STAT_ADD32(PSTAT, REG) \
9673do { u32 __val = tr32(REG); \
9674 (PSTAT)->low += __val; \
9675 if ((PSTAT)->low < __val) \
9676 (PSTAT)->high += 1; \
9677} while (0)
9678
9679static void tg3_periodic_fetch_stats(struct tg3 *tp)
9680{
9681 struct tg3_hw_stats *sp = tp->hw_stats;
9682
9683 if (!netif_carrier_ok(tp->dev))
9684 return;
9685
9686 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
9687 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
9688 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
9689 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
9690 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
9691 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
9692 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
9693 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
9694 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
9695 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
9696 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
9697 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
9698 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
Michael Chan091f0ea2012-07-29 19:15:43 +00009699 if (unlikely(tg3_flag(tp, 5719_RDMA_BUG) &&
9700 (sp->tx_ucast_packets.low + sp->tx_mcast_packets.low +
9701 sp->tx_bcast_packets.low) > TG3_NUM_RDMA_CHANNELS)) {
9702 u32 val;
9703
9704 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
9705 val &= ~TG3_LSO_RD_DMA_TX_LENGTH_WA;
9706 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
9707 tg3_flag_clear(tp, 5719_RDMA_BUG);
9708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009709
9710 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
9711 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
9712 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
9713 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
9714 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
9715 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
9716 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
9717 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
9718 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
9719 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
9720 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
9721 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
9722 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
9723 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07009724
9725 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson310050f2011-05-19 12:12:55 +00009726 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9727 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0 &&
9728 tp->pci_chip_rev_id != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +00009729 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
9730 } else {
9731 u32 val = tr32(HOSTCC_FLOW_ATTN);
9732 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
9733 if (val) {
9734 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
9735 sp->rx_discards.low += val;
9736 if (sp->rx_discards.low < val)
9737 sp->rx_discards.high += 1;
9738 }
9739 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
9740 }
Michael Chan463d3052006-05-22 16:36:27 -07009741 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009742}
9743
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009744static void tg3_chk_missed_msi(struct tg3 *tp)
9745{
9746 u32 i;
9747
9748 for (i = 0; i < tp->irq_cnt; i++) {
9749 struct tg3_napi *tnapi = &tp->napi[i];
9750
9751 if (tg3_has_work(tnapi)) {
9752 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
9753 tnapi->last_tx_cons == tnapi->tx_cons) {
9754 if (tnapi->chk_msi_cnt < 1) {
9755 tnapi->chk_msi_cnt++;
9756 return;
9757 }
Matt Carlson7f230732011-08-31 11:44:48 +00009758 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009759 }
9760 }
9761 tnapi->chk_msi_cnt = 0;
9762 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
9763 tnapi->last_tx_cons = tnapi->tx_cons;
9764 }
9765}
9766
Linus Torvalds1da177e2005-04-16 15:20:36 -07009767static void tg3_timer(unsigned long __opaque)
9768{
9769 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009770
Matt Carlson5b190622011-11-04 09:15:04 +00009771 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -08009772 goto restart_timer;
9773
David S. Millerf47c11e2005-06-24 20:18:35 -07009774 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009775
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009776 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00009777 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009778 tg3_chk_missed_msi(tp);
9779
Joe Perches63c3a662011-04-26 08:12:10 +00009780 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07009781 /* All of this garbage is because when using non-tagged
9782 * IRQ status the mailbox/status_block protocol the chip
9783 * uses with the cpu is race prone.
9784 */
Matt Carlson898a56f2009-08-28 14:02:40 +00009785 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07009786 tw32(GRC_LOCAL_CTRL,
9787 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
9788 } else {
9789 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009790 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07009791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009792
David S. Millerfac9b832005-05-18 22:46:34 -07009793 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009794 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +00009795 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +00009796 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -07009797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009798 }
9799
Linus Torvalds1da177e2005-04-16 15:20:36 -07009800 /* This part only runs once per second. */
9801 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009802 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009803 tg3_periodic_fetch_stats(tp);
9804
Matt Carlsonb0c59432011-05-19 12:12:48 +00009805 if (tp->setlpicnt && !--tp->setlpicnt)
9806 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00009807
Joe Perches63c3a662011-04-26 08:12:10 +00009808 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009809 u32 mac_stat;
9810 int phy_event;
9811
9812 mac_stat = tr32(MAC_STATUS);
9813
9814 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009815 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009816 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
9817 phy_event = 1;
9818 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
9819 phy_event = 1;
9820
9821 if (phy_event)
9822 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00009823 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009824 u32 mac_stat = tr32(MAC_STATUS);
9825 int need_setup = 0;
9826
9827 if (netif_carrier_ok(tp->dev) &&
9828 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
9829 need_setup = 1;
9830 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00009831 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009832 (mac_stat & (MAC_STATUS_PCS_SYNCED |
9833 MAC_STATUS_SIGNAL_DET))) {
9834 need_setup = 1;
9835 }
9836 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07009837 if (!tp->serdes_counter) {
9838 tw32_f(MAC_MODE,
9839 (tp->mac_mode &
9840 ~MAC_MODE_PORT_MODE_MASK));
9841 udelay(40);
9842 tw32_f(MAC_MODE, tp->mac_mode);
9843 udelay(40);
9844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009845 tg3_setup_phy(tp, 0);
9846 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009847 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009848 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07009849 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00009850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009851
9852 tp->timer_counter = tp->timer_multiplier;
9853 }
9854
Michael Chan130b8e42006-09-27 16:00:40 -07009855 /* Heartbeat is only sent once every 2 seconds.
9856 *
9857 * The heartbeat is to tell the ASF firmware that the host
9858 * driver is still alive. In the event that the OS crashes,
9859 * ASF needs to reset the hardware to free up the FIFO space
9860 * that may be filled with rx packets destined for the host.
9861 * If the FIFO is full, ASF will no longer function properly.
9862 *
9863 * Unintended resets have been reported on real time kernels
9864 * where the timer doesn't run on time. Netpoll will also have
9865 * same problem.
9866 *
9867 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
9868 * to check the ring condition when the heartbeat is expiring
9869 * before doing the reset. This will prevent most unintended
9870 * resets.
9871 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009872 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009873 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07009874 tg3_wait_for_event_ack(tp);
9875
Michael Chanbbadf502006-04-06 21:46:34 -07009876 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07009877 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07009878 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009879 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
9880 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009881
9882 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009883 }
9884 tp->asf_counter = tp->asf_multiplier;
9885 }
9886
David S. Millerf47c11e2005-06-24 20:18:35 -07009887 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009888
Michael Chanf475f162006-03-27 23:20:14 -08009889restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07009890 tp->timer.expires = jiffies + tp->timer_offset;
9891 add_timer(&tp->timer);
9892}
9893
Matt Carlson21f76382012-02-22 12:35:21 +00009894static void __devinit tg3_timer_init(struct tg3 *tp)
9895{
9896 if (tg3_flag(tp, TAGGED_STATUS) &&
9897 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9898 !tg3_flag(tp, 57765_CLASS))
9899 tp->timer_offset = HZ;
9900 else
9901 tp->timer_offset = HZ / 10;
9902
9903 BUG_ON(tp->timer_offset > HZ);
9904
9905 tp->timer_multiplier = (HZ / tp->timer_offset);
9906 tp->asf_multiplier = (HZ / tp->timer_offset) *
9907 TG3_FW_UPDATE_FREQ_SEC;
9908
9909 init_timer(&tp->timer);
9910 tp->timer.data = (unsigned long) tp;
9911 tp->timer.function = tg3_timer;
9912}
9913
9914static void tg3_timer_start(struct tg3 *tp)
9915{
9916 tp->asf_counter = tp->asf_multiplier;
9917 tp->timer_counter = tp->timer_multiplier;
9918
9919 tp->timer.expires = jiffies + tp->timer_offset;
9920 add_timer(&tp->timer);
9921}
9922
9923static void tg3_timer_stop(struct tg3 *tp)
9924{
9925 del_timer_sync(&tp->timer);
9926}
9927
9928/* Restart hardware after configuration changes, self-test, etc.
9929 * Invoked with tp->lock held.
9930 */
9931static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
9932 __releases(tp->lock)
9933 __acquires(tp->lock)
9934{
9935 int err;
9936
9937 err = tg3_init_hw(tp, reset_phy);
9938 if (err) {
9939 netdev_err(tp->dev,
9940 "Failed to re-initialize device, aborting\n");
9941 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
9942 tg3_full_unlock(tp);
9943 tg3_timer_stop(tp);
9944 tp->irq_sync = 0;
9945 tg3_napi_enable(tp);
9946 dev_close(tp->dev);
9947 tg3_full_lock(tp, 0);
9948 }
9949 return err;
9950}
9951
9952static void tg3_reset_task(struct work_struct *work)
9953{
9954 struct tg3 *tp = container_of(work, struct tg3, reset_task);
9955 int err;
9956
9957 tg3_full_lock(tp, 0);
9958
9959 if (!netif_running(tp->dev)) {
9960 tg3_flag_clear(tp, RESET_TASK_PENDING);
9961 tg3_full_unlock(tp);
9962 return;
9963 }
9964
9965 tg3_full_unlock(tp);
9966
9967 tg3_phy_stop(tp);
9968
9969 tg3_netif_stop(tp);
9970
9971 tg3_full_lock(tp, 1);
9972
9973 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
9974 tp->write32_tx_mbox = tg3_write32_tx_mbox;
9975 tp->write32_rx_mbox = tg3_write_flush_reg32;
9976 tg3_flag_set(tp, MBOX_WRITE_REORDER);
9977 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
9978 }
9979
9980 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
9981 err = tg3_init_hw(tp, 1);
9982 if (err)
9983 goto out;
9984
9985 tg3_netif_start(tp);
9986
9987out:
9988 tg3_full_unlock(tp);
9989
9990 if (!err)
9991 tg3_phy_start(tp);
9992
9993 tg3_flag_clear(tp, RESET_TASK_PENDING);
9994}
9995
Matt Carlson4f125f42009-09-01 12:55:02 +00009996static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08009997{
David Howells7d12e782006-10-05 14:55:46 +01009998 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009999 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +000010000 char *name;
10001 struct tg3_napi *tnapi = &tp->napi[irq_num];
10002
10003 if (tp->irq_cnt == 1)
10004 name = tp->dev->name;
10005 else {
10006 name = &tnapi->irq_lbl[0];
10007 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
10008 name[IFNAMSIZ-1] = 0;
10009 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010010
Joe Perches63c3a662011-04-26 08:12:10 +000010011 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080010012 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +000010013 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010014 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010015 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010016 } else {
10017 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +000010018 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010019 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010020 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010021 }
Matt Carlson4f125f42009-09-01 12:55:02 +000010022
10023 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010024}
10025
Michael Chan79381092005-04-21 17:13:59 -070010026static int tg3_test_interrupt(struct tg3 *tp)
10027{
Matt Carlson09943a12009-08-28 14:01:57 +000010028 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -070010029 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -070010030 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010031 u32 val;
Michael Chan79381092005-04-21 17:13:59 -070010032
Michael Chand4bc3922005-05-29 14:59:20 -070010033 if (!netif_running(dev))
10034 return -ENODEV;
10035
Michael Chan79381092005-04-21 17:13:59 -070010036 tg3_disable_ints(tp);
10037
Matt Carlson4f125f42009-09-01 12:55:02 +000010038 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010039
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010040 /*
10041 * Turn off MSI one shot mode. Otherwise this test has no
10042 * observable way to know whether the interrupt was delivered.
10043 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010044 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010045 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
10046 tw32(MSGINT_MODE, val);
10047 }
10048
Matt Carlson4f125f42009-09-01 12:55:02 +000010049 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Davidlohr Buesof274fd92012-02-22 03:06:54 +000010050 IRQF_SHARED, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010051 if (err)
10052 return err;
10053
Matt Carlson898a56f2009-08-28 14:02:40 +000010054 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -070010055 tg3_enable_ints(tp);
10056
10057 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010058 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -070010059
10060 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -070010061 u32 int_mbox, misc_host_ctrl;
10062
Matt Carlson898a56f2009-08-28 14:02:40 +000010063 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -070010064 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
10065
10066 if ((int_mbox != 0) ||
10067 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
10068 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -070010069 break;
Michael Chanb16250e2006-09-27 16:10:14 -070010070 }
10071
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010072 if (tg3_flag(tp, 57765_PLUS) &&
10073 tnapi->hw_status->status_tag != tnapi->last_tag)
10074 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
10075
Michael Chan79381092005-04-21 17:13:59 -070010076 msleep(10);
10077 }
10078
10079 tg3_disable_ints(tp);
10080
Matt Carlson4f125f42009-09-01 12:55:02 +000010081 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010082
Matt Carlson4f125f42009-09-01 12:55:02 +000010083 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010084
10085 if (err)
10086 return err;
10087
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010088 if (intr_ok) {
10089 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +000010090 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010091 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
10092 tw32(MSGINT_MODE, val);
10093 }
Michael Chan79381092005-04-21 17:13:59 -070010094 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010095 }
Michael Chan79381092005-04-21 17:13:59 -070010096
10097 return -EIO;
10098}
10099
10100/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
10101 * successfully restored
10102 */
10103static int tg3_test_msi(struct tg3 *tp)
10104{
Michael Chan79381092005-04-21 17:13:59 -070010105 int err;
10106 u16 pci_cmd;
10107
Joe Perches63c3a662011-04-26 08:12:10 +000010108 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -070010109 return 0;
10110
10111 /* Turn off SERR reporting in case MSI terminates with Master
10112 * Abort.
10113 */
10114 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
10115 pci_write_config_word(tp->pdev, PCI_COMMAND,
10116 pci_cmd & ~PCI_COMMAND_SERR);
10117
10118 err = tg3_test_interrupt(tp);
10119
10120 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
10121
10122 if (!err)
10123 return 0;
10124
10125 /* other failures */
10126 if (err != -EIO)
10127 return err;
10128
10129 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +000010130 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
10131 "to INTx mode. Please report this failure to the PCI "
10132 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -070010133
Matt Carlson4f125f42009-09-01 12:55:02 +000010134 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +000010135
Michael Chan79381092005-04-21 17:13:59 -070010136 pci_disable_msi(tp->pdev);
10137
Joe Perches63c3a662011-04-26 08:12:10 +000010138 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +000010139 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -070010140
Matt Carlson4f125f42009-09-01 12:55:02 +000010141 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010142 if (err)
10143 return err;
10144
10145 /* Need to reset the chip because the MSI cycle may have terminated
10146 * with Master Abort.
10147 */
David S. Millerf47c11e2005-06-24 20:18:35 -070010148 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070010149
Michael Chan944d9802005-05-29 14:57:48 -070010150 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -070010151 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070010152
David S. Millerf47c11e2005-06-24 20:18:35 -070010153 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010154
10155 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +000010156 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -070010157
10158 return err;
10159}
10160
Matt Carlson9e9fd122009-01-19 16:57:45 -080010161static int tg3_request_firmware(struct tg3 *tp)
10162{
10163 const __be32 *fw_data;
10164
10165 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010166 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
10167 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010168 return -ENOENT;
10169 }
10170
10171 fw_data = (void *)tp->fw->data;
10172
10173 /* Firmware blob starts with version numbers, followed by
10174 * start address and _full_ length including BSS sections
10175 * (which must be longer than the actual data, of course
10176 */
10177
10178 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
10179 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010180 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
10181 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010182 release_firmware(tp->fw);
10183 tp->fw = NULL;
10184 return -EINVAL;
10185 }
10186
10187 /* We no longer need firmware; we have it. */
10188 tp->fw_needed = NULL;
10189 return 0;
10190}
10191
Michael Chan91024262012-09-28 07:12:38 +000010192static u32 tg3_irq_count(struct tg3 *tp)
Matt Carlson679563f2009-09-01 12:55:46 +000010193{
Michael Chan91024262012-09-28 07:12:38 +000010194 u32 irq_cnt = max(tp->rxq_cnt, tp->txq_cnt);
Matt Carlson679563f2009-09-01 12:55:46 +000010195
Michael Chan91024262012-09-28 07:12:38 +000010196 if (irq_cnt > 1) {
Matt Carlsonc3b50032012-01-17 15:27:23 +000010197 /* We want as many rx rings enabled as there are cpus.
10198 * In multiqueue MSI-X mode, the first MSI-X vector
10199 * only deals with link interrupts, etc, so we add
10200 * one to the number of vectors we are requesting.
10201 */
Michael Chan91024262012-09-28 07:12:38 +000010202 irq_cnt = min_t(unsigned, irq_cnt + 1, tp->irq_max);
Matt Carlsonc3b50032012-01-17 15:27:23 +000010203 }
Matt Carlson679563f2009-09-01 12:55:46 +000010204
Michael Chan91024262012-09-28 07:12:38 +000010205 return irq_cnt;
10206}
10207
10208static bool tg3_enable_msix(struct tg3 *tp)
10209{
10210 int i, rc;
Michael Chan86449942012-10-02 20:31:14 -070010211 struct msix_entry msix_ent[TG3_IRQ_MAX_VECS];
Michael Chan91024262012-09-28 07:12:38 +000010212
Michael Chan09681692012-09-28 07:12:42 +000010213 tp->txq_cnt = tp->txq_req;
10214 tp->rxq_cnt = tp->rxq_req;
10215 if (!tp->rxq_cnt)
10216 tp->rxq_cnt = netif_get_num_default_rss_queues();
Michael Chan91024262012-09-28 07:12:38 +000010217 if (tp->rxq_cnt > tp->rxq_max)
10218 tp->rxq_cnt = tp->rxq_max;
Michael Chancf6d6ea2012-09-28 07:12:43 +000010219
10220 /* Disable multiple TX rings by default. Simple round-robin hardware
10221 * scheduling of the TX rings can cause starvation of rings with
10222 * small packets when other rings have TSO or jumbo packets.
10223 */
10224 if (!tp->txq_req)
10225 tp->txq_cnt = 1;
Michael Chan91024262012-09-28 07:12:38 +000010226
10227 tp->irq_cnt = tg3_irq_count(tp);
10228
Matt Carlson679563f2009-09-01 12:55:46 +000010229 for (i = 0; i < tp->irq_max; i++) {
10230 msix_ent[i].entry = i;
10231 msix_ent[i].vector = 0;
10232 }
10233
10234 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000010235 if (rc < 0) {
10236 return false;
10237 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +000010238 if (pci_enable_msix(tp->pdev, msix_ent, rc))
10239 return false;
Joe Perches05dbe002010-02-17 19:44:19 +000010240 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
10241 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +000010242 tp->irq_cnt = rc;
Michael Chan49a359e2012-09-28 07:12:37 +000010243 tp->rxq_cnt = max(rc - 1, 1);
Michael Chan91024262012-09-28 07:12:38 +000010244 if (tp->txq_cnt)
10245 tp->txq_cnt = min(tp->rxq_cnt, tp->txq_max);
Matt Carlson679563f2009-09-01 12:55:46 +000010246 }
10247
10248 for (i = 0; i < tp->irq_max; i++)
10249 tp->napi[i].irq_vec = msix_ent[i].vector;
10250
Michael Chan49a359e2012-09-28 07:12:37 +000010251 if (netif_set_real_num_rx_queues(tp->dev, tp->rxq_cnt)) {
Ben Hutchings2ddaad32010-09-27 22:11:51 -070010252 pci_disable_msix(tp->pdev);
10253 return false;
10254 }
Matt Carlsonb92b9042010-11-24 08:31:51 +000010255
Michael Chan91024262012-09-28 07:12:38 +000010256 if (tp->irq_cnt == 1)
10257 return true;
Matt Carlsond78b59f2011-04-05 14:22:46 +000010258
Michael Chan91024262012-09-28 07:12:38 +000010259 tg3_flag_set(tp, ENABLE_RSS);
10260
10261 if (tp->txq_cnt > 1)
10262 tg3_flag_set(tp, ENABLE_TSS);
10263
10264 netif_set_real_num_tx_queues(tp->dev, tp->txq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000010265
Matt Carlson679563f2009-09-01 12:55:46 +000010266 return true;
10267}
10268
Matt Carlson07b01732009-08-28 14:01:15 +000010269static void tg3_ints_init(struct tg3 *tp)
10270{
Joe Perches63c3a662011-04-26 08:12:10 +000010271 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
10272 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +000010273 /* All MSI supporting chips should support tagged
10274 * status. Assert that this is the case.
10275 */
Matt Carlson5129c3a2010-04-05 10:19:23 +000010276 netdev_warn(tp->dev,
10277 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +000010278 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +000010279 }
Matt Carlson4f125f42009-09-01 12:55:02 +000010280
Joe Perches63c3a662011-04-26 08:12:10 +000010281 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
10282 tg3_flag_set(tp, USING_MSIX);
10283 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
10284 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +000010285
Joe Perches63c3a662011-04-26 08:12:10 +000010286 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000010287 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +000010288 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010289 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000010290 if (!tg3_flag(tp, 1SHOT_MSI))
10291 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +000010292 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
10293 }
10294defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +000010295 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000010296 tp->irq_cnt = 1;
10297 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan49a359e2012-09-28 07:12:37 +000010298 }
10299
10300 if (tp->irq_cnt == 1) {
10301 tp->txq_cnt = 1;
10302 tp->rxq_cnt = 1;
Ben Hutchings2ddaad32010-09-27 22:11:51 -070010303 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -070010304 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +000010305 }
Matt Carlson07b01732009-08-28 14:01:15 +000010306}
10307
10308static void tg3_ints_fini(struct tg3 *tp)
10309{
Joe Perches63c3a662011-04-26 08:12:10 +000010310 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +000010311 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000010312 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +000010313 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000010314 tg3_flag_clear(tp, USING_MSI);
10315 tg3_flag_clear(tp, USING_MSIX);
10316 tg3_flag_clear(tp, ENABLE_RSS);
10317 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +000010318}
10319
Michael Chand8f4cd32012-09-28 07:12:40 +000010320static int tg3_start(struct tg3 *tp, bool reset_phy, bool test_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010321{
Michael Chand8f4cd32012-09-28 07:12:40 +000010322 struct net_device *dev = tp->dev;
Matt Carlson4f125f42009-09-01 12:55:02 +000010323 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010324
Matt Carlson679563f2009-09-01 12:55:46 +000010325 /*
10326 * Setup interrupts first so we know how
10327 * many NAPI resources to allocate
10328 */
10329 tg3_ints_init(tp);
10330
Matt Carlson90415472011-12-16 13:33:23 +000010331 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +000010332
Linus Torvalds1da177e2005-04-16 15:20:36 -070010333 /* The placement of this call is tied
10334 * to the setup and use of Host TX descriptors.
10335 */
10336 err = tg3_alloc_consistent(tp);
10337 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000010338 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010339
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010340 tg3_napi_init(tp);
10341
Matt Carlsonfed97812009-09-01 13:10:19 +000010342 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -070010343
Matt Carlson4f125f42009-09-01 12:55:02 +000010344 for (i = 0; i < tp->irq_cnt; i++) {
10345 struct tg3_napi *tnapi = &tp->napi[i];
10346 err = tg3_request_irq(tp, i);
10347 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +000010348 for (i--; i >= 0; i--) {
10349 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +000010350 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +000010351 }
10352 goto err_out2;
Matt Carlson4f125f42009-09-01 12:55:02 +000010353 }
10354 }
Matt Carlson07b01732009-08-28 14:01:15 +000010355
David S. Millerf47c11e2005-06-24 20:18:35 -070010356 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010357
Michael Chand8f4cd32012-09-28 07:12:40 +000010358 err = tg3_init_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010359 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -070010360 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010361 tg3_free_rings(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010362 }
10363
David S. Millerf47c11e2005-06-24 20:18:35 -070010364 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010365
Matt Carlson07b01732009-08-28 14:01:15 +000010366 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000010367 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010368
Michael Chand8f4cd32012-09-28 07:12:40 +000010369 if (test_irq && tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -070010370 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -070010371
Michael Chan79381092005-04-21 17:13:59 -070010372 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010373 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070010374 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -070010375 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070010376 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010377
Matt Carlson679563f2009-09-01 12:55:46 +000010378 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -070010379 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010380
Joe Perches63c3a662011-04-26 08:12:10 +000010381 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010382 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010383
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010384 tw32(PCIE_TRANSACTION_CFG,
10385 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010386 }
Michael Chan79381092005-04-21 17:13:59 -070010387 }
10388
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010389 tg3_phy_start(tp);
10390
Michael Chanaed93e02012-07-16 16:24:02 +000010391 tg3_hwmon_open(tp);
10392
David S. Millerf47c11e2005-06-24 20:18:35 -070010393 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010394
Matt Carlson21f76382012-02-22 12:35:21 +000010395 tg3_timer_start(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010396 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010397 tg3_enable_ints(tp);
10398
David S. Millerf47c11e2005-06-24 20:18:35 -070010399 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010400
Matt Carlsonfe5f5782009-09-01 13:09:39 +000010401 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010402
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000010403 /*
10404 * Reset loopback feature if it was turned on while the device was down
10405 * make sure that it's installed properly now.
10406 */
10407 if (dev->features & NETIF_F_LOOPBACK)
10408 tg3_set_loopback(dev, dev->features);
10409
Linus Torvalds1da177e2005-04-16 15:20:36 -070010410 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +000010411
Matt Carlson679563f2009-09-01 12:55:46 +000010412err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +000010413 for (i = tp->irq_cnt - 1; i >= 0; i--) {
10414 struct tg3_napi *tnapi = &tp->napi[i];
10415 free_irq(tnapi->irq_vec, tnapi);
10416 }
Matt Carlson07b01732009-08-28 14:01:15 +000010417
Matt Carlson679563f2009-09-01 12:55:46 +000010418err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +000010419 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010420 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +000010421 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +000010422
10423err_out1:
10424 tg3_ints_fini(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000010425
Matt Carlson07b01732009-08-28 14:01:15 +000010426 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010427}
10428
Michael Chan65138592012-09-28 07:12:41 +000010429static void tg3_stop(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010430{
Matt Carlson4f125f42009-09-01 12:55:02 +000010431 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010432
Matt Carlsondb219972011-11-04 09:15:03 +000010433 tg3_reset_task_cancel(tp);
Nithin Nayak Sujirbd473da2012-11-05 14:26:30 +000010434 tg3_netif_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010435
Matt Carlson21f76382012-02-22 12:35:21 +000010436 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010437
Michael Chanaed93e02012-07-16 16:24:02 +000010438 tg3_hwmon_close(tp);
10439
Matt Carlson24bb4fb2009-10-05 17:55:29 +000010440 tg3_phy_stop(tp);
10441
David S. Millerf47c11e2005-06-24 20:18:35 -070010442 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010443
10444 tg3_disable_ints(tp);
10445
Michael Chan944d9802005-05-29 14:57:48 -070010446 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010447 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010448 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010449
David S. Millerf47c11e2005-06-24 20:18:35 -070010450 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010451
Matt Carlson4f125f42009-09-01 12:55:02 +000010452 for (i = tp->irq_cnt - 1; i >= 0; i--) {
10453 struct tg3_napi *tnapi = &tp->napi[i];
10454 free_irq(tnapi->irq_vec, tnapi);
10455 }
Matt Carlson07b01732009-08-28 14:01:15 +000010456
10457 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010458
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010459 tg3_napi_fini(tp);
10460
Linus Torvalds1da177e2005-04-16 15:20:36 -070010461 tg3_free_consistent(tp);
Michael Chan65138592012-09-28 07:12:41 +000010462}
10463
Michael Chand8f4cd32012-09-28 07:12:40 +000010464static int tg3_open(struct net_device *dev)
10465{
10466 struct tg3 *tp = netdev_priv(dev);
10467 int err;
10468
10469 if (tp->fw_needed) {
10470 err = tg3_request_firmware(tp);
10471 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
10472 if (err)
10473 return err;
10474 } else if (err) {
10475 netdev_warn(tp->dev, "TSO capability disabled\n");
10476 tg3_flag_clear(tp, TSO_CAPABLE);
10477 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
10478 netdev_notice(tp->dev, "TSO capability restored\n");
10479 tg3_flag_set(tp, TSO_CAPABLE);
10480 }
10481 }
10482
10483 netif_carrier_off(tp->dev);
10484
10485 err = tg3_power_up(tp);
10486 if (err)
10487 return err;
10488
10489 tg3_full_lock(tp, 0);
10490
10491 tg3_disable_ints(tp);
10492 tg3_flag_clear(tp, INIT_COMPLETE);
10493
10494 tg3_full_unlock(tp);
10495
10496 err = tg3_start(tp, true, true);
10497 if (err) {
10498 tg3_frob_aux_power(tp, false);
10499 pci_set_power_state(tp->pdev, PCI_D3hot);
10500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010501 return err;
10502}
10503
10504static int tg3_close(struct net_device *dev)
10505{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010506 struct tg3 *tp = netdev_priv(dev);
10507
Michael Chan65138592012-09-28 07:12:41 +000010508 tg3_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010509
10510 /* Clear stats across close / open calls */
10511 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
10512 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010513
10514 tg3_power_down(tp);
10515
10516 netif_carrier_off(tp->dev);
10517
10518 return 0;
10519}
10520
10521static inline u64 get_stat64(tg3_stat64_t *val)
10522{
10523 return ((u64)val->high << 32) | ((u64)val->low);
10524}
10525
10526static u64 tg3_calc_crc_errors(struct tg3 *tp)
10527{
10528 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10529
10530 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
10531 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
10532 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
10533 u32 val;
10534
10535 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
10536 tg3_writephy(tp, MII_TG3_TEST1,
10537 val | MII_TG3_TEST1_CRC_EN);
10538 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
10539 } else
10540 val = 0;
10541
10542 tp->phy_crc_errors += val;
10543
10544 return tp->phy_crc_errors;
10545 }
10546
10547 return get_stat64(&hw_stats->rx_fcs_errors);
10548}
10549
10550#define ESTAT_ADD(member) \
10551 estats->member = old_estats->member + \
10552 get_stat64(&hw_stats->member)
10553
10554static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
10555{
10556 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
10557 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10558
10559 ESTAT_ADD(rx_octets);
10560 ESTAT_ADD(rx_fragments);
10561 ESTAT_ADD(rx_ucast_packets);
10562 ESTAT_ADD(rx_mcast_packets);
10563 ESTAT_ADD(rx_bcast_packets);
10564 ESTAT_ADD(rx_fcs_errors);
10565 ESTAT_ADD(rx_align_errors);
10566 ESTAT_ADD(rx_xon_pause_rcvd);
10567 ESTAT_ADD(rx_xoff_pause_rcvd);
10568 ESTAT_ADD(rx_mac_ctrl_rcvd);
10569 ESTAT_ADD(rx_xoff_entered);
10570 ESTAT_ADD(rx_frame_too_long_errors);
10571 ESTAT_ADD(rx_jabbers);
10572 ESTAT_ADD(rx_undersize_packets);
10573 ESTAT_ADD(rx_in_length_errors);
10574 ESTAT_ADD(rx_out_length_errors);
10575 ESTAT_ADD(rx_64_or_less_octet_packets);
10576 ESTAT_ADD(rx_65_to_127_octet_packets);
10577 ESTAT_ADD(rx_128_to_255_octet_packets);
10578 ESTAT_ADD(rx_256_to_511_octet_packets);
10579 ESTAT_ADD(rx_512_to_1023_octet_packets);
10580 ESTAT_ADD(rx_1024_to_1522_octet_packets);
10581 ESTAT_ADD(rx_1523_to_2047_octet_packets);
10582 ESTAT_ADD(rx_2048_to_4095_octet_packets);
10583 ESTAT_ADD(rx_4096_to_8191_octet_packets);
10584 ESTAT_ADD(rx_8192_to_9022_octet_packets);
10585
10586 ESTAT_ADD(tx_octets);
10587 ESTAT_ADD(tx_collisions);
10588 ESTAT_ADD(tx_xon_sent);
10589 ESTAT_ADD(tx_xoff_sent);
10590 ESTAT_ADD(tx_flow_control);
10591 ESTAT_ADD(tx_mac_errors);
10592 ESTAT_ADD(tx_single_collisions);
10593 ESTAT_ADD(tx_mult_collisions);
10594 ESTAT_ADD(tx_deferred);
10595 ESTAT_ADD(tx_excessive_collisions);
10596 ESTAT_ADD(tx_late_collisions);
10597 ESTAT_ADD(tx_collide_2times);
10598 ESTAT_ADD(tx_collide_3times);
10599 ESTAT_ADD(tx_collide_4times);
10600 ESTAT_ADD(tx_collide_5times);
10601 ESTAT_ADD(tx_collide_6times);
10602 ESTAT_ADD(tx_collide_7times);
10603 ESTAT_ADD(tx_collide_8times);
10604 ESTAT_ADD(tx_collide_9times);
10605 ESTAT_ADD(tx_collide_10times);
10606 ESTAT_ADD(tx_collide_11times);
10607 ESTAT_ADD(tx_collide_12times);
10608 ESTAT_ADD(tx_collide_13times);
10609 ESTAT_ADD(tx_collide_14times);
10610 ESTAT_ADD(tx_collide_15times);
10611 ESTAT_ADD(tx_ucast_packets);
10612 ESTAT_ADD(tx_mcast_packets);
10613 ESTAT_ADD(tx_bcast_packets);
10614 ESTAT_ADD(tx_carrier_sense_errors);
10615 ESTAT_ADD(tx_discards);
10616 ESTAT_ADD(tx_errors);
10617
10618 ESTAT_ADD(dma_writeq_full);
10619 ESTAT_ADD(dma_write_prioq_full);
10620 ESTAT_ADD(rxbds_empty);
10621 ESTAT_ADD(rx_discards);
10622 ESTAT_ADD(rx_errors);
10623 ESTAT_ADD(rx_threshold_hit);
10624
10625 ESTAT_ADD(dma_readq_full);
10626 ESTAT_ADD(dma_read_prioq_full);
10627 ESTAT_ADD(tx_comp_queue_full);
10628
10629 ESTAT_ADD(ring_set_send_prod_index);
10630 ESTAT_ADD(ring_status_update);
10631 ESTAT_ADD(nic_irqs);
10632 ESTAT_ADD(nic_avoided_irqs);
10633 ESTAT_ADD(nic_tx_threshold_hit);
10634
Matt Carlson4452d092011-05-19 12:12:51 +000010635 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010636}
10637
Matt Carlson65ec6982012-02-28 23:33:37 +000010638static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010639{
Eric Dumazet511d2222010-07-07 20:44:24 +000010640 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010641 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10642
Linus Torvalds1da177e2005-04-16 15:20:36 -070010643 stats->rx_packets = old_stats->rx_packets +
10644 get_stat64(&hw_stats->rx_ucast_packets) +
10645 get_stat64(&hw_stats->rx_mcast_packets) +
10646 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010647
Linus Torvalds1da177e2005-04-16 15:20:36 -070010648 stats->tx_packets = old_stats->tx_packets +
10649 get_stat64(&hw_stats->tx_ucast_packets) +
10650 get_stat64(&hw_stats->tx_mcast_packets) +
10651 get_stat64(&hw_stats->tx_bcast_packets);
10652
10653 stats->rx_bytes = old_stats->rx_bytes +
10654 get_stat64(&hw_stats->rx_octets);
10655 stats->tx_bytes = old_stats->tx_bytes +
10656 get_stat64(&hw_stats->tx_octets);
10657
10658 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -070010659 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010660 stats->tx_errors = old_stats->tx_errors +
10661 get_stat64(&hw_stats->tx_errors) +
10662 get_stat64(&hw_stats->tx_mac_errors) +
10663 get_stat64(&hw_stats->tx_carrier_sense_errors) +
10664 get_stat64(&hw_stats->tx_discards);
10665
10666 stats->multicast = old_stats->multicast +
10667 get_stat64(&hw_stats->rx_mcast_packets);
10668 stats->collisions = old_stats->collisions +
10669 get_stat64(&hw_stats->tx_collisions);
10670
10671 stats->rx_length_errors = old_stats->rx_length_errors +
10672 get_stat64(&hw_stats->rx_frame_too_long_errors) +
10673 get_stat64(&hw_stats->rx_undersize_packets);
10674
10675 stats->rx_over_errors = old_stats->rx_over_errors +
10676 get_stat64(&hw_stats->rxbds_empty);
10677 stats->rx_frame_errors = old_stats->rx_frame_errors +
10678 get_stat64(&hw_stats->rx_align_errors);
10679 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
10680 get_stat64(&hw_stats->tx_discards);
10681 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
10682 get_stat64(&hw_stats->tx_carrier_sense_errors);
10683
10684 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000010685 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010686
John W. Linville4f63b872005-09-12 14:43:18 -070010687 stats->rx_missed_errors = old_stats->rx_missed_errors +
10688 get_stat64(&hw_stats->rx_discards);
10689
Eric Dumazetb0057c52010-10-10 19:55:52 +000010690 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000010691 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010692}
10693
Linus Torvalds1da177e2005-04-16 15:20:36 -070010694static int tg3_get_regs_len(struct net_device *dev)
10695{
Matt Carlson97bd8e42011-04-13 11:05:04 +000010696 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010697}
10698
10699static void tg3_get_regs(struct net_device *dev,
10700 struct ethtool_regs *regs, void *_p)
10701{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010702 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010703
10704 regs->version = 0;
10705
Matt Carlson97bd8e42011-04-13 11:05:04 +000010706 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010707
Matt Carlson80096062010-08-02 11:26:06 +000010708 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010709 return;
10710
David S. Millerf47c11e2005-06-24 20:18:35 -070010711 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010712
Matt Carlson97bd8e42011-04-13 11:05:04 +000010713 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010714
David S. Millerf47c11e2005-06-24 20:18:35 -070010715 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010716}
10717
10718static int tg3_get_eeprom_len(struct net_device *dev)
10719{
10720 struct tg3 *tp = netdev_priv(dev);
10721
10722 return tp->nvram_size;
10723}
10724
Linus Torvalds1da177e2005-04-16 15:20:36 -070010725static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10726{
10727 struct tg3 *tp = netdev_priv(dev);
10728 int ret;
10729 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080010730 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010731 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010732
Joe Perches63c3a662011-04-26 08:12:10 +000010733 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010734 return -EINVAL;
10735
Matt Carlson80096062010-08-02 11:26:06 +000010736 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010737 return -EAGAIN;
10738
Linus Torvalds1da177e2005-04-16 15:20:36 -070010739 offset = eeprom->offset;
10740 len = eeprom->len;
10741 eeprom->len = 0;
10742
10743 eeprom->magic = TG3_EEPROM_MAGIC;
10744
10745 if (offset & 3) {
10746 /* adjustments to start on required 4 byte boundary */
10747 b_offset = offset & 3;
10748 b_count = 4 - b_offset;
10749 if (b_count > len) {
10750 /* i.e. offset=1 len=2 */
10751 b_count = len;
10752 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000010753 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010754 if (ret)
10755 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000010756 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010757 len -= b_count;
10758 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010759 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010760 }
10761
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010762 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010763 pd = &data[eeprom->len];
10764 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010765 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010766 if (ret) {
10767 eeprom->len += i;
10768 return ret;
10769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010770 memcpy(pd + i, &val, 4);
10771 }
10772 eeprom->len += i;
10773
10774 if (len & 3) {
10775 /* read last bytes not ending on 4 byte boundary */
10776 pd = &data[eeprom->len];
10777 b_count = len & 3;
10778 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010779 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010780 if (ret)
10781 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010782 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010783 eeprom->len += b_count;
10784 }
10785 return 0;
10786}
10787
Linus Torvalds1da177e2005-04-16 15:20:36 -070010788static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10789{
10790 struct tg3 *tp = netdev_priv(dev);
10791 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010792 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010793 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010794 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010795
Matt Carlson80096062010-08-02 11:26:06 +000010796 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010797 return -EAGAIN;
10798
Joe Perches63c3a662011-04-26 08:12:10 +000010799 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000010800 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010801 return -EINVAL;
10802
10803 offset = eeprom->offset;
10804 len = eeprom->len;
10805
10806 if ((b_offset = (offset & 3))) {
10807 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010808 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010809 if (ret)
10810 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010811 len += b_offset;
10812 offset &= ~3;
Michael Chan1c8594b42005-04-21 17:12:46 -070010813 if (len < 4)
10814 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010815 }
10816
10817 odd_len = 0;
Michael Chan1c8594b42005-04-21 17:12:46 -070010818 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010819 /* adjustments to end on required 4 byte boundary */
10820 odd_len = 1;
10821 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010822 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010823 if (ret)
10824 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010825 }
10826
10827 buf = data;
10828 if (b_offset || odd_len) {
10829 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010830 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010831 return -ENOMEM;
10832 if (b_offset)
10833 memcpy(buf, &start, 4);
10834 if (odd_len)
10835 memcpy(buf+len-4, &end, 4);
10836 memcpy(buf + b_offset, data, eeprom->len);
10837 }
10838
10839 ret = tg3_nvram_write_block(tp, offset, len, buf);
10840
10841 if (buf != data)
10842 kfree(buf);
10843
10844 return ret;
10845}
10846
10847static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10848{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010849 struct tg3 *tp = netdev_priv(dev);
10850
Joe Perches63c3a662011-04-26 08:12:10 +000010851 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010852 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010853 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010854 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010855 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10856 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010857 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010858
Linus Torvalds1da177e2005-04-16 15:20:36 -070010859 cmd->supported = (SUPPORTED_Autoneg);
10860
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010861 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010862 cmd->supported |= (SUPPORTED_1000baseT_Half |
10863 SUPPORTED_1000baseT_Full);
10864
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010865 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010866 cmd->supported |= (SUPPORTED_100baseT_Half |
10867 SUPPORTED_100baseT_Full |
10868 SUPPORTED_10baseT_Half |
10869 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080010870 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070010871 cmd->port = PORT_TP;
10872 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010873 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070010874 cmd->port = PORT_FIBRE;
10875 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010876
Linus Torvalds1da177e2005-04-16 15:20:36 -070010877 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000010878 if (tg3_flag(tp, PAUSE_AUTONEG)) {
10879 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
10880 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10881 cmd->advertising |= ADVERTISED_Pause;
10882 } else {
10883 cmd->advertising |= ADVERTISED_Pause |
10884 ADVERTISED_Asym_Pause;
10885 }
10886 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10887 cmd->advertising |= ADVERTISED_Asym_Pause;
10888 }
10889 }
Matt Carlson859edb22011-12-08 14:40:16 +000010890 if (netif_running(dev) && netif_carrier_ok(dev)) {
David Decotigny70739492011-04-27 18:32:40 +000010891 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010892 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000010893 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000010894 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
10895 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
10896 cmd->eth_tp_mdix = ETH_TP_MDI_X;
10897 else
10898 cmd->eth_tp_mdix = ETH_TP_MDI;
10899 }
Matt Carlson64c22182010-10-14 10:37:44 +000010900 } else {
Matt Carlsone7405222012-02-13 15:20:16 +000010901 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
10902 cmd->duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +000010903 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010904 }
Matt Carlson882e9792009-09-01 13:21:36 +000010905 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010906 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010907 cmd->autoneg = tp->link_config.autoneg;
10908 cmd->maxtxpkt = 0;
10909 cmd->maxrxpkt = 0;
10910 return 0;
10911}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010912
Linus Torvalds1da177e2005-04-16 15:20:36 -070010913static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10914{
10915 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000010916 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010917
Joe Perches63c3a662011-04-26 08:12:10 +000010918 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010919 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010920 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010921 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010922 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10923 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010924 }
10925
Matt Carlson7e5856b2009-02-25 14:23:01 +000010926 if (cmd->autoneg != AUTONEG_ENABLE &&
10927 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070010928 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010929
10930 if (cmd->autoneg == AUTONEG_DISABLE &&
10931 cmd->duplex != DUPLEX_FULL &&
10932 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070010933 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010934
Matt Carlson7e5856b2009-02-25 14:23:01 +000010935 if (cmd->autoneg == AUTONEG_ENABLE) {
10936 u32 mask = ADVERTISED_Autoneg |
10937 ADVERTISED_Pause |
10938 ADVERTISED_Asym_Pause;
10939
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010940 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010941 mask |= ADVERTISED_1000baseT_Half |
10942 ADVERTISED_1000baseT_Full;
10943
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010944 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010945 mask |= ADVERTISED_100baseT_Half |
10946 ADVERTISED_100baseT_Full |
10947 ADVERTISED_10baseT_Half |
10948 ADVERTISED_10baseT_Full |
10949 ADVERTISED_TP;
10950 else
10951 mask |= ADVERTISED_FIBRE;
10952
10953 if (cmd->advertising & ~mask)
10954 return -EINVAL;
10955
10956 mask &= (ADVERTISED_1000baseT_Half |
10957 ADVERTISED_1000baseT_Full |
10958 ADVERTISED_100baseT_Half |
10959 ADVERTISED_100baseT_Full |
10960 ADVERTISED_10baseT_Half |
10961 ADVERTISED_10baseT_Full);
10962
10963 cmd->advertising &= mask;
10964 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010965 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000010966 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010967 return -EINVAL;
10968
10969 if (cmd->duplex != DUPLEX_FULL)
10970 return -EINVAL;
10971 } else {
David Decotigny25db0332011-04-27 18:32:39 +000010972 if (speed != SPEED_100 &&
10973 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010974 return -EINVAL;
10975 }
10976 }
10977
David S. Millerf47c11e2005-06-24 20:18:35 -070010978 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010979
10980 tp->link_config.autoneg = cmd->autoneg;
10981 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070010982 tp->link_config.advertising = (cmd->advertising |
10983 ADVERTISED_Autoneg);
Matt Carlsone7405222012-02-13 15:20:16 +000010984 tp->link_config.speed = SPEED_UNKNOWN;
10985 tp->link_config.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010986 } else {
10987 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000010988 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010989 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010990 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010991
Linus Torvalds1da177e2005-04-16 15:20:36 -070010992 if (netif_running(dev))
10993 tg3_setup_phy(tp, 1);
10994
David S. Millerf47c11e2005-06-24 20:18:35 -070010995 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010996
Linus Torvalds1da177e2005-04-16 15:20:36 -070010997 return 0;
10998}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010999
Linus Torvalds1da177e2005-04-16 15:20:36 -070011000static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
11001{
11002 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011003
Rick Jones68aad782011-11-07 13:29:27 +000011004 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
11005 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
11006 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
11007 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011008}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011009
Linus Torvalds1da177e2005-04-16 15:20:36 -070011010static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11011{
11012 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011013
Joe Perches63c3a662011-04-26 08:12:10 +000011014 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070011015 wol->supported = WAKE_MAGIC;
11016 else
11017 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011018 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011019 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011020 wol->wolopts = WAKE_MAGIC;
11021 memset(&wol->sopass, 0, sizeof(wol->sopass));
11022}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011023
Linus Torvalds1da177e2005-04-16 15:20:36 -070011024static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11025{
11026 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070011027 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011028
Linus Torvalds1da177e2005-04-16 15:20:36 -070011029 if (wol->wolopts & ~WAKE_MAGIC)
11030 return -EINVAL;
11031 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011032 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011033 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011034
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011035 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
11036
David S. Millerf47c11e2005-06-24 20:18:35 -070011037 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011038 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000011039 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011040 else
Joe Perches63c3a662011-04-26 08:12:10 +000011041 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070011042 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011043
Linus Torvalds1da177e2005-04-16 15:20:36 -070011044 return 0;
11045}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011046
Linus Torvalds1da177e2005-04-16 15:20:36 -070011047static u32 tg3_get_msglevel(struct net_device *dev)
11048{
11049 struct tg3 *tp = netdev_priv(dev);
11050 return tp->msg_enable;
11051}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011052
Linus Torvalds1da177e2005-04-16 15:20:36 -070011053static void tg3_set_msglevel(struct net_device *dev, u32 value)
11054{
11055 struct tg3 *tp = netdev_priv(dev);
11056 tp->msg_enable = value;
11057}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011058
Linus Torvalds1da177e2005-04-16 15:20:36 -070011059static int tg3_nway_reset(struct net_device *dev)
11060{
11061 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011062 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011063
Linus Torvalds1da177e2005-04-16 15:20:36 -070011064 if (!netif_running(dev))
11065 return -EAGAIN;
11066
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011067 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070011068 return -EINVAL;
11069
Joe Perches63c3a662011-04-26 08:12:10 +000011070 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011071 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011072 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011073 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011074 } else {
11075 u32 bmcr;
11076
11077 spin_lock_bh(&tp->lock);
11078 r = -EINVAL;
11079 tg3_readphy(tp, MII_BMCR, &bmcr);
11080 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
11081 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011082 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011083 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
11084 BMCR_ANENABLE);
11085 r = 0;
11086 }
11087 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011088 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011089
Linus Torvalds1da177e2005-04-16 15:20:36 -070011090 return r;
11091}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011092
Linus Torvalds1da177e2005-04-16 15:20:36 -070011093static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11094{
11095 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011096
Matt Carlson2c49a442010-09-30 10:34:35 +000011097 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000011098 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000011099 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080011100 else
11101 ering->rx_jumbo_max_pending = 0;
11102
11103 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011104
11105 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000011106 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080011107 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
11108 else
11109 ering->rx_jumbo_pending = 0;
11110
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011111 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011112}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011113
Linus Torvalds1da177e2005-04-16 15:20:36 -070011114static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11115{
11116 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000011117 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011118
Matt Carlson2c49a442010-09-30 10:34:35 +000011119 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
11120 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070011121 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
11122 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000011123 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070011124 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011125 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011126
Michael Chanbbe832c2005-06-24 20:20:04 -070011127 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011128 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011129 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011130 irq_sync = 1;
11131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011132
Michael Chanbbe832c2005-06-24 20:20:04 -070011133 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011134
Linus Torvalds1da177e2005-04-16 15:20:36 -070011135 tp->rx_pending = ering->rx_pending;
11136
Joe Perches63c3a662011-04-26 08:12:10 +000011137 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070011138 tp->rx_pending > 63)
11139 tp->rx_pending = 63;
11140 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000011141
Matt Carlson6fd45cb2010-09-15 08:59:57 +000011142 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000011143 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011144
11145 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070011146 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070011147 err = tg3_restart_hw(tp, 1);
11148 if (!err)
11149 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011150 }
11151
David S. Millerf47c11e2005-06-24 20:18:35 -070011152 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011153
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011154 if (irq_sync && !err)
11155 tg3_phy_start(tp);
11156
Michael Chanb9ec6c12006-07-25 16:37:27 -070011157 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011158}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011159
Linus Torvalds1da177e2005-04-16 15:20:36 -070011160static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
11161{
11162 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011163
Joe Perches63c3a662011-04-26 08:12:10 +000011164 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080011165
Matt Carlson4a2db502011-12-08 14:40:17 +000011166 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080011167 epause->rx_pause = 1;
11168 else
11169 epause->rx_pause = 0;
11170
Matt Carlson4a2db502011-12-08 14:40:17 +000011171 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080011172 epause->tx_pause = 1;
11173 else
11174 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011175}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011176
Linus Torvalds1da177e2005-04-16 15:20:36 -070011177static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
11178{
11179 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011180 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011181
Joe Perches63c3a662011-04-26 08:12:10 +000011182 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000011183 u32 newadv;
11184 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011185
Matt Carlson27121682010-02-17 15:16:57 +000011186 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011187
Matt Carlson27121682010-02-17 15:16:57 +000011188 if (!(phydev->supported & SUPPORTED_Pause) ||
11189 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000011190 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000011191 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011192
Matt Carlson27121682010-02-17 15:16:57 +000011193 tp->link_config.flowctrl = 0;
11194 if (epause->rx_pause) {
11195 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011196
Matt Carlson27121682010-02-17 15:16:57 +000011197 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080011198 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000011199 newadv = ADVERTISED_Pause;
11200 } else
11201 newadv = ADVERTISED_Pause |
11202 ADVERTISED_Asym_Pause;
11203 } else if (epause->tx_pause) {
11204 tp->link_config.flowctrl |= FLOW_CTRL_TX;
11205 newadv = ADVERTISED_Asym_Pause;
11206 } else
11207 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011208
Matt Carlson27121682010-02-17 15:16:57 +000011209 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000011210 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000011211 else
Joe Perches63c3a662011-04-26 08:12:10 +000011212 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000011213
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011214 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000011215 u32 oldadv = phydev->advertising &
11216 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
11217 if (oldadv != newadv) {
11218 phydev->advertising &=
11219 ~(ADVERTISED_Pause |
11220 ADVERTISED_Asym_Pause);
11221 phydev->advertising |= newadv;
11222 if (phydev->autoneg) {
11223 /*
11224 * Always renegotiate the link to
11225 * inform our link partner of our
11226 * flow control settings, even if the
11227 * flow control is forced. Let
11228 * tg3_adjust_link() do the final
11229 * flow control setup.
11230 */
11231 return phy_start_aneg(phydev);
11232 }
11233 }
11234
11235 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011236 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000011237 } else {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000011238 tp->link_config.advertising &=
Matt Carlson27121682010-02-17 15:16:57 +000011239 ~(ADVERTISED_Pause |
11240 ADVERTISED_Asym_Pause);
Matt Carlsonc6700ce2012-02-13 15:20:15 +000011241 tp->link_config.advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011242 }
11243 } else {
11244 int irq_sync = 0;
11245
11246 if (netif_running(dev)) {
11247 tg3_netif_stop(tp);
11248 irq_sync = 1;
11249 }
11250
11251 tg3_full_lock(tp, irq_sync);
11252
11253 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000011254 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011255 else
Joe Perches63c3a662011-04-26 08:12:10 +000011256 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011257 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080011258 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011259 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080011260 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011261 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080011262 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011263 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080011264 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011265
11266 if (netif_running(dev)) {
11267 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11268 err = tg3_restart_hw(tp, 1);
11269 if (!err)
11270 tg3_netif_start(tp);
11271 }
11272
11273 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011275
Michael Chanb9ec6c12006-07-25 16:37:27 -070011276 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011277}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011278
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011279static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011280{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011281 switch (sset) {
11282 case ETH_SS_TEST:
11283 return TG3_NUM_TEST;
11284 case ETH_SS_STATS:
11285 return TG3_NUM_STATS;
11286 default:
11287 return -EOPNOTSUPP;
11288 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070011289}
11290
Matt Carlson90415472011-12-16 13:33:23 +000011291static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
11292 u32 *rules __always_unused)
11293{
11294 struct tg3 *tp = netdev_priv(dev);
11295
11296 if (!tg3_flag(tp, SUPPORT_MSIX))
11297 return -EOPNOTSUPP;
11298
11299 switch (info->cmd) {
11300 case ETHTOOL_GRXRINGS:
11301 if (netif_running(tp->dev))
Michael Chan91024262012-09-28 07:12:38 +000011302 info->data = tp->rxq_cnt;
Matt Carlson90415472011-12-16 13:33:23 +000011303 else {
11304 info->data = num_online_cpus();
Michael Chan91024262012-09-28 07:12:38 +000011305 if (info->data > TG3_RSS_MAX_NUM_QS)
11306 info->data = TG3_RSS_MAX_NUM_QS;
Matt Carlson90415472011-12-16 13:33:23 +000011307 }
11308
11309 /* The first interrupt vector only
11310 * handles link interrupts.
11311 */
11312 info->data -= 1;
11313 return 0;
11314
11315 default:
11316 return -EOPNOTSUPP;
11317 }
11318}
11319
11320static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
11321{
11322 u32 size = 0;
11323 struct tg3 *tp = netdev_priv(dev);
11324
11325 if (tg3_flag(tp, SUPPORT_MSIX))
11326 size = TG3_RSS_INDIR_TBL_SIZE;
11327
11328 return size;
11329}
11330
11331static int tg3_get_rxfh_indir(struct net_device *dev, u32 *indir)
11332{
11333 struct tg3 *tp = netdev_priv(dev);
11334 int i;
11335
11336 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
11337 indir[i] = tp->rss_ind_tbl[i];
11338
11339 return 0;
11340}
11341
11342static int tg3_set_rxfh_indir(struct net_device *dev, const u32 *indir)
11343{
11344 struct tg3 *tp = netdev_priv(dev);
11345 size_t i;
11346
11347 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
11348 tp->rss_ind_tbl[i] = indir[i];
11349
11350 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
11351 return 0;
11352
11353 /* It is legal to write the indirection
11354 * table while the device is running.
11355 */
11356 tg3_full_lock(tp, 0);
11357 tg3_rss_write_indir_tbl(tp);
11358 tg3_full_unlock(tp);
11359
11360 return 0;
11361}
11362
Michael Chan09681692012-09-28 07:12:42 +000011363static void tg3_get_channels(struct net_device *dev,
11364 struct ethtool_channels *channel)
11365{
11366 struct tg3 *tp = netdev_priv(dev);
11367 u32 deflt_qs = netif_get_num_default_rss_queues();
11368
11369 channel->max_rx = tp->rxq_max;
11370 channel->max_tx = tp->txq_max;
11371
11372 if (netif_running(dev)) {
11373 channel->rx_count = tp->rxq_cnt;
11374 channel->tx_count = tp->txq_cnt;
11375 } else {
11376 if (tp->rxq_req)
11377 channel->rx_count = tp->rxq_req;
11378 else
11379 channel->rx_count = min(deflt_qs, tp->rxq_max);
11380
11381 if (tp->txq_req)
11382 channel->tx_count = tp->txq_req;
11383 else
11384 channel->tx_count = min(deflt_qs, tp->txq_max);
11385 }
11386}
11387
11388static int tg3_set_channels(struct net_device *dev,
11389 struct ethtool_channels *channel)
11390{
11391 struct tg3 *tp = netdev_priv(dev);
11392
11393 if (!tg3_flag(tp, SUPPORT_MSIX))
11394 return -EOPNOTSUPP;
11395
11396 if (channel->rx_count > tp->rxq_max ||
11397 channel->tx_count > tp->txq_max)
11398 return -EINVAL;
11399
11400 tp->rxq_req = channel->rx_count;
11401 tp->txq_req = channel->tx_count;
11402
11403 if (!netif_running(dev))
11404 return 0;
11405
11406 tg3_stop(tp);
11407
11408 netif_carrier_off(dev);
11409
11410 tg3_start(tp, true, false);
11411
11412 return 0;
11413}
11414
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011415static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011416{
11417 switch (stringset) {
11418 case ETH_SS_STATS:
11419 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
11420 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070011421 case ETH_SS_TEST:
11422 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
11423 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011424 default:
11425 WARN_ON(1); /* we need a WARN() */
11426 break;
11427 }
11428}
11429
stephen hemminger81b87092011-04-04 08:43:50 +000011430static int tg3_set_phys_id(struct net_device *dev,
11431 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070011432{
11433 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070011434
11435 if (!netif_running(tp->dev))
11436 return -EAGAIN;
11437
stephen hemminger81b87092011-04-04 08:43:50 +000011438 switch (state) {
11439 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000011440 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070011441
stephen hemminger81b87092011-04-04 08:43:50 +000011442 case ETHTOOL_ID_ON:
11443 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
11444 LED_CTRL_1000MBPS_ON |
11445 LED_CTRL_100MBPS_ON |
11446 LED_CTRL_10MBPS_ON |
11447 LED_CTRL_TRAFFIC_OVERRIDE |
11448 LED_CTRL_TRAFFIC_BLINK |
11449 LED_CTRL_TRAFFIC_LED);
11450 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011451
stephen hemminger81b87092011-04-04 08:43:50 +000011452 case ETHTOOL_ID_OFF:
11453 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
11454 LED_CTRL_TRAFFIC_OVERRIDE);
11455 break;
Michael Chan4009a932005-09-05 17:52:54 -070011456
stephen hemminger81b87092011-04-04 08:43:50 +000011457 case ETHTOOL_ID_INACTIVE:
11458 tw32(MAC_LED_CTRL, tp->led_ctrl);
11459 break;
Michael Chan4009a932005-09-05 17:52:54 -070011460 }
stephen hemminger81b87092011-04-04 08:43:50 +000011461
Michael Chan4009a932005-09-05 17:52:54 -070011462 return 0;
11463}
11464
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011465static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011466 struct ethtool_stats *estats, u64 *tmp_stats)
11467{
11468 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000011469
Matt Carlsonb546e462012-02-13 15:20:09 +000011470 if (tp->hw_stats)
11471 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
11472 else
11473 memset(tmp_stats, 0, sizeof(struct tg3_ethtool_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011474}
11475
Matt Carlson535a4902011-07-20 10:20:56 +000011476static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000011477{
11478 int i;
11479 __be32 *buf;
11480 u32 offset = 0, len = 0;
11481 u32 magic, val;
11482
Joe Perches63c3a662011-04-26 08:12:10 +000011483 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000011484 return NULL;
11485
11486 if (magic == TG3_EEPROM_MAGIC) {
11487 for (offset = TG3_NVM_DIR_START;
11488 offset < TG3_NVM_DIR_END;
11489 offset += TG3_NVM_DIRENT_SIZE) {
11490 if (tg3_nvram_read(tp, offset, &val))
11491 return NULL;
11492
11493 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
11494 TG3_NVM_DIRTYPE_EXTVPD)
11495 break;
11496 }
11497
11498 if (offset != TG3_NVM_DIR_END) {
11499 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
11500 if (tg3_nvram_read(tp, offset + 4, &offset))
11501 return NULL;
11502
11503 offset = tg3_nvram_logical_addr(tp, offset);
11504 }
11505 }
11506
11507 if (!offset || !len) {
11508 offset = TG3_NVM_VPD_OFF;
11509 len = TG3_NVM_VPD_LEN;
11510 }
11511
11512 buf = kmalloc(len, GFP_KERNEL);
11513 if (buf == NULL)
11514 return NULL;
11515
11516 if (magic == TG3_EEPROM_MAGIC) {
11517 for (i = 0; i < len; i += 4) {
11518 /* The data is in little-endian format in NVRAM.
11519 * Use the big-endian read routines to preserve
11520 * the byte order as it exists in NVRAM.
11521 */
11522 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
11523 goto error;
11524 }
11525 } else {
11526 u8 *ptr;
11527 ssize_t cnt;
11528 unsigned int pos = 0;
11529
11530 ptr = (u8 *)&buf[0];
11531 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
11532 cnt = pci_read_vpd(tp->pdev, pos,
11533 len - pos, ptr);
11534 if (cnt == -ETIMEDOUT || cnt == -EINTR)
11535 cnt = 0;
11536 else if (cnt < 0)
11537 goto error;
11538 }
11539 if (pos != len)
11540 goto error;
11541 }
11542
Matt Carlson535a4902011-07-20 10:20:56 +000011543 *vpdlen = len;
11544
Matt Carlsonc3e94502011-04-13 11:05:08 +000011545 return buf;
11546
11547error:
11548 kfree(buf);
11549 return NULL;
11550}
11551
Michael Chan566f86a2005-05-29 14:56:58 -070011552#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080011553#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
11554#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
11555#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000011556#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
11557#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000011558#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070011559#define NVRAM_SELFBOOT_HW_SIZE 0x20
11560#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070011561
11562static int tg3_test_nvram(struct tg3 *tp)
11563{
Matt Carlson535a4902011-07-20 10:20:56 +000011564 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011565 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010011566 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070011567
Joe Perches63c3a662011-04-26 08:12:10 +000011568 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000011569 return 0;
11570
Matt Carlsone4f34112009-02-25 14:25:00 +000011571 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011572 return -EIO;
11573
Michael Chan1b277772006-03-20 22:27:48 -080011574 if (magic == TG3_EEPROM_MAGIC)
11575 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070011576 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080011577 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
11578 TG3_EEPROM_SB_FORMAT_1) {
11579 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
11580 case TG3_EEPROM_SB_REVISION_0:
11581 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
11582 break;
11583 case TG3_EEPROM_SB_REVISION_2:
11584 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
11585 break;
11586 case TG3_EEPROM_SB_REVISION_3:
11587 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
11588 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000011589 case TG3_EEPROM_SB_REVISION_4:
11590 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
11591 break;
11592 case TG3_EEPROM_SB_REVISION_5:
11593 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
11594 break;
11595 case TG3_EEPROM_SB_REVISION_6:
11596 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
11597 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080011598 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000011599 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080011600 }
11601 } else
Michael Chan1b277772006-03-20 22:27:48 -080011602 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070011603 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
11604 size = NVRAM_SELFBOOT_HW_SIZE;
11605 else
Michael Chan1b277772006-03-20 22:27:48 -080011606 return -EIO;
11607
11608 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070011609 if (buf == NULL)
11610 return -ENOMEM;
11611
Michael Chan1b277772006-03-20 22:27:48 -080011612 err = -EIO;
11613 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011614 err = tg3_nvram_read_be32(tp, i, &buf[j]);
11615 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070011616 break;
Michael Chan566f86a2005-05-29 14:56:58 -070011617 }
Michael Chan1b277772006-03-20 22:27:48 -080011618 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070011619 goto out;
11620
Michael Chan1b277772006-03-20 22:27:48 -080011621 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000011622 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080011623 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070011624 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080011625 u8 *buf8 = (u8 *) buf, csum8 = 0;
11626
Al Virob9fc7dc2007-12-17 22:59:57 -080011627 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080011628 TG3_EEPROM_SB_REVISION_2) {
11629 /* For rev 2, the csum doesn't include the MBA. */
11630 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
11631 csum8 += buf8[i];
11632 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
11633 csum8 += buf8[i];
11634 } else {
11635 for (i = 0; i < size; i++)
11636 csum8 += buf8[i];
11637 }
Michael Chan1b277772006-03-20 22:27:48 -080011638
Adrian Bunkad96b482006-04-05 22:21:04 -070011639 if (csum8 == 0) {
11640 err = 0;
11641 goto out;
11642 }
11643
11644 err = -EIO;
11645 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080011646 }
Michael Chan566f86a2005-05-29 14:56:58 -070011647
Al Virob9fc7dc2007-12-17 22:59:57 -080011648 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070011649 TG3_EEPROM_MAGIC_HW) {
11650 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000011651 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070011652 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070011653
11654 /* Separate the parity bits and the data bytes. */
11655 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
11656 if ((i == 0) || (i == 8)) {
11657 int l;
11658 u8 msk;
11659
11660 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
11661 parity[k++] = buf8[i] & msk;
11662 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000011663 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070011664 int l;
11665 u8 msk;
11666
11667 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
11668 parity[k++] = buf8[i] & msk;
11669 i++;
11670
11671 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
11672 parity[k++] = buf8[i] & msk;
11673 i++;
11674 }
11675 data[j++] = buf8[i];
11676 }
11677
11678 err = -EIO;
11679 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
11680 u8 hw8 = hweight8(data[i]);
11681
11682 if ((hw8 & 0x1) && parity[i])
11683 goto out;
11684 else if (!(hw8 & 0x1) && !parity[i])
11685 goto out;
11686 }
11687 err = 0;
11688 goto out;
11689 }
11690
Matt Carlson01c3a392011-03-09 16:58:20 +000011691 err = -EIO;
11692
Michael Chan566f86a2005-05-29 14:56:58 -070011693 /* Bootstrap checksum at offset 0x10 */
11694 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000011695 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070011696 goto out;
11697
11698 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
11699 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000011700 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000011701 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070011702
Matt Carlsonc3e94502011-04-13 11:05:08 +000011703 kfree(buf);
11704
Matt Carlson535a4902011-07-20 10:20:56 +000011705 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000011706 if (!buf)
11707 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000011708
Matt Carlson535a4902011-07-20 10:20:56 +000011709 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000011710 if (i > 0) {
11711 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
11712 if (j < 0)
11713 goto out;
11714
Matt Carlson535a4902011-07-20 10:20:56 +000011715 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000011716 goto out;
11717
11718 i += PCI_VPD_LRDT_TAG_SIZE;
11719 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
11720 PCI_VPD_RO_KEYWORD_CHKSUM);
11721 if (j > 0) {
11722 u8 csum8 = 0;
11723
11724 j += PCI_VPD_INFO_FLD_HDR_SIZE;
11725
11726 for (i = 0; i <= j; i++)
11727 csum8 += ((u8 *)buf)[i];
11728
11729 if (csum8)
11730 goto out;
11731 }
11732 }
11733
Michael Chan566f86a2005-05-29 14:56:58 -070011734 err = 0;
11735
11736out:
11737 kfree(buf);
11738 return err;
11739}
11740
Michael Chanca430072005-05-29 14:57:23 -070011741#define TG3_SERDES_TIMEOUT_SEC 2
11742#define TG3_COPPER_TIMEOUT_SEC 6
11743
11744static int tg3_test_link(struct tg3 *tp)
11745{
11746 int i, max;
11747
11748 if (!netif_running(tp->dev))
11749 return -ENODEV;
11750
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011751 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070011752 max = TG3_SERDES_TIMEOUT_SEC;
11753 else
11754 max = TG3_COPPER_TIMEOUT_SEC;
11755
11756 for (i = 0; i < max; i++) {
11757 if (netif_carrier_ok(tp->dev))
11758 return 0;
11759
11760 if (msleep_interruptible(1000))
11761 break;
11762 }
11763
11764 return -EIO;
11765}
11766
Michael Chana71116d2005-05-29 14:58:11 -070011767/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080011768static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070011769{
Michael Chanb16250e2006-09-27 16:10:14 -070011770 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070011771 u32 offset, read_mask, write_mask, val, save_val, read_val;
11772 static struct {
11773 u16 offset;
11774 u16 flags;
11775#define TG3_FL_5705 0x1
11776#define TG3_FL_NOT_5705 0x2
11777#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070011778#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070011779 u32 read_mask;
11780 u32 write_mask;
11781 } reg_tbl[] = {
11782 /* MAC Control Registers */
11783 { MAC_MODE, TG3_FL_NOT_5705,
11784 0x00000000, 0x00ef6f8c },
11785 { MAC_MODE, TG3_FL_5705,
11786 0x00000000, 0x01ef6b8c },
11787 { MAC_STATUS, TG3_FL_NOT_5705,
11788 0x03800107, 0x00000000 },
11789 { MAC_STATUS, TG3_FL_5705,
11790 0x03800100, 0x00000000 },
11791 { MAC_ADDR_0_HIGH, 0x0000,
11792 0x00000000, 0x0000ffff },
11793 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011794 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070011795 { MAC_RX_MTU_SIZE, 0x0000,
11796 0x00000000, 0x0000ffff },
11797 { MAC_TX_MODE, 0x0000,
11798 0x00000000, 0x00000070 },
11799 { MAC_TX_LENGTHS, 0x0000,
11800 0x00000000, 0x00003fff },
11801 { MAC_RX_MODE, TG3_FL_NOT_5705,
11802 0x00000000, 0x000007fc },
11803 { MAC_RX_MODE, TG3_FL_5705,
11804 0x00000000, 0x000007dc },
11805 { MAC_HASH_REG_0, 0x0000,
11806 0x00000000, 0xffffffff },
11807 { MAC_HASH_REG_1, 0x0000,
11808 0x00000000, 0xffffffff },
11809 { MAC_HASH_REG_2, 0x0000,
11810 0x00000000, 0xffffffff },
11811 { MAC_HASH_REG_3, 0x0000,
11812 0x00000000, 0xffffffff },
11813
11814 /* Receive Data and Receive BD Initiator Control Registers. */
11815 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
11816 0x00000000, 0xffffffff },
11817 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
11818 0x00000000, 0xffffffff },
11819 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
11820 0x00000000, 0x00000003 },
11821 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
11822 0x00000000, 0xffffffff },
11823 { RCVDBDI_STD_BD+0, 0x0000,
11824 0x00000000, 0xffffffff },
11825 { RCVDBDI_STD_BD+4, 0x0000,
11826 0x00000000, 0xffffffff },
11827 { RCVDBDI_STD_BD+8, 0x0000,
11828 0x00000000, 0xffff0002 },
11829 { RCVDBDI_STD_BD+0xc, 0x0000,
11830 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011831
Michael Chana71116d2005-05-29 14:58:11 -070011832 /* Receive BD Initiator Control Registers. */
11833 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
11834 0x00000000, 0xffffffff },
11835 { RCVBDI_STD_THRESH, TG3_FL_5705,
11836 0x00000000, 0x000003ff },
11837 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
11838 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011839
Michael Chana71116d2005-05-29 14:58:11 -070011840 /* Host Coalescing Control Registers. */
11841 { HOSTCC_MODE, TG3_FL_NOT_5705,
11842 0x00000000, 0x00000004 },
11843 { HOSTCC_MODE, TG3_FL_5705,
11844 0x00000000, 0x000000f6 },
11845 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
11846 0x00000000, 0xffffffff },
11847 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
11848 0x00000000, 0x000003ff },
11849 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
11850 0x00000000, 0xffffffff },
11851 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
11852 0x00000000, 0x000003ff },
11853 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
11854 0x00000000, 0xffffffff },
11855 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11856 0x00000000, 0x000000ff },
11857 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
11858 0x00000000, 0xffffffff },
11859 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11860 0x00000000, 0x000000ff },
11861 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
11862 0x00000000, 0xffffffff },
11863 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
11864 0x00000000, 0xffffffff },
11865 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11866 0x00000000, 0xffffffff },
11867 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11868 0x00000000, 0x000000ff },
11869 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11870 0x00000000, 0xffffffff },
11871 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11872 0x00000000, 0x000000ff },
11873 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
11874 0x00000000, 0xffffffff },
11875 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
11876 0x00000000, 0xffffffff },
11877 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
11878 0x00000000, 0xffffffff },
11879 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
11880 0x00000000, 0xffffffff },
11881 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
11882 0x00000000, 0xffffffff },
11883 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
11884 0xffffffff, 0x00000000 },
11885 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
11886 0xffffffff, 0x00000000 },
11887
11888 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070011889 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011890 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070011891 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011892 0x00000000, 0x007fffff },
11893 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
11894 0x00000000, 0x0000003f },
11895 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
11896 0x00000000, 0x000001ff },
11897 { BUFMGR_MB_HIGH_WATER, 0x0000,
11898 0x00000000, 0x000001ff },
11899 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
11900 0xffffffff, 0x00000000 },
11901 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
11902 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011903
Michael Chana71116d2005-05-29 14:58:11 -070011904 /* Mailbox Registers */
11905 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
11906 0x00000000, 0x000001ff },
11907 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
11908 0x00000000, 0x000001ff },
11909 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
11910 0x00000000, 0x000007ff },
11911 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
11912 0x00000000, 0x000001ff },
11913
11914 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
11915 };
11916
Michael Chanb16250e2006-09-27 16:10:14 -070011917 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011918 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070011919 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000011920 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070011921 is_5750 = 1;
11922 }
Michael Chana71116d2005-05-29 14:58:11 -070011923
11924 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
11925 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
11926 continue;
11927
11928 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
11929 continue;
11930
Joe Perches63c3a662011-04-26 08:12:10 +000011931 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070011932 (reg_tbl[i].flags & TG3_FL_NOT_5788))
11933 continue;
11934
Michael Chanb16250e2006-09-27 16:10:14 -070011935 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
11936 continue;
11937
Michael Chana71116d2005-05-29 14:58:11 -070011938 offset = (u32) reg_tbl[i].offset;
11939 read_mask = reg_tbl[i].read_mask;
11940 write_mask = reg_tbl[i].write_mask;
11941
11942 /* Save the original register content */
11943 save_val = tr32(offset);
11944
11945 /* Determine the read-only value. */
11946 read_val = save_val & read_mask;
11947
11948 /* Write zero to the register, then make sure the read-only bits
11949 * are not changed and the read/write bits are all zeros.
11950 */
11951 tw32(offset, 0);
11952
11953 val = tr32(offset);
11954
11955 /* Test the read-only and read/write bits. */
11956 if (((val & read_mask) != read_val) || (val & write_mask))
11957 goto out;
11958
11959 /* Write ones to all the bits defined by RdMask and WrMask, then
11960 * make sure the read-only bits are not changed and the
11961 * read/write bits are all ones.
11962 */
11963 tw32(offset, read_mask | write_mask);
11964
11965 val = tr32(offset);
11966
11967 /* Test the read-only bits. */
11968 if ((val & read_mask) != read_val)
11969 goto out;
11970
11971 /* Test the read/write bits. */
11972 if ((val & write_mask) != write_mask)
11973 goto out;
11974
11975 tw32(offset, save_val);
11976 }
11977
11978 return 0;
11979
11980out:
Michael Chan9f88f292006-12-07 00:22:54 -080011981 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000011982 netdev_err(tp->dev,
11983 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070011984 tw32(offset, save_val);
11985 return -EIO;
11986}
11987
Michael Chan7942e1d2005-05-29 14:58:36 -070011988static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
11989{
Arjan van de Venf71e1302006-03-03 21:33:57 -050011990 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070011991 int i;
11992 u32 j;
11993
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020011994 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070011995 for (j = 0; j < len; j += 4) {
11996 u32 val;
11997
11998 tg3_write_mem(tp, offset + j, test_pattern[i]);
11999 tg3_read_mem(tp, offset + j, &val);
12000 if (val != test_pattern[i])
12001 return -EIO;
12002 }
12003 }
12004 return 0;
12005}
12006
12007static int tg3_test_memory(struct tg3 *tp)
12008{
12009 static struct mem_entry {
12010 u32 offset;
12011 u32 len;
12012 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080012013 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070012014 { 0x00002000, 0x1c000},
12015 { 0xffffffff, 0x00000}
12016 }, mem_tbl_5705[] = {
12017 { 0x00000100, 0x0000c},
12018 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070012019 { 0x00004000, 0x00800},
12020 { 0x00006000, 0x01000},
12021 { 0x00008000, 0x02000},
12022 { 0x00010000, 0x0e000},
12023 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080012024 }, mem_tbl_5755[] = {
12025 { 0x00000200, 0x00008},
12026 { 0x00004000, 0x00800},
12027 { 0x00006000, 0x00800},
12028 { 0x00008000, 0x02000},
12029 { 0x00010000, 0x0c000},
12030 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070012031 }, mem_tbl_5906[] = {
12032 { 0x00000200, 0x00008},
12033 { 0x00004000, 0x00400},
12034 { 0x00006000, 0x00400},
12035 { 0x00008000, 0x01000},
12036 { 0x00010000, 0x01000},
12037 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012038 }, mem_tbl_5717[] = {
12039 { 0x00000200, 0x00008},
12040 { 0x00010000, 0x0a000},
12041 { 0x00020000, 0x13c00},
12042 { 0xffffffff, 0x00000}
12043 }, mem_tbl_57765[] = {
12044 { 0x00000200, 0x00008},
12045 { 0x00004000, 0x00800},
12046 { 0x00006000, 0x09800},
12047 { 0x00010000, 0x0a000},
12048 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070012049 };
12050 struct mem_entry *mem_tbl;
12051 int err = 0;
12052 int i;
12053
Joe Perches63c3a662011-04-26 08:12:10 +000012054 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012055 mem_tbl = mem_tbl_5717;
Matt Carlson55086ad2011-12-14 11:09:59 +000012056 else if (tg3_flag(tp, 57765_CLASS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012057 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000012058 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012059 mem_tbl = mem_tbl_5755;
12060 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12061 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000012062 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012063 mem_tbl = mem_tbl_5705;
12064 else
Michael Chan7942e1d2005-05-29 14:58:36 -070012065 mem_tbl = mem_tbl_570x;
12066
12067 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000012068 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
12069 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070012070 break;
12071 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012072
Michael Chan7942e1d2005-05-29 14:58:36 -070012073 return err;
12074}
12075
Matt Carlsonbb158d62011-04-25 12:42:47 +000012076#define TG3_TSO_MSS 500
12077
12078#define TG3_TSO_IP_HDR_LEN 20
12079#define TG3_TSO_TCP_HDR_LEN 20
12080#define TG3_TSO_TCP_OPT_LEN 12
12081
12082static const u8 tg3_tso_header[] = {
120830x08, 0x00,
120840x45, 0x00, 0x00, 0x00,
120850x00, 0x00, 0x40, 0x00,
120860x40, 0x06, 0x00, 0x00,
120870x0a, 0x00, 0x00, 0x01,
120880x0a, 0x00, 0x00, 0x02,
120890x0d, 0x00, 0xe0, 0x00,
120900x00, 0x00, 0x01, 0x00,
120910x00, 0x00, 0x02, 0x00,
120920x80, 0x10, 0x10, 0x00,
120930x14, 0x09, 0x00, 0x00,
120940x01, 0x01, 0x08, 0x0a,
120950x11, 0x11, 0x11, 0x11,
120960x11, 0x11, 0x11, 0x11,
12097};
Michael Chan9f40dea2005-09-05 17:53:06 -070012098
Matt Carlson28a45952011-08-19 13:58:22 +000012099static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070012100{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012101 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012102 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000012103 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000012104 struct sk_buff *skb;
12105 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070012106 dma_addr_t map;
12107 int num_pkts, tx_len, rx_len, i, err;
12108 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000012109 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000012110 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070012111
Matt Carlsonc8873402010-02-12 14:47:11 +000012112 tnapi = &tp->napi[0];
12113 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012114 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000012115 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000012116 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000012117 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000012118 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012119 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012120 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000012121
Michael Chanc76949a2005-05-29 14:58:59 -070012122 err = -EIO;
12123
Matt Carlson4852a862011-04-13 11:05:07 +000012124 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070012125 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070012126 if (!skb)
12127 return -ENOMEM;
12128
Michael Chanc76949a2005-05-29 14:58:59 -070012129 tx_data = skb_put(skb, tx_len);
12130 memcpy(tx_data, tp->dev->dev_addr, 6);
12131 memset(tx_data + 6, 0x0, 8);
12132
Matt Carlson4852a862011-04-13 11:05:07 +000012133 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070012134
Matt Carlson28a45952011-08-19 13:58:22 +000012135 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012136 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
12137
12138 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
12139 TG3_TSO_TCP_OPT_LEN;
12140
12141 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
12142 sizeof(tg3_tso_header));
12143 mss = TG3_TSO_MSS;
12144
12145 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
12146 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
12147
12148 /* Set the total length field in the IP header */
12149 iph->tot_len = htons((u16)(mss + hdr_len));
12150
12151 base_flags = (TXD_FLAG_CPU_PRE_DMA |
12152 TXD_FLAG_CPU_POST_DMA);
12153
Joe Perches63c3a662011-04-26 08:12:10 +000012154 if (tg3_flag(tp, HW_TSO_1) ||
12155 tg3_flag(tp, HW_TSO_2) ||
12156 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012157 struct tcphdr *th;
12158 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
12159 th = (struct tcphdr *)&tx_data[val];
12160 th->check = 0;
12161 } else
12162 base_flags |= TXD_FLAG_TCPUDP_CSUM;
12163
Joe Perches63c3a662011-04-26 08:12:10 +000012164 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012165 mss |= (hdr_len & 0xc) << 12;
12166 if (hdr_len & 0x10)
12167 base_flags |= 0x00000010;
12168 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000012169 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000012170 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000012171 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000012172 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
12173 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
12174 } else {
12175 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
12176 }
12177
12178 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
12179 } else {
12180 num_pkts = 1;
12181 data_off = ETH_HLEN;
Michael Chanc441b452012-03-04 14:48:13 +000012182
12183 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
12184 tx_len > VLAN_ETH_FRAME_LEN)
12185 base_flags |= TXD_FLAG_JMB_PKT;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012186 }
12187
12188 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070012189 tx_data[i] = (u8) (i & 0xff);
12190
Alexander Duyckf4188d82009-12-02 16:48:38 +000012191 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
12192 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000012193 dev_kfree_skb(skb);
12194 return -EIO;
12195 }
Michael Chanc76949a2005-05-29 14:58:59 -070012196
Matt Carlson0d681b22011-07-27 14:20:49 +000012197 val = tnapi->tx_prod;
12198 tnapi->tx_buffers[val].skb = skb;
12199 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
12200
Michael Chanc76949a2005-05-29 14:58:59 -070012201 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012202 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070012203
12204 udelay(10);
12205
Matt Carlson898a56f2009-08-28 14:02:40 +000012206 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070012207
Matt Carlson84b67b22011-07-27 14:20:52 +000012208 budget = tg3_tx_avail(tnapi);
12209 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000012210 base_flags | TXD_FLAG_END, mss, 0)) {
12211 tnapi->tx_buffers[val].skb = NULL;
12212 dev_kfree_skb(skb);
12213 return -EIO;
12214 }
Michael Chanc76949a2005-05-29 14:58:59 -070012215
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012216 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070012217
Michael Chan6541b802012-03-04 14:48:14 +000012218 /* Sync BD data before updating mailbox */
12219 wmb();
12220
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012221 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
12222 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070012223
12224 udelay(10);
12225
Matt Carlson303fc922009-11-02 14:27:34 +000012226 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
12227 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070012228 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012229 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070012230
12231 udelay(10);
12232
Matt Carlson898a56f2009-08-28 14:02:40 +000012233 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
12234 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012235 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070012236 (rx_idx == (rx_start_idx + num_pkts)))
12237 break;
12238 }
12239
Matt Carlsonba1142e2011-11-04 09:15:00 +000012240 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070012241 dev_kfree_skb(skb);
12242
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012243 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070012244 goto out;
12245
12246 if (rx_idx != rx_start_idx + num_pkts)
12247 goto out;
12248
Matt Carlsonbb158d62011-04-25 12:42:47 +000012249 val = data_off;
12250 while (rx_idx != rx_start_idx) {
12251 desc = &rnapi->rx_rcb[rx_start_idx++];
12252 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
12253 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070012254
Matt Carlsonbb158d62011-04-25 12:42:47 +000012255 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
12256 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000012257 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070012258
Matt Carlsonbb158d62011-04-25 12:42:47 +000012259 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
12260 - ETH_FCS_LEN;
12261
Matt Carlson28a45952011-08-19 13:58:22 +000012262 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012263 if (rx_len != tx_len)
12264 goto out;
12265
12266 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
12267 if (opaque_key != RXD_OPAQUE_RING_STD)
12268 goto out;
12269 } else {
12270 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
12271 goto out;
12272 }
12273 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
12274 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000012275 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012276 goto out;
12277 }
12278
12279 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000012280 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012281 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
12282 mapping);
12283 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000012284 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012285 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
12286 mapping);
12287 } else
Matt Carlson4852a862011-04-13 11:05:07 +000012288 goto out;
12289
Matt Carlsonbb158d62011-04-25 12:42:47 +000012290 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
12291 PCI_DMA_FROMDEVICE);
12292
Eric Dumazet9205fd92011-11-18 06:47:01 +000012293 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000012294 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000012295 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000012296 goto out;
12297 }
Matt Carlson4852a862011-04-13 11:05:07 +000012298 }
12299
Michael Chanc76949a2005-05-29 14:58:59 -070012300 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012301
Eric Dumazet9205fd92011-11-18 06:47:01 +000012302 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070012303out:
12304 return err;
12305}
12306
Matt Carlson00c266b2011-04-25 12:42:46 +000012307#define TG3_STD_LOOPBACK_FAILED 1
12308#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000012309#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000012310#define TG3_LOOPBACK_FAILED \
12311 (TG3_STD_LOOPBACK_FAILED | \
12312 TG3_JMB_LOOPBACK_FAILED | \
12313 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000012314
Matt Carlson941ec902011-08-19 13:58:23 +000012315static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070012316{
Matt Carlson28a45952011-08-19 13:58:22 +000012317 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000012318 u32 eee_cap;
Michael Chanc441b452012-03-04 14:48:13 +000012319 u32 jmb_pkt_sz = 9000;
12320
12321 if (tp->dma_limit)
12322 jmb_pkt_sz = tp->dma_limit - ETH_HLEN;
Michael Chan9f40dea2005-09-05 17:53:06 -070012323
Matt Carlsonab789042011-01-25 15:58:54 +000012324 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
12325 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
12326
Matt Carlson28a45952011-08-19 13:58:22 +000012327 if (!netif_running(tp->dev)) {
12328 data[0] = TG3_LOOPBACK_FAILED;
12329 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012330 if (do_extlpbk)
12331 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000012332 goto done;
12333 }
12334
Michael Chanb9ec6c12006-07-25 16:37:27 -070012335 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000012336 if (err) {
Matt Carlson28a45952011-08-19 13:58:22 +000012337 data[0] = TG3_LOOPBACK_FAILED;
12338 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012339 if (do_extlpbk)
12340 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000012341 goto done;
12342 }
Michael Chan9f40dea2005-09-05 17:53:06 -070012343
Joe Perches63c3a662011-04-26 08:12:10 +000012344 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000012345 int i;
12346
12347 /* Reroute all rx packets to the 1st queue */
12348 for (i = MAC_RSS_INDIR_TBL_0;
12349 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
12350 tw32(i, 0x0);
12351 }
12352
Matt Carlson6e01b202011-08-19 13:58:20 +000012353 /* HW errata - mac loopback fails in some cases on 5780.
12354 * Normal traffic and PHY loopback are not affected by
12355 * errata. Also, the MAC loopback test is deprecated for
12356 * all newer ASIC revisions.
12357 */
12358 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
12359 !tg3_flag(tp, CPMU_PRESENT)) {
12360 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070012361
Matt Carlson28a45952011-08-19 13:58:22 +000012362 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
12363 data[0] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000012364
12365 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000012366 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson28a45952011-08-19 13:58:22 +000012367 data[0] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000012368
12369 tg3_mac_loopback(tp, false);
12370 }
Matt Carlson4852a862011-04-13 11:05:07 +000012371
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012372 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012373 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012374 int i;
12375
Matt Carlson941ec902011-08-19 13:58:23 +000012376 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012377
12378 /* Wait for link */
12379 for (i = 0; i < 100; i++) {
12380 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
12381 break;
12382 mdelay(1);
12383 }
12384
Matt Carlson28a45952011-08-19 13:58:22 +000012385 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
12386 data[1] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000012387 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000012388 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
12389 data[1] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000012390 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000012391 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson28a45952011-08-19 13:58:22 +000012392 data[1] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070012393
Matt Carlson941ec902011-08-19 13:58:23 +000012394 if (do_extlpbk) {
12395 tg3_phy_lpbk_set(tp, 0, true);
12396
12397 /* All link indications report up, but the hardware
12398 * isn't really ready for about 20 msec. Double it
12399 * to be sure.
12400 */
12401 mdelay(40);
12402
12403 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
12404 data[2] |= TG3_STD_LOOPBACK_FAILED;
12405 if (tg3_flag(tp, TSO_CAPABLE) &&
12406 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
12407 data[2] |= TG3_TSO_LOOPBACK_FAILED;
12408 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000012409 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson941ec902011-08-19 13:58:23 +000012410 data[2] |= TG3_JMB_LOOPBACK_FAILED;
12411 }
12412
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012413 /* Re-enable gphy autopowerdown. */
12414 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
12415 tg3_phy_toggle_apd(tp, true);
12416 }
Matt Carlson6833c042008-11-21 17:18:59 -080012417
Matt Carlson941ec902011-08-19 13:58:23 +000012418 err = (data[0] | data[1] | data[2]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000012419
Matt Carlsonab789042011-01-25 15:58:54 +000012420done:
12421 tp->phy_flags |= eee_cap;
12422
Michael Chan9f40dea2005-09-05 17:53:06 -070012423 return err;
12424}
12425
Michael Chan4cafd3f2005-05-29 14:56:34 -070012426static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
12427 u64 *data)
12428{
Michael Chan566f86a2005-05-29 14:56:58 -070012429 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000012430 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070012431
Matt Carlsonbed98292011-07-13 09:27:29 +000012432 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
12433 tg3_power_up(tp)) {
12434 etest->flags |= ETH_TEST_FL_FAILED;
12435 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
12436 return;
12437 }
Michael Chanbc1c7562006-03-20 17:48:03 -080012438
Michael Chan566f86a2005-05-29 14:56:58 -070012439 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
12440
12441 if (tg3_test_nvram(tp) != 0) {
12442 etest->flags |= ETH_TEST_FL_FAILED;
12443 data[0] = 1;
12444 }
Matt Carlson941ec902011-08-19 13:58:23 +000012445 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070012446 etest->flags |= ETH_TEST_FL_FAILED;
12447 data[1] = 1;
12448 }
Michael Chana71116d2005-05-29 14:58:11 -070012449 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012450 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070012451
Michael Chanbbe832c2005-06-24 20:20:04 -070012452 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012453 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012454 tg3_netif_stop(tp);
12455 irq_sync = 1;
12456 }
12457
12458 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070012459
12460 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080012461 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012462 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000012463 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070012464 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080012465 if (!err)
12466 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012467
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012468 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080012469 tg3_phy_reset(tp);
12470
Michael Chana71116d2005-05-29 14:58:11 -070012471 if (tg3_test_registers(tp) != 0) {
12472 etest->flags |= ETH_TEST_FL_FAILED;
12473 data[2] = 1;
12474 }
Matt Carlson28a45952011-08-19 13:58:22 +000012475
Michael Chan7942e1d2005-05-29 14:58:36 -070012476 if (tg3_test_memory(tp) != 0) {
12477 etest->flags |= ETH_TEST_FL_FAILED;
12478 data[3] = 1;
12479 }
Matt Carlson28a45952011-08-19 13:58:22 +000012480
Matt Carlson941ec902011-08-19 13:58:23 +000012481 if (doextlpbk)
12482 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
12483
12484 if (tg3_test_loopback(tp, &data[4], doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070012485 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070012486
David S. Millerf47c11e2005-06-24 20:18:35 -070012487 tg3_full_unlock(tp);
12488
Michael Chand4bc3922005-05-29 14:59:20 -070012489 if (tg3_test_interrupt(tp) != 0) {
12490 etest->flags |= ETH_TEST_FL_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012491 data[7] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070012492 }
David S. Millerf47c11e2005-06-24 20:18:35 -070012493
12494 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070012495
Michael Chana71116d2005-05-29 14:58:11 -070012496 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
12497 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012498 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012499 err2 = tg3_restart_hw(tp, 1);
12500 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070012501 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012502 }
David S. Millerf47c11e2005-06-24 20:18:35 -070012503
12504 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012505
12506 if (irq_sync && !err2)
12507 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012508 }
Matt Carlson80096062010-08-02 11:26:06 +000012509 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000012510 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080012511
Michael Chan4cafd3f2005-05-29 14:56:34 -070012512}
12513
Linus Torvalds1da177e2005-04-16 15:20:36 -070012514static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
12515{
12516 struct mii_ioctl_data *data = if_mii(ifr);
12517 struct tg3 *tp = netdev_priv(dev);
12518 int err;
12519
Joe Perches63c3a662011-04-26 08:12:10 +000012520 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012521 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012522 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012523 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012524 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000012525 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012526 }
12527
Matt Carlson33f401a2010-04-05 10:19:27 +000012528 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012529 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000012530 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012531
12532 /* fallthru */
12533 case SIOCGMIIREG: {
12534 u32 mii_regval;
12535
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012536 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012537 break; /* We have no PHY */
12538
Matt Carlson34eea5a2011-04-20 07:57:38 +000012539 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080012540 return -EAGAIN;
12541
David S. Millerf47c11e2005-06-24 20:18:35 -070012542 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012543 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070012544 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012545
12546 data->val_out = mii_regval;
12547
12548 return err;
12549 }
12550
12551 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012552 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012553 break; /* We have no PHY */
12554
Matt Carlson34eea5a2011-04-20 07:57:38 +000012555 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080012556 return -EAGAIN;
12557
David S. Millerf47c11e2005-06-24 20:18:35 -070012558 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012559 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070012560 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012561
12562 return err;
12563
12564 default:
12565 /* do nothing */
12566 break;
12567 }
12568 return -EOPNOTSUPP;
12569}
12570
David S. Miller15f98502005-05-18 22:49:26 -070012571static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
12572{
12573 struct tg3 *tp = netdev_priv(dev);
12574
12575 memcpy(ec, &tp->coal, sizeof(*ec));
12576 return 0;
12577}
12578
Michael Chand244c892005-07-05 14:42:33 -070012579static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
12580{
12581 struct tg3 *tp = netdev_priv(dev);
12582 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
12583 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
12584
Joe Perches63c3a662011-04-26 08:12:10 +000012585 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070012586 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
12587 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
12588 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
12589 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
12590 }
12591
12592 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
12593 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
12594 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
12595 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
12596 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
12597 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
12598 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
12599 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
12600 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
12601 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
12602 return -EINVAL;
12603
12604 /* No rx interrupts will be generated if both are zero */
12605 if ((ec->rx_coalesce_usecs == 0) &&
12606 (ec->rx_max_coalesced_frames == 0))
12607 return -EINVAL;
12608
12609 /* No tx interrupts will be generated if both are zero */
12610 if ((ec->tx_coalesce_usecs == 0) &&
12611 (ec->tx_max_coalesced_frames == 0))
12612 return -EINVAL;
12613
12614 /* Only copy relevant parameters, ignore all others. */
12615 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
12616 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
12617 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
12618 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
12619 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
12620 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
12621 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
12622 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
12623 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
12624
12625 if (netif_running(dev)) {
12626 tg3_full_lock(tp, 0);
12627 __tg3_set_coalesce(tp, &tp->coal);
12628 tg3_full_unlock(tp);
12629 }
12630 return 0;
12631}
12632
Jeff Garzik7282d492006-09-13 14:30:00 -040012633static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012634 .get_settings = tg3_get_settings,
12635 .set_settings = tg3_set_settings,
12636 .get_drvinfo = tg3_get_drvinfo,
12637 .get_regs_len = tg3_get_regs_len,
12638 .get_regs = tg3_get_regs,
12639 .get_wol = tg3_get_wol,
12640 .set_wol = tg3_set_wol,
12641 .get_msglevel = tg3_get_msglevel,
12642 .set_msglevel = tg3_set_msglevel,
12643 .nway_reset = tg3_nway_reset,
12644 .get_link = ethtool_op_get_link,
12645 .get_eeprom_len = tg3_get_eeprom_len,
12646 .get_eeprom = tg3_get_eeprom,
12647 .set_eeprom = tg3_set_eeprom,
12648 .get_ringparam = tg3_get_ringparam,
12649 .set_ringparam = tg3_set_ringparam,
12650 .get_pauseparam = tg3_get_pauseparam,
12651 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070012652 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012653 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000012654 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012655 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070012656 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070012657 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070012658 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000012659 .get_rxnfc = tg3_get_rxnfc,
12660 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
12661 .get_rxfh_indir = tg3_get_rxfh_indir,
12662 .set_rxfh_indir = tg3_set_rxfh_indir,
Michael Chan09681692012-09-28 07:12:42 +000012663 .get_channels = tg3_get_channels,
12664 .set_channels = tg3_set_channels,
Richard Cochran3f847492012-04-03 22:59:39 +000012665 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012666};
12667
David S. Millerb4017c52012-03-01 17:57:40 -050012668static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
12669 struct rtnl_link_stats64 *stats)
12670{
12671 struct tg3 *tp = netdev_priv(dev);
12672
David S. Millerb4017c52012-03-01 17:57:40 -050012673 spin_lock_bh(&tp->lock);
Michael Chan0f566b22012-07-29 19:15:44 +000012674 if (!tp->hw_stats) {
12675 spin_unlock_bh(&tp->lock);
12676 return &tp->net_stats_prev;
12677 }
12678
David S. Millerb4017c52012-03-01 17:57:40 -050012679 tg3_get_nstats(tp, stats);
12680 spin_unlock_bh(&tp->lock);
12681
12682 return stats;
12683}
12684
Matt Carlsonccd5ba92012-02-13 10:20:08 +000012685static void tg3_set_rx_mode(struct net_device *dev)
12686{
12687 struct tg3 *tp = netdev_priv(dev);
12688
12689 if (!netif_running(dev))
12690 return;
12691
12692 tg3_full_lock(tp, 0);
12693 __tg3_set_rx_mode(dev);
12694 tg3_full_unlock(tp);
12695}
12696
Matt Carlsonfaf16272012-02-13 10:20:07 +000012697static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
12698 int new_mtu)
12699{
12700 dev->mtu = new_mtu;
12701
12702 if (new_mtu > ETH_DATA_LEN) {
12703 if (tg3_flag(tp, 5780_CLASS)) {
12704 netdev_update_features(dev);
12705 tg3_flag_clear(tp, TSO_CAPABLE);
12706 } else {
12707 tg3_flag_set(tp, JUMBO_RING_ENABLE);
12708 }
12709 } else {
12710 if (tg3_flag(tp, 5780_CLASS)) {
12711 tg3_flag_set(tp, TSO_CAPABLE);
12712 netdev_update_features(dev);
12713 }
12714 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
12715 }
12716}
12717
12718static int tg3_change_mtu(struct net_device *dev, int new_mtu)
12719{
12720 struct tg3 *tp = netdev_priv(dev);
Michael Chan2fae5e32012-03-04 14:48:15 +000012721 int err, reset_phy = 0;
Matt Carlsonfaf16272012-02-13 10:20:07 +000012722
12723 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
12724 return -EINVAL;
12725
12726 if (!netif_running(dev)) {
12727 /* We'll just catch it later when the
12728 * device is up'd.
12729 */
12730 tg3_set_mtu(dev, tp, new_mtu);
12731 return 0;
12732 }
12733
12734 tg3_phy_stop(tp);
12735
12736 tg3_netif_stop(tp);
12737
12738 tg3_full_lock(tp, 1);
12739
12740 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
12741
12742 tg3_set_mtu(dev, tp, new_mtu);
12743
Michael Chan2fae5e32012-03-04 14:48:15 +000012744 /* Reset PHY, otherwise the read DMA engine will be in a mode that
12745 * breaks all requests to 256 bytes.
12746 */
12747 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
12748 reset_phy = 1;
12749
12750 err = tg3_restart_hw(tp, reset_phy);
Matt Carlsonfaf16272012-02-13 10:20:07 +000012751
12752 if (!err)
12753 tg3_netif_start(tp);
12754
12755 tg3_full_unlock(tp);
12756
12757 if (!err)
12758 tg3_phy_start(tp);
12759
12760 return err;
12761}
12762
12763static const struct net_device_ops tg3_netdev_ops = {
12764 .ndo_open = tg3_open,
12765 .ndo_stop = tg3_close,
12766 .ndo_start_xmit = tg3_start_xmit,
12767 .ndo_get_stats64 = tg3_get_stats64,
12768 .ndo_validate_addr = eth_validate_addr,
12769 .ndo_set_rx_mode = tg3_set_rx_mode,
12770 .ndo_set_mac_address = tg3_set_mac_addr,
12771 .ndo_do_ioctl = tg3_ioctl,
12772 .ndo_tx_timeout = tg3_tx_timeout,
12773 .ndo_change_mtu = tg3_change_mtu,
12774 .ndo_fix_features = tg3_fix_features,
12775 .ndo_set_features = tg3_set_features,
12776#ifdef CONFIG_NET_POLL_CONTROLLER
12777 .ndo_poll_controller = tg3_poll_controller,
12778#endif
12779};
12780
Linus Torvalds1da177e2005-04-16 15:20:36 -070012781static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
12782{
Michael Chan1b277772006-03-20 22:27:48 -080012783 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012784
12785 tp->nvram_size = EEPROM_CHIP_SIZE;
12786
Matt Carlsone4f34112009-02-25 14:25:00 +000012787 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012788 return;
12789
Michael Chanb16250e2006-09-27 16:10:14 -070012790 if ((magic != TG3_EEPROM_MAGIC) &&
12791 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
12792 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012793 return;
12794
12795 /*
12796 * Size the chip by reading offsets at increasing powers of two.
12797 * When we encounter our validation signature, we know the addressing
12798 * has wrapped around, and thus have our chip size.
12799 */
Michael Chan1b277772006-03-20 22:27:48 -080012800 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012801
12802 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000012803 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012804 return;
12805
Michael Chan18201802006-03-20 22:29:15 -080012806 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012807 break;
12808
12809 cursize <<= 1;
12810 }
12811
12812 tp->nvram_size = cursize;
12813}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012814
Linus Torvalds1da177e2005-04-16 15:20:36 -070012815static void __devinit tg3_get_nvram_size(struct tg3 *tp)
12816{
12817 u32 val;
12818
Joe Perches63c3a662011-04-26 08:12:10 +000012819 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012820 return;
12821
12822 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080012823 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080012824 tg3_get_eeprom_size(tp);
12825 return;
12826 }
12827
Matt Carlson6d348f22009-02-25 14:25:52 +000012828 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012829 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000012830 /* This is confusing. We want to operate on the
12831 * 16-bit value at offset 0xf2. The tg3_nvram_read()
12832 * call will read from NVRAM and byteswap the data
12833 * according to the byteswapping settings for all
12834 * other register accesses. This ensures the data we
12835 * want will always reside in the lower 16-bits.
12836 * However, the data in NVRAM is in LE format, which
12837 * means the data from the NVRAM read will always be
12838 * opposite the endianness of the CPU. The 16-bit
12839 * byteswap then brings the data to CPU endianness.
12840 */
12841 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012842 return;
12843 }
12844 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070012845 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012846}
12847
12848static void __devinit tg3_get_nvram_info(struct tg3 *tp)
12849{
12850 u32 nvcfg1;
12851
12852 nvcfg1 = tr32(NVRAM_CFG1);
12853 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000012854 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012855 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012856 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12857 tw32(NVRAM_CFG1, nvcfg1);
12858 }
12859
Matt Carlson6ff6f812011-05-19 12:12:54 +000012860 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000012861 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012862 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012863 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
12864 tp->nvram_jedecnum = JEDEC_ATMEL;
12865 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012866 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012867 break;
12868 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
12869 tp->nvram_jedecnum = JEDEC_ATMEL;
12870 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
12871 break;
12872 case FLASH_VENDOR_ATMEL_EEPROM:
12873 tp->nvram_jedecnum = JEDEC_ATMEL;
12874 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012875 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012876 break;
12877 case FLASH_VENDOR_ST:
12878 tp->nvram_jedecnum = JEDEC_ST;
12879 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012880 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012881 break;
12882 case FLASH_VENDOR_SAIFUN:
12883 tp->nvram_jedecnum = JEDEC_SAIFUN;
12884 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
12885 break;
12886 case FLASH_VENDOR_SST_SMALL:
12887 case FLASH_VENDOR_SST_LARGE:
12888 tp->nvram_jedecnum = JEDEC_SST;
12889 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
12890 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012891 }
Matt Carlson8590a602009-08-28 12:29:16 +000012892 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012893 tp->nvram_jedecnum = JEDEC_ATMEL;
12894 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012895 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012896 }
12897}
12898
Matt Carlsona1b950d2009-09-01 13:20:17 +000012899static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
12900{
12901 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
12902 case FLASH_5752PAGE_SIZE_256:
12903 tp->nvram_pagesize = 256;
12904 break;
12905 case FLASH_5752PAGE_SIZE_512:
12906 tp->nvram_pagesize = 512;
12907 break;
12908 case FLASH_5752PAGE_SIZE_1K:
12909 tp->nvram_pagesize = 1024;
12910 break;
12911 case FLASH_5752PAGE_SIZE_2K:
12912 tp->nvram_pagesize = 2048;
12913 break;
12914 case FLASH_5752PAGE_SIZE_4K:
12915 tp->nvram_pagesize = 4096;
12916 break;
12917 case FLASH_5752PAGE_SIZE_264:
12918 tp->nvram_pagesize = 264;
12919 break;
12920 case FLASH_5752PAGE_SIZE_528:
12921 tp->nvram_pagesize = 528;
12922 break;
12923 }
12924}
12925
Michael Chan361b4ac2005-04-21 17:11:21 -070012926static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
12927{
12928 u32 nvcfg1;
12929
12930 nvcfg1 = tr32(NVRAM_CFG1);
12931
Michael Chane6af3012005-04-21 17:12:05 -070012932 /* NVRAM protection for TPM */
12933 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000012934 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070012935
Michael Chan361b4ac2005-04-21 17:11:21 -070012936 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012937 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
12938 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
12939 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012940 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012941 break;
12942 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12943 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012944 tg3_flag_set(tp, NVRAM_BUFFERED);
12945 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012946 break;
12947 case FLASH_5752VENDOR_ST_M45PE10:
12948 case FLASH_5752VENDOR_ST_M45PE20:
12949 case FLASH_5752VENDOR_ST_M45PE40:
12950 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012951 tg3_flag_set(tp, NVRAM_BUFFERED);
12952 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012953 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070012954 }
12955
Joe Perches63c3a662011-04-26 08:12:10 +000012956 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000012957 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000012958 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070012959 /* For eeprom, set pagesize to maximum eeprom size */
12960 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12961
12962 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12963 tw32(NVRAM_CFG1, nvcfg1);
12964 }
12965}
12966
Michael Chand3c7b882006-03-23 01:28:25 -080012967static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
12968{
Matt Carlson989a9d22007-05-05 11:51:05 -070012969 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080012970
12971 nvcfg1 = tr32(NVRAM_CFG1);
12972
12973 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070012974 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012975 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070012976 protect = 1;
12977 }
Michael Chand3c7b882006-03-23 01:28:25 -080012978
Matt Carlson989a9d22007-05-05 11:51:05 -070012979 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12980 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012981 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12982 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12983 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12984 case FLASH_5755VENDOR_ATMEL_FLASH_5:
12985 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012986 tg3_flag_set(tp, NVRAM_BUFFERED);
12987 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012988 tp->nvram_pagesize = 264;
12989 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
12990 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
12991 tp->nvram_size = (protect ? 0x3e200 :
12992 TG3_NVRAM_SIZE_512KB);
12993 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
12994 tp->nvram_size = (protect ? 0x1f200 :
12995 TG3_NVRAM_SIZE_256KB);
12996 else
12997 tp->nvram_size = (protect ? 0x1f200 :
12998 TG3_NVRAM_SIZE_128KB);
12999 break;
13000 case FLASH_5752VENDOR_ST_M45PE10:
13001 case FLASH_5752VENDOR_ST_M45PE20:
13002 case FLASH_5752VENDOR_ST_M45PE40:
13003 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013004 tg3_flag_set(tp, NVRAM_BUFFERED);
13005 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013006 tp->nvram_pagesize = 256;
13007 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
13008 tp->nvram_size = (protect ?
13009 TG3_NVRAM_SIZE_64KB :
13010 TG3_NVRAM_SIZE_128KB);
13011 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
13012 tp->nvram_size = (protect ?
13013 TG3_NVRAM_SIZE_64KB :
13014 TG3_NVRAM_SIZE_256KB);
13015 else
13016 tp->nvram_size = (protect ?
13017 TG3_NVRAM_SIZE_128KB :
13018 TG3_NVRAM_SIZE_512KB);
13019 break;
Michael Chand3c7b882006-03-23 01:28:25 -080013020 }
13021}
13022
Michael Chan1b277772006-03-20 22:27:48 -080013023static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
13024{
13025 u32 nvcfg1;
13026
13027 nvcfg1 = tr32(NVRAM_CFG1);
13028
13029 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013030 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
13031 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
13032 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
13033 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
13034 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013035 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013036 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080013037
Matt Carlson8590a602009-08-28 12:29:16 +000013038 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13039 tw32(NVRAM_CFG1, nvcfg1);
13040 break;
13041 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13042 case FLASH_5755VENDOR_ATMEL_FLASH_1:
13043 case FLASH_5755VENDOR_ATMEL_FLASH_2:
13044 case FLASH_5755VENDOR_ATMEL_FLASH_3:
13045 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013046 tg3_flag_set(tp, NVRAM_BUFFERED);
13047 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013048 tp->nvram_pagesize = 264;
13049 break;
13050 case FLASH_5752VENDOR_ST_M45PE10:
13051 case FLASH_5752VENDOR_ST_M45PE20:
13052 case FLASH_5752VENDOR_ST_M45PE40:
13053 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013054 tg3_flag_set(tp, NVRAM_BUFFERED);
13055 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013056 tp->nvram_pagesize = 256;
13057 break;
Michael Chan1b277772006-03-20 22:27:48 -080013058 }
13059}
13060
Matt Carlson6b91fa02007-10-10 18:01:09 -070013061static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
13062{
13063 u32 nvcfg1, protect = 0;
13064
13065 nvcfg1 = tr32(NVRAM_CFG1);
13066
13067 /* NVRAM protection for TPM */
13068 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013069 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070013070 protect = 1;
13071 }
13072
13073 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
13074 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000013075 case FLASH_5761VENDOR_ATMEL_ADB021D:
13076 case FLASH_5761VENDOR_ATMEL_ADB041D:
13077 case FLASH_5761VENDOR_ATMEL_ADB081D:
13078 case FLASH_5761VENDOR_ATMEL_ADB161D:
13079 case FLASH_5761VENDOR_ATMEL_MDB021D:
13080 case FLASH_5761VENDOR_ATMEL_MDB041D:
13081 case FLASH_5761VENDOR_ATMEL_MDB081D:
13082 case FLASH_5761VENDOR_ATMEL_MDB161D:
13083 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013084 tg3_flag_set(tp, NVRAM_BUFFERED);
13085 tg3_flag_set(tp, FLASH);
13086 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000013087 tp->nvram_pagesize = 256;
13088 break;
13089 case FLASH_5761VENDOR_ST_A_M45PE20:
13090 case FLASH_5761VENDOR_ST_A_M45PE40:
13091 case FLASH_5761VENDOR_ST_A_M45PE80:
13092 case FLASH_5761VENDOR_ST_A_M45PE16:
13093 case FLASH_5761VENDOR_ST_M_M45PE20:
13094 case FLASH_5761VENDOR_ST_M_M45PE40:
13095 case FLASH_5761VENDOR_ST_M_M45PE80:
13096 case FLASH_5761VENDOR_ST_M_M45PE16:
13097 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013098 tg3_flag_set(tp, NVRAM_BUFFERED);
13099 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013100 tp->nvram_pagesize = 256;
13101 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070013102 }
13103
13104 if (protect) {
13105 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
13106 } else {
13107 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000013108 case FLASH_5761VENDOR_ATMEL_ADB161D:
13109 case FLASH_5761VENDOR_ATMEL_MDB161D:
13110 case FLASH_5761VENDOR_ST_A_M45PE16:
13111 case FLASH_5761VENDOR_ST_M_M45PE16:
13112 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
13113 break;
13114 case FLASH_5761VENDOR_ATMEL_ADB081D:
13115 case FLASH_5761VENDOR_ATMEL_MDB081D:
13116 case FLASH_5761VENDOR_ST_A_M45PE80:
13117 case FLASH_5761VENDOR_ST_M_M45PE80:
13118 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
13119 break;
13120 case FLASH_5761VENDOR_ATMEL_ADB041D:
13121 case FLASH_5761VENDOR_ATMEL_MDB041D:
13122 case FLASH_5761VENDOR_ST_A_M45PE40:
13123 case FLASH_5761VENDOR_ST_M_M45PE40:
13124 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13125 break;
13126 case FLASH_5761VENDOR_ATMEL_ADB021D:
13127 case FLASH_5761VENDOR_ATMEL_MDB021D:
13128 case FLASH_5761VENDOR_ST_A_M45PE20:
13129 case FLASH_5761VENDOR_ST_M_M45PE20:
13130 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13131 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070013132 }
13133 }
13134}
13135
Michael Chanb5d37722006-09-27 16:06:21 -070013136static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
13137{
13138 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013139 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070013140 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13141}
13142
Matt Carlson321d32a2008-11-21 17:22:19 -080013143static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
13144{
13145 u32 nvcfg1;
13146
13147 nvcfg1 = tr32(NVRAM_CFG1);
13148
13149 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13150 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
13151 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
13152 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013153 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080013154 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13155
13156 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13157 tw32(NVRAM_CFG1, nvcfg1);
13158 return;
13159 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13160 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
13161 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
13162 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
13163 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
13164 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
13165 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
13166 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013167 tg3_flag_set(tp, NVRAM_BUFFERED);
13168 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080013169
13170 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13171 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13172 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
13173 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
13174 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13175 break;
13176 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
13177 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
13178 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13179 break;
13180 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
13181 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
13182 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13183 break;
13184 }
13185 break;
13186 case FLASH_5752VENDOR_ST_M45PE10:
13187 case FLASH_5752VENDOR_ST_M45PE20:
13188 case FLASH_5752VENDOR_ST_M45PE40:
13189 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013190 tg3_flag_set(tp, NVRAM_BUFFERED);
13191 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080013192
13193 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13194 case FLASH_5752VENDOR_ST_M45PE10:
13195 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13196 break;
13197 case FLASH_5752VENDOR_ST_M45PE20:
13198 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13199 break;
13200 case FLASH_5752VENDOR_ST_M45PE40:
13201 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13202 break;
13203 }
13204 break;
13205 default:
Joe Perches63c3a662011-04-26 08:12:10 +000013206 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080013207 return;
13208 }
13209
Matt Carlsona1b950d2009-09-01 13:20:17 +000013210 tg3_nvram_get_pagesize(tp, nvcfg1);
13211 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000013212 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013213}
13214
13215
13216static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
13217{
13218 u32 nvcfg1;
13219
13220 nvcfg1 = tr32(NVRAM_CFG1);
13221
13222 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13223 case FLASH_5717VENDOR_ATMEL_EEPROM:
13224 case FLASH_5717VENDOR_MICRO_EEPROM:
13225 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013226 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013227 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13228
13229 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13230 tw32(NVRAM_CFG1, nvcfg1);
13231 return;
13232 case FLASH_5717VENDOR_ATMEL_MDB011D:
13233 case FLASH_5717VENDOR_ATMEL_ADB011B:
13234 case FLASH_5717VENDOR_ATMEL_ADB011D:
13235 case FLASH_5717VENDOR_ATMEL_MDB021D:
13236 case FLASH_5717VENDOR_ATMEL_ADB021B:
13237 case FLASH_5717VENDOR_ATMEL_ADB021D:
13238 case FLASH_5717VENDOR_ATMEL_45USPT:
13239 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013240 tg3_flag_set(tp, NVRAM_BUFFERED);
13241 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013242
13243 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13244 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000013245 /* Detect size with tg3_nvram_get_size() */
13246 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000013247 case FLASH_5717VENDOR_ATMEL_ADB021B:
13248 case FLASH_5717VENDOR_ATMEL_ADB021D:
13249 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13250 break;
13251 default:
13252 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13253 break;
13254 }
Matt Carlson321d32a2008-11-21 17:22:19 -080013255 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000013256 case FLASH_5717VENDOR_ST_M_M25PE10:
13257 case FLASH_5717VENDOR_ST_A_M25PE10:
13258 case FLASH_5717VENDOR_ST_M_M45PE10:
13259 case FLASH_5717VENDOR_ST_A_M45PE10:
13260 case FLASH_5717VENDOR_ST_M_M25PE20:
13261 case FLASH_5717VENDOR_ST_A_M25PE20:
13262 case FLASH_5717VENDOR_ST_M_M45PE20:
13263 case FLASH_5717VENDOR_ST_A_M45PE20:
13264 case FLASH_5717VENDOR_ST_25USPT:
13265 case FLASH_5717VENDOR_ST_45USPT:
13266 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013267 tg3_flag_set(tp, NVRAM_BUFFERED);
13268 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013269
13270 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13271 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000013272 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000013273 /* Detect size with tg3_nvram_get_size() */
13274 break;
13275 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000013276 case FLASH_5717VENDOR_ST_A_M45PE20:
13277 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13278 break;
13279 default:
13280 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13281 break;
13282 }
Matt Carlson321d32a2008-11-21 17:22:19 -080013283 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000013284 default:
Joe Perches63c3a662011-04-26 08:12:10 +000013285 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013286 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080013287 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000013288
13289 tg3_nvram_get_pagesize(tp, nvcfg1);
13290 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000013291 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080013292}
13293
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013294static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
13295{
13296 u32 nvcfg1, nvmpinstrp;
13297
13298 nvcfg1 = tr32(NVRAM_CFG1);
13299 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
13300
13301 switch (nvmpinstrp) {
13302 case FLASH_5720_EEPROM_HD:
13303 case FLASH_5720_EEPROM_LD:
13304 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013305 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013306
13307 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13308 tw32(NVRAM_CFG1, nvcfg1);
13309 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
13310 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13311 else
13312 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
13313 return;
13314 case FLASH_5720VENDOR_M_ATMEL_DB011D:
13315 case FLASH_5720VENDOR_A_ATMEL_DB011B:
13316 case FLASH_5720VENDOR_A_ATMEL_DB011D:
13317 case FLASH_5720VENDOR_M_ATMEL_DB021D:
13318 case FLASH_5720VENDOR_A_ATMEL_DB021B:
13319 case FLASH_5720VENDOR_A_ATMEL_DB021D:
13320 case FLASH_5720VENDOR_M_ATMEL_DB041D:
13321 case FLASH_5720VENDOR_A_ATMEL_DB041B:
13322 case FLASH_5720VENDOR_A_ATMEL_DB041D:
13323 case FLASH_5720VENDOR_M_ATMEL_DB081D:
13324 case FLASH_5720VENDOR_A_ATMEL_DB081D:
13325 case FLASH_5720VENDOR_ATMEL_45USPT:
13326 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013327 tg3_flag_set(tp, NVRAM_BUFFERED);
13328 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013329
13330 switch (nvmpinstrp) {
13331 case FLASH_5720VENDOR_M_ATMEL_DB021D:
13332 case FLASH_5720VENDOR_A_ATMEL_DB021B:
13333 case FLASH_5720VENDOR_A_ATMEL_DB021D:
13334 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13335 break;
13336 case FLASH_5720VENDOR_M_ATMEL_DB041D:
13337 case FLASH_5720VENDOR_A_ATMEL_DB041B:
13338 case FLASH_5720VENDOR_A_ATMEL_DB041D:
13339 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13340 break;
13341 case FLASH_5720VENDOR_M_ATMEL_DB081D:
13342 case FLASH_5720VENDOR_A_ATMEL_DB081D:
13343 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
13344 break;
13345 default:
13346 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13347 break;
13348 }
13349 break;
13350 case FLASH_5720VENDOR_M_ST_M25PE10:
13351 case FLASH_5720VENDOR_M_ST_M45PE10:
13352 case FLASH_5720VENDOR_A_ST_M25PE10:
13353 case FLASH_5720VENDOR_A_ST_M45PE10:
13354 case FLASH_5720VENDOR_M_ST_M25PE20:
13355 case FLASH_5720VENDOR_M_ST_M45PE20:
13356 case FLASH_5720VENDOR_A_ST_M25PE20:
13357 case FLASH_5720VENDOR_A_ST_M45PE20:
13358 case FLASH_5720VENDOR_M_ST_M25PE40:
13359 case FLASH_5720VENDOR_M_ST_M45PE40:
13360 case FLASH_5720VENDOR_A_ST_M25PE40:
13361 case FLASH_5720VENDOR_A_ST_M45PE40:
13362 case FLASH_5720VENDOR_M_ST_M25PE80:
13363 case FLASH_5720VENDOR_M_ST_M45PE80:
13364 case FLASH_5720VENDOR_A_ST_M25PE80:
13365 case FLASH_5720VENDOR_A_ST_M45PE80:
13366 case FLASH_5720VENDOR_ST_25USPT:
13367 case FLASH_5720VENDOR_ST_45USPT:
13368 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013369 tg3_flag_set(tp, NVRAM_BUFFERED);
13370 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013371
13372 switch (nvmpinstrp) {
13373 case FLASH_5720VENDOR_M_ST_M25PE20:
13374 case FLASH_5720VENDOR_M_ST_M45PE20:
13375 case FLASH_5720VENDOR_A_ST_M25PE20:
13376 case FLASH_5720VENDOR_A_ST_M45PE20:
13377 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13378 break;
13379 case FLASH_5720VENDOR_M_ST_M25PE40:
13380 case FLASH_5720VENDOR_M_ST_M45PE40:
13381 case FLASH_5720VENDOR_A_ST_M25PE40:
13382 case FLASH_5720VENDOR_A_ST_M45PE40:
13383 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13384 break;
13385 case FLASH_5720VENDOR_M_ST_M25PE80:
13386 case FLASH_5720VENDOR_M_ST_M45PE80:
13387 case FLASH_5720VENDOR_A_ST_M25PE80:
13388 case FLASH_5720VENDOR_A_ST_M45PE80:
13389 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
13390 break;
13391 default:
13392 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13393 break;
13394 }
13395 break;
13396 default:
Joe Perches63c3a662011-04-26 08:12:10 +000013397 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013398 return;
13399 }
13400
13401 tg3_nvram_get_pagesize(tp, nvcfg1);
13402 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000013403 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013404}
13405
Linus Torvalds1da177e2005-04-16 15:20:36 -070013406/* Chips other than 5700/5701 use the NVRAM for fetching info. */
13407static void __devinit tg3_nvram_init(struct tg3 *tp)
13408{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013409 tw32_f(GRC_EEPROM_ADDR,
13410 (EEPROM_ADDR_FSM_RESET |
13411 (EEPROM_DEFAULT_CLOCK_PERIOD <<
13412 EEPROM_ADDR_CLKPERD_SHIFT)));
13413
Michael Chan9d57f012006-12-07 00:23:25 -080013414 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013415
13416 /* Enable seeprom accesses. */
13417 tw32_f(GRC_LOCAL_CTRL,
13418 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
13419 udelay(100);
13420
13421 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13422 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000013423 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013424
Michael Chanec41c7d2006-01-17 02:40:55 -080013425 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000013426 netdev_warn(tp->dev,
13427 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000013428 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080013429 return;
13430 }
Michael Chane6af3012005-04-21 17:12:05 -070013431 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013432
Matt Carlson989a9d22007-05-05 11:51:05 -070013433 tp->nvram_size = 0;
13434
Michael Chan361b4ac2005-04-21 17:11:21 -070013435 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13436 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080013437 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
13438 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070013439 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013440 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
13441 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080013442 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070013443 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
13444 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070013445 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13446 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000013447 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000013448 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080013449 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013450 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13451 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000013452 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013453 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
13454 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070013455 else
13456 tg3_get_nvram_info(tp);
13457
Matt Carlson989a9d22007-05-05 11:51:05 -070013458 if (tp->nvram_size == 0)
13459 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013460
Michael Chane6af3012005-04-21 17:12:05 -070013461 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080013462 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013463
13464 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013465 tg3_flag_clear(tp, NVRAM);
13466 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013467
13468 tg3_get_eeprom_size(tp);
13469 }
13470}
13471
Linus Torvalds1da177e2005-04-16 15:20:36 -070013472struct subsys_tbl_ent {
13473 u16 subsys_vendor, subsys_devid;
13474 u32 phy_id;
13475};
13476
Matt Carlson24daf2b2010-02-17 15:17:02 +000013477static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013478 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013479 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013480 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013481 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013482 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013483 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013484 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013485 { TG3PCI_SUBVENDOR_ID_BROADCOM,
13486 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
13487 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013488 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013489 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013490 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013491 { TG3PCI_SUBVENDOR_ID_BROADCOM,
13492 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
13493 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013494 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013495 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013496 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013497 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013498 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013499 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013500 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013501
13502 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013503 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013504 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013505 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013506 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013507 { TG3PCI_SUBVENDOR_ID_3COM,
13508 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
13509 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013510 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013511 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013512 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013513
13514 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013515 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013516 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013517 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013518 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013519 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013520 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013521 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013522 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013523
13524 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013525 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013526 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013527 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013528 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013529 { TG3PCI_SUBVENDOR_ID_COMPAQ,
13530 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
13531 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013532 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013533 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013534 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013535
13536 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013537 { TG3PCI_SUBVENDOR_ID_IBM,
13538 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013539};
13540
Matt Carlson24daf2b2010-02-17 15:17:02 +000013541static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013542{
13543 int i;
13544
13545 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
13546 if ((subsys_id_to_phy_id[i].subsys_vendor ==
13547 tp->pdev->subsystem_vendor) &&
13548 (subsys_id_to_phy_id[i].subsys_devid ==
13549 tp->pdev->subsystem_device))
13550 return &subsys_id_to_phy_id[i];
13551 }
13552 return NULL;
13553}
13554
Michael Chan7d0c41e2005-04-21 17:06:20 -070013555static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013556{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013557 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070013558
Matt Carlson79eb6902010-02-17 15:17:03 +000013559 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013560 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13561
Gary Zambranoa85feb82007-05-05 11:52:19 -070013562 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000013563 tg3_flag_set(tp, EEPROM_WRITE_PROT);
13564 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080013565
Michael Chanb5d37722006-09-27 16:06:21 -070013566 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080013567 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013568 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13569 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013570 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013571 val = tr32(VCPU_CFGSHDW);
13572 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000013573 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070013574 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013575 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013576 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013577 device_set_wakeup_enable(&tp->pdev->dev, true);
13578 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013579 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070013580 }
13581
Linus Torvalds1da177e2005-04-16 15:20:36 -070013582 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
13583 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
13584 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070013585 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013586 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013587
13588 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
13589 tp->nic_sram_data_cfg = nic_cfg;
13590
13591 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
13592 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Matt Carlson6ff6f812011-05-19 12:12:54 +000013593 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13594 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13595 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070013596 (ver > 0) && (ver < 0x100))
13597 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
13598
Matt Carlsona9daf362008-05-25 23:49:44 -070013599 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
13600 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
13601
Linus Torvalds1da177e2005-04-16 15:20:36 -070013602 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
13603 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
13604 eeprom_phy_serdes = 1;
13605
13606 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
13607 if (nic_phy_id != 0) {
13608 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
13609 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
13610
13611 eeprom_phy_id = (id1 >> 16) << 10;
13612 eeprom_phy_id |= (id2 & 0xfc00) << 16;
13613 eeprom_phy_id |= (id2 & 0x03ff) << 0;
13614 } else
13615 eeprom_phy_id = 0;
13616
Michael Chan7d0c41e2005-04-21 17:06:20 -070013617 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070013618 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000013619 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013620 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000013621 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013622 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070013623 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070013624
Joe Perches63c3a662011-04-26 08:12:10 +000013625 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013626 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
13627 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070013628 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070013629 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
13630
13631 switch (led_cfg) {
13632 default:
13633 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
13634 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13635 break;
13636
13637 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
13638 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13639 break;
13640
13641 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
13642 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070013643
13644 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
13645 * read on some older 5700/5701 bootcode.
13646 */
13647 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
13648 ASIC_REV_5700 ||
13649 GET_ASIC_REV(tp->pci_chip_rev_id) ==
13650 ASIC_REV_5701)
13651 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13652
Linus Torvalds1da177e2005-04-16 15:20:36 -070013653 break;
13654
13655 case SHASTA_EXT_LED_SHARED:
13656 tp->led_ctrl = LED_CTRL_MODE_SHARED;
13657 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
13658 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
13659 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13660 LED_CTRL_MODE_PHY_2);
13661 break;
13662
13663 case SHASTA_EXT_LED_MAC:
13664 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
13665 break;
13666
13667 case SHASTA_EXT_LED_COMBO:
13668 tp->led_ctrl = LED_CTRL_MODE_COMBO;
13669 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
13670 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13671 LED_CTRL_MODE_PHY_2);
13672 break;
13673
Stephen Hemminger855e1112008-04-16 16:37:28 -070013674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013675
13676 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13677 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
13678 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
13679 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13680
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013681 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
13682 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080013683
Michael Chan9d26e212006-12-07 00:21:14 -080013684 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000013685 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013686 if ((tp->pdev->subsystem_vendor ==
13687 PCI_VENDOR_ID_ARIMA) &&
13688 (tp->pdev->subsystem_device == 0x205a ||
13689 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000013690 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013691 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013692 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13693 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013695
13696 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000013697 tg3_flag_set(tp, ENABLE_ASF);
13698 if (tg3_flag(tp, 5750_PLUS))
13699 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013700 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013701
13702 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013703 tg3_flag(tp, 5750_PLUS))
13704 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013705
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013706 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070013707 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000013708 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013709
Joe Perches63c3a662011-04-26 08:12:10 +000013710 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013711 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013712 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013713 device_set_wakeup_enable(&tp->pdev->dev, true);
13714 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013715
Linus Torvalds1da177e2005-04-16 15:20:36 -070013716 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013717 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013718
13719 /* serdes signal pre-emphasis in register 0x590 set by */
13720 /* bootcode if bit 18 is set */
13721 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013722 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070013723
Joe Perches63c3a662011-04-26 08:12:10 +000013724 if ((tg3_flag(tp, 57765_PLUS) ||
13725 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13726 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080013727 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013728 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080013729
Joe Perches63c3a662011-04-26 08:12:10 +000013730 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000013731 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000013732 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070013733 u32 cfg3;
13734
13735 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
13736 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000013737 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070013738 }
Matt Carlsona9daf362008-05-25 23:49:44 -070013739
Matt Carlson14417062010-02-17 15:16:59 +000013740 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000013741 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070013742 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013743 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070013744 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013745 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013746 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013747done:
Joe Perches63c3a662011-04-26 08:12:10 +000013748 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013749 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000013750 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013751 else
13752 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070013753}
13754
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013755static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
13756{
13757 int i;
13758 u32 val;
13759
13760 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
13761 tw32(OTP_CTRL, cmd);
13762
13763 /* Wait for up to 1 ms for command to execute. */
13764 for (i = 0; i < 100; i++) {
13765 val = tr32(OTP_STATUS);
13766 if (val & OTP_STATUS_CMD_DONE)
13767 break;
13768 udelay(10);
13769 }
13770
13771 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
13772}
13773
13774/* Read the gphy configuration from the OTP region of the chip. The gphy
13775 * configuration is a 32-bit value that straddles the alignment boundary.
13776 * We do two 32-bit reads and then shift and merge the results.
13777 */
13778static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
13779{
13780 u32 bhalf_otp, thalf_otp;
13781
13782 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
13783
13784 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
13785 return 0;
13786
13787 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
13788
13789 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13790 return 0;
13791
13792 thalf_otp = tr32(OTP_READ_DATA);
13793
13794 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
13795
13796 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13797 return 0;
13798
13799 bhalf_otp = tr32(OTP_READ_DATA);
13800
13801 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
13802}
13803
Matt Carlsone256f8a2011-03-09 16:58:24 +000013804static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
13805{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000013806 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013807
13808 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
13809 adv |= ADVERTISED_1000baseT_Half |
13810 ADVERTISED_1000baseT_Full;
13811
13812 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
13813 adv |= ADVERTISED_100baseT_Half |
13814 ADVERTISED_100baseT_Full |
13815 ADVERTISED_10baseT_Half |
13816 ADVERTISED_10baseT_Full |
13817 ADVERTISED_TP;
13818 else
13819 adv |= ADVERTISED_FIBRE;
13820
13821 tp->link_config.advertising = adv;
Matt Carlsone7405222012-02-13 15:20:16 +000013822 tp->link_config.speed = SPEED_UNKNOWN;
13823 tp->link_config.duplex = DUPLEX_UNKNOWN;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013824 tp->link_config.autoneg = AUTONEG_ENABLE;
Matt Carlsone7405222012-02-13 15:20:16 +000013825 tp->link_config.active_speed = SPEED_UNKNOWN;
13826 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Matt Carlson34655ad2012-02-22 12:35:18 +000013827
13828 tp->old_link = -1;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013829}
13830
Michael Chan7d0c41e2005-04-21 17:06:20 -070013831static int __devinit tg3_phy_probe(struct tg3 *tp)
13832{
13833 u32 hw_phy_id_1, hw_phy_id_2;
13834 u32 hw_phy_id, hw_phy_id_masked;
13835 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013836
Matt Carlsone256f8a2011-03-09 16:58:24 +000013837 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000013838 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000013839 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
13840
Michael Chan8151ad52012-07-29 19:15:41 +000013841 if (tg3_flag(tp, ENABLE_APE)) {
13842 switch (tp->pci_fn) {
13843 case 0:
13844 tp->phy_ape_lock = TG3_APE_LOCK_PHY0;
13845 break;
13846 case 1:
13847 tp->phy_ape_lock = TG3_APE_LOCK_PHY1;
13848 break;
13849 case 2:
13850 tp->phy_ape_lock = TG3_APE_LOCK_PHY2;
13851 break;
13852 case 3:
13853 tp->phy_ape_lock = TG3_APE_LOCK_PHY3;
13854 break;
13855 }
13856 }
13857
Joe Perches63c3a662011-04-26 08:12:10 +000013858 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013859 return tg3_phy_init(tp);
13860
Linus Torvalds1da177e2005-04-16 15:20:36 -070013861 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010013862 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013863 */
13864 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000013865 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000013866 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013867 } else {
13868 /* Now read the physical PHY_ID from the chip and verify
13869 * that it is sane. If it doesn't look good, we fall back
13870 * to either the hard-coded table based PHY_ID and failing
13871 * that the value found in the eeprom area.
13872 */
13873 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
13874 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
13875
13876 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
13877 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
13878 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
13879
Matt Carlson79eb6902010-02-17 15:17:03 +000013880 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013881 }
13882
Matt Carlson79eb6902010-02-17 15:17:03 +000013883 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013884 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000013885 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013886 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070013887 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013888 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013889 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000013890 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070013891 /* Do nothing, phy ID already set up in
13892 * tg3_get_eeprom_hw_cfg().
13893 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013894 } else {
13895 struct subsys_tbl_ent *p;
13896
13897 /* No eeprom signature? Try the hardcoded
13898 * subsys device table.
13899 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013900 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013901 if (!p)
13902 return -ENODEV;
13903
13904 tp->phy_id = p->phy_id;
13905 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000013906 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013907 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013908 }
13909 }
13910
Matt Carlsona6b68da2010-12-06 08:28:52 +000013911 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Matt Carlson5baa5e92011-07-20 10:20:53 +000013912 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13913 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720 ||
13914 (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +000013915 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
13916 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
13917 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000013918 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
13919
Matt Carlsone256f8a2011-03-09 16:58:24 +000013920 tg3_phy_init_link_config(tp);
13921
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013922 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013923 !tg3_flag(tp, ENABLE_APE) &&
13924 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000013925 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013926
13927 tg3_readphy(tp, MII_BMSR, &bmsr);
13928 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
13929 (bmsr & BMSR_LSTATUS))
13930 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013931
Linus Torvalds1da177e2005-04-16 15:20:36 -070013932 err = tg3_phy_reset(tp);
13933 if (err)
13934 return err;
13935
Matt Carlson42b64a42011-05-19 12:12:49 +000013936 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013937
Matt Carlsone2bf73e2011-12-08 14:40:15 +000013938 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013939 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
13940 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013941
13942 tg3_writephy(tp, MII_BMCR,
13943 BMCR_ANENABLE | BMCR_ANRESTART);
13944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013945 }
13946
13947skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013948 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013949 err = tg3_init_5401phy_dsp(tp);
13950 if (err)
13951 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013952
Linus Torvalds1da177e2005-04-16 15:20:36 -070013953 err = tg3_init_5401phy_dsp(tp);
13954 }
13955
Linus Torvalds1da177e2005-04-16 15:20:36 -070013956 return err;
13957}
13958
Matt Carlson184b8902010-04-05 10:19:25 +000013959static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013960{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013961 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013962 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000013963 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000013964 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013965
Matt Carlson535a4902011-07-20 10:20:56 +000013966 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013967 if (!vpd_data)
13968 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013969
Matt Carlson535a4902011-07-20 10:20:56 +000013970 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000013971 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013972 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013973
13974 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13975 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13976 i += PCI_VPD_LRDT_TAG_SIZE;
13977
Matt Carlson535a4902011-07-20 10:20:56 +000013978 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013979 goto out_not_found;
13980
Matt Carlson184b8902010-04-05 10:19:25 +000013981 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13982 PCI_VPD_RO_KEYWORD_MFR_ID);
13983 if (j > 0) {
13984 len = pci_vpd_info_field_size(&vpd_data[j]);
13985
13986 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13987 if (j + len > block_end || len != 4 ||
13988 memcmp(&vpd_data[j], "1028", 4))
13989 goto partno;
13990
13991 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13992 PCI_VPD_RO_KEYWORD_VENDOR0);
13993 if (j < 0)
13994 goto partno;
13995
13996 len = pci_vpd_info_field_size(&vpd_data[j]);
13997
13998 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13999 if (j + len > block_end)
14000 goto partno;
14001
14002 memcpy(tp->fw_ver, &vpd_data[j], len);
Matt Carlson535a4902011-07-20 10:20:56 +000014003 strncat(tp->fw_ver, " bc ", vpdlen - len - 1);
Matt Carlson184b8902010-04-05 10:19:25 +000014004 }
14005
14006partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000014007 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
14008 PCI_VPD_RO_KEYWORD_PARTNO);
14009 if (i < 0)
14010 goto out_not_found;
14011
14012 len = pci_vpd_info_field_size(&vpd_data[i]);
14013
14014 i += PCI_VPD_INFO_FLD_HDR_SIZE;
14015 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000014016 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000014017 goto out_not_found;
14018
14019 memcpy(tp->board_part_number, &vpd_data[i], len);
14020
Linus Torvalds1da177e2005-04-16 15:20:36 -070014021out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000014022 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000014023 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000014024 return;
14025
14026out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000014027 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
Michael Chan79d49692012-11-05 14:26:29 +000014028 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
14029 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C)
Matt Carlson37a949c2010-09-30 10:34:33 +000014030 strcpy(tp->board_part_number, "BCM5717");
14031 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
14032 strcpy(tp->board_part_number, "BCM5718");
14033 else
14034 goto nomatch;
14035 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
14036 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
14037 strcpy(tp->board_part_number, "BCM57780");
14038 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
14039 strcpy(tp->board_part_number, "BCM57760");
14040 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
14041 strcpy(tp->board_part_number, "BCM57790");
14042 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
14043 strcpy(tp->board_part_number, "BCM57788");
14044 else
14045 goto nomatch;
14046 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
14047 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
14048 strcpy(tp->board_part_number, "BCM57761");
14049 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
14050 strcpy(tp->board_part_number, "BCM57765");
14051 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
14052 strcpy(tp->board_part_number, "BCM57781");
14053 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
14054 strcpy(tp->board_part_number, "BCM57785");
14055 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
14056 strcpy(tp->board_part_number, "BCM57791");
14057 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
14058 strcpy(tp->board_part_number, "BCM57795");
14059 else
14060 goto nomatch;
Matt Carlson55086ad2011-12-14 11:09:59 +000014061 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766) {
14062 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
14063 strcpy(tp->board_part_number, "BCM57762");
14064 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
14065 strcpy(tp->board_part_number, "BCM57766");
14066 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
14067 strcpy(tp->board_part_number, "BCM57782");
14068 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
14069 strcpy(tp->board_part_number, "BCM57786");
14070 else
14071 goto nomatch;
Matt Carlson37a949c2010-09-30 10:34:33 +000014072 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070014073 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000014074 } else {
14075nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070014076 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000014077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014078}
14079
Matt Carlson9c8a6202007-10-21 16:16:08 -070014080static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
14081{
14082 u32 val;
14083
Matt Carlsone4f34112009-02-25 14:25:00 +000014084 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070014085 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000014086 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070014087 val != 0)
14088 return 0;
14089
14090 return 1;
14091}
14092
Matt Carlsonacd9c112009-02-25 14:26:33 +000014093static void __devinit tg3_read_bc_ver(struct tg3 *tp)
14094{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014095 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000014096 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014097 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000014098
14099 if (tg3_nvram_read(tp, 0xc, &offset) ||
14100 tg3_nvram_read(tp, 0x4, &start))
14101 return;
14102
14103 offset = tg3_nvram_logical_addr(tp, offset);
14104
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014105 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000014106 return;
14107
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014108 if ((val & 0xfc000000) == 0x0c000000) {
14109 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000014110 return;
14111
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014112 if (val == 0)
14113 newver = true;
14114 }
14115
Matt Carlson75f99362010-04-05 10:19:24 +000014116 dst_off = strlen(tp->fw_ver);
14117
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014118 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000014119 if (TG3_VER_SIZE - dst_off < 16 ||
14120 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014121 return;
14122
14123 offset = offset + ver_offset - start;
14124 for (i = 0; i < 16; i += 4) {
14125 __be32 v;
14126 if (tg3_nvram_read_be32(tp, offset + i, &v))
14127 return;
14128
Matt Carlson75f99362010-04-05 10:19:24 +000014129 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014130 }
14131 } else {
14132 u32 major, minor;
14133
14134 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
14135 return;
14136
14137 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
14138 TG3_NVM_BCVER_MAJSFT;
14139 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000014140 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
14141 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000014142 }
14143}
14144
Matt Carlsona6f6cb12009-02-25 14:27:43 +000014145static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
14146{
14147 u32 val, major, minor;
14148
14149 /* Use native endian representation */
14150 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
14151 return;
14152
14153 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
14154 TG3_NVM_HWSB_CFG1_MAJSFT;
14155 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
14156 TG3_NVM_HWSB_CFG1_MINSFT;
14157
14158 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
14159}
14160
Matt Carlsondfe00d72008-11-21 17:19:41 -080014161static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
14162{
14163 u32 offset, major, minor, build;
14164
Matt Carlson75f99362010-04-05 10:19:24 +000014165 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080014166
14167 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
14168 return;
14169
14170 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
14171 case TG3_EEPROM_SB_REVISION_0:
14172 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
14173 break;
14174 case TG3_EEPROM_SB_REVISION_2:
14175 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
14176 break;
14177 case TG3_EEPROM_SB_REVISION_3:
14178 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
14179 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000014180 case TG3_EEPROM_SB_REVISION_4:
14181 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
14182 break;
14183 case TG3_EEPROM_SB_REVISION_5:
14184 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
14185 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000014186 case TG3_EEPROM_SB_REVISION_6:
14187 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
14188 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080014189 default:
14190 return;
14191 }
14192
Matt Carlsone4f34112009-02-25 14:25:00 +000014193 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080014194 return;
14195
14196 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
14197 TG3_EEPROM_SB_EDH_BLD_SHFT;
14198 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
14199 TG3_EEPROM_SB_EDH_MAJ_SHFT;
14200 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
14201
14202 if (minor > 99 || build > 26)
14203 return;
14204
Matt Carlson75f99362010-04-05 10:19:24 +000014205 offset = strlen(tp->fw_ver);
14206 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
14207 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080014208
14209 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000014210 offset = strlen(tp->fw_ver);
14211 if (offset < TG3_VER_SIZE - 1)
14212 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080014213 }
14214}
14215
Matt Carlsonacd9c112009-02-25 14:26:33 +000014216static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080014217{
14218 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000014219 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070014220
14221 for (offset = TG3_NVM_DIR_START;
14222 offset < TG3_NVM_DIR_END;
14223 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000014224 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070014225 return;
14226
14227 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
14228 break;
14229 }
14230
14231 if (offset == TG3_NVM_DIR_END)
14232 return;
14233
Joe Perches63c3a662011-04-26 08:12:10 +000014234 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070014235 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000014236 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070014237 return;
14238
Matt Carlsone4f34112009-02-25 14:25:00 +000014239 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070014240 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000014241 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070014242 return;
14243
14244 offset += val - start;
14245
Matt Carlsonacd9c112009-02-25 14:26:33 +000014246 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070014247
Matt Carlsonacd9c112009-02-25 14:26:33 +000014248 tp->fw_ver[vlen++] = ',';
14249 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070014250
14251 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000014252 __be32 v;
14253 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070014254 return;
14255
Al Virob9fc7dc2007-12-17 22:59:57 -080014256 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070014257
Matt Carlsonacd9c112009-02-25 14:26:33 +000014258 if (vlen > TG3_VER_SIZE - sizeof(v)) {
14259 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070014260 break;
14261 }
14262
Matt Carlsonacd9c112009-02-25 14:26:33 +000014263 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
14264 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070014265 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000014266}
14267
Michael Chan165f4d12012-07-16 16:23:59 +000014268static void __devinit tg3_probe_ncsi(struct tg3 *tp)
Matt Carlson7fd76442009-02-25 14:27:20 +000014269{
Matt Carlson7fd76442009-02-25 14:27:20 +000014270 u32 apedata;
Matt Carlson7fd76442009-02-25 14:27:20 +000014271
14272 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
14273 if (apedata != APE_SEG_SIG_MAGIC)
14274 return;
14275
14276 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
14277 if (!(apedata & APE_FW_STATUS_READY))
14278 return;
14279
Michael Chan165f4d12012-07-16 16:23:59 +000014280 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI)
14281 tg3_flag_set(tp, APE_HAS_NCSI);
14282}
14283
14284static void __devinit tg3_read_dash_ver(struct tg3 *tp)
14285{
14286 int vlen;
14287 u32 apedata;
14288 char *fwtype;
14289
Matt Carlson7fd76442009-02-25 14:27:20 +000014290 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
14291
Michael Chan165f4d12012-07-16 16:23:59 +000014292 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsonecc79642010-08-02 11:26:01 +000014293 fwtype = "NCSI";
Michael Chan165f4d12012-07-16 16:23:59 +000014294 else
Matt Carlsonecc79642010-08-02 11:26:01 +000014295 fwtype = "DASH";
14296
Matt Carlson7fd76442009-02-25 14:27:20 +000014297 vlen = strlen(tp->fw_ver);
14298
Matt Carlsonecc79642010-08-02 11:26:01 +000014299 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
14300 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000014301 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
14302 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
14303 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
14304 (apedata & APE_FW_VERSION_BLDMSK));
14305}
14306
Matt Carlsonacd9c112009-02-25 14:26:33 +000014307static void __devinit tg3_read_fw_ver(struct tg3 *tp)
14308{
14309 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000014310 bool vpd_vers = false;
14311
14312 if (tp->fw_ver[0] != 0)
14313 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000014314
Joe Perches63c3a662011-04-26 08:12:10 +000014315 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000014316 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000014317 return;
14318 }
14319
Matt Carlsonacd9c112009-02-25 14:26:33 +000014320 if (tg3_nvram_read(tp, 0, &val))
14321 return;
14322
14323 if (val == TG3_EEPROM_MAGIC)
14324 tg3_read_bc_ver(tp);
14325 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
14326 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000014327 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
14328 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000014329
Michael Chan165f4d12012-07-16 16:23:59 +000014330 if (tg3_flag(tp, ENABLE_ASF)) {
14331 if (tg3_flag(tp, ENABLE_APE)) {
14332 tg3_probe_ncsi(tp);
14333 if (!vpd_vers)
14334 tg3_read_dash_ver(tp);
14335 } else if (!vpd_vers) {
14336 tg3_read_mgmtfw_ver(tp);
14337 }
Matt Carlsonc9cab242011-07-13 09:27:27 +000014338 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070014339
14340 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080014341}
14342
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014343static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
14344{
Joe Perches63c3a662011-04-26 08:12:10 +000014345 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000014346 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000014347 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000014348 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014349 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000014350 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014351}
14352
Matt Carlson41434702011-03-09 16:58:22 +000014353static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080014354 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
14355 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
14356 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
14357 { },
14358};
14359
Matt Carlson16c7fa72012-02-13 10:20:10 +000014360static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
14361{
14362 struct pci_dev *peer;
14363 unsigned int func, devnr = tp->pdev->devfn & ~7;
14364
14365 for (func = 0; func < 8; func++) {
14366 peer = pci_get_slot(tp->pdev->bus, devnr | func);
14367 if (peer && peer != tp->pdev)
14368 break;
14369 pci_dev_put(peer);
14370 }
14371 /* 5704 can be configured in single-port mode, set peer to
14372 * tp->pdev in that case.
14373 */
14374 if (!peer) {
14375 peer = tp->pdev;
14376 return peer;
14377 }
14378
14379 /*
14380 * We don't need to keep the refcount elevated; there's no way
14381 * to remove one half of this device without removing the other
14382 */
14383 pci_dev_put(peer);
14384
14385 return peer;
14386}
14387
Matt Carlson42b123b2012-02-13 15:20:13 +000014388static void __devinit tg3_detect_asic_rev(struct tg3 *tp, u32 misc_ctrl_reg)
14389{
14390 tp->pci_chip_rev_id = misc_ctrl_reg >> MISC_HOST_CTRL_CHIPREV_SHIFT;
14391 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
14392 u32 reg;
14393
14394 /* All devices that use the alternate
14395 * ASIC REV location have a CPMU.
14396 */
14397 tg3_flag_set(tp, CPMU_PRESENT);
14398
14399 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000014400 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlson42b123b2012-02-13 15:20:13 +000014401 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
14402 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
14403 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
14404 reg = TG3PCI_GEN2_PRODID_ASICREV;
14405 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
14406 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
14407 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
14408 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
14409 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14410 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
14411 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
14412 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
14413 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
14414 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
14415 reg = TG3PCI_GEN15_PRODID_ASICREV;
14416 else
14417 reg = TG3PCI_PRODID_ASICREV;
14418
14419 pci_read_config_dword(tp->pdev, reg, &tp->pci_chip_rev_id);
14420 }
14421
14422 /* Wrong chip ID in 5752 A0. This code can be removed later
14423 * as A0 is not in production.
14424 */
14425 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
14426 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
14427
Michael Chan79d49692012-11-05 14:26:29 +000014428 if (tp->pci_chip_rev_id == CHIPREV_ID_5717_C0)
14429 tp->pci_chip_rev_id = CHIPREV_ID_5720_A0;
14430
Matt Carlson42b123b2012-02-13 15:20:13 +000014431 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14432 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14433 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14434 tg3_flag_set(tp, 5717_PLUS);
14435
14436 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
14437 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
14438 tg3_flag_set(tp, 57765_CLASS);
14439
14440 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS))
14441 tg3_flag_set(tp, 57765_PLUS);
14442
14443 /* Intentionally exclude ASIC_REV_5906 */
14444 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
14445 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
14446 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14447 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
14448 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14449 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
14450 tg3_flag(tp, 57765_PLUS))
14451 tg3_flag_set(tp, 5755_PLUS);
14452
14453 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
14454 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
14455 tg3_flag_set(tp, 5780_CLASS);
14456
14457 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14458 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14459 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
14460 tg3_flag(tp, 5755_PLUS) ||
14461 tg3_flag(tp, 5780_CLASS))
14462 tg3_flag_set(tp, 5750_PLUS);
14463
14464 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14465 tg3_flag(tp, 5750_PLUS))
14466 tg3_flag_set(tp, 5705_PLUS);
14467}
14468
Linus Torvalds1da177e2005-04-16 15:20:36 -070014469static int __devinit tg3_get_invariants(struct tg3 *tp)
14470{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014471 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014472 u32 pci_state_reg, grc_misc_cfg;
14473 u32 val;
14474 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014475 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014476
Linus Torvalds1da177e2005-04-16 15:20:36 -070014477 /* Force memory write invalidate off. If we leave it on,
14478 * then on 5700_BX chips we have to enable a workaround.
14479 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
14480 * to match the cacheline size. The Broadcom driver have this
14481 * workaround but turns MWI off all the times so never uses
14482 * it. This seems to suggest that the workaround is insufficient.
14483 */
14484 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14485 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
14486 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14487
Matt Carlson16821282011-07-13 09:27:28 +000014488 /* Important! -- Make sure register accesses are byteswapped
14489 * correctly. Also, for those chips that require it, make
14490 * sure that indirect register accesses are enabled before
14491 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014492 */
14493 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14494 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000014495 tp->misc_host_ctrl |= (misc_ctrl_reg &
14496 MISC_HOST_CTRL_CHIPREV);
14497 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14498 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014499
Matt Carlson42b123b2012-02-13 15:20:13 +000014500 tg3_detect_asic_rev(tp, misc_ctrl_reg);
Michael Chanff645be2005-04-21 17:09:53 -070014501
Michael Chan68929142005-08-09 20:17:14 -070014502 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
14503 * we need to disable memory and use config. cycles
14504 * only to access all registers. The 5702/03 chips
14505 * can mistakenly decode the special cycles from the
14506 * ICH chipsets as memory write cycles, causing corruption
14507 * of register and memory space. Only certain ICH bridges
14508 * will drive special cycles with non-zero data during the
14509 * address phase which can fall within the 5703's address
14510 * range. This is not an ICH bug as the PCI spec allows
14511 * non-zero address during special cycles. However, only
14512 * these ICH bridges are known to drive non-zero addresses
14513 * during special cycles.
14514 *
14515 * Since special cycles do not cross PCI bridges, we only
14516 * enable this workaround if the 5703 is on the secondary
14517 * bus of these ICH bridges.
14518 */
14519 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
14520 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
14521 static struct tg3_dev_id {
14522 u32 vendor;
14523 u32 device;
14524 u32 rev;
14525 } ich_chipsets[] = {
14526 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
14527 PCI_ANY_ID },
14528 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
14529 PCI_ANY_ID },
14530 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
14531 0xa },
14532 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
14533 PCI_ANY_ID },
14534 { },
14535 };
14536 struct tg3_dev_id *pci_id = &ich_chipsets[0];
14537 struct pci_dev *bridge = NULL;
14538
14539 while (pci_id->vendor != 0) {
14540 bridge = pci_get_device(pci_id->vendor, pci_id->device,
14541 bridge);
14542 if (!bridge) {
14543 pci_id++;
14544 continue;
14545 }
14546 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070014547 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070014548 continue;
14549 }
14550 if (bridge->subordinate &&
14551 (bridge->subordinate->number ==
14552 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014553 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070014554 pci_dev_put(bridge);
14555 break;
14556 }
14557 }
14558 }
14559
Matt Carlson6ff6f812011-05-19 12:12:54 +000014560 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070014561 static struct tg3_dev_id {
14562 u32 vendor;
14563 u32 device;
14564 } bridge_chipsets[] = {
14565 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
14566 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
14567 { },
14568 };
14569 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
14570 struct pci_dev *bridge = NULL;
14571
14572 while (pci_id->vendor != 0) {
14573 bridge = pci_get_device(pci_id->vendor,
14574 pci_id->device,
14575 bridge);
14576 if (!bridge) {
14577 pci_id++;
14578 continue;
14579 }
14580 if (bridge->subordinate &&
14581 (bridge->subordinate->number <=
14582 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070014583 (bridge->subordinate->busn_res.end >=
Matt Carlson41588ba2008-04-19 18:12:33 -070014584 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014585 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070014586 pci_dev_put(bridge);
14587 break;
14588 }
14589 }
14590 }
14591
Michael Chan4a29cc22006-03-19 13:21:12 -080014592 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
14593 * DMA addresses > 40-bit. This bridge may have other additional
14594 * 57xx devices behind it in some 4-port NIC designs for example.
14595 * Any tg3 device found behind the bridge will also need the 40-bit
14596 * DMA workaround.
14597 */
Matt Carlson42b123b2012-02-13 15:20:13 +000014598 if (tg3_flag(tp, 5780_CLASS)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014599 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070014600 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000014601 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080014602 struct pci_dev *bridge = NULL;
14603
14604 do {
14605 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
14606 PCI_DEVICE_ID_SERVERWORKS_EPB,
14607 bridge);
14608 if (bridge && bridge->subordinate &&
14609 (bridge->subordinate->number <=
14610 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070014611 (bridge->subordinate->busn_res.end >=
Michael Chan4a29cc22006-03-19 13:21:12 -080014612 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014613 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080014614 pci_dev_put(bridge);
14615 break;
14616 }
14617 } while (bridge);
14618 }
Michael Chan4cf78e42005-07-25 12:29:19 -070014619
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014620 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Matt Carlson3a1e19d2011-07-13 09:27:32 +000014621 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070014622 tp->pdev_peer = tg3_find_peer(tp);
14623
Matt Carlson507399f2009-11-13 13:03:37 +000014624 /* Determine TSO capabilities */
Matt Carlsona0512942011-07-27 14:20:54 +000014625 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000014626 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000014627 else if (tg3_flag(tp, 57765_PLUS))
14628 tg3_flag_set(tp, HW_TSO_3);
14629 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000014630 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000014631 tg3_flag_set(tp, HW_TSO_2);
14632 else if (tg3_flag(tp, 5750_PLUS)) {
14633 tg3_flag_set(tp, HW_TSO_1);
14634 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014635 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
14636 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000014637 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014638 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14639 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
14640 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014641 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014642 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
14643 tp->fw_needed = FIRMWARE_TG3TSO5;
14644 else
14645 tp->fw_needed = FIRMWARE_TG3TSO;
14646 }
14647
Matt Carlsondabc5c62011-05-19 12:12:52 +000014648 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014649 if (tg3_flag(tp, HW_TSO_1) ||
14650 tg3_flag(tp, HW_TSO_2) ||
14651 tg3_flag(tp, HW_TSO_3) ||
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014652 tp->fw_needed) {
14653 /* For firmware TSO, assume ASF is disabled.
14654 * We'll disable TSO later if we discover ASF
14655 * is enabled in tg3_get_eeprom_hw_cfg().
14656 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000014657 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014658 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000014659 tg3_flag_clear(tp, TSO_CAPABLE);
14660 tg3_flag_clear(tp, TSO_BUG);
14661 tp->fw_needed = NULL;
14662 }
14663
14664 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
14665 tp->fw_needed = FIRMWARE_TG3;
14666
Matt Carlson507399f2009-11-13 13:03:37 +000014667 tp->irq_max = 1;
14668
Joe Perches63c3a662011-04-26 08:12:10 +000014669 if (tg3_flag(tp, 5750_PLUS)) {
14670 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014671 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
14672 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
14673 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
14674 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
14675 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000014676 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014677
Joe Perches63c3a662011-04-26 08:12:10 +000014678 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070014679 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014680 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070014681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014682
Joe Perches63c3a662011-04-26 08:12:10 +000014683 if (tg3_flag(tp, 57765_PLUS)) {
14684 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000014685 tp->irq_max = TG3_IRQ_MAX_VECS;
14686 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014687 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000014688
Michael Chan91024262012-09-28 07:12:38 +000014689 tp->txq_max = 1;
14690 tp->rxq_max = 1;
14691 if (tp->irq_max > 1) {
14692 tp->rxq_max = TG3_RSS_MAX_NUM_QS;
14693 tg3_rss_init_dflt_indir_tbl(tp, TG3_RSS_MAX_NUM_QS);
14694
14695 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14696 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14697 tp->txq_max = tp->irq_max - 1;
14698 }
14699
Matt Carlsonb7abee62012-06-07 12:56:54 +000014700 if (tg3_flag(tp, 5755_PLUS) ||
14701 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000014702 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014703
Matt Carlsone31aa982011-07-27 14:20:53 +000014704 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000014705 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlsone31aa982011-07-27 14:20:53 +000014706
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +000014707 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14708 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14709 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000014710 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000014711
Joe Perches63c3a662011-04-26 08:12:10 +000014712 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlsona0512942011-07-27 14:20:54 +000014713 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000014714 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000014715
Joe Perches63c3a662011-04-26 08:12:10 +000014716 if (!tg3_flag(tp, 5705_PLUS) ||
14717 tg3_flag(tp, 5780_CLASS) ||
14718 tg3_flag(tp, USE_JUMBO_BDFLAG))
14719 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070014720
Matt Carlson52f44902008-11-21 17:17:04 -080014721 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14722 &pci_state_reg);
14723
Jon Mason708ebb3a2011-06-27 12:56:50 +000014724 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014725 u16 lnkctl;
14726
Joe Perches63c3a662011-04-26 08:12:10 +000014727 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080014728
Jiang Liu0f49bfb2012-08-20 13:28:20 -060014729 pcie_capability_read_word(tp->pdev, PCI_EXP_LNKCTL, &lnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014730 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Matt Carlson7196cd62011-05-19 16:02:44 +000014731 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
14732 ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014733 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000014734 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000014735 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014736 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014737 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000014738 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
14739 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000014740 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b0592010-01-20 16:58:02 +000014741 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014742 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080014743 }
Matt Carlson52f44902008-11-21 17:17:04 -080014744 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000014745 /* BCM5785 devices are effectively PCIe devices, and should
14746 * follow PCIe codepaths, but do not have a PCIe capabilities
14747 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000014748 */
Joe Perches63c3a662011-04-26 08:12:10 +000014749 tg3_flag_set(tp, PCI_EXPRESS);
14750 } else if (!tg3_flag(tp, 5705_PLUS) ||
14751 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080014752 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
14753 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000014754 dev_err(&tp->pdev->dev,
14755 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080014756 return -EIO;
14757 }
14758
14759 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000014760 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080014761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014762
Michael Chan399de502005-10-03 14:02:39 -070014763 /* If we have an AMD 762 or VIA K8T800 chipset, write
14764 * reordering to the mailbox registers done by the host
14765 * controller can cause major troubles. We read back from
14766 * every mailbox register write to force the writes to be
14767 * posted to the chip in order.
14768 */
Matt Carlson41434702011-03-09 16:58:22 +000014769 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014770 !tg3_flag(tp, PCI_EXPRESS))
14771 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070014772
Matt Carlson69fc4052008-12-21 20:19:57 -080014773 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
14774 &tp->pci_cacheline_sz);
14775 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14776 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014777 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14778 tp->pci_lat_timer < 64) {
14779 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080014780 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14781 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014782 }
14783
Matt Carlson16821282011-07-13 09:27:28 +000014784 /* Important! -- It is critical that the PCI-X hw workaround
14785 * situation is decided before the first MMIO register access.
14786 */
Matt Carlson52f44902008-11-21 17:17:04 -080014787 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
14788 /* 5700 BX chips need to have their TX producer index
14789 * mailboxes written twice to workaround a bug.
14790 */
Joe Perches63c3a662011-04-26 08:12:10 +000014791 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070014792
Matt Carlson52f44902008-11-21 17:17:04 -080014793 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014794 *
14795 * The workaround is to use indirect register accesses
14796 * for all chip writes not to mailbox registers.
14797 */
Joe Perches63c3a662011-04-26 08:12:10 +000014798 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014799 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014800
Joe Perches63c3a662011-04-26 08:12:10 +000014801 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014802
14803 /* The chip can have it's power management PCI config
14804 * space registers clobbered due to this bug.
14805 * So explicitly force the chip into D0 here.
14806 */
Matt Carlson9974a352007-10-07 23:27:28 -070014807 pci_read_config_dword(tp->pdev,
14808 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014809 &pm_reg);
14810 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
14811 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070014812 pci_write_config_dword(tp->pdev,
14813 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014814 pm_reg);
14815
14816 /* Also, force SERR#/PERR# in PCI command. */
14817 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14818 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
14819 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14820 }
14821 }
14822
Linus Torvalds1da177e2005-04-16 15:20:36 -070014823 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014824 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014825 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014826 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014827
14828 /* Chip-specific fixup from Broadcom driver */
14829 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
14830 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
14831 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
14832 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
14833 }
14834
Michael Chan1ee582d2005-08-09 20:16:46 -070014835 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070014836 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014837 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070014838 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070014839 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014840 tp->write32_tx_mbox = tg3_write32;
14841 tp->write32_rx_mbox = tg3_write32;
14842
14843 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000014844 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070014845 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014846 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014847 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070014848 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
14849 /*
14850 * Back to back register writes can cause problems on these
14851 * chips, the workaround is to read back all reg writes
14852 * except those to mailbox regs.
14853 *
14854 * See tg3_write_indirect_reg32().
14855 */
Michael Chan1ee582d2005-08-09 20:16:46 -070014856 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014857 }
14858
Joe Perches63c3a662011-04-26 08:12:10 +000014859 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070014860 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000014861 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070014862 tp->write32_rx_mbox = tg3_write_flush_reg32;
14863 }
Michael Chan20094932005-08-09 20:16:32 -070014864
Joe Perches63c3a662011-04-26 08:12:10 +000014865 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070014866 tp->read32 = tg3_read_indirect_reg32;
14867 tp->write32 = tg3_write_indirect_reg32;
14868 tp->read32_mbox = tg3_read_indirect_mbox;
14869 tp->write32_mbox = tg3_write_indirect_mbox;
14870 tp->write32_tx_mbox = tg3_write_indirect_mbox;
14871 tp->write32_rx_mbox = tg3_write_indirect_mbox;
14872
14873 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014874 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014875
14876 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14877 pci_cmd &= ~PCI_COMMAND_MEMORY;
14878 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14879 }
Michael Chanb5d37722006-09-27 16:06:21 -070014880 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14881 tp->read32_mbox = tg3_read32_mbox_5906;
14882 tp->write32_mbox = tg3_write32_mbox_5906;
14883 tp->write32_tx_mbox = tg3_write32_mbox_5906;
14884 tp->write32_rx_mbox = tg3_write32_mbox_5906;
14885 }
Michael Chan68929142005-08-09 20:17:14 -070014886
Michael Chanbbadf502006-04-06 21:46:34 -070014887 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014888 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070014889 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070014890 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000014891 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070014892
Matt Carlson16821282011-07-13 09:27:28 +000014893 /* The memory arbiter has to be enabled in order for SRAM accesses
14894 * to succeed. Normally on powerup the tg3 chip firmware will make
14895 * sure it is enabled, but other entities such as system netboot
14896 * code might disable it.
14897 */
14898 val = tr32(MEMARB_MODE);
14899 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
14900
Matt Carlson9dc5e342011-11-04 09:15:02 +000014901 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
14902 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
14903 tg3_flag(tp, 5780_CLASS)) {
14904 if (tg3_flag(tp, PCIX_MODE)) {
14905 pci_read_config_dword(tp->pdev,
14906 tp->pcix_cap + PCI_X_STATUS,
14907 &val);
14908 tp->pci_fn = val & 0x7;
14909 }
14910 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
14911 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14912 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14913 NIC_SRAM_CPMUSTAT_SIG) {
14914 tp->pci_fn = val & TG3_CPMU_STATUS_FMSK_5717;
14915 tp->pci_fn = tp->pci_fn ? 1 : 0;
14916 }
14917 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14918 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
14919 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14920 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14921 NIC_SRAM_CPMUSTAT_SIG) {
14922 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
14923 TG3_CPMU_STATUS_FSHFT_5719;
14924 }
Matt Carlson69f11c92011-07-13 09:27:30 +000014925 }
14926
Michael Chan7d0c41e2005-04-21 17:06:20 -070014927 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000014928 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070014929 * determined before calling tg3_set_power_state() so that
14930 * we know whether or not to switch out of Vaux power.
14931 * When the flag is set, it means that GPIO1 is used for eeprom
14932 * write protect and also implies that it is a LOM where GPIOs
14933 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014934 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070014935 tg3_get_eeprom_hw_cfg(tp);
14936
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014937 if (tp->fw_needed && tg3_flag(tp, ENABLE_ASF)) {
14938 tg3_flag_clear(tp, TSO_CAPABLE);
14939 tg3_flag_clear(tp, TSO_BUG);
14940 tp->fw_needed = NULL;
14941 }
14942
Joe Perches63c3a662011-04-26 08:12:10 +000014943 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014944 /* Allow reads and writes to the
14945 * APE register and memory space.
14946 */
14947 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000014948 PCISTATE_ALLOW_APE_SHMEM_WR |
14949 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014950 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
14951 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000014952
14953 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014954 }
14955
Matt Carlson16821282011-07-13 09:27:28 +000014956 /* Set up tp->grc_local_ctrl before calling
14957 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
14958 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070014959 * It is also used as eeprom write protect on LOMs.
14960 */
14961 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014962 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014963 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070014964 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
14965 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070014966 /* Unused GPIO3 must be driven as output on 5752 because there
14967 * are no pull-up resistors on unused GPIO pins.
14968 */
14969 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
14970 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070014971
Matt Carlson321d32a2008-11-21 17:22:19 -080014972 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000014973 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014974 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080014975 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
14976
Matt Carlson8d519ab2009-04-20 06:58:01 +000014977 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
14978 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014979 /* Turn off the debug UART. */
14980 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014981 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014982 /* Keep VMain power. */
14983 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
14984 GRC_LCLCTRL_GPIO_OUTPUT0;
14985 }
14986
Matt Carlson16821282011-07-13 09:27:28 +000014987 /* Switch out of Vaux if it is a NIC */
14988 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014989
Linus Torvalds1da177e2005-04-16 15:20:36 -070014990 /* Derive initial jumbo mode from MTU assigned in
14991 * ether_setup() via the alloc_etherdev() call
14992 */
Joe Perches63c3a662011-04-26 08:12:10 +000014993 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
14994 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014995
14996 /* Determine WakeOnLan speed to use. */
14997 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14998 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
14999 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
15000 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000015001 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015002 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000015003 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015004 }
15005
Matt Carlson7f97a4b2009-08-25 10:10:03 +000015006 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015007 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000015008
Linus Torvalds1da177e2005-04-16 15:20:36 -070015009 /* A few boards don't want Ethernet@WireSpeed phy feature */
Matt Carlson6ff6f812011-05-19 12:12:54 +000015010 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
15011 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015012 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070015013 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015014 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
15015 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
15016 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015017
15018 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
15019 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015020 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015021 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015022 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015023
Joe Perches63c3a662011-04-26 08:12:10 +000015024 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015025 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080015026 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000015027 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015028 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070015029 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070015030 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070015031 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
15032 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080015033 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
15034 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015035 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080015036 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015037 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080015038 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015039 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070015040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015041
Matt Carlsonb2a5c192008-04-03 21:44:44 -070015042 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15043 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
15044 tp->phy_otp = tg3_read_otp_phycfg(tp);
15045 if (tp->phy_otp == 0)
15046 tp->phy_otp = TG3_OTP_DEFAULT;
15047 }
15048
Joe Perches63c3a662011-04-26 08:12:10 +000015049 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070015050 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
15051 else
15052 tp->mi_mode = MAC_MI_MODE_BASE;
15053
Linus Torvalds1da177e2005-04-16 15:20:36 -070015054 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015055 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
15056 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
15057 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
15058
Matt Carlson4d958472011-04-20 07:57:35 +000015059 /* Set these bits to enable statistics workaround. */
15060 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
15061 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
15062 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
15063 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
15064 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
15065 }
15066
Matt Carlson321d32a2008-11-21 17:22:19 -080015067 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
15068 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000015069 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070015070
Matt Carlson158d7ab2008-05-29 01:37:54 -070015071 err = tg3_mdio_init(tp);
15072 if (err)
15073 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015074
15075 /* Initialize data/descriptor byte/word swapping. */
15076 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000015077 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
15078 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
15079 GRC_MODE_WORD_SWAP_B2HRX_DATA |
15080 GRC_MODE_B2HRX_ENABLE |
15081 GRC_MODE_HTX2B_ENABLE |
15082 GRC_MODE_HOST_STACKUP);
15083 else
15084 val &= GRC_MODE_HOST_STACKUP;
15085
Linus Torvalds1da177e2005-04-16 15:20:36 -070015086 tw32(GRC_MODE, val | tp->grc_mode);
15087
15088 tg3_switch_clocks(tp);
15089
15090 /* Clear this out for sanity. */
15091 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
15092
15093 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
15094 &pci_state_reg);
15095 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015096 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015097 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
15098
15099 if (chiprevid == CHIPREV_ID_5701_A0 ||
15100 chiprevid == CHIPREV_ID_5701_B0 ||
15101 chiprevid == CHIPREV_ID_5701_B2 ||
15102 chiprevid == CHIPREV_ID_5701_B5) {
15103 void __iomem *sram_base;
15104
15105 /* Write some dummy words into the SRAM status block
15106 * area, see if it reads back correctly. If the return
15107 * value is bad, force enable the PCIX workaround.
15108 */
15109 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
15110
15111 writel(0x00000000, sram_base);
15112 writel(0x00000000, sram_base + 4);
15113 writel(0xffffffff, sram_base + 4);
15114 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000015115 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015116 }
15117 }
15118
15119 udelay(50);
15120 tg3_nvram_init(tp);
15121
15122 grc_misc_cfg = tr32(GRC_MISC_CFG);
15123 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
15124
Linus Torvalds1da177e2005-04-16 15:20:36 -070015125 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
15126 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
15127 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000015128 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015129
Joe Perches63c3a662011-04-26 08:12:10 +000015130 if (!tg3_flag(tp, IS_5788) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +000015131 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000015132 tg3_flag_set(tp, TAGGED_STATUS);
15133 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070015134 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
15135 HOSTCC_MODE_CLRTICK_TXBD);
15136
15137 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
15138 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15139 tp->misc_host_ctrl);
15140 }
15141
Matt Carlson3bda1252008-08-15 14:08:22 -070015142 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000015143 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000015144 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070015145 else
Matt Carlson6e01b202011-08-19 13:58:20 +000015146 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070015147
Linus Torvalds1da177e2005-04-16 15:20:36 -070015148 /* these are limited to 10/100 only */
15149 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
15150 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
15151 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
15152 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
15153 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
15154 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
15155 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
15156 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
15157 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080015158 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
15159 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080015160 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000015161 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
15162 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015163 (tp->phy_flags & TG3_PHYFLG_IS_FET))
15164 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015165
15166 err = tg3_phy_probe(tp);
15167 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015168 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015169 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015170 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015171 }
15172
Matt Carlson184b8902010-04-05 10:19:25 +000015173 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080015174 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015175
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015176 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
15177 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015178 } else {
15179 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015180 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015181 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015182 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015183 }
15184
15185 /* 5700 {AX,BX} chips have a broken status block link
15186 * change bit implementation, so we must use the
15187 * status register in those cases.
15188 */
15189 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000015190 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015191 else
Joe Perches63c3a662011-04-26 08:12:10 +000015192 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015193
15194 /* The led_ctrl is set during tg3_phy_probe, here we might
15195 * have to force the link status polling mechanism based
15196 * upon subsystem IDs.
15197 */
15198 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070015199 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015200 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
15201 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000015202 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015203 }
15204
15205 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015206 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000015207 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015208 else
Joe Perches63c3a662011-04-26 08:12:10 +000015209 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015210
Eric Dumazet9205fd92011-11-18 06:47:01 +000015211 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000015212 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015213 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015214 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000015215 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000015216#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000015217 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000015218#endif
15219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015220
Matt Carlson2c49a442010-09-30 10:34:35 +000015221 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
15222 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015223 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
15224
Matt Carlson2c49a442010-09-30 10:34:35 +000015225 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070015226
15227 /* Increment the rx prod index on the rx std ring by at most
15228 * 8 for these chips to workaround hw errata.
15229 */
15230 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
15231 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
15232 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
15233 tp->rx_std_max_post = 8;
15234
Joe Perches63c3a662011-04-26 08:12:10 +000015235 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070015236 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
15237 PCIE_PWR_MGMT_L1_THRESH_MSK;
15238
Linus Torvalds1da177e2005-04-16 15:20:36 -070015239 return err;
15240}
15241
David S. Miller49b6e95f2007-03-29 01:38:42 -070015242#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070015243static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
15244{
15245 struct net_device *dev = tp->dev;
15246 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070015247 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070015248 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070015249 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015250
David S. Miller49b6e95f2007-03-29 01:38:42 -070015251 addr = of_get_property(dp, "local-mac-address", &len);
15252 if (addr && len == 6) {
15253 memcpy(dev->dev_addr, addr, 6);
15254 memcpy(dev->perm_addr, dev->dev_addr, 6);
15255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015256 }
15257 return -ENODEV;
15258}
15259
15260static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
15261{
15262 struct net_device *dev = tp->dev;
15263
15264 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070015265 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015266 return 0;
15267}
15268#endif
15269
15270static int __devinit tg3_get_device_address(struct tg3 *tp)
15271{
15272 struct net_device *dev = tp->dev;
15273 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080015274 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015275
David S. Miller49b6e95f2007-03-29 01:38:42 -070015276#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070015277 if (!tg3_get_macaddr_sparc(tp))
15278 return 0;
15279#endif
15280
15281 mac_offset = 0x7c;
Matt Carlson6ff6f812011-05-19 12:12:54 +000015282 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000015283 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015284 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
15285 mac_offset = 0xcc;
15286 if (tg3_nvram_lock(tp))
15287 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
15288 else
15289 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000015290 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000015291 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000015292 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000015293 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000015294 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000015295 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070015296 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015297
15298 /* First try to get it from MAC address mailbox. */
15299 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
15300 if ((hi >> 16) == 0x484b) {
15301 dev->dev_addr[0] = (hi >> 8) & 0xff;
15302 dev->dev_addr[1] = (hi >> 0) & 0xff;
15303
15304 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
15305 dev->dev_addr[2] = (lo >> 24) & 0xff;
15306 dev->dev_addr[3] = (lo >> 16) & 0xff;
15307 dev->dev_addr[4] = (lo >> 8) & 0xff;
15308 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015309
Michael Chan008652b2006-03-27 23:14:53 -080015310 /* Some old bootcode may report a 0 MAC address in SRAM */
15311 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
15312 }
15313 if (!addr_ok) {
15314 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000015315 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000015316 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000015317 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070015318 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
15319 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080015320 }
15321 /* Finally just fetch it out of the MAC control regs. */
15322 else {
15323 hi = tr32(MAC_ADDR_0_HIGH);
15324 lo = tr32(MAC_ADDR_0_LOW);
15325
15326 dev->dev_addr[5] = lo & 0xff;
15327 dev->dev_addr[4] = (lo >> 8) & 0xff;
15328 dev->dev_addr[3] = (lo >> 16) & 0xff;
15329 dev->dev_addr[2] = (lo >> 24) & 0xff;
15330 dev->dev_addr[1] = hi & 0xff;
15331 dev->dev_addr[0] = (hi >> 8) & 0xff;
15332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015333 }
15334
15335 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070015336#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070015337 if (!tg3_get_default_macaddr_sparc(tp))
15338 return 0;
15339#endif
15340 return -EINVAL;
15341 }
John W. Linville2ff43692005-09-12 14:44:20 -070015342 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015343 return 0;
15344}
15345
David S. Miller59e6b432005-05-18 22:50:10 -070015346#define BOUNDARY_SINGLE_CACHELINE 1
15347#define BOUNDARY_MULTI_CACHELINE 2
15348
15349static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
15350{
15351 int cacheline_size;
15352 u8 byte;
15353 int goal;
15354
15355 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
15356 if (byte == 0)
15357 cacheline_size = 1024;
15358 else
15359 cacheline_size = (int) byte * 4;
15360
15361 /* On 5703 and later chips, the boundary bits have no
15362 * effect.
15363 */
15364 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
15365 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015366 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070015367 goto out;
15368
15369#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
15370 goal = BOUNDARY_MULTI_CACHELINE;
15371#else
15372#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
15373 goal = BOUNDARY_SINGLE_CACHELINE;
15374#else
15375 goal = 0;
15376#endif
15377#endif
15378
Joe Perches63c3a662011-04-26 08:12:10 +000015379 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015380 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
15381 goto out;
15382 }
15383
David S. Miller59e6b432005-05-18 22:50:10 -070015384 if (!goal)
15385 goto out;
15386
15387 /* PCI controllers on most RISC systems tend to disconnect
15388 * when a device tries to burst across a cache-line boundary.
15389 * Therefore, letting tg3 do so just wastes PCI bandwidth.
15390 *
15391 * Unfortunately, for PCI-E there are only limited
15392 * write-side controls for this, and thus for reads
15393 * we will still get the disconnects. We'll also waste
15394 * these PCI cycles for both read and write for chips
15395 * other than 5700 and 5701 which do not implement the
15396 * boundary bits.
15397 */
Joe Perches63c3a662011-04-26 08:12:10 +000015398 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070015399 switch (cacheline_size) {
15400 case 16:
15401 case 32:
15402 case 64:
15403 case 128:
15404 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15405 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
15406 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
15407 } else {
15408 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
15409 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
15410 }
15411 break;
15412
15413 case 256:
15414 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
15415 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
15416 break;
15417
15418 default:
15419 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
15420 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
15421 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070015422 }
Joe Perches63c3a662011-04-26 08:12:10 +000015423 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070015424 switch (cacheline_size) {
15425 case 16:
15426 case 32:
15427 case 64:
15428 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15429 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
15430 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
15431 break;
15432 }
15433 /* fallthrough */
15434 case 128:
15435 default:
15436 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
15437 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
15438 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070015439 }
David S. Miller59e6b432005-05-18 22:50:10 -070015440 } else {
15441 switch (cacheline_size) {
15442 case 16:
15443 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15444 val |= (DMA_RWCTRL_READ_BNDRY_16 |
15445 DMA_RWCTRL_WRITE_BNDRY_16);
15446 break;
15447 }
15448 /* fallthrough */
15449 case 32:
15450 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15451 val |= (DMA_RWCTRL_READ_BNDRY_32 |
15452 DMA_RWCTRL_WRITE_BNDRY_32);
15453 break;
15454 }
15455 /* fallthrough */
15456 case 64:
15457 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15458 val |= (DMA_RWCTRL_READ_BNDRY_64 |
15459 DMA_RWCTRL_WRITE_BNDRY_64);
15460 break;
15461 }
15462 /* fallthrough */
15463 case 128:
15464 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15465 val |= (DMA_RWCTRL_READ_BNDRY_128 |
15466 DMA_RWCTRL_WRITE_BNDRY_128);
15467 break;
15468 }
15469 /* fallthrough */
15470 case 256:
15471 val |= (DMA_RWCTRL_READ_BNDRY_256 |
15472 DMA_RWCTRL_WRITE_BNDRY_256);
15473 break;
15474 case 512:
15475 val |= (DMA_RWCTRL_READ_BNDRY_512 |
15476 DMA_RWCTRL_WRITE_BNDRY_512);
15477 break;
15478 case 1024:
15479 default:
15480 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
15481 DMA_RWCTRL_WRITE_BNDRY_1024);
15482 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070015483 }
David S. Miller59e6b432005-05-18 22:50:10 -070015484 }
15485
15486out:
15487 return val;
15488}
15489
Linus Torvalds1da177e2005-04-16 15:20:36 -070015490static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
15491{
15492 struct tg3_internal_buffer_desc test_desc;
15493 u32 sram_dma_descs;
15494 int i, ret;
15495
15496 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
15497
15498 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
15499 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
15500 tw32(RDMAC_STATUS, 0);
15501 tw32(WDMAC_STATUS, 0);
15502
15503 tw32(BUFMGR_MODE, 0);
15504 tw32(FTQ_RESET, 0);
15505
15506 test_desc.addr_hi = ((u64) buf_dma) >> 32;
15507 test_desc.addr_lo = buf_dma & 0xffffffff;
15508 test_desc.nic_mbuf = 0x00002100;
15509 test_desc.len = size;
15510
15511 /*
15512 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
15513 * the *second* time the tg3 driver was getting loaded after an
15514 * initial scan.
15515 *
15516 * Broadcom tells me:
15517 * ...the DMA engine is connected to the GRC block and a DMA
15518 * reset may affect the GRC block in some unpredictable way...
15519 * The behavior of resets to individual blocks has not been tested.
15520 *
15521 * Broadcom noted the GRC reset will also reset all sub-components.
15522 */
15523 if (to_device) {
15524 test_desc.cqid_sqid = (13 << 8) | 2;
15525
15526 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
15527 udelay(40);
15528 } else {
15529 test_desc.cqid_sqid = (16 << 8) | 7;
15530
15531 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
15532 udelay(40);
15533 }
15534 test_desc.flags = 0x00000005;
15535
15536 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
15537 u32 val;
15538
15539 val = *(((u32 *)&test_desc) + i);
15540 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
15541 sram_dma_descs + (i * sizeof(u32)));
15542 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
15543 }
15544 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
15545
Matt Carlson859a588792010-04-05 10:19:28 +000015546 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015547 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000015548 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070015549 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015550
15551 ret = -ENODEV;
15552 for (i = 0; i < 40; i++) {
15553 u32 val;
15554
15555 if (to_device)
15556 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
15557 else
15558 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
15559 if ((val & 0xffff) == sram_dma_descs) {
15560 ret = 0;
15561 break;
15562 }
15563
15564 udelay(100);
15565 }
15566
15567 return ret;
15568}
15569
David S. Millerded73402005-05-23 13:59:47 -070015570#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070015571
Matt Carlson41434702011-03-09 16:58:22 +000015572static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080015573 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
15574 { },
15575};
15576
Linus Torvalds1da177e2005-04-16 15:20:36 -070015577static int __devinit tg3_test_dma(struct tg3 *tp)
15578{
15579 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070015580 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015581 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015582
Matt Carlson4bae65c2010-11-24 08:31:52 +000015583 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
15584 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015585 if (!buf) {
15586 ret = -ENOMEM;
15587 goto out_nofree;
15588 }
15589
15590 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
15591 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
15592
David S. Miller59e6b432005-05-18 22:50:10 -070015593 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015594
Joe Perches63c3a662011-04-26 08:12:10 +000015595 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015596 goto out;
15597
Joe Perches63c3a662011-04-26 08:12:10 +000015598 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015599 /* DMA read watermark not used on PCIE */
15600 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000015601 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070015602 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
15603 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015604 tp->dma_rwctrl |= 0x003f0000;
15605 else
15606 tp->dma_rwctrl |= 0x003f000f;
15607 } else {
15608 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
15609 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
15610 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080015611 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015612
Michael Chan4a29cc22006-03-19 13:21:12 -080015613 /* If the 5704 is behind the EPB bridge, we can
15614 * do the less restrictive ONE_DMA workaround for
15615 * better performance.
15616 */
Joe Perches63c3a662011-04-26 08:12:10 +000015617 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080015618 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
15619 tp->dma_rwctrl |= 0x8000;
15620 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015621 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
15622
Michael Chan49afdeb2007-02-13 12:17:03 -080015623 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
15624 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070015625 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080015626 tp->dma_rwctrl |=
15627 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
15628 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
15629 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070015630 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
15631 /* 5780 always in PCIX mode */
15632 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070015633 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
15634 /* 5714 always in PCIX mode */
15635 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015636 } else {
15637 tp->dma_rwctrl |= 0x001b000f;
15638 }
15639 }
15640
15641 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
15642 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
15643 tp->dma_rwctrl &= 0xfffffff0;
15644
15645 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
15646 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
15647 /* Remove this if it causes problems for some boards. */
15648 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
15649
15650 /* On 5700/5701 chips, we need to set this bit.
15651 * Otherwise the chip will issue cacheline transactions
15652 * to streamable DMA memory with not all the byte
15653 * enables turned on. This is an error on several
15654 * RISC PCI controllers, in particular sparc64.
15655 *
15656 * On 5703/5704 chips, this bit has been reassigned
15657 * a different meaning. In particular, it is used
15658 * on those chips to enable a PCI-X workaround.
15659 */
15660 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
15661 }
15662
15663 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15664
15665#if 0
15666 /* Unneeded, already done by tg3_get_invariants. */
15667 tg3_switch_clocks(tp);
15668#endif
15669
Linus Torvalds1da177e2005-04-16 15:20:36 -070015670 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
15671 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
15672 goto out;
15673
David S. Miller59e6b432005-05-18 22:50:10 -070015674 /* It is best to perform DMA test with maximum write burst size
15675 * to expose the 5700/5701 write DMA bug.
15676 */
15677 saved_dma_rwctrl = tp->dma_rwctrl;
15678 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15679 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15680
Linus Torvalds1da177e2005-04-16 15:20:36 -070015681 while (1) {
15682 u32 *p = buf, i;
15683
15684 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
15685 p[i] = i;
15686
15687 /* Send the buffer to the chip. */
15688 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
15689 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000015690 dev_err(&tp->pdev->dev,
15691 "%s: Buffer write failed. err = %d\n",
15692 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015693 break;
15694 }
15695
15696#if 0
15697 /* validate data reached card RAM correctly. */
15698 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15699 u32 val;
15700 tg3_read_mem(tp, 0x2100 + (i*4), &val);
15701 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000015702 dev_err(&tp->pdev->dev,
15703 "%s: Buffer corrupted on device! "
15704 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015705 /* ret = -ENODEV here? */
15706 }
15707 p[i] = 0;
15708 }
15709#endif
15710 /* Now read it back. */
15711 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
15712 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000015713 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
15714 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015715 break;
15716 }
15717
15718 /* Verify it. */
15719 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15720 if (p[i] == i)
15721 continue;
15722
David S. Miller59e6b432005-05-18 22:50:10 -070015723 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15724 DMA_RWCTRL_WRITE_BNDRY_16) {
15725 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015726 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
15727 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15728 break;
15729 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000015730 dev_err(&tp->pdev->dev,
15731 "%s: Buffer corrupted on read back! "
15732 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015733 ret = -ENODEV;
15734 goto out;
15735 }
15736 }
15737
15738 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
15739 /* Success. */
15740 ret = 0;
15741 break;
15742 }
15743 }
David S. Miller59e6b432005-05-18 22:50:10 -070015744 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15745 DMA_RWCTRL_WRITE_BNDRY_16) {
15746 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070015747 * now look for chipsets that are known to expose the
15748 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070015749 */
Matt Carlson41434702011-03-09 16:58:22 +000015750 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015751 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15752 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000015753 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015754 /* Safe to use the calculated DMA boundary. */
15755 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000015756 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070015757
David S. Miller59e6b432005-05-18 22:50:10 -070015758 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015760
15761out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000015762 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015763out_nofree:
15764 return ret;
15765}
15766
Linus Torvalds1da177e2005-04-16 15:20:36 -070015767static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
15768{
Joe Perches63c3a662011-04-26 08:12:10 +000015769 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000015770 tp->bufmgr_config.mbuf_read_dma_low_water =
15771 DEFAULT_MB_RDMA_LOW_WATER_5705;
15772 tp->bufmgr_config.mbuf_mac_rx_low_water =
15773 DEFAULT_MB_MACRX_LOW_WATER_57765;
15774 tp->bufmgr_config.mbuf_high_water =
15775 DEFAULT_MB_HIGH_WATER_57765;
15776
15777 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15778 DEFAULT_MB_RDMA_LOW_WATER_5705;
15779 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15780 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
15781 tp->bufmgr_config.mbuf_high_water_jumbo =
15782 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000015783 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070015784 tp->bufmgr_config.mbuf_read_dma_low_water =
15785 DEFAULT_MB_RDMA_LOW_WATER_5705;
15786 tp->bufmgr_config.mbuf_mac_rx_low_water =
15787 DEFAULT_MB_MACRX_LOW_WATER_5705;
15788 tp->bufmgr_config.mbuf_high_water =
15789 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070015790 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
15791 tp->bufmgr_config.mbuf_mac_rx_low_water =
15792 DEFAULT_MB_MACRX_LOW_WATER_5906;
15793 tp->bufmgr_config.mbuf_high_water =
15794 DEFAULT_MB_HIGH_WATER_5906;
15795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015796
Michael Chanfdfec1722005-07-25 12:31:48 -070015797 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15798 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
15799 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15800 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
15801 tp->bufmgr_config.mbuf_high_water_jumbo =
15802 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
15803 } else {
15804 tp->bufmgr_config.mbuf_read_dma_low_water =
15805 DEFAULT_MB_RDMA_LOW_WATER;
15806 tp->bufmgr_config.mbuf_mac_rx_low_water =
15807 DEFAULT_MB_MACRX_LOW_WATER;
15808 tp->bufmgr_config.mbuf_high_water =
15809 DEFAULT_MB_HIGH_WATER;
15810
15811 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15812 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
15813 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15814 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
15815 tp->bufmgr_config.mbuf_high_water_jumbo =
15816 DEFAULT_MB_HIGH_WATER_JUMBO;
15817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015818
15819 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
15820 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
15821}
15822
15823static char * __devinit tg3_phy_string(struct tg3 *tp)
15824{
Matt Carlson79eb6902010-02-17 15:17:03 +000015825 switch (tp->phy_id & TG3_PHY_ID_MASK) {
15826 case TG3_PHY_ID_BCM5400: return "5400";
15827 case TG3_PHY_ID_BCM5401: return "5401";
15828 case TG3_PHY_ID_BCM5411: return "5411";
15829 case TG3_PHY_ID_BCM5701: return "5701";
15830 case TG3_PHY_ID_BCM5703: return "5703";
15831 case TG3_PHY_ID_BCM5704: return "5704";
15832 case TG3_PHY_ID_BCM5705: return "5705";
15833 case TG3_PHY_ID_BCM5750: return "5750";
15834 case TG3_PHY_ID_BCM5752: return "5752";
15835 case TG3_PHY_ID_BCM5714: return "5714";
15836 case TG3_PHY_ID_BCM5780: return "5780";
15837 case TG3_PHY_ID_BCM5755: return "5755";
15838 case TG3_PHY_ID_BCM5787: return "5787";
15839 case TG3_PHY_ID_BCM5784: return "5784";
15840 case TG3_PHY_ID_BCM5756: return "5722/5756";
15841 case TG3_PHY_ID_BCM5906: return "5906";
15842 case TG3_PHY_ID_BCM5761: return "5761";
15843 case TG3_PHY_ID_BCM5718C: return "5718C";
15844 case TG3_PHY_ID_BCM5718S: return "5718S";
15845 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000015846 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000015847 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000015848 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070015849 case 0: return "serdes";
15850 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070015851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015852}
15853
Michael Chanf9804dd2005-09-27 12:13:10 -070015854static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
15855{
Joe Perches63c3a662011-04-26 08:12:10 +000015856 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015857 strcpy(str, "PCI Express");
15858 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000015859 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015860 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
15861
15862 strcpy(str, "PCIX:");
15863
15864 if ((clock_ctrl == 7) ||
15865 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
15866 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
15867 strcat(str, "133MHz");
15868 else if (clock_ctrl == 0)
15869 strcat(str, "33MHz");
15870 else if (clock_ctrl == 2)
15871 strcat(str, "50MHz");
15872 else if (clock_ctrl == 4)
15873 strcat(str, "66MHz");
15874 else if (clock_ctrl == 6)
15875 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070015876 } else {
15877 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000015878 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070015879 strcat(str, "66MHz");
15880 else
15881 strcat(str, "33MHz");
15882 }
Joe Perches63c3a662011-04-26 08:12:10 +000015883 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070015884 strcat(str, ":32-bit");
15885 else
15886 strcat(str, ":64-bit");
15887 return str;
15888}
15889
David S. Miller15f98502005-05-18 22:49:26 -070015890static void __devinit tg3_init_coal(struct tg3 *tp)
15891{
15892 struct ethtool_coalesce *ec = &tp->coal;
15893
15894 memset(ec, 0, sizeof(*ec));
15895 ec->cmd = ETHTOOL_GCOALESCE;
15896 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
15897 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
15898 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
15899 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
15900 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
15901 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
15902 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
15903 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
15904 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
15905
15906 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
15907 HOSTCC_MODE_CLRTICK_TXBD)) {
15908 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
15909 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
15910 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
15911 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
15912 }
Michael Chand244c892005-07-05 14:42:33 -070015913
Joe Perches63c3a662011-04-26 08:12:10 +000015914 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070015915 ec->rx_coalesce_usecs_irq = 0;
15916 ec->tx_coalesce_usecs_irq = 0;
15917 ec->stats_block_coalesce_usecs = 0;
15918 }
David S. Miller15f98502005-05-18 22:49:26 -070015919}
15920
Linus Torvalds1da177e2005-04-16 15:20:36 -070015921static int __devinit tg3_init_one(struct pci_dev *pdev,
15922 const struct pci_device_id *ent)
15923{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015924 struct net_device *dev;
15925 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000015926 int i, err, pm_cap;
15927 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070015928 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080015929 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000015930 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015931
Joe Perches05dbe002010-02-17 19:44:19 +000015932 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015933
15934 err = pci_enable_device(pdev);
15935 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015936 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015937 return err;
15938 }
15939
Linus Torvalds1da177e2005-04-16 15:20:36 -070015940 err = pci_request_regions(pdev, DRV_MODULE_NAME);
15941 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015942 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015943 goto err_out_disable_pdev;
15944 }
15945
15946 pci_set_master(pdev);
15947
15948 /* Find power-management capability. */
15949 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
15950 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000015951 dev_err(&pdev->dev,
15952 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015953 err = -EIO;
15954 goto err_out_free_res;
15955 }
15956
Matt Carlson16821282011-07-13 09:27:28 +000015957 err = pci_set_power_state(pdev, PCI_D0);
15958 if (err) {
15959 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
15960 goto err_out_free_res;
15961 }
15962
Matt Carlsonfe5f5782009-09-01 13:09:39 +000015963 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015964 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015965 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000015966 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015967 }
15968
Linus Torvalds1da177e2005-04-16 15:20:36 -070015969 SET_NETDEV_DEV(dev, &pdev->dev);
15970
Linus Torvalds1da177e2005-04-16 15:20:36 -070015971 tp = netdev_priv(dev);
15972 tp->pdev = pdev;
15973 tp->dev = dev;
15974 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015975 tp->rx_mode = TG3_DEF_RX_MODE;
15976 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070015977
Linus Torvalds1da177e2005-04-16 15:20:36 -070015978 if (tg3_debug > 0)
15979 tp->msg_enable = tg3_debug;
15980 else
15981 tp->msg_enable = TG3_DEF_MSG_ENABLE;
15982
15983 /* The word/byte swap controls here control register access byte
15984 * swapping. DMA data byte swapping is controlled in the GRC_MODE
15985 * setting below.
15986 */
15987 tp->misc_host_ctrl =
15988 MISC_HOST_CTRL_MASK_PCI_INT |
15989 MISC_HOST_CTRL_WORD_SWAP |
15990 MISC_HOST_CTRL_INDIR_ACCESS |
15991 MISC_HOST_CTRL_PCISTATE_RW;
15992
15993 /* The NONFRM (non-frame) byte/word swap controls take effect
15994 * on descriptor entries, anything which isn't packet data.
15995 *
15996 * The StrongARM chips on the board (one for tx, one for rx)
15997 * are running in big-endian mode.
15998 */
15999 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
16000 GRC_MODE_WSWAP_NONFRM_DATA);
16001#ifdef __BIG_ENDIAN
16002 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
16003#endif
16004 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016005 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000016006 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016007
Matt Carlsond5fe4882008-11-21 17:20:32 -080016008 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010016009 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016010 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070016011 err = -ENOMEM;
16012 goto err_out_free_dev;
16013 }
16014
Matt Carlsonc9cab242011-07-13 09:27:27 +000016015 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
16016 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
16017 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
16018 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
16019 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000016020 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlsonc9cab242011-07-13 09:27:27 +000016021 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
16022 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
16023 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720) {
16024 tg3_flag_set(tp, ENABLE_APE);
16025 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
16026 if (!tp->aperegs) {
16027 dev_err(&pdev->dev,
16028 "Cannot map APE registers, aborting\n");
16029 err = -ENOMEM;
16030 goto err_out_iounmap;
16031 }
16032 }
16033
Linus Torvalds1da177e2005-04-16 15:20:36 -070016034 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
16035 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016036
Linus Torvalds1da177e2005-04-16 15:20:36 -070016037 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016038 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000016039 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016040 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016041
16042 err = tg3_get_invariants(tp);
16043 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016044 dev_err(&pdev->dev,
16045 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000016046 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016047 }
16048
Michael Chan4a29cc22006-03-19 13:21:12 -080016049 /* The EPB bridge inside 5714, 5715, and 5780 and any
16050 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080016051 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
16052 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
16053 * do DMA address check in tg3_start_xmit().
16054 */
Joe Perches63c3a662011-04-26 08:12:10 +000016055 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070016056 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000016057 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070016058 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080016059#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070016060 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080016061#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080016062 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070016063 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080016064
16065 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070016066 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080016067 err = pci_set_dma_mask(pdev, dma_mask);
16068 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000016069 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080016070 err = pci_set_consistent_dma_mask(pdev,
16071 persist_dma_mask);
16072 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016073 dev_err(&pdev->dev, "Unable to obtain 64 bit "
16074 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000016075 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080016076 }
16077 }
16078 }
Yang Hongyang284901a2009-04-06 19:01:15 -070016079 if (err || dma_mask == DMA_BIT_MASK(32)) {
16080 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080016081 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016082 dev_err(&pdev->dev,
16083 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000016084 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080016085 }
16086 }
16087
Michael Chanfdfec1722005-07-25 12:31:48 -070016088 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016089
Matt Carlson0da06062011-05-19 12:12:53 +000016090 features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
16091
16092 /* 5700 B0 chips do not support checksumming correctly due
16093 * to hardware bugs.
16094 */
16095 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
16096 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
16097
16098 if (tg3_flag(tp, 5755_PLUS))
16099 features |= NETIF_F_IPV6_CSUM;
16100 }
16101
Michael Chan4e3a7aa2006-03-20 17:47:44 -080016102 /* TSO is on by default on chips that support hardware TSO.
16103 * Firmware TSO on older chips gives lower performance, so it
16104 * is off by default, but can be enabled using ethtool.
16105 */
Joe Perches63c3a662011-04-26 08:12:10 +000016106 if ((tg3_flag(tp, HW_TSO_1) ||
16107 tg3_flag(tp, HW_TSO_2) ||
16108 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000016109 (features & NETIF_F_IP_CSUM))
16110 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000016111 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000016112 if (features & NETIF_F_IPV6_CSUM)
16113 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000016114 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000016115 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070016116 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
16117 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000016118 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000016119 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000016120 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070016121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016122
Matt Carlsond542fe22011-05-19 16:02:43 +000016123 dev->features |= features;
16124 dev->vlan_features |= features;
16125
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000016126 /*
16127 * Add loopback capability only for a subset of devices that support
16128 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
16129 * loopback for the remaining devices.
16130 */
16131 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
16132 !tg3_flag(tp, CPMU_PRESENT))
16133 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000016134 features |= NETIF_F_LOOPBACK;
16135
Matt Carlson0da06062011-05-19 12:12:53 +000016136 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000016137
Linus Torvalds1da177e2005-04-16 15:20:36 -070016138 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016139 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016140 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000016141 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016142 tp->rx_pending = 63;
16143 }
16144
Linus Torvalds1da177e2005-04-16 15:20:36 -070016145 err = tg3_get_device_address(tp);
16146 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016147 dev_err(&pdev->dev,
16148 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000016149 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070016150 }
16151
Matt Carlsonc88864d2007-11-12 21:07:01 -080016152 /*
16153 * Reset chip in case UNDI or EFI driver did not shutdown
16154 * DMA self test will enable WDMAC and we'll see (spurious)
16155 * pending DMA on the PCI bus at that point.
16156 */
16157 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
16158 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
16159 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
16160 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
16161 }
16162
16163 err = tg3_test_dma(tp);
16164 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016165 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080016166 goto err_out_apeunmap;
16167 }
16168
Matt Carlson78f90dc2009-11-13 13:03:42 +000016169 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
16170 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
16171 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000016172 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000016173 struct tg3_napi *tnapi = &tp->napi[i];
16174
16175 tnapi->tp = tp;
16176 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
16177
16178 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000016179 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000016180 intmbx += 0x8;
16181 else
16182 intmbx += 0x4;
16183
16184 tnapi->consmbox = rcvmbx;
16185 tnapi->prodmbox = sndmbx;
16186
Matt Carlson66cfd1b2010-09-30 10:34:30 +000016187 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000016188 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000016189 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000016190 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000016191
Joe Perches63c3a662011-04-26 08:12:10 +000016192 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000016193 break;
16194
16195 /*
16196 * If we support MSIX, we'll be using RSS. If we're using
16197 * RSS, the first vector only handles link interrupts and the
16198 * remaining vectors handle rx and tx interrupts. Reuse the
16199 * mailbox values for the next iteration. The values we setup
16200 * above are still useful for the single vectored mode.
16201 */
16202 if (!i)
16203 continue;
16204
16205 rcvmbx += 0x8;
16206
16207 if (sndmbx & 0x4)
16208 sndmbx -= 0x4;
16209 else
16210 sndmbx += 0xc;
16211 }
16212
Matt Carlsonc88864d2007-11-12 21:07:01 -080016213 tg3_init_coal(tp);
16214
Michael Chanc49a1562006-12-17 17:07:29 -080016215 pci_set_drvdata(pdev, dev);
16216
Matt Carlsoncd0d7222011-07-13 09:27:33 +000016217 if (tg3_flag(tp, 5717_PLUS)) {
16218 /* Resume a low-power mode */
16219 tg3_frob_aux_power(tp, false);
16220 }
16221
Matt Carlson21f76382012-02-22 12:35:21 +000016222 tg3_timer_init(tp);
16223
Linus Torvalds1da177e2005-04-16 15:20:36 -070016224 err = register_netdev(dev);
16225 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016226 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070016227 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016228 }
16229
Joe Perches05dbe002010-02-17 19:44:19 +000016230 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
16231 tp->board_part_number,
16232 tp->pci_chip_rev_id,
16233 tg3_bus_string(tp, str),
16234 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016235
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016236 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000016237 struct phy_device *phydev;
16238 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000016239 netdev_info(dev,
16240 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000016241 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016242 } else {
16243 char *ethtype;
16244
16245 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
16246 ethtype = "10/100Base-TX";
16247 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
16248 ethtype = "1000Base-SX";
16249 else
16250 ethtype = "10/100/1000Base-T";
16251
Matt Carlson5129c3a2010-04-05 10:19:23 +000016252 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000016253 "(WireSpeed[%d], EEE[%d])\n",
16254 tg3_phy_string(tp), ethtype,
16255 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
16256 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016257 }
Matt Carlsondf59c942008-11-03 16:52:56 -080016258
Joe Perches05dbe002010-02-17 19:44:19 +000016259 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000016260 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000016261 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016262 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000016263 tg3_flag(tp, ENABLE_ASF) != 0,
16264 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000016265 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
16266 tp->dma_rwctrl,
16267 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
16268 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016269
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016270 pci_save_state(pdev);
16271
Linus Torvalds1da177e2005-04-16 15:20:36 -070016272 return 0;
16273
Matt Carlson0d3031d2007-10-10 18:02:43 -070016274err_out_apeunmap:
16275 if (tp->aperegs) {
16276 iounmap(tp->aperegs);
16277 tp->aperegs = NULL;
16278 }
16279
Linus Torvalds1da177e2005-04-16 15:20:36 -070016280err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070016281 if (tp->regs) {
16282 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070016283 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070016284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016285
16286err_out_free_dev:
16287 free_netdev(dev);
16288
Matt Carlson16821282011-07-13 09:27:28 +000016289err_out_power_down:
16290 pci_set_power_state(pdev, PCI_D3hot);
16291
Linus Torvalds1da177e2005-04-16 15:20:36 -070016292err_out_free_res:
16293 pci_release_regions(pdev);
16294
16295err_out_disable_pdev:
16296 pci_disable_device(pdev);
16297 pci_set_drvdata(pdev, NULL);
16298 return err;
16299}
16300
16301static void __devexit tg3_remove_one(struct pci_dev *pdev)
16302{
16303 struct net_device *dev = pci_get_drvdata(pdev);
16304
16305 if (dev) {
16306 struct tg3 *tp = netdev_priv(dev);
16307
Jesper Juhle3c55302012-04-09 22:50:15 +020016308 release_firmware(tp->fw);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080016309
Matt Carlsondb219972011-11-04 09:15:03 +000016310 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070016311
David S. Miller1805b2f2011-10-24 18:18:09 -040016312 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016313 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070016314 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016315 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070016316
Linus Torvalds1da177e2005-04-16 15:20:36 -070016317 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070016318 if (tp->aperegs) {
16319 iounmap(tp->aperegs);
16320 tp->aperegs = NULL;
16321 }
Michael Chan68929142005-08-09 20:17:14 -070016322 if (tp->regs) {
16323 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070016324 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070016325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016326 free_netdev(dev);
16327 pci_release_regions(pdev);
16328 pci_disable_device(pdev);
16329 pci_set_drvdata(pdev, NULL);
16330 }
16331}
16332
Eric Dumazetaa6027c2011-01-01 05:22:46 +000016333#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016334static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016335{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016336 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016337 struct net_device *dev = pci_get_drvdata(pdev);
16338 struct tg3 *tp = netdev_priv(dev);
16339 int err;
16340
16341 if (!netif_running(dev))
16342 return 0;
16343
Matt Carlsondb219972011-11-04 09:15:03 +000016344 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016345 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016346 tg3_netif_stop(tp);
16347
Matt Carlson21f76382012-02-22 12:35:21 +000016348 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016349
David S. Millerf47c11e2005-06-24 20:18:35 -070016350 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016351 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070016352 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016353
16354 netif_device_detach(dev);
16355
David S. Millerf47c11e2005-06-24 20:18:35 -070016356 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070016357 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000016358 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070016359 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016360
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016361 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016362 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016363 int err2;
16364
David S. Millerf47c11e2005-06-24 20:18:35 -070016365 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016366
Joe Perches63c3a662011-04-26 08:12:10 +000016367 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016368 err2 = tg3_restart_hw(tp, 1);
16369 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070016370 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016371
Matt Carlson21f76382012-02-22 12:35:21 +000016372 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016373
16374 netif_device_attach(dev);
16375 tg3_netif_start(tp);
16376
Michael Chanb9ec6c12006-07-25 16:37:27 -070016377out:
David S. Millerf47c11e2005-06-24 20:18:35 -070016378 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016379
16380 if (!err2)
16381 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016382 }
16383
16384 return err;
16385}
16386
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016387static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016388{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016389 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016390 struct net_device *dev = pci_get_drvdata(pdev);
16391 struct tg3 *tp = netdev_priv(dev);
16392 int err;
16393
16394 if (!netif_running(dev))
16395 return 0;
16396
Linus Torvalds1da177e2005-04-16 15:20:36 -070016397 netif_device_attach(dev);
16398
David S. Millerf47c11e2005-06-24 20:18:35 -070016399 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016400
Joe Perches63c3a662011-04-26 08:12:10 +000016401 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070016402 err = tg3_restart_hw(tp, 1);
16403 if (err)
16404 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016405
Matt Carlson21f76382012-02-22 12:35:21 +000016406 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016407
Linus Torvalds1da177e2005-04-16 15:20:36 -070016408 tg3_netif_start(tp);
16409
Michael Chanb9ec6c12006-07-25 16:37:27 -070016410out:
David S. Millerf47c11e2005-06-24 20:18:35 -070016411 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016412
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016413 if (!err)
16414 tg3_phy_start(tp);
16415
Michael Chanb9ec6c12006-07-25 16:37:27 -070016416 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016417}
16418
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016419static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000016420#define TG3_PM_OPS (&tg3_pm_ops)
16421
16422#else
16423
16424#define TG3_PM_OPS NULL
16425
16426#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016427
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016428/**
16429 * tg3_io_error_detected - called when PCI error is detected
16430 * @pdev: Pointer to PCI device
16431 * @state: The current pci connection state
16432 *
16433 * This function is called after a PCI bus error affecting
16434 * this device has been detected.
16435 */
16436static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
16437 pci_channel_state_t state)
16438{
16439 struct net_device *netdev = pci_get_drvdata(pdev);
16440 struct tg3 *tp = netdev_priv(netdev);
16441 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
16442
16443 netdev_info(netdev, "PCI I/O error detected\n");
16444
16445 rtnl_lock();
16446
16447 if (!netif_running(netdev))
16448 goto done;
16449
16450 tg3_phy_stop(tp);
16451
16452 tg3_netif_stop(tp);
16453
Matt Carlson21f76382012-02-22 12:35:21 +000016454 tg3_timer_stop(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016455
16456 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000016457 tg3_reset_task_cancel(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016458
16459 netif_device_detach(netdev);
16460
16461 /* Clean up software state, even if MMIO is blocked */
16462 tg3_full_lock(tp, 0);
16463 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
16464 tg3_full_unlock(tp);
16465
16466done:
16467 if (state == pci_channel_io_perm_failure)
16468 err = PCI_ERS_RESULT_DISCONNECT;
16469 else
16470 pci_disable_device(pdev);
16471
16472 rtnl_unlock();
16473
16474 return err;
16475}
16476
16477/**
16478 * tg3_io_slot_reset - called after the pci bus has been reset.
16479 * @pdev: Pointer to PCI device
16480 *
16481 * Restart the card from scratch, as if from a cold-boot.
16482 * At this point, the card has exprienced a hard reset,
16483 * followed by fixups by BIOS, and has its config space
16484 * set up identically to what it was at cold boot.
16485 */
16486static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
16487{
16488 struct net_device *netdev = pci_get_drvdata(pdev);
16489 struct tg3 *tp = netdev_priv(netdev);
16490 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
16491 int err;
16492
16493 rtnl_lock();
16494
16495 if (pci_enable_device(pdev)) {
16496 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
16497 goto done;
16498 }
16499
16500 pci_set_master(pdev);
16501 pci_restore_state(pdev);
16502 pci_save_state(pdev);
16503
16504 if (!netif_running(netdev)) {
16505 rc = PCI_ERS_RESULT_RECOVERED;
16506 goto done;
16507 }
16508
16509 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000016510 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016511 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016512
16513 rc = PCI_ERS_RESULT_RECOVERED;
16514
16515done:
16516 rtnl_unlock();
16517
16518 return rc;
16519}
16520
16521/**
16522 * tg3_io_resume - called when traffic can start flowing again.
16523 * @pdev: Pointer to PCI device
16524 *
16525 * This callback is called when the error recovery driver tells
16526 * us that its OK to resume normal operation.
16527 */
16528static void tg3_io_resume(struct pci_dev *pdev)
16529{
16530 struct net_device *netdev = pci_get_drvdata(pdev);
16531 struct tg3 *tp = netdev_priv(netdev);
16532 int err;
16533
16534 rtnl_lock();
16535
16536 if (!netif_running(netdev))
16537 goto done;
16538
16539 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000016540 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016541 err = tg3_restart_hw(tp, 1);
16542 tg3_full_unlock(tp);
16543 if (err) {
16544 netdev_err(netdev, "Cannot restart hardware after reset.\n");
16545 goto done;
16546 }
16547
16548 netif_device_attach(netdev);
16549
Matt Carlson21f76382012-02-22 12:35:21 +000016550 tg3_timer_start(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016551
16552 tg3_netif_start(tp);
16553
16554 tg3_phy_start(tp);
16555
16556done:
16557 rtnl_unlock();
16558}
16559
Stephen Hemminger3646f0e2012-09-07 09:33:15 -070016560static const struct pci_error_handlers tg3_err_handler = {
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016561 .error_detected = tg3_io_error_detected,
16562 .slot_reset = tg3_io_slot_reset,
16563 .resume = tg3_io_resume
16564};
16565
Linus Torvalds1da177e2005-04-16 15:20:36 -070016566static struct pci_driver tg3_driver = {
16567 .name = DRV_MODULE_NAME,
16568 .id_table = tg3_pci_tbl,
16569 .probe = tg3_init_one,
16570 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016571 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000016572 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016573};
16574
16575static int __init tg3_init(void)
16576{
Jeff Garzik29917622006-08-19 17:48:59 -040016577 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016578}
16579
16580static void __exit tg3_cleanup(void)
16581{
16582 pci_unregister_driver(&tg3_driver);
16583}
16584
16585module_init(tg3_init);
16586module_exit(tg3_cleanup);