blob: 1247c4f98807d5a433422844f58696ef10444d3f [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 Carlsonba5b0bf2010-01-12 10:11:40 +00007 * Copyright (C) 2005-2010 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>
21#include <linux/kernel.h>
22#include <linux/types.h>
23#include <linux/compiler.h>
24#include <linux/slab.h>
25#include <linux/delay.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020026#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/init.h>
28#include <linux/ioport.h>
29#include <linux/pci.h>
30#include <linux/netdevice.h>
31#include <linux/etherdevice.h>
32#include <linux/skbuff.h>
33#include <linux/ethtool.h>
34#include <linux/mii.h>
Matt Carlson158d7ab2008-05-29 01:37:54 -070035#include <linux/phy.h>
Matt Carlsona9daf362008-05-25 23:49:44 -070036#include <linux/brcmphy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/if_vlan.h>
38#include <linux/ip.h>
39#include <linux/tcp.h>
40#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070041#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020042#include <linux/dma-mapping.h>
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080043#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030046#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include <asm/system.h>
49#include <asm/io.h>
50#include <asm/byteorder.h>
51#include <asm/uaccess.h>
52
David S. Miller49b6e95f2007-03-29 01:38:42 -070053#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070055#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#endif
57
Matt Carlson63532392008-11-03 16:49:57 -080058#define BAR_0 0
59#define BAR_2 2
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
62#define TG3_VLAN_TAG_USED 1
63#else
64#define TG3_VLAN_TAG_USED 0
65#endif
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include "tg3.h"
68
69#define DRV_MODULE_NAME "tg3"
Matt Carlsonbe7ce532010-02-17 15:17:05 +000070#define DRV_MODULE_VERSION "3.108"
71#define DRV_MODULE_RELDATE "February 17, 2010"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73#define TG3_DEF_MAC_MODE 0
74#define TG3_DEF_RX_MODE 0
75#define TG3_DEF_TX_MODE 0
76#define TG3_DEF_MSG_ENABLE \
77 (NETIF_MSG_DRV | \
78 NETIF_MSG_PROBE | \
79 NETIF_MSG_LINK | \
80 NETIF_MSG_TIMER | \
81 NETIF_MSG_IFDOWN | \
82 NETIF_MSG_IFUP | \
83 NETIF_MSG_RX_ERR | \
84 NETIF_MSG_TX_ERR)
85
86/* length of time before we decide the hardware is borked,
87 * and dev->tx_timeout() should be called to fix the problem
88 */
89#define TG3_TX_TIMEOUT (5 * HZ)
90
91/* hardware minimum and maximum for a single frame's data payload */
92#define TG3_MIN_MTU 60
93#define TG3_MAX_MTU(tp) \
Matt Carlson8f666b02009-08-28 13:58:24 +000094 ((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/* These numbers seem to be hard coded in the NIC firmware somehow.
97 * You can't change the ring sizes, but you can change where you place
98 * them in the NIC onboard memory.
99 */
100#define TG3_RX_RING_SIZE 512
101#define TG3_DEF_RX_RING_PENDING 200
102#define TG3_RX_JUMBO_RING_SIZE 256
103#define TG3_DEF_RX_JUMBO_RING_PENDING 100
Matt Carlsonbaf8a942009-09-01 13:13:00 +0000104#define TG3_RSS_INDIR_TBL_SIZE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/* Do not place this n-ring entries value into the tp struct itself,
107 * we really want to expose these constants to GCC so that modulo et
108 * al. operations are done with shifts and masks instead of with
109 * hw multiply/modulo instructions. Another solution would be to
110 * replace things like '% foo' with '& (foo - 1)'.
111 */
112#define TG3_RX_RCB_RING_SIZE(tp) \
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000113 (((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) && \
Matt Carlson5ea1c502009-09-11 16:50:16 -0700114 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) ? 1024 : 512)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116#define TG3_TX_RING_SIZE 512
117#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
118
119#define TG3_RX_RING_BYTES (sizeof(struct tg3_rx_buffer_desc) * \
120 TG3_RX_RING_SIZE)
Matt Carlson79ed5ac2009-08-28 14:00:55 +0000121#define TG3_RX_JUMBO_RING_BYTES (sizeof(struct tg3_ext_rx_buffer_desc) * \
122 TG3_RX_JUMBO_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define TG3_RX_RCB_RING_BYTES(tp) (sizeof(struct tg3_rx_buffer_desc) * \
Matt Carlson79ed5ac2009-08-28 14:00:55 +0000124 TG3_RX_RCB_RING_SIZE(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
126 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
128
Matt Carlson287be122009-08-28 13:58:46 +0000129#define TG3_DMA_BYTE_ENAB 64
130
131#define TG3_RX_STD_DMA_SZ 1536
132#define TG3_RX_JMB_DMA_SZ 9046
133
134#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
135
136#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
137#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000139#define TG3_RX_STD_BUFF_RING_SIZE \
140 (sizeof(struct ring_info) * TG3_RX_RING_SIZE)
141
142#define TG3_RX_JMB_BUFF_RING_SIZE \
143 (sizeof(struct ring_info) * TG3_RX_JUMBO_RING_SIZE)
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000146#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Matt Carlsonad829262008-11-21 17:16:16 -0800148#define TG3_RAW_IP_ALIGN 2
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/* number of ETHTOOL_GSTATS u64's */
151#define TG3_NUM_STATS (sizeof(struct tg3_ethtool_stats)/sizeof(u64))
152
Michael Chan4cafd3f2005-05-29 14:56:34 -0700153#define TG3_NUM_TEST 6
154
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800155#define FIRMWARE_TG3 "tigon/tg3.bin"
156#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
157#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static char version[] __devinitdata =
Joe Perches05dbe002010-02-17 19:44:19 +0000160 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
163MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
164MODULE_LICENSE("GPL");
165MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800166MODULE_FIRMWARE(FIRMWARE_TG3);
167MODULE_FIRMWARE(FIRMWARE_TG3TSO);
168MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
169
Matt Carlson679563f2009-09-01 12:55:46 +0000170#define TG3_RSS_MIN_NUM_MSIX_VECS 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
173module_param(tg3_debug, int, 0);
174MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
175
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000176static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700177 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
178 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
179 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
180 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
181 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
182 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
183 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
184 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
185 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
186 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
187 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
188 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
189 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
190 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
191 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
192 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
193 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
194 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
195 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
196 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
197 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
198 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
199 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5720)},
200 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700201 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700202 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750)},
203 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
204 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750M)},
205 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
206 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
207 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
208 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
209 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
210 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
211 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
212 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
213 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
214 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
215 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700216 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700217 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
218 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
219 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800220 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700221 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
222 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
223 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
224 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
225 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
226 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
227 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700228 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
229 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700230 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
231 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5724)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700252 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
253 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
254 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
255 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
256 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
257 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
258 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
259 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260};
261
262MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
263
Andreas Mohr50da8592006-08-14 23:54:30 -0700264static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 const char string[ETH_GSTRING_LEN];
266} ethtool_stats_keys[TG3_NUM_STATS] = {
267 { "rx_octets" },
268 { "rx_fragments" },
269 { "rx_ucast_packets" },
270 { "rx_mcast_packets" },
271 { "rx_bcast_packets" },
272 { "rx_fcs_errors" },
273 { "rx_align_errors" },
274 { "rx_xon_pause_rcvd" },
275 { "rx_xoff_pause_rcvd" },
276 { "rx_mac_ctrl_rcvd" },
277 { "rx_xoff_entered" },
278 { "rx_frame_too_long_errors" },
279 { "rx_jabbers" },
280 { "rx_undersize_packets" },
281 { "rx_in_length_errors" },
282 { "rx_out_length_errors" },
283 { "rx_64_or_less_octet_packets" },
284 { "rx_65_to_127_octet_packets" },
285 { "rx_128_to_255_octet_packets" },
286 { "rx_256_to_511_octet_packets" },
287 { "rx_512_to_1023_octet_packets" },
288 { "rx_1024_to_1522_octet_packets" },
289 { "rx_1523_to_2047_octet_packets" },
290 { "rx_2048_to_4095_octet_packets" },
291 { "rx_4096_to_8191_octet_packets" },
292 { "rx_8192_to_9022_octet_packets" },
293
294 { "tx_octets" },
295 { "tx_collisions" },
296
297 { "tx_xon_sent" },
298 { "tx_xoff_sent" },
299 { "tx_flow_control" },
300 { "tx_mac_errors" },
301 { "tx_single_collisions" },
302 { "tx_mult_collisions" },
303 { "tx_deferred" },
304 { "tx_excessive_collisions" },
305 { "tx_late_collisions" },
306 { "tx_collide_2times" },
307 { "tx_collide_3times" },
308 { "tx_collide_4times" },
309 { "tx_collide_5times" },
310 { "tx_collide_6times" },
311 { "tx_collide_7times" },
312 { "tx_collide_8times" },
313 { "tx_collide_9times" },
314 { "tx_collide_10times" },
315 { "tx_collide_11times" },
316 { "tx_collide_12times" },
317 { "tx_collide_13times" },
318 { "tx_collide_14times" },
319 { "tx_collide_15times" },
320 { "tx_ucast_packets" },
321 { "tx_mcast_packets" },
322 { "tx_bcast_packets" },
323 { "tx_carrier_sense_errors" },
324 { "tx_discards" },
325 { "tx_errors" },
326
327 { "dma_writeq_full" },
328 { "dma_write_prioq_full" },
329 { "rxbds_empty" },
330 { "rx_discards" },
331 { "rx_errors" },
332 { "rx_threshold_hit" },
333
334 { "dma_readq_full" },
335 { "dma_read_prioq_full" },
336 { "tx_comp_queue_full" },
337
338 { "ring_set_send_prod_index" },
339 { "ring_status_update" },
340 { "nic_irqs" },
341 { "nic_avoided_irqs" },
342 { "nic_tx_threshold_hit" }
343};
344
Andreas Mohr50da8592006-08-14 23:54:30 -0700345static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700346 const char string[ETH_GSTRING_LEN];
347} ethtool_test_keys[TG3_NUM_TEST] = {
348 { "nvram test (online) " },
349 { "link test (online) " },
350 { "register test (offline)" },
351 { "memory test (offline)" },
352 { "loopback test (offline)" },
353 { "interrupt test (offline)" },
354};
355
Michael Chanb401e9e2005-12-19 16:27:04 -0800356static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
357{
358 writel(val, tp->regs + off);
359}
360
361static u32 tg3_read32(struct tg3 *tp, u32 off)
362{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400363 return (readl(tp->regs + off));
Michael Chanb401e9e2005-12-19 16:27:04 -0800364}
365
Matt Carlson0d3031d2007-10-10 18:02:43 -0700366static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
367{
368 writel(val, tp->aperegs + off);
369}
370
371static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
372{
373 return (readl(tp->aperegs + off));
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
377{
Michael Chan68929142005-08-09 20:17:14 -0700378 unsigned long flags;
379
380 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700381 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
382 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700383 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700384}
385
386static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
387{
388 writel(val, tp->regs + off);
389 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
Michael Chan68929142005-08-09 20:17:14 -0700392static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
393{
394 unsigned long flags;
395 u32 val;
396
397 spin_lock_irqsave(&tp->indirect_lock, flags);
398 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
399 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
400 spin_unlock_irqrestore(&tp->indirect_lock, flags);
401 return val;
402}
403
404static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
405{
406 unsigned long flags;
407
408 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
409 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
410 TG3_64BIT_REG_LOW, val);
411 return;
412 }
Matt Carlson66711e62009-11-13 13:03:49 +0000413 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700414 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
415 TG3_64BIT_REG_LOW, val);
416 return;
417 }
418
419 spin_lock_irqsave(&tp->indirect_lock, flags);
420 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
421 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
422 spin_unlock_irqrestore(&tp->indirect_lock, flags);
423
424 /* In indirect mode when disabling interrupts, we also need
425 * to clear the interrupt bit in the GRC local ctrl register.
426 */
427 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
428 (val == 0x1)) {
429 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
430 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
431 }
432}
433
434static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
435{
436 unsigned long flags;
437 u32 val;
438
439 spin_lock_irqsave(&tp->indirect_lock, flags);
440 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
441 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
442 spin_unlock_irqrestore(&tp->indirect_lock, flags);
443 return val;
444}
445
Michael Chanb401e9e2005-12-19 16:27:04 -0800446/* usec_wait specifies the wait time in usec when writing to certain registers
447 * where it is unsafe to read back the register without some delay.
448 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
449 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
450 */
451static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Michael Chanb401e9e2005-12-19 16:27:04 -0800453 if ((tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) ||
454 (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND))
455 /* Non-posted methods */
456 tp->write32(tp, off, val);
457 else {
458 /* Posted method */
459 tg3_write32(tp, off, val);
460 if (usec_wait)
461 udelay(usec_wait);
462 tp->read32(tp, off);
463 }
464 /* Wait again after the read for the posted method to guarantee that
465 * the wait time is met.
466 */
467 if (usec_wait)
468 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Michael Chan09ee9292005-08-09 20:17:00 -0700471static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
472{
473 tp->write32_mbox(tp, off, val);
Michael Chan68929142005-08-09 20:17:14 -0700474 if (!(tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER) &&
475 !(tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND))
476 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700477}
478
Michael Chan20094932005-08-09 20:16:32 -0700479static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 void __iomem *mbox = tp->regs + off;
482 writel(val, mbox);
483 if (tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG)
484 writel(val, mbox);
485 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
486 readl(mbox);
487}
488
Michael Chanb5d37722006-09-27 16:06:21 -0700489static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
490{
491 return (readl(tp->regs + off + GRCMBOX_BASE));
492}
493
494static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
495{
496 writel(val, tp->regs + off + GRCMBOX_BASE);
497}
498
Michael Chan20094932005-08-09 20:16:32 -0700499#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700500#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Michael Chan20094932005-08-09 20:16:32 -0700501#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
502#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700503#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700504
505#define tw32(reg,val) tp->write32(tp, reg, val)
Michael Chanb401e9e2005-12-19 16:27:04 -0800506#define tw32_f(reg,val) _tw32_flush(tp,(reg),(val), 0)
507#define tw32_wait_f(reg,val,us) _tw32_flush(tp,(reg),(val), (us))
Michael Chan20094932005-08-09 20:16:32 -0700508#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
511{
Michael Chan68929142005-08-09 20:17:14 -0700512 unsigned long flags;
513
Michael Chanb5d37722006-09-27 16:06:21 -0700514 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
515 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
516 return;
517
Michael Chan68929142005-08-09 20:17:14 -0700518 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chanbbadf502006-04-06 21:46:34 -0700519 if (tp->tg3_flags & TG3_FLAG_SRAM_USE_CONFIG) {
520 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
521 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Michael Chanbbadf502006-04-06 21:46:34 -0700523 /* Always leave this as zero. */
524 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
525 } else {
526 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
527 tw32_f(TG3PCI_MEM_WIN_DATA, val);
528
529 /* Always leave this as zero. */
530 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
531 }
Michael Chan68929142005-08-09 20:17:14 -0700532 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
536{
Michael Chan68929142005-08-09 20:17:14 -0700537 unsigned long flags;
538
Michael Chanb5d37722006-09-27 16:06:21 -0700539 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
540 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
541 *val = 0;
542 return;
543 }
544
Michael Chan68929142005-08-09 20:17:14 -0700545 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chanbbadf502006-04-06 21:46:34 -0700546 if (tp->tg3_flags & TG3_FLAG_SRAM_USE_CONFIG) {
547 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
548 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Michael Chanbbadf502006-04-06 21:46:34 -0700550 /* Always leave this as zero. */
551 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
552 } else {
553 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
554 *val = tr32(TG3PCI_MEM_WIN_DATA);
555
556 /* Always leave this as zero. */
557 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
558 }
Michael Chan68929142005-08-09 20:17:14 -0700559 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Matt Carlson0d3031d2007-10-10 18:02:43 -0700562static void tg3_ape_lock_init(struct tg3 *tp)
563{
564 int i;
565
566 /* Make sure the driver hasn't any stale locks. */
567 for (i = 0; i < 8; i++)
568 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + 4 * i,
569 APE_LOCK_GRANT_DRIVER);
570}
571
572static int tg3_ape_lock(struct tg3 *tp, int locknum)
573{
574 int i, off;
575 int ret = 0;
576 u32 status;
577
578 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
579 return 0;
580
581 switch (locknum) {
Matt Carlson77b483f2008-08-15 14:07:24 -0700582 case TG3_APE_LOCK_GRC:
Matt Carlson0d3031d2007-10-10 18:02:43 -0700583 case TG3_APE_LOCK_MEM:
584 break;
585 default:
586 return -EINVAL;
587 }
588
589 off = 4 * locknum;
590
591 tg3_ape_write32(tp, TG3_APE_LOCK_REQ + off, APE_LOCK_REQ_DRIVER);
592
593 /* Wait for up to 1 millisecond to acquire lock. */
594 for (i = 0; i < 100; i++) {
595 status = tg3_ape_read32(tp, TG3_APE_LOCK_GRANT + off);
596 if (status == APE_LOCK_GRANT_DRIVER)
597 break;
598 udelay(10);
599 }
600
601 if (status != APE_LOCK_GRANT_DRIVER) {
602 /* Revoke the lock request. */
603 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + off,
604 APE_LOCK_GRANT_DRIVER);
605
606 ret = -EBUSY;
607 }
608
609 return ret;
610}
611
612static void tg3_ape_unlock(struct tg3 *tp, int locknum)
613{
614 int off;
615
616 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
617 return;
618
619 switch (locknum) {
Matt Carlson77b483f2008-08-15 14:07:24 -0700620 case TG3_APE_LOCK_GRC:
Matt Carlson0d3031d2007-10-10 18:02:43 -0700621 case TG3_APE_LOCK_MEM:
622 break;
623 default:
624 return;
625 }
626
627 off = 4 * locknum;
628 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + off, APE_LOCK_GRANT_DRIVER);
629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631static void tg3_disable_ints(struct tg3 *tp)
632{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000633 int i;
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 tw32(TG3PCI_MISC_HOST_CTRL,
636 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000637 for (i = 0; i < tp->irq_max; i++)
638 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641static void tg3_enable_ints(struct tg3 *tp)
642{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000643 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000644
Michael Chanbbe832c2005-06-24 20:20:04 -0700645 tp->irq_sync = 0;
646 wmb();
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 tw32(TG3PCI_MISC_HOST_CTRL,
649 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000650
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000651 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000652 for (i = 0; i < tp->irq_cnt; i++) {
653 struct tg3_napi *tnapi = &tp->napi[i];
654 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
655 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
656 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
657
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000658 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000659 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000660
661 /* Force an initial interrupt */
662 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
663 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
664 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
665 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000666 tw32(HOSTCC_MODE, tp->coal_now);
667
668 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
Matt Carlson17375d22009-08-28 14:02:18 +0000671static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700672{
Matt Carlson17375d22009-08-28 14:02:18 +0000673 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000674 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700675 unsigned int work_exists = 0;
676
677 /* check for phy events */
678 if (!(tp->tg3_flags &
679 (TG3_FLAG_USE_LINKCHG_REG |
680 TG3_FLAG_POLL_SERDES))) {
681 if (sblk->status & SD_STATUS_LINK_CHG)
682 work_exists = 1;
683 }
684 /* check for RX/TX work to do */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000685 if (sblk->idx[0].tx_consumer != tnapi->tx_cons ||
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000686 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700687 work_exists = 1;
688
689 return work_exists;
690}
691
Matt Carlson17375d22009-08-28 14:02:18 +0000692/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700693 * similar to tg3_enable_ints, but it accurately determines whether there
694 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400695 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 */
Matt Carlson17375d22009-08-28 14:02:18 +0000697static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Matt Carlson17375d22009-08-28 14:02:18 +0000699 struct tg3 *tp = tnapi->tp;
700
Matt Carlson898a56f2009-08-28 14:02:40 +0000701 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 mmiowb();
703
David S. Millerfac9b832005-05-18 22:46:34 -0700704 /* When doing tagged status, this work check is unnecessary.
705 * The last_tag we write above tells the chip which piece of
706 * work we've completed.
707 */
708 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
Matt Carlson17375d22009-08-28 14:02:18 +0000709 tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700710 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000711 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Matt Carlsonfed97812009-09-01 13:10:19 +0000714static void tg3_napi_disable(struct tg3 *tp)
715{
716 int i;
717
718 for (i = tp->irq_cnt - 1; i >= 0; i--)
719 napi_disable(&tp->napi[i].napi);
720}
721
722static void tg3_napi_enable(struct tg3 *tp)
723{
724 int i;
725
726 for (i = 0; i < tp->irq_cnt; i++)
727 napi_enable(&tp->napi[i].napi);
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730static inline void tg3_netif_stop(struct tg3 *tp)
731{
Michael Chanbbe832c2005-06-24 20:20:04 -0700732 tp->dev->trans_start = jiffies; /* prevent tx timeout */
Matt Carlsonfed97812009-09-01 13:10:19 +0000733 tg3_napi_disable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 netif_tx_disable(tp->dev);
735}
736
737static inline void tg3_netif_start(struct tg3 *tp)
738{
Matt Carlsonfe5f5782009-09-01 13:09:39 +0000739 /* NOTE: unconditional netif_tx_wake_all_queues is only
740 * appropriate so long as all callers are assured to
741 * have free tx slots (such as after tg3_init_hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 */
Matt Carlsonfe5f5782009-09-01 13:09:39 +0000743 netif_tx_wake_all_queues(tp->dev);
744
Matt Carlsonfed97812009-09-01 13:10:19 +0000745 tg3_napi_enable(tp);
746 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
David S. Millerf47c11e2005-06-24 20:18:35 -0700747 tg3_enable_ints(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
750static void tg3_switch_clocks(struct tg3 *tp)
751{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000752 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 u32 orig_clock_ctrl;
754
Matt Carlson795d01c2007-10-07 23:28:17 -0700755 if ((tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
756 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700757 return;
758
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000759 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 orig_clock_ctrl = clock_ctrl;
762 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
763 CLOCK_CTRL_CLKRUN_OENABLE |
764 0x1f);
765 tp->pci_clock_ctrl = clock_ctrl;
766
767 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
768 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800769 tw32_wait_f(TG3PCI_CLOCK_CTRL,
770 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800773 tw32_wait_f(TG3PCI_CLOCK_CTRL,
774 clock_ctrl |
775 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
776 40);
777 tw32_wait_f(TG3PCI_CLOCK_CTRL,
778 clock_ctrl | (CLOCK_CTRL_ALTCLK),
779 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800781 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784#define PHY_BUSY_LOOPS 5000
785
786static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
787{
788 u32 frame_val;
789 unsigned int loops;
790 int ret;
791
792 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
793 tw32_f(MAC_MI_MODE,
794 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
795 udelay(80);
796 }
797
798 *val = 0x0;
799
Matt Carlson882e9792009-09-01 13:21:36 +0000800 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 MI_COM_PHY_ADDR_MASK);
802 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
803 MI_COM_REG_ADDR_MASK);
804 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 tw32_f(MAC_MI_COM, frame_val);
807
808 loops = PHY_BUSY_LOOPS;
809 while (loops != 0) {
810 udelay(10);
811 frame_val = tr32(MAC_MI_COM);
812
813 if ((frame_val & MI_COM_BUSY) == 0) {
814 udelay(5);
815 frame_val = tr32(MAC_MI_COM);
816 break;
817 }
818 loops -= 1;
819 }
820
821 ret = -EBUSY;
822 if (loops != 0) {
823 *val = frame_val & MI_COM_DATA_MASK;
824 ret = 0;
825 }
826
827 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
828 tw32_f(MAC_MI_MODE, tp->mi_mode);
829 udelay(80);
830 }
831
832 return ret;
833}
834
835static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
836{
837 u32 frame_val;
838 unsigned int loops;
839 int ret;
840
Matt Carlson7f97a4b2009-08-25 10:10:03 +0000841 if ((tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) &&
Michael Chanb5d37722006-09-27 16:06:21 -0700842 (reg == MII_TG3_CTRL || reg == MII_TG3_AUX_CTRL))
843 return 0;
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
846 tw32_f(MAC_MI_MODE,
847 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
848 udelay(80);
849 }
850
Matt Carlson882e9792009-09-01 13:21:36 +0000851 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 MI_COM_PHY_ADDR_MASK);
853 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
854 MI_COM_REG_ADDR_MASK);
855 frame_val |= (val & MI_COM_DATA_MASK);
856 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 tw32_f(MAC_MI_COM, frame_val);
859
860 loops = PHY_BUSY_LOOPS;
861 while (loops != 0) {
862 udelay(10);
863 frame_val = tr32(MAC_MI_COM);
864 if ((frame_val & MI_COM_BUSY) == 0) {
865 udelay(5);
866 frame_val = tr32(MAC_MI_COM);
867 break;
868 }
869 loops -= 1;
870 }
871
872 ret = -EBUSY;
873 if (loops != 0)
874 ret = 0;
875
876 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
877 tw32_f(MAC_MI_MODE, tp->mi_mode);
878 udelay(80);
879 }
880
881 return ret;
882}
883
Matt Carlson95e28692008-05-25 23:44:14 -0700884static int tg3_bmcr_reset(struct tg3 *tp)
885{
886 u32 phy_control;
887 int limit, err;
888
889 /* OK, reset it, and poll the BMCR_RESET bit until it
890 * clears or we time out.
891 */
892 phy_control = BMCR_RESET;
893 err = tg3_writephy(tp, MII_BMCR, phy_control);
894 if (err != 0)
895 return -EBUSY;
896
897 limit = 5000;
898 while (limit--) {
899 err = tg3_readphy(tp, MII_BMCR, &phy_control);
900 if (err != 0)
901 return -EBUSY;
902
903 if ((phy_control & BMCR_RESET) == 0) {
904 udelay(40);
905 break;
906 }
907 udelay(10);
908 }
Roel Kluind4675b52009-02-12 16:33:27 -0800909 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -0700910 return -EBUSY;
911
912 return 0;
913}
914
Matt Carlson158d7ab2008-05-29 01:37:54 -0700915static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
916{
Francois Romieu3d165432009-01-19 16:56:50 -0800917 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700918 u32 val;
919
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000920 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -0700921
922 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000923 val = -EIO;
924
925 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -0700926
927 return val;
928}
929
930static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
931{
Francois Romieu3d165432009-01-19 16:56:50 -0800932 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000933 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700934
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000935 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -0700936
937 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000938 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700939
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000940 spin_unlock_bh(&tp->lock);
941
942 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700943}
944
945static int tg3_mdio_reset(struct mii_bus *bp)
946{
947 return 0;
948}
949
Matt Carlson9c61d6b2008-11-03 16:54:56 -0800950static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -0700951{
952 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800953 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -0700954
Matt Carlson3f0e3ad2009-11-02 14:24:36 +0000955 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800956 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +0000957 case PHY_ID_BCM50610:
958 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800959 val = MAC_PHYCFG2_50610_LED_MODES;
960 break;
Matt Carlson6a443a02010-02-17 15:17:04 +0000961 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800962 val = MAC_PHYCFG2_AC131_LED_MODES;
963 break;
Matt Carlson6a443a02010-02-17 15:17:04 +0000964 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800965 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
966 break;
Matt Carlson6a443a02010-02-17 15:17:04 +0000967 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800968 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
969 break;
970 default:
Matt Carlsona9daf362008-05-25 23:49:44 -0700971 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800972 }
973
974 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
975 tw32(MAC_PHYCFG2, val);
976
977 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +0000978 val &= ~(MAC_PHYCFG1_RGMII_INT |
979 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
980 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800981 tw32(MAC_PHYCFG1, val);
982
983 return;
984 }
985
Matt Carlson14417062010-02-17 15:16:59 +0000986 if (!(tp->tg3_flags3 & TG3_FLG3_RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800987 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
988 MAC_PHYCFG2_FMODE_MASK_MASK |
989 MAC_PHYCFG2_GMODE_MASK_MASK |
990 MAC_PHYCFG2_ACT_MASK_MASK |
991 MAC_PHYCFG2_QUAL_MASK_MASK |
992 MAC_PHYCFG2_INBAND_ENABLE;
993
994 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -0700995
Matt Carlsonbb85fbb2009-08-25 10:09:07 +0000996 val = tr32(MAC_PHYCFG1);
997 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
998 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Matt Carlson14417062010-02-17 15:16:59 +0000999 if (!(tp->tg3_flags3 & TG3_FLG3_RGMII_INBAND_DISABLE)) {
Matt Carlsona9daf362008-05-25 23:49:44 -07001000 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
1001 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
1002 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
1003 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1004 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001005 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1006 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1007 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001008
Matt Carlsona9daf362008-05-25 23:49:44 -07001009 val = tr32(MAC_EXT_RGMII_MODE);
1010 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1011 MAC_RGMII_MODE_RX_QUALITY |
1012 MAC_RGMII_MODE_RX_ACTIVITY |
1013 MAC_RGMII_MODE_RX_ENG_DET |
1014 MAC_RGMII_MODE_TX_ENABLE |
1015 MAC_RGMII_MODE_TX_LOWPWR |
1016 MAC_RGMII_MODE_TX_RESET);
Matt Carlson14417062010-02-17 15:16:59 +00001017 if (!(tp->tg3_flags3 & TG3_FLG3_RGMII_INBAND_DISABLE)) {
Matt Carlsona9daf362008-05-25 23:49:44 -07001018 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
1019 val |= MAC_RGMII_MODE_RX_INT_B |
1020 MAC_RGMII_MODE_RX_QUALITY |
1021 MAC_RGMII_MODE_RX_ACTIVITY |
1022 MAC_RGMII_MODE_RX_ENG_DET;
1023 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
1024 val |= MAC_RGMII_MODE_TX_ENABLE |
1025 MAC_RGMII_MODE_TX_LOWPWR |
1026 MAC_RGMII_MODE_TX_RESET;
1027 }
1028 tw32(MAC_EXT_RGMII_MODE, val);
1029}
1030
Matt Carlson158d7ab2008-05-29 01:37:54 -07001031static void tg3_mdio_start(struct tg3 *tp)
1032{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001033 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1034 tw32_f(MAC_MI_MODE, tp->mi_mode);
1035 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001036
Matt Carlson9ea48182010-02-17 15:17:01 +00001037 if ((tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED) &&
1038 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1039 tg3_mdio_config_5785(tp);
1040}
1041
1042static int tg3_mdio_init(struct tg3 *tp)
1043{
1044 int i;
1045 u32 reg;
1046 struct phy_device *phydev;
1047
Matt Carlson882e9792009-09-01 13:21:36 +00001048 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
1049 u32 funcnum, is_serdes;
1050
1051 funcnum = tr32(TG3_CPMU_STATUS) & TG3_CPMU_STATUS_PCIE_FUNC;
1052 if (funcnum)
1053 tp->phy_addr = 2;
1054 else
1055 tp->phy_addr = 1;
1056
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001057 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1058 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1059 else
1060 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1061 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001062 if (is_serdes)
1063 tp->phy_addr += 7;
1064 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001065 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001066
Matt Carlson158d7ab2008-05-29 01:37:54 -07001067 tg3_mdio_start(tp);
1068
1069 if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) ||
1070 (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED))
1071 return 0;
1072
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001073 tp->mdio_bus = mdiobus_alloc();
1074 if (tp->mdio_bus == NULL)
1075 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001076
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001077 tp->mdio_bus->name = "tg3 mdio bus";
1078 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001079 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001080 tp->mdio_bus->priv = tp;
1081 tp->mdio_bus->parent = &tp->pdev->dev;
1082 tp->mdio_bus->read = &tg3_mdio_read;
1083 tp->mdio_bus->write = &tg3_mdio_write;
1084 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001085 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001086 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001087
1088 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001089 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001090
1091 /* The bus registration will look for all the PHYs on the mdio bus.
1092 * Unfortunately, it does not ensure the PHY is powered up before
1093 * accessing the PHY ID registers. A chip reset is the
1094 * quickest way to bring the device back to an operational state..
1095 */
1096 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1097 tg3_bmcr_reset(tp);
1098
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001099 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001100 if (i) {
Joe Perches05dbe002010-02-17 19:44:19 +00001101 netdev_warn(tp->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001102 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001103 return i;
1104 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001105
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001106 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001107
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001108 if (!phydev || !phydev->drv) {
Joe Perches05dbe002010-02-17 19:44:19 +00001109 netdev_warn(tp->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001110 mdiobus_unregister(tp->mdio_bus);
1111 mdiobus_free(tp->mdio_bus);
1112 return -ENODEV;
1113 }
1114
1115 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001116 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001117 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001118 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001119 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001120 case PHY_ID_BCM50610:
1121 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001122 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001123 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001124 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001125 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson14417062010-02-17 15:16:59 +00001126 if (tp->tg3_flags3 & TG3_FLG3_RGMII_INBAND_DISABLE)
Matt Carlsona9daf362008-05-25 23:49:44 -07001127 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
1128 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
1129 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
1130 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
1131 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001132 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001133 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001134 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001135 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001136 case PHY_ID_RTL8201E:
1137 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001138 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001139 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001140 tp->tg3_flags3 |= TG3_FLG3_PHY_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001141 break;
1142 }
1143
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001144 tp->tg3_flags3 |= TG3_FLG3_MDIOBUS_INITED;
1145
1146 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1147 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001148
1149 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001150}
1151
1152static void tg3_mdio_fini(struct tg3 *tp)
1153{
1154 if (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED) {
1155 tp->tg3_flags3 &= ~TG3_FLG3_MDIOBUS_INITED;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001156 mdiobus_unregister(tp->mdio_bus);
1157 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001158 }
1159}
1160
Matt Carlson95e28692008-05-25 23:44:14 -07001161/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001162static inline void tg3_generate_fw_event(struct tg3 *tp)
1163{
1164 u32 val;
1165
1166 val = tr32(GRC_RX_CPU_EVENT);
1167 val |= GRC_RX_CPU_DRIVER_EVENT;
1168 tw32_f(GRC_RX_CPU_EVENT, val);
1169
1170 tp->last_event_jiffies = jiffies;
1171}
1172
1173#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1174
1175/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001176static void tg3_wait_for_event_ack(struct tg3 *tp)
1177{
1178 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001179 unsigned int delay_cnt;
1180 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001181
Matt Carlson4ba526c2008-08-15 14:10:04 -07001182 /* If enough time has passed, no wait is necessary. */
1183 time_remain = (long)(tp->last_event_jiffies + 1 +
1184 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1185 (long)jiffies;
1186 if (time_remain < 0)
1187 return;
1188
1189 /* Check if we can shorten the wait time. */
1190 delay_cnt = jiffies_to_usecs(time_remain);
1191 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1192 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1193 delay_cnt = (delay_cnt >> 3) + 1;
1194
1195 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001196 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1197 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001198 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001199 }
1200}
1201
1202/* tp->lock is held. */
1203static void tg3_ump_link_report(struct tg3 *tp)
1204{
1205 u32 reg;
1206 u32 val;
1207
1208 if (!(tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
1209 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
1210 return;
1211
1212 tg3_wait_for_event_ack(tp);
1213
1214 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1215
1216 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1217
1218 val = 0;
1219 if (!tg3_readphy(tp, MII_BMCR, &reg))
1220 val = reg << 16;
1221 if (!tg3_readphy(tp, MII_BMSR, &reg))
1222 val |= (reg & 0xffff);
1223 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, val);
1224
1225 val = 0;
1226 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1227 val = reg << 16;
1228 if (!tg3_readphy(tp, MII_LPA, &reg))
1229 val |= (reg & 0xffff);
1230 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 4, val);
1231
1232 val = 0;
1233 if (!(tp->tg3_flags2 & TG3_FLG2_MII_SERDES)) {
1234 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1235 val = reg << 16;
1236 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1237 val |= (reg & 0xffff);
1238 }
1239 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 8, val);
1240
1241 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1242 val = reg << 16;
1243 else
1244 val = 0;
1245 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 12, val);
1246
Matt Carlson4ba526c2008-08-15 14:10:04 -07001247 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001248}
1249
1250static void tg3_link_report(struct tg3 *tp)
1251{
1252 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001253 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001254 tg3_ump_link_report(tp);
1255 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001256 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1257 (tp->link_config.active_speed == SPEED_1000 ?
1258 1000 :
1259 (tp->link_config.active_speed == SPEED_100 ?
1260 100 : 10)),
1261 (tp->link_config.active_duplex == DUPLEX_FULL ?
1262 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001263
Joe Perches05dbe002010-02-17 19:44:19 +00001264 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1265 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1266 "on" : "off",
1267 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1268 "on" : "off");
Matt Carlson95e28692008-05-25 23:44:14 -07001269 tg3_ump_link_report(tp);
1270 }
1271}
1272
1273static u16 tg3_advert_flowctrl_1000T(u8 flow_ctrl)
1274{
1275 u16 miireg;
1276
Steve Glendinninge18ce342008-12-16 02:00:00 -08001277 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001278 miireg = ADVERTISE_PAUSE_CAP;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001279 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001280 miireg = ADVERTISE_PAUSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001281 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001282 miireg = ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1283 else
1284 miireg = 0;
1285
1286 return miireg;
1287}
1288
1289static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1290{
1291 u16 miireg;
1292
Steve Glendinninge18ce342008-12-16 02:00:00 -08001293 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001294 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001295 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001296 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001297 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001298 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1299 else
1300 miireg = 0;
1301
1302 return miireg;
1303}
1304
Matt Carlson95e28692008-05-25 23:44:14 -07001305static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1306{
1307 u8 cap = 0;
1308
1309 if (lcladv & ADVERTISE_1000XPAUSE) {
1310 if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1311 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001312 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001313 else if (rmtadv & LPA_1000XPAUSE_ASYM)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001314 cap = FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001315 } else {
1316 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001317 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001318 }
1319 } else if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1320 if ((rmtadv & LPA_1000XPAUSE) && (rmtadv & LPA_1000XPAUSE_ASYM))
Steve Glendinninge18ce342008-12-16 02:00:00 -08001321 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001322 }
1323
1324 return cap;
1325}
1326
Matt Carlsonf51f3562008-05-25 23:45:08 -07001327static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001328{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001329 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001330 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001331 u32 old_rx_mode = tp->rx_mode;
1332 u32 old_tx_mode = tp->tx_mode;
1333
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001334 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001335 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001336 else
1337 autoneg = tp->link_config.autoneg;
1338
1339 if (autoneg == AUTONEG_ENABLE &&
Matt Carlson95e28692008-05-25 23:44:14 -07001340 (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG)) {
1341 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001342 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001343 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001344 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001345 } else
1346 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001347
Matt Carlsonf51f3562008-05-25 23:45:08 -07001348 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001349
Steve Glendinninge18ce342008-12-16 02:00:00 -08001350 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001351 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1352 else
1353 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1354
Matt Carlsonf51f3562008-05-25 23:45:08 -07001355 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001356 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001357
Steve Glendinninge18ce342008-12-16 02:00:00 -08001358 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001359 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1360 else
1361 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1362
Matt Carlsonf51f3562008-05-25 23:45:08 -07001363 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001364 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001365}
1366
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001367static void tg3_adjust_link(struct net_device *dev)
1368{
1369 u8 oldflowctrl, linkmesg = 0;
1370 u32 mac_mode, lcl_adv, rmt_adv;
1371 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001372 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001373
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001374 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001375
1376 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1377 MAC_MODE_HALF_DUPLEX);
1378
1379 oldflowctrl = tp->link_config.active_flowctrl;
1380
1381 if (phydev->link) {
1382 lcl_adv = 0;
1383 rmt_adv = 0;
1384
1385 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1386 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001387 else if (phydev->speed == SPEED_1000 ||
1388 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001389 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001390 else
1391 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001392
1393 if (phydev->duplex == DUPLEX_HALF)
1394 mac_mode |= MAC_MODE_HALF_DUPLEX;
1395 else {
1396 lcl_adv = tg3_advert_flowctrl_1000T(
1397 tp->link_config.flowctrl);
1398
1399 if (phydev->pause)
1400 rmt_adv = LPA_PAUSE_CAP;
1401 if (phydev->asym_pause)
1402 rmt_adv |= LPA_PAUSE_ASYM;
1403 }
1404
1405 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1406 } else
1407 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1408
1409 if (mac_mode != tp->mac_mode) {
1410 tp->mac_mode = mac_mode;
1411 tw32_f(MAC_MODE, tp->mac_mode);
1412 udelay(40);
1413 }
1414
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001415 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1416 if (phydev->speed == SPEED_10)
1417 tw32(MAC_MI_STAT,
1418 MAC_MI_STAT_10MBPS_MODE |
1419 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1420 else
1421 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1422 }
1423
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001424 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1425 tw32(MAC_TX_LENGTHS,
1426 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1427 (6 << TX_LENGTHS_IPG_SHIFT) |
1428 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1429 else
1430 tw32(MAC_TX_LENGTHS,
1431 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1432 (6 << TX_LENGTHS_IPG_SHIFT) |
1433 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1434
1435 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1436 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1437 phydev->speed != tp->link_config.active_speed ||
1438 phydev->duplex != tp->link_config.active_duplex ||
1439 oldflowctrl != tp->link_config.active_flowctrl)
1440 linkmesg = 1;
1441
1442 tp->link_config.active_speed = phydev->speed;
1443 tp->link_config.active_duplex = phydev->duplex;
1444
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001445 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001446
1447 if (linkmesg)
1448 tg3_link_report(tp);
1449}
1450
1451static int tg3_phy_init(struct tg3 *tp)
1452{
1453 struct phy_device *phydev;
1454
1455 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED)
1456 return 0;
1457
1458 /* Bring the PHY back to a known state. */
1459 tg3_bmcr_reset(tp);
1460
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001461 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001462
1463 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad352008-11-10 13:55:14 -08001464 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001465 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001466 if (IS_ERR(phydev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001467 netdev_err(tp->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001468 return PTR_ERR(phydev);
1469 }
1470
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001471 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001472 switch (phydev->interface) {
1473 case PHY_INTERFACE_MODE_GMII:
1474 case PHY_INTERFACE_MODE_RGMII:
Matt Carlson321d32a2008-11-21 17:22:19 -08001475 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
1476 phydev->supported &= (PHY_GBIT_FEATURES |
1477 SUPPORTED_Pause |
1478 SUPPORTED_Asym_Pause);
1479 break;
1480 }
1481 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001482 case PHY_INTERFACE_MODE_MII:
1483 phydev->supported &= (PHY_BASIC_FEATURES |
1484 SUPPORTED_Pause |
1485 SUPPORTED_Asym_Pause);
1486 break;
1487 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001488 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001489 return -EINVAL;
1490 }
1491
1492 tp->tg3_flags3 |= TG3_FLG3_PHY_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001493
1494 phydev->advertising = phydev->supported;
1495
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001496 return 0;
1497}
1498
1499static void tg3_phy_start(struct tg3 *tp)
1500{
1501 struct phy_device *phydev;
1502
1503 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
1504 return;
1505
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001506 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001507
1508 if (tp->link_config.phy_is_low_power) {
1509 tp->link_config.phy_is_low_power = 0;
1510 phydev->speed = tp->link_config.orig_speed;
1511 phydev->duplex = tp->link_config.orig_duplex;
1512 phydev->autoneg = tp->link_config.orig_autoneg;
1513 phydev->advertising = tp->link_config.orig_advertising;
1514 }
1515
1516 phy_start(phydev);
1517
1518 phy_start_aneg(phydev);
1519}
1520
1521static void tg3_phy_stop(struct tg3 *tp)
1522{
1523 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
1524 return;
1525
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001526 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001527}
1528
1529static void tg3_phy_fini(struct tg3 *tp)
1530{
1531 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001532 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001533 tp->tg3_flags3 &= ~TG3_FLG3_PHY_CONNECTED;
1534 }
1535}
1536
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001537static void tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1538{
1539 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1540 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1541}
1542
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001543static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1544{
1545 u32 phytest;
1546
1547 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1548 u32 phy;
1549
1550 tg3_writephy(tp, MII_TG3_FET_TEST,
1551 phytest | MII_TG3_FET_SHADOW_EN);
1552 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1553 if (enable)
1554 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1555 else
1556 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1557 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1558 }
1559 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1560 }
1561}
1562
Matt Carlson6833c042008-11-21 17:18:59 -08001563static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1564{
1565 u32 reg;
1566
Matt Carlsonecf14102010-01-20 16:58:05 +00001567 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
1568 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
1569 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001570 return;
1571
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001572 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
1573 tg3_phy_fet_toggle_apd(tp, enable);
1574 return;
1575 }
1576
Matt Carlson6833c042008-11-21 17:18:59 -08001577 reg = MII_TG3_MISC_SHDW_WREN |
1578 MII_TG3_MISC_SHDW_SCR5_SEL |
1579 MII_TG3_MISC_SHDW_SCR5_LPED |
1580 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1581 MII_TG3_MISC_SHDW_SCR5_SDTL |
1582 MII_TG3_MISC_SHDW_SCR5_C125OE;
1583 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
1584 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
1585
1586 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1587
1588
1589 reg = MII_TG3_MISC_SHDW_WREN |
1590 MII_TG3_MISC_SHDW_APD_SEL |
1591 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
1592 if (enable)
1593 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
1594
1595 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1596}
1597
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001598static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
1599{
1600 u32 phy;
1601
1602 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
1603 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
1604 return;
1605
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001606 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001607 u32 ephy;
1608
Matt Carlson535ef6e2009-08-25 10:09:36 +00001609 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
1610 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
1611
1612 tg3_writephy(tp, MII_TG3_FET_TEST,
1613 ephy | MII_TG3_FET_SHADOW_EN);
1614 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001615 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00001616 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001617 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00001618 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
1619 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001620 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00001621 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001622 }
1623 } else {
1624 phy = MII_TG3_AUXCTL_MISC_RDSEL_MISC |
1625 MII_TG3_AUXCTL_SHDWSEL_MISC;
1626 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, phy) &&
1627 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy)) {
1628 if (enable)
1629 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1630 else
1631 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1632 phy |= MII_TG3_AUXCTL_MISC_WREN;
1633 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1634 }
1635 }
1636}
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638static void tg3_phy_set_wirespeed(struct tg3 *tp)
1639{
1640 u32 val;
1641
1642 if (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED)
1643 return;
1644
1645 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x7007) &&
1646 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &val))
1647 tg3_writephy(tp, MII_TG3_AUX_CTRL,
1648 (val | (1 << 15) | (1 << 4)));
1649}
1650
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001651static void tg3_phy_apply_otp(struct tg3 *tp)
1652{
1653 u32 otp, phy;
1654
1655 if (!tp->phy_otp)
1656 return;
1657
1658 otp = tp->phy_otp;
1659
1660 /* Enable SM_DSP clock and tx 6dB coding. */
1661 phy = MII_TG3_AUXCTL_SHDWSEL_AUXCTL |
1662 MII_TG3_AUXCTL_ACTL_SMDSP_ENA |
1663 MII_TG3_AUXCTL_ACTL_TX_6DB;
1664 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1665
1666 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
1667 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
1668 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
1669
1670 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
1671 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
1672 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
1673
1674 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
1675 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
1676 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
1677
1678 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
1679 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
1680
1681 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
1682 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
1683
1684 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
1685 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
1686 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
1687
1688 /* Turn off SM_DSP clock. */
1689 phy = MII_TG3_AUXCTL_SHDWSEL_AUXCTL |
1690 MII_TG3_AUXCTL_ACTL_TX_6DB;
1691 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1692}
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694static int tg3_wait_macro_done(struct tg3 *tp)
1695{
1696 int limit = 100;
1697
1698 while (limit--) {
1699 u32 tmp32;
1700
1701 if (!tg3_readphy(tp, 0x16, &tmp32)) {
1702 if ((tmp32 & 0x1000) == 0)
1703 break;
1704 }
1705 }
Roel Kluind4675b52009-02-12 16:33:27 -08001706 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 return -EBUSY;
1708
1709 return 0;
1710}
1711
1712static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
1713{
1714 static const u32 test_pat[4][6] = {
1715 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
1716 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
1717 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
1718 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
1719 };
1720 int chan;
1721
1722 for (chan = 0; chan < 4; chan++) {
1723 int i;
1724
1725 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1726 (chan * 0x2000) | 0x0200);
1727 tg3_writephy(tp, 0x16, 0x0002);
1728
1729 for (i = 0; i < 6; i++)
1730 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
1731 test_pat[chan][i]);
1732
1733 tg3_writephy(tp, 0x16, 0x0202);
1734 if (tg3_wait_macro_done(tp)) {
1735 *resetp = 1;
1736 return -EBUSY;
1737 }
1738
1739 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1740 (chan * 0x2000) | 0x0200);
1741 tg3_writephy(tp, 0x16, 0x0082);
1742 if (tg3_wait_macro_done(tp)) {
1743 *resetp = 1;
1744 return -EBUSY;
1745 }
1746
1747 tg3_writephy(tp, 0x16, 0x0802);
1748 if (tg3_wait_macro_done(tp)) {
1749 *resetp = 1;
1750 return -EBUSY;
1751 }
1752
1753 for (i = 0; i < 6; i += 2) {
1754 u32 low, high;
1755
1756 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
1757 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
1758 tg3_wait_macro_done(tp)) {
1759 *resetp = 1;
1760 return -EBUSY;
1761 }
1762 low &= 0x7fff;
1763 high &= 0x000f;
1764 if (low != test_pat[chan][i] ||
1765 high != test_pat[chan][i+1]) {
1766 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
1767 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
1768 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
1769
1770 return -EBUSY;
1771 }
1772 }
1773 }
1774
1775 return 0;
1776}
1777
1778static int tg3_phy_reset_chanpat(struct tg3 *tp)
1779{
1780 int chan;
1781
1782 for (chan = 0; chan < 4; chan++) {
1783 int i;
1784
1785 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1786 (chan * 0x2000) | 0x0200);
1787 tg3_writephy(tp, 0x16, 0x0002);
1788 for (i = 0; i < 6; i++)
1789 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
1790 tg3_writephy(tp, 0x16, 0x0202);
1791 if (tg3_wait_macro_done(tp))
1792 return -EBUSY;
1793 }
1794
1795 return 0;
1796}
1797
1798static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
1799{
1800 u32 reg32, phy9_orig;
1801 int retries, do_phy_reset, err;
1802
1803 retries = 10;
1804 do_phy_reset = 1;
1805 do {
1806 if (do_phy_reset) {
1807 err = tg3_bmcr_reset(tp);
1808 if (err)
1809 return err;
1810 do_phy_reset = 0;
1811 }
1812
1813 /* Disable transmitter and interrupt. */
1814 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
1815 continue;
1816
1817 reg32 |= 0x3000;
1818 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1819
1820 /* Set full-duplex, 1000 mbps. */
1821 tg3_writephy(tp, MII_BMCR,
1822 BMCR_FULLDPLX | TG3_BMCR_SPEED1000);
1823
1824 /* Set to master mode. */
1825 if (tg3_readphy(tp, MII_TG3_CTRL, &phy9_orig))
1826 continue;
1827
1828 tg3_writephy(tp, MII_TG3_CTRL,
1829 (MII_TG3_CTRL_AS_MASTER |
1830 MII_TG3_CTRL_ENABLE_AS_MASTER));
1831
1832 /* Enable SM_DSP_CLOCK and 6dB. */
1833 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1834
1835 /* Block the PHY control access. */
1836 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
1837 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0800);
1838
1839 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
1840 if (!err)
1841 break;
1842 } while (--retries);
1843
1844 err = tg3_phy_reset_chanpat(tp);
1845 if (err)
1846 return err;
1847
1848 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
1849 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0000);
1850
1851 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
1852 tg3_writephy(tp, 0x16, 0x0000);
1853
1854 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1855 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
1856 /* Set Extended packet length bit for jumbo frames */
1857 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4400);
1858 }
1859 else {
1860 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1861 }
1862
1863 tg3_writephy(tp, MII_TG3_CTRL, phy9_orig);
1864
1865 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
1866 reg32 &= ~0x3000;
1867 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1868 } else if (!err)
1869 err = -EBUSY;
1870
1871 return err;
1872}
1873
1874/* This will reset the tigon3 PHY if there is no valid
1875 * link unless the FORCE argument is non-zero.
1876 */
1877static int tg3_phy_reset(struct tg3 *tp)
1878{
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001879 u32 cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 u32 phy_status;
1881 int err;
1882
Michael Chan60189dd2006-12-17 17:08:07 -08001883 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1884 u32 val;
1885
1886 val = tr32(GRC_MISC_CFG);
1887 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
1888 udelay(40);
1889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 err = tg3_readphy(tp, MII_BMSR, &phy_status);
1891 err |= tg3_readphy(tp, MII_BMSR, &phy_status);
1892 if (err != 0)
1893 return -EBUSY;
1894
Michael Chanc8e1e822006-04-29 18:55:17 -07001895 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
1896 netif_carrier_off(tp->dev);
1897 tg3_link_report(tp);
1898 }
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1901 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
1902 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
1903 err = tg3_phy_reset_5703_4_5(tp);
1904 if (err)
1905 return err;
1906 goto out;
1907 }
1908
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001909 cpmuctrl = 0;
1910 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
1911 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
1912 cpmuctrl = tr32(TG3_CPMU_CTRL);
1913 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
1914 tw32(TG3_CPMU_CTRL,
1915 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
1916 }
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 err = tg3_bmcr_reset(tp);
1919 if (err)
1920 return err;
1921
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001922 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
1923 u32 phy;
1924
1925 phy = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
1926 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, phy);
1927
1928 tw32(TG3_CPMU_CTRL, cpmuctrl);
1929 }
1930
Matt Carlsonbcb37f62008-11-03 16:52:09 -08001931 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
1932 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08001933 u32 val;
1934
1935 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
1936 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
1937 CPMU_LSPD_1000MB_MACCLK_12_5) {
1938 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
1939 udelay(40);
1940 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
1941 }
1942 }
1943
Matt Carlsonecf14102010-01-20 16:58:05 +00001944 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
1945 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES))
1946 return 0;
1947
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001948 tg3_phy_apply_otp(tp);
1949
Matt Carlson6833c042008-11-21 17:18:59 -08001950 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
1951 tg3_phy_toggle_apd(tp, true);
1952 else
1953 tg3_phy_toggle_apd(tp, false);
1954
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955out:
1956 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADC_BUG) {
1957 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1958 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1959 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x2aaa);
1960 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
1961 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0323);
1962 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1963 }
1964 if (tp->tg3_flags2 & TG3_FLG2_PHY_5704_A0_BUG) {
1965 tg3_writephy(tp, 0x1c, 0x8d68);
1966 tg3_writephy(tp, 0x1c, 0x8d68);
1967 }
1968 if (tp->tg3_flags2 & TG3_FLG2_PHY_BER_BUG) {
1969 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1970 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
1971 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x310b);
1972 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1973 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x9506);
1974 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x401f);
1975 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x14e2);
1976 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1977 }
Michael Chanc424cb22006-04-29 18:56:34 -07001978 else if (tp->tg3_flags2 & TG3_FLG2_PHY_JITTER_BUG) {
1979 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1980 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
Michael Chanc1d2a192007-01-08 19:57:20 -08001981 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADJUST_TRIM) {
1982 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
1983 tg3_writephy(tp, MII_TG3_TEST1,
1984 MII_TG3_TEST1_TRIM_EN | 0x4);
1985 } else
1986 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
Michael Chanc424cb22006-04-29 18:56:34 -07001987 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 /* Set Extended packet length bit (bit 14) on all chips that */
1990 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00001991 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 /* Cannot do read-modify-write on 5401 */
1993 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
Matt Carlson8f666b02009-08-28 13:58:24 +00001994 } else if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 u32 phy_reg;
1996
1997 /* Set bit 14 with read-modify-write to preserve other bits */
1998 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0007) &&
1999 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy_reg))
2000 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy_reg | 0x4000);
2001 }
2002
2003 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2004 * jumbo frames transmission.
2005 */
Matt Carlson8f666b02009-08-28 13:58:24 +00002006 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 u32 phy_reg;
2008
2009 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &phy_reg))
2010 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2011 phy_reg | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
2012 }
2013
Michael Chan715116a2006-09-27 16:09:25 -07002014 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002015 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002016 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002017 }
2018
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002019 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 tg3_phy_set_wirespeed(tp);
2021 return 0;
2022}
2023
2024static void tg3_frob_aux_power(struct tg3 *tp)
2025{
2026 struct tg3 *tp_peer = tp;
2027
Matt Carlson334355a2010-01-20 16:58:10 +00002028 /* The GPIOs do something completely different on 57765. */
2029 if ((tp->tg3_flags2 & TG3_FLG2_IS_NIC) == 0 ||
2030 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 return;
2032
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00002033 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2034 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
2035 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002036 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002038 dev_peer = pci_get_drvdata(tp->pdev_peer);
Michael Chanbc1c7562006-03-20 17:48:03 -08002039 /* remove_one() may have been run on the peer. */
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002040 if (!dev_peer)
Michael Chanbc1c7562006-03-20 17:48:03 -08002041 tp_peer = tp;
2042 else
2043 tp_peer = netdev_priv(dev_peer);
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 if ((tp->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
Michael Chan6921d202005-12-13 21:15:53 -08002047 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0 ||
2048 (tp_peer->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
2049 (tp_peer->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2051 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08002052 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2053 (GRC_LCLCTRL_GPIO_OE0 |
2054 GRC_LCLCTRL_GPIO_OE1 |
2055 GRC_LCLCTRL_GPIO_OE2 |
2056 GRC_LCLCTRL_GPIO_OUTPUT0 |
2057 GRC_LCLCTRL_GPIO_OUTPUT1),
2058 100);
Matt Carlson8d519ab2009-04-20 06:58:01 +00002059 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2060 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -07002061 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2062 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2063 GRC_LCLCTRL_GPIO_OE1 |
2064 GRC_LCLCTRL_GPIO_OE2 |
2065 GRC_LCLCTRL_GPIO_OUTPUT0 |
2066 GRC_LCLCTRL_GPIO_OUTPUT1 |
2067 tp->grc_local_ctrl;
2068 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2069
2070 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2071 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2072
2073 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2074 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 } else {
2076 u32 no_gpio2;
Michael Chandc56b7d2005-12-19 16:26:28 -08002077 u32 grc_local_ctrl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
2079 if (tp_peer != tp &&
2080 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
2081 return;
2082
Michael Chandc56b7d2005-12-19 16:26:28 -08002083 /* Workaround to prevent overdrawing Amps. */
2084 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2085 ASIC_REV_5714) {
2086 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chanb401e9e2005-12-19 16:27:04 -08002087 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2088 grc_local_ctrl, 100);
Michael Chandc56b7d2005-12-19 16:26:28 -08002089 }
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 /* On 5753 and variants, GPIO2 cannot be used. */
2092 no_gpio2 = tp->nic_sram_data_cfg &
2093 NIC_SRAM_DATA_CFG_NO_GPIO2;
2094
Michael Chandc56b7d2005-12-19 16:26:28 -08002095 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 GRC_LCLCTRL_GPIO_OE1 |
2097 GRC_LCLCTRL_GPIO_OE2 |
2098 GRC_LCLCTRL_GPIO_OUTPUT1 |
2099 GRC_LCLCTRL_GPIO_OUTPUT2;
2100 if (no_gpio2) {
2101 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2102 GRC_LCLCTRL_GPIO_OUTPUT2);
2103 }
Michael Chanb401e9e2005-12-19 16:27:04 -08002104 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2105 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2108
Michael Chanb401e9e2005-12-19 16:27:04 -08002109 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2110 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112 if (!no_gpio2) {
2113 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chanb401e9e2005-12-19 16:27:04 -08002114 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2115 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117 }
2118 } else {
2119 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
2120 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
2121 if (tp_peer != tp &&
2122 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
2123 return;
2124
Michael Chanb401e9e2005-12-19 16:27:04 -08002125 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2126 (GRC_LCLCTRL_GPIO_OE1 |
2127 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Michael Chanb401e9e2005-12-19 16:27:04 -08002129 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2130 GRC_LCLCTRL_GPIO_OE1, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Michael Chanb401e9e2005-12-19 16:27:04 -08002132 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2133 (GRC_LCLCTRL_GPIO_OE1 |
2134 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
2136 }
2137}
2138
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002139static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2140{
2141 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2142 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002143 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002144 if (speed != SPEED_10)
2145 return 1;
2146 } else if (speed == SPEED_10)
2147 return 1;
2148
2149 return 0;
2150}
2151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152static int tg3_setup_phy(struct tg3 *, int);
2153
2154#define RESET_KIND_SHUTDOWN 0
2155#define RESET_KIND_INIT 1
2156#define RESET_KIND_SUSPEND 2
2157
2158static void tg3_write_sig_post_reset(struct tg3 *, int);
2159static int tg3_halt_cpu(struct tg3 *, u32);
2160
Matt Carlson0a459aa2008-11-03 16:54:15 -08002161static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002162{
Matt Carlsonce057f02007-11-12 21:08:03 -08002163 u32 val;
2164
Michael Chan51297242007-02-13 12:17:57 -08002165 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
2166 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2167 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2168 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2169
2170 sg_dig_ctrl |=
2171 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2172 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2173 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2174 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002175 return;
Michael Chan51297242007-02-13 12:17:57 -08002176 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002177
Michael Chan60189dd2006-12-17 17:08:07 -08002178 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002179 tg3_bmcr_reset(tp);
2180 val = tr32(GRC_MISC_CFG);
2181 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2182 udelay(40);
2183 return;
Matt Carlson0e5f7842009-11-02 14:26:38 +00002184 } else if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
2185 u32 phytest;
2186 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2187 u32 phy;
2188
2189 tg3_writephy(tp, MII_ADVERTISE, 0);
2190 tg3_writephy(tp, MII_BMCR,
2191 BMCR_ANENABLE | BMCR_ANRESTART);
2192
2193 tg3_writephy(tp, MII_TG3_FET_TEST,
2194 phytest | MII_TG3_FET_SHADOW_EN);
2195 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2196 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2197 tg3_writephy(tp,
2198 MII_TG3_FET_SHDW_AUXMODE4,
2199 phy);
2200 }
2201 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2202 }
2203 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002204 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002205 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2206 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002207
2208 tg3_writephy(tp, MII_TG3_AUX_CTRL,
2209 MII_TG3_AUXCTL_SHDWSEL_PWRCTL |
2210 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2211 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2212 MII_TG3_AUXCTL_PCTL_VREG_11V);
Michael Chan715116a2006-09-27 16:09:25 -07002213 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002214
Michael Chan15c3b692006-03-22 01:06:52 -08002215 /* The PHY should not be powered down on some chips because
2216 * of bugs.
2217 */
2218 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2219 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2220 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
2221 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)))
2222 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002223
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002224 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2225 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002226 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2227 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2228 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2229 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2230 }
2231
Michael Chan15c3b692006-03-22 01:06:52 -08002232 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2233}
2234
Matt Carlson3f007892008-11-03 16:51:36 -08002235/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002236static int tg3_nvram_lock(struct tg3 *tp)
2237{
2238 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
2239 int i;
2240
2241 if (tp->nvram_lock_cnt == 0) {
2242 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2243 for (i = 0; i < 8000; i++) {
2244 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2245 break;
2246 udelay(20);
2247 }
2248 if (i == 8000) {
2249 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2250 return -ENODEV;
2251 }
2252 }
2253 tp->nvram_lock_cnt++;
2254 }
2255 return 0;
2256}
2257
2258/* tp->lock is held. */
2259static void tg3_nvram_unlock(struct tg3 *tp)
2260{
2261 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
2262 if (tp->nvram_lock_cnt > 0)
2263 tp->nvram_lock_cnt--;
2264 if (tp->nvram_lock_cnt == 0)
2265 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2266 }
2267}
2268
2269/* tp->lock is held. */
2270static void tg3_enable_nvram_access(struct tg3 *tp)
2271{
2272 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Matt Carlsonf66a29b2009-11-13 13:03:36 +00002273 !(tp->tg3_flags3 & TG3_FLG3_PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002274 u32 nvaccess = tr32(NVRAM_ACCESS);
2275
2276 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2277 }
2278}
2279
2280/* tp->lock is held. */
2281static void tg3_disable_nvram_access(struct tg3 *tp)
2282{
2283 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Matt Carlsonf66a29b2009-11-13 13:03:36 +00002284 !(tp->tg3_flags3 & TG3_FLG3_PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002285 u32 nvaccess = tr32(NVRAM_ACCESS);
2286
2287 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2288 }
2289}
2290
2291static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2292 u32 offset, u32 *val)
2293{
2294 u32 tmp;
2295 int i;
2296
2297 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2298 return -EINVAL;
2299
2300 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2301 EEPROM_ADDR_DEVID_MASK |
2302 EEPROM_ADDR_READ);
2303 tw32(GRC_EEPROM_ADDR,
2304 tmp |
2305 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2306 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2307 EEPROM_ADDR_ADDR_MASK) |
2308 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2309
2310 for (i = 0; i < 1000; i++) {
2311 tmp = tr32(GRC_EEPROM_ADDR);
2312
2313 if (tmp & EEPROM_ADDR_COMPLETE)
2314 break;
2315 msleep(1);
2316 }
2317 if (!(tmp & EEPROM_ADDR_COMPLETE))
2318 return -EBUSY;
2319
Matt Carlson62cedd12009-04-20 14:52:29 -07002320 tmp = tr32(GRC_EEPROM_DATA);
2321
2322 /*
2323 * The data will always be opposite the native endian
2324 * format. Perform a blind byteswap to compensate.
2325 */
2326 *val = swab32(tmp);
2327
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002328 return 0;
2329}
2330
2331#define NVRAM_CMD_TIMEOUT 10000
2332
2333static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2334{
2335 int i;
2336
2337 tw32(NVRAM_CMD, nvram_cmd);
2338 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2339 udelay(10);
2340 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2341 udelay(10);
2342 break;
2343 }
2344 }
2345
2346 if (i == NVRAM_CMD_TIMEOUT)
2347 return -EBUSY;
2348
2349 return 0;
2350}
2351
2352static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2353{
2354 if ((tp->tg3_flags & TG3_FLAG_NVRAM) &&
2355 (tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) &&
2356 (tp->tg3_flags2 & TG3_FLG2_FLASH) &&
2357 !(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM_ADDR_TRANS) &&
2358 (tp->nvram_jedecnum == JEDEC_ATMEL))
2359
2360 addr = ((addr / tp->nvram_pagesize) <<
2361 ATMEL_AT45DB0X1B_PAGE_POS) +
2362 (addr % tp->nvram_pagesize);
2363
2364 return addr;
2365}
2366
2367static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2368{
2369 if ((tp->tg3_flags & TG3_FLAG_NVRAM) &&
2370 (tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) &&
2371 (tp->tg3_flags2 & TG3_FLG2_FLASH) &&
2372 !(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM_ADDR_TRANS) &&
2373 (tp->nvram_jedecnum == JEDEC_ATMEL))
2374
2375 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2376 tp->nvram_pagesize) +
2377 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2378
2379 return addr;
2380}
2381
Matt Carlsone4f34112009-02-25 14:25:00 +00002382/* NOTE: Data read in from NVRAM is byteswapped according to
2383 * the byteswapping settings for all other register accesses.
2384 * tg3 devices are BE devices, so on a BE machine, the data
2385 * returned will be exactly as it is seen in NVRAM. On a LE
2386 * machine, the 32-bit value will be byteswapped.
2387 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002388static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2389{
2390 int ret;
2391
2392 if (!(tp->tg3_flags & TG3_FLAG_NVRAM))
2393 return tg3_nvram_read_using_eeprom(tp, offset, val);
2394
2395 offset = tg3_nvram_phys_addr(tp, offset);
2396
2397 if (offset > NVRAM_ADDR_MSK)
2398 return -EINVAL;
2399
2400 ret = tg3_nvram_lock(tp);
2401 if (ret)
2402 return ret;
2403
2404 tg3_enable_nvram_access(tp);
2405
2406 tw32(NVRAM_ADDR, offset);
2407 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2408 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2409
2410 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002411 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002412
2413 tg3_disable_nvram_access(tp);
2414
2415 tg3_nvram_unlock(tp);
2416
2417 return ret;
2418}
2419
Matt Carlsona9dc5292009-02-25 14:25:30 +00002420/* Ensures NVRAM data is in bytestream format. */
2421static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002422{
2423 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002424 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002425 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002426 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002427 return res;
2428}
2429
2430/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08002431static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
2432{
2433 u32 addr_high, addr_low;
2434 int i;
2435
2436 addr_high = ((tp->dev->dev_addr[0] << 8) |
2437 tp->dev->dev_addr[1]);
2438 addr_low = ((tp->dev->dev_addr[2] << 24) |
2439 (tp->dev->dev_addr[3] << 16) |
2440 (tp->dev->dev_addr[4] << 8) |
2441 (tp->dev->dev_addr[5] << 0));
2442 for (i = 0; i < 4; i++) {
2443 if (i == 1 && skip_mac_1)
2444 continue;
2445 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
2446 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
2447 }
2448
2449 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2450 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2451 for (i = 0; i < 12; i++) {
2452 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
2453 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
2454 }
2455 }
2456
2457 addr_high = (tp->dev->dev_addr[0] +
2458 tp->dev->dev_addr[1] +
2459 tp->dev->dev_addr[2] +
2460 tp->dev->dev_addr[3] +
2461 tp->dev->dev_addr[4] +
2462 tp->dev->dev_addr[5]) &
2463 TX_BACKOFF_SEED_MASK;
2464 tw32(MAC_TX_BACKOFF_SEED, addr_high);
2465}
2466
Michael Chanbc1c7562006-03-20 17:48:03 -08002467static int tg3_set_power_state(struct tg3 *tp, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468{
2469 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002470 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
2472 /* Make sure register accesses (indirect or otherwise)
2473 * will function correctly.
2474 */
2475 pci_write_config_dword(tp->pdev,
2476 TG3PCI_MISC_HOST_CTRL,
2477 tp->misc_host_ctrl);
2478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 switch (state) {
Michael Chanbc1c7562006-03-20 17:48:03 -08002480 case PCI_D0:
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002481 pci_enable_wake(tp->pdev, state, false);
2482 pci_set_power_state(tp->pdev, PCI_D0);
Michael Chan8c6bda12005-04-21 17:09:08 -07002483
Michael Chan9d26e212006-12-07 00:21:14 -08002484 /* Switch out of Vaux if it is a NIC */
2485 if (tp->tg3_flags2 & TG3_FLG2_IS_NIC)
Michael Chanb401e9e2005-12-19 16:27:04 -08002486 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
2488 return 0;
2489
Michael Chanbc1c7562006-03-20 17:48:03 -08002490 case PCI_D1:
Michael Chanbc1c7562006-03-20 17:48:03 -08002491 case PCI_D2:
Michael Chanbc1c7562006-03-20 17:48:03 -08002492 case PCI_D3hot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 break;
2494
2495 default:
Joe Perches05dbe002010-02-17 19:44:19 +00002496 netdev_err(tp->dev, "Invalid power state (D%d) requested\n",
2497 state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002499 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002500
2501 /* Restore the CLKREQ setting. */
2502 if (tp->tg3_flags3 & TG3_FLG3_CLKREQ_BUG) {
2503 u16 lnkctl;
2504
2505 pci_read_config_word(tp->pdev,
2506 tp->pcie_cap + PCI_EXP_LNKCTL,
2507 &lnkctl);
2508 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
2509 pci_write_config_word(tp->pdev,
2510 tp->pcie_cap + PCI_EXP_LNKCTL,
2511 lnkctl);
2512 }
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
2515 tw32(TG3PCI_MISC_HOST_CTRL,
2516 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
2517
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002518 device_should_wake = pci_pme_capable(tp->pdev, state) &&
2519 device_may_wakeup(&tp->pdev->dev) &&
2520 (tp->tg3_flags & TG3_FLAG_WOL_ENABLE);
2521
Matt Carlsondd477002008-05-25 23:45:58 -07002522 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002523 do_low_power = false;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002524 if ((tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) &&
2525 !tp->link_config.phy_is_low_power) {
2526 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002527 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002528
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002529 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002530
2531 tp->link_config.phy_is_low_power = 1;
2532
2533 tp->link_config.orig_speed = phydev->speed;
2534 tp->link_config.orig_duplex = phydev->duplex;
2535 tp->link_config.orig_autoneg = phydev->autoneg;
2536 tp->link_config.orig_advertising = phydev->advertising;
2537
2538 advertising = ADVERTISED_TP |
2539 ADVERTISED_Pause |
2540 ADVERTISED_Autoneg |
2541 ADVERTISED_10baseT_Half;
2542
2543 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002544 device_should_wake) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002545 if (tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB)
2546 advertising |=
2547 ADVERTISED_100baseT_Half |
2548 ADVERTISED_100baseT_Full |
2549 ADVERTISED_10baseT_Full;
2550 else
2551 advertising |= ADVERTISED_10baseT_Full;
2552 }
2553
2554 phydev->advertising = advertising;
2555
2556 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002557
2558 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00002559 if (phyid != PHY_ID_BCMAC131) {
2560 phyid &= PHY_BCM_OUI_MASK;
2561 if (phyid == PHY_BCM_OUI_1 ||
2562 phyid == PHY_BCM_OUI_2 ||
2563 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08002564 do_low_power = true;
2565 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002566 }
Matt Carlsondd477002008-05-25 23:45:58 -07002567 } else {
Matt Carlson20232762008-12-21 20:18:56 -08002568 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002569
Matt Carlsondd477002008-05-25 23:45:58 -07002570 if (tp->link_config.phy_is_low_power == 0) {
2571 tp->link_config.phy_is_low_power = 1;
2572 tp->link_config.orig_speed = tp->link_config.speed;
2573 tp->link_config.orig_duplex = tp->link_config.duplex;
2574 tp->link_config.orig_autoneg = tp->link_config.autoneg;
2575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Matt Carlsondd477002008-05-25 23:45:58 -07002577 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
2578 tp->link_config.speed = SPEED_10;
2579 tp->link_config.duplex = DUPLEX_HALF;
2580 tp->link_config.autoneg = AUTONEG_ENABLE;
2581 tg3_setup_phy(tp, 0);
2582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 }
2584
Michael Chanb5d37722006-09-27 16:06:21 -07002585 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2586 u32 val;
2587
2588 val = tr32(GRC_VCPU_EXT_CTRL);
2589 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
2590 } else if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08002591 int i;
2592 u32 val;
2593
2594 for (i = 0; i < 200; i++) {
2595 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
2596 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
2597 break;
2598 msleep(1);
2599 }
2600 }
Gary Zambranoa85feb82007-05-05 11:52:19 -07002601 if (tp->tg3_flags & TG3_FLAG_WOL_CAP)
2602 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
2603 WOL_DRV_STATE_SHUTDOWN |
2604 WOL_DRV_WOL |
2605 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08002606
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002607 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 u32 mac_mode;
2609
2610 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002611 if (do_low_power) {
Matt Carlsondd477002008-05-25 23:45:58 -07002612 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x5a);
2613 udelay(40);
2614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Michael Chan3f7045c2006-09-27 16:02:29 -07002616 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
2617 mac_mode = MAC_MODE_PORT_MODE_GMII;
2618 else
2619 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002621 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
2622 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2623 ASIC_REV_5700) {
2624 u32 speed = (tp->tg3_flags &
2625 TG3_FLAG_WOL_SPEED_100MB) ?
2626 SPEED_100 : SPEED_10;
2627 if (tg3_5700_link_polarity(tp, speed))
2628 mac_mode |= MAC_MODE_LINK_POLARITY;
2629 else
2630 mac_mode &= ~MAC_MODE_LINK_POLARITY;
2631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 } else {
2633 mac_mode = MAC_MODE_PORT_MODE_TBI;
2634 }
2635
John W. Linvillecbf46852005-04-21 17:01:29 -07002636 if (!(tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 tw32(MAC_LED_CTRL, tp->led_ctrl);
2638
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002639 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
2640 if (((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
2641 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) &&
2642 ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
2643 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)))
2644 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Matt Carlson3bda1252008-08-15 14:08:22 -07002646 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
2647 mac_mode |= tp->mac_mode &
2648 (MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN);
2649 if (mac_mode & MAC_MODE_APE_TX_EN)
2650 mac_mode |= MAC_MODE_TDE_ENABLE;
2651 }
2652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 tw32_f(MAC_MODE, mac_mode);
2654 udelay(100);
2655
2656 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
2657 udelay(10);
2658 }
2659
2660 if (!(tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB) &&
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 u32 base_val;
2664
2665 base_val = tp->pci_clock_ctrl;
2666 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
2667 CLOCK_CTRL_TXCLK_DISABLE);
2668
Michael Chanb401e9e2005-12-19 16:27:04 -08002669 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
2670 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Michael Chand7b0a852007-02-13 12:17:38 -08002671 } else if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
Matt Carlson795d01c2007-10-07 23:28:17 -07002672 (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
Michael Chand7b0a852007-02-13 12:17:38 -08002673 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)) {
Michael Chan4cf78e42005-07-25 12:29:19 -07002674 /* do nothing */
Michael Chan85e94ce2005-04-21 17:05:28 -07002675 } else if (!((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF))) {
2677 u32 newbits1, newbits2;
2678
2679 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2680 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2681 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
2682 CLOCK_CTRL_TXCLK_DISABLE |
2683 CLOCK_CTRL_ALTCLK);
2684 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2685 } else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
2686 newbits1 = CLOCK_CTRL_625_CORE;
2687 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
2688 } else {
2689 newbits1 = CLOCK_CTRL_ALTCLK;
2690 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2691 }
2692
Michael Chanb401e9e2005-12-19 16:27:04 -08002693 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
2694 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
Michael Chanb401e9e2005-12-19 16:27:04 -08002696 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
2697 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
2699 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
2700 u32 newbits3;
2701
2702 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2703 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2704 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
2705 CLOCK_CTRL_TXCLK_DISABLE |
2706 CLOCK_CTRL_44MHZ_CORE);
2707 } else {
2708 newbits3 = CLOCK_CTRL_44MHZ_CORE;
2709 }
2710
Michael Chanb401e9e2005-12-19 16:27:04 -08002711 tw32_wait_f(TG3PCI_CLOCK_CTRL,
2712 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 }
2714 }
2715
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002716 if (!(device_should_wake) &&
Matt Carlson22435842008-11-21 17:21:13 -08002717 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08002718 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08002719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 tg3_frob_aux_power(tp);
2721
2722 /* Workaround for unstable PLL clock */
2723 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
2724 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
2725 u32 val = tr32(0x7d00);
2726
2727 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
2728 tw32(0x7d00, val);
Michael Chan6921d202005-12-13 21:15:53 -08002729 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08002730 int err;
2731
2732 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08002734 if (!err)
2735 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08002736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 }
2738
Michael Chanbbadf502006-04-06 21:46:34 -07002739 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
2740
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002741 if (device_should_wake)
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002742 pci_enable_wake(tp->pdev, state, true);
2743
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 /* Finally, set the new power state. */
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002745 pci_set_power_state(tp->pdev, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 return 0;
2748}
2749
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
2751{
2752 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
2753 case MII_TG3_AUX_STAT_10HALF:
2754 *speed = SPEED_10;
2755 *duplex = DUPLEX_HALF;
2756 break;
2757
2758 case MII_TG3_AUX_STAT_10FULL:
2759 *speed = SPEED_10;
2760 *duplex = DUPLEX_FULL;
2761 break;
2762
2763 case MII_TG3_AUX_STAT_100HALF:
2764 *speed = SPEED_100;
2765 *duplex = DUPLEX_HALF;
2766 break;
2767
2768 case MII_TG3_AUX_STAT_100FULL:
2769 *speed = SPEED_100;
2770 *duplex = DUPLEX_FULL;
2771 break;
2772
2773 case MII_TG3_AUX_STAT_1000HALF:
2774 *speed = SPEED_1000;
2775 *duplex = DUPLEX_HALF;
2776 break;
2777
2778 case MII_TG3_AUX_STAT_1000FULL:
2779 *speed = SPEED_1000;
2780 *duplex = DUPLEX_FULL;
2781 break;
2782
2783 default:
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002784 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07002785 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
2786 SPEED_10;
2787 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
2788 DUPLEX_HALF;
2789 break;
2790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 *speed = SPEED_INVALID;
2792 *duplex = DUPLEX_INVALID;
2793 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795}
2796
2797static void tg3_phy_copper_begin(struct tg3 *tp)
2798{
2799 u32 new_adv;
2800 int i;
2801
2802 if (tp->link_config.phy_is_low_power) {
2803 /* Entering low power mode. Disable gigabit and
2804 * 100baseT advertisements.
2805 */
2806 tg3_writephy(tp, MII_TG3_CTRL, 0);
2807
2808 new_adv = (ADVERTISE_10HALF | ADVERTISE_10FULL |
2809 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
2810 if (tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB)
2811 new_adv |= (ADVERTISE_100HALF | ADVERTISE_100FULL);
2812
2813 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2814 } else if (tp->link_config.speed == SPEED_INVALID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
2816 tp->link_config.advertising &=
2817 ~(ADVERTISED_1000baseT_Half |
2818 ADVERTISED_1000baseT_Full);
2819
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002820 new_adv = ADVERTISE_CSMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 if (tp->link_config.advertising & ADVERTISED_10baseT_Half)
2822 new_adv |= ADVERTISE_10HALF;
2823 if (tp->link_config.advertising & ADVERTISED_10baseT_Full)
2824 new_adv |= ADVERTISE_10FULL;
2825 if (tp->link_config.advertising & ADVERTISED_100baseT_Half)
2826 new_adv |= ADVERTISE_100HALF;
2827 if (tp->link_config.advertising & ADVERTISED_100baseT_Full)
2828 new_adv |= ADVERTISE_100FULL;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002829
2830 new_adv |= tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2831
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2833
2834 if (tp->link_config.advertising &
2835 (ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full)) {
2836 new_adv = 0;
2837 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
2838 new_adv |= MII_TG3_CTRL_ADV_1000_HALF;
2839 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
2840 new_adv |= MII_TG3_CTRL_ADV_1000_FULL;
2841 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY) &&
2842 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2843 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0))
2844 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2845 MII_TG3_CTRL_ENABLE_AS_MASTER);
2846 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
2847 } else {
2848 tg3_writephy(tp, MII_TG3_CTRL, 0);
2849 }
2850 } else {
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002851 new_adv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2852 new_adv |= ADVERTISE_CSMA;
2853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 /* Asking for a specific link mode. */
2855 if (tp->link_config.speed == SPEED_1000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2857
2858 if (tp->link_config.duplex == DUPLEX_FULL)
2859 new_adv = MII_TG3_CTRL_ADV_1000_FULL;
2860 else
2861 new_adv = MII_TG3_CTRL_ADV_1000_HALF;
2862 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2863 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
2864 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2865 MII_TG3_CTRL_ENABLE_AS_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 if (tp->link_config.speed == SPEED_100) {
2868 if (tp->link_config.duplex == DUPLEX_FULL)
2869 new_adv |= ADVERTISE_100FULL;
2870 else
2871 new_adv |= ADVERTISE_100HALF;
2872 } else {
2873 if (tp->link_config.duplex == DUPLEX_FULL)
2874 new_adv |= ADVERTISE_10FULL;
2875 else
2876 new_adv |= ADVERTISE_10HALF;
2877 }
2878 tg3_writephy(tp, MII_ADVERTISE, new_adv);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002879
2880 new_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002882
2883 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 }
2885
2886 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
2887 tp->link_config.speed != SPEED_INVALID) {
2888 u32 bmcr, orig_bmcr;
2889
2890 tp->link_config.active_speed = tp->link_config.speed;
2891 tp->link_config.active_duplex = tp->link_config.duplex;
2892
2893 bmcr = 0;
2894 switch (tp->link_config.speed) {
2895 default:
2896 case SPEED_10:
2897 break;
2898
2899 case SPEED_100:
2900 bmcr |= BMCR_SPEED100;
2901 break;
2902
2903 case SPEED_1000:
2904 bmcr |= TG3_BMCR_SPEED1000;
2905 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908 if (tp->link_config.duplex == DUPLEX_FULL)
2909 bmcr |= BMCR_FULLDPLX;
2910
2911 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
2912 (bmcr != orig_bmcr)) {
2913 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
2914 for (i = 0; i < 1500; i++) {
2915 u32 tmp;
2916
2917 udelay(10);
2918 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
2919 tg3_readphy(tp, MII_BMSR, &tmp))
2920 continue;
2921 if (!(tmp & BMSR_LSTATUS)) {
2922 udelay(40);
2923 break;
2924 }
2925 }
2926 tg3_writephy(tp, MII_BMCR, bmcr);
2927 udelay(40);
2928 }
2929 } else {
2930 tg3_writephy(tp, MII_BMCR,
2931 BMCR_ANENABLE | BMCR_ANRESTART);
2932 }
2933}
2934
2935static int tg3_init_5401phy_dsp(struct tg3 *tp)
2936{
2937 int err;
2938
2939 /* Turn off tap power management. */
2940 /* Set Extended packet length bit */
2941 err = tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
2942
2943 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0012);
2944 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1804);
2945
2946 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0013);
2947 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1204);
2948
2949 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
2950 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0132);
2951
2952 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
2953 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0232);
2954
2955 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
2956 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0a20);
2957
2958 udelay(40);
2959
2960 return err;
2961}
2962
Michael Chan3600d912006-12-07 00:21:48 -08002963static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964{
Michael Chan3600d912006-12-07 00:21:48 -08002965 u32 adv_reg, all_mask = 0;
2966
2967 if (mask & ADVERTISED_10baseT_Half)
2968 all_mask |= ADVERTISE_10HALF;
2969 if (mask & ADVERTISED_10baseT_Full)
2970 all_mask |= ADVERTISE_10FULL;
2971 if (mask & ADVERTISED_100baseT_Half)
2972 all_mask |= ADVERTISE_100HALF;
2973 if (mask & ADVERTISED_100baseT_Full)
2974 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
2977 return 0;
2978
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 if ((adv_reg & all_mask) != all_mask)
2980 return 0;
2981 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
2982 u32 tg3_ctrl;
2983
Michael Chan3600d912006-12-07 00:21:48 -08002984 all_mask = 0;
2985 if (mask & ADVERTISED_1000baseT_Half)
2986 all_mask |= ADVERTISE_1000HALF;
2987 if (mask & ADVERTISED_1000baseT_Full)
2988 all_mask |= ADVERTISE_1000FULL;
2989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 if (tg3_readphy(tp, MII_TG3_CTRL, &tg3_ctrl))
2991 return 0;
2992
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 if ((tg3_ctrl & all_mask) != all_mask)
2994 return 0;
2995 }
2996 return 1;
2997}
2998
Matt Carlsonef167e22007-12-20 20:10:01 -08002999static int tg3_adv_1000T_flowctrl_ok(struct tg3 *tp, u32 *lcladv, u32 *rmtadv)
3000{
3001 u32 curadv, reqadv;
3002
3003 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
3004 return 1;
3005
3006 curadv = *lcladv & (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
3007 reqadv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
3008
3009 if (tp->link_config.active_duplex == DUPLEX_FULL) {
3010 if (curadv != reqadv)
3011 return 0;
3012
3013 if (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG)
3014 tg3_readphy(tp, MII_LPA, rmtadv);
3015 } else {
3016 /* Reprogram the advertisement register, even if it
3017 * does not affect the current link. If the link
3018 * gets renegotiated in the future, we can save an
3019 * additional renegotiation cycle by advertising
3020 * it correctly in the first place.
3021 */
3022 if (curadv != reqadv) {
3023 *lcladv &= ~(ADVERTISE_PAUSE_CAP |
3024 ADVERTISE_PAUSE_ASYM);
3025 tg3_writephy(tp, MII_ADVERTISE, *lcladv | reqadv);
3026 }
3027 }
3028
3029 return 1;
3030}
3031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
3033{
3034 int current_link_up;
3035 u32 bmsr, dummy;
Matt Carlsonef167e22007-12-20 20:10:01 -08003036 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 u16 current_speed;
3038 u8 current_duplex;
3039 int i, err;
3040
3041 tw32(MAC_EVENT, 0);
3042
3043 tw32_f(MAC_STATUS,
3044 (MAC_STATUS_SYNC_CHANGED |
3045 MAC_STATUS_CFG_CHANGED |
3046 MAC_STATUS_MI_COMPLETION |
3047 MAC_STATUS_LNKSTATE_CHANGED));
3048 udelay(40);
3049
Matt Carlson8ef21422008-05-02 16:47:53 -07003050 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
3051 tw32_f(MAC_MI_MODE,
3052 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
3053 udelay(80);
3054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
3056 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x02);
3057
3058 /* Some third-party PHYs need to be reset on link going
3059 * down.
3060 */
3061 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3062 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
3063 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
3064 netif_carrier_ok(tp->dev)) {
3065 tg3_readphy(tp, MII_BMSR, &bmsr);
3066 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3067 !(bmsr & BMSR_LSTATUS))
3068 force_reset = 1;
3069 }
3070 if (force_reset)
3071 tg3_phy_reset(tp);
3072
Matt Carlson79eb6902010-02-17 15:17:03 +00003073 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 tg3_readphy(tp, MII_BMSR, &bmsr);
3075 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
3076 !(tp->tg3_flags & TG3_FLAG_INIT_COMPLETE))
3077 bmsr = 0;
3078
3079 if (!(bmsr & BMSR_LSTATUS)) {
3080 err = tg3_init_5401phy_dsp(tp);
3081 if (err)
3082 return err;
3083
3084 tg3_readphy(tp, MII_BMSR, &bmsr);
3085 for (i = 0; i < 1000; i++) {
3086 udelay(10);
3087 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3088 (bmsr & BMSR_LSTATUS)) {
3089 udelay(40);
3090 break;
3091 }
3092 }
3093
Matt Carlson79eb6902010-02-17 15:17:03 +00003094 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
3095 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 !(bmsr & BMSR_LSTATUS) &&
3097 tp->link_config.active_speed == SPEED_1000) {
3098 err = tg3_phy_reset(tp);
3099 if (!err)
3100 err = tg3_init_5401phy_dsp(tp);
3101 if (err)
3102 return err;
3103 }
3104 }
3105 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3106 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
3107 /* 5701 {A0,B0} CRC bug workaround */
3108 tg3_writephy(tp, 0x15, 0x0a75);
3109 tg3_writephy(tp, 0x1c, 0x8c68);
3110 tg3_writephy(tp, 0x1c, 0x8d68);
3111 tg3_writephy(tp, 0x1c, 0x8c68);
3112 }
3113
3114 /* Clear pending interrupts... */
3115 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
3116 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
3117
3118 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT)
3119 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlson7f97a4b2009-08-25 10:10:03 +00003120 else if (!(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 tg3_writephy(tp, MII_TG3_IMASK, ~0);
3122
3123 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3124 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3125 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
3126 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3127 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
3128 else
3129 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
3130 }
3131
3132 current_link_up = 0;
3133 current_speed = SPEED_INVALID;
3134 current_duplex = DUPLEX_INVALID;
3135
3136 if (tp->tg3_flags2 & TG3_FLG2_CAPACITIVE_COUPLING) {
3137 u32 val;
3138
3139 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4007);
3140 tg3_readphy(tp, MII_TG3_AUX_CTRL, &val);
3141 if (!(val & (1 << 10))) {
3142 val |= (1 << 10);
3143 tg3_writephy(tp, MII_TG3_AUX_CTRL, val);
3144 goto relink;
3145 }
3146 }
3147
3148 bmsr = 0;
3149 for (i = 0; i < 100; i++) {
3150 tg3_readphy(tp, MII_BMSR, &bmsr);
3151 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3152 (bmsr & BMSR_LSTATUS))
3153 break;
3154 udelay(40);
3155 }
3156
3157 if (bmsr & BMSR_LSTATUS) {
3158 u32 aux_stat, bmcr;
3159
3160 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
3161 for (i = 0; i < 2000; i++) {
3162 udelay(10);
3163 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
3164 aux_stat)
3165 break;
3166 }
3167
3168 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
3169 &current_speed,
3170 &current_duplex);
3171
3172 bmcr = 0;
3173 for (i = 0; i < 200; i++) {
3174 tg3_readphy(tp, MII_BMCR, &bmcr);
3175 if (tg3_readphy(tp, MII_BMCR, &bmcr))
3176 continue;
3177 if (bmcr && bmcr != 0x7fff)
3178 break;
3179 udelay(10);
3180 }
3181
Matt Carlsonef167e22007-12-20 20:10:01 -08003182 lcl_adv = 0;
3183 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Matt Carlsonef167e22007-12-20 20:10:01 -08003185 tp->link_config.active_speed = current_speed;
3186 tp->link_config.active_duplex = current_duplex;
3187
3188 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3189 if ((bmcr & BMCR_ANENABLE) &&
3190 tg3_copper_is_advertising_all(tp,
3191 tp->link_config.advertising)) {
3192 if (tg3_adv_1000T_flowctrl_ok(tp, &lcl_adv,
3193 &rmt_adv))
3194 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 }
3196 } else {
3197 if (!(bmcr & BMCR_ANENABLE) &&
3198 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08003199 tp->link_config.duplex == current_duplex &&
3200 tp->link_config.flowctrl ==
3201 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 }
3204 }
3205
Matt Carlsonef167e22007-12-20 20:10:01 -08003206 if (current_link_up == 1 &&
3207 tp->link_config.active_duplex == DUPLEX_FULL)
3208 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 }
3210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211relink:
Michael Chan6921d202005-12-13 21:15:53 -08003212 if (current_link_up == 0 || tp->link_config.phy_is_low_power) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 u32 tmp;
3214
3215 tg3_phy_copper_begin(tp);
3216
3217 tg3_readphy(tp, MII_BMSR, &tmp);
3218 if (!tg3_readphy(tp, MII_BMSR, &tmp) &&
3219 (tmp & BMSR_LSTATUS))
3220 current_link_up = 1;
3221 }
3222
3223 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
3224 if (current_link_up == 1) {
3225 if (tp->link_config.active_speed == SPEED_100 ||
3226 tp->link_config.active_speed == SPEED_10)
3227 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3228 else
3229 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlson7f97a4b2009-08-25 10:10:03 +00003230 } else if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET)
3231 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3232 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
3234
3235 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
3236 if (tp->link_config.active_duplex == DUPLEX_HALF)
3237 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
3238
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003240 if (current_link_up == 1 &&
3241 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003243 else
3244 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 }
3246
3247 /* ??? Without this setting Netgear GA302T PHY does not
3248 * ??? send/receive packets...
3249 */
Matt Carlson79eb6902010-02-17 15:17:03 +00003250 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
3252 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
3253 tw32_f(MAC_MI_MODE, tp->mi_mode);
3254 udelay(80);
3255 }
3256
3257 tw32_f(MAC_MODE, tp->mac_mode);
3258 udelay(40);
3259
3260 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
3261 /* Polled via timer. */
3262 tw32_f(MAC_EVENT, 0);
3263 } else {
3264 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3265 }
3266 udelay(40);
3267
3268 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
3269 current_link_up == 1 &&
3270 tp->link_config.active_speed == SPEED_1000 &&
3271 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) ||
3272 (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED))) {
3273 udelay(120);
3274 tw32_f(MAC_STATUS,
3275 (MAC_STATUS_SYNC_CHANGED |
3276 MAC_STATUS_CFG_CHANGED));
3277 udelay(40);
3278 tg3_write_mem(tp,
3279 NIC_SRAM_FIRMWARE_MBOX,
3280 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
3281 }
3282
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003283 /* Prevent send BD corruption. */
3284 if (tp->tg3_flags3 & TG3_FLG3_CLKREQ_BUG) {
3285 u16 oldlnkctl, newlnkctl;
3286
3287 pci_read_config_word(tp->pdev,
3288 tp->pcie_cap + PCI_EXP_LNKCTL,
3289 &oldlnkctl);
3290 if (tp->link_config.active_speed == SPEED_100 ||
3291 tp->link_config.active_speed == SPEED_10)
3292 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
3293 else
3294 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
3295 if (newlnkctl != oldlnkctl)
3296 pci_write_config_word(tp->pdev,
3297 tp->pcie_cap + PCI_EXP_LNKCTL,
3298 newlnkctl);
3299 }
3300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 if (current_link_up != netif_carrier_ok(tp->dev)) {
3302 if (current_link_up)
3303 netif_carrier_on(tp->dev);
3304 else
3305 netif_carrier_off(tp->dev);
3306 tg3_link_report(tp);
3307 }
3308
3309 return 0;
3310}
3311
3312struct tg3_fiber_aneginfo {
3313 int state;
3314#define ANEG_STATE_UNKNOWN 0
3315#define ANEG_STATE_AN_ENABLE 1
3316#define ANEG_STATE_RESTART_INIT 2
3317#define ANEG_STATE_RESTART 3
3318#define ANEG_STATE_DISABLE_LINK_OK 4
3319#define ANEG_STATE_ABILITY_DETECT_INIT 5
3320#define ANEG_STATE_ABILITY_DETECT 6
3321#define ANEG_STATE_ACK_DETECT_INIT 7
3322#define ANEG_STATE_ACK_DETECT 8
3323#define ANEG_STATE_COMPLETE_ACK_INIT 9
3324#define ANEG_STATE_COMPLETE_ACK 10
3325#define ANEG_STATE_IDLE_DETECT_INIT 11
3326#define ANEG_STATE_IDLE_DETECT 12
3327#define ANEG_STATE_LINK_OK 13
3328#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
3329#define ANEG_STATE_NEXT_PAGE_WAIT 15
3330
3331 u32 flags;
3332#define MR_AN_ENABLE 0x00000001
3333#define MR_RESTART_AN 0x00000002
3334#define MR_AN_COMPLETE 0x00000004
3335#define MR_PAGE_RX 0x00000008
3336#define MR_NP_LOADED 0x00000010
3337#define MR_TOGGLE_TX 0x00000020
3338#define MR_LP_ADV_FULL_DUPLEX 0x00000040
3339#define MR_LP_ADV_HALF_DUPLEX 0x00000080
3340#define MR_LP_ADV_SYM_PAUSE 0x00000100
3341#define MR_LP_ADV_ASYM_PAUSE 0x00000200
3342#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
3343#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
3344#define MR_LP_ADV_NEXT_PAGE 0x00001000
3345#define MR_TOGGLE_RX 0x00002000
3346#define MR_NP_RX 0x00004000
3347
3348#define MR_LINK_OK 0x80000000
3349
3350 unsigned long link_time, cur_time;
3351
3352 u32 ability_match_cfg;
3353 int ability_match_count;
3354
3355 char ability_match, idle_match, ack_match;
3356
3357 u32 txconfig, rxconfig;
3358#define ANEG_CFG_NP 0x00000080
3359#define ANEG_CFG_ACK 0x00000040
3360#define ANEG_CFG_RF2 0x00000020
3361#define ANEG_CFG_RF1 0x00000010
3362#define ANEG_CFG_PS2 0x00000001
3363#define ANEG_CFG_PS1 0x00008000
3364#define ANEG_CFG_HD 0x00004000
3365#define ANEG_CFG_FD 0x00002000
3366#define ANEG_CFG_INVAL 0x00001f06
3367
3368};
3369#define ANEG_OK 0
3370#define ANEG_DONE 1
3371#define ANEG_TIMER_ENAB 2
3372#define ANEG_FAILED -1
3373
3374#define ANEG_STATE_SETTLE_TIME 10000
3375
3376static int tg3_fiber_aneg_smachine(struct tg3 *tp,
3377 struct tg3_fiber_aneginfo *ap)
3378{
Matt Carlson5be73b42007-12-20 20:09:29 -08003379 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 unsigned long delta;
3381 u32 rx_cfg_reg;
3382 int ret;
3383
3384 if (ap->state == ANEG_STATE_UNKNOWN) {
3385 ap->rxconfig = 0;
3386 ap->link_time = 0;
3387 ap->cur_time = 0;
3388 ap->ability_match_cfg = 0;
3389 ap->ability_match_count = 0;
3390 ap->ability_match = 0;
3391 ap->idle_match = 0;
3392 ap->ack_match = 0;
3393 }
3394 ap->cur_time++;
3395
3396 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
3397 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
3398
3399 if (rx_cfg_reg != ap->ability_match_cfg) {
3400 ap->ability_match_cfg = rx_cfg_reg;
3401 ap->ability_match = 0;
3402 ap->ability_match_count = 0;
3403 } else {
3404 if (++ap->ability_match_count > 1) {
3405 ap->ability_match = 1;
3406 ap->ability_match_cfg = rx_cfg_reg;
3407 }
3408 }
3409 if (rx_cfg_reg & ANEG_CFG_ACK)
3410 ap->ack_match = 1;
3411 else
3412 ap->ack_match = 0;
3413
3414 ap->idle_match = 0;
3415 } else {
3416 ap->idle_match = 1;
3417 ap->ability_match_cfg = 0;
3418 ap->ability_match_count = 0;
3419 ap->ability_match = 0;
3420 ap->ack_match = 0;
3421
3422 rx_cfg_reg = 0;
3423 }
3424
3425 ap->rxconfig = rx_cfg_reg;
3426 ret = ANEG_OK;
3427
3428 switch(ap->state) {
3429 case ANEG_STATE_UNKNOWN:
3430 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
3431 ap->state = ANEG_STATE_AN_ENABLE;
3432
3433 /* fallthru */
3434 case ANEG_STATE_AN_ENABLE:
3435 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
3436 if (ap->flags & MR_AN_ENABLE) {
3437 ap->link_time = 0;
3438 ap->cur_time = 0;
3439 ap->ability_match_cfg = 0;
3440 ap->ability_match_count = 0;
3441 ap->ability_match = 0;
3442 ap->idle_match = 0;
3443 ap->ack_match = 0;
3444
3445 ap->state = ANEG_STATE_RESTART_INIT;
3446 } else {
3447 ap->state = ANEG_STATE_DISABLE_LINK_OK;
3448 }
3449 break;
3450
3451 case ANEG_STATE_RESTART_INIT:
3452 ap->link_time = ap->cur_time;
3453 ap->flags &= ~(MR_NP_LOADED);
3454 ap->txconfig = 0;
3455 tw32(MAC_TX_AUTO_NEG, 0);
3456 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3457 tw32_f(MAC_MODE, tp->mac_mode);
3458 udelay(40);
3459
3460 ret = ANEG_TIMER_ENAB;
3461 ap->state = ANEG_STATE_RESTART;
3462
3463 /* fallthru */
3464 case ANEG_STATE_RESTART:
3465 delta = ap->cur_time - ap->link_time;
3466 if (delta > ANEG_STATE_SETTLE_TIME) {
3467 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
3468 } else {
3469 ret = ANEG_TIMER_ENAB;
3470 }
3471 break;
3472
3473 case ANEG_STATE_DISABLE_LINK_OK:
3474 ret = ANEG_DONE;
3475 break;
3476
3477 case ANEG_STATE_ABILITY_DETECT_INIT:
3478 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08003479 ap->txconfig = ANEG_CFG_FD;
3480 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3481 if (flowctrl & ADVERTISE_1000XPAUSE)
3482 ap->txconfig |= ANEG_CFG_PS1;
3483 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3484 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3486 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3487 tw32_f(MAC_MODE, tp->mac_mode);
3488 udelay(40);
3489
3490 ap->state = ANEG_STATE_ABILITY_DETECT;
3491 break;
3492
3493 case ANEG_STATE_ABILITY_DETECT:
3494 if (ap->ability_match != 0 && ap->rxconfig != 0) {
3495 ap->state = ANEG_STATE_ACK_DETECT_INIT;
3496 }
3497 break;
3498
3499 case ANEG_STATE_ACK_DETECT_INIT:
3500 ap->txconfig |= ANEG_CFG_ACK;
3501 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3502 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3503 tw32_f(MAC_MODE, tp->mac_mode);
3504 udelay(40);
3505
3506 ap->state = ANEG_STATE_ACK_DETECT;
3507
3508 /* fallthru */
3509 case ANEG_STATE_ACK_DETECT:
3510 if (ap->ack_match != 0) {
3511 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
3512 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
3513 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
3514 } else {
3515 ap->state = ANEG_STATE_AN_ENABLE;
3516 }
3517 } else if (ap->ability_match != 0 &&
3518 ap->rxconfig == 0) {
3519 ap->state = ANEG_STATE_AN_ENABLE;
3520 }
3521 break;
3522
3523 case ANEG_STATE_COMPLETE_ACK_INIT:
3524 if (ap->rxconfig & ANEG_CFG_INVAL) {
3525 ret = ANEG_FAILED;
3526 break;
3527 }
3528 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
3529 MR_LP_ADV_HALF_DUPLEX |
3530 MR_LP_ADV_SYM_PAUSE |
3531 MR_LP_ADV_ASYM_PAUSE |
3532 MR_LP_ADV_REMOTE_FAULT1 |
3533 MR_LP_ADV_REMOTE_FAULT2 |
3534 MR_LP_ADV_NEXT_PAGE |
3535 MR_TOGGLE_RX |
3536 MR_NP_RX);
3537 if (ap->rxconfig & ANEG_CFG_FD)
3538 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
3539 if (ap->rxconfig & ANEG_CFG_HD)
3540 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
3541 if (ap->rxconfig & ANEG_CFG_PS1)
3542 ap->flags |= MR_LP_ADV_SYM_PAUSE;
3543 if (ap->rxconfig & ANEG_CFG_PS2)
3544 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
3545 if (ap->rxconfig & ANEG_CFG_RF1)
3546 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
3547 if (ap->rxconfig & ANEG_CFG_RF2)
3548 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
3549 if (ap->rxconfig & ANEG_CFG_NP)
3550 ap->flags |= MR_LP_ADV_NEXT_PAGE;
3551
3552 ap->link_time = ap->cur_time;
3553
3554 ap->flags ^= (MR_TOGGLE_TX);
3555 if (ap->rxconfig & 0x0008)
3556 ap->flags |= MR_TOGGLE_RX;
3557 if (ap->rxconfig & ANEG_CFG_NP)
3558 ap->flags |= MR_NP_RX;
3559 ap->flags |= MR_PAGE_RX;
3560
3561 ap->state = ANEG_STATE_COMPLETE_ACK;
3562 ret = ANEG_TIMER_ENAB;
3563 break;
3564
3565 case ANEG_STATE_COMPLETE_ACK:
3566 if (ap->ability_match != 0 &&
3567 ap->rxconfig == 0) {
3568 ap->state = ANEG_STATE_AN_ENABLE;
3569 break;
3570 }
3571 delta = ap->cur_time - ap->link_time;
3572 if (delta > ANEG_STATE_SETTLE_TIME) {
3573 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
3574 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3575 } else {
3576 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
3577 !(ap->flags & MR_NP_RX)) {
3578 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3579 } else {
3580 ret = ANEG_FAILED;
3581 }
3582 }
3583 }
3584 break;
3585
3586 case ANEG_STATE_IDLE_DETECT_INIT:
3587 ap->link_time = ap->cur_time;
3588 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3589 tw32_f(MAC_MODE, tp->mac_mode);
3590 udelay(40);
3591
3592 ap->state = ANEG_STATE_IDLE_DETECT;
3593 ret = ANEG_TIMER_ENAB;
3594 break;
3595
3596 case ANEG_STATE_IDLE_DETECT:
3597 if (ap->ability_match != 0 &&
3598 ap->rxconfig == 0) {
3599 ap->state = ANEG_STATE_AN_ENABLE;
3600 break;
3601 }
3602 delta = ap->cur_time - ap->link_time;
3603 if (delta > ANEG_STATE_SETTLE_TIME) {
3604 /* XXX another gem from the Broadcom driver :( */
3605 ap->state = ANEG_STATE_LINK_OK;
3606 }
3607 break;
3608
3609 case ANEG_STATE_LINK_OK:
3610 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
3611 ret = ANEG_DONE;
3612 break;
3613
3614 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
3615 /* ??? unimplemented */
3616 break;
3617
3618 case ANEG_STATE_NEXT_PAGE_WAIT:
3619 /* ??? unimplemented */
3620 break;
3621
3622 default:
3623 ret = ANEG_FAILED;
3624 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
3627 return ret;
3628}
3629
Matt Carlson5be73b42007-12-20 20:09:29 -08003630static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631{
3632 int res = 0;
3633 struct tg3_fiber_aneginfo aninfo;
3634 int status = ANEG_FAILED;
3635 unsigned int tick;
3636 u32 tmp;
3637
3638 tw32_f(MAC_TX_AUTO_NEG, 0);
3639
3640 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
3641 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
3642 udelay(40);
3643
3644 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
3645 udelay(40);
3646
3647 memset(&aninfo, 0, sizeof(aninfo));
3648 aninfo.flags |= MR_AN_ENABLE;
3649 aninfo.state = ANEG_STATE_UNKNOWN;
3650 aninfo.cur_time = 0;
3651 tick = 0;
3652 while (++tick < 195000) {
3653 status = tg3_fiber_aneg_smachine(tp, &aninfo);
3654 if (status == ANEG_DONE || status == ANEG_FAILED)
3655 break;
3656
3657 udelay(1);
3658 }
3659
3660 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3661 tw32_f(MAC_MODE, tp->mac_mode);
3662 udelay(40);
3663
Matt Carlson5be73b42007-12-20 20:09:29 -08003664 *txflags = aninfo.txconfig;
3665 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
3667 if (status == ANEG_DONE &&
3668 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
3669 MR_LP_ADV_FULL_DUPLEX)))
3670 res = 1;
3671
3672 return res;
3673}
3674
3675static void tg3_init_bcm8002(struct tg3 *tp)
3676{
3677 u32 mac_status = tr32(MAC_STATUS);
3678 int i;
3679
3680 /* Reset when initting first time or we have a link. */
3681 if ((tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) &&
3682 !(mac_status & MAC_STATUS_PCS_SYNCED))
3683 return;
3684
3685 /* Set PLL lock range. */
3686 tg3_writephy(tp, 0x16, 0x8007);
3687
3688 /* SW reset */
3689 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
3690
3691 /* Wait for reset to complete. */
3692 /* XXX schedule_timeout() ... */
3693 for (i = 0; i < 500; i++)
3694 udelay(10);
3695
3696 /* Config mode; select PMA/Ch 1 regs. */
3697 tg3_writephy(tp, 0x10, 0x8411);
3698
3699 /* Enable auto-lock and comdet, select txclk for tx. */
3700 tg3_writephy(tp, 0x11, 0x0a10);
3701
3702 tg3_writephy(tp, 0x18, 0x00a0);
3703 tg3_writephy(tp, 0x16, 0x41ff);
3704
3705 /* Assert and deassert POR. */
3706 tg3_writephy(tp, 0x13, 0x0400);
3707 udelay(40);
3708 tg3_writephy(tp, 0x13, 0x0000);
3709
3710 tg3_writephy(tp, 0x11, 0x0a50);
3711 udelay(40);
3712 tg3_writephy(tp, 0x11, 0x0a10);
3713
3714 /* Wait for signal to stabilize */
3715 /* XXX schedule_timeout() ... */
3716 for (i = 0; i < 15000; i++)
3717 udelay(10);
3718
3719 /* Deselect the channel register so we can read the PHYID
3720 * later.
3721 */
3722 tg3_writephy(tp, 0x10, 0x8011);
3723}
3724
3725static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
3726{
Matt Carlson82cd3d12007-12-20 20:09:00 -08003727 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 u32 sg_dig_ctrl, sg_dig_status;
3729 u32 serdes_cfg, expected_sg_dig_ctrl;
3730 int workaround, port_a;
3731 int current_link_up;
3732
3733 serdes_cfg = 0;
3734 expected_sg_dig_ctrl = 0;
3735 workaround = 0;
3736 port_a = 1;
3737 current_link_up = 0;
3738
3739 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
3740 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
3741 workaround = 1;
3742 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
3743 port_a = 0;
3744
3745 /* preserve bits 0-11,13,14 for signal pre-emphasis */
3746 /* preserve bits 20-23 for voltage regulator */
3747 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
3748 }
3749
3750 sg_dig_ctrl = tr32(SG_DIG_CTRL);
3751
3752 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003753 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 if (workaround) {
3755 u32 val = serdes_cfg;
3756
3757 if (port_a)
3758 val |= 0xc010000;
3759 else
3760 val |= 0x4010000;
3761 tw32_f(MAC_SERDES_CFG, val);
3762 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003763
3764 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 }
3766 if (mac_status & MAC_STATUS_PCS_SYNCED) {
3767 tg3_setup_flow_control(tp, 0, 0);
3768 current_link_up = 1;
3769 }
3770 goto out;
3771 }
3772
3773 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003774 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775
Matt Carlson82cd3d12007-12-20 20:09:00 -08003776 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3777 if (flowctrl & ADVERTISE_1000XPAUSE)
3778 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
3779 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3780 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781
3782 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003783 if ((tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT) &&
3784 tp->serdes_counter &&
3785 ((mac_status & (MAC_STATUS_PCS_SYNCED |
3786 MAC_STATUS_RCVD_CFG)) ==
3787 MAC_STATUS_PCS_SYNCED)) {
3788 tp->serdes_counter--;
3789 current_link_up = 1;
3790 goto out;
3791 }
3792restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 if (workaround)
3794 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003795 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 udelay(5);
3797 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
3798
Michael Chan3d3ebe72006-09-27 15:59:15 -07003799 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
3800 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
3802 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003803 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 mac_status = tr32(MAC_STATUS);
3805
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003806 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08003808 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
Matt Carlson82cd3d12007-12-20 20:09:00 -08003810 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
3811 local_adv |= ADVERTISE_1000XPAUSE;
3812 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
3813 local_adv |= ADVERTISE_1000XPSE_ASYM;
3814
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003815 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003816 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003817 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003818 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
3820 tg3_setup_flow_control(tp, local_adv, remote_adv);
3821 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003822 tp->serdes_counter = 0;
3823 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003824 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003825 if (tp->serdes_counter)
3826 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 else {
3828 if (workaround) {
3829 u32 val = serdes_cfg;
3830
3831 if (port_a)
3832 val |= 0xc010000;
3833 else
3834 val |= 0x4010000;
3835
3836 tw32_f(MAC_SERDES_CFG, val);
3837 }
3838
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003839 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 udelay(40);
3841
3842 /* Link parallel detection - link is up */
3843 /* only if we have PCS_SYNC and not */
3844 /* receiving config code words */
3845 mac_status = tr32(MAC_STATUS);
3846 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
3847 !(mac_status & MAC_STATUS_RCVD_CFG)) {
3848 tg3_setup_flow_control(tp, 0, 0);
3849 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003850 tp->tg3_flags2 |=
3851 TG3_FLG2_PARALLEL_DETECT;
3852 tp->serdes_counter =
3853 SERDES_PARALLEL_DET_TIMEOUT;
3854 } else
3855 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 }
3857 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07003858 } else {
3859 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
3860 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 }
3862
3863out:
3864 return current_link_up;
3865}
3866
3867static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
3868{
3869 int current_link_up = 0;
3870
Michael Chan5cf64b8a2007-05-05 12:11:21 -07003871 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873
3874 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08003875 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003877
Matt Carlson5be73b42007-12-20 20:09:29 -08003878 if (fiber_autoneg(tp, &txflags, &rxflags)) {
3879 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
Matt Carlson5be73b42007-12-20 20:09:29 -08003881 if (txflags & ANEG_CFG_PS1)
3882 local_adv |= ADVERTISE_1000XPAUSE;
3883 if (txflags & ANEG_CFG_PS2)
3884 local_adv |= ADVERTISE_1000XPSE_ASYM;
3885
3886 if (rxflags & MR_LP_ADV_SYM_PAUSE)
3887 remote_adv |= LPA_1000XPAUSE;
3888 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
3889 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890
3891 tg3_setup_flow_control(tp, local_adv, remote_adv);
3892
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 current_link_up = 1;
3894 }
3895 for (i = 0; i < 30; i++) {
3896 udelay(20);
3897 tw32_f(MAC_STATUS,
3898 (MAC_STATUS_SYNC_CHANGED |
3899 MAC_STATUS_CFG_CHANGED));
3900 udelay(40);
3901 if ((tr32(MAC_STATUS) &
3902 (MAC_STATUS_SYNC_CHANGED |
3903 MAC_STATUS_CFG_CHANGED)) == 0)
3904 break;
3905 }
3906
3907 mac_status = tr32(MAC_STATUS);
3908 if (current_link_up == 0 &&
3909 (mac_status & MAC_STATUS_PCS_SYNCED) &&
3910 !(mac_status & MAC_STATUS_RCVD_CFG))
3911 current_link_up = 1;
3912 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08003913 tg3_setup_flow_control(tp, 0, 0);
3914
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 /* Forcing 1000FD link up. */
3916 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
3918 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
3919 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003920
3921 tw32_f(MAC_MODE, tp->mac_mode);
3922 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 }
3924
3925out:
3926 return current_link_up;
3927}
3928
3929static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
3930{
3931 u32 orig_pause_cfg;
3932 u16 orig_active_speed;
3933 u8 orig_active_duplex;
3934 u32 mac_status;
3935 int current_link_up;
3936 int i;
3937
Matt Carlson8d018622007-12-20 20:05:44 -08003938 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 orig_active_speed = tp->link_config.active_speed;
3940 orig_active_duplex = tp->link_config.active_duplex;
3941
3942 if (!(tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG) &&
3943 netif_carrier_ok(tp->dev) &&
3944 (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE)) {
3945 mac_status = tr32(MAC_STATUS);
3946 mac_status &= (MAC_STATUS_PCS_SYNCED |
3947 MAC_STATUS_SIGNAL_DET |
3948 MAC_STATUS_CFG_CHANGED |
3949 MAC_STATUS_RCVD_CFG);
3950 if (mac_status == (MAC_STATUS_PCS_SYNCED |
3951 MAC_STATUS_SIGNAL_DET)) {
3952 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
3953 MAC_STATUS_CFG_CHANGED));
3954 return 0;
3955 }
3956 }
3957
3958 tw32_f(MAC_TX_AUTO_NEG, 0);
3959
3960 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
3961 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
3962 tw32_f(MAC_MODE, tp->mac_mode);
3963 udelay(40);
3964
Matt Carlson79eb6902010-02-17 15:17:03 +00003965 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 tg3_init_bcm8002(tp);
3967
3968 /* Enable link change event even when serdes polling. */
3969 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3970 udelay(40);
3971
3972 current_link_up = 0;
3973 mac_status = tr32(MAC_STATUS);
3974
3975 if (tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG)
3976 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
3977 else
3978 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
3979
Matt Carlson898a56f2009-08-28 14:02:40 +00003980 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00003982 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
3984 for (i = 0; i < 100; i++) {
3985 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
3986 MAC_STATUS_CFG_CHANGED));
3987 udelay(5);
3988 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07003989 MAC_STATUS_CFG_CHANGED |
3990 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 break;
3992 }
3993
3994 mac_status = tr32(MAC_STATUS);
3995 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
3996 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003997 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
3998 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 tw32_f(MAC_MODE, (tp->mac_mode |
4000 MAC_MODE_SEND_CONFIGS));
4001 udelay(1);
4002 tw32_f(MAC_MODE, tp->mac_mode);
4003 }
4004 }
4005
4006 if (current_link_up == 1) {
4007 tp->link_config.active_speed = SPEED_1000;
4008 tp->link_config.active_duplex = DUPLEX_FULL;
4009 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4010 LED_CTRL_LNKLED_OVERRIDE |
4011 LED_CTRL_1000MBPS_ON));
4012 } else {
4013 tp->link_config.active_speed = SPEED_INVALID;
4014 tp->link_config.active_duplex = DUPLEX_INVALID;
4015 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4016 LED_CTRL_LNKLED_OVERRIDE |
4017 LED_CTRL_TRAFFIC_OVERRIDE));
4018 }
4019
4020 if (current_link_up != netif_carrier_ok(tp->dev)) {
4021 if (current_link_up)
4022 netif_carrier_on(tp->dev);
4023 else
4024 netif_carrier_off(tp->dev);
4025 tg3_link_report(tp);
4026 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08004027 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 if (orig_pause_cfg != now_pause_cfg ||
4029 orig_active_speed != tp->link_config.active_speed ||
4030 orig_active_duplex != tp->link_config.active_duplex)
4031 tg3_link_report(tp);
4032 }
4033
4034 return 0;
4035}
4036
Michael Chan747e8f82005-07-25 12:33:22 -07004037static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
4038{
4039 int current_link_up, err = 0;
4040 u32 bmsr, bmcr;
4041 u16 current_speed;
4042 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08004043 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07004044
4045 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4046 tw32_f(MAC_MODE, tp->mac_mode);
4047 udelay(40);
4048
4049 tw32(MAC_EVENT, 0);
4050
4051 tw32_f(MAC_STATUS,
4052 (MAC_STATUS_SYNC_CHANGED |
4053 MAC_STATUS_CFG_CHANGED |
4054 MAC_STATUS_MI_COMPLETION |
4055 MAC_STATUS_LNKSTATE_CHANGED));
4056 udelay(40);
4057
4058 if (force_reset)
4059 tg3_phy_reset(tp);
4060
4061 current_link_up = 0;
4062 current_speed = SPEED_INVALID;
4063 current_duplex = DUPLEX_INVALID;
4064
4065 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4066 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004067 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
4068 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4069 bmsr |= BMSR_LSTATUS;
4070 else
4071 bmsr &= ~BMSR_LSTATUS;
4072 }
Michael Chan747e8f82005-07-25 12:33:22 -07004073
4074 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
4075
4076 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlson2bd3ed02008-06-09 15:39:55 -07004077 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004078 /* do nothing, just check for link up at the end */
4079 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4080 u32 adv, new_adv;
4081
4082 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4083 new_adv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
4084 ADVERTISE_1000XPAUSE |
4085 ADVERTISE_1000XPSE_ASYM |
4086 ADVERTISE_SLCT);
4087
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004088 new_adv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Michael Chan747e8f82005-07-25 12:33:22 -07004089
4090 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
4091 new_adv |= ADVERTISE_1000XHALF;
4092 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
4093 new_adv |= ADVERTISE_1000XFULL;
4094
4095 if ((new_adv != adv) || !(bmcr & BMCR_ANENABLE)) {
4096 tg3_writephy(tp, MII_ADVERTISE, new_adv);
4097 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
4098 tg3_writephy(tp, MII_BMCR, bmcr);
4099
4100 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07004101 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Michael Chan747e8f82005-07-25 12:33:22 -07004102 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4103
4104 return err;
4105 }
4106 } else {
4107 u32 new_bmcr;
4108
4109 bmcr &= ~BMCR_SPEED1000;
4110 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
4111
4112 if (tp->link_config.duplex == DUPLEX_FULL)
4113 new_bmcr |= BMCR_FULLDPLX;
4114
4115 if (new_bmcr != bmcr) {
4116 /* BMCR_SPEED1000 is a reserved bit that needs
4117 * to be set on write.
4118 */
4119 new_bmcr |= BMCR_SPEED1000;
4120
4121 /* Force a linkdown */
4122 if (netif_carrier_ok(tp->dev)) {
4123 u32 adv;
4124
4125 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4126 adv &= ~(ADVERTISE_1000XFULL |
4127 ADVERTISE_1000XHALF |
4128 ADVERTISE_SLCT);
4129 tg3_writephy(tp, MII_ADVERTISE, adv);
4130 tg3_writephy(tp, MII_BMCR, bmcr |
4131 BMCR_ANRESTART |
4132 BMCR_ANENABLE);
4133 udelay(10);
4134 netif_carrier_off(tp->dev);
4135 }
4136 tg3_writephy(tp, MII_BMCR, new_bmcr);
4137 bmcr = new_bmcr;
4138 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4139 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004140 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
4141 ASIC_REV_5714) {
4142 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4143 bmsr |= BMSR_LSTATUS;
4144 else
4145 bmsr &= ~BMSR_LSTATUS;
4146 }
Michael Chan747e8f82005-07-25 12:33:22 -07004147 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4148 }
4149 }
4150
4151 if (bmsr & BMSR_LSTATUS) {
4152 current_speed = SPEED_1000;
4153 current_link_up = 1;
4154 if (bmcr & BMCR_FULLDPLX)
4155 current_duplex = DUPLEX_FULL;
4156 else
4157 current_duplex = DUPLEX_HALF;
4158
Matt Carlsonef167e22007-12-20 20:10:01 -08004159 local_adv = 0;
4160 remote_adv = 0;
4161
Michael Chan747e8f82005-07-25 12:33:22 -07004162 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08004163 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07004164
4165 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
4166 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
4167 common = local_adv & remote_adv;
4168 if (common & (ADVERTISE_1000XHALF |
4169 ADVERTISE_1000XFULL)) {
4170 if (common & ADVERTISE_1000XFULL)
4171 current_duplex = DUPLEX_FULL;
4172 else
4173 current_duplex = DUPLEX_HALF;
Michael Chan747e8f82005-07-25 12:33:22 -07004174 }
4175 else
4176 current_link_up = 0;
4177 }
4178 }
4179
Matt Carlsonef167e22007-12-20 20:10:01 -08004180 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
4181 tg3_setup_flow_control(tp, local_adv, remote_adv);
4182
Michael Chan747e8f82005-07-25 12:33:22 -07004183 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4184 if (tp->link_config.active_duplex == DUPLEX_HALF)
4185 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4186
4187 tw32_f(MAC_MODE, tp->mac_mode);
4188 udelay(40);
4189
4190 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4191
4192 tp->link_config.active_speed = current_speed;
4193 tp->link_config.active_duplex = current_duplex;
4194
4195 if (current_link_up != netif_carrier_ok(tp->dev)) {
4196 if (current_link_up)
4197 netif_carrier_on(tp->dev);
4198 else {
4199 netif_carrier_off(tp->dev);
4200 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4201 }
4202 tg3_link_report(tp);
4203 }
4204 return err;
4205}
4206
4207static void tg3_serdes_parallel_detect(struct tg3 *tp)
4208{
Michael Chan3d3ebe72006-09-27 15:59:15 -07004209 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07004210 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07004211 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07004212 return;
4213 }
4214 if (!netif_carrier_ok(tp->dev) &&
4215 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
4216 u32 bmcr;
4217
4218 tg3_readphy(tp, MII_BMCR, &bmcr);
4219 if (bmcr & BMCR_ANENABLE) {
4220 u32 phy1, phy2;
4221
4222 /* Select shadow register 0x1f */
4223 tg3_writephy(tp, 0x1c, 0x7c00);
4224 tg3_readphy(tp, 0x1c, &phy1);
4225
4226 /* Select expansion interrupt status register */
4227 tg3_writephy(tp, 0x17, 0x0f01);
4228 tg3_readphy(tp, 0x15, &phy2);
4229 tg3_readphy(tp, 0x15, &phy2);
4230
4231 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
4232 /* We have signal detect and not receiving
4233 * config code words, link is up by parallel
4234 * detection.
4235 */
4236
4237 bmcr &= ~BMCR_ANENABLE;
4238 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
4239 tg3_writephy(tp, MII_BMCR, bmcr);
4240 tp->tg3_flags2 |= TG3_FLG2_PARALLEL_DETECT;
4241 }
4242 }
4243 }
4244 else if (netif_carrier_ok(tp->dev) &&
4245 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
4246 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT)) {
4247 u32 phy2;
4248
4249 /* Select expansion interrupt status register */
4250 tg3_writephy(tp, 0x17, 0x0f01);
4251 tg3_readphy(tp, 0x15, &phy2);
4252 if (phy2 & 0x20) {
4253 u32 bmcr;
4254
4255 /* Config code words received, turn on autoneg. */
4256 tg3_readphy(tp, MII_BMCR, &bmcr);
4257 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
4258
4259 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4260
4261 }
4262 }
4263}
4264
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265static int tg3_setup_phy(struct tg3 *tp, int force_reset)
4266{
4267 int err;
4268
4269 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
4270 err = tg3_setup_fiber_phy(tp, force_reset);
Michael Chan747e8f82005-07-25 12:33:22 -07004271 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
4272 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 } else {
4274 err = tg3_setup_copper_phy(tp, force_reset);
4275 }
4276
Matt Carlsonbcb37f62008-11-03 16:52:09 -08004277 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08004278 u32 val, scale;
4279
4280 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
4281 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
4282 scale = 65;
4283 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
4284 scale = 6;
4285 else
4286 scale = 12;
4287
4288 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
4289 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
4290 tw32(GRC_MISC_CFG, val);
4291 }
4292
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 if (tp->link_config.active_speed == SPEED_1000 &&
4294 tp->link_config.active_duplex == DUPLEX_HALF)
4295 tw32(MAC_TX_LENGTHS,
4296 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
4297 (6 << TX_LENGTHS_IPG_SHIFT) |
4298 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
4299 else
4300 tw32(MAC_TX_LENGTHS,
4301 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
4302 (6 << TX_LENGTHS_IPG_SHIFT) |
4303 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
4304
4305 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
4306 if (netif_carrier_ok(tp->dev)) {
4307 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07004308 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 } else {
4310 tw32(HOSTCC_STAT_COAL_TICKS, 0);
4311 }
4312 }
4313
Matt Carlson8ed5d972007-05-07 00:25:49 -07004314 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND) {
4315 u32 val = tr32(PCIE_PWR_MGMT_THRESH);
4316 if (!netif_carrier_ok(tp->dev))
4317 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
4318 tp->pwrmgmt_thresh;
4319 else
4320 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
4321 tw32(PCIE_PWR_MGMT_THRESH, val);
4322 }
4323
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 return err;
4325}
4326
Michael Chandf3e6542006-05-26 17:48:07 -07004327/* This is called whenever we suspect that the system chipset is re-
4328 * ordering the sequence of MMIO to the tx send mailbox. The symptom
4329 * is bogus tx completions. We try to recover by setting the
4330 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
4331 * in the workqueue.
4332 */
4333static void tg3_tx_recover(struct tg3 *tp)
4334{
4335 BUG_ON((tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER) ||
4336 tp->write32_tx_mbox == tg3_write_indirect_mbox);
4337
Joe Perches05dbe002010-02-17 19:44:19 +00004338 netdev_warn(tp->dev, "The system may be re-ordering memory-mapped I/O cycles to the network device, attempting to recover\n"
4339 "Please report the problem to the driver maintainer and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07004340
4341 spin_lock(&tp->lock);
Michael Chandf3e6542006-05-26 17:48:07 -07004342 tp->tg3_flags |= TG3_FLAG_TX_RECOVERY_PENDING;
Michael Chandf3e6542006-05-26 17:48:07 -07004343 spin_unlock(&tp->lock);
4344}
4345
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004346static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07004347{
4348 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004349 return tnapi->tx_pending -
4350 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07004351}
4352
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353/* Tigon3 never reports partial packet sends. So we do not
4354 * need special logic to handle SKBs that have not had all
4355 * of their frags sent yet, like SunGEM does.
4356 */
Matt Carlson17375d22009-08-28 14:02:18 +00004357static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358{
Matt Carlson17375d22009-08-28 14:02:18 +00004359 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00004360 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004361 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004362 struct netdev_queue *txq;
4363 int index = tnapi - tp->napi;
4364
Matt Carlson19cfaec2009-12-03 08:36:20 +00004365 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004366 index--;
4367
4368 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
4370 while (sw_idx != hw_idx) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00004371 struct ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07004373 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
Michael Chandf3e6542006-05-26 17:48:07 -07004375 if (unlikely(skb == NULL)) {
4376 tg3_tx_recover(tp);
4377 return;
4378 }
4379
Alexander Duyckf4188d82009-12-02 16:48:38 +00004380 pci_unmap_single(tp->pdev,
4381 pci_unmap_addr(ri, mapping),
4382 skb_headlen(skb),
4383 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
4385 ri->skb = NULL;
4386
4387 sw_idx = NEXT_TX(sw_idx);
4388
4389 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004390 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07004391 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
4392 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00004393
4394 pci_unmap_page(tp->pdev,
4395 pci_unmap_addr(ri, mapping),
4396 skb_shinfo(skb)->frags[i].size,
4397 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398 sw_idx = NEXT_TX(sw_idx);
4399 }
4400
David S. Millerf47c11e2005-06-24 20:18:35 -07004401 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07004402
4403 if (unlikely(tx_bug)) {
4404 tg3_tx_recover(tp);
4405 return;
4406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 }
4408
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004409 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410
Michael Chan1b2a7202006-08-07 21:46:02 -07004411 /* Need to make the tx_cons update visible to tg3_start_xmit()
4412 * before checking for netif_queue_stopped(). Without the
4413 * memory barrier, there is a small possibility that tg3_start_xmit()
4414 * will miss it and cause the queue to be stopped forever.
4415 */
4416 smp_mb();
4417
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004418 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004419 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004420 __netif_tx_lock(txq, smp_processor_id());
4421 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004422 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004423 netif_tx_wake_queue(txq);
4424 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07004425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426}
4427
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004428static void tg3_rx_skb_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
4429{
4430 if (!ri->skb)
4431 return;
4432
4433 pci_unmap_single(tp->pdev, pci_unmap_addr(ri, mapping),
4434 map_sz, PCI_DMA_FROMDEVICE);
4435 dev_kfree_skb_any(ri->skb);
4436 ri->skb = NULL;
4437}
4438
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439/* Returns size of skb allocated or < 0 on error.
4440 *
4441 * We only need to fill in the address because the other members
4442 * of the RX descriptor are invariant, see tg3_init_rings.
4443 *
4444 * Note the purposeful assymetry of cpu vs. chip accesses. For
4445 * posting buffers we only dirty the first cache line of the RX
4446 * descriptor (containing the address). Whereas for the RX status
4447 * buffers the cpu only reads the last cacheline of the RX descriptor
4448 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
4449 */
Matt Carlson86b21e52009-11-13 13:03:45 +00004450static int tg3_alloc_rx_skb(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Matt Carlsona3896162009-11-13 13:03:44 +00004451 u32 opaque_key, u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452{
4453 struct tg3_rx_buffer_desc *desc;
4454 struct ring_info *map, *src_map;
4455 struct sk_buff *skb;
4456 dma_addr_t mapping;
4457 int skb_size, dest_idx;
4458
4459 src_map = NULL;
4460 switch (opaque_key) {
4461 case RXD_OPAQUE_RING_STD:
4462 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
Matt Carlson21f581a2009-08-28 14:00:25 +00004463 desc = &tpr->rx_std[dest_idx];
4464 map = &tpr->rx_std_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004465 skb_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 break;
4467
4468 case RXD_OPAQUE_RING_JUMBO:
4469 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00004470 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00004471 map = &tpr->rx_jmb_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004472 skb_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 break;
4474
4475 default:
4476 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
4479 /* Do not overwrite any of the map or rp information
4480 * until we are sure we can commit to a new buffer.
4481 *
4482 * Callers depend upon this behavior and assume that
4483 * we leave everything unchanged if we fail.
4484 */
Matt Carlson287be122009-08-28 13:58:46 +00004485 skb = netdev_alloc_skb(tp->dev, skb_size + tp->rx_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 if (skb == NULL)
4487 return -ENOMEM;
4488
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 skb_reserve(skb, tp->rx_offset);
4490
Matt Carlson287be122009-08-28 13:58:46 +00004491 mapping = pci_map_single(tp->pdev, skb->data, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 PCI_DMA_FROMDEVICE);
Matt Carlsona21771d2009-11-02 14:25:31 +00004493 if (pci_dma_mapping_error(tp->pdev, mapping)) {
4494 dev_kfree_skb(skb);
4495 return -EIO;
4496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497
4498 map->skb = skb;
4499 pci_unmap_addr_set(map, mapping, mapping);
4500
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 desc->addr_hi = ((u64)mapping >> 32);
4502 desc->addr_lo = ((u64)mapping & 0xffffffff);
4503
4504 return skb_size;
4505}
4506
4507/* We only need to move over in the address because the other
4508 * members of the RX descriptor are invariant. See notes above
4509 * tg3_alloc_rx_skb for full details.
4510 */
Matt Carlsona3896162009-11-13 13:03:44 +00004511static void tg3_recycle_rx(struct tg3_napi *tnapi,
4512 struct tg3_rx_prodring_set *dpr,
4513 u32 opaque_key, int src_idx,
4514 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515{
Matt Carlson17375d22009-08-28 14:02:18 +00004516 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
4518 struct ring_info *src_map, *dest_map;
4519 int dest_idx;
Matt Carlsona3896162009-11-13 13:03:44 +00004520 struct tg3_rx_prodring_set *spr = &tp->prodring[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521
4522 switch (opaque_key) {
4523 case RXD_OPAQUE_RING_STD:
4524 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
Matt Carlsona3896162009-11-13 13:03:44 +00004525 dest_desc = &dpr->rx_std[dest_idx];
4526 dest_map = &dpr->rx_std_buffers[dest_idx];
4527 src_desc = &spr->rx_std[src_idx];
4528 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 break;
4530
4531 case RXD_OPAQUE_RING_JUMBO:
4532 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
Matt Carlsona3896162009-11-13 13:03:44 +00004533 dest_desc = &dpr->rx_jmb[dest_idx].std;
4534 dest_map = &dpr->rx_jmb_buffers[dest_idx];
4535 src_desc = &spr->rx_jmb[src_idx].std;
4536 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 break;
4538
4539 default:
4540 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542
4543 dest_map->skb = src_map->skb;
4544 pci_unmap_addr_set(dest_map, mapping,
4545 pci_unmap_addr(src_map, mapping));
4546 dest_desc->addr_hi = src_desc->addr_hi;
4547 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00004548
4549 /* Ensure that the update to the skb happens after the physical
4550 * addresses have been transferred to the new BD location.
4551 */
4552 smp_wmb();
4553
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 src_map->skb = NULL;
4555}
4556
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557/* The RX ring scheme is composed of multiple rings which post fresh
4558 * buffers to the chip, and one special ring the chip uses to report
4559 * status back to the host.
4560 *
4561 * The special ring reports the status of received packets to the
4562 * host. The chip does not write into the original descriptor the
4563 * RX buffer was obtained from. The chip simply takes the original
4564 * descriptor as provided by the host, updates the status and length
4565 * field, then writes this into the next status ring entry.
4566 *
4567 * Each ring the host uses to post buffers to the chip is described
4568 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
4569 * it is first placed into the on-chip ram. When the packet's length
4570 * is known, it walks down the TG3_BDINFO entries to select the ring.
4571 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
4572 * which is within the range of the new packet's length is chosen.
4573 *
4574 * The "separate ring for rx status" scheme may sound queer, but it makes
4575 * sense from a cache coherency perspective. If only the host writes
4576 * to the buffer post rings, and only the chip writes to the rx status
4577 * rings, then cache lines never move beyond shared-modified state.
4578 * If both the host and chip were to write into the same ring, cache line
4579 * eviction could occur since both entities want it in an exclusive state.
4580 */
Matt Carlson17375d22009-08-28 14:02:18 +00004581static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582{
Matt Carlson17375d22009-08-28 14:02:18 +00004583 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07004584 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00004585 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00004586 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07004587 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 int received;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004589 struct tg3_rx_prodring_set *tpr = tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004591 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 /*
4593 * We need to order the read of hw_idx and the read of
4594 * the opaque cookie.
4595 */
4596 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 work_mask = 0;
4598 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00004599 std_prod_idx = tpr->rx_std_prod_idx;
4600 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00004602 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00004603 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 unsigned int len;
4605 struct sk_buff *skb;
4606 dma_addr_t dma_addr;
4607 u32 opaque_key, desc_idx, *post_ptr;
4608
4609 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
4610 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
4611 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004612 ri = &tp->prodring[0].rx_std_buffers[desc_idx];
Matt Carlson21f581a2009-08-28 14:00:25 +00004613 dma_addr = pci_unmap_addr(ri, mapping);
4614 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00004615 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07004616 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004618 ri = &tp->prodring[0].rx_jmb_buffers[desc_idx];
Matt Carlson21f581a2009-08-28 14:00:25 +00004619 dma_addr = pci_unmap_addr(ri, mapping);
4620 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00004621 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00004622 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
4625 work_mask |= opaque_key;
4626
4627 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
4628 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
4629 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00004630 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 desc_idx, *post_ptr);
4632 drop_it_no_recycle:
4633 /* Other statistics kept track of by card. */
4634 tp->net_stats.rx_dropped++;
4635 goto next_pkt;
4636 }
4637
Matt Carlsonad829262008-11-21 17:16:16 -08004638 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
4639 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640
Joe Perches8e95a202009-12-03 07:58:21 +00004641 if (len > RX_COPY_THRESHOLD &&
4642 tp->rx_offset == NET_IP_ALIGN) {
4643 /* rx_offset will likely not equal NET_IP_ALIGN
4644 * if this is a 5701 card running in PCI-X mode
4645 * [see tg3_get_invariants()]
4646 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 int skb_size;
4648
Matt Carlson86b21e52009-11-13 13:03:45 +00004649 skb_size = tg3_alloc_rx_skb(tp, tpr, opaque_key,
Matt Carlsonafc081f2009-11-13 13:03:43 +00004650 *post_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 if (skb_size < 0)
4652 goto drop_it;
4653
Matt Carlson287be122009-08-28 13:58:46 +00004654 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 PCI_DMA_FROMDEVICE);
4656
Matt Carlson61e800c2010-02-17 15:16:54 +00004657 /* Ensure that the update to the skb happens
4658 * after the usage of the old DMA mapping.
4659 */
4660 smp_wmb();
4661
4662 ri->skb = NULL;
4663
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 skb_put(skb, len);
4665 } else {
4666 struct sk_buff *copy_skb;
4667
Matt Carlsona3896162009-11-13 13:03:44 +00004668 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 desc_idx, *post_ptr);
4670
Matt Carlsonad829262008-11-21 17:16:16 -08004671 copy_skb = netdev_alloc_skb(tp->dev,
4672 len + TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 if (copy_skb == NULL)
4674 goto drop_it_no_recycle;
4675
Matt Carlsonad829262008-11-21 17:16:16 -08004676 skb_reserve(copy_skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 skb_put(copy_skb, len);
4678 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03004679 skb_copy_from_linear_data(skb, copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
4681
4682 /* We'll reuse the original ring buffer. */
4683 skb = copy_skb;
4684 }
4685
4686 if ((tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) &&
4687 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
4688 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
4689 >> RXD_TCPCSUM_SHIFT) == 0xffff))
4690 skb->ip_summed = CHECKSUM_UNNECESSARY;
4691 else
4692 skb->ip_summed = CHECKSUM_NONE;
4693
4694 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00004695
4696 if (len > (tp->dev->mtu + ETH_HLEN) &&
4697 skb->protocol != htons(ETH_P_8021Q)) {
4698 dev_kfree_skb(skb);
4699 goto next_pkt;
4700 }
4701
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702#if TG3_VLAN_TAG_USED
4703 if (tp->vlgrp != NULL &&
4704 desc->type_flags & RXD_FLAG_VLAN) {
Matt Carlson17375d22009-08-28 14:02:18 +00004705 vlan_gro_receive(&tnapi->napi, tp->vlgrp,
Matt Carlson8ef04422009-08-28 14:01:37 +00004706 desc->err_vlan & RXD_VLAN_MASK, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 } else
4708#endif
Matt Carlson17375d22009-08-28 14:02:18 +00004709 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 received++;
4712 budget--;
4713
4714next_pkt:
4715 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07004716
4717 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson86cfe4f2010-01-12 10:11:37 +00004718 tpr->rx_std_prod_idx = std_prod_idx % TG3_RX_RING_SIZE;
4719 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
4720 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07004721 work_mask &= ~RXD_OPAQUE_RING_STD;
4722 rx_std_posted = 0;
4723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07004725 sw_idx++;
Eric Dumazet6b31a512007-02-06 13:29:21 -08004726 sw_idx &= (TG3_RX_RCB_RING_SIZE(tp) - 1);
Michael Chan52f6d692005-04-25 15:14:32 -07004727
4728 /* Refresh hw_idx to see if there is new work */
4729 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004730 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07004731 rmb();
4732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 }
4734
4735 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00004736 tnapi->rx_rcb_ptr = sw_idx;
4737 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738
4739 /* Refill RX ring(s). */
Matt Carlsone4af1af2010-02-12 14:47:05 +00004740 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004741 if (work_mask & RXD_OPAQUE_RING_STD) {
4742 tpr->rx_std_prod_idx = std_prod_idx % TG3_RX_RING_SIZE;
4743 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
4744 tpr->rx_std_prod_idx);
4745 }
4746 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
4747 tpr->rx_jmb_prod_idx = jmb_prod_idx %
4748 TG3_RX_JUMBO_RING_SIZE;
4749 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
4750 tpr->rx_jmb_prod_idx);
4751 }
4752 mmiowb();
4753 } else if (work_mask) {
4754 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
4755 * updated before the producer indices can be updated.
4756 */
4757 smp_wmb();
4758
Matt Carlson43619352009-11-13 13:03:47 +00004759 tpr->rx_std_prod_idx = std_prod_idx % TG3_RX_RING_SIZE;
Matt Carlson43619352009-11-13 13:03:47 +00004760 tpr->rx_jmb_prod_idx = jmb_prod_idx % TG3_RX_JUMBO_RING_SIZE;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004761
Matt Carlsone4af1af2010-02-12 14:47:05 +00004762 if (tnapi != &tp->napi[1])
4763 napi_schedule(&tp->napi[1].napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765
4766 return received;
4767}
4768
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004769static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 /* handle link change and other phy events */
4772 if (!(tp->tg3_flags &
4773 (TG3_FLAG_USE_LINKCHG_REG |
4774 TG3_FLAG_POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004775 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
4776
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 if (sblk->status & SD_STATUS_LINK_CHG) {
4778 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004779 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07004780 spin_lock(&tp->lock);
Matt Carlsondd477002008-05-25 23:45:58 -07004781 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
4782 tw32_f(MAC_STATUS,
4783 (MAC_STATUS_SYNC_CHANGED |
4784 MAC_STATUS_CFG_CHANGED |
4785 MAC_STATUS_MI_COMPLETION |
4786 MAC_STATUS_LNKSTATE_CHANGED));
4787 udelay(40);
4788 } else
4789 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07004790 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791 }
4792 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004793}
4794
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004795static int tg3_rx_prodring_xfer(struct tg3 *tp,
4796 struct tg3_rx_prodring_set *dpr,
4797 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004798{
4799 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004800 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004801
4802 while (1) {
4803 src_prod_idx = spr->rx_std_prod_idx;
4804
4805 /* Make sure updates to the rx_std_buffers[] entries and the
4806 * standard producer index are seen in the correct order.
4807 */
4808 smp_rmb();
4809
4810 if (spr->rx_std_cons_idx == src_prod_idx)
4811 break;
4812
4813 if (spr->rx_std_cons_idx < src_prod_idx)
4814 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
4815 else
4816 cpycnt = TG3_RX_RING_SIZE - spr->rx_std_cons_idx;
4817
4818 cpycnt = min(cpycnt, TG3_RX_RING_SIZE - dpr->rx_std_prod_idx);
4819
4820 si = spr->rx_std_cons_idx;
4821 di = dpr->rx_std_prod_idx;
4822
Matt Carlsone92967b2010-02-12 14:47:06 +00004823 for (i = di; i < di + cpycnt; i++) {
4824 if (dpr->rx_std_buffers[i].skb) {
4825 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004826 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00004827 break;
4828 }
4829 }
4830
4831 if (!cpycnt)
4832 break;
4833
4834 /* Ensure that updates to the rx_std_buffers ring and the
4835 * shadowed hardware producer ring from tg3_recycle_skb() are
4836 * ordered correctly WRT the skb check above.
4837 */
4838 smp_rmb();
4839
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004840 memcpy(&dpr->rx_std_buffers[di],
4841 &spr->rx_std_buffers[si],
4842 cpycnt * sizeof(struct ring_info));
4843
4844 for (i = 0; i < cpycnt; i++, di++, si++) {
4845 struct tg3_rx_buffer_desc *sbd, *dbd;
4846 sbd = &spr->rx_std[si];
4847 dbd = &dpr->rx_std[di];
4848 dbd->addr_hi = sbd->addr_hi;
4849 dbd->addr_lo = sbd->addr_lo;
4850 }
4851
4852 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) %
4853 TG3_RX_RING_SIZE;
4854 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) %
4855 TG3_RX_RING_SIZE;
4856 }
4857
4858 while (1) {
4859 src_prod_idx = spr->rx_jmb_prod_idx;
4860
4861 /* Make sure updates to the rx_jmb_buffers[] entries and
4862 * the jumbo producer index are seen in the correct order.
4863 */
4864 smp_rmb();
4865
4866 if (spr->rx_jmb_cons_idx == src_prod_idx)
4867 break;
4868
4869 if (spr->rx_jmb_cons_idx < src_prod_idx)
4870 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
4871 else
4872 cpycnt = TG3_RX_JUMBO_RING_SIZE - spr->rx_jmb_cons_idx;
4873
4874 cpycnt = min(cpycnt,
4875 TG3_RX_JUMBO_RING_SIZE - dpr->rx_jmb_prod_idx);
4876
4877 si = spr->rx_jmb_cons_idx;
4878 di = dpr->rx_jmb_prod_idx;
4879
Matt Carlsone92967b2010-02-12 14:47:06 +00004880 for (i = di; i < di + cpycnt; i++) {
4881 if (dpr->rx_jmb_buffers[i].skb) {
4882 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004883 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00004884 break;
4885 }
4886 }
4887
4888 if (!cpycnt)
4889 break;
4890
4891 /* Ensure that updates to the rx_jmb_buffers ring and the
4892 * shadowed hardware producer ring from tg3_recycle_skb() are
4893 * ordered correctly WRT the skb check above.
4894 */
4895 smp_rmb();
4896
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004897 memcpy(&dpr->rx_jmb_buffers[di],
4898 &spr->rx_jmb_buffers[si],
4899 cpycnt * sizeof(struct ring_info));
4900
4901 for (i = 0; i < cpycnt; i++, di++, si++) {
4902 struct tg3_rx_buffer_desc *sbd, *dbd;
4903 sbd = &spr->rx_jmb[si].std;
4904 dbd = &dpr->rx_jmb[di].std;
4905 dbd->addr_hi = sbd->addr_hi;
4906 dbd->addr_lo = sbd->addr_lo;
4907 }
4908
4909 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) %
4910 TG3_RX_JUMBO_RING_SIZE;
4911 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) %
4912 TG3_RX_JUMBO_RING_SIZE;
4913 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004914
4915 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004916}
4917
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004918static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
4919{
4920 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
4922 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004923 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00004924 tg3_tx(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07004925 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
Michael Chan4fd7ab52007-10-12 01:39:50 -07004926 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 }
4928
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929 /* run RX thread, within the bounds set by NAPI.
4930 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004931 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004933 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00004934 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004936 if ((tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00004937 struct tg3_rx_prodring_set *dpr = &tp->prodring[0];
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004938 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00004939 u32 std_prod_idx = dpr->rx_std_prod_idx;
4940 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004941
Matt Carlsone4af1af2010-02-12 14:47:05 +00004942 for (i = 1; i < tp->irq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004943 err |= tg3_rx_prodring_xfer(tp, dpr,
4944 tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004945
4946 wmb();
4947
Matt Carlsone4af1af2010-02-12 14:47:05 +00004948 if (std_prod_idx != dpr->rx_std_prod_idx)
4949 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
4950 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004951
Matt Carlsone4af1af2010-02-12 14:47:05 +00004952 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
4953 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
4954 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004955
4956 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004957
4958 if (err)
4959 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004960 }
4961
David S. Miller6f535762007-10-11 18:08:29 -07004962 return work_done;
4963}
David S. Millerf7383c22005-05-18 22:50:53 -07004964
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004965static int tg3_poll_msix(struct napi_struct *napi, int budget)
4966{
4967 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
4968 struct tg3 *tp = tnapi->tp;
4969 int work_done = 0;
4970 struct tg3_hw_status *sblk = tnapi->hw_status;
4971
4972 while (1) {
4973 work_done = tg3_poll_work(tnapi, work_done, budget);
4974
4975 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
4976 goto tx_recovery;
4977
4978 if (unlikely(work_done >= budget))
4979 break;
4980
4981 /* tp->last_tag is used in tg3_restart_ints() below
4982 * to tell the hw how much work has been processed,
4983 * so we must read it before checking for more work.
4984 */
4985 tnapi->last_tag = sblk->status_tag;
4986 tnapi->last_irq_tag = tnapi->last_tag;
4987 rmb();
4988
4989 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00004990 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
4991 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004992 napi_complete(napi);
4993 /* Reenable interrupts. */
4994 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
4995 mmiowb();
4996 break;
4997 }
4998 }
4999
5000 return work_done;
5001
5002tx_recovery:
5003 /* work_done is guaranteed to be less than budget. */
5004 napi_complete(napi);
5005 schedule_work(&tp->reset_task);
5006 return work_done;
5007}
5008
David S. Miller6f535762007-10-11 18:08:29 -07005009static int tg3_poll(struct napi_struct *napi, int budget)
5010{
Matt Carlson8ef04422009-08-28 14:01:37 +00005011 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5012 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07005013 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00005014 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07005015
5016 while (1) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005017 tg3_poll_link(tp);
5018
Matt Carlson17375d22009-08-28 14:02:18 +00005019 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07005020
5021 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
5022 goto tx_recovery;
5023
5024 if (unlikely(work_done >= budget))
5025 break;
5026
Michael Chan4fd7ab52007-10-12 01:39:50 -07005027 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
Matt Carlson17375d22009-08-28 14:02:18 +00005028 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07005029 * to tell the hw how much work has been processed,
5030 * so we must read it before checking for more work.
5031 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005032 tnapi->last_tag = sblk->status_tag;
5033 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07005034 rmb();
5035 } else
5036 sblk->status &= ~SD_STATUS_UPDATED;
5037
Matt Carlson17375d22009-08-28 14:02:18 +00005038 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005039 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00005040 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07005041 break;
5042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 }
5044
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005045 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07005046
5047tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07005048 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08005049 napi_complete(napi);
David S. Miller6f535762007-10-11 18:08:29 -07005050 schedule_work(&tp->reset_task);
Michael Chan4fd7ab52007-10-12 01:39:50 -07005051 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052}
5053
David S. Millerf47c11e2005-06-24 20:18:35 -07005054static void tg3_irq_quiesce(struct tg3 *tp)
5055{
Matt Carlson4f125f42009-09-01 12:55:02 +00005056 int i;
5057
David S. Millerf47c11e2005-06-24 20:18:35 -07005058 BUG_ON(tp->irq_sync);
5059
5060 tp->irq_sync = 1;
5061 smp_mb();
5062
Matt Carlson4f125f42009-09-01 12:55:02 +00005063 for (i = 0; i < tp->irq_cnt; i++)
5064 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07005065}
5066
5067static inline int tg3_irq_sync(struct tg3 *tp)
5068{
5069 return tp->irq_sync;
5070}
5071
5072/* Fully shutdown all tg3 driver activity elsewhere in the system.
5073 * If irq_sync is non-zero, then the IRQ handler must be synchronized
5074 * with as well. Most of the time, this is not necessary except when
5075 * shutting down the device.
5076 */
5077static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
5078{
Michael Chan46966542007-07-11 19:47:19 -07005079 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07005080 if (irq_sync)
5081 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005082}
5083
5084static inline void tg3_full_unlock(struct tg3 *tp)
5085{
David S. Millerf47c11e2005-06-24 20:18:35 -07005086 spin_unlock_bh(&tp->lock);
5087}
5088
Michael Chanfcfa0a32006-03-20 22:28:41 -08005089/* One-shot MSI handler - Chip automatically disables interrupt
5090 * after sending MSI so driver doesn't have to do it.
5091 */
David Howells7d12e782006-10-05 14:55:46 +01005092static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08005093{
Matt Carlson09943a12009-08-28 14:01:57 +00005094 struct tg3_napi *tnapi = dev_id;
5095 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08005096
Matt Carlson898a56f2009-08-28 14:02:40 +00005097 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005098 if (tnapi->rx_rcb)
5099 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005100
5101 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005102 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005103
5104 return IRQ_HANDLED;
5105}
5106
Michael Chan88b06bc22005-04-21 17:13:25 -07005107/* MSI ISR - No need to check for interrupt sharing and no need to
5108 * flush status block and interrupt mailbox. PCI ordering rules
5109 * guarantee that MSI will arrive after the status block.
5110 */
David Howells7d12e782006-10-05 14:55:46 +01005111static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07005112{
Matt Carlson09943a12009-08-28 14:01:57 +00005113 struct tg3_napi *tnapi = dev_id;
5114 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07005115
Matt Carlson898a56f2009-08-28 14:02:40 +00005116 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005117 if (tnapi->rx_rcb)
5118 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07005119 /*
David S. Millerfac9b832005-05-18 22:46:34 -07005120 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07005121 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07005122 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07005123 * NIC to stop sending us irqs, engaging "in-intr-handler"
5124 * event coalescing.
5125 */
5126 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07005127 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005128 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07005129
Michael Chan88b06bc22005-04-21 17:13:25 -07005130 return IRQ_RETVAL(1);
5131}
5132
David Howells7d12e782006-10-05 14:55:46 +01005133static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134{
Matt Carlson09943a12009-08-28 14:01:57 +00005135 struct tg3_napi *tnapi = dev_id;
5136 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005137 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 unsigned int handled = 1;
5139
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140 /* In INTx mode, it is possible for the interrupt to arrive at
5141 * the CPU before the status block posted prior to the interrupt.
5142 * Reading the PCI State register will confirm whether the
5143 * interrupt is ours and will flush the status block.
5144 */
Michael Chand18edcb2007-03-24 20:57:11 -07005145 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
5146 if ((tp->tg3_flags & TG3_FLAG_CHIP_RESETTING) ||
5147 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5148 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005149 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07005150 }
Michael Chand18edcb2007-03-24 20:57:11 -07005151 }
5152
5153 /*
5154 * Writing any value to intr-mbox-0 clears PCI INTA# and
5155 * chip-internal interrupt pending events.
5156 * Writing non-zero to intr-mbox-0 additional tells the
5157 * NIC to stop sending us irqs, engaging "in-intr-handler"
5158 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005159 *
5160 * Flush the mailbox to de-assert the IRQ immediately to prevent
5161 * spurious interrupts. The flush impacts performance but
5162 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005163 */
Michael Chanc04cb342007-05-07 00:26:15 -07005164 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07005165 if (tg3_irq_sync(tp))
5166 goto out;
5167 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00005168 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00005169 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00005170 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07005171 } else {
5172 /* No work, shared interrupt perhaps? re-enable
5173 * interrupts, and flush that PCI write
5174 */
5175 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
5176 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07005177 }
David S. Millerf47c11e2005-06-24 20:18:35 -07005178out:
David S. Millerfac9b832005-05-18 22:46:34 -07005179 return IRQ_RETVAL(handled);
5180}
5181
David Howells7d12e782006-10-05 14:55:46 +01005182static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07005183{
Matt Carlson09943a12009-08-28 14:01:57 +00005184 struct tg3_napi *tnapi = dev_id;
5185 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005186 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07005187 unsigned int handled = 1;
5188
David S. Millerfac9b832005-05-18 22:46:34 -07005189 /* In INTx mode, it is possible for the interrupt to arrive at
5190 * the CPU before the status block posted prior to the interrupt.
5191 * Reading the PCI State register will confirm whether the
5192 * interrupt is ours and will flush the status block.
5193 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005194 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Michael Chand18edcb2007-03-24 20:57:11 -07005195 if ((tp->tg3_flags & TG3_FLAG_CHIP_RESETTING) ||
5196 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5197 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005198 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 }
Michael Chand18edcb2007-03-24 20:57:11 -07005200 }
5201
5202 /*
5203 * writing any value to intr-mbox-0 clears PCI INTA# and
5204 * chip-internal interrupt pending events.
5205 * writing non-zero to intr-mbox-0 additional tells the
5206 * NIC to stop sending us irqs, engaging "in-intr-handler"
5207 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005208 *
5209 * Flush the mailbox to de-assert the IRQ immediately to prevent
5210 * spurious interrupts. The flush impacts performance but
5211 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005212 */
Michael Chanc04cb342007-05-07 00:26:15 -07005213 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00005214
5215 /*
5216 * In a shared interrupt configuration, sometimes other devices'
5217 * interrupts will scream. We record the current status tag here
5218 * so that the above check can report that the screaming interrupts
5219 * are unhandled. Eventually they will be silenced.
5220 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005221 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00005222
Michael Chand18edcb2007-03-24 20:57:11 -07005223 if (tg3_irq_sync(tp))
5224 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00005225
Matt Carlson72334482009-08-28 14:03:01 +00005226 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00005227
Matt Carlson09943a12009-08-28 14:01:57 +00005228 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00005229
David S. Millerf47c11e2005-06-24 20:18:35 -07005230out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231 return IRQ_RETVAL(handled);
5232}
5233
Michael Chan79381092005-04-21 17:13:59 -07005234/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01005235static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07005236{
Matt Carlson09943a12009-08-28 14:01:57 +00005237 struct tg3_napi *tnapi = dev_id;
5238 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005239 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07005240
Michael Chanf9804dd2005-09-27 12:13:10 -07005241 if ((sblk->status & SD_STATUS_UPDATED) ||
5242 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07005243 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07005244 return IRQ_RETVAL(1);
5245 }
5246 return IRQ_RETVAL(0);
5247}
5248
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07005249static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07005250static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
Michael Chanb9ec6c12006-07-25 16:37:27 -07005252/* Restart hardware after configuration changes, self-test, etc.
5253 * Invoked with tp->lock held.
5254 */
5255static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07005256 __releases(tp->lock)
5257 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005258{
5259 int err;
5260
5261 err = tg3_init_hw(tp, reset_phy);
5262 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00005263 netdev_err(tp->dev, "Failed to re-initialize device, aborting\n");
Michael Chanb9ec6c12006-07-25 16:37:27 -07005264 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
5265 tg3_full_unlock(tp);
5266 del_timer_sync(&tp->timer);
5267 tp->irq_sync = 0;
Matt Carlsonfed97812009-09-01 13:10:19 +00005268 tg3_napi_enable(tp);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005269 dev_close(tp->dev);
5270 tg3_full_lock(tp, 0);
5271 }
5272 return err;
5273}
5274
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275#ifdef CONFIG_NET_POLL_CONTROLLER
5276static void tg3_poll_controller(struct net_device *dev)
5277{
Matt Carlson4f125f42009-09-01 12:55:02 +00005278 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07005279 struct tg3 *tp = netdev_priv(dev);
5280
Matt Carlson4f125f42009-09-01 12:55:02 +00005281 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00005282 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283}
5284#endif
5285
David Howellsc4028952006-11-22 14:57:56 +00005286static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287{
David Howellsc4028952006-11-22 14:57:56 +00005288 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005289 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 unsigned int restart_timer;
5291
Michael Chan7faa0062006-02-02 17:29:28 -08005292 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08005293
5294 if (!netif_running(tp->dev)) {
Michael Chan7faa0062006-02-02 17:29:28 -08005295 tg3_full_unlock(tp);
5296 return;
5297 }
5298
5299 tg3_full_unlock(tp);
5300
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005301 tg3_phy_stop(tp);
5302
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 tg3_netif_stop(tp);
5304
David S. Millerf47c11e2005-06-24 20:18:35 -07005305 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306
5307 restart_timer = tp->tg3_flags2 & TG3_FLG2_RESTART_TIMER;
5308 tp->tg3_flags2 &= ~TG3_FLG2_RESTART_TIMER;
5309
Michael Chandf3e6542006-05-26 17:48:07 -07005310 if (tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING) {
5311 tp->write32_tx_mbox = tg3_write32_tx_mbox;
5312 tp->write32_rx_mbox = tg3_write_flush_reg32;
5313 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
5314 tp->tg3_flags &= ~TG3_FLAG_TX_RECOVERY_PENDING;
5315 }
5316
Michael Chan944d9802005-05-29 14:57:48 -07005317 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005318 err = tg3_init_hw(tp, 1);
5319 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005320 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
5322 tg3_netif_start(tp);
5323
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 if (restart_timer)
5325 mod_timer(&tp->timer, jiffies + 1);
Michael Chan7faa0062006-02-02 17:29:28 -08005326
Michael Chanb9ec6c12006-07-25 16:37:27 -07005327out:
Michael Chan7faa0062006-02-02 17:29:28 -08005328 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005329
5330 if (!err)
5331 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332}
5333
Michael Chanb0408752007-02-13 12:18:30 -08005334static void tg3_dump_short_state(struct tg3 *tp)
5335{
Joe Perches05dbe002010-02-17 19:44:19 +00005336 netdev_err(tp->dev, "DEBUG: MAC_TX_STATUS[%08x] MAC_RX_STATUS[%08x]\n",
5337 tr32(MAC_TX_STATUS), tr32(MAC_RX_STATUS));
5338 netdev_err(tp->dev, "DEBUG: RDMAC_STATUS[%08x] WDMAC_STATUS[%08x]\n",
5339 tr32(RDMAC_STATUS), tr32(WDMAC_STATUS));
Michael Chanb0408752007-02-13 12:18:30 -08005340}
5341
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342static void tg3_tx_timeout(struct net_device *dev)
5343{
5344 struct tg3 *tp = netdev_priv(dev);
5345
Michael Chanb0408752007-02-13 12:18:30 -08005346 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00005347 netdev_err(dev, "transmit timed out, resetting\n");
Michael Chanb0408752007-02-13 12:18:30 -08005348 tg3_dump_short_state(tp);
5349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
5351 schedule_work(&tp->reset_task);
5352}
5353
Michael Chanc58ec932005-09-17 00:46:27 -07005354/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
5355static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
5356{
5357 u32 base = (u32) mapping & 0xffffffff;
5358
5359 return ((base > 0xffffdcc0) &&
5360 (base + len + 8 < base));
5361}
5362
Michael Chan72f2afb2006-03-06 19:28:35 -08005363/* Test for DMA addresses > 40-bit */
5364static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
5365 int len)
5366{
5367#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Michael Chan6728a8e2006-03-27 23:16:49 -08005368 if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG)
Yang Hongyang50cf1562009-04-06 19:01:14 -07005369 return (((u64) mapping + len) > DMA_BIT_MASK(40));
Michael Chan72f2afb2006-03-06 19:28:35 -08005370 return 0;
5371#else
5372 return 0;
5373#endif
5374}
5375
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005376static void tg3_set_txd(struct tg3_napi *, int, dma_addr_t, int, u32, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377
Michael Chan72f2afb2006-03-06 19:28:35 -08005378/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005379static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
5380 struct sk_buff *skb, u32 last_plus_one,
5381 u32 *start, u32 base_flags, u32 mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382{
Matt Carlson24f4efd2009-11-13 13:03:35 +00005383 struct tg3 *tp = tnapi->tp;
Matt Carlson41588ba2008-04-19 18:12:33 -07005384 struct sk_buff *new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07005385 dma_addr_t new_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386 u32 entry = *start;
Michael Chanc58ec932005-09-17 00:46:27 -07005387 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388
Matt Carlson41588ba2008-04-19 18:12:33 -07005389 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
5390 new_skb = skb_copy(skb, GFP_ATOMIC);
5391 else {
5392 int more_headroom = 4 - ((unsigned long)skb->data & 3);
5393
5394 new_skb = skb_copy_expand(skb,
5395 skb_headroom(skb) + more_headroom,
5396 skb_tailroom(skb), GFP_ATOMIC);
5397 }
5398
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07005400 ret = -1;
5401 } else {
5402 /* New SKB is guaranteed to be linear. */
5403 entry = *start;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005404 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
5405 PCI_DMA_TODEVICE);
5406 /* Make sure the mapping succeeded */
5407 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
5408 ret = -1;
5409 dev_kfree_skb(new_skb);
5410 new_skb = NULL;
David S. Miller90079ce2008-09-11 04:52:51 -07005411
Michael Chanc58ec932005-09-17 00:46:27 -07005412 /* Make sure new skb does not cross any 4G boundaries.
5413 * Drop the packet if it does.
5414 */
Alexander Duyckf4188d82009-12-02 16:48:38 +00005415 } else if ((tp->tg3_flags3 & TG3_FLG3_4G_DMA_BNDRY_BUG) &&
5416 tg3_4g_overflow_test(new_addr, new_skb->len)) {
5417 pci_unmap_single(tp->pdev, new_addr, new_skb->len,
5418 PCI_DMA_TODEVICE);
Michael Chanc58ec932005-09-17 00:46:27 -07005419 ret = -1;
5420 dev_kfree_skb(new_skb);
5421 new_skb = NULL;
5422 } else {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005423 tg3_set_txd(tnapi, entry, new_addr, new_skb->len,
Michael Chanc58ec932005-09-17 00:46:27 -07005424 base_flags, 1 | (mss << 1));
5425 *start = NEXT_TX(entry);
5426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 }
5428
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 /* Now clean up the sw ring entries. */
5430 i = 0;
5431 while (entry != last_plus_one) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00005432 int len;
5433
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005434 if (i == 0)
Alexander Duyckf4188d82009-12-02 16:48:38 +00005435 len = skb_headlen(skb);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005436 else
Alexander Duyckf4188d82009-12-02 16:48:38 +00005437 len = skb_shinfo(skb)->frags[i-1].size;
5438
5439 pci_unmap_single(tp->pdev,
5440 pci_unmap_addr(&tnapi->tx_buffers[entry],
5441 mapping),
5442 len, PCI_DMA_TODEVICE);
5443 if (i == 0) {
5444 tnapi->tx_buffers[entry].skb = new_skb;
5445 pci_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
5446 new_addr);
5447 } else {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005448 tnapi->tx_buffers[entry].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 entry = NEXT_TX(entry);
5451 i++;
5452 }
5453
5454 dev_kfree_skb(skb);
5455
Michael Chanc58ec932005-09-17 00:46:27 -07005456 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457}
5458
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005459static void tg3_set_txd(struct tg3_napi *tnapi, int entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 dma_addr_t mapping, int len, u32 flags,
5461 u32 mss_and_is_end)
5462{
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005463 struct tg3_tx_buffer_desc *txd = &tnapi->tx_ring[entry];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464 int is_end = (mss_and_is_end & 0x1);
5465 u32 mss = (mss_and_is_end >> 1);
5466 u32 vlan_tag = 0;
5467
5468 if (is_end)
5469 flags |= TXD_FLAG_END;
5470 if (flags & TXD_FLAG_VLAN) {
5471 vlan_tag = flags >> 16;
5472 flags &= 0xffff;
5473 }
5474 vlan_tag |= (mss << TXD_MSS_SHIFT);
5475
5476 txd->addr_hi = ((u64) mapping >> 32);
5477 txd->addr_lo = ((u64) mapping & 0xffffffff);
5478 txd->len_flags = (len << TXD_LEN_SHIFT) | flags;
5479 txd->vlan_tag = vlan_tag << TXD_VLAN_TAG_SHIFT;
5480}
5481
Michael Chan5a6f3072006-03-20 22:28:05 -08005482/* hard_start_xmit for devices that don't have any bugs and
Matt Carlsone849cdc2009-11-13 13:03:38 +00005483 * support TG3_FLG2_HW_TSO_2 and TG3_FLG2_HW_TSO_3 only.
Michael Chan5a6f3072006-03-20 22:28:05 -08005484 */
Stephen Hemminger613573252009-08-31 19:50:58 +00005485static netdev_tx_t tg3_start_xmit(struct sk_buff *skb,
5486 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487{
5488 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489 u32 len, entry, base_flags, mss;
David S. Miller90079ce2008-09-11 04:52:51 -07005490 dma_addr_t mapping;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005491 struct tg3_napi *tnapi;
5492 struct netdev_queue *txq;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005493 unsigned int i, last;
5494
Michael Chan5a6f3072006-03-20 22:28:05 -08005495
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005496 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
5497 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Matt Carlson19cfaec2009-12-03 08:36:20 +00005498 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005499 tnapi++;
Michael Chan5a6f3072006-03-20 22:28:05 -08005500
Michael Chan00b70502006-06-17 21:58:45 -07005501 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005502 * and TX reclaim runs via tp->napi.poll inside of a software
Michael Chan5a6f3072006-03-20 22:28:05 -08005503 * interrupt. Furthermore, IRQ processing runs lockless so we have
5504 * no IRQ context deadlocks to worry about either. Rejoice!
5505 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005506 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005507 if (!netif_tx_queue_stopped(txq)) {
5508 netif_tx_stop_queue(txq);
Michael Chan5a6f3072006-03-20 22:28:05 -08005509
5510 /* This is a hard error, log it. */
Joe Perches05dbe002010-02-17 19:44:19 +00005511 netdev_err(dev, "BUG! Tx Ring full when queue awake!\n");
Michael Chan5a6f3072006-03-20 22:28:05 -08005512 }
Michael Chan5a6f3072006-03-20 22:28:05 -08005513 return NETDEV_TX_BUSY;
5514 }
5515
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005516 entry = tnapi->tx_prod;
Michael Chan5a6f3072006-03-20 22:28:05 -08005517 base_flags = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08005518 mss = 0;
Matt Carlsonc13e3712007-05-05 11:50:04 -07005519 if ((mss = skb_shinfo(skb)->gso_size) != 0) {
Michael Chan5a6f3072006-03-20 22:28:05 -08005520 int tcp_opt_len, ip_tcp_len;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005521 u32 hdrlen;
Michael Chan5a6f3072006-03-20 22:28:05 -08005522
5523 if (skb_header_cloned(skb) &&
5524 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
5525 dev_kfree_skb(skb);
5526 goto out_unlock;
5527 }
5528
Michael Chanb0026622006-07-03 19:42:14 -07005529 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005530 hdrlen = skb_headlen(skb) - ETH_HLEN;
Michael Chanb0026622006-07-03 19:42:14 -07005531 else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005532 struct iphdr *iph = ip_hdr(skb);
5533
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07005534 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03005535 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Michael Chanb0026622006-07-03 19:42:14 -07005536
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005537 iph->check = 0;
5538 iph->tot_len = htons(mss + ip_tcp_len + tcp_opt_len);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005539 hdrlen = ip_tcp_len + tcp_opt_len;
Michael Chanb0026622006-07-03 19:42:14 -07005540 }
Michael Chan5a6f3072006-03-20 22:28:05 -08005541
Matt Carlsone849cdc2009-11-13 13:03:38 +00005542 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005543 mss |= (hdrlen & 0xc) << 12;
5544 if (hdrlen & 0x10)
5545 base_flags |= 0x00000010;
5546 base_flags |= (hdrlen & 0x3e0) << 5;
5547 } else
5548 mss |= hdrlen << 9;
5549
Michael Chan5a6f3072006-03-20 22:28:05 -08005550 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
5551 TXD_FLAG_CPU_POST_DMA);
5552
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005553 tcp_hdr(skb)->check = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08005554
Michael Chan5a6f3072006-03-20 22:28:05 -08005555 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07005556 else if (skb->ip_summed == CHECKSUM_PARTIAL)
Michael Chan5a6f3072006-03-20 22:28:05 -08005557 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Michael Chan5a6f3072006-03-20 22:28:05 -08005558#if TG3_VLAN_TAG_USED
5559 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
5560 base_flags |= (TXD_FLAG_VLAN |
5561 (vlan_tx_tag_get(skb) << 16));
5562#endif
5563
Alexander Duyckf4188d82009-12-02 16:48:38 +00005564 len = skb_headlen(skb);
5565
5566 /* Queue skb data, a.k.a. the main skb fragment. */
5567 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
5568 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07005569 dev_kfree_skb(skb);
5570 goto out_unlock;
5571 }
5572
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005573 tnapi->tx_buffers[entry].skb = skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005574 pci_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005575
Matt Carlsonb703df62009-12-03 08:36:21 +00005576 if ((tp->tg3_flags3 & TG3_FLG3_USE_JUMBO_BDFLAG) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005577 !mss && skb->len > ETH_DATA_LEN)
5578 base_flags |= TXD_FLAG_JMB_PKT;
5579
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005580 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Michael Chan5a6f3072006-03-20 22:28:05 -08005581 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
5582
5583 entry = NEXT_TX(entry);
5584
5585 /* Now loop through additional data fragments, and queue them. */
5586 if (skb_shinfo(skb)->nr_frags > 0) {
Michael Chan5a6f3072006-03-20 22:28:05 -08005587 last = skb_shinfo(skb)->nr_frags - 1;
5588 for (i = 0; i <= last; i++) {
5589 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5590
5591 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005592 mapping = pci_map_page(tp->pdev,
5593 frag->page,
5594 frag->page_offset,
5595 len, PCI_DMA_TODEVICE);
5596 if (pci_dma_mapping_error(tp->pdev, mapping))
5597 goto dma_error;
5598
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005599 tnapi->tx_buffers[entry].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005600 pci_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
5601 mapping);
Michael Chan5a6f3072006-03-20 22:28:05 -08005602
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005603 tg3_set_txd(tnapi, entry, mapping, len,
Michael Chan5a6f3072006-03-20 22:28:05 -08005604 base_flags, (i == last) | (mss << 1));
5605
5606 entry = NEXT_TX(entry);
5607 }
5608 }
5609
5610 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005611 tw32_tx_mbox(tnapi->prodmbox, entry);
Michael Chan5a6f3072006-03-20 22:28:05 -08005612
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005613 tnapi->tx_prod = entry;
5614 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005615 netif_tx_stop_queue(txq);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005616 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005617 netif_tx_wake_queue(txq);
Michael Chan5a6f3072006-03-20 22:28:05 -08005618 }
5619
5620out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00005621 mmiowb();
Michael Chan5a6f3072006-03-20 22:28:05 -08005622
5623 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005624
5625dma_error:
5626 last = i;
5627 entry = tnapi->tx_prod;
5628 tnapi->tx_buffers[entry].skb = NULL;
5629 pci_unmap_single(tp->pdev,
5630 pci_unmap_addr(&tnapi->tx_buffers[entry], mapping),
5631 skb_headlen(skb),
5632 PCI_DMA_TODEVICE);
5633 for (i = 0; i <= last; i++) {
5634 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5635 entry = NEXT_TX(entry);
5636
5637 pci_unmap_page(tp->pdev,
5638 pci_unmap_addr(&tnapi->tx_buffers[entry],
5639 mapping),
5640 frag->size, PCI_DMA_TODEVICE);
5641 }
5642
5643 dev_kfree_skb(skb);
5644 return NETDEV_TX_OK;
Michael Chan5a6f3072006-03-20 22:28:05 -08005645}
5646
Stephen Hemminger613573252009-08-31 19:50:58 +00005647static netdev_tx_t tg3_start_xmit_dma_bug(struct sk_buff *,
5648 struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07005649
5650/* Use GSO to workaround a rare TSO bug that may be triggered when the
5651 * TSO header is greater than 80 bytes.
5652 */
5653static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
5654{
5655 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005656 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07005657
5658 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005659 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07005660 netif_stop_queue(tp->dev);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005661 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08005662 return NETDEV_TX_BUSY;
5663
5664 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07005665 }
5666
5667 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07005668 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07005669 goto tg3_tso_bug_end;
5670
5671 do {
5672 nskb = segs;
5673 segs = segs->next;
5674 nskb->next = NULL;
5675 tg3_start_xmit_dma_bug(nskb, tp->dev);
5676 } while (segs);
5677
5678tg3_tso_bug_end:
5679 dev_kfree_skb(skb);
5680
5681 return NETDEV_TX_OK;
5682}
Michael Chan52c0fd82006-06-29 20:15:54 -07005683
Michael Chan5a6f3072006-03-20 22:28:05 -08005684/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
5685 * support TG3_FLG2_HW_TSO_1 or firmware TSO only.
5686 */
Stephen Hemminger613573252009-08-31 19:50:58 +00005687static netdev_tx_t tg3_start_xmit_dma_bug(struct sk_buff *skb,
5688 struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08005689{
5690 struct tg3 *tp = netdev_priv(dev);
Michael Chan5a6f3072006-03-20 22:28:05 -08005691 u32 len, entry, base_flags, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692 int would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07005693 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005694 struct tg3_napi *tnapi;
5695 struct netdev_queue *txq;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005696 unsigned int i, last;
5697
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698
Matt Carlson24f4efd2009-11-13 13:03:35 +00005699 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
5700 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Matt Carlson19cfaec2009-12-03 08:36:20 +00005701 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
Matt Carlson24f4efd2009-11-13 13:03:35 +00005702 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703
Michael Chan00b70502006-06-17 21:58:45 -07005704 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005705 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07005706 * interrupt. Furthermore, IRQ processing runs lockless so we have
5707 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005709 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00005710 if (!netif_tx_queue_stopped(txq)) {
5711 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08005712
5713 /* This is a hard error, log it. */
Joe Perches05dbe002010-02-17 19:44:19 +00005714 netdev_err(dev, "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08005715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716 return NETDEV_TX_BUSY;
5717 }
5718
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005719 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07005721 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005723
Matt Carlsonc13e3712007-05-05 11:50:04 -07005724 if ((mss = skb_shinfo(skb)->gso_size) != 0) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005725 struct iphdr *iph;
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005726 u32 tcp_opt_len, ip_tcp_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727
5728 if (skb_header_cloned(skb) &&
5729 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
5730 dev_kfree_skb(skb);
5731 goto out_unlock;
5732 }
5733
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07005734 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03005735 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736
Michael Chan52c0fd82006-06-29 20:15:54 -07005737 hdr_len = ip_tcp_len + tcp_opt_len;
5738 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Michael Chan7f62ad52007-02-20 23:25:40 -08005739 (tp->tg3_flags2 & TG3_FLG2_TSO_BUG))
Michael Chan52c0fd82006-06-29 20:15:54 -07005740 return (tg3_tso_bug(tp, skb));
5741
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
5743 TXD_FLAG_CPU_POST_DMA);
5744
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005745 iph = ip_hdr(skb);
5746 iph->check = 0;
5747 iph->tot_len = htons(mss + hdr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005749 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005751 } else
5752 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5753 iph->daddr, 0,
5754 IPPROTO_TCP,
5755 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756
Matt Carlson615774f2009-11-13 13:03:39 +00005757 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) {
5758 mss |= (hdr_len & 0xc) << 12;
5759 if (hdr_len & 0x10)
5760 base_flags |= 0x00000010;
5761 base_flags |= (hdr_len & 0x3e0) << 5;
5762 } else if (tp->tg3_flags2 & TG3_FLG2_HW_TSO_2)
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005763 mss |= hdr_len << 9;
5764 else if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_1) ||
5765 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005766 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767 int tsflags;
5768
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005769 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770 mss |= (tsflags << 11);
5771 }
5772 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005773 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774 int tsflags;
5775
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005776 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777 base_flags |= tsflags << 12;
5778 }
5779 }
5780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781#if TG3_VLAN_TAG_USED
5782 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
5783 base_flags |= (TXD_FLAG_VLAN |
5784 (vlan_tx_tag_get(skb) << 16));
5785#endif
5786
Matt Carlsonb703df62009-12-03 08:36:21 +00005787 if ((tp->tg3_flags3 & TG3_FLG3_USE_JUMBO_BDFLAG) &&
Matt Carlson615774f2009-11-13 13:03:39 +00005788 !mss && skb->len > ETH_DATA_LEN)
5789 base_flags |= TXD_FLAG_JMB_PKT;
5790
Alexander Duyckf4188d82009-12-02 16:48:38 +00005791 len = skb_headlen(skb);
5792
5793 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
5794 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07005795 dev_kfree_skb(skb);
5796 goto out_unlock;
5797 }
5798
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005799 tnapi->tx_buffers[entry].skb = skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005800 pci_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801
5802 would_hit_hwbug = 0;
5803
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005804 if ((tp->tg3_flags3 & TG3_FLG3_SHORT_DMA_BUG) && len <= 8)
5805 would_hit_hwbug = 1;
5806
Matt Carlson0e1406d2009-11-02 12:33:33 +00005807 if ((tp->tg3_flags3 & TG3_FLG3_4G_DMA_BNDRY_BUG) &&
5808 tg3_4g_overflow_test(mapping, len))
Matt Carlson41588ba2008-04-19 18:12:33 -07005809 would_hit_hwbug = 1;
Matt Carlson0e1406d2009-11-02 12:33:33 +00005810
5811 if ((tp->tg3_flags3 & TG3_FLG3_40BIT_DMA_LIMIT_BUG) &&
5812 tg3_40bit_overflow_test(tp, mapping, len))
5813 would_hit_hwbug = 1;
5814
5815 if (tp->tg3_flags3 & TG3_FLG3_5701_DMA_BUG)
Michael Chanc58ec932005-09-17 00:46:27 -07005816 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005818 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
5820
5821 entry = NEXT_TX(entry);
5822
5823 /* Now loop through additional data fragments, and queue them. */
5824 if (skb_shinfo(skb)->nr_frags > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825 last = skb_shinfo(skb)->nr_frags - 1;
5826 for (i = 0; i <= last; i++) {
5827 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5828
5829 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005830 mapping = pci_map_page(tp->pdev,
5831 frag->page,
5832 frag->page_offset,
5833 len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005835 tnapi->tx_buffers[entry].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005836 pci_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
5837 mapping);
5838 if (pci_dma_mapping_error(tp->pdev, mapping))
5839 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005841 if ((tp->tg3_flags3 & TG3_FLG3_SHORT_DMA_BUG) &&
5842 len <= 8)
5843 would_hit_hwbug = 1;
5844
Matt Carlson0e1406d2009-11-02 12:33:33 +00005845 if ((tp->tg3_flags3 & TG3_FLG3_4G_DMA_BNDRY_BUG) &&
5846 tg3_4g_overflow_test(mapping, len))
Michael Chanc58ec932005-09-17 00:46:27 -07005847 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
Matt Carlson0e1406d2009-11-02 12:33:33 +00005849 if ((tp->tg3_flags3 & TG3_FLG3_40BIT_DMA_LIMIT_BUG) &&
5850 tg3_40bit_overflow_test(tp, mapping, len))
Michael Chan72f2afb2006-03-06 19:28:35 -08005851 would_hit_hwbug = 1;
5852
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005854 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855 base_flags, (i == last)|(mss << 1));
5856 else
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005857 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858 base_flags, (i == last));
5859
5860 entry = NEXT_TX(entry);
5861 }
5862 }
5863
5864 if (would_hit_hwbug) {
5865 u32 last_plus_one = entry;
5866 u32 start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867
Michael Chanc58ec932005-09-17 00:46:27 -07005868 start = entry - 1 - skb_shinfo(skb)->nr_frags;
5869 start &= (TG3_TX_RING_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870
5871 /* If the workaround fails due to memory/mapping
5872 * failure, silently drop this packet.
5873 */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005874 if (tigon3_dma_hwbug_workaround(tnapi, skb, last_plus_one,
Michael Chanc58ec932005-09-17 00:46:27 -07005875 &start, base_flags, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876 goto out_unlock;
5877
5878 entry = start;
5879 }
5880
5881 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005882 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005884 tnapi->tx_prod = entry;
5885 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00005886 netif_tx_stop_queue(txq);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005887 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00005888 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07005889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890
5891out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00005892 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893
5894 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005895
5896dma_error:
5897 last = i;
5898 entry = tnapi->tx_prod;
5899 tnapi->tx_buffers[entry].skb = NULL;
5900 pci_unmap_single(tp->pdev,
5901 pci_unmap_addr(&tnapi->tx_buffers[entry], mapping),
5902 skb_headlen(skb),
5903 PCI_DMA_TODEVICE);
5904 for (i = 0; i <= last; i++) {
5905 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5906 entry = NEXT_TX(entry);
5907
5908 pci_unmap_page(tp->pdev,
5909 pci_unmap_addr(&tnapi->tx_buffers[entry],
5910 mapping),
5911 frag->size, PCI_DMA_TODEVICE);
5912 }
5913
5914 dev_kfree_skb(skb);
5915 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916}
5917
5918static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
5919 int new_mtu)
5920{
5921 dev->mtu = new_mtu;
5922
Michael Chanef7f5ec2005-07-25 12:32:25 -07005923 if (new_mtu > ETH_DATA_LEN) {
Michael Chana4e2b342005-10-26 15:46:52 -07005924 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanef7f5ec2005-07-25 12:32:25 -07005925 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
5926 ethtool_op_set_tso(dev, 0);
5927 }
5928 else
5929 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
5930 } else {
Michael Chana4e2b342005-10-26 15:46:52 -07005931 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chanef7f5ec2005-07-25 12:32:25 -07005932 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
Michael Chan0f893dc2005-07-25 12:30:38 -07005933 tp->tg3_flags &= ~TG3_FLAG_JUMBO_RING_ENABLE;
Michael Chanef7f5ec2005-07-25 12:32:25 -07005934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935}
5936
5937static int tg3_change_mtu(struct net_device *dev, int new_mtu)
5938{
5939 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005940 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941
5942 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
5943 return -EINVAL;
5944
5945 if (!netif_running(dev)) {
5946 /* We'll just catch it later when the
5947 * device is up'd.
5948 */
5949 tg3_set_mtu(dev, tp, new_mtu);
5950 return 0;
5951 }
5952
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005953 tg3_phy_stop(tp);
5954
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005956
5957 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958
Michael Chan944d9802005-05-29 14:57:48 -07005959 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960
5961 tg3_set_mtu(dev, tp, new_mtu);
5962
Michael Chanb9ec6c12006-07-25 16:37:27 -07005963 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964
Michael Chanb9ec6c12006-07-25 16:37:27 -07005965 if (!err)
5966 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967
David S. Millerf47c11e2005-06-24 20:18:35 -07005968 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005970 if (!err)
5971 tg3_phy_start(tp);
5972
Michael Chanb9ec6c12006-07-25 16:37:27 -07005973 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974}
5975
Matt Carlson21f581a2009-08-28 14:00:25 +00005976static void tg3_rx_prodring_free(struct tg3 *tp,
5977 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979 int i;
5980
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005981 if (tpr != &tp->prodring[0]) {
5982 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
5983 i = (i + 1) % TG3_RX_RING_SIZE)
5984 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
5985 tp->rx_pkt_map_sz);
5986
5987 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
5988 for (i = tpr->rx_jmb_cons_idx;
5989 i != tpr->rx_jmb_prod_idx;
5990 i = (i + 1) % TG3_RX_JUMBO_RING_SIZE) {
5991 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
5992 TG3_RX_JMB_MAP_SZ);
5993 }
5994 }
5995
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005996 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005999 for (i = 0; i < TG3_RX_RING_SIZE; i++)
6000 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6001 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006003 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006004 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++)
6005 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6006 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 }
6008}
6009
6010/* Initialize tx/rx rings for packet processing.
6011 *
6012 * The chip has been shut down and the driver detached from
6013 * the networking, so no interrupts or new tx packets will
6014 * end up in the driver. tp->{tx,}lock are held and thus
6015 * we may not sleep.
6016 */
Matt Carlson21f581a2009-08-28 14:00:25 +00006017static int tg3_rx_prodring_alloc(struct tg3 *tp,
6018 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019{
Matt Carlson287be122009-08-28 13:58:46 +00006020 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006022 tpr->rx_std_cons_idx = 0;
6023 tpr->rx_std_prod_idx = 0;
6024 tpr->rx_jmb_cons_idx = 0;
6025 tpr->rx_jmb_prod_idx = 0;
6026
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006027 if (tpr != &tp->prodring[0]) {
6028 memset(&tpr->rx_std_buffers[0], 0, TG3_RX_STD_BUFF_RING_SIZE);
6029 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE)
6030 memset(&tpr->rx_jmb_buffers[0], 0,
6031 TG3_RX_JMB_BUFF_RING_SIZE);
6032 goto done;
6033 }
6034
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035 /* Zero out all descriptors. */
Matt Carlson21f581a2009-08-28 14:00:25 +00006036 memset(tpr->rx_std, 0, TG3_RX_RING_BYTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037
Matt Carlson287be122009-08-28 13:58:46 +00006038 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Michael Chana4e2b342005-10-26 15:46:52 -07006039 if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00006040 tp->dev->mtu > ETH_DATA_LEN)
6041 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
6042 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07006043
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044 /* Initialize invariants of the rings, we only set this
6045 * stuff once. This works because the card does not
6046 * write into the rx buffer posting rings.
6047 */
6048 for (i = 0; i < TG3_RX_RING_SIZE; i++) {
6049 struct tg3_rx_buffer_desc *rxd;
6050
Matt Carlson21f581a2009-08-28 14:00:25 +00006051 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00006052 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
6054 rxd->opaque = (RXD_OPAQUE_RING_STD |
6055 (i << RXD_OPAQUE_INDEX_SHIFT));
6056 }
6057
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006058 /* Now allocate fresh SKBs for each rx ring. */
6059 for (i = 0; i < tp->rx_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00006060 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Joe Perches05dbe002010-02-17 19:44:19 +00006061 netdev_warn(tp->dev, "Using a smaller RX standard ring, only %d out of %d buffers were allocated successfully\n",
6062 i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006063 if (i == 0)
6064 goto initfail;
6065 tp->rx_pending = i;
6066 break;
6067 }
6068 }
6069
6070 if (!(tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE))
6071 goto done;
6072
Matt Carlson21f581a2009-08-28 14:00:25 +00006073 memset(tpr->rx_jmb, 0, TG3_RX_JUMBO_RING_BYTES);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006074
Matt Carlson0d86df82010-02-17 15:17:00 +00006075 if (!(tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE))
6076 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077
Matt Carlson0d86df82010-02-17 15:17:00 +00006078 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++) {
6079 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080
Matt Carlson0d86df82010-02-17 15:17:00 +00006081 rxd = &tpr->rx_jmb[i].std;
6082 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
6083 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
6084 RXD_FLAG_JUMBO;
6085 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
6086 (i << RXD_OPAQUE_INDEX_SHIFT));
6087 }
6088
6089 for (i = 0; i < tp->rx_jumbo_pending; i++) {
6090 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
Joe Perches05dbe002010-02-17 19:44:19 +00006091 netdev_warn(tp->dev, "Using a smaller RX jumbo ring, only %d out of %d buffers were allocated successfully\n",
6092 i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00006093 if (i == 0)
6094 goto initfail;
6095 tp->rx_jumbo_pending = i;
6096 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097 }
6098 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006099
6100done:
Michael Chan32d8c572006-07-25 16:38:29 -07006101 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006102
6103initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00006104 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006105 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106}
6107
Matt Carlson21f581a2009-08-28 14:00:25 +00006108static void tg3_rx_prodring_fini(struct tg3 *tp,
6109 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110{
Matt Carlson21f581a2009-08-28 14:00:25 +00006111 kfree(tpr->rx_std_buffers);
6112 tpr->rx_std_buffers = NULL;
6113 kfree(tpr->rx_jmb_buffers);
6114 tpr->rx_jmb_buffers = NULL;
6115 if (tpr->rx_std) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116 pci_free_consistent(tp->pdev, TG3_RX_RING_BYTES,
Matt Carlson21f581a2009-08-28 14:00:25 +00006117 tpr->rx_std, tpr->rx_std_mapping);
6118 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119 }
Matt Carlson21f581a2009-08-28 14:00:25 +00006120 if (tpr->rx_jmb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121 pci_free_consistent(tp->pdev, TG3_RX_JUMBO_RING_BYTES,
Matt Carlson21f581a2009-08-28 14:00:25 +00006122 tpr->rx_jmb, tpr->rx_jmb_mapping);
6123 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006125}
6126
Matt Carlson21f581a2009-08-28 14:00:25 +00006127static int tg3_rx_prodring_init(struct tg3 *tp,
6128 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006129{
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006130 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE, GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006131 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006132 return -ENOMEM;
6133
Matt Carlson21f581a2009-08-28 14:00:25 +00006134 tpr->rx_std = pci_alloc_consistent(tp->pdev, TG3_RX_RING_BYTES,
6135 &tpr->rx_std_mapping);
6136 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006137 goto err_out;
6138
6139 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006140 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE,
Matt Carlson21f581a2009-08-28 14:00:25 +00006141 GFP_KERNEL);
6142 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006143 goto err_out;
6144
Matt Carlson21f581a2009-08-28 14:00:25 +00006145 tpr->rx_jmb = pci_alloc_consistent(tp->pdev,
6146 TG3_RX_JUMBO_RING_BYTES,
6147 &tpr->rx_jmb_mapping);
6148 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006149 goto err_out;
6150 }
6151
6152 return 0;
6153
6154err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00006155 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006156 return -ENOMEM;
6157}
6158
6159/* Free up pending packets in all rx/tx rings.
6160 *
6161 * The chip has been shut down and the driver detached from
6162 * the networking, so no interrupts or new tx packets will
6163 * end up in the driver. tp->{tx,}lock is not held and we are not
6164 * in an interrupt context and thus may sleep.
6165 */
6166static void tg3_free_rings(struct tg3 *tp)
6167{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006168 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006169
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006170 for (j = 0; j < tp->irq_cnt; j++) {
6171 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006172
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006173 if (!tnapi->tx_buffers)
6174 continue;
6175
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006176 for (i = 0; i < TG3_TX_RING_SIZE; ) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006177 struct ring_info *txp;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006178 struct sk_buff *skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006179 unsigned int k;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006180
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006181 txp = &tnapi->tx_buffers[i];
6182 skb = txp->skb;
6183
6184 if (skb == NULL) {
6185 i++;
6186 continue;
6187 }
6188
Alexander Duyckf4188d82009-12-02 16:48:38 +00006189 pci_unmap_single(tp->pdev,
6190 pci_unmap_addr(txp, mapping),
6191 skb_headlen(skb),
6192 PCI_DMA_TODEVICE);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006193 txp->skb = NULL;
6194
Alexander Duyckf4188d82009-12-02 16:48:38 +00006195 i++;
6196
6197 for (k = 0; k < skb_shinfo(skb)->nr_frags; k++) {
6198 txp = &tnapi->tx_buffers[i & (TG3_TX_RING_SIZE - 1)];
6199 pci_unmap_page(tp->pdev,
6200 pci_unmap_addr(txp, mapping),
6201 skb_shinfo(skb)->frags[k].size,
6202 PCI_DMA_TODEVICE);
6203 i++;
6204 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006205
6206 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006207 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006208
Matt Carlsone4af1af2010-02-12 14:47:05 +00006209 tg3_rx_prodring_free(tp, &tp->prodring[j]);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006210 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006211}
6212
6213/* Initialize tx/rx rings for packet processing.
6214 *
6215 * The chip has been shut down and the driver detached from
6216 * the networking, so no interrupts or new tx packets will
6217 * end up in the driver. tp->{tx,}lock are held and thus
6218 * we may not sleep.
6219 */
6220static int tg3_init_rings(struct tg3 *tp)
6221{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006222 int i;
Matt Carlson72334482009-08-28 14:03:01 +00006223
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006224 /* Free up all the SKBs. */
6225 tg3_free_rings(tp);
6226
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006227 for (i = 0; i < tp->irq_cnt; i++) {
6228 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006229
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006230 tnapi->last_tag = 0;
6231 tnapi->last_irq_tag = 0;
6232 tnapi->hw_status->status = 0;
6233 tnapi->hw_status->status_tag = 0;
6234 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6235
6236 tnapi->tx_prod = 0;
6237 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006238 if (tnapi->tx_ring)
6239 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006240
6241 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006242 if (tnapi->rx_rcb)
6243 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006244
Matt Carlsone4af1af2010-02-12 14:47:05 +00006245 if (tg3_rx_prodring_alloc(tp, &tp->prodring[i])) {
6246 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006247 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006248 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006249 }
Matt Carlson72334482009-08-28 14:03:01 +00006250
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006251 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006252}
6253
6254/*
6255 * Must not be invoked with interrupt sources disabled and
6256 * the hardware shutdown down.
6257 */
6258static void tg3_free_consistent(struct tg3 *tp)
6259{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006260 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006261
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006262 for (i = 0; i < tp->irq_cnt; i++) {
6263 struct tg3_napi *tnapi = &tp->napi[i];
6264
6265 if (tnapi->tx_ring) {
6266 pci_free_consistent(tp->pdev, TG3_TX_RING_BYTES,
6267 tnapi->tx_ring, tnapi->tx_desc_mapping);
6268 tnapi->tx_ring = NULL;
6269 }
6270
6271 kfree(tnapi->tx_buffers);
6272 tnapi->tx_buffers = NULL;
6273
6274 if (tnapi->rx_rcb) {
6275 pci_free_consistent(tp->pdev, TG3_RX_RCB_RING_BYTES(tp),
6276 tnapi->rx_rcb,
6277 tnapi->rx_rcb_mapping);
6278 tnapi->rx_rcb = NULL;
6279 }
6280
6281 if (tnapi->hw_status) {
6282 pci_free_consistent(tp->pdev, TG3_HW_STATUS_SIZE,
6283 tnapi->hw_status,
6284 tnapi->status_mapping);
6285 tnapi->hw_status = NULL;
6286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006288
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289 if (tp->hw_stats) {
6290 pci_free_consistent(tp->pdev, sizeof(struct tg3_hw_stats),
6291 tp->hw_stats, tp->stats_mapping);
6292 tp->hw_stats = NULL;
6293 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006294
Matt Carlsone4af1af2010-02-12 14:47:05 +00006295 for (i = 0; i < tp->irq_cnt; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006296 tg3_rx_prodring_fini(tp, &tp->prodring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297}
6298
6299/*
6300 * Must not be invoked with interrupt sources disabled and
6301 * the hardware shutdown down. Can sleep.
6302 */
6303static int tg3_alloc_consistent(struct tg3 *tp)
6304{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006305 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006306
Matt Carlsone4af1af2010-02-12 14:47:05 +00006307 for (i = 0; i < tp->irq_cnt; i++) {
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006308 if (tg3_rx_prodring_init(tp, &tp->prodring[i]))
6309 goto err_out;
6310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312 tp->hw_stats = pci_alloc_consistent(tp->pdev,
6313 sizeof(struct tg3_hw_stats),
6314 &tp->stats_mapping);
6315 if (!tp->hw_stats)
6316 goto err_out;
6317
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6319
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006320 for (i = 0; i < tp->irq_cnt; i++) {
6321 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006322 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006323
6324 tnapi->hw_status = pci_alloc_consistent(tp->pdev,
6325 TG3_HW_STATUS_SIZE,
6326 &tnapi->status_mapping);
6327 if (!tnapi->hw_status)
6328 goto err_out;
6329
6330 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006331 sblk = tnapi->hw_status;
6332
Matt Carlson19cfaec2009-12-03 08:36:20 +00006333 /* If multivector TSS is enabled, vector 0 does not handle
6334 * tx interrupts. Don't allocate any resources for it.
6335 */
6336 if ((!i && !(tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)) ||
6337 (i && (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS))) {
6338 tnapi->tx_buffers = kzalloc(sizeof(struct ring_info) *
6339 TG3_TX_RING_SIZE,
6340 GFP_KERNEL);
6341 if (!tnapi->tx_buffers)
6342 goto err_out;
6343
6344 tnapi->tx_ring = pci_alloc_consistent(tp->pdev,
6345 TG3_TX_RING_BYTES,
6346 &tnapi->tx_desc_mapping);
6347 if (!tnapi->tx_ring)
6348 goto err_out;
6349 }
6350
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006351 /*
6352 * When RSS is enabled, the status block format changes
6353 * slightly. The "rx_jumbo_consumer", "reserved",
6354 * and "rx_mini_consumer" members get mapped to the
6355 * other three rx return ring producer indexes.
6356 */
6357 switch (i) {
6358 default:
6359 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
6360 break;
6361 case 2:
6362 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
6363 break;
6364 case 3:
6365 tnapi->rx_rcb_prod_idx = &sblk->reserved;
6366 break;
6367 case 4:
6368 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
6369 break;
6370 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006371
Matt Carlsone4af1af2010-02-12 14:47:05 +00006372 tnapi->prodring = &tp->prodring[i];
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006373
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006374 /*
6375 * If multivector RSS is enabled, vector 0 does not handle
6376 * rx or tx interrupts. Don't allocate any resources for it.
6377 */
6378 if (!i && (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS))
6379 continue;
6380
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006381 tnapi->rx_rcb = pci_alloc_consistent(tp->pdev,
6382 TG3_RX_RCB_RING_BYTES(tp),
6383 &tnapi->rx_rcb_mapping);
6384 if (!tnapi->rx_rcb)
6385 goto err_out;
6386
6387 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006388 }
6389
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390 return 0;
6391
6392err_out:
6393 tg3_free_consistent(tp);
6394 return -ENOMEM;
6395}
6396
6397#define MAX_WAIT_CNT 1000
6398
6399/* To stop a block, clear the enable bit and poll till it
6400 * clears. tp->lock is held.
6401 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006402static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403{
6404 unsigned int i;
6405 u32 val;
6406
6407 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
6408 switch (ofs) {
6409 case RCVLSC_MODE:
6410 case DMAC_MODE:
6411 case MBFREE_MODE:
6412 case BUFMGR_MODE:
6413 case MEMARB_MODE:
6414 /* We can't enable/disable these bits of the
6415 * 5705/5750, just say success.
6416 */
6417 return 0;
6418
6419 default:
6420 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422 }
6423
6424 val = tr32(ofs);
6425 val &= ~enable_bit;
6426 tw32_f(ofs, val);
6427
6428 for (i = 0; i < MAX_WAIT_CNT; i++) {
6429 udelay(100);
6430 val = tr32(ofs);
6431 if ((val & enable_bit) == 0)
6432 break;
6433 }
6434
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006435 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00006436 dev_err(&tp->pdev->dev,
6437 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
6438 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439 return -ENODEV;
6440 }
6441
6442 return 0;
6443}
6444
6445/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006446static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447{
6448 int i, err;
6449
6450 tg3_disable_ints(tp);
6451
6452 tp->rx_mode &= ~RX_MODE_ENABLE;
6453 tw32_f(MAC_RX_MODE, tp->rx_mode);
6454 udelay(10);
6455
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006456 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
6457 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
6458 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
6459 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
6460 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
6461 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006463 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
6464 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
6465 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
6466 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
6467 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
6468 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
6469 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470
6471 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
6472 tw32_f(MAC_MODE, tp->mac_mode);
6473 udelay(40);
6474
6475 tp->tx_mode &= ~TX_MODE_ENABLE;
6476 tw32_f(MAC_TX_MODE, tp->tx_mode);
6477
6478 for (i = 0; i < MAX_WAIT_CNT; i++) {
6479 udelay(100);
6480 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
6481 break;
6482 }
6483 if (i >= MAX_WAIT_CNT) {
Joe Perches05dbe002010-02-17 19:44:19 +00006484 netdev_err(tp->dev, "%s timed out, TX_MODE_ENABLE will not clear MAC_TX_MODE=%08x\n",
6485 __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07006486 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487 }
6488
Michael Chane6de8ad2005-05-05 14:42:41 -07006489 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006490 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
6491 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492
6493 tw32(FTQ_RESET, 0xffffffff);
6494 tw32(FTQ_RESET, 0x00000000);
6495
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006496 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
6497 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006498
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006499 for (i = 0; i < tp->irq_cnt; i++) {
6500 struct tg3_napi *tnapi = &tp->napi[i];
6501 if (tnapi->hw_status)
6502 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504 if (tp->hw_stats)
6505 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6506
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507 return err;
6508}
6509
Matt Carlson0d3031d2007-10-10 18:02:43 -07006510static void tg3_ape_send_event(struct tg3 *tp, u32 event)
6511{
6512 int i;
6513 u32 apedata;
6514
6515 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
6516 if (apedata != APE_SEG_SIG_MAGIC)
6517 return;
6518
6519 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
Matt Carlson731fd792008-08-15 14:07:51 -07006520 if (!(apedata & APE_FW_STATUS_READY))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006521 return;
6522
6523 /* Wait for up to 1 millisecond for APE to service previous event. */
6524 for (i = 0; i < 10; i++) {
6525 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
6526 return;
6527
6528 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
6529
6530 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6531 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
6532 event | APE_EVENT_STATUS_EVENT_PENDING);
6533
6534 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
6535
6536 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6537 break;
6538
6539 udelay(100);
6540 }
6541
6542 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6543 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
6544}
6545
6546static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
6547{
6548 u32 event;
6549 u32 apedata;
6550
6551 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
6552 return;
6553
6554 switch (kind) {
6555 case RESET_KIND_INIT:
6556 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
6557 APE_HOST_SEG_SIG_MAGIC);
6558 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
6559 APE_HOST_SEG_LEN_MAGIC);
6560 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
6561 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
6562 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
6563 APE_HOST_DRIVER_ID_MAGIC);
6564 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
6565 APE_HOST_BEHAV_NO_PHYLOCK);
6566
6567 event = APE_EVENT_STATUS_STATE_START;
6568 break;
6569 case RESET_KIND_SHUTDOWN:
Matt Carlsonb2aee152008-11-03 16:51:11 -08006570 /* With the interface we are currently using,
6571 * APE does not track driver state. Wiping
6572 * out the HOST SEGMENT SIGNATURE forces
6573 * the APE to assume OS absent status.
6574 */
6575 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
6576
Matt Carlson0d3031d2007-10-10 18:02:43 -07006577 event = APE_EVENT_STATUS_STATE_UNLOAD;
6578 break;
6579 case RESET_KIND_SUSPEND:
6580 event = APE_EVENT_STATUS_STATE_SUSPEND;
6581 break;
6582 default:
6583 return;
6584 }
6585
6586 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
6587
6588 tg3_ape_send_event(tp, event);
6589}
6590
Michael Chane6af3012005-04-21 17:12:05 -07006591/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
6593{
David S. Millerf49639e2006-06-09 11:58:36 -07006594 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
6595 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596
6597 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
6598 switch (kind) {
6599 case RESET_KIND_INIT:
6600 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6601 DRV_STATE_START);
6602 break;
6603
6604 case RESET_KIND_SHUTDOWN:
6605 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6606 DRV_STATE_UNLOAD);
6607 break;
6608
6609 case RESET_KIND_SUSPEND:
6610 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6611 DRV_STATE_SUSPEND);
6612 break;
6613
6614 default:
6615 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006618
6619 if (kind == RESET_KIND_INIT ||
6620 kind == RESET_KIND_SUSPEND)
6621 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622}
6623
6624/* tp->lock is held. */
6625static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
6626{
6627 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
6628 switch (kind) {
6629 case RESET_KIND_INIT:
6630 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6631 DRV_STATE_START_DONE);
6632 break;
6633
6634 case RESET_KIND_SHUTDOWN:
6635 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6636 DRV_STATE_UNLOAD_DONE);
6637 break;
6638
6639 default:
6640 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006643
6644 if (kind == RESET_KIND_SHUTDOWN)
6645 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646}
6647
6648/* tp->lock is held. */
6649static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
6650{
6651 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
6652 switch (kind) {
6653 case RESET_KIND_INIT:
6654 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6655 DRV_STATE_START);
6656 break;
6657
6658 case RESET_KIND_SHUTDOWN:
6659 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6660 DRV_STATE_UNLOAD);
6661 break;
6662
6663 case RESET_KIND_SUSPEND:
6664 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6665 DRV_STATE_SUSPEND);
6666 break;
6667
6668 default:
6669 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671 }
6672}
6673
Michael Chan7a6f4362006-09-27 16:03:31 -07006674static int tg3_poll_fw(struct tg3 *tp)
6675{
6676 int i;
6677 u32 val;
6678
Michael Chanb5d37722006-09-27 16:06:21 -07006679 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08006680 /* Wait up to 20ms for init done. */
6681 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07006682 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
6683 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08006684 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07006685 }
6686 return -ENODEV;
6687 }
6688
Michael Chan7a6f4362006-09-27 16:03:31 -07006689 /* Wait for firmware initialization to complete. */
6690 for (i = 0; i < 100000; i++) {
6691 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
6692 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
6693 break;
6694 udelay(10);
6695 }
6696
6697 /* Chip might not be fitted with firmware. Some Sun onboard
6698 * parts are configured like that. So don't signal the timeout
6699 * of the above loop as an error, but do report the lack of
6700 * running firmware once.
6701 */
6702 if (i >= 100000 &&
6703 !(tp->tg3_flags2 & TG3_FLG2_NO_FWARE_REPORTED)) {
6704 tp->tg3_flags2 |= TG3_FLG2_NO_FWARE_REPORTED;
6705
Joe Perches05dbe002010-02-17 19:44:19 +00006706 netdev_info(tp->dev, "No firmware running\n");
Michael Chan7a6f4362006-09-27 16:03:31 -07006707 }
6708
Matt Carlson6b10c162010-02-12 14:47:08 +00006709 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
6710 /* The 57765 A0 needs a little more
6711 * time to do some important work.
6712 */
6713 mdelay(10);
6714 }
6715
Michael Chan7a6f4362006-09-27 16:03:31 -07006716 return 0;
6717}
6718
Michael Chanee6a99b2007-07-18 21:49:10 -07006719/* Save PCI command register before chip reset */
6720static void tg3_save_pci_state(struct tg3 *tp)
6721{
Matt Carlson8a6eac92007-10-21 16:17:55 -07006722 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07006723}
6724
6725/* Restore PCI state after chip reset */
6726static void tg3_restore_pci_state(struct tg3 *tp)
6727{
6728 u32 val;
6729
6730 /* Re-enable indirect register accesses. */
6731 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
6732 tp->misc_host_ctrl);
6733
6734 /* Set MAX PCI retry to zero. */
6735 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
6736 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
6737 (tp->tg3_flags & TG3_FLAG_PCIX_MODE))
6738 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07006739 /* Allow reads and writes to the APE register and memory space. */
6740 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
6741 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
6742 PCISTATE_ALLOW_APE_SHMEM_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07006743 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
6744
Matt Carlson8a6eac92007-10-21 16:17:55 -07006745 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07006746
Matt Carlsonfcb389d2008-11-03 16:55:44 -08006747 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
6748 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
6749 pcie_set_readrq(tp->pdev, 4096);
6750 else {
6751 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
6752 tp->pci_cacheline_sz);
6753 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
6754 tp->pci_lat_timer);
6755 }
Michael Chan114342f2007-10-15 02:12:26 -07006756 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08006757
Michael Chanee6a99b2007-07-18 21:49:10 -07006758 /* Make sure PCI-X relaxed ordering bit is clear. */
Matt Carlson52f44902008-11-21 17:17:04 -08006759 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
Matt Carlson9974a352007-10-07 23:27:28 -07006760 u16 pcix_cmd;
6761
6762 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
6763 &pcix_cmd);
6764 pcix_cmd &= ~PCI_X_CMD_ERO;
6765 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
6766 pcix_cmd);
6767 }
Michael Chanee6a99b2007-07-18 21:49:10 -07006768
6769 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanee6a99b2007-07-18 21:49:10 -07006770
6771 /* Chip reset on 5780 will reset MSI enable bit,
6772 * so need to restore it.
6773 */
6774 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
6775 u16 ctrl;
6776
6777 pci_read_config_word(tp->pdev,
6778 tp->msi_cap + PCI_MSI_FLAGS,
6779 &ctrl);
6780 pci_write_config_word(tp->pdev,
6781 tp->msi_cap + PCI_MSI_FLAGS,
6782 ctrl | PCI_MSI_FLAGS_ENABLE);
6783 val = tr32(MSGINT_MODE);
6784 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
6785 }
6786 }
6787}
6788
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789static void tg3_stop_fw(struct tg3 *);
6790
6791/* tp->lock is held. */
6792static int tg3_chip_reset(struct tg3 *tp)
6793{
6794 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07006795 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00006796 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797
David S. Millerf49639e2006-06-09 11:58:36 -07006798 tg3_nvram_lock(tp);
6799
Matt Carlson77b483f2008-08-15 14:07:24 -07006800 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
6801
David S. Millerf49639e2006-06-09 11:58:36 -07006802 /* No matching tg3_nvram_unlock() after this because
6803 * chip reset below will undo the nvram lock.
6804 */
6805 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806
Michael Chanee6a99b2007-07-18 21:49:10 -07006807 /* GRC_MISC_CFG core clock reset will clear the memory
6808 * enable bit in PCI register 4 and the MSI enable bit
6809 * on some chips, so we save relevant registers here.
6810 */
6811 tg3_save_pci_state(tp);
6812
Michael Chand9ab5ad12006-03-20 22:27:35 -08006813 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08006814 (tp->tg3_flags3 & TG3_FLG3_5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08006815 tw32(GRC_FASTBOOT_PC, 0);
6816
Linus Torvalds1da177e2005-04-16 15:20:36 -07006817 /*
6818 * We must avoid the readl() that normally takes place.
6819 * It locks machines, causes machine checks, and other
6820 * fun things. So, temporarily disable the 5701
6821 * hardware workaround, while we do the reset.
6822 */
Michael Chan1ee582d2005-08-09 20:16:46 -07006823 write_op = tp->write32;
6824 if (write_op == tg3_write_flush_reg32)
6825 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826
Michael Chand18edcb2007-03-24 20:57:11 -07006827 /* Prevent the irq handler from reading or writing PCI registers
6828 * during chip reset when the memory enable bit in the PCI command
6829 * register may be cleared. The chip does not generate interrupt
6830 * at this time, but the irq handler may still be called due to irq
6831 * sharing or irqpoll.
6832 */
6833 tp->tg3_flags |= TG3_FLAG_CHIP_RESETTING;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006834 for (i = 0; i < tp->irq_cnt; i++) {
6835 struct tg3_napi *tnapi = &tp->napi[i];
6836 if (tnapi->hw_status) {
6837 tnapi->hw_status->status = 0;
6838 tnapi->hw_status->status_tag = 0;
6839 }
6840 tnapi->last_tag = 0;
6841 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07006842 }
Michael Chand18edcb2007-03-24 20:57:11 -07006843 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00006844
6845 for (i = 0; i < tp->irq_cnt; i++)
6846 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07006847
Matt Carlson255ca312009-08-25 10:07:27 +00006848 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
6849 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
6850 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
6851 }
6852
Linus Torvalds1da177e2005-04-16 15:20:36 -07006853 /* do the reset */
6854 val = GRC_MISC_CFG_CORECLK_RESET;
6855
6856 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
6857 if (tr32(0x7e2c) == 0x60) {
6858 tw32(0x7e2c, 0x20);
6859 }
6860 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
6861 tw32(GRC_MISC_CFG, (1 << 29));
6862 val |= (1 << 29);
6863 }
6864 }
6865
Michael Chanb5d37722006-09-27 16:06:21 -07006866 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
6867 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
6868 tw32(GRC_VCPU_EXT_CTRL,
6869 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
6870 }
6871
Linus Torvalds1da177e2005-04-16 15:20:36 -07006872 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
6873 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
6874 tw32(GRC_MISC_CFG, val);
6875
Michael Chan1ee582d2005-08-09 20:16:46 -07006876 /* restore 5701 hardware bug workaround write method */
6877 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878
6879 /* Unfortunately, we have to delay before the PCI read back.
6880 * Some 575X chips even will not respond to a PCI cfg access
6881 * when the reset command is given to the chip.
6882 *
6883 * How do these hardware designers expect things to work
6884 * properly if the PCI write is posted for a long period
6885 * of time? It is always necessary to have some method by
6886 * which a register read back can occur to push the write
6887 * out which does the reset.
6888 *
6889 * For most tg3 variants the trick below was working.
6890 * Ho hum...
6891 */
6892 udelay(120);
6893
6894 /* Flush PCI posted writes. The normal MMIO registers
6895 * are inaccessible at this time so this is the only
6896 * way to make this reliably (actually, this is no longer
6897 * the case, see above). I tried to use indirect
6898 * register read/write but this upset some 5701 variants.
6899 */
6900 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
6901
6902 udelay(120);
6903
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006904 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) && tp->pcie_cap) {
Matt Carlsone7126992009-08-25 10:08:16 +00006905 u16 val16;
6906
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
6908 int i;
6909 u32 cfg_val;
6910
6911 /* Wait for link training to complete. */
6912 for (i = 0; i < 5000; i++)
6913 udelay(100);
6914
6915 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
6916 pci_write_config_dword(tp->pdev, 0xc4,
6917 cfg_val | (1 << 15));
6918 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006919
Matt Carlsone7126992009-08-25 10:08:16 +00006920 /* Clear the "no snoop" and "relaxed ordering" bits. */
6921 pci_read_config_word(tp->pdev,
6922 tp->pcie_cap + PCI_EXP_DEVCTL,
6923 &val16);
6924 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
6925 PCI_EXP_DEVCTL_NOSNOOP_EN);
6926 /*
6927 * Older PCIe devices only support the 128 byte
6928 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006929 */
Matt Carlsone7126992009-08-25 10:08:16 +00006930 if (!(tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
6931 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784))
6932 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006933 pci_write_config_word(tp->pdev,
6934 tp->pcie_cap + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00006935 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006936
6937 pcie_set_readrq(tp->pdev, 4096);
6938
6939 /* Clear error status */
6940 pci_write_config_word(tp->pdev,
6941 tp->pcie_cap + PCI_EXP_DEVSTA,
6942 PCI_EXP_DEVSTA_CED |
6943 PCI_EXP_DEVSTA_NFED |
6944 PCI_EXP_DEVSTA_FED |
6945 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946 }
6947
Michael Chanee6a99b2007-07-18 21:49:10 -07006948 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006949
Michael Chand18edcb2007-03-24 20:57:11 -07006950 tp->tg3_flags &= ~TG3_FLAG_CHIP_RESETTING;
6951
Michael Chanee6a99b2007-07-18 21:49:10 -07006952 val = 0;
6953 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chan4cf78e42005-07-25 12:29:19 -07006954 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07006955 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006956
6957 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
6958 tg3_stop_fw(tp);
6959 tw32(0x5000, 0x400);
6960 }
6961
6962 tw32(GRC_MODE, tp->grc_mode);
6963
6964 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01006965 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966
6967 tw32(0xc4, val | (1 << 15));
6968 }
6969
6970 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
6971 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
6972 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
6973 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
6974 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
6975 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
6976 }
6977
6978 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
6979 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
6980 tw32_f(MAC_MODE, tp->mac_mode);
Michael Chan747e8f82005-07-25 12:33:22 -07006981 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
6982 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
6983 tw32_f(MAC_MODE, tp->mac_mode);
Matt Carlson3bda1252008-08-15 14:08:22 -07006984 } else if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
6985 tp->mac_mode &= (MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN);
6986 if (tp->mac_mode & MAC_MODE_APE_TX_EN)
6987 tp->mac_mode |= MAC_MODE_TDE_ENABLE;
6988 tw32_f(MAC_MODE, tp->mac_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989 } else
6990 tw32_f(MAC_MODE, 0);
6991 udelay(40);
6992
Matt Carlson77b483f2008-08-15 14:07:24 -07006993 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
6994
Michael Chan7a6f4362006-09-27 16:03:31 -07006995 err = tg3_poll_fw(tp);
6996 if (err)
6997 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998
Matt Carlson0a9140c2009-08-28 12:27:50 +00006999 tg3_mdio_start(tp);
7000
Matt Carlson52cdf852009-11-02 14:25:06 +00007001 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7002 u8 phy_addr;
7003
7004 phy_addr = tp->phy_addr;
7005 tp->phy_addr = TG3_PHY_PCIE_ADDR;
7006
7007 tg3_writephy(tp, TG3_PCIEPHY_BLOCK_ADDR,
7008 TG3_PCIEPHY_TXB_BLK << TG3_PCIEPHY_BLOCK_SHIFT);
7009 val = TG3_PCIEPHY_TX0CTRL1_TXOCM | TG3_PCIEPHY_TX0CTRL1_RDCTL |
7010 TG3_PCIEPHY_TX0CTRL1_TXCMV | TG3_PCIEPHY_TX0CTRL1_TKSEL |
7011 TG3_PCIEPHY_TX0CTRL1_NB_EN;
7012 tg3_writephy(tp, TG3_PCIEPHY_TX0CTRL1, val);
7013 udelay(10);
7014
7015 tg3_writephy(tp, TG3_PCIEPHY_BLOCK_ADDR,
7016 TG3_PCIEPHY_XGXS_BLK1 << TG3_PCIEPHY_BLOCK_SHIFT);
7017 val = TG3_PCIEPHY_PWRMGMT4_LOWPWR_EN |
7018 TG3_PCIEPHY_PWRMGMT4_L1PLLPD_EN;
7019 tg3_writephy(tp, TG3_PCIEPHY_PWRMGMT4, val);
7020 udelay(10);
7021
7022 tp->phy_addr = phy_addr;
7023 }
7024
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007026 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7027 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonb703df62009-12-03 08:36:21 +00007028 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
7029 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007030 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031
7032 tw32(0x7c00, val | (1 << 25));
7033 }
7034
7035 /* Reprobe ASF enable state. */
7036 tp->tg3_flags &= ~TG3_FLAG_ENABLE_ASF;
7037 tp->tg3_flags2 &= ~TG3_FLG2_ASF_NEW_HANDSHAKE;
7038 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7039 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7040 u32 nic_cfg;
7041
7042 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7043 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
7044 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
Matt Carlson4ba526c2008-08-15 14:10:04 -07007045 tp->last_event_jiffies = jiffies;
John W. Linvillecbf46852005-04-21 17:01:29 -07007046 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
7048 }
7049 }
7050
7051 return 0;
7052}
7053
7054/* tp->lock is held. */
7055static void tg3_stop_fw(struct tg3 *tp)
7056{
Matt Carlson0d3031d2007-10-10 18:02:43 -07007057 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
7058 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07007059 /* Wait for RX cpu to ACK the previous event. */
7060 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061
7062 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007063
7064 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065
Matt Carlson7c5026a2008-05-02 16:49:29 -07007066 /* Wait for RX cpu to ACK this event. */
7067 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068 }
7069}
7070
7071/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007072static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073{
7074 int err;
7075
7076 tg3_stop_fw(tp);
7077
Michael Chan944d9802005-05-29 14:57:48 -07007078 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007080 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081 err = tg3_chip_reset(tp);
7082
Matt Carlsondaba2a62009-04-20 06:58:52 +00007083 __tg3_set_mac_addr(tp, 0);
7084
Michael Chan944d9802005-05-29 14:57:48 -07007085 tg3_write_sig_legacy(tp, kind);
7086 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087
7088 if (err)
7089 return err;
7090
7091 return 0;
7092}
7093
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094#define RX_CPU_SCRATCH_BASE 0x30000
7095#define RX_CPU_SCRATCH_SIZE 0x04000
7096#define TX_CPU_SCRATCH_BASE 0x34000
7097#define TX_CPU_SCRATCH_SIZE 0x04000
7098
7099/* tp->lock is held. */
7100static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
7101{
7102 int i;
7103
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02007104 BUG_ON(offset == TX_CPU_BASE &&
7105 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106
Michael Chanb5d37722006-09-27 16:06:21 -07007107 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7108 u32 val = tr32(GRC_VCPU_EXT_CTRL);
7109
7110 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
7111 return 0;
7112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007113 if (offset == RX_CPU_BASE) {
7114 for (i = 0; i < 10000; i++) {
7115 tw32(offset + CPU_STATE, 0xffffffff);
7116 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7117 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7118 break;
7119 }
7120
7121 tw32(offset + CPU_STATE, 0xffffffff);
7122 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
7123 udelay(10);
7124 } else {
7125 for (i = 0; i < 10000; i++) {
7126 tw32(offset + CPU_STATE, 0xffffffff);
7127 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7128 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7129 break;
7130 }
7131 }
7132
7133 if (i >= 10000) {
Joe Perches05dbe002010-02-17 19:44:19 +00007134 netdev_err(tp->dev, "%s timed out, %s CPU\n",
7135 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136 return -ENODEV;
7137 }
Michael Chanec41c7d2006-01-17 02:40:55 -08007138
7139 /* Clear firmware's nvram arbitration. */
7140 if (tp->tg3_flags & TG3_FLAG_NVRAM)
7141 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142 return 0;
7143}
7144
7145struct fw_info {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007146 unsigned int fw_base;
7147 unsigned int fw_len;
7148 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149};
7150
7151/* tp->lock is held. */
7152static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
7153 int cpu_scratch_size, struct fw_info *info)
7154{
Michael Chanec41c7d2006-01-17 02:40:55 -08007155 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156 void (*write_op)(struct tg3 *, u32, u32);
7157
7158 if (cpu_base == TX_CPU_BASE &&
7159 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
Joe Perches05dbe002010-02-17 19:44:19 +00007160 netdev_err(tp->dev, "%s: Trying to load TX cpu firmware which is 5705\n",
7161 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007162 return -EINVAL;
7163 }
7164
7165 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
7166 write_op = tg3_write_mem;
7167 else
7168 write_op = tg3_write_indirect_reg32;
7169
Michael Chan1b628152005-05-29 14:59:49 -07007170 /* It is possible that bootcode is still loading at this point.
7171 * Get the nvram lock first before halting the cpu.
7172 */
Michael Chanec41c7d2006-01-17 02:40:55 -08007173 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007174 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08007175 if (!lock_err)
7176 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007177 if (err)
7178 goto out;
7179
7180 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
7181 write_op(tp, cpu_scratch_base + i, 0);
7182 tw32(cpu_base + CPU_STATE, 0xffffffff);
7183 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007184 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007185 write_op(tp, (cpu_scratch_base +
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007186 (info->fw_base & 0xffff) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07007187 (i * sizeof(u32))),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007188 be32_to_cpu(info->fw_data[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007189
7190 err = 0;
7191
7192out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007193 return err;
7194}
7195
7196/* tp->lock is held. */
7197static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
7198{
7199 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007200 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007201 int err, i;
7202
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007203 fw_data = (void *)tp->fw->data;
7204
7205 /* Firmware blob starts with version numbers, followed by
7206 start address and length. We are setting complete length.
7207 length = end_address_of_bss - start_address_of_text.
7208 Remainder is the blob to be loaded contiguously
7209 from start address. */
7210
7211 info.fw_base = be32_to_cpu(fw_data[1]);
7212 info.fw_len = tp->fw->size - 12;
7213 info.fw_data = &fw_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214
7215 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
7216 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
7217 &info);
7218 if (err)
7219 return err;
7220
7221 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
7222 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
7223 &info);
7224 if (err)
7225 return err;
7226
7227 /* Now startup only the RX cpu. */
7228 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007229 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007230
7231 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007232 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007233 break;
7234 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7235 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007236 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237 udelay(1000);
7238 }
7239 if (i >= 5) {
Joe Perches05dbe002010-02-17 19:44:19 +00007240 netdev_err(tp->dev, "tg3_load_firmware fails to set RX CPU PC, is %08x should be %08x\n",
7241 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007242 return -ENODEV;
7243 }
7244 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7245 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
7246
7247 return 0;
7248}
7249
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250/* 5705 needs a special version of the TSO firmware. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007251
7252/* tp->lock is held. */
7253static int tg3_load_tso_firmware(struct tg3 *tp)
7254{
7255 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007256 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
7258 int err, i;
7259
7260 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
7261 return 0;
7262
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007263 fw_data = (void *)tp->fw->data;
7264
7265 /* Firmware blob starts with version numbers, followed by
7266 start address and length. We are setting complete length.
7267 length = end_address_of_bss - start_address_of_text.
7268 Remainder is the blob to be loaded contiguously
7269 from start address. */
7270
7271 info.fw_base = be32_to_cpu(fw_data[1]);
7272 cpu_scratch_size = tp->fw_len;
7273 info.fw_len = tp->fw->size - 12;
7274 info.fw_data = &fw_data[3];
7275
Linus Torvalds1da177e2005-04-16 15:20:36 -07007276 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007277 cpu_base = RX_CPU_BASE;
7278 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007280 cpu_base = TX_CPU_BASE;
7281 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
7282 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
7283 }
7284
7285 err = tg3_load_firmware_cpu(tp, cpu_base,
7286 cpu_scratch_base, cpu_scratch_size,
7287 &info);
7288 if (err)
7289 return err;
7290
7291 /* Now startup the cpu. */
7292 tw32(cpu_base + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007293 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294
7295 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007296 if (tr32(cpu_base + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007297 break;
7298 tw32(cpu_base + CPU_STATE, 0xffffffff);
7299 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007300 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007301 udelay(1000);
7302 }
7303 if (i >= 5) {
Joe Perches05dbe002010-02-17 19:44:19 +00007304 netdev_err(tp->dev, "%s fails to set CPU PC, is %08x should be %08x\n",
7305 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306 return -ENODEV;
7307 }
7308 tw32(cpu_base + CPU_STATE, 0xffffffff);
7309 tw32_f(cpu_base + CPU_MODE, 0x00000000);
7310 return 0;
7311}
7312
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313
Linus Torvalds1da177e2005-04-16 15:20:36 -07007314static int tg3_set_mac_addr(struct net_device *dev, void *p)
7315{
7316 struct tg3 *tp = netdev_priv(dev);
7317 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007318 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319
Michael Chanf9804dd2005-09-27 12:13:10 -07007320 if (!is_valid_ether_addr(addr->sa_data))
7321 return -EINVAL;
7322
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7324
Michael Chane75f7c92006-03-20 21:33:26 -08007325 if (!netif_running(dev))
7326 return 0;
7327
Michael Chan58712ef2006-04-29 18:58:01 -07007328 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007329 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007330
Michael Chan986e0ae2007-05-05 12:10:20 -07007331 addr0_high = tr32(MAC_ADDR_0_HIGH);
7332 addr0_low = tr32(MAC_ADDR_0_LOW);
7333 addr1_high = tr32(MAC_ADDR_1_HIGH);
7334 addr1_low = tr32(MAC_ADDR_1_LOW);
7335
7336 /* Skip MAC addr 1 if ASF is using it. */
7337 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7338 !(addr1_high == 0 && addr1_low == 0))
7339 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007340 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007341 spin_lock_bh(&tp->lock);
7342 __tg3_set_mac_addr(tp, skip_mac_1);
7343 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344
Michael Chanb9ec6c12006-07-25 16:37:27 -07007345 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346}
7347
7348/* tp->lock is held. */
7349static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7350 dma_addr_t mapping, u32 maxlen_flags,
7351 u32 nic_addr)
7352{
7353 tg3_write_mem(tp,
7354 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7355 ((u64) mapping >> 32));
7356 tg3_write_mem(tp,
7357 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7358 ((u64) mapping & 0xffffffff));
7359 tg3_write_mem(tp,
7360 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7361 maxlen_flags);
7362
7363 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7364 tg3_write_mem(tp,
7365 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7366 nic_addr);
7367}
7368
7369static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007370static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007371{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007372 int i;
7373
Matt Carlson19cfaec2009-12-03 08:36:20 +00007374 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007375 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7376 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7377 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007378 } else {
7379 tw32(HOSTCC_TXCOL_TICKS, 0);
7380 tw32(HOSTCC_TXMAX_FRAMES, 0);
7381 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007382 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007383
Matt Carlson19cfaec2009-12-03 08:36:20 +00007384 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSIX)) {
7385 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7386 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7387 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7388 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007389 tw32(HOSTCC_RXCOL_TICKS, 0);
7390 tw32(HOSTCC_RXMAX_FRAMES, 0);
7391 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07007392 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007393
David S. Miller15f98502005-05-18 22:49:26 -07007394 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7395 u32 val = ec->stats_block_coalesce_usecs;
7396
Matt Carlsonb6080e12009-09-01 13:12:00 +00007397 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
7398 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
7399
David S. Miller15f98502005-05-18 22:49:26 -07007400 if (!netif_carrier_ok(tp->dev))
7401 val = 0;
7402
7403 tw32(HOSTCC_STAT_COAL_TICKS, val);
7404 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007405
7406 for (i = 0; i < tp->irq_cnt - 1; i++) {
7407 u32 reg;
7408
7409 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
7410 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007411 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
7412 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007413 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
7414 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007415
7416 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS) {
7417 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
7418 tw32(reg, ec->tx_coalesce_usecs);
7419 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
7420 tw32(reg, ec->tx_max_coalesced_frames);
7421 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
7422 tw32(reg, ec->tx_max_coalesced_frames_irq);
7423 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007424 }
7425
7426 for (; i < tp->irq_max - 1; i++) {
7427 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007428 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007429 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007430
7431 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS) {
7432 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
7433 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
7434 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7435 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007436 }
David S. Miller15f98502005-05-18 22:49:26 -07007437}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438
7439/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00007440static void tg3_rings_reset(struct tg3 *tp)
7441{
7442 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007443 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007444 struct tg3_napi *tnapi = &tp->napi[0];
7445
7446 /* Disable all transmit rings but the first. */
7447 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7448 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007449 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
7450 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007451 else
7452 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7453
7454 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7455 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
7456 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
7457 BDINFO_FLAGS_DISABLED);
7458
7459
7460 /* Disable all receive return rings but the first. */
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007461 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
7462 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
7463 else if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007464 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007465 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7466 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson2d31eca2009-09-01 12:53:31 +00007467 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
7468 else
7469 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7470
7471 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7472 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
7473 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
7474 BDINFO_FLAGS_DISABLED);
7475
7476 /* Disable interrupts */
7477 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
7478
7479 /* Zero mailbox registers. */
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007480 if (tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX) {
7481 for (i = 1; i < TG3_IRQ_MAX_VECS; i++) {
7482 tp->napi[i].tx_prod = 0;
7483 tp->napi[i].tx_cons = 0;
Matt Carlsonc2353a32010-01-20 16:58:08 +00007484 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
7485 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007486 tw32_rx_mbox(tp->napi[i].consmbox, 0);
7487 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
7488 }
Matt Carlsonc2353a32010-01-20 16:58:08 +00007489 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS))
7490 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007491 } else {
7492 tp->napi[0].tx_prod = 0;
7493 tp->napi[0].tx_cons = 0;
7494 tw32_mailbox(tp->napi[0].prodmbox, 0);
7495 tw32_rx_mbox(tp->napi[0].consmbox, 0);
7496 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007497
7498 /* Make sure the NIC-based send BD rings are disabled. */
7499 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7500 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
7501 for (i = 0; i < 16; i++)
7502 tw32_tx_mbox(mbox + i * 8, 0);
7503 }
7504
7505 txrcb = NIC_SRAM_SEND_RCB;
7506 rxrcb = NIC_SRAM_RCV_RET_RCB;
7507
7508 /* Clear status block in ram. */
7509 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7510
7511 /* Set status block DMA address */
7512 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7513 ((u64) tnapi->status_mapping >> 32));
7514 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7515 ((u64) tnapi->status_mapping & 0xffffffff));
7516
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007517 if (tnapi->tx_ring) {
7518 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7519 (TG3_TX_RING_SIZE <<
7520 BDINFO_FLAGS_MAXLEN_SHIFT),
7521 NIC_SRAM_TX_BUFFER_DESC);
7522 txrcb += TG3_BDINFO_SIZE;
7523 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007524
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007525 if (tnapi->rx_rcb) {
7526 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
7527 (TG3_RX_RCB_RING_SIZE(tp) <<
7528 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7529 rxrcb += TG3_BDINFO_SIZE;
7530 }
7531
7532 stblk = HOSTCC_STATBLCK_RING1;
7533
7534 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
7535 u64 mapping = (u64)tnapi->status_mapping;
7536 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
7537 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
7538
7539 /* Clear status block in ram. */
7540 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7541
Matt Carlson19cfaec2009-12-03 08:36:20 +00007542 if (tnapi->tx_ring) {
7543 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7544 (TG3_TX_RING_SIZE <<
7545 BDINFO_FLAGS_MAXLEN_SHIFT),
7546 NIC_SRAM_TX_BUFFER_DESC);
7547 txrcb += TG3_BDINFO_SIZE;
7548 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007549
7550 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
7551 (TG3_RX_RCB_RING_SIZE(tp) <<
7552 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7553
7554 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007555 rxrcb += TG3_BDINFO_SIZE;
7556 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007557}
7558
7559/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007560static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561{
7562 u32 val, rdmac_mode;
7563 int i, err, limit;
Matt Carlson21f581a2009-08-28 14:00:25 +00007564 struct tg3_rx_prodring_set *tpr = &tp->prodring[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007565
7566 tg3_disable_ints(tp);
7567
7568 tg3_stop_fw(tp);
7569
7570 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
7571
7572 if (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) {
Michael Chane6de8ad2005-05-05 14:42:41 -07007573 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007574 }
7575
Matt Carlson603f1172010-02-12 14:47:10 +00007576 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08007577 tg3_phy_reset(tp);
7578
Linus Torvalds1da177e2005-04-16 15:20:36 -07007579 err = tg3_chip_reset(tp);
7580 if (err)
7581 return err;
7582
7583 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
7584
Matt Carlsonbcb37f62008-11-03 16:52:09 -08007585 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007586 val = tr32(TG3_CPMU_CTRL);
7587 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
7588 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08007589
7590 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
7591 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
7592 val |= CPMU_LSPD_10MB_MACCLK_6_25;
7593 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
7594
7595 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
7596 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
7597 val |= CPMU_LNK_AWARE_MACCLK_6_25;
7598 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
7599
7600 val = tr32(TG3_CPMU_HST_ACC);
7601 val &= ~CPMU_HST_ACC_MACCLK_MASK;
7602 val |= CPMU_HST_ACC_MACCLK_6_25;
7603 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07007604 }
7605
Matt Carlson33466d92009-04-20 06:57:41 +00007606 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7607 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
7608 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
7609 PCIE_PWR_MGMT_L1_THRESH_4MS;
7610 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00007611
7612 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
7613 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
7614
7615 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00007616
Matt Carlsonf40386c2009-11-02 14:24:02 +00007617 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7618 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00007619 }
7620
Matt Carlson614b0592010-01-20 16:58:02 +00007621 if (tp->tg3_flags3 & TG3_FLG3_L1PLLPD_EN) {
7622 u32 grc_mode = tr32(GRC_MODE);
7623
7624 /* Access the lower 1K of PL PCIE block registers. */
7625 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
7626 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
7627
7628 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
7629 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
7630 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
7631
7632 tw32(GRC_MODE, grc_mode);
7633 }
7634
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635 /* This works around an issue with Athlon chipsets on
7636 * B3 tigon3 silicon. This bit has no effect on any
7637 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07007638 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639 */
Matt Carlson795d01c2007-10-07 23:28:17 -07007640 if (!(tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)) {
7641 if (!(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
7642 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
7643 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007645
7646 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
7647 (tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
7648 val = tr32(TG3PCI_PCISTATE);
7649 val |= PCISTATE_RETRY_SAME_DMA;
7650 tw32(TG3PCI_PCISTATE, val);
7651 }
7652
Matt Carlson0d3031d2007-10-10 18:02:43 -07007653 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
7654 /* Allow reads and writes to the
7655 * APE register and memory space.
7656 */
7657 val = tr32(TG3PCI_PCISTATE);
7658 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
7659 PCISTATE_ALLOW_APE_SHMEM_WR;
7660 tw32(TG3PCI_PCISTATE, val);
7661 }
7662
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
7664 /* Enable some hw fixes. */
7665 val = tr32(TG3PCI_MSI_DATA);
7666 val |= (1 << 26) | (1 << 28) | (1 << 29);
7667 tw32(TG3PCI_MSI_DATA, val);
7668 }
7669
7670 /* Descriptor ring init may make accesses to the
7671 * NIC SRAM area to setup the TX descriptors, so we
7672 * can only do this after the hardware has been
7673 * successfully reset.
7674 */
Michael Chan32d8c572006-07-25 16:38:29 -07007675 err = tg3_init_rings(tp);
7676 if (err)
7677 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007678
Matt Carlsonb703df62009-12-03 08:36:21 +00007679 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
7680 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00007681 val = tr32(TG3PCI_DMA_RW_CTRL) &
7682 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
7683 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
7684 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
7685 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007686 /* This value is determined during the probe time DMA
7687 * engine test, tg3_test_dma.
7688 */
7689 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
7690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691
7692 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
7693 GRC_MODE_4X_NIC_SEND_RINGS |
7694 GRC_MODE_NO_TX_PHDR_CSUM |
7695 GRC_MODE_NO_RX_PHDR_CSUM);
7696 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07007697
7698 /* Pseudo-header checksum is done by hardware logic and not
7699 * the offload processers, so make the chip do the pseudo-
7700 * header checksums on receive. For transmit it is more
7701 * convenient to do the pseudo-header checksum in software
7702 * as Linux does that on transmit for us in all cases.
7703 */
7704 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007705
7706 tw32(GRC_MODE,
7707 tp->grc_mode |
7708 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
7709
7710 /* Setup the timer prescalar register. Clock is always 66Mhz. */
7711 val = tr32(GRC_MISC_CFG);
7712 val &= ~0xff;
7713 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
7714 tw32(GRC_MISC_CFG, val);
7715
7716 /* Initialize MBUF/DESC pool. */
John W. Linvillecbf46852005-04-21 17:01:29 -07007717 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718 /* Do nothing. */
7719 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
7720 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
7721 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
7722 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
7723 else
7724 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
7725 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
7726 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
7727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007728 else if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
7729 int fw_len;
7730
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007731 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
7733 tw32(BUFMGR_MB_POOL_ADDR,
7734 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
7735 tw32(BUFMGR_MB_POOL_SIZE,
7736 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
7737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007738
Michael Chan0f893dc2005-07-25 12:30:38 -07007739 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007740 tw32(BUFMGR_MB_RDMA_LOW_WATER,
7741 tp->bufmgr_config.mbuf_read_dma_low_water);
7742 tw32(BUFMGR_MB_MACRX_LOW_WATER,
7743 tp->bufmgr_config.mbuf_mac_rx_low_water);
7744 tw32(BUFMGR_MB_HIGH_WATER,
7745 tp->bufmgr_config.mbuf_high_water);
7746 } else {
7747 tw32(BUFMGR_MB_RDMA_LOW_WATER,
7748 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
7749 tw32(BUFMGR_MB_MACRX_LOW_WATER,
7750 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
7751 tw32(BUFMGR_MB_HIGH_WATER,
7752 tp->bufmgr_config.mbuf_high_water_jumbo);
7753 }
7754 tw32(BUFMGR_DMA_LOW_WATER,
7755 tp->bufmgr_config.dma_low_water);
7756 tw32(BUFMGR_DMA_HIGH_WATER,
7757 tp->bufmgr_config.dma_high_water);
7758
7759 tw32(BUFMGR_MODE, BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE);
7760 for (i = 0; i < 2000; i++) {
7761 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
7762 break;
7763 udelay(10);
7764 }
7765 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00007766 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767 return -ENODEV;
7768 }
7769
7770 /* Setup replenish threshold. */
Michael Chanf92905d2006-06-29 20:14:29 -07007771 val = tp->rx_pending / 8;
7772 if (val == 0)
7773 val = 1;
7774 else if (val > tp->rx_std_max_post)
7775 val = tp->rx_std_max_post;
Michael Chanb5d37722006-09-27 16:06:21 -07007776 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7777 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
7778 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
7779
7780 if (val > (TG3_RX_INTERNAL_RING_SZ_5906 / 2))
7781 val = TG3_RX_INTERNAL_RING_SZ_5906 / 2;
7782 }
Michael Chanf92905d2006-06-29 20:14:29 -07007783
7784 tw32(RCVBDI_STD_THRESH, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785
7786 /* Initialize TG3_BDINFO's at:
7787 * RCVDBDI_STD_BD: standard eth size rx ring
7788 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
7789 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
7790 *
7791 * like so:
7792 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
7793 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
7794 * ring attribute flags
7795 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
7796 *
7797 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
7798 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
7799 *
7800 * The size of each ring is fixed in the firmware, but the location is
7801 * configurable.
7802 */
7803 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00007804 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00007806 ((u64) tpr->rx_std_mapping & 0xffffffff));
Matt Carlson13fa95b02010-01-12 10:11:36 +00007807 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
Matt Carlson87668d32009-11-13 13:03:34 +00007808 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
7809 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007811 /* Disable the mini ring */
7812 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
7814 BDINFO_FLAGS_DISABLED);
7815
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007816 /* Program the jumbo buffer descriptor ring control
7817 * blocks on those devices that have them.
7818 */
Matt Carlson8f666b02009-08-28 13:58:24 +00007819 if ((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) &&
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007820 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007821 /* Setup replenish threshold. */
7822 tw32(RCVBDI_JUMBO_THRESH, tp->rx_jumbo_pending / 8);
7823
Michael Chan0f893dc2005-07-25 12:30:38 -07007824 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007825 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00007826 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00007828 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlson79ed5ac2009-08-28 14:00:55 +00007830 (RX_JUMBO_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT) |
7831 BDINFO_FLAGS_USE_EXT_RECV);
Matt Carlson5fd68fb2010-01-20 16:58:07 +00007832 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
Matt Carlson87668d32009-11-13 13:03:34 +00007833 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
7834 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007835 } else {
7836 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
7837 BDINFO_FLAGS_DISABLED);
7838 }
7839
Matt Carlsonb703df62009-12-03 08:36:21 +00007840 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
7841 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007842 val = (RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT) |
7843 (RX_STD_MAX_SIZE << 2);
7844 else
7845 val = RX_STD_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007846 } else
7847 val = RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT;
7848
7849 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850
Matt Carlson411da642009-11-13 13:03:46 +00007851 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00007852 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853
Matt Carlson411da642009-11-13 13:03:46 +00007854 tpr->rx_jmb_prod_idx = (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) ?
Matt Carlson21f581a2009-08-28 14:00:25 +00007855 tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00007856 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857
Matt Carlsonb703df62009-12-03 08:36:21 +00007858 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
7859 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007860 tw32(STD_REPLENISH_LWM, 32);
7861 tw32(JMB_REPLENISH_LWM, 16);
7862 }
7863
Matt Carlson2d31eca2009-09-01 12:53:31 +00007864 tg3_rings_reset(tp);
7865
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07007867 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007868
7869 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00007870 tw32(MAC_RX_MTU_SIZE,
7871 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007872
7873 /* The slot time is changed by tg3_setup_phy if we
7874 * run at gigabit with half duplex.
7875 */
7876 tw32(MAC_TX_LENGTHS,
7877 (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
7878 (6 << TX_LENGTHS_IPG_SHIFT) |
7879 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
7880
7881 /* Receive rules. */
7882 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
7883 tw32(RCVLPC_CONFIG, 0x0181);
7884
7885 /* Calculate RDMAC_MODE setting early, we need it to determine
7886 * the RCVLPC_STATE_ENABLE mask.
7887 */
7888 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
7889 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
7890 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
7891 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
7892 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07007893
Matt Carlson0339e4e2010-02-12 14:47:09 +00007894 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
7895 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
7896
Matt Carlson57e69832008-05-25 23:48:31 -07007897 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08007898 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
7899 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07007900 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
7901 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
7902 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
7903
Michael Chan85e94ce2005-04-21 17:05:28 -07007904 /* If statement applies to 5705 and 5750 PCI devices only */
7905 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
7906 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
7907 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007908 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07007909 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007910 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
7911 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
7912 !(tp->tg3_flags2 & TG3_FLG2_IS_5788)) {
7913 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
7914 }
7915 }
7916
Michael Chan85e94ce2005-04-21 17:05:28 -07007917 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
7918 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
7919
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
Matt Carlson027455a2008-12-21 20:19:30 -08007921 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
7922
Matt Carlsone849cdc2009-11-13 13:03:38 +00007923 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
7924 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08007925 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
7926 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007927
7928 /* Receive/send statistics. */
Michael Chan16613942006-06-29 20:15:13 -07007929 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
7930 val = tr32(RCVLPC_STATS_ENABLE);
7931 val &= ~RCVLPC_STATSENAB_DACK_FIX;
7932 tw32(RCVLPC_STATS_ENABLE, val);
7933 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
7934 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007935 val = tr32(RCVLPC_STATS_ENABLE);
7936 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
7937 tw32(RCVLPC_STATS_ENABLE, val);
7938 } else {
7939 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
7940 }
7941 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
7942 tw32(SNDDATAI_STATSENAB, 0xffffff);
7943 tw32(SNDDATAI_STATSCTRL,
7944 (SNDDATAI_SCTRL_ENABLE |
7945 SNDDATAI_SCTRL_FASTUPD));
7946
7947 /* Setup host coalescing engine. */
7948 tw32(HOSTCC_MODE, 0);
7949 for (i = 0; i < 2000; i++) {
7950 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
7951 break;
7952 udelay(10);
7953 }
7954
Michael Chand244c892005-07-05 14:42:33 -07007955 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007956
Linus Torvalds1da177e2005-04-16 15:20:36 -07007957 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7958 /* Status/statistics block address. See tg3_timer,
7959 * the tg3_periodic_fetch_stats call there, and
7960 * tg3_get_stats to see how this works for 5705/5750 chips.
7961 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007962 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7963 ((u64) tp->stats_mapping >> 32));
7964 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7965 ((u64) tp->stats_mapping & 0xffffffff));
7966 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00007967
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00007969
7970 /* Clear statistics and status block memory areas */
7971 for (i = NIC_SRAM_STATS_BLK;
7972 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
7973 i += sizeof(u32)) {
7974 tg3_write_mem(tp, i, 0);
7975 udelay(40);
7976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007977 }
7978
7979 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
7980
7981 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
7982 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
7983 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7984 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
7985
Michael Chanc94e3942005-09-27 12:12:42 -07007986 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
7987 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
7988 /* reset to prevent losing 1st rx packet intermittently */
7989 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7990 udelay(10);
7991 }
7992
Matt Carlson3bda1252008-08-15 14:08:22 -07007993 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
7994 tp->mac_mode &= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
7995 else
7996 tp->mac_mode = 0;
7997 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07007999 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
8000 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
8001 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8002 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8004 udelay(40);
8005
Michael Chan314fba32005-04-21 17:07:04 -07008006 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Michael Chan9d26e212006-12-07 00:21:14 -08008007 * If TG3_FLG2_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008008 * register to preserve the GPIO settings for LOMs. The GPIOs,
8009 * whether used as inputs or outputs, are set by boot code after
8010 * reset.
8011 */
Michael Chan9d26e212006-12-07 00:21:14 -08008012 if (!(tp->tg3_flags2 & TG3_FLG2_IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008013 u32 gpio_mask;
8014
Michael Chan9d26e212006-12-07 00:21:14 -08008015 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8016 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8017 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008018
8019 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8020 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8021 GRC_LCLCTRL_GPIO_OUTPUT3;
8022
Michael Chanaf36e6b2006-03-23 01:28:06 -08008023 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8024 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8025
Gary Zambranoaaf84462007-05-05 11:51:45 -07008026 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008027 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8028
8029 /* GPIO1 must be driven high for eeprom write protect */
Michael Chan9d26e212006-12-07 00:21:14 -08008030 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT)
8031 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8032 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8035 udelay(100);
8036
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008037 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX) {
8038 val = tr32(MSGINT_MODE);
8039 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
8040 tw32(MSGINT_MODE, val);
8041 }
8042
Linus Torvalds1da177e2005-04-16 15:20:36 -07008043 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
8044 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8045 udelay(40);
8046 }
8047
8048 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8049 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8050 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8051 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8052 WDMAC_MODE_LNGREAD_ENAB);
8053
Michael Chan85e94ce2005-04-21 17:05:28 -07008054 /* If statement applies to 5705 and 5750 PCI devices only */
8055 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8056 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
8057 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) {
Matt Carlson29ea0952009-08-25 10:07:54 +00008058 if ((tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008059 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8060 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8061 /* nothing */
8062 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
8063 !(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
8064 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
8065 val |= WDMAC_MODE_RX_ACCEL;
8066 }
8067 }
8068
Michael Chand9ab5ad12006-03-20 22:27:35 -08008069 /* Enable host coalescing bug fix */
Matt Carlson321d32a2008-11-21 17:22:19 -08008070 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Matt Carlsonf51f3562008-05-25 23:45:08 -07008071 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -08008072
Matt Carlson788a0352009-11-02 14:26:03 +00008073 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8074 val |= WDMAC_MODE_BURST_ALL_DATA;
8075
Linus Torvalds1da177e2005-04-16 15:20:36 -07008076 tw32_f(WDMAC_MODE, val);
8077 udelay(40);
8078
Matt Carlson9974a352007-10-07 23:27:28 -07008079 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
8080 u16 pcix_cmd;
8081
8082 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8083 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008085 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8086 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008088 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8089 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008090 }
Matt Carlson9974a352007-10-07 23:27:28 -07008091 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8092 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093 }
8094
8095 tw32_f(RDMAC_MODE, rdmac_mode);
8096 udelay(40);
8097
8098 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
8099 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
8100 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008101
8102 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8103 tw32(SNDDATAC_MODE,
8104 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8105 else
8106 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8107
Linus Torvalds1da177e2005-04-16 15:20:36 -07008108 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8109 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
8110 tw32(RCVDBDI_MODE, RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ);
8111 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008112 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
8113 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008114 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Matt Carlson19cfaec2009-12-03 08:36:20 +00008115 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008116 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8117 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008118 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8119
8120 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8121 err = tg3_load_5701_a0_firmware_fix(tp);
8122 if (err)
8123 return err;
8124 }
8125
Linus Torvalds1da177e2005-04-16 15:20:36 -07008126 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
8127 err = tg3_load_tso_firmware(tp);
8128 if (err)
8129 return err;
8130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008131
8132 tp->tx_mode = TX_MODE_ENABLE;
8133 tw32_f(MAC_TX_MODE, tp->tx_mode);
8134 udelay(100);
8135
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008136 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS) {
8137 u32 reg = MAC_RSS_INDIR_TBL_0;
8138 u8 *ent = (u8 *)&val;
8139
8140 /* Setup the indirection table */
8141 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8142 int idx = i % sizeof(val);
8143
8144 ent[idx] = i % (tp->irq_cnt - 1);
8145 if (idx == sizeof(val) - 1) {
8146 tw32(reg, val);
8147 reg += 4;
8148 }
8149 }
8150
8151 /* Setup the "secret" hash key. */
8152 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8153 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8154 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8155 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8156 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8157 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8158 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8159 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8160 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8161 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8162 }
8163
Linus Torvalds1da177e2005-04-16 15:20:36 -07008164 tp->rx_mode = RX_MODE_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08008165 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Michael Chanaf36e6b2006-03-23 01:28:06 -08008166 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8167
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008168 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS)
8169 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8170 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8171 RX_MODE_RSS_IPV6_HASH_EN |
8172 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8173 RX_MODE_RSS_IPV4_HASH_EN |
8174 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8175
Linus Torvalds1da177e2005-04-16 15:20:36 -07008176 tw32_f(MAC_RX_MODE, tp->rx_mode);
8177 udelay(10);
8178
Linus Torvalds1da177e2005-04-16 15:20:36 -07008179 tw32(MAC_LED_CTRL, tp->led_ctrl);
8180
8181 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Michael Chanc94e3942005-09-27 12:12:42 -07008182 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008183 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8184 udelay(10);
8185 }
8186 tw32_f(MAC_RX_MODE, tp->rx_mode);
8187 udelay(10);
8188
8189 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
8190 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
8191 !(tp->tg3_flags2 & TG3_FLG2_SERDES_PREEMPHASIS)) {
8192 /* Set drive transmission level to 1.2V */
8193 /* only if the signal pre-emphasis bit is not set */
8194 val = tr32(MAC_SERDES_CFG);
8195 val &= 0xfffff000;
8196 val |= 0x880;
8197 tw32(MAC_SERDES_CFG, val);
8198 }
8199 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8200 tw32(MAC_SERDES_CFG, 0x616000);
8201 }
8202
8203 /* Prevent chip from dropping frames when flow control
8204 * is enabled.
8205 */
Matt Carlson666bc832010-01-20 16:58:03 +00008206 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8207 val = 1;
8208 else
8209 val = 2;
8210 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211
8212 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
8213 (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
8214 /* Use hardware link auto-negotiation */
8215 tp->tg3_flags2 |= TG3_FLG2_HW_AUTONEG;
8216 }
8217
Michael Chand4d2c552006-03-20 17:47:20 -08008218 if ((tp->tg3_flags2 & TG3_FLG2_MII_SERDES) &&
8219 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
8220 u32 tmp;
8221
8222 tmp = tr32(SERDES_RX_CTRL);
8223 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
8224 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
8225 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
8226 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8227 }
8228
Matt Carlsondd477002008-05-25 23:45:58 -07008229 if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
8230 if (tp->link_config.phy_is_low_power) {
8231 tp->link_config.phy_is_low_power = 0;
8232 tp->link_config.speed = tp->link_config.orig_speed;
8233 tp->link_config.duplex = tp->link_config.orig_duplex;
8234 tp->link_config.autoneg = tp->link_config.orig_autoneg;
8235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008236
Matt Carlsondd477002008-05-25 23:45:58 -07008237 err = tg3_setup_phy(tp, 0);
8238 if (err)
8239 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008240
Matt Carlsondd477002008-05-25 23:45:58 -07008241 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
Matt Carlson7f97a4b2009-08-25 10:10:03 +00008242 !(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07008243 u32 tmp;
8244
8245 /* Clear CRC stats. */
8246 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
8247 tg3_writephy(tp, MII_TG3_TEST1,
8248 tmp | MII_TG3_TEST1_CRC_EN);
8249 tg3_readphy(tp, 0x14, &tmp);
8250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251 }
8252 }
8253
8254 __tg3_set_rx_mode(tp->dev);
8255
8256 /* Initialize receive rules. */
8257 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
8258 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
8259 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
8260 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
8261
Michael Chan4cf78e42005-07-25 12:29:19 -07008262 if ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
Michael Chana4e2b342005-10-26 15:46:52 -07008263 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008264 limit = 8;
8265 else
8266 limit = 16;
8267 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
8268 limit -= 4;
8269 switch (limit) {
8270 case 16:
8271 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
8272 case 15:
8273 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
8274 case 14:
8275 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
8276 case 13:
8277 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
8278 case 12:
8279 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
8280 case 11:
8281 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
8282 case 10:
8283 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
8284 case 9:
8285 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
8286 case 8:
8287 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
8288 case 7:
8289 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
8290 case 6:
8291 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
8292 case 5:
8293 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
8294 case 4:
8295 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
8296 case 3:
8297 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
8298 case 2:
8299 case 1:
8300
8301 default:
8302 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008304
Matt Carlson9ce768e2007-10-11 19:49:11 -07008305 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
8306 /* Write our heartbeat update interval to APE. */
8307 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
8308 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07008309
Linus Torvalds1da177e2005-04-16 15:20:36 -07008310 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
8311
Linus Torvalds1da177e2005-04-16 15:20:36 -07008312 return 0;
8313}
8314
8315/* Called at device open time to get the chip ready for
8316 * packet processing. Invoked with tp->lock held.
8317 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008318static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008319{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008320 tg3_switch_clocks(tp);
8321
8322 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
8323
Matt Carlson2f751b62008-08-04 23:17:34 -07008324 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325}
8326
8327#define TG3_STAT_ADD32(PSTAT, REG) \
8328do { u32 __val = tr32(REG); \
8329 (PSTAT)->low += __val; \
8330 if ((PSTAT)->low < __val) \
8331 (PSTAT)->high += 1; \
8332} while (0)
8333
8334static void tg3_periodic_fetch_stats(struct tg3 *tp)
8335{
8336 struct tg3_hw_stats *sp = tp->hw_stats;
8337
8338 if (!netif_carrier_ok(tp->dev))
8339 return;
8340
8341 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
8342 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
8343 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
8344 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
8345 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
8346 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
8347 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
8348 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
8349 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
8350 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
8351 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
8352 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
8353 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
8354
8355 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
8356 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
8357 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
8358 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
8359 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
8360 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
8361 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
8362 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
8363 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
8364 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
8365 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
8366 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
8367 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
8368 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07008369
8370 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
8371 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
8372 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008373}
8374
8375static void tg3_timer(unsigned long __opaque)
8376{
8377 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008378
Michael Chanf475f162006-03-27 23:20:14 -08008379 if (tp->irq_sync)
8380 goto restart_timer;
8381
David S. Millerf47c11e2005-06-24 20:18:35 -07008382 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008383
David S. Millerfac9b832005-05-18 22:46:34 -07008384 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
8385 /* All of this garbage is because when using non-tagged
8386 * IRQ status the mailbox/status_block protocol the chip
8387 * uses with the cpu is race prone.
8388 */
Matt Carlson898a56f2009-08-28 14:02:40 +00008389 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07008390 tw32(GRC_LOCAL_CTRL,
8391 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
8392 } else {
8393 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008394 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07008395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008396
David S. Millerfac9b832005-05-18 22:46:34 -07008397 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
8398 tp->tg3_flags2 |= TG3_FLG2_RESTART_TIMER;
David S. Millerf47c11e2005-06-24 20:18:35 -07008399 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07008400 schedule_work(&tp->reset_task);
8401 return;
8402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008403 }
8404
Linus Torvalds1da177e2005-04-16 15:20:36 -07008405 /* This part only runs once per second. */
8406 if (!--tp->timer_counter) {
David S. Millerfac9b832005-05-18 22:46:34 -07008407 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
8408 tg3_periodic_fetch_stats(tp);
8409
Linus Torvalds1da177e2005-04-16 15:20:36 -07008410 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
8411 u32 mac_stat;
8412 int phy_event;
8413
8414 mac_stat = tr32(MAC_STATUS);
8415
8416 phy_event = 0;
8417 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) {
8418 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
8419 phy_event = 1;
8420 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
8421 phy_event = 1;
8422
8423 if (phy_event)
8424 tg3_setup_phy(tp, 0);
8425 } else if (tp->tg3_flags & TG3_FLAG_POLL_SERDES) {
8426 u32 mac_stat = tr32(MAC_STATUS);
8427 int need_setup = 0;
8428
8429 if (netif_carrier_ok(tp->dev) &&
8430 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
8431 need_setup = 1;
8432 }
8433 if (! netif_carrier_ok(tp->dev) &&
8434 (mac_stat & (MAC_STATUS_PCS_SYNCED |
8435 MAC_STATUS_SIGNAL_DET))) {
8436 need_setup = 1;
8437 }
8438 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07008439 if (!tp->serdes_counter) {
8440 tw32_f(MAC_MODE,
8441 (tp->mac_mode &
8442 ~MAC_MODE_PORT_MODE_MASK));
8443 udelay(40);
8444 tw32_f(MAC_MODE, tp->mac_mode);
8445 udelay(40);
8446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008447 tg3_setup_phy(tp, 0);
8448 }
Michael Chan747e8f82005-07-25 12:33:22 -07008449 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
8450 tg3_serdes_parallel_detect(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008451
8452 tp->timer_counter = tp->timer_multiplier;
8453 }
8454
Michael Chan130b8e42006-09-27 16:00:40 -07008455 /* Heartbeat is only sent once every 2 seconds.
8456 *
8457 * The heartbeat is to tell the ASF firmware that the host
8458 * driver is still alive. In the event that the OS crashes,
8459 * ASF needs to reset the hardware to free up the FIFO space
8460 * that may be filled with rx packets destined for the host.
8461 * If the FIFO is full, ASF will no longer function properly.
8462 *
8463 * Unintended resets have been reported on real time kernels
8464 * where the timer doesn't run on time. Netpoll will also have
8465 * same problem.
8466 *
8467 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
8468 * to check the ring condition when the heartbeat is expiring
8469 * before doing the reset. This will prevent most unintended
8470 * resets.
8471 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472 if (!--tp->asf_counter) {
Matt Carlsonbc7959b2008-08-15 14:08:55 -07008473 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
8474 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07008475 tg3_wait_for_event_ack(tp);
8476
Michael Chanbbadf502006-04-06 21:46:34 -07008477 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07008478 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07008479 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Michael Chan28fbef72005-10-26 15:48:35 -07008480 /* 5 seconds timeout */
Michael Chanbbadf502006-04-06 21:46:34 -07008481 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, 5);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008482
8483 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008484 }
8485 tp->asf_counter = tp->asf_multiplier;
8486 }
8487
David S. Millerf47c11e2005-06-24 20:18:35 -07008488 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008489
Michael Chanf475f162006-03-27 23:20:14 -08008490restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07008491 tp->timer.expires = jiffies + tp->timer_offset;
8492 add_timer(&tp->timer);
8493}
8494
Matt Carlson4f125f42009-09-01 12:55:02 +00008495static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08008496{
David Howells7d12e782006-10-05 14:55:46 +01008497 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008498 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00008499 char *name;
8500 struct tg3_napi *tnapi = &tp->napi[irq_num];
8501
8502 if (tp->irq_cnt == 1)
8503 name = tp->dev->name;
8504 else {
8505 name = &tnapi->irq_lbl[0];
8506 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
8507 name[IFNAMSIZ-1] = 0;
8508 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008509
Matt Carlson679563f2009-09-01 12:55:46 +00008510 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI_OR_MSIX) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08008511 fn = tg3_msi;
8512 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
8513 fn = tg3_msi_1shot;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07008514 flags = IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008515 } else {
8516 fn = tg3_interrupt;
8517 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
8518 fn = tg3_interrupt_tagged;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07008519 flags = IRQF_SHARED | IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008520 }
Matt Carlson4f125f42009-09-01 12:55:02 +00008521
8522 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008523}
8524
Michael Chan79381092005-04-21 17:13:59 -07008525static int tg3_test_interrupt(struct tg3 *tp)
8526{
Matt Carlson09943a12009-08-28 14:01:57 +00008527 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07008528 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07008529 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008530 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07008531
Michael Chand4bc3922005-05-29 14:59:20 -07008532 if (!netif_running(dev))
8533 return -ENODEV;
8534
Michael Chan79381092005-04-21 17:13:59 -07008535 tg3_disable_ints(tp);
8536
Matt Carlson4f125f42009-09-01 12:55:02 +00008537 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008538
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008539 /*
8540 * Turn off MSI one shot mode. Otherwise this test has no
8541 * observable way to know whether the interrupt was delivered.
8542 */
Matt Carlsonb703df62009-12-03 08:36:21 +00008543 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8544 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008545 (tp->tg3_flags2 & TG3_FLG2_USING_MSI)) {
8546 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
8547 tw32(MSGINT_MODE, val);
8548 }
8549
Matt Carlson4f125f42009-09-01 12:55:02 +00008550 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00008551 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008552 if (err)
8553 return err;
8554
Matt Carlson898a56f2009-08-28 14:02:40 +00008555 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07008556 tg3_enable_ints(tp);
8557
8558 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008559 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07008560
8561 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07008562 u32 int_mbox, misc_host_ctrl;
8563
Matt Carlson898a56f2009-08-28 14:02:40 +00008564 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07008565 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
8566
8567 if ((int_mbox != 0) ||
8568 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
8569 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07008570 break;
Michael Chanb16250e2006-09-27 16:10:14 -07008571 }
8572
Michael Chan79381092005-04-21 17:13:59 -07008573 msleep(10);
8574 }
8575
8576 tg3_disable_ints(tp);
8577
Matt Carlson4f125f42009-09-01 12:55:02 +00008578 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008579
Matt Carlson4f125f42009-09-01 12:55:02 +00008580 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07008581
8582 if (err)
8583 return err;
8584
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008585 if (intr_ok) {
8586 /* Reenable MSI one shot mode. */
Matt Carlsonb703df62009-12-03 08:36:21 +00008587 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8588 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008589 (tp->tg3_flags2 & TG3_FLG2_USING_MSI)) {
8590 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
8591 tw32(MSGINT_MODE, val);
8592 }
Michael Chan79381092005-04-21 17:13:59 -07008593 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008594 }
Michael Chan79381092005-04-21 17:13:59 -07008595
8596 return -EIO;
8597}
8598
8599/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
8600 * successfully restored
8601 */
8602static int tg3_test_msi(struct tg3 *tp)
8603{
Michael Chan79381092005-04-21 17:13:59 -07008604 int err;
8605 u16 pci_cmd;
8606
8607 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSI))
8608 return 0;
8609
8610 /* Turn off SERR reporting in case MSI terminates with Master
8611 * Abort.
8612 */
8613 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
8614 pci_write_config_word(tp->pdev, PCI_COMMAND,
8615 pci_cmd & ~PCI_COMMAND_SERR);
8616
8617 err = tg3_test_interrupt(tp);
8618
8619 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
8620
8621 if (!err)
8622 return 0;
8623
8624 /* other failures */
8625 if (err != -EIO)
8626 return err;
8627
8628 /* MSI test failed, go back to INTx mode */
Joe Perches05dbe002010-02-17 19:44:19 +00008629 netdev_warn(tp->dev, "No interrupt was generated using MSI, switching to INTx mode\n"
8630 "Please report this failure to the PCI maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07008631
Matt Carlson4f125f42009-09-01 12:55:02 +00008632 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00008633
Michael Chan79381092005-04-21 17:13:59 -07008634 pci_disable_msi(tp->pdev);
8635
8636 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
8637
Matt Carlson4f125f42009-09-01 12:55:02 +00008638 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07008639 if (err)
8640 return err;
8641
8642 /* Need to reset the chip because the MSI cycle may have terminated
8643 * with Master Abort.
8644 */
David S. Millerf47c11e2005-06-24 20:18:35 -07008645 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07008646
Michael Chan944d9802005-05-29 14:57:48 -07008647 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008648 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07008649
David S. Millerf47c11e2005-06-24 20:18:35 -07008650 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07008651
8652 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00008653 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07008654
8655 return err;
8656}
8657
Matt Carlson9e9fd122009-01-19 16:57:45 -08008658static int tg3_request_firmware(struct tg3 *tp)
8659{
8660 const __be32 *fw_data;
8661
8662 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00008663 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
8664 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08008665 return -ENOENT;
8666 }
8667
8668 fw_data = (void *)tp->fw->data;
8669
8670 /* Firmware blob starts with version numbers, followed by
8671 * start address and _full_ length including BSS sections
8672 * (which must be longer than the actual data, of course
8673 */
8674
8675 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
8676 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00008677 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
8678 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08008679 release_firmware(tp->fw);
8680 tp->fw = NULL;
8681 return -EINVAL;
8682 }
8683
8684 /* We no longer need firmware; we have it. */
8685 tp->fw_needed = NULL;
8686 return 0;
8687}
8688
Matt Carlson679563f2009-09-01 12:55:46 +00008689static bool tg3_enable_msix(struct tg3 *tp)
8690{
8691 int i, rc, cpus = num_online_cpus();
8692 struct msix_entry msix_ent[tp->irq_max];
8693
8694 if (cpus == 1)
8695 /* Just fallback to the simpler MSI mode. */
8696 return false;
8697
8698 /*
8699 * We want as many rx rings enabled as there are cpus.
8700 * The first MSIX vector only deals with link interrupts, etc,
8701 * so we add one to the number of vectors we are requesting.
8702 */
8703 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
8704
8705 for (i = 0; i < tp->irq_max; i++) {
8706 msix_ent[i].entry = i;
8707 msix_ent[i].vector = 0;
8708 }
8709
8710 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
8711 if (rc != 0) {
8712 if (rc < TG3_RSS_MIN_NUM_MSIX_VECS)
8713 return false;
8714 if (pci_enable_msix(tp->pdev, msix_ent, rc))
8715 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00008716 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
8717 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00008718 tp->irq_cnt = rc;
8719 }
8720
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008721 tp->tg3_flags3 |= TG3_FLG3_ENABLE_RSS;
8722
Matt Carlson679563f2009-09-01 12:55:46 +00008723 for (i = 0; i < tp->irq_max; i++)
8724 tp->napi[i].irq_vec = msix_ent[i].vector;
8725
Matt Carlson19cfaec2009-12-03 08:36:20 +00008726 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
8727 tp->tg3_flags3 |= TG3_FLG3_ENABLE_TSS;
8728 tp->dev->real_num_tx_queues = tp->irq_cnt - 1;
8729 } else
8730 tp->dev->real_num_tx_queues = 1;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008731
Matt Carlson679563f2009-09-01 12:55:46 +00008732 return true;
8733}
8734
Matt Carlson07b01732009-08-28 14:01:15 +00008735static void tg3_ints_init(struct tg3 *tp)
8736{
Matt Carlson679563f2009-09-01 12:55:46 +00008737 if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSI_OR_MSIX) &&
8738 !(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00008739 /* All MSI supporting chips should support tagged
8740 * status. Assert that this is the case.
8741 */
Joe Perches05dbe002010-02-17 19:44:19 +00008742 netdev_warn(tp->dev, "MSI without TAGGED? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00008743 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00008744 }
Matt Carlson4f125f42009-09-01 12:55:02 +00008745
Matt Carlson679563f2009-09-01 12:55:46 +00008746 if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX) && tg3_enable_msix(tp))
8747 tp->tg3_flags2 |= TG3_FLG2_USING_MSIX;
8748 else if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSI) &&
8749 pci_enable_msi(tp->pdev) == 0)
8750 tp->tg3_flags2 |= TG3_FLG2_USING_MSI;
8751
8752 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI_OR_MSIX) {
8753 u32 msi_mode = tr32(MSGINT_MODE);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008754 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
8755 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson679563f2009-09-01 12:55:46 +00008756 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
8757 }
8758defcfg:
8759 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSIX)) {
8760 tp->irq_cnt = 1;
8761 tp->napi[0].irq_vec = tp->pdev->irq;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008762 tp->dev->real_num_tx_queues = 1;
Matt Carlson679563f2009-09-01 12:55:46 +00008763 }
Matt Carlson07b01732009-08-28 14:01:15 +00008764}
8765
8766static void tg3_ints_fini(struct tg3 *tp)
8767{
Matt Carlson679563f2009-09-01 12:55:46 +00008768 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
8769 pci_disable_msix(tp->pdev);
8770 else if (tp->tg3_flags2 & TG3_FLG2_USING_MSI)
8771 pci_disable_msi(tp->pdev);
8772 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI_OR_MSIX;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008773 tp->tg3_flags3 &= ~TG3_FLG3_ENABLE_RSS;
Matt Carlson07b01732009-08-28 14:01:15 +00008774}
8775
Linus Torvalds1da177e2005-04-16 15:20:36 -07008776static int tg3_open(struct net_device *dev)
8777{
8778 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00008779 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008780
Matt Carlson9e9fd122009-01-19 16:57:45 -08008781 if (tp->fw_needed) {
8782 err = tg3_request_firmware(tp);
8783 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8784 if (err)
8785 return err;
8786 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00008787 netdev_warn(tp->dev, "TSO capability disabled\n");
Matt Carlson9e9fd122009-01-19 16:57:45 -08008788 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
8789 } else if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00008790 netdev_notice(tp->dev, "TSO capability restored\n");
Matt Carlson9e9fd122009-01-19 16:57:45 -08008791 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
8792 }
8793 }
8794
Michael Chanc49a1562006-12-17 17:07:29 -08008795 netif_carrier_off(tp->dev);
8796
Michael Chanbc1c7562006-03-20 17:48:03 -08008797 err = tg3_set_power_state(tp, PCI_D0);
Matt Carlson2f751b62008-08-04 23:17:34 -07008798 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08008799 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07008800
8801 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08008802
Linus Torvalds1da177e2005-04-16 15:20:36 -07008803 tg3_disable_ints(tp);
8804 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
8805
David S. Millerf47c11e2005-06-24 20:18:35 -07008806 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008807
Matt Carlson679563f2009-09-01 12:55:46 +00008808 /*
8809 * Setup interrupts first so we know how
8810 * many NAPI resources to allocate
8811 */
8812 tg3_ints_init(tp);
8813
Linus Torvalds1da177e2005-04-16 15:20:36 -07008814 /* The placement of this call is tied
8815 * to the setup and use of Host TX descriptors.
8816 */
8817 err = tg3_alloc_consistent(tp);
8818 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008819 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008820
Matt Carlsonfed97812009-09-01 13:10:19 +00008821 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07008822
Matt Carlson4f125f42009-09-01 12:55:02 +00008823 for (i = 0; i < tp->irq_cnt; i++) {
8824 struct tg3_napi *tnapi = &tp->napi[i];
8825 err = tg3_request_irq(tp, i);
8826 if (err) {
8827 for (i--; i >= 0; i--)
8828 free_irq(tnapi->irq_vec, tnapi);
8829 break;
8830 }
8831 }
Matt Carlson07b01732009-08-28 14:01:15 +00008832
8833 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008834 goto err_out2;
Matt Carlson07b01732009-08-28 14:01:15 +00008835
David S. Millerf47c11e2005-06-24 20:18:35 -07008836 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008837
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008838 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07008840 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008841 tg3_free_rings(tp);
8842 } else {
David S. Millerfac9b832005-05-18 22:46:34 -07008843 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
8844 tp->timer_offset = HZ;
8845 else
8846 tp->timer_offset = HZ / 10;
8847
8848 BUG_ON(tp->timer_offset > HZ);
8849 tp->timer_counter = tp->timer_multiplier =
8850 (HZ / tp->timer_offset);
8851 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07008852 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008853
8854 init_timer(&tp->timer);
8855 tp->timer.expires = jiffies + tp->timer_offset;
8856 tp->timer.data = (unsigned long) tp;
8857 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008858 }
8859
David S. Millerf47c11e2005-06-24 20:18:35 -07008860 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008861
Matt Carlson07b01732009-08-28 14:01:15 +00008862 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008863 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008864
Michael Chan79381092005-04-21 17:13:59 -07008865 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
8866 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07008867
Michael Chan79381092005-04-21 17:13:59 -07008868 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07008869 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07008870 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07008871 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07008872 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07008873
Matt Carlson679563f2009-09-01 12:55:46 +00008874 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07008875 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008876
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008877 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
Matt Carlsonb703df62009-12-03 08:36:21 +00008878 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008879 (tp->tg3_flags2 & TG3_FLG2_USING_MSI) &&
8880 (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)) {
8881 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008882
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008883 tw32(PCIE_TRANSACTION_CFG,
8884 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008885 }
Michael Chan79381092005-04-21 17:13:59 -07008886 }
8887
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07008888 tg3_phy_start(tp);
8889
David S. Millerf47c11e2005-06-24 20:18:35 -07008890 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008891
Michael Chan79381092005-04-21 17:13:59 -07008892 add_timer(&tp->timer);
8893 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008894 tg3_enable_ints(tp);
8895
David S. Millerf47c11e2005-06-24 20:18:35 -07008896 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008897
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008898 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008899
8900 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00008901
Matt Carlson679563f2009-09-01 12:55:46 +00008902err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00008903 for (i = tp->irq_cnt - 1; i >= 0; i--) {
8904 struct tg3_napi *tnapi = &tp->napi[i];
8905 free_irq(tnapi->irq_vec, tnapi);
8906 }
Matt Carlson07b01732009-08-28 14:01:15 +00008907
Matt Carlson679563f2009-09-01 12:55:46 +00008908err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00008909 tg3_napi_disable(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00008910 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00008911
8912err_out1:
8913 tg3_ints_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00008914 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008915}
8916
8917#if 0
8918/*static*/ void tg3_dump_state(struct tg3 *tp)
8919{
8920 u32 val32, val32_2, val32_3, val32_4, val32_5;
8921 u16 val16;
8922 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008923 struct tg3_hw_status *sblk = tp->napi[0]->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008924
8925 pci_read_config_word(tp->pdev, PCI_STATUS, &val16);
8926 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE, &val32);
8927 printk("DEBUG: PCI status [%04x] TG3PCI state[%08x]\n",
8928 val16, val32);
8929
8930 /* MAC block */
8931 printk("DEBUG: MAC_MODE[%08x] MAC_STATUS[%08x]\n",
8932 tr32(MAC_MODE), tr32(MAC_STATUS));
8933 printk(" MAC_EVENT[%08x] MAC_LED_CTRL[%08x]\n",
8934 tr32(MAC_EVENT), tr32(MAC_LED_CTRL));
8935 printk("DEBUG: MAC_TX_MODE[%08x] MAC_TX_STATUS[%08x]\n",
8936 tr32(MAC_TX_MODE), tr32(MAC_TX_STATUS));
8937 printk(" MAC_RX_MODE[%08x] MAC_RX_STATUS[%08x]\n",
8938 tr32(MAC_RX_MODE), tr32(MAC_RX_STATUS));
8939
8940 /* Send data initiator control block */
8941 printk("DEBUG: SNDDATAI_MODE[%08x] SNDDATAI_STATUS[%08x]\n",
8942 tr32(SNDDATAI_MODE), tr32(SNDDATAI_STATUS));
8943 printk(" SNDDATAI_STATSCTRL[%08x]\n",
8944 tr32(SNDDATAI_STATSCTRL));
8945
8946 /* Send data completion control block */
8947 printk("DEBUG: SNDDATAC_MODE[%08x]\n", tr32(SNDDATAC_MODE));
8948
8949 /* Send BD ring selector block */
8950 printk("DEBUG: SNDBDS_MODE[%08x] SNDBDS_STATUS[%08x]\n",
8951 tr32(SNDBDS_MODE), tr32(SNDBDS_STATUS));
8952
8953 /* Send BD initiator control block */
8954 printk("DEBUG: SNDBDI_MODE[%08x] SNDBDI_STATUS[%08x]\n",
8955 tr32(SNDBDI_MODE), tr32(SNDBDI_STATUS));
8956
8957 /* Send BD completion control block */
8958 printk("DEBUG: SNDBDC_MODE[%08x]\n", tr32(SNDBDC_MODE));
8959
8960 /* Receive list placement control block */
8961 printk("DEBUG: RCVLPC_MODE[%08x] RCVLPC_STATUS[%08x]\n",
8962 tr32(RCVLPC_MODE), tr32(RCVLPC_STATUS));
8963 printk(" RCVLPC_STATSCTRL[%08x]\n",
8964 tr32(RCVLPC_STATSCTRL));
8965
8966 /* Receive data and receive BD initiator control block */
8967 printk("DEBUG: RCVDBDI_MODE[%08x] RCVDBDI_STATUS[%08x]\n",
8968 tr32(RCVDBDI_MODE), tr32(RCVDBDI_STATUS));
8969
8970 /* Receive data completion control block */
8971 printk("DEBUG: RCVDCC_MODE[%08x]\n",
8972 tr32(RCVDCC_MODE));
8973
8974 /* Receive BD initiator control block */
8975 printk("DEBUG: RCVBDI_MODE[%08x] RCVBDI_STATUS[%08x]\n",
8976 tr32(RCVBDI_MODE), tr32(RCVBDI_STATUS));
8977
8978 /* Receive BD completion control block */
8979 printk("DEBUG: RCVCC_MODE[%08x] RCVCC_STATUS[%08x]\n",
8980 tr32(RCVCC_MODE), tr32(RCVCC_STATUS));
8981
8982 /* Receive list selector control block */
8983 printk("DEBUG: RCVLSC_MODE[%08x] RCVLSC_STATUS[%08x]\n",
8984 tr32(RCVLSC_MODE), tr32(RCVLSC_STATUS));
8985
8986 /* Mbuf cluster free block */
8987 printk("DEBUG: MBFREE_MODE[%08x] MBFREE_STATUS[%08x]\n",
8988 tr32(MBFREE_MODE), tr32(MBFREE_STATUS));
8989
8990 /* Host coalescing control block */
8991 printk("DEBUG: HOSTCC_MODE[%08x] HOSTCC_STATUS[%08x]\n",
8992 tr32(HOSTCC_MODE), tr32(HOSTCC_STATUS));
8993 printk("DEBUG: HOSTCC_STATS_BLK_HOST_ADDR[%08x%08x]\n",
8994 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
8995 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
8996 printk("DEBUG: HOSTCC_STATUS_BLK_HOST_ADDR[%08x%08x]\n",
8997 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
8998 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
8999 printk("DEBUG: HOSTCC_STATS_BLK_NIC_ADDR[%08x]\n",
9000 tr32(HOSTCC_STATS_BLK_NIC_ADDR));
9001 printk("DEBUG: HOSTCC_STATUS_BLK_NIC_ADDR[%08x]\n",
9002 tr32(HOSTCC_STATUS_BLK_NIC_ADDR));
9003
9004 /* Memory arbiter control block */
9005 printk("DEBUG: MEMARB_MODE[%08x] MEMARB_STATUS[%08x]\n",
9006 tr32(MEMARB_MODE), tr32(MEMARB_STATUS));
9007
9008 /* Buffer manager control block */
9009 printk("DEBUG: BUFMGR_MODE[%08x] BUFMGR_STATUS[%08x]\n",
9010 tr32(BUFMGR_MODE), tr32(BUFMGR_STATUS));
9011 printk("DEBUG: BUFMGR_MB_POOL_ADDR[%08x] BUFMGR_MB_POOL_SIZE[%08x]\n",
9012 tr32(BUFMGR_MB_POOL_ADDR), tr32(BUFMGR_MB_POOL_SIZE));
9013 printk("DEBUG: BUFMGR_DMA_DESC_POOL_ADDR[%08x] "
9014 "BUFMGR_DMA_DESC_POOL_SIZE[%08x]\n",
9015 tr32(BUFMGR_DMA_DESC_POOL_ADDR),
9016 tr32(BUFMGR_DMA_DESC_POOL_SIZE));
9017
9018 /* Read DMA control block */
9019 printk("DEBUG: RDMAC_MODE[%08x] RDMAC_STATUS[%08x]\n",
9020 tr32(RDMAC_MODE), tr32(RDMAC_STATUS));
9021
9022 /* Write DMA control block */
9023 printk("DEBUG: WDMAC_MODE[%08x] WDMAC_STATUS[%08x]\n",
9024 tr32(WDMAC_MODE), tr32(WDMAC_STATUS));
9025
9026 /* DMA completion block */
9027 printk("DEBUG: DMAC_MODE[%08x]\n",
9028 tr32(DMAC_MODE));
9029
9030 /* GRC block */
9031 printk("DEBUG: GRC_MODE[%08x] GRC_MISC_CFG[%08x]\n",
9032 tr32(GRC_MODE), tr32(GRC_MISC_CFG));
9033 printk("DEBUG: GRC_LOCAL_CTRL[%08x]\n",
9034 tr32(GRC_LOCAL_CTRL));
9035
9036 /* TG3_BDINFOs */
9037 printk("DEBUG: RCVDBDI_JUMBO_BD[%08x%08x:%08x:%08x]\n",
9038 tr32(RCVDBDI_JUMBO_BD + 0x0),
9039 tr32(RCVDBDI_JUMBO_BD + 0x4),
9040 tr32(RCVDBDI_JUMBO_BD + 0x8),
9041 tr32(RCVDBDI_JUMBO_BD + 0xc));
9042 printk("DEBUG: RCVDBDI_STD_BD[%08x%08x:%08x:%08x]\n",
9043 tr32(RCVDBDI_STD_BD + 0x0),
9044 tr32(RCVDBDI_STD_BD + 0x4),
9045 tr32(RCVDBDI_STD_BD + 0x8),
9046 tr32(RCVDBDI_STD_BD + 0xc));
9047 printk("DEBUG: RCVDBDI_MINI_BD[%08x%08x:%08x:%08x]\n",
9048 tr32(RCVDBDI_MINI_BD + 0x0),
9049 tr32(RCVDBDI_MINI_BD + 0x4),
9050 tr32(RCVDBDI_MINI_BD + 0x8),
9051 tr32(RCVDBDI_MINI_BD + 0xc));
9052
9053 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x0, &val32);
9054 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x4, &val32_2);
9055 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x8, &val32_3);
9056 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0xc, &val32_4);
9057 printk("DEBUG: SRAM_SEND_RCB_0[%08x%08x:%08x:%08x]\n",
9058 val32, val32_2, val32_3, val32_4);
9059
9060 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x0, &val32);
9061 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x4, &val32_2);
9062 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x8, &val32_3);
9063 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0xc, &val32_4);
9064 printk("DEBUG: SRAM_RCV_RET_RCB_0[%08x%08x:%08x:%08x]\n",
9065 val32, val32_2, val32_3, val32_4);
9066
9067 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x0, &val32);
9068 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x4, &val32_2);
9069 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x8, &val32_3);
9070 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0xc, &val32_4);
9071 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x10, &val32_5);
9072 printk("DEBUG: SRAM_STATUS_BLK[%08x:%08x:%08x:%08x:%08x]\n",
9073 val32, val32_2, val32_3, val32_4, val32_5);
9074
9075 /* SW status block */
Matt Carlson898a56f2009-08-28 14:02:40 +00009076 printk(KERN_DEBUG
9077 "Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
9078 sblk->status,
9079 sblk->status_tag,
9080 sblk->rx_jumbo_consumer,
9081 sblk->rx_consumer,
9082 sblk->rx_mini_consumer,
9083 sblk->idx[0].rx_producer,
9084 sblk->idx[0].tx_consumer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009085
9086 /* SW statistics block */
9087 printk("DEBUG: Host statistics block [%08x:%08x:%08x:%08x]\n",
9088 ((u32 *)tp->hw_stats)[0],
9089 ((u32 *)tp->hw_stats)[1],
9090 ((u32 *)tp->hw_stats)[2],
9091 ((u32 *)tp->hw_stats)[3]);
9092
9093 /* Mailboxes */
9094 printk("DEBUG: SNDHOST_PROD[%08x%08x] SNDNIC_PROD[%08x%08x]\n",
Michael Chan09ee9292005-08-09 20:17:00 -07009095 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x0),
9096 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x4),
9097 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x0),
9098 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x4));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009099
9100 /* NIC side send descriptors. */
9101 for (i = 0; i < 6; i++) {
9102 unsigned long txd;
9103
9104 txd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_TX_BUFFER_DESC
9105 + (i * sizeof(struct tg3_tx_buffer_desc));
9106 printk("DEBUG: NIC TXD(%d)[%08x:%08x:%08x:%08x]\n",
9107 i,
9108 readl(txd + 0x0), readl(txd + 0x4),
9109 readl(txd + 0x8), readl(txd + 0xc));
9110 }
9111
9112 /* NIC side RX descriptors. */
9113 for (i = 0; i < 6; i++) {
9114 unsigned long rxd;
9115
9116 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_BUFFER_DESC
9117 + (i * sizeof(struct tg3_rx_buffer_desc));
9118 printk("DEBUG: NIC RXD_STD(%d)[0][%08x:%08x:%08x:%08x]\n",
9119 i,
9120 readl(rxd + 0x0), readl(rxd + 0x4),
9121 readl(rxd + 0x8), readl(rxd + 0xc));
9122 rxd += (4 * sizeof(u32));
9123 printk("DEBUG: NIC RXD_STD(%d)[1][%08x:%08x:%08x:%08x]\n",
9124 i,
9125 readl(rxd + 0x0), readl(rxd + 0x4),
9126 readl(rxd + 0x8), readl(rxd + 0xc));
9127 }
9128
9129 for (i = 0; i < 6; i++) {
9130 unsigned long rxd;
9131
9132 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_JUMBO_BUFFER_DESC
9133 + (i * sizeof(struct tg3_rx_buffer_desc));
9134 printk("DEBUG: NIC RXD_JUMBO(%d)[0][%08x:%08x:%08x:%08x]\n",
9135 i,
9136 readl(rxd + 0x0), readl(rxd + 0x4),
9137 readl(rxd + 0x8), readl(rxd + 0xc));
9138 rxd += (4 * sizeof(u32));
9139 printk("DEBUG: NIC RXD_JUMBO(%d)[1][%08x:%08x:%08x:%08x]\n",
9140 i,
9141 readl(rxd + 0x0), readl(rxd + 0x4),
9142 readl(rxd + 0x8), readl(rxd + 0xc));
9143 }
9144}
9145#endif
9146
9147static struct net_device_stats *tg3_get_stats(struct net_device *);
9148static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
9149
9150static int tg3_close(struct net_device *dev)
9151{
Matt Carlson4f125f42009-09-01 12:55:02 +00009152 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009153 struct tg3 *tp = netdev_priv(dev);
9154
Matt Carlsonfed97812009-09-01 13:10:19 +00009155 tg3_napi_disable(tp);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07009156 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08009157
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009158 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009159
9160 del_timer_sync(&tp->timer);
9161
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009162 tg3_phy_stop(tp);
9163
David S. Millerf47c11e2005-06-24 20:18:35 -07009164 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009165#if 0
9166 tg3_dump_state(tp);
9167#endif
9168
9169 tg3_disable_ints(tp);
9170
Michael Chan944d9802005-05-29 14:57:48 -07009171 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009172 tg3_free_rings(tp);
Michael Chan5cf64b8a2007-05-05 12:11:21 -07009173 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009174
David S. Millerf47c11e2005-06-24 20:18:35 -07009175 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009176
Matt Carlson4f125f42009-09-01 12:55:02 +00009177 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9178 struct tg3_napi *tnapi = &tp->napi[i];
9179 free_irq(tnapi->irq_vec, tnapi);
9180 }
Matt Carlson07b01732009-08-28 14:01:15 +00009181
9182 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009183
9184 memcpy(&tp->net_stats_prev, tg3_get_stats(tp->dev),
9185 sizeof(tp->net_stats_prev));
9186 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9187 sizeof(tp->estats_prev));
9188
9189 tg3_free_consistent(tp);
9190
Michael Chanbc1c7562006-03-20 17:48:03 -08009191 tg3_set_power_state(tp, PCI_D3hot);
9192
9193 netif_carrier_off(tp->dev);
9194
Linus Torvalds1da177e2005-04-16 15:20:36 -07009195 return 0;
9196}
9197
9198static inline unsigned long get_stat64(tg3_stat64_t *val)
9199{
9200 unsigned long ret;
9201
9202#if (BITS_PER_LONG == 32)
9203 ret = val->low;
9204#else
9205 ret = ((u64)val->high << 32) | ((u64)val->low);
9206#endif
9207 return ret;
9208}
9209
Stefan Buehler816f8b82008-08-15 14:10:54 -07009210static inline u64 get_estat64(tg3_stat64_t *val)
9211{
9212 return ((u64)val->high << 32) | ((u64)val->low);
9213}
9214
Linus Torvalds1da177e2005-04-16 15:20:36 -07009215static unsigned long calc_crc_errors(struct tg3 *tp)
9216{
9217 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9218
9219 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
9220 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9221 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009222 u32 val;
9223
David S. Millerf47c11e2005-06-24 20:18:35 -07009224 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009225 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9226 tg3_writephy(tp, MII_TG3_TEST1,
9227 val | MII_TG3_TEST1_CRC_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009228 tg3_readphy(tp, 0x14, &val);
9229 } else
9230 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009231 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009232
9233 tp->phy_crc_errors += val;
9234
9235 return tp->phy_crc_errors;
9236 }
9237
9238 return get_stat64(&hw_stats->rx_fcs_errors);
9239}
9240
9241#define ESTAT_ADD(member) \
9242 estats->member = old_estats->member + \
Stefan Buehler816f8b82008-08-15 14:10:54 -07009243 get_estat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009244
9245static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9246{
9247 struct tg3_ethtool_stats *estats = &tp->estats;
9248 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9249 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9250
9251 if (!hw_stats)
9252 return old_estats;
9253
9254 ESTAT_ADD(rx_octets);
9255 ESTAT_ADD(rx_fragments);
9256 ESTAT_ADD(rx_ucast_packets);
9257 ESTAT_ADD(rx_mcast_packets);
9258 ESTAT_ADD(rx_bcast_packets);
9259 ESTAT_ADD(rx_fcs_errors);
9260 ESTAT_ADD(rx_align_errors);
9261 ESTAT_ADD(rx_xon_pause_rcvd);
9262 ESTAT_ADD(rx_xoff_pause_rcvd);
9263 ESTAT_ADD(rx_mac_ctrl_rcvd);
9264 ESTAT_ADD(rx_xoff_entered);
9265 ESTAT_ADD(rx_frame_too_long_errors);
9266 ESTAT_ADD(rx_jabbers);
9267 ESTAT_ADD(rx_undersize_packets);
9268 ESTAT_ADD(rx_in_length_errors);
9269 ESTAT_ADD(rx_out_length_errors);
9270 ESTAT_ADD(rx_64_or_less_octet_packets);
9271 ESTAT_ADD(rx_65_to_127_octet_packets);
9272 ESTAT_ADD(rx_128_to_255_octet_packets);
9273 ESTAT_ADD(rx_256_to_511_octet_packets);
9274 ESTAT_ADD(rx_512_to_1023_octet_packets);
9275 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9276 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9277 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9278 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9279 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9280
9281 ESTAT_ADD(tx_octets);
9282 ESTAT_ADD(tx_collisions);
9283 ESTAT_ADD(tx_xon_sent);
9284 ESTAT_ADD(tx_xoff_sent);
9285 ESTAT_ADD(tx_flow_control);
9286 ESTAT_ADD(tx_mac_errors);
9287 ESTAT_ADD(tx_single_collisions);
9288 ESTAT_ADD(tx_mult_collisions);
9289 ESTAT_ADD(tx_deferred);
9290 ESTAT_ADD(tx_excessive_collisions);
9291 ESTAT_ADD(tx_late_collisions);
9292 ESTAT_ADD(tx_collide_2times);
9293 ESTAT_ADD(tx_collide_3times);
9294 ESTAT_ADD(tx_collide_4times);
9295 ESTAT_ADD(tx_collide_5times);
9296 ESTAT_ADD(tx_collide_6times);
9297 ESTAT_ADD(tx_collide_7times);
9298 ESTAT_ADD(tx_collide_8times);
9299 ESTAT_ADD(tx_collide_9times);
9300 ESTAT_ADD(tx_collide_10times);
9301 ESTAT_ADD(tx_collide_11times);
9302 ESTAT_ADD(tx_collide_12times);
9303 ESTAT_ADD(tx_collide_13times);
9304 ESTAT_ADD(tx_collide_14times);
9305 ESTAT_ADD(tx_collide_15times);
9306 ESTAT_ADD(tx_ucast_packets);
9307 ESTAT_ADD(tx_mcast_packets);
9308 ESTAT_ADD(tx_bcast_packets);
9309 ESTAT_ADD(tx_carrier_sense_errors);
9310 ESTAT_ADD(tx_discards);
9311 ESTAT_ADD(tx_errors);
9312
9313 ESTAT_ADD(dma_writeq_full);
9314 ESTAT_ADD(dma_write_prioq_full);
9315 ESTAT_ADD(rxbds_empty);
9316 ESTAT_ADD(rx_discards);
9317 ESTAT_ADD(rx_errors);
9318 ESTAT_ADD(rx_threshold_hit);
9319
9320 ESTAT_ADD(dma_readq_full);
9321 ESTAT_ADD(dma_read_prioq_full);
9322 ESTAT_ADD(tx_comp_queue_full);
9323
9324 ESTAT_ADD(ring_set_send_prod_index);
9325 ESTAT_ADD(ring_status_update);
9326 ESTAT_ADD(nic_irqs);
9327 ESTAT_ADD(nic_avoided_irqs);
9328 ESTAT_ADD(nic_tx_threshold_hit);
9329
9330 return estats;
9331}
9332
9333static struct net_device_stats *tg3_get_stats(struct net_device *dev)
9334{
9335 struct tg3 *tp = netdev_priv(dev);
9336 struct net_device_stats *stats = &tp->net_stats;
9337 struct net_device_stats *old_stats = &tp->net_stats_prev;
9338 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9339
9340 if (!hw_stats)
9341 return old_stats;
9342
9343 stats->rx_packets = old_stats->rx_packets +
9344 get_stat64(&hw_stats->rx_ucast_packets) +
9345 get_stat64(&hw_stats->rx_mcast_packets) +
9346 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009347
Linus Torvalds1da177e2005-04-16 15:20:36 -07009348 stats->tx_packets = old_stats->tx_packets +
9349 get_stat64(&hw_stats->tx_ucast_packets) +
9350 get_stat64(&hw_stats->tx_mcast_packets) +
9351 get_stat64(&hw_stats->tx_bcast_packets);
9352
9353 stats->rx_bytes = old_stats->rx_bytes +
9354 get_stat64(&hw_stats->rx_octets);
9355 stats->tx_bytes = old_stats->tx_bytes +
9356 get_stat64(&hw_stats->tx_octets);
9357
9358 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009359 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009360 stats->tx_errors = old_stats->tx_errors +
9361 get_stat64(&hw_stats->tx_errors) +
9362 get_stat64(&hw_stats->tx_mac_errors) +
9363 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9364 get_stat64(&hw_stats->tx_discards);
9365
9366 stats->multicast = old_stats->multicast +
9367 get_stat64(&hw_stats->rx_mcast_packets);
9368 stats->collisions = old_stats->collisions +
9369 get_stat64(&hw_stats->tx_collisions);
9370
9371 stats->rx_length_errors = old_stats->rx_length_errors +
9372 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9373 get_stat64(&hw_stats->rx_undersize_packets);
9374
9375 stats->rx_over_errors = old_stats->rx_over_errors +
9376 get_stat64(&hw_stats->rxbds_empty);
9377 stats->rx_frame_errors = old_stats->rx_frame_errors +
9378 get_stat64(&hw_stats->rx_align_errors);
9379 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
9380 get_stat64(&hw_stats->tx_discards);
9381 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
9382 get_stat64(&hw_stats->tx_carrier_sense_errors);
9383
9384 stats->rx_crc_errors = old_stats->rx_crc_errors +
9385 calc_crc_errors(tp);
9386
John W. Linville4f63b872005-09-12 14:43:18 -07009387 stats->rx_missed_errors = old_stats->rx_missed_errors +
9388 get_stat64(&hw_stats->rx_discards);
9389
Linus Torvalds1da177e2005-04-16 15:20:36 -07009390 return stats;
9391}
9392
9393static inline u32 calc_crc(unsigned char *buf, int len)
9394{
9395 u32 reg;
9396 u32 tmp;
9397 int j, k;
9398
9399 reg = 0xffffffff;
9400
9401 for (j = 0; j < len; j++) {
9402 reg ^= buf[j];
9403
9404 for (k = 0; k < 8; k++) {
9405 tmp = reg & 0x01;
9406
9407 reg >>= 1;
9408
9409 if (tmp) {
9410 reg ^= 0xedb88320;
9411 }
9412 }
9413 }
9414
9415 return ~reg;
9416}
9417
9418static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9419{
9420 /* accept or reject all multicast frames */
9421 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9422 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9423 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9424 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9425}
9426
9427static void __tg3_set_rx_mode(struct net_device *dev)
9428{
9429 struct tg3 *tp = netdev_priv(dev);
9430 u32 rx_mode;
9431
9432 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9433 RX_MODE_KEEP_VLAN_TAG);
9434
9435 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9436 * flag clear.
9437 */
9438#if TG3_VLAN_TAG_USED
9439 if (!tp->vlgrp &&
9440 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
9441 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9442#else
9443 /* By definition, VLAN is disabled always in this
9444 * case.
9445 */
9446 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
9447 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9448#endif
9449
9450 if (dev->flags & IFF_PROMISC) {
9451 /* Promiscuous mode. */
9452 rx_mode |= RX_MODE_PROMISC;
9453 } else if (dev->flags & IFF_ALLMULTI) {
9454 /* Accept all multicast. */
9455 tg3_set_multi (tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00009456 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009457 /* Reject all multicast. */
9458 tg3_set_multi (tp, 0);
9459 } else {
9460 /* Accept one or more multicast(s). */
Jiri Pirko22bedad32010-04-01 21:22:57 +00009461 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009462 u32 mc_filter[4] = { 0, };
9463 u32 regidx;
9464 u32 bit;
9465 u32 crc;
9466
Jiri Pirko22bedad32010-04-01 21:22:57 +00009467 netdev_for_each_mc_addr(ha, dev) {
9468 crc = calc_crc(ha->addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009469 bit = ~crc & 0x7f;
9470 regidx = (bit & 0x60) >> 5;
9471 bit &= 0x1f;
9472 mc_filter[regidx] |= (1 << bit);
9473 }
9474
9475 tw32(MAC_HASH_REG_0, mc_filter[0]);
9476 tw32(MAC_HASH_REG_1, mc_filter[1]);
9477 tw32(MAC_HASH_REG_2, mc_filter[2]);
9478 tw32(MAC_HASH_REG_3, mc_filter[3]);
9479 }
9480
9481 if (rx_mode != tp->rx_mode) {
9482 tp->rx_mode = rx_mode;
9483 tw32_f(MAC_RX_MODE, rx_mode);
9484 udelay(10);
9485 }
9486}
9487
9488static void tg3_set_rx_mode(struct net_device *dev)
9489{
9490 struct tg3 *tp = netdev_priv(dev);
9491
Michael Chane75f7c92006-03-20 21:33:26 -08009492 if (!netif_running(dev))
9493 return;
9494
David S. Millerf47c11e2005-06-24 20:18:35 -07009495 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009496 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07009497 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009498}
9499
9500#define TG3_REGDUMP_LEN (32 * 1024)
9501
9502static int tg3_get_regs_len(struct net_device *dev)
9503{
9504 return TG3_REGDUMP_LEN;
9505}
9506
9507static void tg3_get_regs(struct net_device *dev,
9508 struct ethtool_regs *regs, void *_p)
9509{
9510 u32 *p = _p;
9511 struct tg3 *tp = netdev_priv(dev);
9512 u8 *orig_p = _p;
9513 int i;
9514
9515 regs->version = 0;
9516
9517 memset(p, 0, TG3_REGDUMP_LEN);
9518
Michael Chanbc1c7562006-03-20 17:48:03 -08009519 if (tp->link_config.phy_is_low_power)
9520 return;
9521
David S. Millerf47c11e2005-06-24 20:18:35 -07009522 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009523
9524#define __GET_REG32(reg) (*(p)++ = tr32(reg))
9525#define GET_REG32_LOOP(base,len) \
9526do { p = (u32 *)(orig_p + (base)); \
9527 for (i = 0; i < len; i += 4) \
9528 __GET_REG32((base) + i); \
9529} while (0)
9530#define GET_REG32_1(reg) \
9531do { p = (u32 *)(orig_p + (reg)); \
9532 __GET_REG32((reg)); \
9533} while (0)
9534
9535 GET_REG32_LOOP(TG3PCI_VENDOR, 0xb0);
9536 GET_REG32_LOOP(MAILBOX_INTERRUPT_0, 0x200);
9537 GET_REG32_LOOP(MAC_MODE, 0x4f0);
9538 GET_REG32_LOOP(SNDDATAI_MODE, 0xe0);
9539 GET_REG32_1(SNDDATAC_MODE);
9540 GET_REG32_LOOP(SNDBDS_MODE, 0x80);
9541 GET_REG32_LOOP(SNDBDI_MODE, 0x48);
9542 GET_REG32_1(SNDBDC_MODE);
9543 GET_REG32_LOOP(RCVLPC_MODE, 0x20);
9544 GET_REG32_LOOP(RCVLPC_SELLST_BASE, 0x15c);
9545 GET_REG32_LOOP(RCVDBDI_MODE, 0x0c);
9546 GET_REG32_LOOP(RCVDBDI_JUMBO_BD, 0x3c);
9547 GET_REG32_LOOP(RCVDBDI_BD_PROD_IDX_0, 0x44);
9548 GET_REG32_1(RCVDCC_MODE);
9549 GET_REG32_LOOP(RCVBDI_MODE, 0x20);
9550 GET_REG32_LOOP(RCVCC_MODE, 0x14);
9551 GET_REG32_LOOP(RCVLSC_MODE, 0x08);
9552 GET_REG32_1(MBFREE_MODE);
9553 GET_REG32_LOOP(HOSTCC_MODE, 0x100);
9554 GET_REG32_LOOP(MEMARB_MODE, 0x10);
9555 GET_REG32_LOOP(BUFMGR_MODE, 0x58);
9556 GET_REG32_LOOP(RDMAC_MODE, 0x08);
9557 GET_REG32_LOOP(WDMAC_MODE, 0x08);
Chris Elmquist091465d2005-12-20 13:25:19 -08009558 GET_REG32_1(RX_CPU_MODE);
9559 GET_REG32_1(RX_CPU_STATE);
9560 GET_REG32_1(RX_CPU_PGMCTR);
9561 GET_REG32_1(RX_CPU_HWBKPT);
9562 GET_REG32_1(TX_CPU_MODE);
9563 GET_REG32_1(TX_CPU_STATE);
9564 GET_REG32_1(TX_CPU_PGMCTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009565 GET_REG32_LOOP(GRCMBOX_INTERRUPT_0, 0x110);
9566 GET_REG32_LOOP(FTQ_RESET, 0x120);
9567 GET_REG32_LOOP(MSGINT_MODE, 0x0c);
9568 GET_REG32_1(DMAC_MODE);
9569 GET_REG32_LOOP(GRC_MODE, 0x4c);
9570 if (tp->tg3_flags & TG3_FLAG_NVRAM)
9571 GET_REG32_LOOP(NVRAM_CMD, 0x24);
9572
9573#undef __GET_REG32
9574#undef GET_REG32_LOOP
9575#undef GET_REG32_1
9576
David S. Millerf47c11e2005-06-24 20:18:35 -07009577 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009578}
9579
9580static int tg3_get_eeprom_len(struct net_device *dev)
9581{
9582 struct tg3 *tp = netdev_priv(dev);
9583
9584 return tp->nvram_size;
9585}
9586
Linus Torvalds1da177e2005-04-16 15:20:36 -07009587static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9588{
9589 struct tg3 *tp = netdev_priv(dev);
9590 int ret;
9591 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -08009592 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009593 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009594
Matt Carlsondf259d82009-04-20 06:57:14 +00009595 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM)
9596 return -EINVAL;
9597
Michael Chanbc1c7562006-03-20 17:48:03 -08009598 if (tp->link_config.phy_is_low_power)
9599 return -EAGAIN;
9600
Linus Torvalds1da177e2005-04-16 15:20:36 -07009601 offset = eeprom->offset;
9602 len = eeprom->len;
9603 eeprom->len = 0;
9604
9605 eeprom->magic = TG3_EEPROM_MAGIC;
9606
9607 if (offset & 3) {
9608 /* adjustments to start on required 4 byte boundary */
9609 b_offset = offset & 3;
9610 b_count = 4 - b_offset;
9611 if (b_count > len) {
9612 /* i.e. offset=1 len=2 */
9613 b_count = len;
9614 }
Matt Carlsona9dc5292009-02-25 14:25:30 +00009615 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009616 if (ret)
9617 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009618 memcpy(data, ((char*)&val) + b_offset, b_count);
9619 len -= b_count;
9620 offset += b_count;
9621 eeprom->len += b_count;
9622 }
9623
9624 /* read bytes upto the last 4 byte boundary */
9625 pd = &data[eeprom->len];
9626 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +00009627 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009628 if (ret) {
9629 eeprom->len += i;
9630 return ret;
9631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009632 memcpy(pd + i, &val, 4);
9633 }
9634 eeprom->len += i;
9635
9636 if (len & 3) {
9637 /* read last bytes not ending on 4 byte boundary */
9638 pd = &data[eeprom->len];
9639 b_count = len & 3;
9640 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009641 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009642 if (ret)
9643 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009644 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009645 eeprom->len += b_count;
9646 }
9647 return 0;
9648}
9649
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009650static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009651
9652static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9653{
9654 struct tg3 *tp = netdev_priv(dev);
9655 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009656 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009657 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009658 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009659
Michael Chanbc1c7562006-03-20 17:48:03 -08009660 if (tp->link_config.phy_is_low_power)
9661 return -EAGAIN;
9662
Matt Carlsondf259d82009-04-20 06:57:14 +00009663 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
9664 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009665 return -EINVAL;
9666
9667 offset = eeprom->offset;
9668 len = eeprom->len;
9669
9670 if ((b_offset = (offset & 3))) {
9671 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +00009672 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009673 if (ret)
9674 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009675 len += b_offset;
9676 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -07009677 if (len < 4)
9678 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009679 }
9680
9681 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -07009682 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009683 /* adjustments to end on required 4 byte boundary */
9684 odd_len = 1;
9685 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009686 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009687 if (ret)
9688 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009689 }
9690
9691 buf = data;
9692 if (b_offset || odd_len) {
9693 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009694 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009695 return -ENOMEM;
9696 if (b_offset)
9697 memcpy(buf, &start, 4);
9698 if (odd_len)
9699 memcpy(buf+len-4, &end, 4);
9700 memcpy(buf + b_offset, data, eeprom->len);
9701 }
9702
9703 ret = tg3_nvram_write_block(tp, offset, len, buf);
9704
9705 if (buf != data)
9706 kfree(buf);
9707
9708 return ret;
9709}
9710
9711static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9712{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009713 struct tg3 *tp = netdev_priv(dev);
9714
9715 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009716 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009717 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9718 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009719 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9720 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009721 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009722
Linus Torvalds1da177e2005-04-16 15:20:36 -07009723 cmd->supported = (SUPPORTED_Autoneg);
9724
9725 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
9726 cmd->supported |= (SUPPORTED_1000baseT_Half |
9727 SUPPORTED_1000baseT_Full);
9728
Karsten Keilef348142006-05-12 12:49:08 -07009729 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009730 cmd->supported |= (SUPPORTED_100baseT_Half |
9731 SUPPORTED_100baseT_Full |
9732 SUPPORTED_10baseT_Half |
9733 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -08009734 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -07009735 cmd->port = PORT_TP;
9736 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009737 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -07009738 cmd->port = PORT_FIBRE;
9739 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009740
Linus Torvalds1da177e2005-04-16 15:20:36 -07009741 cmd->advertising = tp->link_config.advertising;
9742 if (netif_running(dev)) {
9743 cmd->speed = tp->link_config.active_speed;
9744 cmd->duplex = tp->link_config.active_duplex;
9745 }
Matt Carlson882e9792009-09-01 13:21:36 +00009746 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009747 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009748 cmd->autoneg = tp->link_config.autoneg;
9749 cmd->maxtxpkt = 0;
9750 cmd->maxrxpkt = 0;
9751 return 0;
9752}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009753
Linus Torvalds1da177e2005-04-16 15:20:36 -07009754static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9755{
9756 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009757
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009758 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009759 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009760 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9761 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009762 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9763 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009764 }
9765
Matt Carlson7e5856b2009-02-25 14:23:01 +00009766 if (cmd->autoneg != AUTONEG_ENABLE &&
9767 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -07009768 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009769
9770 if (cmd->autoneg == AUTONEG_DISABLE &&
9771 cmd->duplex != DUPLEX_FULL &&
9772 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -07009773 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009774
Matt Carlson7e5856b2009-02-25 14:23:01 +00009775 if (cmd->autoneg == AUTONEG_ENABLE) {
9776 u32 mask = ADVERTISED_Autoneg |
9777 ADVERTISED_Pause |
9778 ADVERTISED_Asym_Pause;
9779
Julia Lawall3f07d122010-03-13 12:22:16 -08009780 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +00009781 mask |= ADVERTISED_1000baseT_Half |
9782 ADVERTISED_1000baseT_Full;
9783
9784 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
9785 mask |= ADVERTISED_100baseT_Half |
9786 ADVERTISED_100baseT_Full |
9787 ADVERTISED_10baseT_Half |
9788 ADVERTISED_10baseT_Full |
9789 ADVERTISED_TP;
9790 else
9791 mask |= ADVERTISED_FIBRE;
9792
9793 if (cmd->advertising & ~mask)
9794 return -EINVAL;
9795
9796 mask &= (ADVERTISED_1000baseT_Half |
9797 ADVERTISED_1000baseT_Full |
9798 ADVERTISED_100baseT_Half |
9799 ADVERTISED_100baseT_Full |
9800 ADVERTISED_10baseT_Half |
9801 ADVERTISED_10baseT_Full);
9802
9803 cmd->advertising &= mask;
9804 } else {
9805 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) {
9806 if (cmd->speed != SPEED_1000)
9807 return -EINVAL;
9808
9809 if (cmd->duplex != DUPLEX_FULL)
9810 return -EINVAL;
9811 } else {
9812 if (cmd->speed != SPEED_100 &&
9813 cmd->speed != SPEED_10)
9814 return -EINVAL;
9815 }
9816 }
9817
David S. Millerf47c11e2005-06-24 20:18:35 -07009818 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009819
9820 tp->link_config.autoneg = cmd->autoneg;
9821 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -07009822 tp->link_config.advertising = (cmd->advertising |
9823 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009824 tp->link_config.speed = SPEED_INVALID;
9825 tp->link_config.duplex = DUPLEX_INVALID;
9826 } else {
9827 tp->link_config.advertising = 0;
9828 tp->link_config.speed = cmd->speed;
9829 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009830 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009831
Michael Chan24fcad62006-12-17 17:06:46 -08009832 tp->link_config.orig_speed = tp->link_config.speed;
9833 tp->link_config.orig_duplex = tp->link_config.duplex;
9834 tp->link_config.orig_autoneg = tp->link_config.autoneg;
9835
Linus Torvalds1da177e2005-04-16 15:20:36 -07009836 if (netif_running(dev))
9837 tg3_setup_phy(tp, 1);
9838
David S. Millerf47c11e2005-06-24 20:18:35 -07009839 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009840
Linus Torvalds1da177e2005-04-16 15:20:36 -07009841 return 0;
9842}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009843
Linus Torvalds1da177e2005-04-16 15:20:36 -07009844static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
9845{
9846 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009847
Linus Torvalds1da177e2005-04-16 15:20:36 -07009848 strcpy(info->driver, DRV_MODULE_NAME);
9849 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -08009850 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009851 strcpy(info->bus_info, pci_name(tp->pdev));
9852}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009853
Linus Torvalds1da177e2005-04-16 15:20:36 -07009854static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
9855{
9856 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009857
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009858 if ((tp->tg3_flags & TG3_FLAG_WOL_CAP) &&
9859 device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -07009860 wol->supported = WAKE_MAGIC;
9861 else
9862 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009863 wol->wolopts = 0;
Matt Carlson05ac4cb2008-11-03 16:53:46 -08009864 if ((tp->tg3_flags & TG3_FLAG_WOL_ENABLE) &&
9865 device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009866 wol->wolopts = WAKE_MAGIC;
9867 memset(&wol->sopass, 0, sizeof(wol->sopass));
9868}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009869
Linus Torvalds1da177e2005-04-16 15:20:36 -07009870static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
9871{
9872 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009873 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009874
Linus Torvalds1da177e2005-04-16 15:20:36 -07009875 if (wol->wolopts & ~WAKE_MAGIC)
9876 return -EINVAL;
9877 if ((wol->wolopts & WAKE_MAGIC) &&
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009878 !((tp->tg3_flags & TG3_FLAG_WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009879 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009880
David S. Millerf47c11e2005-06-24 20:18:35 -07009881 spin_lock_bh(&tp->lock);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009882 if (wol->wolopts & WAKE_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009883 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009884 device_set_wakeup_enable(dp, true);
9885 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009886 tp->tg3_flags &= ~TG3_FLAG_WOL_ENABLE;
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009887 device_set_wakeup_enable(dp, false);
9888 }
David S. Millerf47c11e2005-06-24 20:18:35 -07009889 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009890
Linus Torvalds1da177e2005-04-16 15:20:36 -07009891 return 0;
9892}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009893
Linus Torvalds1da177e2005-04-16 15:20:36 -07009894static u32 tg3_get_msglevel(struct net_device *dev)
9895{
9896 struct tg3 *tp = netdev_priv(dev);
9897 return tp->msg_enable;
9898}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009899
Linus Torvalds1da177e2005-04-16 15:20:36 -07009900static void tg3_set_msglevel(struct net_device *dev, u32 value)
9901{
9902 struct tg3 *tp = netdev_priv(dev);
9903 tp->msg_enable = value;
9904}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009905
Linus Torvalds1da177e2005-04-16 15:20:36 -07009906static int tg3_set_tso(struct net_device *dev, u32 value)
9907{
9908 struct tg3 *tp = netdev_priv(dev);
9909
9910 if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
9911 if (value)
9912 return -EINVAL;
9913 return 0;
9914 }
Matt Carlson027455a2008-12-21 20:19:30 -08009915 if ((dev->features & NETIF_F_IPV6_CSUM) &&
Matt Carlsone849cdc2009-11-13 13:03:38 +00009916 ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) ||
9917 (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3))) {
Matt Carlson9936bcf2007-10-10 18:03:07 -07009918 if (value) {
Michael Chanb0026622006-07-03 19:42:14 -07009919 dev->features |= NETIF_F_TSO6;
Matt Carlsone849cdc2009-11-13 13:03:38 +00009920 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
9921 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -07009922 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
9923 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Matt Carlson321d32a2008-11-21 17:22:19 -08009924 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00009925 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson9936bcf2007-10-10 18:03:07 -07009926 dev->features |= NETIF_F_TSO_ECN;
9927 } else
9928 dev->features &= ~(NETIF_F_TSO6 | NETIF_F_TSO_ECN);
Michael Chanb0026622006-07-03 19:42:14 -07009929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009930 return ethtool_op_set_tso(dev, value);
9931}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009932
Linus Torvalds1da177e2005-04-16 15:20:36 -07009933static int tg3_nway_reset(struct net_device *dev)
9934{
9935 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009936 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009937
Linus Torvalds1da177e2005-04-16 15:20:36 -07009938 if (!netif_running(dev))
9939 return -EAGAIN;
9940
Michael Chanc94e3942005-09-27 12:12:42 -07009941 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
9942 return -EINVAL;
9943
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009944 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
9945 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9946 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009947 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009948 } else {
9949 u32 bmcr;
9950
9951 spin_lock_bh(&tp->lock);
9952 r = -EINVAL;
9953 tg3_readphy(tp, MII_BMCR, &bmcr);
9954 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
9955 ((bmcr & BMCR_ANENABLE) ||
9956 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT))) {
9957 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
9958 BMCR_ANENABLE);
9959 r = 0;
9960 }
9961 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009962 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009963
Linus Torvalds1da177e2005-04-16 15:20:36 -07009964 return r;
9965}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009966
Linus Torvalds1da177e2005-04-16 15:20:36 -07009967static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
9968{
9969 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009970
Linus Torvalds1da177e2005-04-16 15:20:36 -07009971 ering->rx_max_pending = TG3_RX_RING_SIZE - 1;
9972 ering->rx_mini_max_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -08009973 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
9974 ering->rx_jumbo_max_pending = TG3_RX_JUMBO_RING_SIZE - 1;
9975 else
9976 ering->rx_jumbo_max_pending = 0;
9977
9978 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009979
9980 ering->rx_pending = tp->rx_pending;
9981 ering->rx_mini_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -08009982 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
9983 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
9984 else
9985 ering->rx_jumbo_pending = 0;
9986
Matt Carlsonf3f3f272009-08-28 14:03:21 +00009987 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009988}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009989
Linus Torvalds1da177e2005-04-16 15:20:36 -07009990static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
9991{
9992 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +00009993 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009994
Linus Torvalds1da177e2005-04-16 15:20:36 -07009995 if ((ering->rx_pending > TG3_RX_RING_SIZE - 1) ||
9996 (ering->rx_jumbo_pending > TG3_RX_JUMBO_RING_SIZE - 1) ||
Michael Chanbc3a9252006-10-18 20:55:18 -07009997 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
9998 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Michael Chan7f62ad52007-02-20 23:25:40 -08009999 ((tp->tg3_flags2 & TG3_FLG2_TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010000 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010001 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010002
Michael Chanbbe832c2005-06-24 20:20:04 -070010003 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010004 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010005 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010006 irq_sync = 1;
10007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010008
Michael Chanbbe832c2005-06-24 20:20:04 -070010009 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010010
Linus Torvalds1da177e2005-04-16 15:20:36 -070010011 tp->rx_pending = ering->rx_pending;
10012
10013 if ((tp->tg3_flags2 & TG3_FLG2_MAX_RXPEND_64) &&
10014 tp->rx_pending > 63)
10015 tp->rx_pending = 63;
10016 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010017
10018 for (i = 0; i < TG3_IRQ_MAX_VECS; i++)
10019 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010020
10021 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010022 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010023 err = tg3_restart_hw(tp, 1);
10024 if (!err)
10025 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010026 }
10027
David S. Millerf47c11e2005-06-24 20:18:35 -070010028 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010029
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010030 if (irq_sync && !err)
10031 tg3_phy_start(tp);
10032
Michael Chanb9ec6c12006-07-25 16:37:27 -070010033 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010034}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010035
Linus Torvalds1da177e2005-04-16 15:20:36 -070010036static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10037{
10038 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010039
Linus Torvalds1da177e2005-04-16 15:20:36 -070010040 epause->autoneg = (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG) != 0;
Matt Carlson8d018622007-12-20 20:05:44 -080010041
Steve Glendinninge18ce342008-12-16 02:00:00 -080010042 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010043 epause->rx_pause = 1;
10044 else
10045 epause->rx_pause = 0;
10046
Steve Glendinninge18ce342008-12-16 02:00:00 -080010047 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010048 epause->tx_pause = 1;
10049 else
10050 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010051}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010052
Linus Torvalds1da177e2005-04-16 15:20:36 -070010053static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10054{
10055 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010056 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010057
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010058 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson27121682010-02-17 15:16:57 +000010059 u32 newadv;
10060 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010061
Matt Carlson27121682010-02-17 15:16:57 +000010062 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010063
Matt Carlson27121682010-02-17 15:16:57 +000010064 if (!(phydev->supported & SUPPORTED_Pause) ||
10065 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
10066 ((epause->rx_pause && !epause->tx_pause) ||
10067 (!epause->rx_pause && epause->tx_pause))))
10068 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010069
Matt Carlson27121682010-02-17 15:16:57 +000010070 tp->link_config.flowctrl = 0;
10071 if (epause->rx_pause) {
10072 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010073
Matt Carlson27121682010-02-17 15:16:57 +000010074 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010075 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010076 newadv = ADVERTISED_Pause;
10077 } else
10078 newadv = ADVERTISED_Pause |
10079 ADVERTISED_Asym_Pause;
10080 } else if (epause->tx_pause) {
10081 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10082 newadv = ADVERTISED_Asym_Pause;
10083 } else
10084 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010085
Matt Carlson27121682010-02-17 15:16:57 +000010086 if (epause->autoneg)
10087 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
10088 else
10089 tp->tg3_flags &= ~TG3_FLAG_PAUSE_AUTONEG;
10090
10091 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
10092 u32 oldadv = phydev->advertising &
10093 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10094 if (oldadv != newadv) {
10095 phydev->advertising &=
10096 ~(ADVERTISED_Pause |
10097 ADVERTISED_Asym_Pause);
10098 phydev->advertising |= newadv;
10099 if (phydev->autoneg) {
10100 /*
10101 * Always renegotiate the link to
10102 * inform our link partner of our
10103 * flow control settings, even if the
10104 * flow control is forced. Let
10105 * tg3_adjust_link() do the final
10106 * flow control setup.
10107 */
10108 return phy_start_aneg(phydev);
10109 }
10110 }
10111
10112 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010113 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010114 } else {
10115 tp->link_config.orig_advertising &=
10116 ~(ADVERTISED_Pause |
10117 ADVERTISED_Asym_Pause);
10118 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010119 }
10120 } else {
10121 int irq_sync = 0;
10122
10123 if (netif_running(dev)) {
10124 tg3_netif_stop(tp);
10125 irq_sync = 1;
10126 }
10127
10128 tg3_full_lock(tp, irq_sync);
10129
10130 if (epause->autoneg)
10131 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
10132 else
10133 tp->tg3_flags &= ~TG3_FLAG_PAUSE_AUTONEG;
10134 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010135 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010136 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010137 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010138 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010139 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010140 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010141 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010142
10143 if (netif_running(dev)) {
10144 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10145 err = tg3_restart_hw(tp, 1);
10146 if (!err)
10147 tg3_netif_start(tp);
10148 }
10149
10150 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010152
Michael Chanb9ec6c12006-07-25 16:37:27 -070010153 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010154}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010155
Linus Torvalds1da177e2005-04-16 15:20:36 -070010156static u32 tg3_get_rx_csum(struct net_device *dev)
10157{
10158 struct tg3 *tp = netdev_priv(dev);
10159 return (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0;
10160}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010161
Linus Torvalds1da177e2005-04-16 15:20:36 -070010162static int tg3_set_rx_csum(struct net_device *dev, u32 data)
10163{
10164 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010165
Linus Torvalds1da177e2005-04-16 15:20:36 -070010166 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
10167 if (data != 0)
10168 return -EINVAL;
10169 return 0;
10170 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010171
David S. Millerf47c11e2005-06-24 20:18:35 -070010172 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010173 if (data)
10174 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
10175 else
10176 tp->tg3_flags &= ~TG3_FLAG_RX_CHECKSUMS;
David S. Millerf47c11e2005-06-24 20:18:35 -070010177 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010178
Linus Torvalds1da177e2005-04-16 15:20:36 -070010179 return 0;
10180}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010181
Linus Torvalds1da177e2005-04-16 15:20:36 -070010182static int tg3_set_tx_csum(struct net_device *dev, u32 data)
10183{
10184 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010185
Linus Torvalds1da177e2005-04-16 15:20:36 -070010186 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
10187 if (data != 0)
10188 return -EINVAL;
10189 return 0;
10190 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010191
Matt Carlson321d32a2008-11-21 17:22:19 -080010192 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Michael Chan6460d942007-07-14 19:07:52 -070010193 ethtool_op_set_tx_ipv6_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010194 else
Michael Chan9c27dbd2006-03-20 22:28:27 -080010195 ethtool_op_set_tx_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010196
10197 return 0;
10198}
10199
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010200static int tg3_get_sset_count (struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010201{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010202 switch (sset) {
10203 case ETH_SS_TEST:
10204 return TG3_NUM_TEST;
10205 case ETH_SS_STATS:
10206 return TG3_NUM_STATS;
10207 default:
10208 return -EOPNOTSUPP;
10209 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010210}
10211
Linus Torvalds1da177e2005-04-16 15:20:36 -070010212static void tg3_get_strings (struct net_device *dev, u32 stringset, u8 *buf)
10213{
10214 switch (stringset) {
10215 case ETH_SS_STATS:
10216 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10217 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010218 case ETH_SS_TEST:
10219 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10220 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010221 default:
10222 WARN_ON(1); /* we need a WARN() */
10223 break;
10224 }
10225}
10226
Michael Chan4009a932005-09-05 17:52:54 -070010227static int tg3_phys_id(struct net_device *dev, u32 data)
10228{
10229 struct tg3 *tp = netdev_priv(dev);
10230 int i;
10231
10232 if (!netif_running(tp->dev))
10233 return -EAGAIN;
10234
10235 if (data == 0)
Stephen Hemminger759afc32008-02-23 19:51:59 -080010236 data = UINT_MAX / 2;
Michael Chan4009a932005-09-05 17:52:54 -070010237
10238 for (i = 0; i < (data * 2); i++) {
10239 if ((i % 2) == 0)
10240 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10241 LED_CTRL_1000MBPS_ON |
10242 LED_CTRL_100MBPS_ON |
10243 LED_CTRL_10MBPS_ON |
10244 LED_CTRL_TRAFFIC_OVERRIDE |
10245 LED_CTRL_TRAFFIC_BLINK |
10246 LED_CTRL_TRAFFIC_LED);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010247
Michael Chan4009a932005-09-05 17:52:54 -070010248 else
10249 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10250 LED_CTRL_TRAFFIC_OVERRIDE);
10251
10252 if (msleep_interruptible(500))
10253 break;
10254 }
10255 tw32(MAC_LED_CTRL, tp->led_ctrl);
10256 return 0;
10257}
10258
Linus Torvalds1da177e2005-04-16 15:20:36 -070010259static void tg3_get_ethtool_stats (struct net_device *dev,
10260 struct ethtool_stats *estats, u64 *tmp_stats)
10261{
10262 struct tg3 *tp = netdev_priv(dev);
10263 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10264}
10265
Michael Chan566f86a2005-05-29 14:56:58 -070010266#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010267#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10268#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10269#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Michael Chanb16250e2006-09-27 16:10:14 -070010270#define NVRAM_SELFBOOT_HW_SIZE 0x20
10271#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010272
10273static int tg3_test_nvram(struct tg3 *tp)
10274{
Al Virob9fc7dc2007-12-17 22:59:57 -080010275 u32 csum, magic;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010276 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010277 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010278
Matt Carlsondf259d82009-04-20 06:57:14 +000010279 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM)
10280 return 0;
10281
Matt Carlsone4f34112009-02-25 14:25:00 +000010282 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010283 return -EIO;
10284
Michael Chan1b277772006-03-20 22:27:48 -080010285 if (magic == TG3_EEPROM_MAGIC)
10286 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010287 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010288 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10289 TG3_EEPROM_SB_FORMAT_1) {
10290 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10291 case TG3_EEPROM_SB_REVISION_0:
10292 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10293 break;
10294 case TG3_EEPROM_SB_REVISION_2:
10295 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10296 break;
10297 case TG3_EEPROM_SB_REVISION_3:
10298 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10299 break;
10300 default:
10301 return 0;
10302 }
10303 } else
Michael Chan1b277772006-03-20 22:27:48 -080010304 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010305 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10306 size = NVRAM_SELFBOOT_HW_SIZE;
10307 else
Michael Chan1b277772006-03-20 22:27:48 -080010308 return -EIO;
10309
10310 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010311 if (buf == NULL)
10312 return -ENOMEM;
10313
Michael Chan1b277772006-03-20 22:27:48 -080010314 err = -EIO;
10315 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010316 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10317 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010318 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010319 }
Michael Chan1b277772006-03-20 22:27:48 -080010320 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010321 goto out;
10322
Michael Chan1b277772006-03-20 22:27:48 -080010323 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010324 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010325 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010326 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010327 u8 *buf8 = (u8 *) buf, csum8 = 0;
10328
Al Virob9fc7dc2007-12-17 22:59:57 -080010329 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010330 TG3_EEPROM_SB_REVISION_2) {
10331 /* For rev 2, the csum doesn't include the MBA. */
10332 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10333 csum8 += buf8[i];
10334 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10335 csum8 += buf8[i];
10336 } else {
10337 for (i = 0; i < size; i++)
10338 csum8 += buf8[i];
10339 }
Michael Chan1b277772006-03-20 22:27:48 -080010340
Adrian Bunkad96b482006-04-05 22:21:04 -070010341 if (csum8 == 0) {
10342 err = 0;
10343 goto out;
10344 }
10345
10346 err = -EIO;
10347 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010348 }
Michael Chan566f86a2005-05-29 14:56:58 -070010349
Al Virob9fc7dc2007-12-17 22:59:57 -080010350 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010351 TG3_EEPROM_MAGIC_HW) {
10352 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010353 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010354 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010355
10356 /* Separate the parity bits and the data bytes. */
10357 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10358 if ((i == 0) || (i == 8)) {
10359 int l;
10360 u8 msk;
10361
10362 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10363 parity[k++] = buf8[i] & msk;
10364 i++;
10365 }
10366 else if (i == 16) {
10367 int l;
10368 u8 msk;
10369
10370 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10371 parity[k++] = buf8[i] & msk;
10372 i++;
10373
10374 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10375 parity[k++] = buf8[i] & msk;
10376 i++;
10377 }
10378 data[j++] = buf8[i];
10379 }
10380
10381 err = -EIO;
10382 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10383 u8 hw8 = hweight8(data[i]);
10384
10385 if ((hw8 & 0x1) && parity[i])
10386 goto out;
10387 else if (!(hw8 & 0x1) && !parity[i])
10388 goto out;
10389 }
10390 err = 0;
10391 goto out;
10392 }
10393
Michael Chan566f86a2005-05-29 14:56:58 -070010394 /* Bootstrap checksum at offset 0x10 */
10395 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlsona9dc5292009-02-25 14:25:30 +000010396 if (csum != be32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010397 goto out;
10398
10399 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10400 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlsona9dc5292009-02-25 14:25:30 +000010401 if (csum != be32_to_cpu(buf[0xfc/4]))
10402 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070010403
10404 err = 0;
10405
10406out:
10407 kfree(buf);
10408 return err;
10409}
10410
Michael Chanca430072005-05-29 14:57:23 -070010411#define TG3_SERDES_TIMEOUT_SEC 2
10412#define TG3_COPPER_TIMEOUT_SEC 6
10413
10414static int tg3_test_link(struct tg3 *tp)
10415{
10416 int i, max;
10417
10418 if (!netif_running(tp->dev))
10419 return -ENODEV;
10420
Michael Chan4c987482005-09-05 17:52:38 -070010421 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070010422 max = TG3_SERDES_TIMEOUT_SEC;
10423 else
10424 max = TG3_COPPER_TIMEOUT_SEC;
10425
10426 for (i = 0; i < max; i++) {
10427 if (netif_carrier_ok(tp->dev))
10428 return 0;
10429
10430 if (msleep_interruptible(1000))
10431 break;
10432 }
10433
10434 return -EIO;
10435}
10436
Michael Chana71116d2005-05-29 14:58:11 -070010437/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080010438static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070010439{
Michael Chanb16250e2006-09-27 16:10:14 -070010440 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070010441 u32 offset, read_mask, write_mask, val, save_val, read_val;
10442 static struct {
10443 u16 offset;
10444 u16 flags;
10445#define TG3_FL_5705 0x1
10446#define TG3_FL_NOT_5705 0x2
10447#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070010448#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070010449 u32 read_mask;
10450 u32 write_mask;
10451 } reg_tbl[] = {
10452 /* MAC Control Registers */
10453 { MAC_MODE, TG3_FL_NOT_5705,
10454 0x00000000, 0x00ef6f8c },
10455 { MAC_MODE, TG3_FL_5705,
10456 0x00000000, 0x01ef6b8c },
10457 { MAC_STATUS, TG3_FL_NOT_5705,
10458 0x03800107, 0x00000000 },
10459 { MAC_STATUS, TG3_FL_5705,
10460 0x03800100, 0x00000000 },
10461 { MAC_ADDR_0_HIGH, 0x0000,
10462 0x00000000, 0x0000ffff },
10463 { MAC_ADDR_0_LOW, 0x0000,
10464 0x00000000, 0xffffffff },
10465 { MAC_RX_MTU_SIZE, 0x0000,
10466 0x00000000, 0x0000ffff },
10467 { MAC_TX_MODE, 0x0000,
10468 0x00000000, 0x00000070 },
10469 { MAC_TX_LENGTHS, 0x0000,
10470 0x00000000, 0x00003fff },
10471 { MAC_RX_MODE, TG3_FL_NOT_5705,
10472 0x00000000, 0x000007fc },
10473 { MAC_RX_MODE, TG3_FL_5705,
10474 0x00000000, 0x000007dc },
10475 { MAC_HASH_REG_0, 0x0000,
10476 0x00000000, 0xffffffff },
10477 { MAC_HASH_REG_1, 0x0000,
10478 0x00000000, 0xffffffff },
10479 { MAC_HASH_REG_2, 0x0000,
10480 0x00000000, 0xffffffff },
10481 { MAC_HASH_REG_3, 0x0000,
10482 0x00000000, 0xffffffff },
10483
10484 /* Receive Data and Receive BD Initiator Control Registers. */
10485 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
10486 0x00000000, 0xffffffff },
10487 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
10488 0x00000000, 0xffffffff },
10489 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
10490 0x00000000, 0x00000003 },
10491 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
10492 0x00000000, 0xffffffff },
10493 { RCVDBDI_STD_BD+0, 0x0000,
10494 0x00000000, 0xffffffff },
10495 { RCVDBDI_STD_BD+4, 0x0000,
10496 0x00000000, 0xffffffff },
10497 { RCVDBDI_STD_BD+8, 0x0000,
10498 0x00000000, 0xffff0002 },
10499 { RCVDBDI_STD_BD+0xc, 0x0000,
10500 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010501
Michael Chana71116d2005-05-29 14:58:11 -070010502 /* Receive BD Initiator Control Registers. */
10503 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
10504 0x00000000, 0xffffffff },
10505 { RCVBDI_STD_THRESH, TG3_FL_5705,
10506 0x00000000, 0x000003ff },
10507 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
10508 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010509
Michael Chana71116d2005-05-29 14:58:11 -070010510 /* Host Coalescing Control Registers. */
10511 { HOSTCC_MODE, TG3_FL_NOT_5705,
10512 0x00000000, 0x00000004 },
10513 { HOSTCC_MODE, TG3_FL_5705,
10514 0x00000000, 0x000000f6 },
10515 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
10516 0x00000000, 0xffffffff },
10517 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
10518 0x00000000, 0x000003ff },
10519 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
10520 0x00000000, 0xffffffff },
10521 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
10522 0x00000000, 0x000003ff },
10523 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
10524 0x00000000, 0xffffffff },
10525 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10526 0x00000000, 0x000000ff },
10527 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
10528 0x00000000, 0xffffffff },
10529 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10530 0x00000000, 0x000000ff },
10531 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
10532 0x00000000, 0xffffffff },
10533 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
10534 0x00000000, 0xffffffff },
10535 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10536 0x00000000, 0xffffffff },
10537 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10538 0x00000000, 0x000000ff },
10539 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10540 0x00000000, 0xffffffff },
10541 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10542 0x00000000, 0x000000ff },
10543 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
10544 0x00000000, 0xffffffff },
10545 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
10546 0x00000000, 0xffffffff },
10547 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
10548 0x00000000, 0xffffffff },
10549 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
10550 0x00000000, 0xffffffff },
10551 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
10552 0x00000000, 0xffffffff },
10553 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
10554 0xffffffff, 0x00000000 },
10555 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
10556 0xffffffff, 0x00000000 },
10557
10558 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070010559 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010560 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070010561 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010562 0x00000000, 0x007fffff },
10563 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
10564 0x00000000, 0x0000003f },
10565 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
10566 0x00000000, 0x000001ff },
10567 { BUFMGR_MB_HIGH_WATER, 0x0000,
10568 0x00000000, 0x000001ff },
10569 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
10570 0xffffffff, 0x00000000 },
10571 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
10572 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010573
Michael Chana71116d2005-05-29 14:58:11 -070010574 /* Mailbox Registers */
10575 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
10576 0x00000000, 0x000001ff },
10577 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
10578 0x00000000, 0x000001ff },
10579 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
10580 0x00000000, 0x000007ff },
10581 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
10582 0x00000000, 0x000001ff },
10583
10584 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
10585 };
10586
Michael Chanb16250e2006-09-27 16:10:14 -070010587 is_5705 = is_5750 = 0;
10588 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chana71116d2005-05-29 14:58:11 -070010589 is_5705 = 1;
Michael Chanb16250e2006-09-27 16:10:14 -070010590 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
10591 is_5750 = 1;
10592 }
Michael Chana71116d2005-05-29 14:58:11 -070010593
10594 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
10595 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
10596 continue;
10597
10598 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
10599 continue;
10600
10601 if ((tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
10602 (reg_tbl[i].flags & TG3_FL_NOT_5788))
10603 continue;
10604
Michael Chanb16250e2006-09-27 16:10:14 -070010605 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
10606 continue;
10607
Michael Chana71116d2005-05-29 14:58:11 -070010608 offset = (u32) reg_tbl[i].offset;
10609 read_mask = reg_tbl[i].read_mask;
10610 write_mask = reg_tbl[i].write_mask;
10611
10612 /* Save the original register content */
10613 save_val = tr32(offset);
10614
10615 /* Determine the read-only value. */
10616 read_val = save_val & read_mask;
10617
10618 /* Write zero to the register, then make sure the read-only bits
10619 * are not changed and the read/write bits are all zeros.
10620 */
10621 tw32(offset, 0);
10622
10623 val = tr32(offset);
10624
10625 /* Test the read-only and read/write bits. */
10626 if (((val & read_mask) != read_val) || (val & write_mask))
10627 goto out;
10628
10629 /* Write ones to all the bits defined by RdMask and WrMask, then
10630 * make sure the read-only bits are not changed and the
10631 * read/write bits are all ones.
10632 */
10633 tw32(offset, read_mask | write_mask);
10634
10635 val = tr32(offset);
10636
10637 /* Test the read-only bits. */
10638 if ((val & read_mask) != read_val)
10639 goto out;
10640
10641 /* Test the read/write bits. */
10642 if ((val & write_mask) != write_mask)
10643 goto out;
10644
10645 tw32(offset, save_val);
10646 }
10647
10648 return 0;
10649
10650out:
Michael Chan9f88f292006-12-07 00:22:54 -080010651 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000010652 netdev_err(tp->dev,
10653 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070010654 tw32(offset, save_val);
10655 return -EIO;
10656}
10657
Michael Chan7942e1d2005-05-29 14:58:36 -070010658static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
10659{
Arjan van de Venf71e1302006-03-03 21:33:57 -050010660 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070010661 int i;
10662 u32 j;
10663
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020010664 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070010665 for (j = 0; j < len; j += 4) {
10666 u32 val;
10667
10668 tg3_write_mem(tp, offset + j, test_pattern[i]);
10669 tg3_read_mem(tp, offset + j, &val);
10670 if (val != test_pattern[i])
10671 return -EIO;
10672 }
10673 }
10674 return 0;
10675}
10676
10677static int tg3_test_memory(struct tg3 *tp)
10678{
10679 static struct mem_entry {
10680 u32 offset;
10681 u32 len;
10682 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080010683 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070010684 { 0x00002000, 0x1c000},
10685 { 0xffffffff, 0x00000}
10686 }, mem_tbl_5705[] = {
10687 { 0x00000100, 0x0000c},
10688 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070010689 { 0x00004000, 0x00800},
10690 { 0x00006000, 0x01000},
10691 { 0x00008000, 0x02000},
10692 { 0x00010000, 0x0e000},
10693 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080010694 }, mem_tbl_5755[] = {
10695 { 0x00000200, 0x00008},
10696 { 0x00004000, 0x00800},
10697 { 0x00006000, 0x00800},
10698 { 0x00008000, 0x02000},
10699 { 0x00010000, 0x0c000},
10700 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070010701 }, mem_tbl_5906[] = {
10702 { 0x00000200, 0x00008},
10703 { 0x00004000, 0x00400},
10704 { 0x00006000, 0x00400},
10705 { 0x00008000, 0x01000},
10706 { 0x00010000, 0x01000},
10707 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010708 }, mem_tbl_5717[] = {
10709 { 0x00000200, 0x00008},
10710 { 0x00010000, 0x0a000},
10711 { 0x00020000, 0x13c00},
10712 { 0xffffffff, 0x00000}
10713 }, mem_tbl_57765[] = {
10714 { 0x00000200, 0x00008},
10715 { 0x00004000, 0x00800},
10716 { 0x00006000, 0x09800},
10717 { 0x00010000, 0x0a000},
10718 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070010719 };
10720 struct mem_entry *mem_tbl;
10721 int err = 0;
10722 int i;
10723
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010724 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
10725 mem_tbl = mem_tbl_5717;
10726 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
10727 mem_tbl = mem_tbl_57765;
10728 else if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Matt Carlson321d32a2008-11-21 17:22:19 -080010729 mem_tbl = mem_tbl_5755;
10730 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10731 mem_tbl = mem_tbl_5906;
10732 else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
10733 mem_tbl = mem_tbl_5705;
10734 else
Michael Chan7942e1d2005-05-29 14:58:36 -070010735 mem_tbl = mem_tbl_570x;
10736
10737 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
10738 if ((err = tg3_do_mem_test(tp, mem_tbl[i].offset,
10739 mem_tbl[i].len)) != 0)
10740 break;
10741 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010742
Michael Chan7942e1d2005-05-29 14:58:36 -070010743 return err;
10744}
10745
Michael Chan9f40dea2005-09-05 17:53:06 -070010746#define TG3_MAC_LOOPBACK 0
10747#define TG3_PHY_LOOPBACK 1
10748
10749static int tg3_run_loopback(struct tg3 *tp, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -070010750{
Michael Chan9f40dea2005-09-05 17:53:06 -070010751 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010752 u32 desc_idx, coal_now;
Michael Chanc76949a2005-05-29 14:58:59 -070010753 struct sk_buff *skb, *rx_skb;
10754 u8 *tx_data;
10755 dma_addr_t map;
10756 int num_pkts, tx_len, rx_len, i, err;
10757 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000010758 struct tg3_napi *tnapi, *rnapi;
Matt Carlson21f581a2009-08-28 14:00:25 +000010759 struct tg3_rx_prodring_set *tpr = &tp->prodring[0];
Michael Chanc76949a2005-05-29 14:58:59 -070010760
Matt Carlsonc8873402010-02-12 14:47:11 +000010761 tnapi = &tp->napi[0];
10762 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010763 if (tp->irq_cnt > 1) {
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010764 rnapi = &tp->napi[1];
Matt Carlsonc8873402010-02-12 14:47:11 +000010765 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
10766 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010767 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010768 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000010769
Michael Chan9f40dea2005-09-05 17:53:06 -070010770 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -070010771 /* HW errata - mac loopback fails in some cases on 5780.
10772 * Normal traffic and PHY loopback are not affected by
10773 * errata.
10774 */
10775 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780)
10776 return 0;
10777
Michael Chan9f40dea2005-09-05 17:53:06 -070010778 mac_mode = (tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK) |
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010779 MAC_MODE_PORT_INT_LPBACK;
10780 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
10781 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chan3f7045c2006-09-27 16:02:29 -070010782 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
10783 mac_mode |= MAC_MODE_PORT_MODE_MII;
10784 else
10785 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -070010786 tw32(MAC_MODE, mac_mode);
10787 } else if (loopback_mode == TG3_PHY_LOOPBACK) {
Michael Chan3f7045c2006-09-27 16:02:29 -070010788 u32 val;
10789
Matt Carlson7f97a4b2009-08-25 10:10:03 +000010790 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
10791 tg3_phy_fet_toggle_apd(tp, false);
Michael Chan5d64ad32006-12-07 00:19:40 -080010792 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
10793 } else
10794 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -070010795
Matt Carlson9ef8ca92007-07-11 19:48:29 -070010796 tg3_phy_toggle_automdix(tp, 0);
10797
Michael Chan3f7045c2006-09-27 16:02:29 -070010798 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -070010799 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -080010800
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010801 mac_mode = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000010802 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
Matt Carlson1061b7c2010-02-12 14:47:12 +000010803 tg3_writephy(tp, MII_TG3_FET_PTEST,
10804 MII_TG3_FET_PTEST_FRC_TX_LINK |
10805 MII_TG3_FET_PTEST_FRC_TX_LOCK);
10806 /* The write needs to be flushed for the AC131 */
10807 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
10808 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
Michael Chan5d64ad32006-12-07 00:19:40 -080010809 mac_mode |= MAC_MODE_PORT_MODE_MII;
10810 } else
10811 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -070010812
Michael Chanc94e3942005-09-27 12:12:42 -070010813 /* reset to prevent losing 1st rx packet intermittently */
10814 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
10815 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10816 udelay(10);
10817 tw32_f(MAC_RX_MODE, tp->rx_mode);
10818 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010819 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlson79eb6902010-02-17 15:17:03 +000010820 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
10821 if (masked_phy_id == TG3_PHY_ID_BCM5401)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010822 mac_mode &= ~MAC_MODE_LINK_POLARITY;
Matt Carlson79eb6902010-02-17 15:17:03 +000010823 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010824 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -080010825 tg3_writephy(tp, MII_TG3_EXT_CTRL,
10826 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
10827 }
Michael Chan9f40dea2005-09-05 17:53:06 -070010828 tw32(MAC_MODE, mac_mode);
Michael Chan9f40dea2005-09-05 17:53:06 -070010829 }
10830 else
10831 return -EINVAL;
Michael Chanc76949a2005-05-29 14:58:59 -070010832
10833 err = -EIO;
10834
Michael Chanc76949a2005-05-29 14:58:59 -070010835 tx_len = 1514;
David S. Millera20e9c62006-07-31 22:38:16 -070010836 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070010837 if (!skb)
10838 return -ENOMEM;
10839
Michael Chanc76949a2005-05-29 14:58:59 -070010840 tx_data = skb_put(skb, tx_len);
10841 memcpy(tx_data, tp->dev->dev_addr, 6);
10842 memset(tx_data + 6, 0x0, 8);
10843
10844 tw32(MAC_RX_MTU_SIZE, tx_len + 4);
10845
10846 for (i = 14; i < tx_len; i++)
10847 tx_data[i] = (u8) (i & 0xff);
10848
Alexander Duyckf4188d82009-12-02 16:48:38 +000010849 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
10850 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000010851 dev_kfree_skb(skb);
10852 return -EIO;
10853 }
Michael Chanc76949a2005-05-29 14:58:59 -070010854
10855 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010856 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070010857
10858 udelay(10);
10859
Matt Carlson898a56f2009-08-28 14:02:40 +000010860 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070010861
Michael Chanc76949a2005-05-29 14:58:59 -070010862 num_pkts = 0;
10863
Alexander Duyckf4188d82009-12-02 16:48:38 +000010864 tg3_set_txd(tnapi, tnapi->tx_prod, map, tx_len, 0, 1);
Michael Chanc76949a2005-05-29 14:58:59 -070010865
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010866 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070010867 num_pkts++;
10868
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010869 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
10870 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070010871
10872 udelay(10);
10873
Matt Carlson303fc922009-11-02 14:27:34 +000010874 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
10875 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070010876 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010877 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070010878
10879 udelay(10);
10880
Matt Carlson898a56f2009-08-28 14:02:40 +000010881 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
10882 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010883 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070010884 (rx_idx == (rx_start_idx + num_pkts)))
10885 break;
10886 }
10887
Alexander Duyckf4188d82009-12-02 16:48:38 +000010888 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
Michael Chanc76949a2005-05-29 14:58:59 -070010889 dev_kfree_skb(skb);
10890
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010891 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070010892 goto out;
10893
10894 if (rx_idx != rx_start_idx + num_pkts)
10895 goto out;
10896
Matt Carlson72334482009-08-28 14:03:01 +000010897 desc = &rnapi->rx_rcb[rx_start_idx];
Michael Chanc76949a2005-05-29 14:58:59 -070010898 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
10899 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
10900 if (opaque_key != RXD_OPAQUE_RING_STD)
10901 goto out;
10902
10903 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
10904 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
10905 goto out;
10906
10907 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) - 4;
10908 if (rx_len != tx_len)
10909 goto out;
10910
Matt Carlson21f581a2009-08-28 14:00:25 +000010911 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
Michael Chanc76949a2005-05-29 14:58:59 -070010912
Matt Carlson21f581a2009-08-28 14:00:25 +000010913 map = pci_unmap_addr(&tpr->rx_std_buffers[desc_idx], mapping);
Michael Chanc76949a2005-05-29 14:58:59 -070010914 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len, PCI_DMA_FROMDEVICE);
10915
10916 for (i = 14; i < tx_len; i++) {
10917 if (*(rx_skb->data + i) != (u8) (i & 0xff))
10918 goto out;
10919 }
10920 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010921
Michael Chanc76949a2005-05-29 14:58:59 -070010922 /* tg3_free_rings will unmap and free the rx_skb */
10923out:
10924 return err;
10925}
10926
Michael Chan9f40dea2005-09-05 17:53:06 -070010927#define TG3_MAC_LOOPBACK_FAILED 1
10928#define TG3_PHY_LOOPBACK_FAILED 2
10929#define TG3_LOOPBACK_FAILED (TG3_MAC_LOOPBACK_FAILED | \
10930 TG3_PHY_LOOPBACK_FAILED)
10931
10932static int tg3_test_loopback(struct tg3 *tp)
10933{
10934 int err = 0;
Matt Carlson9936bcf2007-10-10 18:03:07 -070010935 u32 cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070010936
10937 if (!netif_running(tp->dev))
10938 return TG3_LOOPBACK_FAILED;
10939
Michael Chanb9ec6c12006-07-25 16:37:27 -070010940 err = tg3_reset_hw(tp, 1);
10941 if (err)
10942 return TG3_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070010943
Matt Carlson6833c042008-11-21 17:18:59 -080010944 /* Turn off gphy autopowerdown. */
10945 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
10946 tg3_phy_toggle_apd(tp, false);
10947
Matt Carlson321d32a2008-11-21 17:22:19 -080010948 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070010949 int i;
10950 u32 status;
10951
10952 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
10953
10954 /* Wait for up to 40 microseconds to acquire lock. */
10955 for (i = 0; i < 4; i++) {
10956 status = tr32(TG3_CPMU_MUTEX_GNT);
10957 if (status == CPMU_MUTEX_GNT_DRIVER)
10958 break;
10959 udelay(10);
10960 }
10961
10962 if (status != CPMU_MUTEX_GNT_DRIVER)
10963 return TG3_LOOPBACK_FAILED;
10964
Matt Carlsonb2a5c192008-04-03 21:44:44 -070010965 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080010966 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070010967 tw32(TG3_CPMU_CTRL,
10968 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
10969 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070010970 }
10971
Michael Chan9f40dea2005-09-05 17:53:06 -070010972 if (tg3_run_loopback(tp, TG3_MAC_LOOPBACK))
10973 err |= TG3_MAC_LOOPBACK_FAILED;
Matt Carlson9936bcf2007-10-10 18:03:07 -070010974
Matt Carlson321d32a2008-11-21 17:22:19 -080010975 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070010976 tw32(TG3_CPMU_CTRL, cpmuctrl);
10977
10978 /* Release the mutex */
10979 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
10980 }
10981
Matt Carlsondd477002008-05-25 23:45:58 -070010982 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
10983 !(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
Michael Chan9f40dea2005-09-05 17:53:06 -070010984 if (tg3_run_loopback(tp, TG3_PHY_LOOPBACK))
10985 err |= TG3_PHY_LOOPBACK_FAILED;
10986 }
10987
Matt Carlson6833c042008-11-21 17:18:59 -080010988 /* Re-enable gphy autopowerdown. */
10989 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
10990 tg3_phy_toggle_apd(tp, true);
10991
Michael Chan9f40dea2005-09-05 17:53:06 -070010992 return err;
10993}
10994
Michael Chan4cafd3f2005-05-29 14:56:34 -070010995static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
10996 u64 *data)
10997{
Michael Chan566f86a2005-05-29 14:56:58 -070010998 struct tg3 *tp = netdev_priv(dev);
10999
Michael Chanbc1c7562006-03-20 17:48:03 -080011000 if (tp->link_config.phy_is_low_power)
11001 tg3_set_power_state(tp, PCI_D0);
11002
Michael Chan566f86a2005-05-29 14:56:58 -070011003 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11004
11005 if (tg3_test_nvram(tp) != 0) {
11006 etest->flags |= ETH_TEST_FL_FAILED;
11007 data[0] = 1;
11008 }
Michael Chanca430072005-05-29 14:57:23 -070011009 if (tg3_test_link(tp) != 0) {
11010 etest->flags |= ETH_TEST_FL_FAILED;
11011 data[1] = 1;
11012 }
Michael Chana71116d2005-05-29 14:58:11 -070011013 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011014 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011015
Michael Chanbbe832c2005-06-24 20:20:04 -070011016 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011017 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011018 tg3_netif_stop(tp);
11019 irq_sync = 1;
11020 }
11021
11022 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011023
11024 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011025 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011026 tg3_halt_cpu(tp, RX_CPU_BASE);
11027 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
11028 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011029 if (!err)
11030 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011031
Michael Chand9ab5ad12006-03-20 22:27:35 -080011032 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
11033 tg3_phy_reset(tp);
11034
Michael Chana71116d2005-05-29 14:58:11 -070011035 if (tg3_test_registers(tp) != 0) {
11036 etest->flags |= ETH_TEST_FL_FAILED;
11037 data[2] = 1;
11038 }
Michael Chan7942e1d2005-05-29 14:58:36 -070011039 if (tg3_test_memory(tp) != 0) {
11040 etest->flags |= ETH_TEST_FL_FAILED;
11041 data[3] = 1;
11042 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011043 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070011044 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011045
David S. Millerf47c11e2005-06-24 20:18:35 -070011046 tg3_full_unlock(tp);
11047
Michael Chand4bc3922005-05-29 14:59:20 -070011048 if (tg3_test_interrupt(tp) != 0) {
11049 etest->flags |= ETH_TEST_FL_FAILED;
11050 data[5] = 1;
11051 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011052
11053 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011054
Michael Chana71116d2005-05-29 14:58:11 -070011055 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11056 if (netif_running(dev)) {
11057 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011058 err2 = tg3_restart_hw(tp, 1);
11059 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011060 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011061 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011062
11063 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011064
11065 if (irq_sync && !err2)
11066 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011067 }
Michael Chanbc1c7562006-03-20 17:48:03 -080011068 if (tp->link_config.phy_is_low_power)
11069 tg3_set_power_state(tp, PCI_D3hot);
11070
Michael Chan4cafd3f2005-05-29 14:56:34 -070011071}
11072
Linus Torvalds1da177e2005-04-16 15:20:36 -070011073static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11074{
11075 struct mii_ioctl_data *data = if_mii(ifr);
11076 struct tg3 *tp = netdev_priv(dev);
11077 int err;
11078
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011079 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011080 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011081 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
11082 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011083 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11084 return phy_mii_ioctl(phydev, data, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011085 }
11086
Linus Torvalds1da177e2005-04-16 15:20:36 -070011087 switch(cmd) {
11088 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011089 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011090
11091 /* fallthru */
11092 case SIOCGMIIREG: {
11093 u32 mii_regval;
11094
11095 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
11096 break; /* We have no PHY */
11097
Michael Chanbc1c7562006-03-20 17:48:03 -080011098 if (tp->link_config.phy_is_low_power)
11099 return -EAGAIN;
11100
David S. Millerf47c11e2005-06-24 20:18:35 -070011101 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011102 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011103 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011104
11105 data->val_out = mii_regval;
11106
11107 return err;
11108 }
11109
11110 case SIOCSMIIREG:
11111 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
11112 break; /* We have no PHY */
11113
Michael Chanbc1c7562006-03-20 17:48:03 -080011114 if (tp->link_config.phy_is_low_power)
11115 return -EAGAIN;
11116
David S. Millerf47c11e2005-06-24 20:18:35 -070011117 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011118 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011119 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011120
11121 return err;
11122
11123 default:
11124 /* do nothing */
11125 break;
11126 }
11127 return -EOPNOTSUPP;
11128}
11129
11130#if TG3_VLAN_TAG_USED
11131static void tg3_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
11132{
11133 struct tg3 *tp = netdev_priv(dev);
11134
Matt Carlson844b3ee2009-02-25 14:23:56 +000011135 if (!netif_running(dev)) {
11136 tp->vlgrp = grp;
11137 return;
11138 }
11139
11140 tg3_netif_stop(tp);
Michael Chan29315e82006-06-29 20:12:30 -070011141
David S. Millerf47c11e2005-06-24 20:18:35 -070011142 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011143
11144 tp->vlgrp = grp;
11145
11146 /* Update RX_MODE_KEEP_VLAN_TAG bit in RX_MODE register. */
11147 __tg3_set_rx_mode(dev);
11148
Matt Carlson844b3ee2009-02-25 14:23:56 +000011149 tg3_netif_start(tp);
Michael Chan46966542007-07-11 19:47:19 -070011150
11151 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011152}
Linus Torvalds1da177e2005-04-16 15:20:36 -070011153#endif
11154
David S. Miller15f98502005-05-18 22:49:26 -070011155static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11156{
11157 struct tg3 *tp = netdev_priv(dev);
11158
11159 memcpy(ec, &tp->coal, sizeof(*ec));
11160 return 0;
11161}
11162
Michael Chand244c892005-07-05 14:42:33 -070011163static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11164{
11165 struct tg3 *tp = netdev_priv(dev);
11166 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11167 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11168
11169 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
11170 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11171 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11172 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11173 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11174 }
11175
11176 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11177 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11178 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11179 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11180 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11181 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11182 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11183 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11184 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11185 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11186 return -EINVAL;
11187
11188 /* No rx interrupts will be generated if both are zero */
11189 if ((ec->rx_coalesce_usecs == 0) &&
11190 (ec->rx_max_coalesced_frames == 0))
11191 return -EINVAL;
11192
11193 /* No tx interrupts will be generated if both are zero */
11194 if ((ec->tx_coalesce_usecs == 0) &&
11195 (ec->tx_max_coalesced_frames == 0))
11196 return -EINVAL;
11197
11198 /* Only copy relevant parameters, ignore all others. */
11199 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11200 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11201 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11202 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11203 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11204 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11205 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11206 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11207 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11208
11209 if (netif_running(dev)) {
11210 tg3_full_lock(tp, 0);
11211 __tg3_set_coalesce(tp, &tp->coal);
11212 tg3_full_unlock(tp);
11213 }
11214 return 0;
11215}
11216
Jeff Garzik7282d492006-09-13 14:30:00 -040011217static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011218 .get_settings = tg3_get_settings,
11219 .set_settings = tg3_set_settings,
11220 .get_drvinfo = tg3_get_drvinfo,
11221 .get_regs_len = tg3_get_regs_len,
11222 .get_regs = tg3_get_regs,
11223 .get_wol = tg3_get_wol,
11224 .set_wol = tg3_set_wol,
11225 .get_msglevel = tg3_get_msglevel,
11226 .set_msglevel = tg3_set_msglevel,
11227 .nway_reset = tg3_nway_reset,
11228 .get_link = ethtool_op_get_link,
11229 .get_eeprom_len = tg3_get_eeprom_len,
11230 .get_eeprom = tg3_get_eeprom,
11231 .set_eeprom = tg3_set_eeprom,
11232 .get_ringparam = tg3_get_ringparam,
11233 .set_ringparam = tg3_set_ringparam,
11234 .get_pauseparam = tg3_get_pauseparam,
11235 .set_pauseparam = tg3_set_pauseparam,
11236 .get_rx_csum = tg3_get_rx_csum,
11237 .set_rx_csum = tg3_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011238 .set_tx_csum = tg3_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011239 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011240 .set_tso = tg3_set_tso,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011241 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011242 .get_strings = tg3_get_strings,
Michael Chan4009a932005-09-05 17:52:54 -070011243 .phys_id = tg3_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011244 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011245 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011246 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011247 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011248};
11249
11250static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11251{
Michael Chan1b277772006-03-20 22:27:48 -080011252 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011253
11254 tp->nvram_size = EEPROM_CHIP_SIZE;
11255
Matt Carlsone4f34112009-02-25 14:25:00 +000011256 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011257 return;
11258
Michael Chanb16250e2006-09-27 16:10:14 -070011259 if ((magic != TG3_EEPROM_MAGIC) &&
11260 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11261 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011262 return;
11263
11264 /*
11265 * Size the chip by reading offsets at increasing powers of two.
11266 * When we encounter our validation signature, we know the addressing
11267 * has wrapped around, and thus have our chip size.
11268 */
Michael Chan1b277772006-03-20 22:27:48 -080011269 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011270
11271 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011272 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011273 return;
11274
Michael Chan18201802006-03-20 22:29:15 -080011275 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011276 break;
11277
11278 cursize <<= 1;
11279 }
11280
11281 tp->nvram_size = cursize;
11282}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011283
Linus Torvalds1da177e2005-04-16 15:20:36 -070011284static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11285{
11286 u32 val;
11287
Matt Carlsondf259d82009-04-20 06:57:14 +000011288 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
11289 tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011290 return;
11291
11292 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011293 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011294 tg3_get_eeprom_size(tp);
11295 return;
11296 }
11297
Matt Carlson6d348f22009-02-25 14:25:52 +000011298 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011299 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011300 /* This is confusing. We want to operate on the
11301 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11302 * call will read from NVRAM and byteswap the data
11303 * according to the byteswapping settings for all
11304 * other register accesses. This ensures the data we
11305 * want will always reside in the lower 16-bits.
11306 * However, the data in NVRAM is in LE format, which
11307 * means the data from the NVRAM read will always be
11308 * opposite the endianness of the CPU. The 16-bit
11309 * byteswap then brings the data to CPU endianness.
11310 */
11311 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011312 return;
11313 }
11314 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070011315 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011316}
11317
11318static void __devinit tg3_get_nvram_info(struct tg3 *tp)
11319{
11320 u32 nvcfg1;
11321
11322 nvcfg1 = tr32(NVRAM_CFG1);
11323 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
11324 tp->tg3_flags2 |= TG3_FLG2_FLASH;
Matt Carlson8590a602009-08-28 12:29:16 +000011325 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011326 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11327 tw32(NVRAM_CFG1, nvcfg1);
11328 }
11329
Michael Chan4c987482005-09-05 17:52:38 -070011330 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) ||
Michael Chana4e2b342005-10-26 15:46:52 -070011331 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011332 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011333 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
11334 tp->nvram_jedecnum = JEDEC_ATMEL;
11335 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
11336 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11337 break;
11338 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
11339 tp->nvram_jedecnum = JEDEC_ATMEL;
11340 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
11341 break;
11342 case FLASH_VENDOR_ATMEL_EEPROM:
11343 tp->nvram_jedecnum = JEDEC_ATMEL;
11344 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11345 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11346 break;
11347 case FLASH_VENDOR_ST:
11348 tp->nvram_jedecnum = JEDEC_ST;
11349 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
11350 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11351 break;
11352 case FLASH_VENDOR_SAIFUN:
11353 tp->nvram_jedecnum = JEDEC_SAIFUN;
11354 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
11355 break;
11356 case FLASH_VENDOR_SST_SMALL:
11357 case FLASH_VENDOR_SST_LARGE:
11358 tp->nvram_jedecnum = JEDEC_SST;
11359 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
11360 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011361 }
Matt Carlson8590a602009-08-28 12:29:16 +000011362 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011363 tp->nvram_jedecnum = JEDEC_ATMEL;
11364 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
11365 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11366 }
11367}
11368
Matt Carlsona1b950d2009-09-01 13:20:17 +000011369static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
11370{
11371 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
11372 case FLASH_5752PAGE_SIZE_256:
11373 tp->nvram_pagesize = 256;
11374 break;
11375 case FLASH_5752PAGE_SIZE_512:
11376 tp->nvram_pagesize = 512;
11377 break;
11378 case FLASH_5752PAGE_SIZE_1K:
11379 tp->nvram_pagesize = 1024;
11380 break;
11381 case FLASH_5752PAGE_SIZE_2K:
11382 tp->nvram_pagesize = 2048;
11383 break;
11384 case FLASH_5752PAGE_SIZE_4K:
11385 tp->nvram_pagesize = 4096;
11386 break;
11387 case FLASH_5752PAGE_SIZE_264:
11388 tp->nvram_pagesize = 264;
11389 break;
11390 case FLASH_5752PAGE_SIZE_528:
11391 tp->nvram_pagesize = 528;
11392 break;
11393 }
11394}
11395
Michael Chan361b4ac2005-04-21 17:11:21 -070011396static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
11397{
11398 u32 nvcfg1;
11399
11400 nvcfg1 = tr32(NVRAM_CFG1);
11401
Michael Chane6af3012005-04-21 17:12:05 -070011402 /* NVRAM protection for TPM */
11403 if (nvcfg1 & (1 << 27))
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011404 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Michael Chane6af3012005-04-21 17:12:05 -070011405
Michael Chan361b4ac2005-04-21 17:11:21 -070011406 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011407 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
11408 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
11409 tp->nvram_jedecnum = JEDEC_ATMEL;
11410 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11411 break;
11412 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11413 tp->nvram_jedecnum = JEDEC_ATMEL;
11414 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11415 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11416 break;
11417 case FLASH_5752VENDOR_ST_M45PE10:
11418 case FLASH_5752VENDOR_ST_M45PE20:
11419 case FLASH_5752VENDOR_ST_M45PE40:
11420 tp->nvram_jedecnum = JEDEC_ST;
11421 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11422 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11423 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070011424 }
11425
11426 if (tp->tg3_flags2 & TG3_FLG2_FLASH) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000011427 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000011428 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070011429 /* For eeprom, set pagesize to maximum eeprom size */
11430 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11431
11432 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11433 tw32(NVRAM_CFG1, nvcfg1);
11434 }
11435}
11436
Michael Chand3c7b882006-03-23 01:28:25 -080011437static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
11438{
Matt Carlson989a9d22007-05-05 11:51:05 -070011439 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080011440
11441 nvcfg1 = tr32(NVRAM_CFG1);
11442
11443 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070011444 if (nvcfg1 & (1 << 27)) {
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011445 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Matt Carlson989a9d22007-05-05 11:51:05 -070011446 protect = 1;
11447 }
Michael Chand3c7b882006-03-23 01:28:25 -080011448
Matt Carlson989a9d22007-05-05 11:51:05 -070011449 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11450 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011451 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11452 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11453 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11454 case FLASH_5755VENDOR_ATMEL_FLASH_5:
11455 tp->nvram_jedecnum = JEDEC_ATMEL;
11456 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11457 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11458 tp->nvram_pagesize = 264;
11459 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
11460 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
11461 tp->nvram_size = (protect ? 0x3e200 :
11462 TG3_NVRAM_SIZE_512KB);
11463 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
11464 tp->nvram_size = (protect ? 0x1f200 :
11465 TG3_NVRAM_SIZE_256KB);
11466 else
11467 tp->nvram_size = (protect ? 0x1f200 :
11468 TG3_NVRAM_SIZE_128KB);
11469 break;
11470 case FLASH_5752VENDOR_ST_M45PE10:
11471 case FLASH_5752VENDOR_ST_M45PE20:
11472 case FLASH_5752VENDOR_ST_M45PE40:
11473 tp->nvram_jedecnum = JEDEC_ST;
11474 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11475 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11476 tp->nvram_pagesize = 256;
11477 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
11478 tp->nvram_size = (protect ?
11479 TG3_NVRAM_SIZE_64KB :
11480 TG3_NVRAM_SIZE_128KB);
11481 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
11482 tp->nvram_size = (protect ?
11483 TG3_NVRAM_SIZE_64KB :
11484 TG3_NVRAM_SIZE_256KB);
11485 else
11486 tp->nvram_size = (protect ?
11487 TG3_NVRAM_SIZE_128KB :
11488 TG3_NVRAM_SIZE_512KB);
11489 break;
Michael Chand3c7b882006-03-23 01:28:25 -080011490 }
11491}
11492
Michael Chan1b277772006-03-20 22:27:48 -080011493static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
11494{
11495 u32 nvcfg1;
11496
11497 nvcfg1 = tr32(NVRAM_CFG1);
11498
11499 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011500 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
11501 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11502 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
11503 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11504 tp->nvram_jedecnum = JEDEC_ATMEL;
11505 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11506 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080011507
Matt Carlson8590a602009-08-28 12:29:16 +000011508 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11509 tw32(NVRAM_CFG1, nvcfg1);
11510 break;
11511 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11512 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11513 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11514 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11515 tp->nvram_jedecnum = JEDEC_ATMEL;
11516 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11517 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11518 tp->nvram_pagesize = 264;
11519 break;
11520 case FLASH_5752VENDOR_ST_M45PE10:
11521 case FLASH_5752VENDOR_ST_M45PE20:
11522 case FLASH_5752VENDOR_ST_M45PE40:
11523 tp->nvram_jedecnum = JEDEC_ST;
11524 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11525 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11526 tp->nvram_pagesize = 256;
11527 break;
Michael Chan1b277772006-03-20 22:27:48 -080011528 }
11529}
11530
Matt Carlson6b91fa02007-10-10 18:01:09 -070011531static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
11532{
11533 u32 nvcfg1, protect = 0;
11534
11535 nvcfg1 = tr32(NVRAM_CFG1);
11536
11537 /* NVRAM protection for TPM */
11538 if (nvcfg1 & (1 << 27)) {
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011539 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011540 protect = 1;
11541 }
11542
11543 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11544 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011545 case FLASH_5761VENDOR_ATMEL_ADB021D:
11546 case FLASH_5761VENDOR_ATMEL_ADB041D:
11547 case FLASH_5761VENDOR_ATMEL_ADB081D:
11548 case FLASH_5761VENDOR_ATMEL_ADB161D:
11549 case FLASH_5761VENDOR_ATMEL_MDB021D:
11550 case FLASH_5761VENDOR_ATMEL_MDB041D:
11551 case FLASH_5761VENDOR_ATMEL_MDB081D:
11552 case FLASH_5761VENDOR_ATMEL_MDB161D:
11553 tp->nvram_jedecnum = JEDEC_ATMEL;
11554 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11555 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11556 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
11557 tp->nvram_pagesize = 256;
11558 break;
11559 case FLASH_5761VENDOR_ST_A_M45PE20:
11560 case FLASH_5761VENDOR_ST_A_M45PE40:
11561 case FLASH_5761VENDOR_ST_A_M45PE80:
11562 case FLASH_5761VENDOR_ST_A_M45PE16:
11563 case FLASH_5761VENDOR_ST_M_M45PE20:
11564 case FLASH_5761VENDOR_ST_M_M45PE40:
11565 case FLASH_5761VENDOR_ST_M_M45PE80:
11566 case FLASH_5761VENDOR_ST_M_M45PE16:
11567 tp->nvram_jedecnum = JEDEC_ST;
11568 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11569 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11570 tp->nvram_pagesize = 256;
11571 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011572 }
11573
11574 if (protect) {
11575 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
11576 } else {
11577 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011578 case FLASH_5761VENDOR_ATMEL_ADB161D:
11579 case FLASH_5761VENDOR_ATMEL_MDB161D:
11580 case FLASH_5761VENDOR_ST_A_M45PE16:
11581 case FLASH_5761VENDOR_ST_M_M45PE16:
11582 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
11583 break;
11584 case FLASH_5761VENDOR_ATMEL_ADB081D:
11585 case FLASH_5761VENDOR_ATMEL_MDB081D:
11586 case FLASH_5761VENDOR_ST_A_M45PE80:
11587 case FLASH_5761VENDOR_ST_M_M45PE80:
11588 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
11589 break;
11590 case FLASH_5761VENDOR_ATMEL_ADB041D:
11591 case FLASH_5761VENDOR_ATMEL_MDB041D:
11592 case FLASH_5761VENDOR_ST_A_M45PE40:
11593 case FLASH_5761VENDOR_ST_M_M45PE40:
11594 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11595 break;
11596 case FLASH_5761VENDOR_ATMEL_ADB021D:
11597 case FLASH_5761VENDOR_ATMEL_MDB021D:
11598 case FLASH_5761VENDOR_ST_A_M45PE20:
11599 case FLASH_5761VENDOR_ST_M_M45PE20:
11600 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11601 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011602 }
11603 }
11604}
11605
Michael Chanb5d37722006-09-27 16:06:21 -070011606static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
11607{
11608 tp->nvram_jedecnum = JEDEC_ATMEL;
11609 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11610 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11611}
11612
Matt Carlson321d32a2008-11-21 17:22:19 -080011613static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
11614{
11615 u32 nvcfg1;
11616
11617 nvcfg1 = tr32(NVRAM_CFG1);
11618
11619 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11620 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11621 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11622 tp->nvram_jedecnum = JEDEC_ATMEL;
11623 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11624 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11625
11626 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11627 tw32(NVRAM_CFG1, nvcfg1);
11628 return;
11629 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11630 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11631 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11632 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11633 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11634 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11635 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11636 tp->nvram_jedecnum = JEDEC_ATMEL;
11637 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11638 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11639
11640 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11641 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11642 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11643 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11644 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11645 break;
11646 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11647 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11648 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11649 break;
11650 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11651 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11652 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11653 break;
11654 }
11655 break;
11656 case FLASH_5752VENDOR_ST_M45PE10:
11657 case FLASH_5752VENDOR_ST_M45PE20:
11658 case FLASH_5752VENDOR_ST_M45PE40:
11659 tp->nvram_jedecnum = JEDEC_ST;
11660 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11661 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11662
11663 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11664 case FLASH_5752VENDOR_ST_M45PE10:
11665 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11666 break;
11667 case FLASH_5752VENDOR_ST_M45PE20:
11668 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11669 break;
11670 case FLASH_5752VENDOR_ST_M45PE40:
11671 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11672 break;
11673 }
11674 break;
11675 default:
Matt Carlsondf259d82009-04-20 06:57:14 +000011676 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM;
Matt Carlson321d32a2008-11-21 17:22:19 -080011677 return;
11678 }
11679
Matt Carlsona1b950d2009-09-01 13:20:17 +000011680 tg3_nvram_get_pagesize(tp, nvcfg1);
11681 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Matt Carlson321d32a2008-11-21 17:22:19 -080011682 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011683}
11684
11685
11686static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
11687{
11688 u32 nvcfg1;
11689
11690 nvcfg1 = tr32(NVRAM_CFG1);
11691
11692 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11693 case FLASH_5717VENDOR_ATMEL_EEPROM:
11694 case FLASH_5717VENDOR_MICRO_EEPROM:
11695 tp->nvram_jedecnum = JEDEC_ATMEL;
11696 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11697 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11698
11699 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11700 tw32(NVRAM_CFG1, nvcfg1);
11701 return;
11702 case FLASH_5717VENDOR_ATMEL_MDB011D:
11703 case FLASH_5717VENDOR_ATMEL_ADB011B:
11704 case FLASH_5717VENDOR_ATMEL_ADB011D:
11705 case FLASH_5717VENDOR_ATMEL_MDB021D:
11706 case FLASH_5717VENDOR_ATMEL_ADB021B:
11707 case FLASH_5717VENDOR_ATMEL_ADB021D:
11708 case FLASH_5717VENDOR_ATMEL_45USPT:
11709 tp->nvram_jedecnum = JEDEC_ATMEL;
11710 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11711 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11712
11713 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11714 case FLASH_5717VENDOR_ATMEL_MDB021D:
11715 case FLASH_5717VENDOR_ATMEL_ADB021B:
11716 case FLASH_5717VENDOR_ATMEL_ADB021D:
11717 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11718 break;
11719 default:
11720 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11721 break;
11722 }
Matt Carlson321d32a2008-11-21 17:22:19 -080011723 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011724 case FLASH_5717VENDOR_ST_M_M25PE10:
11725 case FLASH_5717VENDOR_ST_A_M25PE10:
11726 case FLASH_5717VENDOR_ST_M_M45PE10:
11727 case FLASH_5717VENDOR_ST_A_M45PE10:
11728 case FLASH_5717VENDOR_ST_M_M25PE20:
11729 case FLASH_5717VENDOR_ST_A_M25PE20:
11730 case FLASH_5717VENDOR_ST_M_M45PE20:
11731 case FLASH_5717VENDOR_ST_A_M45PE20:
11732 case FLASH_5717VENDOR_ST_25USPT:
11733 case FLASH_5717VENDOR_ST_45USPT:
11734 tp->nvram_jedecnum = JEDEC_ST;
11735 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11736 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11737
11738 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11739 case FLASH_5717VENDOR_ST_M_M25PE20:
11740 case FLASH_5717VENDOR_ST_A_M25PE20:
11741 case FLASH_5717VENDOR_ST_M_M45PE20:
11742 case FLASH_5717VENDOR_ST_A_M45PE20:
11743 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11744 break;
11745 default:
11746 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11747 break;
11748 }
Matt Carlson321d32a2008-11-21 17:22:19 -080011749 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011750 default:
11751 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM;
11752 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080011753 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000011754
11755 tg3_nvram_get_pagesize(tp, nvcfg1);
11756 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
11757 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
Matt Carlson321d32a2008-11-21 17:22:19 -080011758}
11759
Linus Torvalds1da177e2005-04-16 15:20:36 -070011760/* Chips other than 5700/5701 use the NVRAM for fetching info. */
11761static void __devinit tg3_nvram_init(struct tg3 *tp)
11762{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011763 tw32_f(GRC_EEPROM_ADDR,
11764 (EEPROM_ADDR_FSM_RESET |
11765 (EEPROM_DEFAULT_CLOCK_PERIOD <<
11766 EEPROM_ADDR_CLKPERD_SHIFT)));
11767
Michael Chan9d57f012006-12-07 00:23:25 -080011768 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011769
11770 /* Enable seeprom accesses. */
11771 tw32_f(GRC_LOCAL_CTRL,
11772 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
11773 udelay(100);
11774
11775 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
11776 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
11777 tp->tg3_flags |= TG3_FLAG_NVRAM;
11778
Michael Chanec41c7d2006-01-17 02:40:55 -080011779 if (tg3_nvram_lock(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +000011780 netdev_warn(tp->dev, "Cannot get nvram lock, %s failed\n",
11781 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080011782 return;
11783 }
Michael Chane6af3012005-04-21 17:12:05 -070011784 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011785
Matt Carlson989a9d22007-05-05 11:51:05 -070011786 tp->nvram_size = 0;
11787
Michael Chan361b4ac2005-04-21 17:11:21 -070011788 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
11789 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080011790 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
11791 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070011792 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070011793 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
11794 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080011795 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070011796 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
11797 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070011798 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11799 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000011800 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
11801 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080011802 tg3_get_57780_nvram_info(tp);
Matt Carlsona1b950d2009-09-01 13:20:17 +000011803 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
11804 tg3_get_5717_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070011805 else
11806 tg3_get_nvram_info(tp);
11807
Matt Carlson989a9d22007-05-05 11:51:05 -070011808 if (tp->nvram_size == 0)
11809 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011810
Michael Chane6af3012005-04-21 17:12:05 -070011811 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080011812 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011813
11814 } else {
11815 tp->tg3_flags &= ~(TG3_FLAG_NVRAM | TG3_FLAG_NVRAM_BUFFERED);
11816
11817 tg3_get_eeprom_size(tp);
11818 }
11819}
11820
Linus Torvalds1da177e2005-04-16 15:20:36 -070011821static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
11822 u32 offset, u32 len, u8 *buf)
11823{
11824 int i, j, rc = 0;
11825 u32 val;
11826
11827 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011828 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011829 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011830
11831 addr = offset + i;
11832
11833 memcpy(&data, buf + i, 4);
11834
Matt Carlson62cedd12009-04-20 14:52:29 -070011835 /*
11836 * The SEEPROM interface expects the data to always be opposite
11837 * the native endian format. We accomplish this by reversing
11838 * all the operations that would have been performed on the
11839 * data from a call to tg3_nvram_read_be32().
11840 */
11841 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011842
11843 val = tr32(GRC_EEPROM_ADDR);
11844 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
11845
11846 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
11847 EEPROM_ADDR_READ);
11848 tw32(GRC_EEPROM_ADDR, val |
11849 (0 << EEPROM_ADDR_DEVID_SHIFT) |
11850 (addr & EEPROM_ADDR_ADDR_MASK) |
11851 EEPROM_ADDR_START |
11852 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011853
Michael Chan9d57f012006-12-07 00:23:25 -080011854 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011855 val = tr32(GRC_EEPROM_ADDR);
11856
11857 if (val & EEPROM_ADDR_COMPLETE)
11858 break;
Michael Chan9d57f012006-12-07 00:23:25 -080011859 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011860 }
11861 if (!(val & EEPROM_ADDR_COMPLETE)) {
11862 rc = -EBUSY;
11863 break;
11864 }
11865 }
11866
11867 return rc;
11868}
11869
11870/* offset and length are dword aligned */
11871static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
11872 u8 *buf)
11873{
11874 int ret = 0;
11875 u32 pagesize = tp->nvram_pagesize;
11876 u32 pagemask = pagesize - 1;
11877 u32 nvram_cmd;
11878 u8 *tmp;
11879
11880 tmp = kmalloc(pagesize, GFP_KERNEL);
11881 if (tmp == NULL)
11882 return -ENOMEM;
11883
11884 while (len) {
11885 int j;
Michael Chane6af3012005-04-21 17:12:05 -070011886 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011887
11888 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011889
Linus Torvalds1da177e2005-04-16 15:20:36 -070011890 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011891 ret = tg3_nvram_read_be32(tp, phy_addr + j,
11892 (__be32 *) (tmp + j));
11893 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011894 break;
11895 }
11896 if (ret)
11897 break;
11898
11899 page_off = offset & pagemask;
11900 size = pagesize;
11901 if (len < size)
11902 size = len;
11903
11904 len -= size;
11905
11906 memcpy(tmp + page_off, buf, size);
11907
11908 offset = offset + (pagesize - page_off);
11909
Michael Chane6af3012005-04-21 17:12:05 -070011910 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011911
11912 /*
11913 * Before we can erase the flash page, we need
11914 * to issue a special "write enable" command.
11915 */
11916 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11917
11918 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11919 break;
11920
11921 /* Erase the target page */
11922 tw32(NVRAM_ADDR, phy_addr);
11923
11924 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
11925 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
11926
11927 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11928 break;
11929
11930 /* Issue another write enable to start the write. */
11931 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11932
11933 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11934 break;
11935
11936 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011937 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011938
Al Virob9fc7dc2007-12-17 22:59:57 -080011939 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000011940
Al Virob9fc7dc2007-12-17 22:59:57 -080011941 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011942
11943 tw32(NVRAM_ADDR, phy_addr + j);
11944
11945 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
11946 NVRAM_CMD_WR;
11947
11948 if (j == 0)
11949 nvram_cmd |= NVRAM_CMD_FIRST;
11950 else if (j == (pagesize - 4))
11951 nvram_cmd |= NVRAM_CMD_LAST;
11952
11953 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
11954 break;
11955 }
11956 if (ret)
11957 break;
11958 }
11959
11960 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11961 tg3_nvram_exec_cmd(tp, nvram_cmd);
11962
11963 kfree(tmp);
11964
11965 return ret;
11966}
11967
11968/* offset and length are dword aligned */
11969static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
11970 u8 *buf)
11971{
11972 int i, ret = 0;
11973
11974 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011975 u32 page_off, phy_addr, nvram_cmd;
11976 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011977
11978 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080011979 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011980
11981 page_off = offset % tp->nvram_pagesize;
11982
Michael Chan18201802006-03-20 22:29:15 -080011983 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011984
11985 tw32(NVRAM_ADDR, phy_addr);
11986
11987 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
11988
11989 if ((page_off == 0) || (i == 0))
11990 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070011991 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011992 nvram_cmd |= NVRAM_CMD_LAST;
11993
11994 if (i == (len - 4))
11995 nvram_cmd |= NVRAM_CMD_LAST;
11996
Matt Carlson321d32a2008-11-21 17:22:19 -080011997 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
11998 !(tp->tg3_flags3 & TG3_FLG3_5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070011999 (tp->nvram_jedecnum == JEDEC_ST) &&
12000 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012001
12002 if ((ret = tg3_nvram_exec_cmd(tp,
12003 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12004 NVRAM_CMD_DONE)))
12005
12006 break;
12007 }
12008 if (!(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
12009 /* We always do complete word writes to eeprom. */
12010 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12011 }
12012
12013 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12014 break;
12015 }
12016 return ret;
12017}
12018
12019/* offset and length are dword aligned */
12020static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12021{
12022 int ret;
12023
Linus Torvalds1da177e2005-04-16 15:20:36 -070012024 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070012025 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12026 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012027 udelay(40);
12028 }
12029
12030 if (!(tp->tg3_flags & TG3_FLAG_NVRAM)) {
12031 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
12032 }
12033 else {
12034 u32 grc_mode;
12035
Michael Chanec41c7d2006-01-17 02:40:55 -080012036 ret = tg3_nvram_lock(tp);
12037 if (ret)
12038 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012039
Michael Chane6af3012005-04-21 17:12:05 -070012040 tg3_enable_nvram_access(tp);
12041 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Matt Carlsonf66a29b2009-11-13 13:03:36 +000012042 !(tp->tg3_flags3 & TG3_FLG3_PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012043 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012044
12045 grc_mode = tr32(GRC_MODE);
12046 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12047
12048 if ((tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) ||
12049 !(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
12050
12051 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12052 buf);
12053 }
12054 else {
12055 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12056 buf);
12057 }
12058
12059 grc_mode = tr32(GRC_MODE);
12060 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12061
Michael Chane6af3012005-04-21 17:12:05 -070012062 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012063 tg3_nvram_unlock(tp);
12064 }
12065
12066 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070012067 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012068 udelay(40);
12069 }
12070
12071 return ret;
12072}
12073
12074struct subsys_tbl_ent {
12075 u16 subsys_vendor, subsys_devid;
12076 u32 phy_id;
12077};
12078
Matt Carlson24daf2b2010-02-17 15:17:02 +000012079static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012080 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012081 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012082 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012083 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012084 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012085 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012086 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012087 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12088 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
12089 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012090 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012091 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012092 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012093 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12094 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
12095 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012096 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012097 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012098 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012099 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012100 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012101 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012102 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012103
12104 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012105 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012106 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012107 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012108 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012109 { TG3PCI_SUBVENDOR_ID_3COM,
12110 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
12111 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012112 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012113 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012114 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012115
12116 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012117 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012118 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012119 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012120 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012121 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012122 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012123 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012124 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012125
12126 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012127 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012128 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012129 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012130 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012131 { TG3PCI_SUBVENDOR_ID_COMPAQ,
12132 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
12133 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012134 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012135 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012136 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012137
12138 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012139 { TG3PCI_SUBVENDOR_ID_IBM,
12140 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012141};
12142
Matt Carlson24daf2b2010-02-17 15:17:02 +000012143static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012144{
12145 int i;
12146
12147 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
12148 if ((subsys_id_to_phy_id[i].subsys_vendor ==
12149 tp->pdev->subsystem_vendor) &&
12150 (subsys_id_to_phy_id[i].subsys_devid ==
12151 tp->pdev->subsystem_device))
12152 return &subsys_id_to_phy_id[i];
12153 }
12154 return NULL;
12155}
12156
Michael Chan7d0c41e2005-04-21 17:06:20 -070012157static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012158{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012159 u32 val;
Michael Chancaf636c72006-03-22 01:05:31 -080012160 u16 pmcsr;
12161
12162 /* On some early chips the SRAM cannot be accessed in D3hot state,
12163 * so need make sure we're in D0.
12164 */
12165 pci_read_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, &pmcsr);
12166 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
12167 pci_write_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, pmcsr);
12168 msleep(1);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012169
12170 /* Make sure register accesses (indirect or otherwise)
12171 * will function correctly.
12172 */
12173 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12174 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012175
David S. Millerf49639e2006-06-09 11:58:36 -070012176 /* The memory arbiter has to be enabled in order for SRAM accesses
12177 * to succeed. Normally on powerup the tg3 chip firmware will make
12178 * sure it is enabled, but other entities such as system netboot
12179 * code might disable it.
12180 */
12181 val = tr32(MEMARB_MODE);
12182 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
12183
Matt Carlson79eb6902010-02-17 15:17:03 +000012184 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012185 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12186
Gary Zambranoa85feb82007-05-05 11:52:19 -070012187 /* Assume an onboard device and WOL capable by default. */
12188 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT | TG3_FLAG_WOL_CAP;
David S. Miller72b845e2006-03-14 14:11:48 -080012189
Michael Chanb5d37722006-09-27 16:06:21 -070012190 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080012191 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Michael Chanb5d37722006-09-27 16:06:21 -070012192 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012193 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
12194 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012195 val = tr32(VCPU_CFGSHDW);
12196 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Matt Carlson8ed5d972007-05-07 00:25:49 -070012197 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
Matt Carlson0527ba32007-10-10 18:03:30 -070012198 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Matt Carlson20232762008-12-21 20:18:56 -080012199 (val & VCPU_CFGSHDW_WOL_MAGPKT))
Matt Carlson0527ba32007-10-10 18:03:30 -070012200 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012201 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070012202 }
12203
Linus Torvalds1da177e2005-04-16 15:20:36 -070012204 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
12205 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
12206 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070012207 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012208 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012209
12210 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
12211 tp->nic_sram_data_cfg = nic_cfg;
12212
12213 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
12214 ver >>= NIC_SRAM_DATA_VER_SHIFT;
12215 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
12216 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
12217 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703) &&
12218 (ver > 0) && (ver < 0x100))
12219 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
12220
Matt Carlsona9daf362008-05-25 23:49:44 -070012221 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
12222 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
12223
Linus Torvalds1da177e2005-04-16 15:20:36 -070012224 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
12225 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
12226 eeprom_phy_serdes = 1;
12227
12228 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
12229 if (nic_phy_id != 0) {
12230 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
12231 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
12232
12233 eeprom_phy_id = (id1 >> 16) << 10;
12234 eeprom_phy_id |= (id2 & 0xfc00) << 16;
12235 eeprom_phy_id |= (id2 & 0x03ff) << 0;
12236 } else
12237 eeprom_phy_id = 0;
12238
Michael Chan7d0c41e2005-04-21 17:06:20 -070012239 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070012240 if (eeprom_phy_serdes) {
Matt Carlsond1ec96a2010-01-12 10:11:38 +000012241 if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
12242 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Michael Chan747e8f82005-07-25 12:33:22 -070012243 tp->tg3_flags2 |= TG3_FLG2_MII_SERDES;
12244 else
12245 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
12246 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070012247
John W. Linvillecbf46852005-04-21 17:01:29 -070012248 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012249 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
12250 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070012251 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070012252 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
12253
12254 switch (led_cfg) {
12255 default:
12256 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
12257 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12258 break;
12259
12260 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
12261 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12262 break;
12263
12264 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
12265 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070012266
12267 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
12268 * read on some older 5700/5701 bootcode.
12269 */
12270 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12271 ASIC_REV_5700 ||
12272 GET_ASIC_REV(tp->pci_chip_rev_id) ==
12273 ASIC_REV_5701)
12274 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12275
Linus Torvalds1da177e2005-04-16 15:20:36 -070012276 break;
12277
12278 case SHASTA_EXT_LED_SHARED:
12279 tp->led_ctrl = LED_CTRL_MODE_SHARED;
12280 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
12281 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
12282 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12283 LED_CTRL_MODE_PHY_2);
12284 break;
12285
12286 case SHASTA_EXT_LED_MAC:
12287 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
12288 break;
12289
12290 case SHASTA_EXT_LED_COMBO:
12291 tp->led_ctrl = LED_CTRL_MODE_COMBO;
12292 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
12293 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12294 LED_CTRL_MODE_PHY_2);
12295 break;
12296
Stephen Hemminger855e1112008-04-16 16:37:28 -070012297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012298
12299 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12300 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
12301 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
12302 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12303
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012304 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
12305 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080012306
Michael Chan9d26e212006-12-07 00:21:14 -080012307 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012308 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012309 if ((tp->pdev->subsystem_vendor ==
12310 PCI_VENDOR_ID_ARIMA) &&
12311 (tp->pdev->subsystem_device == 0x205a ||
12312 tp->pdev->subsystem_device == 0x2063))
12313 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
12314 } else {
David S. Millerf49639e2006-06-09 11:58:36 -070012315 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012316 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
12317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012318
12319 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
12320 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
John W. Linvillecbf46852005-04-21 17:01:29 -070012321 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012322 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
12323 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012324
12325 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
12326 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
Matt Carlson0d3031d2007-10-10 18:02:43 -070012327 tp->tg3_flags3 |= TG3_FLG3_ENABLE_APE;
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012328
Gary Zambranoa85feb82007-05-05 11:52:19 -070012329 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES &&
12330 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
12331 tp->tg3_flags &= ~TG3_FLAG_WOL_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012332
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070012333 if ((tp->tg3_flags & TG3_FLAG_WOL_CAP) &&
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012334 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE))
Matt Carlson0527ba32007-10-10 18:03:30 -070012335 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
12336
Linus Torvalds1da177e2005-04-16 15:20:36 -070012337 if (cfg2 & (1 << 17))
12338 tp->tg3_flags2 |= TG3_FLG2_CAPACITIVE_COUPLING;
12339
12340 /* serdes signal pre-emphasis in register 0x590 set by */
12341 /* bootcode if bit 18 is set */
12342 if (cfg2 & (1 << 18))
12343 tp->tg3_flags2 |= TG3_FLG2_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070012344
Matt Carlson321d32a2008-11-21 17:22:19 -080012345 if (((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
12346 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080012347 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
12348 tp->tg3_flags3 |= TG3_FLG3_PHY_ENABLE_APD;
12349
Matt Carlson8ed5d972007-05-07 00:25:49 -070012350 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
12351 u32 cfg3;
12352
12353 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
12354 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
12355 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
12356 }
Matt Carlsona9daf362008-05-25 23:49:44 -070012357
Matt Carlson14417062010-02-17 15:16:59 +000012358 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
12359 tp->tg3_flags3 |= TG3_FLG3_RGMII_INBAND_DISABLE;
Matt Carlsona9daf362008-05-25 23:49:44 -070012360 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
12361 tp->tg3_flags3 |= TG3_FLG3_RGMII_EXT_IBND_RX_EN;
12362 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
12363 tp->tg3_flags3 |= TG3_FLG3_RGMII_EXT_IBND_TX_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012364 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012365done:
12366 device_init_wakeup(&tp->pdev->dev, tp->tg3_flags & TG3_FLAG_WOL_CAP);
12367 device_set_wakeup_enable(&tp->pdev->dev,
12368 tp->tg3_flags & TG3_FLAG_WOL_ENABLE);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012369}
12370
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012371static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
12372{
12373 int i;
12374 u32 val;
12375
12376 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
12377 tw32(OTP_CTRL, cmd);
12378
12379 /* Wait for up to 1 ms for command to execute. */
12380 for (i = 0; i < 100; i++) {
12381 val = tr32(OTP_STATUS);
12382 if (val & OTP_STATUS_CMD_DONE)
12383 break;
12384 udelay(10);
12385 }
12386
12387 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
12388}
12389
12390/* Read the gphy configuration from the OTP region of the chip. The gphy
12391 * configuration is a 32-bit value that straddles the alignment boundary.
12392 * We do two 32-bit reads and then shift and merge the results.
12393 */
12394static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
12395{
12396 u32 bhalf_otp, thalf_otp;
12397
12398 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
12399
12400 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
12401 return 0;
12402
12403 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
12404
12405 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12406 return 0;
12407
12408 thalf_otp = tr32(OTP_READ_DATA);
12409
12410 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
12411
12412 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12413 return 0;
12414
12415 bhalf_otp = tr32(OTP_READ_DATA);
12416
12417 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
12418}
12419
Michael Chan7d0c41e2005-04-21 17:06:20 -070012420static int __devinit tg3_phy_probe(struct tg3 *tp)
12421{
12422 u32 hw_phy_id_1, hw_phy_id_2;
12423 u32 hw_phy_id, hw_phy_id_masked;
12424 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012425
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012426 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)
12427 return tg3_phy_init(tp);
12428
Linus Torvalds1da177e2005-04-16 15:20:36 -070012429 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010012430 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012431 */
12432 err = 0;
Matt Carlson0d3031d2007-10-10 18:02:43 -070012433 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
12434 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000012435 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012436 } else {
12437 /* Now read the physical PHY_ID from the chip and verify
12438 * that it is sane. If it doesn't look good, we fall back
12439 * to either the hard-coded table based PHY_ID and failing
12440 * that the value found in the eeprom area.
12441 */
12442 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
12443 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
12444
12445 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
12446 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
12447 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
12448
Matt Carlson79eb6902010-02-17 15:17:03 +000012449 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012450 }
12451
Matt Carlson79eb6902010-02-17 15:17:03 +000012452 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012453 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000012454 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012455 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070012456 else
12457 tp->tg3_flags2 &= ~TG3_FLG2_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012458 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000012459 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070012460 /* Do nothing, phy ID already set up in
12461 * tg3_get_eeprom_hw_cfg().
12462 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012463 } else {
12464 struct subsys_tbl_ent *p;
12465
12466 /* No eeprom signature? Try the hardcoded
12467 * subsys device table.
12468 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012469 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012470 if (!p)
12471 return -ENODEV;
12472
12473 tp->phy_id = p->phy_id;
12474 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000012475 tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012476 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
12477 }
12478 }
12479
Michael Chan747e8f82005-07-25 12:33:22 -070012480 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) &&
Matt Carlson0d3031d2007-10-10 18:02:43 -070012481 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012482 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan3600d912006-12-07 00:21:48 -080012483 u32 bmsr, adv_reg, tg3_ctrl, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012484
12485 tg3_readphy(tp, MII_BMSR, &bmsr);
12486 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
12487 (bmsr & BMSR_LSTATUS))
12488 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012489
Linus Torvalds1da177e2005-04-16 15:20:36 -070012490 err = tg3_phy_reset(tp);
12491 if (err)
12492 return err;
12493
12494 adv_reg = (ADVERTISE_10HALF | ADVERTISE_10FULL |
12495 ADVERTISE_100HALF | ADVERTISE_100FULL |
12496 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
12497 tg3_ctrl = 0;
12498 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
12499 tg3_ctrl = (MII_TG3_CTRL_ADV_1000_HALF |
12500 MII_TG3_CTRL_ADV_1000_FULL);
12501 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
12502 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
12503 tg3_ctrl |= (MII_TG3_CTRL_AS_MASTER |
12504 MII_TG3_CTRL_ENABLE_AS_MASTER);
12505 }
12506
Michael Chan3600d912006-12-07 00:21:48 -080012507 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
12508 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
12509 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
12510 if (!tg3_copper_is_advertising_all(tp, mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012511 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
12512
12513 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
12514 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12515
12516 tg3_writephy(tp, MII_BMCR,
12517 BMCR_ANENABLE | BMCR_ANRESTART);
12518 }
12519 tg3_phy_set_wirespeed(tp);
12520
12521 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
12522 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
12523 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12524 }
12525
12526skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000012527 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012528 err = tg3_init_5401phy_dsp(tp);
12529 if (err)
12530 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012531
Linus Torvalds1da177e2005-04-16 15:20:36 -070012532 err = tg3_init_5401phy_dsp(tp);
12533 }
12534
Michael Chan747e8f82005-07-25 12:33:22 -070012535 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012536 tp->link_config.advertising =
12537 (ADVERTISED_1000baseT_Half |
12538 ADVERTISED_1000baseT_Full |
12539 ADVERTISED_Autoneg |
12540 ADVERTISED_FIBRE);
12541 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
12542 tp->link_config.advertising &=
12543 ~(ADVERTISED_1000baseT_Half |
12544 ADVERTISED_1000baseT_Full);
12545
12546 return err;
12547}
12548
12549static void __devinit tg3_read_partno(struct tg3 *tp)
12550{
Matt Carlson141518c2009-12-03 08:36:22 +000012551 unsigned char vpd_data[TG3_NVM_VPD_LEN]; /* in little-endian format */
Matt Carlson4181b2c2010-02-26 14:04:45 +000012552 unsigned int block_end, rosize, len;
12553 int i = 0;
Michael Chan1b277772006-03-20 22:27:48 -080012554 u32 magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012555
Matt Carlsondf259d82009-04-20 06:57:14 +000012556 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
12557 tg3_nvram_read(tp, 0x0, &magic))
David S. Millerf49639e2006-06-09 11:58:36 -070012558 goto out_not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012559
Michael Chan18201802006-03-20 22:29:15 -080012560 if (magic == TG3_EEPROM_MAGIC) {
Matt Carlson141518c2009-12-03 08:36:22 +000012561 for (i = 0; i < TG3_NVM_VPD_LEN; i += 4) {
Michael Chan1b277772006-03-20 22:27:48 -080012562 u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012563
Matt Carlson6d348f22009-02-25 14:25:52 +000012564 /* The data is in little-endian format in NVRAM.
12565 * Use the big-endian read routines to preserve
12566 * the byte order as it exists in NVRAM.
12567 */
Matt Carlson141518c2009-12-03 08:36:22 +000012568 if (tg3_nvram_read_be32(tp, TG3_NVM_VPD_OFF + i, &tmp))
Michael Chan1b277772006-03-20 22:27:48 -080012569 goto out_not_found;
12570
Matt Carlson6d348f22009-02-25 14:25:52 +000012571 memcpy(&vpd_data[i], &tmp, sizeof(tmp));
Michael Chan1b277772006-03-20 22:27:48 -080012572 }
12573 } else {
Matt Carlson94c982b2009-12-03 08:36:23 +000012574 ssize_t cnt;
Matt Carlson4181b2c2010-02-26 14:04:45 +000012575 unsigned int pos = 0;
Michael Chan1b277772006-03-20 22:27:48 -080012576
Matt Carlson94c982b2009-12-03 08:36:23 +000012577 for (; pos < TG3_NVM_VPD_LEN && i < 3; i++, pos += cnt) {
12578 cnt = pci_read_vpd(tp->pdev, pos,
12579 TG3_NVM_VPD_LEN - pos,
12580 &vpd_data[pos]);
12581 if (cnt == -ETIMEDOUT || -EINTR)
12582 cnt = 0;
12583 else if (cnt < 0)
David S. Millerf49639e2006-06-09 11:58:36 -070012584 goto out_not_found;
Michael Chan1b277772006-03-20 22:27:48 -080012585 }
Matt Carlson94c982b2009-12-03 08:36:23 +000012586 if (pos != TG3_NVM_VPD_LEN)
12587 goto out_not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012588 }
12589
Matt Carlson4181b2c2010-02-26 14:04:45 +000012590 i = pci_vpd_find_tag(vpd_data, 0, TG3_NVM_VPD_LEN,
12591 PCI_VPD_LRDT_RO_DATA);
12592 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012593 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000012594
12595 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
12596 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
12597 i += PCI_VPD_LRDT_TAG_SIZE;
12598
12599 if (block_end > TG3_NVM_VPD_LEN)
12600 goto out_not_found;
12601
12602 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
12603 PCI_VPD_RO_KEYWORD_PARTNO);
12604 if (i < 0)
12605 goto out_not_found;
12606
12607 len = pci_vpd_info_field_size(&vpd_data[i]);
12608
12609 i += PCI_VPD_INFO_FLD_HDR_SIZE;
12610 if (len > TG3_BPN_SIZE ||
12611 (len + i) > TG3_NVM_VPD_LEN)
12612 goto out_not_found;
12613
12614 memcpy(tp->board_part_number, &vpd_data[i], len);
12615
12616 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012617
12618out_not_found:
Michael Chanb5d37722006-09-27 16:06:21 -070012619 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12620 strcpy(tp->board_part_number, "BCM95906");
Matt Carlsondf259d82009-04-20 06:57:14 +000012621 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12622 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
12623 strcpy(tp->board_part_number, "BCM57780");
12624 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12625 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
12626 strcpy(tp->board_part_number, "BCM57760");
12627 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12628 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
12629 strcpy(tp->board_part_number, "BCM57790");
Matt Carlson5e7ccf22009-08-25 10:08:42 +000012630 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12631 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
12632 strcpy(tp->board_part_number, "BCM57788");
Matt Carlsonb474eca2010-02-17 15:16:58 +000012633 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12634 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
12635 strcpy(tp->board_part_number, "BCM57761");
12636 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12637 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
Matt Carlsonb703df62009-12-03 08:36:21 +000012638 strcpy(tp->board_part_number, "BCM57765");
Matt Carlsonb474eca2010-02-17 15:16:58 +000012639 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12640 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
12641 strcpy(tp->board_part_number, "BCM57781");
12642 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12643 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
12644 strcpy(tp->board_part_number, "BCM57785");
12645 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12646 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
12647 strcpy(tp->board_part_number, "BCM57791");
12648 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12649 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
12650 strcpy(tp->board_part_number, "BCM57795");
Michael Chanb5d37722006-09-27 16:06:21 -070012651 else
12652 strcpy(tp->board_part_number, "none");
Linus Torvalds1da177e2005-04-16 15:20:36 -070012653}
12654
Matt Carlson9c8a6202007-10-21 16:16:08 -070012655static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
12656{
12657 u32 val;
12658
Matt Carlsone4f34112009-02-25 14:25:00 +000012659 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012660 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000012661 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012662 val != 0)
12663 return 0;
12664
12665 return 1;
12666}
12667
Matt Carlsonacd9c112009-02-25 14:26:33 +000012668static void __devinit tg3_read_bc_ver(struct tg3 *tp)
12669{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012670 u32 val, offset, start, ver_offset;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012671 int i;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012672 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012673
12674 if (tg3_nvram_read(tp, 0xc, &offset) ||
12675 tg3_nvram_read(tp, 0x4, &start))
12676 return;
12677
12678 offset = tg3_nvram_logical_addr(tp, offset);
12679
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012680 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000012681 return;
12682
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012683 if ((val & 0xfc000000) == 0x0c000000) {
12684 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000012685 return;
12686
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012687 if (val == 0)
12688 newver = true;
12689 }
12690
12691 if (newver) {
12692 if (tg3_nvram_read(tp, offset + 8, &ver_offset))
12693 return;
12694
12695 offset = offset + ver_offset - start;
12696 for (i = 0; i < 16; i += 4) {
12697 __be32 v;
12698 if (tg3_nvram_read_be32(tp, offset + i, &v))
12699 return;
12700
12701 memcpy(tp->fw_ver + i, &v, sizeof(v));
12702 }
12703 } else {
12704 u32 major, minor;
12705
12706 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
12707 return;
12708
12709 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
12710 TG3_NVM_BCVER_MAJSFT;
12711 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
12712 snprintf(&tp->fw_ver[0], 32, "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000012713 }
12714}
12715
Matt Carlsona6f6cb12009-02-25 14:27:43 +000012716static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
12717{
12718 u32 val, major, minor;
12719
12720 /* Use native endian representation */
12721 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
12722 return;
12723
12724 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
12725 TG3_NVM_HWSB_CFG1_MAJSFT;
12726 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
12727 TG3_NVM_HWSB_CFG1_MINSFT;
12728
12729 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
12730}
12731
Matt Carlsondfe00d72008-11-21 17:19:41 -080012732static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
12733{
12734 u32 offset, major, minor, build;
12735
12736 tp->fw_ver[0] = 's';
12737 tp->fw_ver[1] = 'b';
12738 tp->fw_ver[2] = '\0';
12739
12740 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
12741 return;
12742
12743 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
12744 case TG3_EEPROM_SB_REVISION_0:
12745 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
12746 break;
12747 case TG3_EEPROM_SB_REVISION_2:
12748 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
12749 break;
12750 case TG3_EEPROM_SB_REVISION_3:
12751 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
12752 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000012753 case TG3_EEPROM_SB_REVISION_4:
12754 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
12755 break;
12756 case TG3_EEPROM_SB_REVISION_5:
12757 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
12758 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080012759 default:
12760 return;
12761 }
12762
Matt Carlsone4f34112009-02-25 14:25:00 +000012763 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080012764 return;
12765
12766 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
12767 TG3_EEPROM_SB_EDH_BLD_SHFT;
12768 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
12769 TG3_EEPROM_SB_EDH_MAJ_SHFT;
12770 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
12771
12772 if (minor > 99 || build > 26)
12773 return;
12774
12775 snprintf(&tp->fw_ver[2], 30, " v%d.%02d", major, minor);
12776
12777 if (build > 0) {
12778 tp->fw_ver[8] = 'a' + build - 1;
12779 tp->fw_ver[9] = '\0';
12780 }
12781}
12782
Matt Carlsonacd9c112009-02-25 14:26:33 +000012783static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080012784{
12785 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012786 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070012787
12788 for (offset = TG3_NVM_DIR_START;
12789 offset < TG3_NVM_DIR_END;
12790 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000012791 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012792 return;
12793
12794 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
12795 break;
12796 }
12797
12798 if (offset == TG3_NVM_DIR_END)
12799 return;
12800
12801 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
12802 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000012803 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012804 return;
12805
Matt Carlsone4f34112009-02-25 14:25:00 +000012806 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012807 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000012808 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012809 return;
12810
12811 offset += val - start;
12812
Matt Carlsonacd9c112009-02-25 14:26:33 +000012813 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012814
Matt Carlsonacd9c112009-02-25 14:26:33 +000012815 tp->fw_ver[vlen++] = ',';
12816 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070012817
12818 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012819 __be32 v;
12820 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012821 return;
12822
Al Virob9fc7dc2007-12-17 22:59:57 -080012823 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012824
Matt Carlsonacd9c112009-02-25 14:26:33 +000012825 if (vlen > TG3_VER_SIZE - sizeof(v)) {
12826 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012827 break;
12828 }
12829
Matt Carlsonacd9c112009-02-25 14:26:33 +000012830 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
12831 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012832 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000012833}
12834
Matt Carlson7fd76442009-02-25 14:27:20 +000012835static void __devinit tg3_read_dash_ver(struct tg3 *tp)
12836{
12837 int vlen;
12838 u32 apedata;
12839
12840 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) ||
12841 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
12842 return;
12843
12844 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
12845 if (apedata != APE_SEG_SIG_MAGIC)
12846 return;
12847
12848 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
12849 if (!(apedata & APE_FW_STATUS_READY))
12850 return;
12851
12852 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
12853
12854 vlen = strlen(tp->fw_ver);
12855
12856 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " DASH v%d.%d.%d.%d",
12857 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
12858 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
12859 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
12860 (apedata & APE_FW_VERSION_BLDMSK));
12861}
12862
Matt Carlsonacd9c112009-02-25 14:26:33 +000012863static void __devinit tg3_read_fw_ver(struct tg3 *tp)
12864{
12865 u32 val;
12866
Matt Carlsondf259d82009-04-20 06:57:14 +000012867 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) {
12868 tp->fw_ver[0] = 's';
12869 tp->fw_ver[1] = 'b';
12870 tp->fw_ver[2] = '\0';
12871
12872 return;
12873 }
12874
Matt Carlsonacd9c112009-02-25 14:26:33 +000012875 if (tg3_nvram_read(tp, 0, &val))
12876 return;
12877
12878 if (val == TG3_EEPROM_MAGIC)
12879 tg3_read_bc_ver(tp);
12880 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
12881 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000012882 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
12883 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000012884 else
12885 return;
12886
12887 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
12888 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
12889 return;
12890
12891 tg3_read_mgmtfw_ver(tp);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012892
12893 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080012894}
12895
Michael Chan7544b092007-05-05 13:08:32 -070012896static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
12897
Linus Torvalds1da177e2005-04-16 15:20:36 -070012898static int __devinit tg3_get_invariants(struct tg3 *tp)
12899{
12900 static struct pci_device_id write_reorder_chipsets[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012901 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
12902 PCI_DEVICE_ID_AMD_FE_GATE_700C) },
John W. Linvillec165b002006-07-08 13:28:53 -070012903 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
12904 PCI_DEVICE_ID_AMD_8131_BRIDGE) },
Michael Chan399de502005-10-03 14:02:39 -070012905 { PCI_DEVICE(PCI_VENDOR_ID_VIA,
12906 PCI_DEVICE_ID_VIA_8385_0) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012907 { },
12908 };
12909 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012910 u32 pci_state_reg, grc_misc_cfg;
12911 u32 val;
12912 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080012913 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012914
Linus Torvalds1da177e2005-04-16 15:20:36 -070012915 /* Force memory write invalidate off. If we leave it on,
12916 * then on 5700_BX chips we have to enable a workaround.
12917 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
12918 * to match the cacheline size. The Broadcom driver have this
12919 * workaround but turns MWI off all the times so never uses
12920 * it. This seems to suggest that the workaround is insufficient.
12921 */
12922 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
12923 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
12924 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
12925
12926 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
12927 * has the register indirect write enable bit set before
12928 * we try to access any of the MMIO registers. It is also
12929 * critical that the PCI-X hw workaround situation is decided
12930 * before that as well.
12931 */
12932 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12933 &misc_ctrl_reg);
12934
12935 tp->pci_chip_rev_id = (misc_ctrl_reg >>
12936 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070012937 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
12938 u32 prod_id_asic_rev;
12939
Matt Carlson5001e2f2009-11-13 13:03:51 +000012940 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
12941 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
12942 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5724)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012943 pci_read_config_dword(tp->pdev,
12944 TG3PCI_GEN2_PRODID_ASICREV,
12945 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000012946 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
12947 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
12948 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
12949 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
12950 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
12951 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
12952 pci_read_config_dword(tp->pdev,
12953 TG3PCI_GEN15_PRODID_ASICREV,
12954 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012955 else
12956 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
12957 &prod_id_asic_rev);
12958
Matt Carlson321d32a2008-11-21 17:22:19 -080012959 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070012960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012961
Michael Chanff645be2005-04-21 17:09:53 -070012962 /* Wrong chip ID in 5752 A0. This code can be removed later
12963 * as A0 is not in production.
12964 */
12965 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
12966 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
12967
Michael Chan68929142005-08-09 20:17:14 -070012968 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
12969 * we need to disable memory and use config. cycles
12970 * only to access all registers. The 5702/03 chips
12971 * can mistakenly decode the special cycles from the
12972 * ICH chipsets as memory write cycles, causing corruption
12973 * of register and memory space. Only certain ICH bridges
12974 * will drive special cycles with non-zero data during the
12975 * address phase which can fall within the 5703's address
12976 * range. This is not an ICH bug as the PCI spec allows
12977 * non-zero address during special cycles. However, only
12978 * these ICH bridges are known to drive non-zero addresses
12979 * during special cycles.
12980 *
12981 * Since special cycles do not cross PCI bridges, we only
12982 * enable this workaround if the 5703 is on the secondary
12983 * bus of these ICH bridges.
12984 */
12985 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
12986 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
12987 static struct tg3_dev_id {
12988 u32 vendor;
12989 u32 device;
12990 u32 rev;
12991 } ich_chipsets[] = {
12992 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
12993 PCI_ANY_ID },
12994 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
12995 PCI_ANY_ID },
12996 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
12997 0xa },
12998 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
12999 PCI_ANY_ID },
13000 { },
13001 };
13002 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13003 struct pci_dev *bridge = NULL;
13004
13005 while (pci_id->vendor != 0) {
13006 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13007 bridge);
13008 if (!bridge) {
13009 pci_id++;
13010 continue;
13011 }
13012 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013013 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013014 continue;
13015 }
13016 if (bridge->subordinate &&
13017 (bridge->subordinate->number ==
13018 tp->pdev->bus->number)) {
13019
13020 tp->tg3_flags2 |= TG3_FLG2_ICH_WORKAROUND;
13021 pci_dev_put(bridge);
13022 break;
13023 }
13024 }
13025 }
13026
Matt Carlson41588ba2008-04-19 18:12:33 -070013027 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
13028 static struct tg3_dev_id {
13029 u32 vendor;
13030 u32 device;
13031 } bridge_chipsets[] = {
13032 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13033 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13034 { },
13035 };
13036 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13037 struct pci_dev *bridge = NULL;
13038
13039 while (pci_id->vendor != 0) {
13040 bridge = pci_get_device(pci_id->vendor,
13041 pci_id->device,
13042 bridge);
13043 if (!bridge) {
13044 pci_id++;
13045 continue;
13046 }
13047 if (bridge->subordinate &&
13048 (bridge->subordinate->number <=
13049 tp->pdev->bus->number) &&
13050 (bridge->subordinate->subordinate >=
13051 tp->pdev->bus->number)) {
13052 tp->tg3_flags3 |= TG3_FLG3_5701_DMA_BUG;
13053 pci_dev_put(bridge);
13054 break;
13055 }
13056 }
13057 }
13058
Michael Chan4a29cc22006-03-19 13:21:12 -080013059 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
13060 * DMA addresses > 40-bit. This bridge may have other additional
13061 * 57xx devices behind it in some 4-port NIC designs for example.
13062 * Any tg3 device found behind the bridge will also need the 40-bit
13063 * DMA workaround.
13064 */
Michael Chana4e2b342005-10-26 15:46:52 -070013065 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
13066 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
13067 tp->tg3_flags2 |= TG3_FLG2_5780_CLASS;
Michael Chan4a29cc22006-03-19 13:21:12 -080013068 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
Michael Chan4cf78e42005-07-25 12:29:19 -070013069 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Michael Chana4e2b342005-10-26 15:46:52 -070013070 }
Michael Chan4a29cc22006-03-19 13:21:12 -080013071 else {
13072 struct pci_dev *bridge = NULL;
13073
13074 do {
13075 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
13076 PCI_DEVICE_ID_SERVERWORKS_EPB,
13077 bridge);
13078 if (bridge && bridge->subordinate &&
13079 (bridge->subordinate->number <=
13080 tp->pdev->bus->number) &&
13081 (bridge->subordinate->subordinate >=
13082 tp->pdev->bus->number)) {
13083 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
13084 pci_dev_put(bridge);
13085 break;
13086 }
13087 } while (bridge);
13088 }
Michael Chan4cf78e42005-07-25 12:29:19 -070013089
Linus Torvalds1da177e2005-04-16 15:20:36 -070013090 /* Initialize misc host control in PCI block. */
13091 tp->misc_host_ctrl |= (misc_ctrl_reg &
13092 MISC_HOST_CTRL_CHIPREV);
13093 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13094 tp->misc_host_ctrl);
13095
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013096 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
13097 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
13098 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Michael Chan7544b092007-05-05 13:08:32 -070013099 tp->pdev_peer = tg3_find_peer(tp);
13100
Matt Carlson321d32a2008-11-21 17:22:19 -080013101 /* Intentionally exclude ASIC_REV_5906 */
13102 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad12006-03-20 22:27:35 -080013103 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013104 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013105 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013106 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013107 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlsonb703df62009-12-03 08:36:21 +000013108 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13109 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080013110 tp->tg3_flags3 |= TG3_FLG3_5755_PLUS;
13111
13112 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13113 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070013114 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013115 (tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
Michael Chana4e2b342005-10-26 15:46:52 -070013116 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
John W. Linville6708e5c2005-04-21 17:00:52 -070013117 tp->tg3_flags2 |= TG3_FLG2_5750_PLUS;
13118
John W. Linville1b440c562005-04-21 17:03:18 -070013119 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) ||
13120 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
13121 tp->tg3_flags2 |= TG3_FLG2_5705_PLUS;
13122
Matt Carlson027455a2008-12-21 20:19:30 -080013123 /* 5700 B0 chips do not support checksumming correctly due
13124 * to hardware bugs.
13125 */
13126 if (tp->pci_chip_rev_id == CHIPREV_ID_5700_B0)
13127 tp->tg3_flags |= TG3_FLAG_BROKEN_CHECKSUMS;
13128 else {
13129 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
13130 tp->dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
13131 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
13132 tp->dev->features |= NETIF_F_IPV6_CSUM;
13133 }
13134
Matt Carlson507399f2009-11-13 13:03:37 +000013135 /* Determine TSO capabilities */
Matt Carlsonb703df62009-12-03 08:36:21 +000013136 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13137 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsone849cdc2009-11-13 13:03:38 +000013138 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_3;
13139 else if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
13140 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlson507399f2009-11-13 13:03:37 +000013141 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_2;
13142 else if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
13143 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_1 | TG3_FLG2_TSO_BUG;
13144 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
13145 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
13146 tp->tg3_flags2 &= ~TG3_FLG2_TSO_BUG;
13147 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13148 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13149 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
13150 tp->tg3_flags2 |= TG3_FLG2_TSO_BUG;
13151 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
13152 tp->fw_needed = FIRMWARE_TG3TSO5;
13153 else
13154 tp->fw_needed = FIRMWARE_TG3TSO;
13155 }
13156
13157 tp->irq_max = 1;
13158
Michael Chan5a6f3072006-03-20 22:28:05 -080013159 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Michael Chan7544b092007-05-05 13:08:32 -070013160 tp->tg3_flags |= TG3_FLAG_SUPPORT_MSI;
13161 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
13162 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
13163 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
13164 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
13165 tp->pdev_peer == tp->pdev))
13166 tp->tg3_flags &= ~TG3_FLAG_SUPPORT_MSI;
13167
Matt Carlson321d32a2008-11-21 17:22:19 -080013168 if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070013169 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080013170 tp->tg3_flags2 |= TG3_FLG2_1SHOT_MSI;
Michael Chan52c0fd82006-06-29 20:15:54 -070013171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013172
Matt Carlsonb703df62009-12-03 08:36:21 +000013173 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13174 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlson507399f2009-11-13 13:03:37 +000013175 tp->tg3_flags |= TG3_FLAG_SUPPORT_MSIX;
13176 tp->irq_max = TG3_IRQ_MAX_VECS;
13177 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013178 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000013179
Matt Carlson615774f2009-11-13 13:03:39 +000013180 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13181 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13182 tp->tg3_flags3 |= TG3_FLG3_SHORT_DMA_BUG;
13183 else if (!(tp->tg3_flags3 & TG3_FLG3_5755_PLUS)) {
13184 tp->tg3_flags3 |= TG3_FLG3_4G_DMA_BNDRY_BUG;
13185 tp->tg3_flags3 |= TG3_FLG3_40BIT_DMA_LIMIT_BUG;
Matt Carlson0e1406d2009-11-02 12:33:33 +000013186 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013187
Matt Carlsonb703df62009-12-03 08:36:21 +000013188 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13189 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
13190 tp->tg3_flags3 |= TG3_FLG3_USE_JUMBO_BDFLAG;
13191
Matt Carlsonf51f3562008-05-25 23:45:08 -070013192 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013193 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
Matt Carlsonb703df62009-12-03 08:36:21 +000013194 (tp->tg3_flags3 & TG3_FLG3_USE_JUMBO_BDFLAG))
Matt Carlson8f666b02009-08-28 13:58:24 +000013195 tp->tg3_flags |= TG3_FLAG_JUMBO_CAPABLE;
Michael Chan0f893dc2005-07-25 12:30:38 -070013196
Matt Carlson52f44902008-11-21 17:17:04 -080013197 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13198 &pci_state_reg);
13199
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013200 tp->pcie_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_EXP);
13201 if (tp->pcie_cap != 0) {
13202 u16 lnkctl;
13203
Linus Torvalds1da177e2005-04-16 15:20:36 -070013204 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013205
13206 pcie_set_readrq(tp->pdev, 4096);
13207
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013208 pci_read_config_word(tp->pdev,
13209 tp->pcie_cap + PCI_EXP_LNKCTL,
13210 &lnkctl);
13211 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
13212 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanc7835a72006-11-15 21:14:42 -080013213 tp->tg3_flags2 &= ~TG3_FLG2_HW_TSO_2;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013214 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013215 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000013216 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
13217 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013218 tp->tg3_flags3 |= TG3_FLG3_CLKREQ_BUG;
Matt Carlson614b0592010-01-20 16:58:02 +000013219 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
13220 tp->tg3_flags3 |= TG3_FLG3_L1PLLPD_EN;
Michael Chanc7835a72006-11-15 21:14:42 -080013221 }
Matt Carlson52f44902008-11-21 17:17:04 -080013222 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlsonfcb389d2008-11-03 16:55:44 -080013223 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
Matt Carlson52f44902008-11-21 17:17:04 -080013224 } else if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
13225 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
13226 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
13227 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000013228 dev_err(&tp->pdev->dev,
13229 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080013230 return -EIO;
13231 }
13232
13233 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
13234 tp->tg3_flags |= TG3_FLAG_PCIX_MODE;
13235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013236
Michael Chan399de502005-10-03 14:02:39 -070013237 /* If we have an AMD 762 or VIA K8T800 chipset, write
13238 * reordering to the mailbox registers done by the host
13239 * controller can cause major troubles. We read back from
13240 * every mailbox register write to force the writes to be
13241 * posted to the chip in order.
13242 */
13243 if (pci_dev_present(write_reorder_chipsets) &&
13244 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
13245 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
13246
Matt Carlson69fc4052008-12-21 20:19:57 -080013247 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
13248 &tp->pci_cacheline_sz);
13249 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13250 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013251 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13252 tp->pci_lat_timer < 64) {
13253 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080013254 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13255 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013256 }
13257
Matt Carlson52f44902008-11-21 17:17:04 -080013258 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
13259 /* 5700 BX chips need to have their TX producer index
13260 * mailboxes written twice to workaround a bug.
13261 */
13262 tp->tg3_flags |= TG3_FLAG_TXD_MBOX_HWBUG;
Matt Carlson9974a352007-10-07 23:27:28 -070013263
Matt Carlson52f44902008-11-21 17:17:04 -080013264 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013265 *
13266 * The workaround is to use indirect register accesses
13267 * for all chip writes not to mailbox registers.
13268 */
Matt Carlson52f44902008-11-21 17:17:04 -080013269 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013270 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013271
13272 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
13273
13274 /* The chip can have it's power management PCI config
13275 * space registers clobbered due to this bug.
13276 * So explicitly force the chip into D0 here.
13277 */
Matt Carlson9974a352007-10-07 23:27:28 -070013278 pci_read_config_dword(tp->pdev,
13279 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013280 &pm_reg);
13281 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
13282 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070013283 pci_write_config_dword(tp->pdev,
13284 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013285 pm_reg);
13286
13287 /* Also, force SERR#/PERR# in PCI command. */
13288 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13289 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
13290 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13291 }
13292 }
13293
Linus Torvalds1da177e2005-04-16 15:20:36 -070013294 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
13295 tp->tg3_flags |= TG3_FLAG_PCI_HIGH_SPEED;
13296 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
13297 tp->tg3_flags |= TG3_FLAG_PCI_32BIT;
13298
13299 /* Chip-specific fixup from Broadcom driver */
13300 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
13301 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
13302 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
13303 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
13304 }
13305
Michael Chan1ee582d2005-08-09 20:16:46 -070013306 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070013307 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013308 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070013309 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070013310 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013311 tp->write32_tx_mbox = tg3_write32;
13312 tp->write32_rx_mbox = tg3_write32;
13313
13314 /* Various workaround register access methods */
13315 if (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG)
13316 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013317 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
13318 ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
13319 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
13320 /*
13321 * Back to back register writes can cause problems on these
13322 * chips, the workaround is to read back all reg writes
13323 * except those to mailbox regs.
13324 *
13325 * See tg3_write_indirect_reg32().
13326 */
Michael Chan1ee582d2005-08-09 20:16:46 -070013327 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013328 }
13329
Michael Chan1ee582d2005-08-09 20:16:46 -070013330 if ((tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG) ||
13331 (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)) {
13332 tp->write32_tx_mbox = tg3_write32_tx_mbox;
13333 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
13334 tp->write32_rx_mbox = tg3_write_flush_reg32;
13335 }
Michael Chan20094932005-08-09 20:16:32 -070013336
Michael Chan68929142005-08-09 20:17:14 -070013337 if (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND) {
13338 tp->read32 = tg3_read_indirect_reg32;
13339 tp->write32 = tg3_write_indirect_reg32;
13340 tp->read32_mbox = tg3_read_indirect_mbox;
13341 tp->write32_mbox = tg3_write_indirect_mbox;
13342 tp->write32_tx_mbox = tg3_write_indirect_mbox;
13343 tp->write32_rx_mbox = tg3_write_indirect_mbox;
13344
13345 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070013346 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070013347
13348 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13349 pci_cmd &= ~PCI_COMMAND_MEMORY;
13350 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13351 }
Michael Chanb5d37722006-09-27 16:06:21 -070013352 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
13353 tp->read32_mbox = tg3_read32_mbox_5906;
13354 tp->write32_mbox = tg3_write32_mbox_5906;
13355 tp->write32_tx_mbox = tg3_write32_mbox_5906;
13356 tp->write32_rx_mbox = tg3_write32_mbox_5906;
13357 }
Michael Chan68929142005-08-09 20:17:14 -070013358
Michael Chanbbadf502006-04-06 21:46:34 -070013359 if (tp->write32 == tg3_write_indirect_reg32 ||
13360 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
13361 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070013362 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Michael Chanbbadf502006-04-06 21:46:34 -070013363 tp->tg3_flags |= TG3_FLAG_SRAM_USE_CONFIG;
13364
Michael Chan7d0c41e2005-04-21 17:06:20 -070013365 /* Get eeprom hw config before calling tg3_set_power_state().
Michael Chan9d26e212006-12-07 00:21:14 -080013366 * In particular, the TG3_FLG2_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070013367 * determined before calling tg3_set_power_state() so that
13368 * we know whether or not to switch out of Vaux power.
13369 * When the flag is set, it means that GPIO1 is used for eeprom
13370 * write protect and also implies that it is a LOM where GPIOs
13371 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013372 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070013373 tg3_get_eeprom_hw_cfg(tp);
13374
Matt Carlson0d3031d2007-10-10 18:02:43 -070013375 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
13376 /* Allow reads and writes to the
13377 * APE register and memory space.
13378 */
13379 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
13380 PCISTATE_ALLOW_APE_SHMEM_WR;
13381 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
13382 pci_state_reg);
13383 }
13384
Matt Carlson9936bcf2007-10-10 18:03:07 -070013385 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013386 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013387 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013388 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlsonb703df62009-12-03 08:36:21 +000013389 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13390 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsond30cdd22007-10-07 23:28:35 -070013391 tp->tg3_flags |= TG3_FLAG_CPMU_PRESENT;
13392
Michael Chan314fba32005-04-21 17:07:04 -070013393 /* Set up tp->grc_local_ctrl before calling tg3_set_power_state().
13394 * GPIO1 driven high will bring 5700's external PHY out of reset.
13395 * It is also used as eeprom write protect on LOMs.
13396 */
13397 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
13398 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
13399 (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT))
13400 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
13401 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070013402 /* Unused GPIO3 must be driven as output on 5752 because there
13403 * are no pull-up resistors on unused GPIO pins.
13404 */
13405 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13406 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070013407
Matt Carlson321d32a2008-11-21 17:22:19 -080013408 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000013409 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
13410 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Michael Chanaf36e6b2006-03-23 01:28:06 -080013411 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13412
Matt Carlson8d519ab2009-04-20 06:58:01 +000013413 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
13414 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070013415 /* Turn off the debug UART. */
13416 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13417 if (tp->tg3_flags2 & TG3_FLG2_IS_NIC)
13418 /* Keep VMain power. */
13419 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
13420 GRC_LCLCTRL_GPIO_OUTPUT0;
13421 }
13422
Linus Torvalds1da177e2005-04-16 15:20:36 -070013423 /* Force the chip into D0. */
Michael Chanbc1c7562006-03-20 17:48:03 -080013424 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013425 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000013426 dev_err(&tp->pdev->dev, "Transition to D0 failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070013427 return err;
13428 }
13429
Linus Torvalds1da177e2005-04-16 15:20:36 -070013430 /* Derive initial jumbo mode from MTU assigned in
13431 * ether_setup() via the alloc_etherdev() call
13432 */
Michael Chan0f893dc2005-07-25 12:30:38 -070013433 if (tp->dev->mtu > ETH_DATA_LEN &&
Michael Chana4e2b342005-10-26 15:46:52 -070013434 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan0f893dc2005-07-25 12:30:38 -070013435 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013436
13437 /* Determine WakeOnLan speed to use. */
13438 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13439 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
13440 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
13441 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
13442 tp->tg3_flags &= ~(TG3_FLAG_WOL_SPEED_100MB);
13443 } else {
13444 tp->tg3_flags |= TG3_FLAG_WOL_SPEED_100MB;
13445 }
13446
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013447 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13448 tp->tg3_flags3 |= TG3_FLG3_PHY_IS_FET;
13449
Linus Torvalds1da177e2005-04-16 15:20:36 -070013450 /* A few boards don't want Ethernet@WireSpeed phy feature */
13451 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
13452 ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
13453 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070013454 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013455 (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) ||
Michael Chan747e8f82005-07-25 12:33:22 -070013456 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013457 tp->tg3_flags2 |= TG3_FLG2_NO_ETH_WIRE_SPEED;
13458
13459 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
13460 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
13461 tp->tg3_flags2 |= TG3_FLG2_PHY_ADC_BUG;
13462 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
13463 tp->tg3_flags2 |= TG3_FLG2_PHY_5704_A0_BUG;
13464
Matt Carlson321d32a2008-11-21 17:22:19 -080013465 if ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013466 !(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080013467 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013468 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Matt Carlsonb703df62009-12-03 08:36:21 +000013469 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
13470 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765) {
Michael Chanc424cb22006-04-29 18:56:34 -070013471 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013472 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013473 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
13474 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080013475 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
13476 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
13477 tp->tg3_flags2 |= TG3_FLG2_PHY_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080013478 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
13479 tp->tg3_flags2 |= TG3_FLG2_PHY_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080013480 } else
Michael Chanc424cb22006-04-29 18:56:34 -070013481 tp->tg3_flags2 |= TG3_FLG2_PHY_BER_BUG;
13482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013483
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013484 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13485 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
13486 tp->phy_otp = tg3_read_otp_phycfg(tp);
13487 if (tp->phy_otp == 0)
13488 tp->phy_otp = TG3_OTP_DEFAULT;
13489 }
13490
Matt Carlsonf51f3562008-05-25 23:45:08 -070013491 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)
Matt Carlson8ef21422008-05-02 16:47:53 -070013492 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
13493 else
13494 tp->mi_mode = MAC_MI_MODE_BASE;
13495
Linus Torvalds1da177e2005-04-16 15:20:36 -070013496 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013497 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
13498 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
13499 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
13500
Matt Carlson321d32a2008-11-21 17:22:19 -080013501 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
13502 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson57e69832008-05-25 23:48:31 -070013503 tp->tg3_flags3 |= TG3_FLG3_USE_PHYLIB;
13504
Matt Carlson158d7ab2008-05-29 01:37:54 -070013505 err = tg3_mdio_init(tp);
13506 if (err)
13507 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013508
Matt Carlson55dffe72010-01-12 10:11:39 +000013509 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
13510 (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0 ||
13511 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)))
13512 return -ENOTSUPP;
13513
Linus Torvalds1da177e2005-04-16 15:20:36 -070013514 /* Initialize data/descriptor byte/word swapping. */
13515 val = tr32(GRC_MODE);
13516 val &= GRC_MODE_HOST_STACKUP;
13517 tw32(GRC_MODE, val | tp->grc_mode);
13518
13519 tg3_switch_clocks(tp);
13520
13521 /* Clear this out for sanity. */
13522 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
13523
13524 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13525 &pci_state_reg);
13526 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
13527 (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) == 0) {
13528 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
13529
13530 if (chiprevid == CHIPREV_ID_5701_A0 ||
13531 chiprevid == CHIPREV_ID_5701_B0 ||
13532 chiprevid == CHIPREV_ID_5701_B2 ||
13533 chiprevid == CHIPREV_ID_5701_B5) {
13534 void __iomem *sram_base;
13535
13536 /* Write some dummy words into the SRAM status block
13537 * area, see if it reads back correctly. If the return
13538 * value is bad, force enable the PCIX workaround.
13539 */
13540 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
13541
13542 writel(0x00000000, sram_base);
13543 writel(0x00000000, sram_base + 4);
13544 writel(0xffffffff, sram_base + 4);
13545 if (readl(sram_base) != 0x00000000)
13546 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
13547 }
13548 }
13549
13550 udelay(50);
13551 tg3_nvram_init(tp);
13552
13553 grc_misc_cfg = tr32(GRC_MISC_CFG);
13554 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
13555
Linus Torvalds1da177e2005-04-16 15:20:36 -070013556 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
13557 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
13558 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
13559 tp->tg3_flags2 |= TG3_FLG2_IS_5788;
13560
David S. Millerfac9b832005-05-18 22:46:34 -070013561 if (!(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
13562 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700))
13563 tp->tg3_flags |= TG3_FLAG_TAGGED_STATUS;
13564 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
13565 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
13566 HOSTCC_MODE_CLRTICK_TXBD);
13567
13568 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
13569 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13570 tp->misc_host_ctrl);
13571 }
13572
Matt Carlson3bda1252008-08-15 14:08:22 -070013573 /* Preserve the APE MAC_MODE bits */
13574 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
13575 tp->mac_mode = tr32(MAC_MODE) |
13576 MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
13577 else
13578 tp->mac_mode = TG3_DEF_MAC_MODE;
13579
Linus Torvalds1da177e2005-04-16 15:20:36 -070013580 /* these are limited to 10/100 only */
13581 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13582 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
13583 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
13584 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
13585 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
13586 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
13587 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
13588 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
13589 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080013590 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
13591 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013592 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000013593 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13594 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013595 (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013596 tp->tg3_flags |= TG3_FLAG_10_100_ONLY;
13597
13598 err = tg3_phy_probe(tp);
13599 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000013600 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013601 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013602 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013603 }
13604
13605 tg3_read_partno(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080013606 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013607
13608 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
13609 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
13610 } else {
13611 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
13612 tp->tg3_flags |= TG3_FLAG_USE_MI_INTERRUPT;
13613 else
13614 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
13615 }
13616
13617 /* 5700 {AX,BX} chips have a broken status block link
13618 * change bit implementation, so we must use the
13619 * status register in those cases.
13620 */
13621 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
13622 tp->tg3_flags |= TG3_FLAG_USE_LINKCHG_REG;
13623 else
13624 tp->tg3_flags &= ~TG3_FLAG_USE_LINKCHG_REG;
13625
13626 /* The led_ctrl is set during tg3_phy_probe, here we might
13627 * have to force the link status polling mechanism based
13628 * upon subsystem IDs.
13629 */
13630 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070013631 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070013632 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
13633 tp->tg3_flags |= (TG3_FLAG_USE_MI_INTERRUPT |
13634 TG3_FLAG_USE_LINKCHG_REG);
13635 }
13636
13637 /* For all SERDES we poll the MAC status register. */
13638 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
13639 tp->tg3_flags |= TG3_FLAG_POLL_SERDES;
13640 else
13641 tp->tg3_flags &= ~TG3_FLAG_POLL_SERDES;
13642
Matt Carlsonad829262008-11-21 17:16:16 -080013643 tp->rx_offset = NET_IP_ALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013644 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
13645 (tp->tg3_flags & TG3_FLAG_PCIX_MODE) != 0)
13646 tp->rx_offset = 0;
13647
Michael Chanf92905d2006-06-29 20:14:29 -070013648 tp->rx_std_max_post = TG3_RX_RING_SIZE;
13649
13650 /* Increment the rx prod index on the rx std ring by at most
13651 * 8 for these chips to workaround hw errata.
13652 */
13653 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13654 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
13655 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
13656 tp->rx_std_max_post = 8;
13657
Matt Carlson8ed5d972007-05-07 00:25:49 -070013658 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND)
13659 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
13660 PCIE_PWR_MGMT_L1_THRESH_MSK;
13661
Linus Torvalds1da177e2005-04-16 15:20:36 -070013662 return err;
13663}
13664
David S. Miller49b6e95f2007-03-29 01:38:42 -070013665#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013666static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
13667{
13668 struct net_device *dev = tp->dev;
13669 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070013670 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070013671 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070013672 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013673
David S. Miller49b6e95f2007-03-29 01:38:42 -070013674 addr = of_get_property(dp, "local-mac-address", &len);
13675 if (addr && len == 6) {
13676 memcpy(dev->dev_addr, addr, 6);
13677 memcpy(dev->perm_addr, dev->dev_addr, 6);
13678 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013679 }
13680 return -ENODEV;
13681}
13682
13683static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
13684{
13685 struct net_device *dev = tp->dev;
13686
13687 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070013688 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013689 return 0;
13690}
13691#endif
13692
13693static int __devinit tg3_get_device_address(struct tg3 *tp)
13694{
13695 struct net_device *dev = tp->dev;
13696 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080013697 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013698
David S. Miller49b6e95f2007-03-29 01:38:42 -070013699#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013700 if (!tg3_get_macaddr_sparc(tp))
13701 return 0;
13702#endif
13703
13704 mac_offset = 0x7c;
David S. Millerf49639e2006-06-09 11:58:36 -070013705 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
Michael Chana4e2b342005-10-26 15:46:52 -070013706 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013707 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
13708 mac_offset = 0xcc;
13709 if (tg3_nvram_lock(tp))
13710 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
13711 else
13712 tg3_nvram_unlock(tp);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013713 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13714 if (tr32(TG3_CPMU_STATUS) & TG3_CPMU_STATUS_PCIE_FUNC)
13715 mac_offset = 0xcc;
13716 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070013717 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013718
13719 /* First try to get it from MAC address mailbox. */
13720 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
13721 if ((hi >> 16) == 0x484b) {
13722 dev->dev_addr[0] = (hi >> 8) & 0xff;
13723 dev->dev_addr[1] = (hi >> 0) & 0xff;
13724
13725 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
13726 dev->dev_addr[2] = (lo >> 24) & 0xff;
13727 dev->dev_addr[3] = (lo >> 16) & 0xff;
13728 dev->dev_addr[4] = (lo >> 8) & 0xff;
13729 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013730
Michael Chan008652b2006-03-27 23:14:53 -080013731 /* Some old bootcode may report a 0 MAC address in SRAM */
13732 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
13733 }
13734 if (!addr_ok) {
13735 /* Next, try NVRAM. */
Matt Carlsondf259d82009-04-20 06:57:14 +000013736 if (!(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) &&
13737 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000013738 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070013739 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
13740 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080013741 }
13742 /* Finally just fetch it out of the MAC control regs. */
13743 else {
13744 hi = tr32(MAC_ADDR_0_HIGH);
13745 lo = tr32(MAC_ADDR_0_LOW);
13746
13747 dev->dev_addr[5] = lo & 0xff;
13748 dev->dev_addr[4] = (lo >> 8) & 0xff;
13749 dev->dev_addr[3] = (lo >> 16) & 0xff;
13750 dev->dev_addr[2] = (lo >> 24) & 0xff;
13751 dev->dev_addr[1] = hi & 0xff;
13752 dev->dev_addr[0] = (hi >> 8) & 0xff;
13753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013754 }
13755
13756 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070013757#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013758 if (!tg3_get_default_macaddr_sparc(tp))
13759 return 0;
13760#endif
13761 return -EINVAL;
13762 }
John W. Linville2ff43692005-09-12 14:44:20 -070013763 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013764 return 0;
13765}
13766
David S. Miller59e6b432005-05-18 22:50:10 -070013767#define BOUNDARY_SINGLE_CACHELINE 1
13768#define BOUNDARY_MULTI_CACHELINE 2
13769
13770static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
13771{
13772 int cacheline_size;
13773 u8 byte;
13774 int goal;
13775
13776 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
13777 if (byte == 0)
13778 cacheline_size = 1024;
13779 else
13780 cacheline_size = (int) byte * 4;
13781
13782 /* On 5703 and later chips, the boundary bits have no
13783 * effect.
13784 */
13785 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13786 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13787 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
13788 goto out;
13789
13790#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
13791 goal = BOUNDARY_MULTI_CACHELINE;
13792#else
13793#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
13794 goal = BOUNDARY_SINGLE_CACHELINE;
13795#else
13796 goal = 0;
13797#endif
13798#endif
13799
Matt Carlsonb703df62009-12-03 08:36:21 +000013800 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13801 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000013802 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
13803 goto out;
13804 }
13805
David S. Miller59e6b432005-05-18 22:50:10 -070013806 if (!goal)
13807 goto out;
13808
13809 /* PCI controllers on most RISC systems tend to disconnect
13810 * when a device tries to burst across a cache-line boundary.
13811 * Therefore, letting tg3 do so just wastes PCI bandwidth.
13812 *
13813 * Unfortunately, for PCI-E there are only limited
13814 * write-side controls for this, and thus for reads
13815 * we will still get the disconnects. We'll also waste
13816 * these PCI cycles for both read and write for chips
13817 * other than 5700 and 5701 which do not implement the
13818 * boundary bits.
13819 */
13820 if ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
13821 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
13822 switch (cacheline_size) {
13823 case 16:
13824 case 32:
13825 case 64:
13826 case 128:
13827 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13828 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
13829 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
13830 } else {
13831 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
13832 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
13833 }
13834 break;
13835
13836 case 256:
13837 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
13838 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
13839 break;
13840
13841 default:
13842 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
13843 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
13844 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013845 }
David S. Miller59e6b432005-05-18 22:50:10 -070013846 } else if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
13847 switch (cacheline_size) {
13848 case 16:
13849 case 32:
13850 case 64:
13851 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13852 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
13853 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
13854 break;
13855 }
13856 /* fallthrough */
13857 case 128:
13858 default:
13859 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
13860 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
13861 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013862 }
David S. Miller59e6b432005-05-18 22:50:10 -070013863 } else {
13864 switch (cacheline_size) {
13865 case 16:
13866 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13867 val |= (DMA_RWCTRL_READ_BNDRY_16 |
13868 DMA_RWCTRL_WRITE_BNDRY_16);
13869 break;
13870 }
13871 /* fallthrough */
13872 case 32:
13873 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13874 val |= (DMA_RWCTRL_READ_BNDRY_32 |
13875 DMA_RWCTRL_WRITE_BNDRY_32);
13876 break;
13877 }
13878 /* fallthrough */
13879 case 64:
13880 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13881 val |= (DMA_RWCTRL_READ_BNDRY_64 |
13882 DMA_RWCTRL_WRITE_BNDRY_64);
13883 break;
13884 }
13885 /* fallthrough */
13886 case 128:
13887 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13888 val |= (DMA_RWCTRL_READ_BNDRY_128 |
13889 DMA_RWCTRL_WRITE_BNDRY_128);
13890 break;
13891 }
13892 /* fallthrough */
13893 case 256:
13894 val |= (DMA_RWCTRL_READ_BNDRY_256 |
13895 DMA_RWCTRL_WRITE_BNDRY_256);
13896 break;
13897 case 512:
13898 val |= (DMA_RWCTRL_READ_BNDRY_512 |
13899 DMA_RWCTRL_WRITE_BNDRY_512);
13900 break;
13901 case 1024:
13902 default:
13903 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
13904 DMA_RWCTRL_WRITE_BNDRY_1024);
13905 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013906 }
David S. Miller59e6b432005-05-18 22:50:10 -070013907 }
13908
13909out:
13910 return val;
13911}
13912
Linus Torvalds1da177e2005-04-16 15:20:36 -070013913static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
13914{
13915 struct tg3_internal_buffer_desc test_desc;
13916 u32 sram_dma_descs;
13917 int i, ret;
13918
13919 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
13920
13921 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
13922 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
13923 tw32(RDMAC_STATUS, 0);
13924 tw32(WDMAC_STATUS, 0);
13925
13926 tw32(BUFMGR_MODE, 0);
13927 tw32(FTQ_RESET, 0);
13928
13929 test_desc.addr_hi = ((u64) buf_dma) >> 32;
13930 test_desc.addr_lo = buf_dma & 0xffffffff;
13931 test_desc.nic_mbuf = 0x00002100;
13932 test_desc.len = size;
13933
13934 /*
13935 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
13936 * the *second* time the tg3 driver was getting loaded after an
13937 * initial scan.
13938 *
13939 * Broadcom tells me:
13940 * ...the DMA engine is connected to the GRC block and a DMA
13941 * reset may affect the GRC block in some unpredictable way...
13942 * The behavior of resets to individual blocks has not been tested.
13943 *
13944 * Broadcom noted the GRC reset will also reset all sub-components.
13945 */
13946 if (to_device) {
13947 test_desc.cqid_sqid = (13 << 8) | 2;
13948
13949 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
13950 udelay(40);
13951 } else {
13952 test_desc.cqid_sqid = (16 << 8) | 7;
13953
13954 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
13955 udelay(40);
13956 }
13957 test_desc.flags = 0x00000005;
13958
13959 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
13960 u32 val;
13961
13962 val = *(((u32 *)&test_desc) + i);
13963 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
13964 sram_dma_descs + (i * sizeof(u32)));
13965 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
13966 }
13967 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
13968
13969 if (to_device) {
13970 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
13971 } else {
13972 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
13973 }
13974
13975 ret = -ENODEV;
13976 for (i = 0; i < 40; i++) {
13977 u32 val;
13978
13979 if (to_device)
13980 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
13981 else
13982 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
13983 if ((val & 0xffff) == sram_dma_descs) {
13984 ret = 0;
13985 break;
13986 }
13987
13988 udelay(100);
13989 }
13990
13991 return ret;
13992}
13993
David S. Millerded73402005-05-23 13:59:47 -070013994#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070013995
13996static int __devinit tg3_test_dma(struct tg3 *tp)
13997{
13998 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070013999 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014000 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014001
14002 buf = pci_alloc_consistent(tp->pdev, TEST_BUFFER_SIZE, &buf_dma);
14003 if (!buf) {
14004 ret = -ENOMEM;
14005 goto out_nofree;
14006 }
14007
14008 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
14009 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
14010
David S. Miller59e6b432005-05-18 22:50:10 -070014011 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014012
Matt Carlsonb703df62009-12-03 08:36:21 +000014013 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14014 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014015 goto out;
14016
Linus Torvalds1da177e2005-04-16 15:20:36 -070014017 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
14018 /* DMA read watermark not used on PCIE */
14019 tp->dma_rwctrl |= 0x00180000;
14020 } else if (!(tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070014021 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14022 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014023 tp->dma_rwctrl |= 0x003f0000;
14024 else
14025 tp->dma_rwctrl |= 0x003f000f;
14026 } else {
14027 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14028 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
14029 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080014030 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014031
Michael Chan4a29cc22006-03-19 13:21:12 -080014032 /* If the 5704 is behind the EPB bridge, we can
14033 * do the less restrictive ONE_DMA workaround for
14034 * better performance.
14035 */
14036 if ((tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) &&
14037 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14038 tp->dma_rwctrl |= 0x8000;
14039 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014040 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
14041
Michael Chan49afdeb2007-02-13 12:17:03 -080014042 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
14043 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070014044 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080014045 tp->dma_rwctrl |=
14046 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
14047 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
14048 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070014049 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
14050 /* 5780 always in PCIX mode */
14051 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070014052 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
14053 /* 5714 always in PCIX mode */
14054 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014055 } else {
14056 tp->dma_rwctrl |= 0x001b000f;
14057 }
14058 }
14059
14060 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14061 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14062 tp->dma_rwctrl &= 0xfffffff0;
14063
14064 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14065 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
14066 /* Remove this if it causes problems for some boards. */
14067 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
14068
14069 /* On 5700/5701 chips, we need to set this bit.
14070 * Otherwise the chip will issue cacheline transactions
14071 * to streamable DMA memory with not all the byte
14072 * enables turned on. This is an error on several
14073 * RISC PCI controllers, in particular sparc64.
14074 *
14075 * On 5703/5704 chips, this bit has been reassigned
14076 * a different meaning. In particular, it is used
14077 * on those chips to enable a PCI-X workaround.
14078 */
14079 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
14080 }
14081
14082 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14083
14084#if 0
14085 /* Unneeded, already done by tg3_get_invariants. */
14086 tg3_switch_clocks(tp);
14087#endif
14088
Linus Torvalds1da177e2005-04-16 15:20:36 -070014089 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14090 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
14091 goto out;
14092
David S. Miller59e6b432005-05-18 22:50:10 -070014093 /* It is best to perform DMA test with maximum write burst size
14094 * to expose the 5700/5701 write DMA bug.
14095 */
14096 saved_dma_rwctrl = tp->dma_rwctrl;
14097 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14098 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14099
Linus Torvalds1da177e2005-04-16 15:20:36 -070014100 while (1) {
14101 u32 *p = buf, i;
14102
14103 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
14104 p[i] = i;
14105
14106 /* Send the buffer to the chip. */
14107 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
14108 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000014109 dev_err(&tp->pdev->dev,
14110 "%s: Buffer write failed. err = %d\n",
14111 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014112 break;
14113 }
14114
14115#if 0
14116 /* validate data reached card RAM correctly. */
14117 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14118 u32 val;
14119 tg3_read_mem(tp, 0x2100 + (i*4), &val);
14120 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000014121 dev_err(&tp->pdev->dev,
14122 "%s: Buffer corrupted on device! "
14123 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014124 /* ret = -ENODEV here? */
14125 }
14126 p[i] = 0;
14127 }
14128#endif
14129 /* Now read it back. */
14130 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
14131 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000014132 dev_err(&tp->pdev->dev,
14133 "%s: Buffer read failed. err = %d\n",
14134 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014135 break;
14136 }
14137
14138 /* Verify it. */
14139 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14140 if (p[i] == i)
14141 continue;
14142
David S. Miller59e6b432005-05-18 22:50:10 -070014143 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14144 DMA_RWCTRL_WRITE_BNDRY_16) {
14145 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014146 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14147 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14148 break;
14149 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000014150 dev_err(&tp->pdev->dev,
14151 "%s: Buffer corrupted on read back! "
14152 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014153 ret = -ENODEV;
14154 goto out;
14155 }
14156 }
14157
14158 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
14159 /* Success. */
14160 ret = 0;
14161 break;
14162 }
14163 }
David S. Miller59e6b432005-05-18 22:50:10 -070014164 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14165 DMA_RWCTRL_WRITE_BNDRY_16) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014166 static struct pci_device_id dma_wait_state_chipsets[] = {
14167 { PCI_DEVICE(PCI_VENDOR_ID_APPLE,
14168 PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
14169 { },
14170 };
14171
David S. Miller59e6b432005-05-18 22:50:10 -070014172 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070014173 * now look for chipsets that are known to expose the
14174 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070014175 */
Michael Chan6d1cfba2005-06-08 14:13:14 -070014176 if (pci_dev_present(dma_wait_state_chipsets)) {
14177 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14178 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14179 }
14180 else
14181 /* Safe to use the calculated DMA boundary. */
14182 tp->dma_rwctrl = saved_dma_rwctrl;
14183
David S. Miller59e6b432005-05-18 22:50:10 -070014184 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014186
14187out:
14188 pci_free_consistent(tp->pdev, TEST_BUFFER_SIZE, buf, buf_dma);
14189out_nofree:
14190 return ret;
14191}
14192
14193static void __devinit tg3_init_link_config(struct tg3 *tp)
14194{
14195 tp->link_config.advertising =
14196 (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
14197 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
14198 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full |
14199 ADVERTISED_Autoneg | ADVERTISED_MII);
14200 tp->link_config.speed = SPEED_INVALID;
14201 tp->link_config.duplex = DUPLEX_INVALID;
14202 tp->link_config.autoneg = AUTONEG_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014203 tp->link_config.active_speed = SPEED_INVALID;
14204 tp->link_config.active_duplex = DUPLEX_INVALID;
14205 tp->link_config.phy_is_low_power = 0;
14206 tp->link_config.orig_speed = SPEED_INVALID;
14207 tp->link_config.orig_duplex = DUPLEX_INVALID;
14208 tp->link_config.orig_autoneg = AUTONEG_INVALID;
14209}
14210
14211static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
14212{
Matt Carlson666bc832010-01-20 16:58:03 +000014213 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14214 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
14215 tp->bufmgr_config.mbuf_read_dma_low_water =
14216 DEFAULT_MB_RDMA_LOW_WATER_5705;
14217 tp->bufmgr_config.mbuf_mac_rx_low_water =
14218 DEFAULT_MB_MACRX_LOW_WATER_57765;
14219 tp->bufmgr_config.mbuf_high_water =
14220 DEFAULT_MB_HIGH_WATER_57765;
14221
14222 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14223 DEFAULT_MB_RDMA_LOW_WATER_5705;
14224 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14225 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
14226 tp->bufmgr_config.mbuf_high_water_jumbo =
14227 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
14228 } else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chanfdfec1722005-07-25 12:31:48 -070014229 tp->bufmgr_config.mbuf_read_dma_low_water =
14230 DEFAULT_MB_RDMA_LOW_WATER_5705;
14231 tp->bufmgr_config.mbuf_mac_rx_low_water =
14232 DEFAULT_MB_MACRX_LOW_WATER_5705;
14233 tp->bufmgr_config.mbuf_high_water =
14234 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070014235 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14236 tp->bufmgr_config.mbuf_mac_rx_low_water =
14237 DEFAULT_MB_MACRX_LOW_WATER_5906;
14238 tp->bufmgr_config.mbuf_high_water =
14239 DEFAULT_MB_HIGH_WATER_5906;
14240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014241
Michael Chanfdfec1722005-07-25 12:31:48 -070014242 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14243 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
14244 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14245 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
14246 tp->bufmgr_config.mbuf_high_water_jumbo =
14247 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
14248 } else {
14249 tp->bufmgr_config.mbuf_read_dma_low_water =
14250 DEFAULT_MB_RDMA_LOW_WATER;
14251 tp->bufmgr_config.mbuf_mac_rx_low_water =
14252 DEFAULT_MB_MACRX_LOW_WATER;
14253 tp->bufmgr_config.mbuf_high_water =
14254 DEFAULT_MB_HIGH_WATER;
14255
14256 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14257 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
14258 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14259 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
14260 tp->bufmgr_config.mbuf_high_water_jumbo =
14261 DEFAULT_MB_HIGH_WATER_JUMBO;
14262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014263
14264 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
14265 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
14266}
14267
14268static char * __devinit tg3_phy_string(struct tg3 *tp)
14269{
Matt Carlson79eb6902010-02-17 15:17:03 +000014270 switch (tp->phy_id & TG3_PHY_ID_MASK) {
14271 case TG3_PHY_ID_BCM5400: return "5400";
14272 case TG3_PHY_ID_BCM5401: return "5401";
14273 case TG3_PHY_ID_BCM5411: return "5411";
14274 case TG3_PHY_ID_BCM5701: return "5701";
14275 case TG3_PHY_ID_BCM5703: return "5703";
14276 case TG3_PHY_ID_BCM5704: return "5704";
14277 case TG3_PHY_ID_BCM5705: return "5705";
14278 case TG3_PHY_ID_BCM5750: return "5750";
14279 case TG3_PHY_ID_BCM5752: return "5752";
14280 case TG3_PHY_ID_BCM5714: return "5714";
14281 case TG3_PHY_ID_BCM5780: return "5780";
14282 case TG3_PHY_ID_BCM5755: return "5755";
14283 case TG3_PHY_ID_BCM5787: return "5787";
14284 case TG3_PHY_ID_BCM5784: return "5784";
14285 case TG3_PHY_ID_BCM5756: return "5722/5756";
14286 case TG3_PHY_ID_BCM5906: return "5906";
14287 case TG3_PHY_ID_BCM5761: return "5761";
14288 case TG3_PHY_ID_BCM5718C: return "5718C";
14289 case TG3_PHY_ID_BCM5718S: return "5718S";
14290 case TG3_PHY_ID_BCM57765: return "57765";
14291 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070014292 case 0: return "serdes";
14293 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070014294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014295}
14296
Michael Chanf9804dd2005-09-27 12:13:10 -070014297static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
14298{
14299 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
14300 strcpy(str, "PCI Express");
14301 return str;
14302 } else if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
14303 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
14304
14305 strcpy(str, "PCIX:");
14306
14307 if ((clock_ctrl == 7) ||
14308 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
14309 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
14310 strcat(str, "133MHz");
14311 else if (clock_ctrl == 0)
14312 strcat(str, "33MHz");
14313 else if (clock_ctrl == 2)
14314 strcat(str, "50MHz");
14315 else if (clock_ctrl == 4)
14316 strcat(str, "66MHz");
14317 else if (clock_ctrl == 6)
14318 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070014319 } else {
14320 strcpy(str, "PCI:");
14321 if (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED)
14322 strcat(str, "66MHz");
14323 else
14324 strcat(str, "33MHz");
14325 }
14326 if (tp->tg3_flags & TG3_FLAG_PCI_32BIT)
14327 strcat(str, ":32-bit");
14328 else
14329 strcat(str, ":64-bit");
14330 return str;
14331}
14332
Michael Chan8c2dc7e2005-12-19 16:26:02 -080014333static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014334{
14335 struct pci_dev *peer;
14336 unsigned int func, devnr = tp->pdev->devfn & ~7;
14337
14338 for (func = 0; func < 8; func++) {
14339 peer = pci_get_slot(tp->pdev->bus, devnr | func);
14340 if (peer && peer != tp->pdev)
14341 break;
14342 pci_dev_put(peer);
14343 }
Michael Chan16fe9d72005-12-13 21:09:54 -080014344 /* 5704 can be configured in single-port mode, set peer to
14345 * tp->pdev in that case.
14346 */
14347 if (!peer) {
14348 peer = tp->pdev;
14349 return peer;
14350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014351
14352 /*
14353 * We don't need to keep the refcount elevated; there's no way
14354 * to remove one half of this device without removing the other
14355 */
14356 pci_dev_put(peer);
14357
14358 return peer;
14359}
14360
David S. Miller15f98502005-05-18 22:49:26 -070014361static void __devinit tg3_init_coal(struct tg3 *tp)
14362{
14363 struct ethtool_coalesce *ec = &tp->coal;
14364
14365 memset(ec, 0, sizeof(*ec));
14366 ec->cmd = ETHTOOL_GCOALESCE;
14367 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
14368 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
14369 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
14370 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
14371 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
14372 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
14373 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
14374 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
14375 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
14376
14377 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
14378 HOSTCC_MODE_CLRTICK_TXBD)) {
14379 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
14380 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
14381 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
14382 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
14383 }
Michael Chand244c892005-07-05 14:42:33 -070014384
14385 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
14386 ec->rx_coalesce_usecs_irq = 0;
14387 ec->tx_coalesce_usecs_irq = 0;
14388 ec->stats_block_coalesce_usecs = 0;
14389 }
David S. Miller15f98502005-05-18 22:49:26 -070014390}
14391
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014392static const struct net_device_ops tg3_netdev_ops = {
14393 .ndo_open = tg3_open,
14394 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080014395 .ndo_start_xmit = tg3_start_xmit,
14396 .ndo_get_stats = tg3_get_stats,
14397 .ndo_validate_addr = eth_validate_addr,
14398 .ndo_set_multicast_list = tg3_set_rx_mode,
14399 .ndo_set_mac_address = tg3_set_mac_addr,
14400 .ndo_do_ioctl = tg3_ioctl,
14401 .ndo_tx_timeout = tg3_tx_timeout,
14402 .ndo_change_mtu = tg3_change_mtu,
14403#if TG3_VLAN_TAG_USED
14404 .ndo_vlan_rx_register = tg3_vlan_rx_register,
14405#endif
14406#ifdef CONFIG_NET_POLL_CONTROLLER
14407 .ndo_poll_controller = tg3_poll_controller,
14408#endif
14409};
14410
14411static const struct net_device_ops tg3_netdev_ops_dma_bug = {
14412 .ndo_open = tg3_open,
14413 .ndo_stop = tg3_close,
14414 .ndo_start_xmit = tg3_start_xmit_dma_bug,
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014415 .ndo_get_stats = tg3_get_stats,
14416 .ndo_validate_addr = eth_validate_addr,
14417 .ndo_set_multicast_list = tg3_set_rx_mode,
14418 .ndo_set_mac_address = tg3_set_mac_addr,
14419 .ndo_do_ioctl = tg3_ioctl,
14420 .ndo_tx_timeout = tg3_tx_timeout,
14421 .ndo_change_mtu = tg3_change_mtu,
14422#if TG3_VLAN_TAG_USED
14423 .ndo_vlan_rx_register = tg3_vlan_rx_register,
14424#endif
14425#ifdef CONFIG_NET_POLL_CONTROLLER
14426 .ndo_poll_controller = tg3_poll_controller,
14427#endif
14428};
14429
Linus Torvalds1da177e2005-04-16 15:20:36 -070014430static int __devinit tg3_init_one(struct pci_dev *pdev,
14431 const struct pci_device_id *ent)
14432{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014433 struct net_device *dev;
14434 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000014435 int i, err, pm_cap;
14436 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070014437 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080014438 u64 dma_mask, persist_dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014439
Joe Perches05dbe002010-02-17 19:44:19 +000014440 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014441
14442 err = pci_enable_device(pdev);
14443 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014444 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014445 return err;
14446 }
14447
Linus Torvalds1da177e2005-04-16 15:20:36 -070014448 err = pci_request_regions(pdev, DRV_MODULE_NAME);
14449 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014450 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014451 goto err_out_disable_pdev;
14452 }
14453
14454 pci_set_master(pdev);
14455
14456 /* Find power-management capability. */
14457 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
14458 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000014459 dev_err(&pdev->dev,
14460 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014461 err = -EIO;
14462 goto err_out_free_res;
14463 }
14464
Matt Carlsonfe5f5782009-09-01 13:09:39 +000014465 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014466 if (!dev) {
Matt Carlson2445e462010-04-05 10:19:21 +000014467 dev_err(&pdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014468 err = -ENOMEM;
14469 goto err_out_free_res;
14470 }
14471
Linus Torvalds1da177e2005-04-16 15:20:36 -070014472 SET_NETDEV_DEV(dev, &pdev->dev);
14473
Linus Torvalds1da177e2005-04-16 15:20:36 -070014474#if TG3_VLAN_TAG_USED
14475 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014476#endif
14477
14478 tp = netdev_priv(dev);
14479 tp->pdev = pdev;
14480 tp->dev = dev;
14481 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014482 tp->rx_mode = TG3_DEF_RX_MODE;
14483 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070014484
Linus Torvalds1da177e2005-04-16 15:20:36 -070014485 if (tg3_debug > 0)
14486 tp->msg_enable = tg3_debug;
14487 else
14488 tp->msg_enable = TG3_DEF_MSG_ENABLE;
14489
14490 /* The word/byte swap controls here control register access byte
14491 * swapping. DMA data byte swapping is controlled in the GRC_MODE
14492 * setting below.
14493 */
14494 tp->misc_host_ctrl =
14495 MISC_HOST_CTRL_MASK_PCI_INT |
14496 MISC_HOST_CTRL_WORD_SWAP |
14497 MISC_HOST_CTRL_INDIR_ACCESS |
14498 MISC_HOST_CTRL_PCISTATE_RW;
14499
14500 /* The NONFRM (non-frame) byte/word swap controls take effect
14501 * on descriptor entries, anything which isn't packet data.
14502 *
14503 * The StrongARM chips on the board (one for tx, one for rx)
14504 * are running in big-endian mode.
14505 */
14506 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
14507 GRC_MODE_WSWAP_NONFRM_DATA);
14508#ifdef __BIG_ENDIAN
14509 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
14510#endif
14511 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014512 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000014513 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014514
Matt Carlsond5fe4882008-11-21 17:20:32 -080014515 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010014516 if (!tp->regs) {
Joe Perches05dbe002010-02-17 19:44:19 +000014517 netdev_err(dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014518 err = -ENOMEM;
14519 goto err_out_free_dev;
14520 }
14521
14522 tg3_init_link_config(tp);
14523
Linus Torvalds1da177e2005-04-16 15:20:36 -070014524 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
14525 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014526
Linus Torvalds1da177e2005-04-16 15:20:36 -070014527 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014528 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014529 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014530
14531 err = tg3_get_invariants(tp);
14532 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014533 netdev_err(dev, "Problem fetching invariants of chip, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014534 goto err_out_iounmap;
14535 }
14536
Matt Carlson615774f2009-11-13 13:03:39 +000014537 if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) &&
14538 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
Stephen Hemminger00829822008-11-20 20:14:53 -080014539 dev->netdev_ops = &tg3_netdev_ops;
14540 else
14541 dev->netdev_ops = &tg3_netdev_ops_dma_bug;
14542
14543
Michael Chan4a29cc22006-03-19 13:21:12 -080014544 /* The EPB bridge inside 5714, 5715, and 5780 and any
14545 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080014546 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
14547 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
14548 * do DMA address check in tg3_start_xmit().
14549 */
Michael Chan4a29cc22006-03-19 13:21:12 -080014550 if (tp->tg3_flags2 & TG3_FLG2_IS_5788)
Yang Hongyang284901a2009-04-06 19:01:15 -070014551 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Michael Chan4a29cc22006-03-19 13:21:12 -080014552 else if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070014553 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080014554#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070014555 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080014556#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080014557 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070014558 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080014559
14560 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070014561 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080014562 err = pci_set_dma_mask(pdev, dma_mask);
14563 if (!err) {
14564 dev->features |= NETIF_F_HIGHDMA;
14565 err = pci_set_consistent_dma_mask(pdev,
14566 persist_dma_mask);
14567 if (err < 0) {
Joe Perches05dbe002010-02-17 19:44:19 +000014568 netdev_err(dev, "Unable to obtain 64 bit DMA for consistent allocations\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080014569 goto err_out_iounmap;
14570 }
14571 }
14572 }
Yang Hongyang284901a2009-04-06 19:01:15 -070014573 if (err || dma_mask == DMA_BIT_MASK(32)) {
14574 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080014575 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014576 netdev_err(dev, "No usable DMA configuration, aborting\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080014577 goto err_out_iounmap;
14578 }
14579 }
14580
Michael Chanfdfec1722005-07-25 12:31:48 -070014581 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014582
Matt Carlson507399f2009-11-13 13:03:37 +000014583 /* Selectively allow TSO based on operating conditions */
14584 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) ||
14585 (tp->fw_needed && !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)))
14586 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
14587 else {
14588 tp->tg3_flags2 &= ~(TG3_FLG2_TSO_CAPABLE | TG3_FLG2_TSO_BUG);
14589 tp->fw_needed = NULL;
14590 }
14591
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014592 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
Matt Carlson9e9fd122009-01-19 16:57:45 -080014593 tp->fw_needed = FIRMWARE_TG3;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014594
Michael Chan4e3a7aa2006-03-20 17:47:44 -080014595 /* TSO is on by default on chips that support hardware TSO.
14596 * Firmware TSO on older chips gives lower performance, so it
14597 * is off by default, but can be enabled using ethtool.
14598 */
Matt Carlsone849cdc2009-11-13 13:03:38 +000014599 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) &&
14600 (dev->features & NETIF_F_IP_CSUM))
14601 dev->features |= NETIF_F_TSO;
14602
14603 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) ||
14604 (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3)) {
14605 if (dev->features & NETIF_F_IPV6_CSUM)
Michael Chanb0026622006-07-03 19:42:14 -070014606 dev->features |= NETIF_F_TSO6;
Matt Carlsone849cdc2009-11-13 13:03:38 +000014607 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
14608 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070014609 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14610 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014611 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000014612 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson9936bcf2007-10-10 18:03:07 -070014613 dev->features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070014614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014615
Linus Torvalds1da177e2005-04-16 15:20:36 -070014616 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
14617 !(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
14618 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
14619 tp->tg3_flags2 |= TG3_FLG2_MAX_RXPEND_64;
14620 tp->rx_pending = 63;
14621 }
14622
Linus Torvalds1da177e2005-04-16 15:20:36 -070014623 err = tg3_get_device_address(tp);
14624 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014625 netdev_err(dev, "Could not obtain valid ethernet address, aborting\n");
Matt Carlson026a6c22009-12-03 08:36:24 +000014626 goto err_out_iounmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014627 }
14628
Matt Carlson0d3031d2007-10-10 18:02:43 -070014629 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
Matt Carlson63532392008-11-03 16:49:57 -080014630 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
Al Viro79ea13c2008-01-24 02:06:46 -080014631 if (!tp->aperegs) {
Joe Perches05dbe002010-02-17 19:44:19 +000014632 netdev_err(dev, "Cannot map APE registers, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070014633 err = -ENOMEM;
Matt Carlson026a6c22009-12-03 08:36:24 +000014634 goto err_out_iounmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014635 }
14636
14637 tg3_ape_lock_init(tp);
Matt Carlson7fd76442009-02-25 14:27:20 +000014638
14639 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
14640 tg3_read_dash_ver(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014641 }
14642
Matt Carlsonc88864d2007-11-12 21:07:01 -080014643 /*
14644 * Reset chip in case UNDI or EFI driver did not shutdown
14645 * DMA self test will enable WDMAC and we'll see (spurious)
14646 * pending DMA on the PCI bus at that point.
14647 */
14648 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
14649 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
14650 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
14651 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
14652 }
14653
14654 err = tg3_test_dma(tp);
14655 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014656 netdev_err(dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080014657 goto err_out_apeunmap;
14658 }
14659
Matt Carlsonc88864d2007-11-12 21:07:01 -080014660 /* flow control autonegotiation is default behavior */
14661 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
Steve Glendinninge18ce342008-12-16 02:00:00 -080014662 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlsonc88864d2007-11-12 21:07:01 -080014663
Matt Carlson78f90dc2009-11-13 13:03:42 +000014664 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
14665 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
14666 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
14667 for (i = 0; i < TG3_IRQ_MAX_VECS; i++) {
14668 struct tg3_napi *tnapi = &tp->napi[i];
14669
14670 tnapi->tp = tp;
14671 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
14672
14673 tnapi->int_mbox = intmbx;
14674 if (i < 4)
14675 intmbx += 0x8;
14676 else
14677 intmbx += 0x4;
14678
14679 tnapi->consmbox = rcvmbx;
14680 tnapi->prodmbox = sndmbx;
14681
14682 if (i) {
14683 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
14684 netif_napi_add(dev, &tnapi->napi, tg3_poll_msix, 64);
14685 } else {
14686 tnapi->coal_now = HOSTCC_MODE_NOW;
14687 netif_napi_add(dev, &tnapi->napi, tg3_poll, 64);
14688 }
14689
14690 if (!(tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX))
14691 break;
14692
14693 /*
14694 * If we support MSIX, we'll be using RSS. If we're using
14695 * RSS, the first vector only handles link interrupts and the
14696 * remaining vectors handle rx and tx interrupts. Reuse the
14697 * mailbox values for the next iteration. The values we setup
14698 * above are still useful for the single vectored mode.
14699 */
14700 if (!i)
14701 continue;
14702
14703 rcvmbx += 0x8;
14704
14705 if (sndmbx & 0x4)
14706 sndmbx -= 0x4;
14707 else
14708 sndmbx += 0xc;
14709 }
14710
Matt Carlsonc88864d2007-11-12 21:07:01 -080014711 tg3_init_coal(tp);
14712
Michael Chanc49a1562006-12-17 17:07:29 -080014713 pci_set_drvdata(pdev, dev);
14714
Linus Torvalds1da177e2005-04-16 15:20:36 -070014715 err = register_netdev(dev);
14716 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014717 netdev_err(dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070014718 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014719 }
14720
Joe Perches05dbe002010-02-17 19:44:19 +000014721 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
14722 tp->board_part_number,
14723 tp->pci_chip_rev_id,
14724 tg3_bus_string(tp, str),
14725 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014726
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000014727 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
14728 struct phy_device *phydev;
14729 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Joe Perches05dbe002010-02-17 19:44:19 +000014730 netdev_info(dev, "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
14731 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000014732 } else
Joe Perches05dbe002010-02-17 19:44:19 +000014733 netdev_info(dev, "attached PHY is %s (%s Ethernet) (WireSpeed[%d])\n",
14734 tg3_phy_string(tp),
14735 ((tp->tg3_flags & TG3_FLAG_10_100_ONLY) ? "10/100Base-TX" :
14736 ((tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) ? "1000Base-SX" :
14737 "10/100/1000Base-T")),
14738 (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED) == 0);
Matt Carlsondf59c942008-11-03 16:52:56 -080014739
Joe Perches05dbe002010-02-17 19:44:19 +000014740 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
14741 (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0,
14742 (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) != 0,
14743 (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) != 0,
14744 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0,
14745 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) != 0);
14746 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
14747 tp->dma_rwctrl,
14748 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
14749 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014750
14751 return 0;
14752
Matt Carlson0d3031d2007-10-10 18:02:43 -070014753err_out_apeunmap:
14754 if (tp->aperegs) {
14755 iounmap(tp->aperegs);
14756 tp->aperegs = NULL;
14757 }
14758
Linus Torvalds1da177e2005-04-16 15:20:36 -070014759err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070014760 if (tp->regs) {
14761 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014762 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014764
14765err_out_free_dev:
14766 free_netdev(dev);
14767
14768err_out_free_res:
14769 pci_release_regions(pdev);
14770
14771err_out_disable_pdev:
14772 pci_disable_device(pdev);
14773 pci_set_drvdata(pdev, NULL);
14774 return err;
14775}
14776
14777static void __devexit tg3_remove_one(struct pci_dev *pdev)
14778{
14779 struct net_device *dev = pci_get_drvdata(pdev);
14780
14781 if (dev) {
14782 struct tg3 *tp = netdev_priv(dev);
14783
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014784 if (tp->fw)
14785 release_firmware(tp->fw);
14786
Michael Chan7faa0062006-02-02 17:29:28 -080014787 flush_scheduled_work();
Matt Carlson158d7ab2008-05-29 01:37:54 -070014788
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014789 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
14790 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070014791 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014792 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070014793
Linus Torvalds1da177e2005-04-16 15:20:36 -070014794 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014795 if (tp->aperegs) {
14796 iounmap(tp->aperegs);
14797 tp->aperegs = NULL;
14798 }
Michael Chan68929142005-08-09 20:17:14 -070014799 if (tp->regs) {
14800 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014801 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014803 free_netdev(dev);
14804 pci_release_regions(pdev);
14805 pci_disable_device(pdev);
14806 pci_set_drvdata(pdev, NULL);
14807 }
14808}
14809
14810static int tg3_suspend(struct pci_dev *pdev, pm_message_t state)
14811{
14812 struct net_device *dev = pci_get_drvdata(pdev);
14813 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070014814 pci_power_t target_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014815 int err;
14816
Michael Chan3e0c95f2007-08-03 20:56:54 -070014817 /* PCI register 4 needs to be saved whether netif_running() or not.
14818 * MSI address and data need to be saved if using MSI and
14819 * netif_running().
14820 */
14821 pci_save_state(pdev);
14822
Linus Torvalds1da177e2005-04-16 15:20:36 -070014823 if (!netif_running(dev))
14824 return 0;
14825
Michael Chan7faa0062006-02-02 17:29:28 -080014826 flush_scheduled_work();
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014827 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014828 tg3_netif_stop(tp);
14829
14830 del_timer_sync(&tp->timer);
14831
David S. Millerf47c11e2005-06-24 20:18:35 -070014832 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014833 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070014834 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014835
14836 netif_device_detach(dev);
14837
David S. Millerf47c11e2005-06-24 20:18:35 -070014838 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070014839 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan6a9eba12005-12-13 21:08:58 -080014840 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
David S. Millerf47c11e2005-06-24 20:18:35 -070014841 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014842
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070014843 target_state = pdev->pm_cap ? pci_target_state(pdev) : PCI_D3hot;
14844
14845 err = tg3_set_power_state(tp, target_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014846 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014847 int err2;
14848
David S. Millerf47c11e2005-06-24 20:18:35 -070014849 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014850
Michael Chan6a9eba12005-12-13 21:08:58 -080014851 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014852 err2 = tg3_restart_hw(tp, 1);
14853 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070014854 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014855
14856 tp->timer.expires = jiffies + tp->timer_offset;
14857 add_timer(&tp->timer);
14858
14859 netif_device_attach(dev);
14860 tg3_netif_start(tp);
14861
Michael Chanb9ec6c12006-07-25 16:37:27 -070014862out:
David S. Millerf47c11e2005-06-24 20:18:35 -070014863 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014864
14865 if (!err2)
14866 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014867 }
14868
14869 return err;
14870}
14871
14872static int tg3_resume(struct pci_dev *pdev)
14873{
14874 struct net_device *dev = pci_get_drvdata(pdev);
14875 struct tg3 *tp = netdev_priv(dev);
14876 int err;
14877
Michael Chan3e0c95f2007-08-03 20:56:54 -070014878 pci_restore_state(tp->pdev);
14879
Linus Torvalds1da177e2005-04-16 15:20:36 -070014880 if (!netif_running(dev))
14881 return 0;
14882
Michael Chanbc1c7562006-03-20 17:48:03 -080014883 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014884 if (err)
14885 return err;
14886
14887 netif_device_attach(dev);
14888
David S. Millerf47c11e2005-06-24 20:18:35 -070014889 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014890
Michael Chan6a9eba12005-12-13 21:08:58 -080014891 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Michael Chanb9ec6c12006-07-25 16:37:27 -070014892 err = tg3_restart_hw(tp, 1);
14893 if (err)
14894 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014895
14896 tp->timer.expires = jiffies + tp->timer_offset;
14897 add_timer(&tp->timer);
14898
Linus Torvalds1da177e2005-04-16 15:20:36 -070014899 tg3_netif_start(tp);
14900
Michael Chanb9ec6c12006-07-25 16:37:27 -070014901out:
David S. Millerf47c11e2005-06-24 20:18:35 -070014902 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014903
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014904 if (!err)
14905 tg3_phy_start(tp);
14906
Michael Chanb9ec6c12006-07-25 16:37:27 -070014907 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014908}
14909
14910static struct pci_driver tg3_driver = {
14911 .name = DRV_MODULE_NAME,
14912 .id_table = tg3_pci_tbl,
14913 .probe = tg3_init_one,
14914 .remove = __devexit_p(tg3_remove_one),
14915 .suspend = tg3_suspend,
14916 .resume = tg3_resume
14917};
14918
14919static int __init tg3_init(void)
14920{
Jeff Garzik29917622006-08-19 17:48:59 -040014921 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014922}
14923
14924static void __exit tg3_cleanup(void)
14925{
14926 pci_unregister_driver(&tg3_driver);
14927}
14928
14929module_init(tg3_init);
14930module_exit(tg3_cleanup);