blob: aff11f84f5258b71bd05ef7f78586b1acafe4b2c [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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Buytenhek298cf9be2008-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 Sieversfb28ad32008-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 */
4990 if (sblk->idx[0].tx_consumer == tnapi->tx_cons &&
4991 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr) {
4992 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) {
Joe Perches05dbe002010-02-17 19:44:19 +00006436 pr_err("tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437 ofs, enable_bit);
6438 return -ENODEV;
6439 }
6440
6441 return 0;
6442}
6443
6444/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006445static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446{
6447 int i, err;
6448
6449 tg3_disable_ints(tp);
6450
6451 tp->rx_mode &= ~RX_MODE_ENABLE;
6452 tw32_f(MAC_RX_MODE, tp->rx_mode);
6453 udelay(10);
6454
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006455 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
6456 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
6457 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
6458 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
6459 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
6460 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006462 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
6463 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
6464 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
6465 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
6466 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
6467 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
6468 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469
6470 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
6471 tw32_f(MAC_MODE, tp->mac_mode);
6472 udelay(40);
6473
6474 tp->tx_mode &= ~TX_MODE_ENABLE;
6475 tw32_f(MAC_TX_MODE, tp->tx_mode);
6476
6477 for (i = 0; i < MAX_WAIT_CNT; i++) {
6478 udelay(100);
6479 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
6480 break;
6481 }
6482 if (i >= MAX_WAIT_CNT) {
Joe Perches05dbe002010-02-17 19:44:19 +00006483 netdev_err(tp->dev, "%s timed out, TX_MODE_ENABLE will not clear MAC_TX_MODE=%08x\n",
6484 __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07006485 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486 }
6487
Michael Chane6de8ad2005-05-05 14:42:41 -07006488 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006489 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
6490 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491
6492 tw32(FTQ_RESET, 0xffffffff);
6493 tw32(FTQ_RESET, 0x00000000);
6494
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006495 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
6496 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006498 for (i = 0; i < tp->irq_cnt; i++) {
6499 struct tg3_napi *tnapi = &tp->napi[i];
6500 if (tnapi->hw_status)
6501 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503 if (tp->hw_stats)
6504 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6505
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506 return err;
6507}
6508
Matt Carlson0d3031d2007-10-10 18:02:43 -07006509static void tg3_ape_send_event(struct tg3 *tp, u32 event)
6510{
6511 int i;
6512 u32 apedata;
6513
6514 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
6515 if (apedata != APE_SEG_SIG_MAGIC)
6516 return;
6517
6518 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
Matt Carlson731fd792008-08-15 14:07:51 -07006519 if (!(apedata & APE_FW_STATUS_READY))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006520 return;
6521
6522 /* Wait for up to 1 millisecond for APE to service previous event. */
6523 for (i = 0; i < 10; i++) {
6524 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
6525 return;
6526
6527 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
6528
6529 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6530 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
6531 event | APE_EVENT_STATUS_EVENT_PENDING);
6532
6533 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
6534
6535 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6536 break;
6537
6538 udelay(100);
6539 }
6540
6541 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6542 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
6543}
6544
6545static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
6546{
6547 u32 event;
6548 u32 apedata;
6549
6550 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
6551 return;
6552
6553 switch (kind) {
6554 case RESET_KIND_INIT:
6555 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
6556 APE_HOST_SEG_SIG_MAGIC);
6557 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
6558 APE_HOST_SEG_LEN_MAGIC);
6559 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
6560 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
6561 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
6562 APE_HOST_DRIVER_ID_MAGIC);
6563 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
6564 APE_HOST_BEHAV_NO_PHYLOCK);
6565
6566 event = APE_EVENT_STATUS_STATE_START;
6567 break;
6568 case RESET_KIND_SHUTDOWN:
Matt Carlsonb2aee152008-11-03 16:51:11 -08006569 /* With the interface we are currently using,
6570 * APE does not track driver state. Wiping
6571 * out the HOST SEGMENT SIGNATURE forces
6572 * the APE to assume OS absent status.
6573 */
6574 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
6575
Matt Carlson0d3031d2007-10-10 18:02:43 -07006576 event = APE_EVENT_STATUS_STATE_UNLOAD;
6577 break;
6578 case RESET_KIND_SUSPEND:
6579 event = APE_EVENT_STATUS_STATE_SUSPEND;
6580 break;
6581 default:
6582 return;
6583 }
6584
6585 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
6586
6587 tg3_ape_send_event(tp, event);
6588}
6589
Michael Chane6af3012005-04-21 17:12:05 -07006590/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
6592{
David S. Millerf49639e2006-06-09 11:58:36 -07006593 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
6594 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595
6596 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
6597 switch (kind) {
6598 case RESET_KIND_INIT:
6599 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6600 DRV_STATE_START);
6601 break;
6602
6603 case RESET_KIND_SHUTDOWN:
6604 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6605 DRV_STATE_UNLOAD);
6606 break;
6607
6608 case RESET_KIND_SUSPEND:
6609 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6610 DRV_STATE_SUSPEND);
6611 break;
6612
6613 default:
6614 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006617
6618 if (kind == RESET_KIND_INIT ||
6619 kind == RESET_KIND_SUSPEND)
6620 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621}
6622
6623/* tp->lock is held. */
6624static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
6625{
6626 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
6627 switch (kind) {
6628 case RESET_KIND_INIT:
6629 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6630 DRV_STATE_START_DONE);
6631 break;
6632
6633 case RESET_KIND_SHUTDOWN:
6634 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6635 DRV_STATE_UNLOAD_DONE);
6636 break;
6637
6638 default:
6639 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006642
6643 if (kind == RESET_KIND_SHUTDOWN)
6644 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645}
6646
6647/* tp->lock is held. */
6648static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
6649{
6650 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
6651 switch (kind) {
6652 case RESET_KIND_INIT:
6653 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6654 DRV_STATE_START);
6655 break;
6656
6657 case RESET_KIND_SHUTDOWN:
6658 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6659 DRV_STATE_UNLOAD);
6660 break;
6661
6662 case RESET_KIND_SUSPEND:
6663 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6664 DRV_STATE_SUSPEND);
6665 break;
6666
6667 default:
6668 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670 }
6671}
6672
Michael Chan7a6f4362006-09-27 16:03:31 -07006673static int tg3_poll_fw(struct tg3 *tp)
6674{
6675 int i;
6676 u32 val;
6677
Michael Chanb5d37722006-09-27 16:06:21 -07006678 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08006679 /* Wait up to 20ms for init done. */
6680 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07006681 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
6682 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08006683 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07006684 }
6685 return -ENODEV;
6686 }
6687
Michael Chan7a6f4362006-09-27 16:03:31 -07006688 /* Wait for firmware initialization to complete. */
6689 for (i = 0; i < 100000; i++) {
6690 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
6691 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
6692 break;
6693 udelay(10);
6694 }
6695
6696 /* Chip might not be fitted with firmware. Some Sun onboard
6697 * parts are configured like that. So don't signal the timeout
6698 * of the above loop as an error, but do report the lack of
6699 * running firmware once.
6700 */
6701 if (i >= 100000 &&
6702 !(tp->tg3_flags2 & TG3_FLG2_NO_FWARE_REPORTED)) {
6703 tp->tg3_flags2 |= TG3_FLG2_NO_FWARE_REPORTED;
6704
Joe Perches05dbe002010-02-17 19:44:19 +00006705 netdev_info(tp->dev, "No firmware running\n");
Michael Chan7a6f4362006-09-27 16:03:31 -07006706 }
6707
Matt Carlson6b10c162010-02-12 14:47:08 +00006708 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
6709 /* The 57765 A0 needs a little more
6710 * time to do some important work.
6711 */
6712 mdelay(10);
6713 }
6714
Michael Chan7a6f4362006-09-27 16:03:31 -07006715 return 0;
6716}
6717
Michael Chanee6a99b2007-07-18 21:49:10 -07006718/* Save PCI command register before chip reset */
6719static void tg3_save_pci_state(struct tg3 *tp)
6720{
Matt Carlson8a6eac92007-10-21 16:17:55 -07006721 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07006722}
6723
6724/* Restore PCI state after chip reset */
6725static void tg3_restore_pci_state(struct tg3 *tp)
6726{
6727 u32 val;
6728
6729 /* Re-enable indirect register accesses. */
6730 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
6731 tp->misc_host_ctrl);
6732
6733 /* Set MAX PCI retry to zero. */
6734 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
6735 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
6736 (tp->tg3_flags & TG3_FLAG_PCIX_MODE))
6737 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07006738 /* Allow reads and writes to the APE register and memory space. */
6739 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
6740 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
6741 PCISTATE_ALLOW_APE_SHMEM_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07006742 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
6743
Matt Carlson8a6eac92007-10-21 16:17:55 -07006744 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07006745
Matt Carlsonfcb389d2008-11-03 16:55:44 -08006746 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
6747 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
6748 pcie_set_readrq(tp->pdev, 4096);
6749 else {
6750 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
6751 tp->pci_cacheline_sz);
6752 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
6753 tp->pci_lat_timer);
6754 }
Michael Chan114342f2007-10-15 02:12:26 -07006755 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08006756
Michael Chanee6a99b2007-07-18 21:49:10 -07006757 /* Make sure PCI-X relaxed ordering bit is clear. */
Matt Carlson52f44902008-11-21 17:17:04 -08006758 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
Matt Carlson9974a352007-10-07 23:27:28 -07006759 u16 pcix_cmd;
6760
6761 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
6762 &pcix_cmd);
6763 pcix_cmd &= ~PCI_X_CMD_ERO;
6764 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
6765 pcix_cmd);
6766 }
Michael Chanee6a99b2007-07-18 21:49:10 -07006767
6768 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanee6a99b2007-07-18 21:49:10 -07006769
6770 /* Chip reset on 5780 will reset MSI enable bit,
6771 * so need to restore it.
6772 */
6773 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
6774 u16 ctrl;
6775
6776 pci_read_config_word(tp->pdev,
6777 tp->msi_cap + PCI_MSI_FLAGS,
6778 &ctrl);
6779 pci_write_config_word(tp->pdev,
6780 tp->msi_cap + PCI_MSI_FLAGS,
6781 ctrl | PCI_MSI_FLAGS_ENABLE);
6782 val = tr32(MSGINT_MODE);
6783 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
6784 }
6785 }
6786}
6787
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788static void tg3_stop_fw(struct tg3 *);
6789
6790/* tp->lock is held. */
6791static int tg3_chip_reset(struct tg3 *tp)
6792{
6793 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07006794 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00006795 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796
David S. Millerf49639e2006-06-09 11:58:36 -07006797 tg3_nvram_lock(tp);
6798
Matt Carlson77b483f2008-08-15 14:07:24 -07006799 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
6800
David S. Millerf49639e2006-06-09 11:58:36 -07006801 /* No matching tg3_nvram_unlock() after this because
6802 * chip reset below will undo the nvram lock.
6803 */
6804 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006805
Michael Chanee6a99b2007-07-18 21:49:10 -07006806 /* GRC_MISC_CFG core clock reset will clear the memory
6807 * enable bit in PCI register 4 and the MSI enable bit
6808 * on some chips, so we save relevant registers here.
6809 */
6810 tg3_save_pci_state(tp);
6811
Michael Chand9ab5ad2006-03-20 22:27:35 -08006812 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08006813 (tp->tg3_flags3 & TG3_FLG3_5755_PLUS))
Michael Chand9ab5ad2006-03-20 22:27:35 -08006814 tw32(GRC_FASTBOOT_PC, 0);
6815
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816 /*
6817 * We must avoid the readl() that normally takes place.
6818 * It locks machines, causes machine checks, and other
6819 * fun things. So, temporarily disable the 5701
6820 * hardware workaround, while we do the reset.
6821 */
Michael Chan1ee582d2005-08-09 20:16:46 -07006822 write_op = tp->write32;
6823 if (write_op == tg3_write_flush_reg32)
6824 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825
Michael Chand18edcb2007-03-24 20:57:11 -07006826 /* Prevent the irq handler from reading or writing PCI registers
6827 * during chip reset when the memory enable bit in the PCI command
6828 * register may be cleared. The chip does not generate interrupt
6829 * at this time, but the irq handler may still be called due to irq
6830 * sharing or irqpoll.
6831 */
6832 tp->tg3_flags |= TG3_FLAG_CHIP_RESETTING;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006833 for (i = 0; i < tp->irq_cnt; i++) {
6834 struct tg3_napi *tnapi = &tp->napi[i];
6835 if (tnapi->hw_status) {
6836 tnapi->hw_status->status = 0;
6837 tnapi->hw_status->status_tag = 0;
6838 }
6839 tnapi->last_tag = 0;
6840 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07006841 }
Michael Chand18edcb2007-03-24 20:57:11 -07006842 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00006843
6844 for (i = 0; i < tp->irq_cnt; i++)
6845 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07006846
Matt Carlson255ca312009-08-25 10:07:27 +00006847 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
6848 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
6849 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
6850 }
6851
Linus Torvalds1da177e2005-04-16 15:20:36 -07006852 /* do the reset */
6853 val = GRC_MISC_CFG_CORECLK_RESET;
6854
6855 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
6856 if (tr32(0x7e2c) == 0x60) {
6857 tw32(0x7e2c, 0x20);
6858 }
6859 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
6860 tw32(GRC_MISC_CFG, (1 << 29));
6861 val |= (1 << 29);
6862 }
6863 }
6864
Michael Chanb5d37722006-09-27 16:06:21 -07006865 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
6866 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
6867 tw32(GRC_VCPU_EXT_CTRL,
6868 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
6869 }
6870
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
6872 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
6873 tw32(GRC_MISC_CFG, val);
6874
Michael Chan1ee582d2005-08-09 20:16:46 -07006875 /* restore 5701 hardware bug workaround write method */
6876 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877
6878 /* Unfortunately, we have to delay before the PCI read back.
6879 * Some 575X chips even will not respond to a PCI cfg access
6880 * when the reset command is given to the chip.
6881 *
6882 * How do these hardware designers expect things to work
6883 * properly if the PCI write is posted for a long period
6884 * of time? It is always necessary to have some method by
6885 * which a register read back can occur to push the write
6886 * out which does the reset.
6887 *
6888 * For most tg3 variants the trick below was working.
6889 * Ho hum...
6890 */
6891 udelay(120);
6892
6893 /* Flush PCI posted writes. The normal MMIO registers
6894 * are inaccessible at this time so this is the only
6895 * way to make this reliably (actually, this is no longer
6896 * the case, see above). I tried to use indirect
6897 * register read/write but this upset some 5701 variants.
6898 */
6899 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
6900
6901 udelay(120);
6902
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006903 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) && tp->pcie_cap) {
Matt Carlsone7126992009-08-25 10:08:16 +00006904 u16 val16;
6905
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
6907 int i;
6908 u32 cfg_val;
6909
6910 /* Wait for link training to complete. */
6911 for (i = 0; i < 5000; i++)
6912 udelay(100);
6913
6914 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
6915 pci_write_config_dword(tp->pdev, 0xc4,
6916 cfg_val | (1 << 15));
6917 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006918
Matt Carlsone7126992009-08-25 10:08:16 +00006919 /* Clear the "no snoop" and "relaxed ordering" bits. */
6920 pci_read_config_word(tp->pdev,
6921 tp->pcie_cap + PCI_EXP_DEVCTL,
6922 &val16);
6923 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
6924 PCI_EXP_DEVCTL_NOSNOOP_EN);
6925 /*
6926 * Older PCIe devices only support the 128 byte
6927 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006928 */
Matt Carlsone7126992009-08-25 10:08:16 +00006929 if (!(tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
6930 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784))
6931 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006932 pci_write_config_word(tp->pdev,
6933 tp->pcie_cap + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00006934 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006935
6936 pcie_set_readrq(tp->pdev, 4096);
6937
6938 /* Clear error status */
6939 pci_write_config_word(tp->pdev,
6940 tp->pcie_cap + PCI_EXP_DEVSTA,
6941 PCI_EXP_DEVSTA_CED |
6942 PCI_EXP_DEVSTA_NFED |
6943 PCI_EXP_DEVSTA_FED |
6944 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945 }
6946
Michael Chanee6a99b2007-07-18 21:49:10 -07006947 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948
Michael Chand18edcb2007-03-24 20:57:11 -07006949 tp->tg3_flags &= ~TG3_FLAG_CHIP_RESETTING;
6950
Michael Chanee6a99b2007-07-18 21:49:10 -07006951 val = 0;
6952 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chan4cf78e42005-07-25 12:29:19 -07006953 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07006954 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955
6956 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
6957 tg3_stop_fw(tp);
6958 tw32(0x5000, 0x400);
6959 }
6960
6961 tw32(GRC_MODE, tp->grc_mode);
6962
6963 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01006964 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006965
6966 tw32(0xc4, val | (1 << 15));
6967 }
6968
6969 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
6970 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
6971 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
6972 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
6973 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
6974 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
6975 }
6976
6977 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
6978 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
6979 tw32_f(MAC_MODE, tp->mac_mode);
Michael Chan747e8f82005-07-25 12:33:22 -07006980 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
6981 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
6982 tw32_f(MAC_MODE, tp->mac_mode);
Matt Carlson3bda1252008-08-15 14:08:22 -07006983 } else if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
6984 tp->mac_mode &= (MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN);
6985 if (tp->mac_mode & MAC_MODE_APE_TX_EN)
6986 tp->mac_mode |= MAC_MODE_TDE_ENABLE;
6987 tw32_f(MAC_MODE, tp->mac_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006988 } else
6989 tw32_f(MAC_MODE, 0);
6990 udelay(40);
6991
Matt Carlson77b483f2008-08-15 14:07:24 -07006992 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
6993
Michael Chan7a6f4362006-09-27 16:03:31 -07006994 err = tg3_poll_fw(tp);
6995 if (err)
6996 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997
Matt Carlson0a9140c2009-08-28 12:27:50 +00006998 tg3_mdio_start(tp);
6999
Matt Carlson52cdf852009-11-02 14:25:06 +00007000 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7001 u8 phy_addr;
7002
7003 phy_addr = tp->phy_addr;
7004 tp->phy_addr = TG3_PHY_PCIE_ADDR;
7005
7006 tg3_writephy(tp, TG3_PCIEPHY_BLOCK_ADDR,
7007 TG3_PCIEPHY_TXB_BLK << TG3_PCIEPHY_BLOCK_SHIFT);
7008 val = TG3_PCIEPHY_TX0CTRL1_TXOCM | TG3_PCIEPHY_TX0CTRL1_RDCTL |
7009 TG3_PCIEPHY_TX0CTRL1_TXCMV | TG3_PCIEPHY_TX0CTRL1_TKSEL |
7010 TG3_PCIEPHY_TX0CTRL1_NB_EN;
7011 tg3_writephy(tp, TG3_PCIEPHY_TX0CTRL1, val);
7012 udelay(10);
7013
7014 tg3_writephy(tp, TG3_PCIEPHY_BLOCK_ADDR,
7015 TG3_PCIEPHY_XGXS_BLK1 << TG3_PCIEPHY_BLOCK_SHIFT);
7016 val = TG3_PCIEPHY_PWRMGMT4_LOWPWR_EN |
7017 TG3_PCIEPHY_PWRMGMT4_L1PLLPD_EN;
7018 tg3_writephy(tp, TG3_PCIEPHY_PWRMGMT4, val);
7019 udelay(10);
7020
7021 tp->phy_addr = phy_addr;
7022 }
7023
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007025 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7026 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonb703df62009-12-03 08:36:21 +00007027 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
7028 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007029 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030
7031 tw32(0x7c00, val | (1 << 25));
7032 }
7033
7034 /* Reprobe ASF enable state. */
7035 tp->tg3_flags &= ~TG3_FLAG_ENABLE_ASF;
7036 tp->tg3_flags2 &= ~TG3_FLG2_ASF_NEW_HANDSHAKE;
7037 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7038 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7039 u32 nic_cfg;
7040
7041 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7042 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
7043 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
Matt Carlson4ba526c2008-08-15 14:10:04 -07007044 tp->last_event_jiffies = jiffies;
John W. Linvillecbf46852005-04-21 17:01:29 -07007045 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
7047 }
7048 }
7049
7050 return 0;
7051}
7052
7053/* tp->lock is held. */
7054static void tg3_stop_fw(struct tg3 *tp)
7055{
Matt Carlson0d3031d2007-10-10 18:02:43 -07007056 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
7057 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07007058 /* Wait for RX cpu to ACK the previous event. */
7059 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060
7061 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007062
7063 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064
Matt Carlson7c5026a2008-05-02 16:49:29 -07007065 /* Wait for RX cpu to ACK this event. */
7066 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067 }
7068}
7069
7070/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007071static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072{
7073 int err;
7074
7075 tg3_stop_fw(tp);
7076
Michael Chan944d9802005-05-29 14:57:48 -07007077 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007079 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080 err = tg3_chip_reset(tp);
7081
Matt Carlsondaba2a62009-04-20 06:58:52 +00007082 __tg3_set_mac_addr(tp, 0);
7083
Michael Chan944d9802005-05-29 14:57:48 -07007084 tg3_write_sig_legacy(tp, kind);
7085 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007086
7087 if (err)
7088 return err;
7089
7090 return 0;
7091}
7092
Linus Torvalds1da177e2005-04-16 15:20:36 -07007093#define RX_CPU_SCRATCH_BASE 0x30000
7094#define RX_CPU_SCRATCH_SIZE 0x04000
7095#define TX_CPU_SCRATCH_BASE 0x34000
7096#define TX_CPU_SCRATCH_SIZE 0x04000
7097
7098/* tp->lock is held. */
7099static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
7100{
7101 int i;
7102
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02007103 BUG_ON(offset == TX_CPU_BASE &&
7104 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105
Michael Chanb5d37722006-09-27 16:06:21 -07007106 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7107 u32 val = tr32(GRC_VCPU_EXT_CTRL);
7108
7109 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
7110 return 0;
7111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112 if (offset == RX_CPU_BASE) {
7113 for (i = 0; i < 10000; i++) {
7114 tw32(offset + CPU_STATE, 0xffffffff);
7115 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7116 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7117 break;
7118 }
7119
7120 tw32(offset + CPU_STATE, 0xffffffff);
7121 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
7122 udelay(10);
7123 } else {
7124 for (i = 0; i < 10000; i++) {
7125 tw32(offset + CPU_STATE, 0xffffffff);
7126 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7127 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7128 break;
7129 }
7130 }
7131
7132 if (i >= 10000) {
Joe Perches05dbe002010-02-17 19:44:19 +00007133 netdev_err(tp->dev, "%s timed out, %s CPU\n",
7134 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007135 return -ENODEV;
7136 }
Michael Chanec41c7d2006-01-17 02:40:55 -08007137
7138 /* Clear firmware's nvram arbitration. */
7139 if (tp->tg3_flags & TG3_FLAG_NVRAM)
7140 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141 return 0;
7142}
7143
7144struct fw_info {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007145 unsigned int fw_base;
7146 unsigned int fw_len;
7147 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148};
7149
7150/* tp->lock is held. */
7151static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
7152 int cpu_scratch_size, struct fw_info *info)
7153{
Michael Chanec41c7d2006-01-17 02:40:55 -08007154 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155 void (*write_op)(struct tg3 *, u32, u32);
7156
7157 if (cpu_base == TX_CPU_BASE &&
7158 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
Joe Perches05dbe002010-02-17 19:44:19 +00007159 netdev_err(tp->dev, "%s: Trying to load TX cpu firmware which is 5705\n",
7160 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161 return -EINVAL;
7162 }
7163
7164 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
7165 write_op = tg3_write_mem;
7166 else
7167 write_op = tg3_write_indirect_reg32;
7168
Michael Chan1b628152005-05-29 14:59:49 -07007169 /* It is possible that bootcode is still loading at this point.
7170 * Get the nvram lock first before halting the cpu.
7171 */
Michael Chanec41c7d2006-01-17 02:40:55 -08007172 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08007174 if (!lock_err)
7175 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007176 if (err)
7177 goto out;
7178
7179 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
7180 write_op(tp, cpu_scratch_base + i, 0);
7181 tw32(cpu_base + CPU_STATE, 0xffffffff);
7182 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007183 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184 write_op(tp, (cpu_scratch_base +
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007185 (info->fw_base & 0xffff) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07007186 (i * sizeof(u32))),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007187 be32_to_cpu(info->fw_data[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007188
7189 err = 0;
7190
7191out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007192 return err;
7193}
7194
7195/* tp->lock is held. */
7196static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
7197{
7198 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007199 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200 int err, i;
7201
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007202 fw_data = (void *)tp->fw->data;
7203
7204 /* Firmware blob starts with version numbers, followed by
7205 start address and length. We are setting complete length.
7206 length = end_address_of_bss - start_address_of_text.
7207 Remainder is the blob to be loaded contiguously
7208 from start address. */
7209
7210 info.fw_base = be32_to_cpu(fw_data[1]);
7211 info.fw_len = tp->fw->size - 12;
7212 info.fw_data = &fw_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007213
7214 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
7215 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
7216 &info);
7217 if (err)
7218 return err;
7219
7220 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
7221 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
7222 &info);
7223 if (err)
7224 return err;
7225
7226 /* Now startup only the RX cpu. */
7227 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007228 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007229
7230 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007231 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007232 break;
7233 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7234 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007235 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236 udelay(1000);
7237 }
7238 if (i >= 5) {
Joe Perches05dbe002010-02-17 19:44:19 +00007239 netdev_err(tp->dev, "tg3_load_firmware fails to set RX CPU PC, is %08x should be %08x\n",
7240 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007241 return -ENODEV;
7242 }
7243 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7244 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
7245
7246 return 0;
7247}
7248
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249/* 5705 needs a special version of the TSO firmware. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250
7251/* tp->lock is held. */
7252static int tg3_load_tso_firmware(struct tg3 *tp)
7253{
7254 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007255 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007256 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
7257 int err, i;
7258
7259 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
7260 return 0;
7261
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007262 fw_data = (void *)tp->fw->data;
7263
7264 /* Firmware blob starts with version numbers, followed by
7265 start address and length. We are setting complete length.
7266 length = end_address_of_bss - start_address_of_text.
7267 Remainder is the blob to be loaded contiguously
7268 from start address. */
7269
7270 info.fw_base = be32_to_cpu(fw_data[1]);
7271 cpu_scratch_size = tp->fw_len;
7272 info.fw_len = tp->fw->size - 12;
7273 info.fw_data = &fw_data[3];
7274
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007276 cpu_base = RX_CPU_BASE;
7277 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007278 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279 cpu_base = TX_CPU_BASE;
7280 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
7281 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
7282 }
7283
7284 err = tg3_load_firmware_cpu(tp, cpu_base,
7285 cpu_scratch_base, cpu_scratch_size,
7286 &info);
7287 if (err)
7288 return err;
7289
7290 /* Now startup the cpu. */
7291 tw32(cpu_base + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007292 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007293
7294 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007295 if (tr32(cpu_base + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296 break;
7297 tw32(cpu_base + CPU_STATE, 0xffffffff);
7298 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007299 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007300 udelay(1000);
7301 }
7302 if (i >= 5) {
Joe Perches05dbe002010-02-17 19:44:19 +00007303 netdev_err(tp->dev, "%s fails to set CPU PC, is %08x should be %08x\n",
7304 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305 return -ENODEV;
7306 }
7307 tw32(cpu_base + CPU_STATE, 0xffffffff);
7308 tw32_f(cpu_base + CPU_MODE, 0x00000000);
7309 return 0;
7310}
7311
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313static int tg3_set_mac_addr(struct net_device *dev, void *p)
7314{
7315 struct tg3 *tp = netdev_priv(dev);
7316 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007317 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318
Michael Chanf9804dd2005-09-27 12:13:10 -07007319 if (!is_valid_ether_addr(addr->sa_data))
7320 return -EINVAL;
7321
Linus Torvalds1da177e2005-04-16 15:20:36 -07007322 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7323
Michael Chane75f7c92006-03-20 21:33:26 -08007324 if (!netif_running(dev))
7325 return 0;
7326
Michael Chan58712ef2006-04-29 18:58:01 -07007327 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007328 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007329
Michael Chan986e0ae2007-05-05 12:10:20 -07007330 addr0_high = tr32(MAC_ADDR_0_HIGH);
7331 addr0_low = tr32(MAC_ADDR_0_LOW);
7332 addr1_high = tr32(MAC_ADDR_1_HIGH);
7333 addr1_low = tr32(MAC_ADDR_1_LOW);
7334
7335 /* Skip MAC addr 1 if ASF is using it. */
7336 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7337 !(addr1_high == 0 && addr1_low == 0))
7338 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007339 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007340 spin_lock_bh(&tp->lock);
7341 __tg3_set_mac_addr(tp, skip_mac_1);
7342 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343
Michael Chanb9ec6c12006-07-25 16:37:27 -07007344 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345}
7346
7347/* tp->lock is held. */
7348static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7349 dma_addr_t mapping, u32 maxlen_flags,
7350 u32 nic_addr)
7351{
7352 tg3_write_mem(tp,
7353 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7354 ((u64) mapping >> 32));
7355 tg3_write_mem(tp,
7356 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7357 ((u64) mapping & 0xffffffff));
7358 tg3_write_mem(tp,
7359 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7360 maxlen_flags);
7361
7362 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7363 tg3_write_mem(tp,
7364 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7365 nic_addr);
7366}
7367
7368static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007369static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007370{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007371 int i;
7372
Matt Carlson19cfaec2009-12-03 08:36:20 +00007373 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007374 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7375 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7376 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007377 } else {
7378 tw32(HOSTCC_TXCOL_TICKS, 0);
7379 tw32(HOSTCC_TXMAX_FRAMES, 0);
7380 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007381 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007382
Matt Carlson19cfaec2009-12-03 08:36:20 +00007383 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSIX)) {
7384 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7385 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7386 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7387 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007388 tw32(HOSTCC_RXCOL_TICKS, 0);
7389 tw32(HOSTCC_RXMAX_FRAMES, 0);
7390 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07007391 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007392
David S. Miller15f98502005-05-18 22:49:26 -07007393 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7394 u32 val = ec->stats_block_coalesce_usecs;
7395
Matt Carlsonb6080e12009-09-01 13:12:00 +00007396 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
7397 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
7398
David S. Miller15f98502005-05-18 22:49:26 -07007399 if (!netif_carrier_ok(tp->dev))
7400 val = 0;
7401
7402 tw32(HOSTCC_STAT_COAL_TICKS, val);
7403 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007404
7405 for (i = 0; i < tp->irq_cnt - 1; i++) {
7406 u32 reg;
7407
7408 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
7409 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007410 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
7411 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007412 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
7413 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007414
7415 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS) {
7416 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
7417 tw32(reg, ec->tx_coalesce_usecs);
7418 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
7419 tw32(reg, ec->tx_max_coalesced_frames);
7420 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
7421 tw32(reg, ec->tx_max_coalesced_frames_irq);
7422 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007423 }
7424
7425 for (; i < tp->irq_max - 1; i++) {
7426 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007427 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007428 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007429
7430 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS) {
7431 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
7432 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
7433 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7434 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007435 }
David S. Miller15f98502005-05-18 22:49:26 -07007436}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437
7438/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00007439static void tg3_rings_reset(struct tg3 *tp)
7440{
7441 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007442 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007443 struct tg3_napi *tnapi = &tp->napi[0];
7444
7445 /* Disable all transmit rings but the first. */
7446 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7447 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007448 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
7449 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007450 else
7451 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7452
7453 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7454 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
7455 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
7456 BDINFO_FLAGS_DISABLED);
7457
7458
7459 /* Disable all receive return rings but the first. */
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007460 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
7461 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
7462 else if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007463 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007464 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7465 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson2d31eca2009-09-01 12:53:31 +00007466 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
7467 else
7468 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7469
7470 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7471 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
7472 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
7473 BDINFO_FLAGS_DISABLED);
7474
7475 /* Disable interrupts */
7476 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
7477
7478 /* Zero mailbox registers. */
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007479 if (tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX) {
7480 for (i = 1; i < TG3_IRQ_MAX_VECS; i++) {
7481 tp->napi[i].tx_prod = 0;
7482 tp->napi[i].tx_cons = 0;
Matt Carlsonc2353a32010-01-20 16:58:08 +00007483 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
7484 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007485 tw32_rx_mbox(tp->napi[i].consmbox, 0);
7486 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
7487 }
Matt Carlsonc2353a32010-01-20 16:58:08 +00007488 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS))
7489 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007490 } else {
7491 tp->napi[0].tx_prod = 0;
7492 tp->napi[0].tx_cons = 0;
7493 tw32_mailbox(tp->napi[0].prodmbox, 0);
7494 tw32_rx_mbox(tp->napi[0].consmbox, 0);
7495 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007496
7497 /* Make sure the NIC-based send BD rings are disabled. */
7498 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7499 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
7500 for (i = 0; i < 16; i++)
7501 tw32_tx_mbox(mbox + i * 8, 0);
7502 }
7503
7504 txrcb = NIC_SRAM_SEND_RCB;
7505 rxrcb = NIC_SRAM_RCV_RET_RCB;
7506
7507 /* Clear status block in ram. */
7508 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7509
7510 /* Set status block DMA address */
7511 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7512 ((u64) tnapi->status_mapping >> 32));
7513 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7514 ((u64) tnapi->status_mapping & 0xffffffff));
7515
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007516 if (tnapi->tx_ring) {
7517 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7518 (TG3_TX_RING_SIZE <<
7519 BDINFO_FLAGS_MAXLEN_SHIFT),
7520 NIC_SRAM_TX_BUFFER_DESC);
7521 txrcb += TG3_BDINFO_SIZE;
7522 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007523
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007524 if (tnapi->rx_rcb) {
7525 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
7526 (TG3_RX_RCB_RING_SIZE(tp) <<
7527 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7528 rxrcb += TG3_BDINFO_SIZE;
7529 }
7530
7531 stblk = HOSTCC_STATBLCK_RING1;
7532
7533 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
7534 u64 mapping = (u64)tnapi->status_mapping;
7535 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
7536 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
7537
7538 /* Clear status block in ram. */
7539 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7540
Matt Carlson19cfaec2009-12-03 08:36:20 +00007541 if (tnapi->tx_ring) {
7542 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7543 (TG3_TX_RING_SIZE <<
7544 BDINFO_FLAGS_MAXLEN_SHIFT),
7545 NIC_SRAM_TX_BUFFER_DESC);
7546 txrcb += TG3_BDINFO_SIZE;
7547 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007548
7549 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
7550 (TG3_RX_RCB_RING_SIZE(tp) <<
7551 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7552
7553 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007554 rxrcb += TG3_BDINFO_SIZE;
7555 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007556}
7557
7558/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007559static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007560{
7561 u32 val, rdmac_mode;
7562 int i, err, limit;
Matt Carlson21f581a2009-08-28 14:00:25 +00007563 struct tg3_rx_prodring_set *tpr = &tp->prodring[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007564
7565 tg3_disable_ints(tp);
7566
7567 tg3_stop_fw(tp);
7568
7569 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
7570
7571 if (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) {
Michael Chane6de8ad2005-05-05 14:42:41 -07007572 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007573 }
7574
Matt Carlson603f1172010-02-12 14:47:10 +00007575 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08007576 tg3_phy_reset(tp);
7577
Linus Torvalds1da177e2005-04-16 15:20:36 -07007578 err = tg3_chip_reset(tp);
7579 if (err)
7580 return err;
7581
7582 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
7583
Matt Carlsonbcb37f62008-11-03 16:52:09 -08007584 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007585 val = tr32(TG3_CPMU_CTRL);
7586 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
7587 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08007588
7589 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
7590 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
7591 val |= CPMU_LSPD_10MB_MACCLK_6_25;
7592 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
7593
7594 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
7595 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
7596 val |= CPMU_LNK_AWARE_MACCLK_6_25;
7597 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
7598
7599 val = tr32(TG3_CPMU_HST_ACC);
7600 val &= ~CPMU_HST_ACC_MACCLK_MASK;
7601 val |= CPMU_HST_ACC_MACCLK_6_25;
7602 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07007603 }
7604
Matt Carlson33466d92009-04-20 06:57:41 +00007605 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7606 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
7607 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
7608 PCIE_PWR_MGMT_L1_THRESH_4MS;
7609 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00007610
7611 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
7612 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
7613
7614 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00007615
Matt Carlsonf40386c2009-11-02 14:24:02 +00007616 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7617 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00007618 }
7619
Matt Carlson614b0592010-01-20 16:58:02 +00007620 if (tp->tg3_flags3 & TG3_FLG3_L1PLLPD_EN) {
7621 u32 grc_mode = tr32(GRC_MODE);
7622
7623 /* Access the lower 1K of PL PCIE block registers. */
7624 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
7625 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
7626
7627 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
7628 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
7629 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
7630
7631 tw32(GRC_MODE, grc_mode);
7632 }
7633
Linus Torvalds1da177e2005-04-16 15:20:36 -07007634 /* This works around an issue with Athlon chipsets on
7635 * B3 tigon3 silicon. This bit has no effect on any
7636 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07007637 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638 */
Matt Carlson795d01c2007-10-07 23:28:17 -07007639 if (!(tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)) {
7640 if (!(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
7641 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
7642 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007644
7645 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
7646 (tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
7647 val = tr32(TG3PCI_PCISTATE);
7648 val |= PCISTATE_RETRY_SAME_DMA;
7649 tw32(TG3PCI_PCISTATE, val);
7650 }
7651
Matt Carlson0d3031d2007-10-10 18:02:43 -07007652 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
7653 /* Allow reads and writes to the
7654 * APE register and memory space.
7655 */
7656 val = tr32(TG3PCI_PCISTATE);
7657 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
7658 PCISTATE_ALLOW_APE_SHMEM_WR;
7659 tw32(TG3PCI_PCISTATE, val);
7660 }
7661
Linus Torvalds1da177e2005-04-16 15:20:36 -07007662 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
7663 /* Enable some hw fixes. */
7664 val = tr32(TG3PCI_MSI_DATA);
7665 val |= (1 << 26) | (1 << 28) | (1 << 29);
7666 tw32(TG3PCI_MSI_DATA, val);
7667 }
7668
7669 /* Descriptor ring init may make accesses to the
7670 * NIC SRAM area to setup the TX descriptors, so we
7671 * can only do this after the hardware has been
7672 * successfully reset.
7673 */
Michael Chan32d8c572006-07-25 16:38:29 -07007674 err = tg3_init_rings(tp);
7675 if (err)
7676 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
Matt Carlsonb703df62009-12-03 08:36:21 +00007678 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
7679 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00007680 val = tr32(TG3PCI_DMA_RW_CTRL) &
7681 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
7682 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
7683 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
7684 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007685 /* This value is determined during the probe time DMA
7686 * engine test, tg3_test_dma.
7687 */
7688 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
7689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690
7691 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
7692 GRC_MODE_4X_NIC_SEND_RINGS |
7693 GRC_MODE_NO_TX_PHDR_CSUM |
7694 GRC_MODE_NO_RX_PHDR_CSUM);
7695 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07007696
7697 /* Pseudo-header checksum is done by hardware logic and not
7698 * the offload processers, so make the chip do the pseudo-
7699 * header checksums on receive. For transmit it is more
7700 * convenient to do the pseudo-header checksum in software
7701 * as Linux does that on transmit for us in all cases.
7702 */
7703 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704
7705 tw32(GRC_MODE,
7706 tp->grc_mode |
7707 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
7708
7709 /* Setup the timer prescalar register. Clock is always 66Mhz. */
7710 val = tr32(GRC_MISC_CFG);
7711 val &= ~0xff;
7712 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
7713 tw32(GRC_MISC_CFG, val);
7714
7715 /* Initialize MBUF/DESC pool. */
John W. Linvillecbf46852005-04-21 17:01:29 -07007716 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007717 /* Do nothing. */
7718 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
7719 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
7720 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
7721 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
7722 else
7723 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
7724 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
7725 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
7726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007727 else if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
7728 int fw_len;
7729
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007730 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007731 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
7732 tw32(BUFMGR_MB_POOL_ADDR,
7733 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
7734 tw32(BUFMGR_MB_POOL_SIZE,
7735 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
7736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007737
Michael Chan0f893dc2005-07-25 12:30:38 -07007738 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739 tw32(BUFMGR_MB_RDMA_LOW_WATER,
7740 tp->bufmgr_config.mbuf_read_dma_low_water);
7741 tw32(BUFMGR_MB_MACRX_LOW_WATER,
7742 tp->bufmgr_config.mbuf_mac_rx_low_water);
7743 tw32(BUFMGR_MB_HIGH_WATER,
7744 tp->bufmgr_config.mbuf_high_water);
7745 } else {
7746 tw32(BUFMGR_MB_RDMA_LOW_WATER,
7747 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
7748 tw32(BUFMGR_MB_MACRX_LOW_WATER,
7749 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
7750 tw32(BUFMGR_MB_HIGH_WATER,
7751 tp->bufmgr_config.mbuf_high_water_jumbo);
7752 }
7753 tw32(BUFMGR_DMA_LOW_WATER,
7754 tp->bufmgr_config.dma_low_water);
7755 tw32(BUFMGR_DMA_HIGH_WATER,
7756 tp->bufmgr_config.dma_high_water);
7757
7758 tw32(BUFMGR_MODE, BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE);
7759 for (i = 0; i < 2000; i++) {
7760 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
7761 break;
7762 udelay(10);
7763 }
7764 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00007765 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766 return -ENODEV;
7767 }
7768
7769 /* Setup replenish threshold. */
Michael Chanf92905d2006-06-29 20:14:29 -07007770 val = tp->rx_pending / 8;
7771 if (val == 0)
7772 val = 1;
7773 else if (val > tp->rx_std_max_post)
7774 val = tp->rx_std_max_post;
Michael Chanb5d37722006-09-27 16:06:21 -07007775 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7776 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
7777 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
7778
7779 if (val > (TG3_RX_INTERNAL_RING_SZ_5906 / 2))
7780 val = TG3_RX_INTERNAL_RING_SZ_5906 / 2;
7781 }
Michael Chanf92905d2006-06-29 20:14:29 -07007782
7783 tw32(RCVBDI_STD_THRESH, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784
7785 /* Initialize TG3_BDINFO's at:
7786 * RCVDBDI_STD_BD: standard eth size rx ring
7787 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
7788 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
7789 *
7790 * like so:
7791 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
7792 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
7793 * ring attribute flags
7794 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
7795 *
7796 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
7797 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
7798 *
7799 * The size of each ring is fixed in the firmware, but the location is
7800 * configurable.
7801 */
7802 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00007803 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007804 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00007805 ((u64) tpr->rx_std_mapping & 0xffffffff));
Matt Carlson13fa95b02010-01-12 10:11:36 +00007806 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
Matt Carlson87668d32009-11-13 13:03:34 +00007807 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
7808 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007810 /* Disable the mini ring */
7811 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
7813 BDINFO_FLAGS_DISABLED);
7814
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007815 /* Program the jumbo buffer descriptor ring control
7816 * blocks on those devices that have them.
7817 */
Matt Carlson8f666b02009-08-28 13:58:24 +00007818 if ((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) &&
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007819 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820 /* Setup replenish threshold. */
7821 tw32(RCVBDI_JUMBO_THRESH, tp->rx_jumbo_pending / 8);
7822
Michael Chan0f893dc2005-07-25 12:30:38 -07007823 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00007825 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00007827 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007828 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlson79ed5ac2009-08-28 14:00:55 +00007829 (RX_JUMBO_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT) |
7830 BDINFO_FLAGS_USE_EXT_RECV);
Matt Carlson5fd68fb2010-01-20 16:58:07 +00007831 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
Matt Carlson87668d32009-11-13 13:03:34 +00007832 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
7833 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007834 } else {
7835 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
7836 BDINFO_FLAGS_DISABLED);
7837 }
7838
Matt Carlsonb703df62009-12-03 08:36:21 +00007839 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
7840 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007841 val = (RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT) |
7842 (RX_STD_MAX_SIZE << 2);
7843 else
7844 val = RX_STD_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007845 } else
7846 val = RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT;
7847
7848 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849
Matt Carlson411da642009-11-13 13:03:46 +00007850 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00007851 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007852
Matt Carlson411da642009-11-13 13:03:46 +00007853 tpr->rx_jmb_prod_idx = (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) ?
Matt Carlson21f581a2009-08-28 14:00:25 +00007854 tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00007855 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007856
Matt Carlsonb703df62009-12-03 08:36:21 +00007857 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
7858 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007859 tw32(STD_REPLENISH_LWM, 32);
7860 tw32(JMB_REPLENISH_LWM, 16);
7861 }
7862
Matt Carlson2d31eca2009-09-01 12:53:31 +00007863 tg3_rings_reset(tp);
7864
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07007866 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007867
7868 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00007869 tw32(MAC_RX_MTU_SIZE,
7870 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871
7872 /* The slot time is changed by tg3_setup_phy if we
7873 * run at gigabit with half duplex.
7874 */
7875 tw32(MAC_TX_LENGTHS,
7876 (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
7877 (6 << TX_LENGTHS_IPG_SHIFT) |
7878 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
7879
7880 /* Receive rules. */
7881 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
7882 tw32(RCVLPC_CONFIG, 0x0181);
7883
7884 /* Calculate RDMAC_MODE setting early, we need it to determine
7885 * the RCVLPC_STATE_ENABLE mask.
7886 */
7887 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
7888 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
7889 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
7890 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
7891 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07007892
Matt Carlson0339e4e2010-02-12 14:47:09 +00007893 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
7894 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
7895
Matt Carlson57e69832008-05-25 23:48:31 -07007896 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08007897 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
7898 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07007899 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
7900 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
7901 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
7902
Michael Chan85e94ce2005-04-21 17:05:28 -07007903 /* If statement applies to 5705 and 5750 PCI devices only */
7904 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
7905 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
7906 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007907 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07007908 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007909 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
7910 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
7911 !(tp->tg3_flags2 & TG3_FLG2_IS_5788)) {
7912 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
7913 }
7914 }
7915
Michael Chan85e94ce2005-04-21 17:05:28 -07007916 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
7917 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
7918
Linus Torvalds1da177e2005-04-16 15:20:36 -07007919 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
Matt Carlson027455a2008-12-21 20:19:30 -08007920 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
7921
Matt Carlsone849cdc2009-11-13 13:03:38 +00007922 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
7923 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08007924 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
7925 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926
7927 /* Receive/send statistics. */
Michael Chan16613942006-06-29 20:15:13 -07007928 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
7929 val = tr32(RCVLPC_STATS_ENABLE);
7930 val &= ~RCVLPC_STATSENAB_DACK_FIX;
7931 tw32(RCVLPC_STATS_ENABLE, val);
7932 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
7933 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007934 val = tr32(RCVLPC_STATS_ENABLE);
7935 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
7936 tw32(RCVLPC_STATS_ENABLE, val);
7937 } else {
7938 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
7939 }
7940 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
7941 tw32(SNDDATAI_STATSENAB, 0xffffff);
7942 tw32(SNDDATAI_STATSCTRL,
7943 (SNDDATAI_SCTRL_ENABLE |
7944 SNDDATAI_SCTRL_FASTUPD));
7945
7946 /* Setup host coalescing engine. */
7947 tw32(HOSTCC_MODE, 0);
7948 for (i = 0; i < 2000; i++) {
7949 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
7950 break;
7951 udelay(10);
7952 }
7953
Michael Chand244c892005-07-05 14:42:33 -07007954 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007955
Linus Torvalds1da177e2005-04-16 15:20:36 -07007956 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7957 /* Status/statistics block address. See tg3_timer,
7958 * the tg3_periodic_fetch_stats call there, and
7959 * tg3_get_stats to see how this works for 5705/5750 chips.
7960 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7962 ((u64) tp->stats_mapping >> 32));
7963 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7964 ((u64) tp->stats_mapping & 0xffffffff));
7965 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00007966
Linus Torvalds1da177e2005-04-16 15:20:36 -07007967 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00007968
7969 /* Clear statistics and status block memory areas */
7970 for (i = NIC_SRAM_STATS_BLK;
7971 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
7972 i += sizeof(u32)) {
7973 tg3_write_mem(tp, i, 0);
7974 udelay(40);
7975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976 }
7977
7978 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
7979
7980 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
7981 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
7982 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7983 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
7984
Michael Chanc94e3942005-09-27 12:12:42 -07007985 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
7986 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
7987 /* reset to prevent losing 1st rx packet intermittently */
7988 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7989 udelay(10);
7990 }
7991
Matt Carlson3bda1252008-08-15 14:08:22 -07007992 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
7993 tp->mac_mode &= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
7994 else
7995 tp->mac_mode = 0;
7996 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07007998 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
7999 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
8000 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8001 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008002 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8003 udelay(40);
8004
Michael Chan314fba32005-04-21 17:07:04 -07008005 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Michael Chan9d26e212006-12-07 00:21:14 -08008006 * If TG3_FLG2_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008007 * register to preserve the GPIO settings for LOMs. The GPIOs,
8008 * whether used as inputs or outputs, are set by boot code after
8009 * reset.
8010 */
Michael Chan9d26e212006-12-07 00:21:14 -08008011 if (!(tp->tg3_flags2 & TG3_FLG2_IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008012 u32 gpio_mask;
8013
Michael Chan9d26e212006-12-07 00:21:14 -08008014 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8015 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8016 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008017
8018 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8019 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8020 GRC_LCLCTRL_GPIO_OUTPUT3;
8021
Michael Chanaf36e6b2006-03-23 01:28:06 -08008022 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8023 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8024
Gary Zambranoaaf84462007-05-05 11:51:45 -07008025 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008026 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8027
8028 /* GPIO1 must be driven high for eeprom write protect */
Michael Chan9d26e212006-12-07 00:21:14 -08008029 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT)
8030 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8031 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008033 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8034 udelay(100);
8035
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008036 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX) {
8037 val = tr32(MSGINT_MODE);
8038 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
8039 tw32(MSGINT_MODE, val);
8040 }
8041
Linus Torvalds1da177e2005-04-16 15:20:36 -07008042 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
8043 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8044 udelay(40);
8045 }
8046
8047 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8048 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8049 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8050 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8051 WDMAC_MODE_LNGREAD_ENAB);
8052
Michael Chan85e94ce2005-04-21 17:05:28 -07008053 /* If statement applies to 5705 and 5750 PCI devices only */
8054 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8055 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
8056 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) {
Matt Carlson29ea0952009-08-25 10:07:54 +00008057 if ((tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008058 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8059 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8060 /* nothing */
8061 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
8062 !(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
8063 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
8064 val |= WDMAC_MODE_RX_ACCEL;
8065 }
8066 }
8067
Michael Chand9ab5ad2006-03-20 22:27:35 -08008068 /* Enable host coalescing bug fix */
Matt Carlson321d32a2008-11-21 17:22:19 -08008069 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Matt Carlsonf51f3562008-05-25 23:45:08 -07008070 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad2006-03-20 22:27:35 -08008071
Matt Carlson788a0352009-11-02 14:26:03 +00008072 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8073 val |= WDMAC_MODE_BURST_ALL_DATA;
8074
Linus Torvalds1da177e2005-04-16 15:20:36 -07008075 tw32_f(WDMAC_MODE, val);
8076 udelay(40);
8077
Matt Carlson9974a352007-10-07 23:27:28 -07008078 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
8079 u16 pcix_cmd;
8080
8081 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8082 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008083 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008084 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8085 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008086 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008087 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8088 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008089 }
Matt Carlson9974a352007-10-07 23:27:28 -07008090 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8091 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008092 }
8093
8094 tw32_f(RDMAC_MODE, rdmac_mode);
8095 udelay(40);
8096
8097 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
8098 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
8099 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008100
8101 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8102 tw32(SNDDATAC_MODE,
8103 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8104 else
8105 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8106
Linus Torvalds1da177e2005-04-16 15:20:36 -07008107 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8108 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
8109 tw32(RCVDBDI_MODE, RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ);
8110 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008111 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
8112 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008113 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Matt Carlson19cfaec2009-12-03 08:36:20 +00008114 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008115 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8116 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008117 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8118
8119 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8120 err = tg3_load_5701_a0_firmware_fix(tp);
8121 if (err)
8122 return err;
8123 }
8124
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
8126 err = tg3_load_tso_firmware(tp);
8127 if (err)
8128 return err;
8129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008130
8131 tp->tx_mode = TX_MODE_ENABLE;
8132 tw32_f(MAC_TX_MODE, tp->tx_mode);
8133 udelay(100);
8134
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008135 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS) {
8136 u32 reg = MAC_RSS_INDIR_TBL_0;
8137 u8 *ent = (u8 *)&val;
8138
8139 /* Setup the indirection table */
8140 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8141 int idx = i % sizeof(val);
8142
8143 ent[idx] = i % (tp->irq_cnt - 1);
8144 if (idx == sizeof(val) - 1) {
8145 tw32(reg, val);
8146 reg += 4;
8147 }
8148 }
8149
8150 /* Setup the "secret" hash key. */
8151 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8152 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8153 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8154 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8155 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8156 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8157 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8158 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8159 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8160 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8161 }
8162
Linus Torvalds1da177e2005-04-16 15:20:36 -07008163 tp->rx_mode = RX_MODE_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08008164 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Michael Chanaf36e6b2006-03-23 01:28:06 -08008165 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8166
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008167 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS)
8168 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8169 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8170 RX_MODE_RSS_IPV6_HASH_EN |
8171 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8172 RX_MODE_RSS_IPV4_HASH_EN |
8173 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8174
Linus Torvalds1da177e2005-04-16 15:20:36 -07008175 tw32_f(MAC_RX_MODE, tp->rx_mode);
8176 udelay(10);
8177
Linus Torvalds1da177e2005-04-16 15:20:36 -07008178 tw32(MAC_LED_CTRL, tp->led_ctrl);
8179
8180 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Michael Chanc94e3942005-09-27 12:12:42 -07008181 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008182 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8183 udelay(10);
8184 }
8185 tw32_f(MAC_RX_MODE, tp->rx_mode);
8186 udelay(10);
8187
8188 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
8189 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
8190 !(tp->tg3_flags2 & TG3_FLG2_SERDES_PREEMPHASIS)) {
8191 /* Set drive transmission level to 1.2V */
8192 /* only if the signal pre-emphasis bit is not set */
8193 val = tr32(MAC_SERDES_CFG);
8194 val &= 0xfffff000;
8195 val |= 0x880;
8196 tw32(MAC_SERDES_CFG, val);
8197 }
8198 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8199 tw32(MAC_SERDES_CFG, 0x616000);
8200 }
8201
8202 /* Prevent chip from dropping frames when flow control
8203 * is enabled.
8204 */
Matt Carlson666bc832010-01-20 16:58:03 +00008205 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8206 val = 1;
8207 else
8208 val = 2;
8209 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210
8211 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
8212 (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
8213 /* Use hardware link auto-negotiation */
8214 tp->tg3_flags2 |= TG3_FLG2_HW_AUTONEG;
8215 }
8216
Michael Chand4d2c552006-03-20 17:47:20 -08008217 if ((tp->tg3_flags2 & TG3_FLG2_MII_SERDES) &&
8218 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
8219 u32 tmp;
8220
8221 tmp = tr32(SERDES_RX_CTRL);
8222 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
8223 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
8224 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
8225 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8226 }
8227
Matt Carlsondd477002008-05-25 23:45:58 -07008228 if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
8229 if (tp->link_config.phy_is_low_power) {
8230 tp->link_config.phy_is_low_power = 0;
8231 tp->link_config.speed = tp->link_config.orig_speed;
8232 tp->link_config.duplex = tp->link_config.orig_duplex;
8233 tp->link_config.autoneg = tp->link_config.orig_autoneg;
8234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008235
Matt Carlsondd477002008-05-25 23:45:58 -07008236 err = tg3_setup_phy(tp, 0);
8237 if (err)
8238 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008239
Matt Carlsondd477002008-05-25 23:45:58 -07008240 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
Matt Carlson7f97a4b2009-08-25 10:10:03 +00008241 !(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07008242 u32 tmp;
8243
8244 /* Clear CRC stats. */
8245 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
8246 tg3_writephy(tp, MII_TG3_TEST1,
8247 tmp | MII_TG3_TEST1_CRC_EN);
8248 tg3_readphy(tp, 0x14, &tmp);
8249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008250 }
8251 }
8252
8253 __tg3_set_rx_mode(tp->dev);
8254
8255 /* Initialize receive rules. */
8256 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
8257 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
8258 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
8259 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
8260
Michael Chan4cf78e42005-07-25 12:29:19 -07008261 if ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
Michael Chana4e2b342005-10-26 15:46:52 -07008262 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263 limit = 8;
8264 else
8265 limit = 16;
8266 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
8267 limit -= 4;
8268 switch (limit) {
8269 case 16:
8270 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
8271 case 15:
8272 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
8273 case 14:
8274 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
8275 case 13:
8276 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
8277 case 12:
8278 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
8279 case 11:
8280 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
8281 case 10:
8282 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
8283 case 9:
8284 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
8285 case 8:
8286 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
8287 case 7:
8288 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
8289 case 6:
8290 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
8291 case 5:
8292 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
8293 case 4:
8294 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
8295 case 3:
8296 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
8297 case 2:
8298 case 1:
8299
8300 default:
8301 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008303
Matt Carlson9ce768e2007-10-11 19:49:11 -07008304 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
8305 /* Write our heartbeat update interval to APE. */
8306 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
8307 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07008308
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
8310
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311 return 0;
8312}
8313
8314/* Called at device open time to get the chip ready for
8315 * packet processing. Invoked with tp->lock held.
8316 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008317static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008319 tg3_switch_clocks(tp);
8320
8321 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
8322
Matt Carlson2f751b62008-08-04 23:17:34 -07008323 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324}
8325
8326#define TG3_STAT_ADD32(PSTAT, REG) \
8327do { u32 __val = tr32(REG); \
8328 (PSTAT)->low += __val; \
8329 if ((PSTAT)->low < __val) \
8330 (PSTAT)->high += 1; \
8331} while (0)
8332
8333static void tg3_periodic_fetch_stats(struct tg3 *tp)
8334{
8335 struct tg3_hw_stats *sp = tp->hw_stats;
8336
8337 if (!netif_carrier_ok(tp->dev))
8338 return;
8339
8340 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
8341 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
8342 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
8343 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
8344 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
8345 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
8346 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
8347 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
8348 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
8349 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
8350 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
8351 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
8352 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
8353
8354 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
8355 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
8356 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
8357 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
8358 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
8359 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
8360 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
8361 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
8362 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
8363 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
8364 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
8365 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
8366 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
8367 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07008368
8369 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
8370 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
8371 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008372}
8373
8374static void tg3_timer(unsigned long __opaque)
8375{
8376 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008377
Michael Chanf475f162006-03-27 23:20:14 -08008378 if (tp->irq_sync)
8379 goto restart_timer;
8380
David S. Millerf47c11e2005-06-24 20:18:35 -07008381 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008382
David S. Millerfac9b832005-05-18 22:46:34 -07008383 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
8384 /* All of this garbage is because when using non-tagged
8385 * IRQ status the mailbox/status_block protocol the chip
8386 * uses with the cpu is race prone.
8387 */
Matt Carlson898a56f2009-08-28 14:02:40 +00008388 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07008389 tw32(GRC_LOCAL_CTRL,
8390 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
8391 } else {
8392 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008393 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07008394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008395
David S. Millerfac9b832005-05-18 22:46:34 -07008396 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
8397 tp->tg3_flags2 |= TG3_FLG2_RESTART_TIMER;
David S. Millerf47c11e2005-06-24 20:18:35 -07008398 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07008399 schedule_work(&tp->reset_task);
8400 return;
8401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008402 }
8403
Linus Torvalds1da177e2005-04-16 15:20:36 -07008404 /* This part only runs once per second. */
8405 if (!--tp->timer_counter) {
David S. Millerfac9b832005-05-18 22:46:34 -07008406 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
8407 tg3_periodic_fetch_stats(tp);
8408
Linus Torvalds1da177e2005-04-16 15:20:36 -07008409 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
8410 u32 mac_stat;
8411 int phy_event;
8412
8413 mac_stat = tr32(MAC_STATUS);
8414
8415 phy_event = 0;
8416 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) {
8417 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
8418 phy_event = 1;
8419 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
8420 phy_event = 1;
8421
8422 if (phy_event)
8423 tg3_setup_phy(tp, 0);
8424 } else if (tp->tg3_flags & TG3_FLAG_POLL_SERDES) {
8425 u32 mac_stat = tr32(MAC_STATUS);
8426 int need_setup = 0;
8427
8428 if (netif_carrier_ok(tp->dev) &&
8429 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
8430 need_setup = 1;
8431 }
8432 if (! netif_carrier_ok(tp->dev) &&
8433 (mac_stat & (MAC_STATUS_PCS_SYNCED |
8434 MAC_STATUS_SIGNAL_DET))) {
8435 need_setup = 1;
8436 }
8437 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07008438 if (!tp->serdes_counter) {
8439 tw32_f(MAC_MODE,
8440 (tp->mac_mode &
8441 ~MAC_MODE_PORT_MODE_MASK));
8442 udelay(40);
8443 tw32_f(MAC_MODE, tp->mac_mode);
8444 udelay(40);
8445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008446 tg3_setup_phy(tp, 0);
8447 }
Michael Chan747e8f82005-07-25 12:33:22 -07008448 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
8449 tg3_serdes_parallel_detect(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450
8451 tp->timer_counter = tp->timer_multiplier;
8452 }
8453
Michael Chan130b8e42006-09-27 16:00:40 -07008454 /* Heartbeat is only sent once every 2 seconds.
8455 *
8456 * The heartbeat is to tell the ASF firmware that the host
8457 * driver is still alive. In the event that the OS crashes,
8458 * ASF needs to reset the hardware to free up the FIFO space
8459 * that may be filled with rx packets destined for the host.
8460 * If the FIFO is full, ASF will no longer function properly.
8461 *
8462 * Unintended resets have been reported on real time kernels
8463 * where the timer doesn't run on time. Netpoll will also have
8464 * same problem.
8465 *
8466 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
8467 * to check the ring condition when the heartbeat is expiring
8468 * before doing the reset. This will prevent most unintended
8469 * resets.
8470 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008471 if (!--tp->asf_counter) {
Matt Carlsonbc7959b2008-08-15 14:08:55 -07008472 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
8473 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07008474 tg3_wait_for_event_ack(tp);
8475
Michael Chanbbadf502006-04-06 21:46:34 -07008476 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07008477 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07008478 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Michael Chan28fbef72005-10-26 15:48:35 -07008479 /* 5 seconds timeout */
Michael Chanbbadf502006-04-06 21:46:34 -07008480 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, 5);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008481
8482 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483 }
8484 tp->asf_counter = tp->asf_multiplier;
8485 }
8486
David S. Millerf47c11e2005-06-24 20:18:35 -07008487 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008488
Michael Chanf475f162006-03-27 23:20:14 -08008489restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490 tp->timer.expires = jiffies + tp->timer_offset;
8491 add_timer(&tp->timer);
8492}
8493
Matt Carlson4f125f42009-09-01 12:55:02 +00008494static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08008495{
David Howells7d12e782006-10-05 14:55:46 +01008496 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008497 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00008498 char *name;
8499 struct tg3_napi *tnapi = &tp->napi[irq_num];
8500
8501 if (tp->irq_cnt == 1)
8502 name = tp->dev->name;
8503 else {
8504 name = &tnapi->irq_lbl[0];
8505 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
8506 name[IFNAMSIZ-1] = 0;
8507 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008508
Matt Carlson679563f2009-09-01 12:55:46 +00008509 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI_OR_MSIX) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08008510 fn = tg3_msi;
8511 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
8512 fn = tg3_msi_1shot;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07008513 flags = IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008514 } else {
8515 fn = tg3_interrupt;
8516 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
8517 fn = tg3_interrupt_tagged;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07008518 flags = IRQF_SHARED | IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008519 }
Matt Carlson4f125f42009-09-01 12:55:02 +00008520
8521 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008522}
8523
Michael Chan79381092005-04-21 17:13:59 -07008524static int tg3_test_interrupt(struct tg3 *tp)
8525{
Matt Carlson09943a12009-08-28 14:01:57 +00008526 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07008527 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07008528 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008529 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07008530
Michael Chand4bc3922005-05-29 14:59:20 -07008531 if (!netif_running(dev))
8532 return -ENODEV;
8533
Michael Chan79381092005-04-21 17:13:59 -07008534 tg3_disable_ints(tp);
8535
Matt Carlson4f125f42009-09-01 12:55:02 +00008536 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008537
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008538 /*
8539 * Turn off MSI one shot mode. Otherwise this test has no
8540 * observable way to know whether the interrupt was delivered.
8541 */
Matt Carlsonb703df62009-12-03 08:36:21 +00008542 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8543 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008544 (tp->tg3_flags2 & TG3_FLG2_USING_MSI)) {
8545 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
8546 tw32(MSGINT_MODE, val);
8547 }
8548
Matt Carlson4f125f42009-09-01 12:55:02 +00008549 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00008550 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008551 if (err)
8552 return err;
8553
Matt Carlson898a56f2009-08-28 14:02:40 +00008554 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07008555 tg3_enable_ints(tp);
8556
8557 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008558 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07008559
8560 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07008561 u32 int_mbox, misc_host_ctrl;
8562
Matt Carlson898a56f2009-08-28 14:02:40 +00008563 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07008564 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
8565
8566 if ((int_mbox != 0) ||
8567 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
8568 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07008569 break;
Michael Chanb16250e2006-09-27 16:10:14 -07008570 }
8571
Michael Chan79381092005-04-21 17:13:59 -07008572 msleep(10);
8573 }
8574
8575 tg3_disable_ints(tp);
8576
Matt Carlson4f125f42009-09-01 12:55:02 +00008577 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008578
Matt Carlson4f125f42009-09-01 12:55:02 +00008579 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07008580
8581 if (err)
8582 return err;
8583
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008584 if (intr_ok) {
8585 /* Reenable MSI one shot mode. */
Matt Carlsonb703df62009-12-03 08:36:21 +00008586 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8587 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008588 (tp->tg3_flags2 & TG3_FLG2_USING_MSI)) {
8589 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
8590 tw32(MSGINT_MODE, val);
8591 }
Michael Chan79381092005-04-21 17:13:59 -07008592 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008593 }
Michael Chan79381092005-04-21 17:13:59 -07008594
8595 return -EIO;
8596}
8597
8598/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
8599 * successfully restored
8600 */
8601static int tg3_test_msi(struct tg3 *tp)
8602{
Michael Chan79381092005-04-21 17:13:59 -07008603 int err;
8604 u16 pci_cmd;
8605
8606 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSI))
8607 return 0;
8608
8609 /* Turn off SERR reporting in case MSI terminates with Master
8610 * Abort.
8611 */
8612 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
8613 pci_write_config_word(tp->pdev, PCI_COMMAND,
8614 pci_cmd & ~PCI_COMMAND_SERR);
8615
8616 err = tg3_test_interrupt(tp);
8617
8618 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
8619
8620 if (!err)
8621 return 0;
8622
8623 /* other failures */
8624 if (err != -EIO)
8625 return err;
8626
8627 /* MSI test failed, go back to INTx mode */
Joe Perches05dbe002010-02-17 19:44:19 +00008628 netdev_warn(tp->dev, "No interrupt was generated using MSI, switching to INTx mode\n"
8629 "Please report this failure to the PCI maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07008630
Matt Carlson4f125f42009-09-01 12:55:02 +00008631 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00008632
Michael Chan79381092005-04-21 17:13:59 -07008633 pci_disable_msi(tp->pdev);
8634
8635 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
8636
Matt Carlson4f125f42009-09-01 12:55:02 +00008637 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07008638 if (err)
8639 return err;
8640
8641 /* Need to reset the chip because the MSI cycle may have terminated
8642 * with Master Abort.
8643 */
David S. Millerf47c11e2005-06-24 20:18:35 -07008644 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07008645
Michael Chan944d9802005-05-29 14:57:48 -07008646 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008647 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07008648
David S. Millerf47c11e2005-06-24 20:18:35 -07008649 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07008650
8651 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00008652 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07008653
8654 return err;
8655}
8656
Matt Carlson9e9fd122009-01-19 16:57:45 -08008657static int tg3_request_firmware(struct tg3 *tp)
8658{
8659 const __be32 *fw_data;
8660
8661 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00008662 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
8663 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08008664 return -ENOENT;
8665 }
8666
8667 fw_data = (void *)tp->fw->data;
8668
8669 /* Firmware blob starts with version numbers, followed by
8670 * start address and _full_ length including BSS sections
8671 * (which must be longer than the actual data, of course
8672 */
8673
8674 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
8675 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00008676 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
8677 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08008678 release_firmware(tp->fw);
8679 tp->fw = NULL;
8680 return -EINVAL;
8681 }
8682
8683 /* We no longer need firmware; we have it. */
8684 tp->fw_needed = NULL;
8685 return 0;
8686}
8687
Matt Carlson679563f2009-09-01 12:55:46 +00008688static bool tg3_enable_msix(struct tg3 *tp)
8689{
8690 int i, rc, cpus = num_online_cpus();
8691 struct msix_entry msix_ent[tp->irq_max];
8692
8693 if (cpus == 1)
8694 /* Just fallback to the simpler MSI mode. */
8695 return false;
8696
8697 /*
8698 * We want as many rx rings enabled as there are cpus.
8699 * The first MSIX vector only deals with link interrupts, etc,
8700 * so we add one to the number of vectors we are requesting.
8701 */
8702 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
8703
8704 for (i = 0; i < tp->irq_max; i++) {
8705 msix_ent[i].entry = i;
8706 msix_ent[i].vector = 0;
8707 }
8708
8709 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
8710 if (rc != 0) {
8711 if (rc < TG3_RSS_MIN_NUM_MSIX_VECS)
8712 return false;
8713 if (pci_enable_msix(tp->pdev, msix_ent, rc))
8714 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00008715 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
8716 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00008717 tp->irq_cnt = rc;
8718 }
8719
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008720 tp->tg3_flags3 |= TG3_FLG3_ENABLE_RSS;
8721
Matt Carlson679563f2009-09-01 12:55:46 +00008722 for (i = 0; i < tp->irq_max; i++)
8723 tp->napi[i].irq_vec = msix_ent[i].vector;
8724
Matt Carlson19cfaec2009-12-03 08:36:20 +00008725 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
8726 tp->tg3_flags3 |= TG3_FLG3_ENABLE_TSS;
8727 tp->dev->real_num_tx_queues = tp->irq_cnt - 1;
8728 } else
8729 tp->dev->real_num_tx_queues = 1;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008730
Matt Carlson679563f2009-09-01 12:55:46 +00008731 return true;
8732}
8733
Matt Carlson07b01732009-08-28 14:01:15 +00008734static void tg3_ints_init(struct tg3 *tp)
8735{
Matt Carlson679563f2009-09-01 12:55:46 +00008736 if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSI_OR_MSIX) &&
8737 !(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00008738 /* All MSI supporting chips should support tagged
8739 * status. Assert that this is the case.
8740 */
Joe Perches05dbe002010-02-17 19:44:19 +00008741 netdev_warn(tp->dev, "MSI without TAGGED? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00008742 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00008743 }
Matt Carlson4f125f42009-09-01 12:55:02 +00008744
Matt Carlson679563f2009-09-01 12:55:46 +00008745 if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX) && tg3_enable_msix(tp))
8746 tp->tg3_flags2 |= TG3_FLG2_USING_MSIX;
8747 else if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSI) &&
8748 pci_enable_msi(tp->pdev) == 0)
8749 tp->tg3_flags2 |= TG3_FLG2_USING_MSI;
8750
8751 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI_OR_MSIX) {
8752 u32 msi_mode = tr32(MSGINT_MODE);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008753 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
8754 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson679563f2009-09-01 12:55:46 +00008755 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
8756 }
8757defcfg:
8758 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSIX)) {
8759 tp->irq_cnt = 1;
8760 tp->napi[0].irq_vec = tp->pdev->irq;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008761 tp->dev->real_num_tx_queues = 1;
Matt Carlson679563f2009-09-01 12:55:46 +00008762 }
Matt Carlson07b01732009-08-28 14:01:15 +00008763}
8764
8765static void tg3_ints_fini(struct tg3 *tp)
8766{
Matt Carlson679563f2009-09-01 12:55:46 +00008767 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
8768 pci_disable_msix(tp->pdev);
8769 else if (tp->tg3_flags2 & TG3_FLG2_USING_MSI)
8770 pci_disable_msi(tp->pdev);
8771 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI_OR_MSIX;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008772 tp->tg3_flags3 &= ~TG3_FLG3_ENABLE_RSS;
Matt Carlson07b01732009-08-28 14:01:15 +00008773}
8774
Linus Torvalds1da177e2005-04-16 15:20:36 -07008775static int tg3_open(struct net_device *dev)
8776{
8777 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00008778 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008779
Matt Carlson9e9fd122009-01-19 16:57:45 -08008780 if (tp->fw_needed) {
8781 err = tg3_request_firmware(tp);
8782 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8783 if (err)
8784 return err;
8785 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00008786 netdev_warn(tp->dev, "TSO capability disabled\n");
Matt Carlson9e9fd122009-01-19 16:57:45 -08008787 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
8788 } else if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00008789 netdev_notice(tp->dev, "TSO capability restored\n");
Matt Carlson9e9fd122009-01-19 16:57:45 -08008790 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
8791 }
8792 }
8793
Michael Chanc49a1562006-12-17 17:07:29 -08008794 netif_carrier_off(tp->dev);
8795
Michael Chanbc1c7562006-03-20 17:48:03 -08008796 err = tg3_set_power_state(tp, PCI_D0);
Matt Carlson2f751b62008-08-04 23:17:34 -07008797 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08008798 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07008799
8800 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08008801
Linus Torvalds1da177e2005-04-16 15:20:36 -07008802 tg3_disable_ints(tp);
8803 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
8804
David S. Millerf47c11e2005-06-24 20:18:35 -07008805 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008806
Matt Carlson679563f2009-09-01 12:55:46 +00008807 /*
8808 * Setup interrupts first so we know how
8809 * many NAPI resources to allocate
8810 */
8811 tg3_ints_init(tp);
8812
Linus Torvalds1da177e2005-04-16 15:20:36 -07008813 /* The placement of this call is tied
8814 * to the setup and use of Host TX descriptors.
8815 */
8816 err = tg3_alloc_consistent(tp);
8817 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008818 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008819
Matt Carlsonfed97812009-09-01 13:10:19 +00008820 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07008821
Matt Carlson4f125f42009-09-01 12:55:02 +00008822 for (i = 0; i < tp->irq_cnt; i++) {
8823 struct tg3_napi *tnapi = &tp->napi[i];
8824 err = tg3_request_irq(tp, i);
8825 if (err) {
8826 for (i--; i >= 0; i--)
8827 free_irq(tnapi->irq_vec, tnapi);
8828 break;
8829 }
8830 }
Matt Carlson07b01732009-08-28 14:01:15 +00008831
8832 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008833 goto err_out2;
Matt Carlson07b01732009-08-28 14:01:15 +00008834
David S. Millerf47c11e2005-06-24 20:18:35 -07008835 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008836
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008837 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008838 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07008839 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008840 tg3_free_rings(tp);
8841 } else {
David S. Millerfac9b832005-05-18 22:46:34 -07008842 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
8843 tp->timer_offset = HZ;
8844 else
8845 tp->timer_offset = HZ / 10;
8846
8847 BUG_ON(tp->timer_offset > HZ);
8848 tp->timer_counter = tp->timer_multiplier =
8849 (HZ / tp->timer_offset);
8850 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07008851 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008852
8853 init_timer(&tp->timer);
8854 tp->timer.expires = jiffies + tp->timer_offset;
8855 tp->timer.data = (unsigned long) tp;
8856 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008857 }
8858
David S. Millerf47c11e2005-06-24 20:18:35 -07008859 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008860
Matt Carlson07b01732009-08-28 14:01:15 +00008861 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008862 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008863
Michael Chan79381092005-04-21 17:13:59 -07008864 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
8865 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07008866
Michael Chan79381092005-04-21 17:13:59 -07008867 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07008868 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07008869 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07008870 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07008871 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07008872
Matt Carlson679563f2009-09-01 12:55:46 +00008873 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07008874 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008875
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008876 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
Matt Carlsonb703df62009-12-03 08:36:21 +00008877 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008878 (tp->tg3_flags2 & TG3_FLG2_USING_MSI) &&
8879 (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)) {
8880 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008881
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008882 tw32(PCIE_TRANSACTION_CFG,
8883 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008884 }
Michael Chan79381092005-04-21 17:13:59 -07008885 }
8886
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07008887 tg3_phy_start(tp);
8888
David S. Millerf47c11e2005-06-24 20:18:35 -07008889 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008890
Michael Chan79381092005-04-21 17:13:59 -07008891 add_timer(&tp->timer);
8892 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008893 tg3_enable_ints(tp);
8894
David S. Millerf47c11e2005-06-24 20:18:35 -07008895 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008897 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008898
8899 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00008900
Matt Carlson679563f2009-09-01 12:55:46 +00008901err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00008902 for (i = tp->irq_cnt - 1; i >= 0; i--) {
8903 struct tg3_napi *tnapi = &tp->napi[i];
8904 free_irq(tnapi->irq_vec, tnapi);
8905 }
Matt Carlson07b01732009-08-28 14:01:15 +00008906
Matt Carlson679563f2009-09-01 12:55:46 +00008907err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00008908 tg3_napi_disable(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00008909 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00008910
8911err_out1:
8912 tg3_ints_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00008913 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008914}
8915
8916#if 0
8917/*static*/ void tg3_dump_state(struct tg3 *tp)
8918{
8919 u32 val32, val32_2, val32_3, val32_4, val32_5;
8920 u16 val16;
8921 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008922 struct tg3_hw_status *sblk = tp->napi[0]->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008923
8924 pci_read_config_word(tp->pdev, PCI_STATUS, &val16);
8925 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE, &val32);
8926 printk("DEBUG: PCI status [%04x] TG3PCI state[%08x]\n",
8927 val16, val32);
8928
8929 /* MAC block */
8930 printk("DEBUG: MAC_MODE[%08x] MAC_STATUS[%08x]\n",
8931 tr32(MAC_MODE), tr32(MAC_STATUS));
8932 printk(" MAC_EVENT[%08x] MAC_LED_CTRL[%08x]\n",
8933 tr32(MAC_EVENT), tr32(MAC_LED_CTRL));
8934 printk("DEBUG: MAC_TX_MODE[%08x] MAC_TX_STATUS[%08x]\n",
8935 tr32(MAC_TX_MODE), tr32(MAC_TX_STATUS));
8936 printk(" MAC_RX_MODE[%08x] MAC_RX_STATUS[%08x]\n",
8937 tr32(MAC_RX_MODE), tr32(MAC_RX_STATUS));
8938
8939 /* Send data initiator control block */
8940 printk("DEBUG: SNDDATAI_MODE[%08x] SNDDATAI_STATUS[%08x]\n",
8941 tr32(SNDDATAI_MODE), tr32(SNDDATAI_STATUS));
8942 printk(" SNDDATAI_STATSCTRL[%08x]\n",
8943 tr32(SNDDATAI_STATSCTRL));
8944
8945 /* Send data completion control block */
8946 printk("DEBUG: SNDDATAC_MODE[%08x]\n", tr32(SNDDATAC_MODE));
8947
8948 /* Send BD ring selector block */
8949 printk("DEBUG: SNDBDS_MODE[%08x] SNDBDS_STATUS[%08x]\n",
8950 tr32(SNDBDS_MODE), tr32(SNDBDS_STATUS));
8951
8952 /* Send BD initiator control block */
8953 printk("DEBUG: SNDBDI_MODE[%08x] SNDBDI_STATUS[%08x]\n",
8954 tr32(SNDBDI_MODE), tr32(SNDBDI_STATUS));
8955
8956 /* Send BD completion control block */
8957 printk("DEBUG: SNDBDC_MODE[%08x]\n", tr32(SNDBDC_MODE));
8958
8959 /* Receive list placement control block */
8960 printk("DEBUG: RCVLPC_MODE[%08x] RCVLPC_STATUS[%08x]\n",
8961 tr32(RCVLPC_MODE), tr32(RCVLPC_STATUS));
8962 printk(" RCVLPC_STATSCTRL[%08x]\n",
8963 tr32(RCVLPC_STATSCTRL));
8964
8965 /* Receive data and receive BD initiator control block */
8966 printk("DEBUG: RCVDBDI_MODE[%08x] RCVDBDI_STATUS[%08x]\n",
8967 tr32(RCVDBDI_MODE), tr32(RCVDBDI_STATUS));
8968
8969 /* Receive data completion control block */
8970 printk("DEBUG: RCVDCC_MODE[%08x]\n",
8971 tr32(RCVDCC_MODE));
8972
8973 /* Receive BD initiator control block */
8974 printk("DEBUG: RCVBDI_MODE[%08x] RCVBDI_STATUS[%08x]\n",
8975 tr32(RCVBDI_MODE), tr32(RCVBDI_STATUS));
8976
8977 /* Receive BD completion control block */
8978 printk("DEBUG: RCVCC_MODE[%08x] RCVCC_STATUS[%08x]\n",
8979 tr32(RCVCC_MODE), tr32(RCVCC_STATUS));
8980
8981 /* Receive list selector control block */
8982 printk("DEBUG: RCVLSC_MODE[%08x] RCVLSC_STATUS[%08x]\n",
8983 tr32(RCVLSC_MODE), tr32(RCVLSC_STATUS));
8984
8985 /* Mbuf cluster free block */
8986 printk("DEBUG: MBFREE_MODE[%08x] MBFREE_STATUS[%08x]\n",
8987 tr32(MBFREE_MODE), tr32(MBFREE_STATUS));
8988
8989 /* Host coalescing control block */
8990 printk("DEBUG: HOSTCC_MODE[%08x] HOSTCC_STATUS[%08x]\n",
8991 tr32(HOSTCC_MODE), tr32(HOSTCC_STATUS));
8992 printk("DEBUG: HOSTCC_STATS_BLK_HOST_ADDR[%08x%08x]\n",
8993 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
8994 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
8995 printk("DEBUG: HOSTCC_STATUS_BLK_HOST_ADDR[%08x%08x]\n",
8996 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
8997 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
8998 printk("DEBUG: HOSTCC_STATS_BLK_NIC_ADDR[%08x]\n",
8999 tr32(HOSTCC_STATS_BLK_NIC_ADDR));
9000 printk("DEBUG: HOSTCC_STATUS_BLK_NIC_ADDR[%08x]\n",
9001 tr32(HOSTCC_STATUS_BLK_NIC_ADDR));
9002
9003 /* Memory arbiter control block */
9004 printk("DEBUG: MEMARB_MODE[%08x] MEMARB_STATUS[%08x]\n",
9005 tr32(MEMARB_MODE), tr32(MEMARB_STATUS));
9006
9007 /* Buffer manager control block */
9008 printk("DEBUG: BUFMGR_MODE[%08x] BUFMGR_STATUS[%08x]\n",
9009 tr32(BUFMGR_MODE), tr32(BUFMGR_STATUS));
9010 printk("DEBUG: BUFMGR_MB_POOL_ADDR[%08x] BUFMGR_MB_POOL_SIZE[%08x]\n",
9011 tr32(BUFMGR_MB_POOL_ADDR), tr32(BUFMGR_MB_POOL_SIZE));
9012 printk("DEBUG: BUFMGR_DMA_DESC_POOL_ADDR[%08x] "
9013 "BUFMGR_DMA_DESC_POOL_SIZE[%08x]\n",
9014 tr32(BUFMGR_DMA_DESC_POOL_ADDR),
9015 tr32(BUFMGR_DMA_DESC_POOL_SIZE));
9016
9017 /* Read DMA control block */
9018 printk("DEBUG: RDMAC_MODE[%08x] RDMAC_STATUS[%08x]\n",
9019 tr32(RDMAC_MODE), tr32(RDMAC_STATUS));
9020
9021 /* Write DMA control block */
9022 printk("DEBUG: WDMAC_MODE[%08x] WDMAC_STATUS[%08x]\n",
9023 tr32(WDMAC_MODE), tr32(WDMAC_STATUS));
9024
9025 /* DMA completion block */
9026 printk("DEBUG: DMAC_MODE[%08x]\n",
9027 tr32(DMAC_MODE));
9028
9029 /* GRC block */
9030 printk("DEBUG: GRC_MODE[%08x] GRC_MISC_CFG[%08x]\n",
9031 tr32(GRC_MODE), tr32(GRC_MISC_CFG));
9032 printk("DEBUG: GRC_LOCAL_CTRL[%08x]\n",
9033 tr32(GRC_LOCAL_CTRL));
9034
9035 /* TG3_BDINFOs */
9036 printk("DEBUG: RCVDBDI_JUMBO_BD[%08x%08x:%08x:%08x]\n",
9037 tr32(RCVDBDI_JUMBO_BD + 0x0),
9038 tr32(RCVDBDI_JUMBO_BD + 0x4),
9039 tr32(RCVDBDI_JUMBO_BD + 0x8),
9040 tr32(RCVDBDI_JUMBO_BD + 0xc));
9041 printk("DEBUG: RCVDBDI_STD_BD[%08x%08x:%08x:%08x]\n",
9042 tr32(RCVDBDI_STD_BD + 0x0),
9043 tr32(RCVDBDI_STD_BD + 0x4),
9044 tr32(RCVDBDI_STD_BD + 0x8),
9045 tr32(RCVDBDI_STD_BD + 0xc));
9046 printk("DEBUG: RCVDBDI_MINI_BD[%08x%08x:%08x:%08x]\n",
9047 tr32(RCVDBDI_MINI_BD + 0x0),
9048 tr32(RCVDBDI_MINI_BD + 0x4),
9049 tr32(RCVDBDI_MINI_BD + 0x8),
9050 tr32(RCVDBDI_MINI_BD + 0xc));
9051
9052 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x0, &val32);
9053 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x4, &val32_2);
9054 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x8, &val32_3);
9055 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0xc, &val32_4);
9056 printk("DEBUG: SRAM_SEND_RCB_0[%08x%08x:%08x:%08x]\n",
9057 val32, val32_2, val32_3, val32_4);
9058
9059 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x0, &val32);
9060 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x4, &val32_2);
9061 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x8, &val32_3);
9062 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0xc, &val32_4);
9063 printk("DEBUG: SRAM_RCV_RET_RCB_0[%08x%08x:%08x:%08x]\n",
9064 val32, val32_2, val32_3, val32_4);
9065
9066 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x0, &val32);
9067 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x4, &val32_2);
9068 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x8, &val32_3);
9069 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0xc, &val32_4);
9070 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x10, &val32_5);
9071 printk("DEBUG: SRAM_STATUS_BLK[%08x:%08x:%08x:%08x:%08x]\n",
9072 val32, val32_2, val32_3, val32_4, val32_5);
9073
9074 /* SW status block */
Matt Carlson898a56f2009-08-28 14:02:40 +00009075 printk(KERN_DEBUG
9076 "Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
9077 sblk->status,
9078 sblk->status_tag,
9079 sblk->rx_jumbo_consumer,
9080 sblk->rx_consumer,
9081 sblk->rx_mini_consumer,
9082 sblk->idx[0].rx_producer,
9083 sblk->idx[0].tx_consumer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009084
9085 /* SW statistics block */
9086 printk("DEBUG: Host statistics block [%08x:%08x:%08x:%08x]\n",
9087 ((u32 *)tp->hw_stats)[0],
9088 ((u32 *)tp->hw_stats)[1],
9089 ((u32 *)tp->hw_stats)[2],
9090 ((u32 *)tp->hw_stats)[3]);
9091
9092 /* Mailboxes */
9093 printk("DEBUG: SNDHOST_PROD[%08x%08x] SNDNIC_PROD[%08x%08x]\n",
Michael Chan09ee9292005-08-09 20:17:00 -07009094 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x0),
9095 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x4),
9096 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x0),
9097 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x4));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009098
9099 /* NIC side send descriptors. */
9100 for (i = 0; i < 6; i++) {
9101 unsigned long txd;
9102
9103 txd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_TX_BUFFER_DESC
9104 + (i * sizeof(struct tg3_tx_buffer_desc));
9105 printk("DEBUG: NIC TXD(%d)[%08x:%08x:%08x:%08x]\n",
9106 i,
9107 readl(txd + 0x0), readl(txd + 0x4),
9108 readl(txd + 0x8), readl(txd + 0xc));
9109 }
9110
9111 /* NIC side RX descriptors. */
9112 for (i = 0; i < 6; i++) {
9113 unsigned long rxd;
9114
9115 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_BUFFER_DESC
9116 + (i * sizeof(struct tg3_rx_buffer_desc));
9117 printk("DEBUG: NIC RXD_STD(%d)[0][%08x:%08x:%08x:%08x]\n",
9118 i,
9119 readl(rxd + 0x0), readl(rxd + 0x4),
9120 readl(rxd + 0x8), readl(rxd + 0xc));
9121 rxd += (4 * sizeof(u32));
9122 printk("DEBUG: NIC RXD_STD(%d)[1][%08x:%08x:%08x:%08x]\n",
9123 i,
9124 readl(rxd + 0x0), readl(rxd + 0x4),
9125 readl(rxd + 0x8), readl(rxd + 0xc));
9126 }
9127
9128 for (i = 0; i < 6; i++) {
9129 unsigned long rxd;
9130
9131 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_JUMBO_BUFFER_DESC
9132 + (i * sizeof(struct tg3_rx_buffer_desc));
9133 printk("DEBUG: NIC RXD_JUMBO(%d)[0][%08x:%08x:%08x:%08x]\n",
9134 i,
9135 readl(rxd + 0x0), readl(rxd + 0x4),
9136 readl(rxd + 0x8), readl(rxd + 0xc));
9137 rxd += (4 * sizeof(u32));
9138 printk("DEBUG: NIC RXD_JUMBO(%d)[1][%08x:%08x:%08x:%08x]\n",
9139 i,
9140 readl(rxd + 0x0), readl(rxd + 0x4),
9141 readl(rxd + 0x8), readl(rxd + 0xc));
9142 }
9143}
9144#endif
9145
9146static struct net_device_stats *tg3_get_stats(struct net_device *);
9147static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
9148
9149static int tg3_close(struct net_device *dev)
9150{
Matt Carlson4f125f42009-09-01 12:55:02 +00009151 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009152 struct tg3 *tp = netdev_priv(dev);
9153
Matt Carlsonfed97812009-09-01 13:10:19 +00009154 tg3_napi_disable(tp);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07009155 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08009156
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009157 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009158
9159 del_timer_sync(&tp->timer);
9160
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009161 tg3_phy_stop(tp);
9162
David S. Millerf47c11e2005-06-24 20:18:35 -07009163 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009164#if 0
9165 tg3_dump_state(tp);
9166#endif
9167
9168 tg3_disable_ints(tp);
9169
Michael Chan944d9802005-05-29 14:57:48 -07009170 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009171 tg3_free_rings(tp);
Michael Chan5cf64b8a2007-05-05 12:11:21 -07009172 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009173
David S. Millerf47c11e2005-06-24 20:18:35 -07009174 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009175
Matt Carlson4f125f42009-09-01 12:55:02 +00009176 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9177 struct tg3_napi *tnapi = &tp->napi[i];
9178 free_irq(tnapi->irq_vec, tnapi);
9179 }
Matt Carlson07b01732009-08-28 14:01:15 +00009180
9181 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009182
9183 memcpy(&tp->net_stats_prev, tg3_get_stats(tp->dev),
9184 sizeof(tp->net_stats_prev));
9185 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9186 sizeof(tp->estats_prev));
9187
9188 tg3_free_consistent(tp);
9189
Michael Chanbc1c7562006-03-20 17:48:03 -08009190 tg3_set_power_state(tp, PCI_D3hot);
9191
9192 netif_carrier_off(tp->dev);
9193
Linus Torvalds1da177e2005-04-16 15:20:36 -07009194 return 0;
9195}
9196
9197static inline unsigned long get_stat64(tg3_stat64_t *val)
9198{
9199 unsigned long ret;
9200
9201#if (BITS_PER_LONG == 32)
9202 ret = val->low;
9203#else
9204 ret = ((u64)val->high << 32) | ((u64)val->low);
9205#endif
9206 return ret;
9207}
9208
Stefan Buehler816f8b82008-08-15 14:10:54 -07009209static inline u64 get_estat64(tg3_stat64_t *val)
9210{
9211 return ((u64)val->high << 32) | ((u64)val->low);
9212}
9213
Linus Torvalds1da177e2005-04-16 15:20:36 -07009214static unsigned long calc_crc_errors(struct tg3 *tp)
9215{
9216 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9217
9218 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
9219 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9220 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009221 u32 val;
9222
David S. Millerf47c11e2005-06-24 20:18:35 -07009223 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009224 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9225 tg3_writephy(tp, MII_TG3_TEST1,
9226 val | MII_TG3_TEST1_CRC_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009227 tg3_readphy(tp, 0x14, &val);
9228 } else
9229 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009230 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009231
9232 tp->phy_crc_errors += val;
9233
9234 return tp->phy_crc_errors;
9235 }
9236
9237 return get_stat64(&hw_stats->rx_fcs_errors);
9238}
9239
9240#define ESTAT_ADD(member) \
9241 estats->member = old_estats->member + \
Stefan Buehler816f8b82008-08-15 14:10:54 -07009242 get_estat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009243
9244static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9245{
9246 struct tg3_ethtool_stats *estats = &tp->estats;
9247 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9248 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9249
9250 if (!hw_stats)
9251 return old_estats;
9252
9253 ESTAT_ADD(rx_octets);
9254 ESTAT_ADD(rx_fragments);
9255 ESTAT_ADD(rx_ucast_packets);
9256 ESTAT_ADD(rx_mcast_packets);
9257 ESTAT_ADD(rx_bcast_packets);
9258 ESTAT_ADD(rx_fcs_errors);
9259 ESTAT_ADD(rx_align_errors);
9260 ESTAT_ADD(rx_xon_pause_rcvd);
9261 ESTAT_ADD(rx_xoff_pause_rcvd);
9262 ESTAT_ADD(rx_mac_ctrl_rcvd);
9263 ESTAT_ADD(rx_xoff_entered);
9264 ESTAT_ADD(rx_frame_too_long_errors);
9265 ESTAT_ADD(rx_jabbers);
9266 ESTAT_ADD(rx_undersize_packets);
9267 ESTAT_ADD(rx_in_length_errors);
9268 ESTAT_ADD(rx_out_length_errors);
9269 ESTAT_ADD(rx_64_or_less_octet_packets);
9270 ESTAT_ADD(rx_65_to_127_octet_packets);
9271 ESTAT_ADD(rx_128_to_255_octet_packets);
9272 ESTAT_ADD(rx_256_to_511_octet_packets);
9273 ESTAT_ADD(rx_512_to_1023_octet_packets);
9274 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9275 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9276 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9277 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9278 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9279
9280 ESTAT_ADD(tx_octets);
9281 ESTAT_ADD(tx_collisions);
9282 ESTAT_ADD(tx_xon_sent);
9283 ESTAT_ADD(tx_xoff_sent);
9284 ESTAT_ADD(tx_flow_control);
9285 ESTAT_ADD(tx_mac_errors);
9286 ESTAT_ADD(tx_single_collisions);
9287 ESTAT_ADD(tx_mult_collisions);
9288 ESTAT_ADD(tx_deferred);
9289 ESTAT_ADD(tx_excessive_collisions);
9290 ESTAT_ADD(tx_late_collisions);
9291 ESTAT_ADD(tx_collide_2times);
9292 ESTAT_ADD(tx_collide_3times);
9293 ESTAT_ADD(tx_collide_4times);
9294 ESTAT_ADD(tx_collide_5times);
9295 ESTAT_ADD(tx_collide_6times);
9296 ESTAT_ADD(tx_collide_7times);
9297 ESTAT_ADD(tx_collide_8times);
9298 ESTAT_ADD(tx_collide_9times);
9299 ESTAT_ADD(tx_collide_10times);
9300 ESTAT_ADD(tx_collide_11times);
9301 ESTAT_ADD(tx_collide_12times);
9302 ESTAT_ADD(tx_collide_13times);
9303 ESTAT_ADD(tx_collide_14times);
9304 ESTAT_ADD(tx_collide_15times);
9305 ESTAT_ADD(tx_ucast_packets);
9306 ESTAT_ADD(tx_mcast_packets);
9307 ESTAT_ADD(tx_bcast_packets);
9308 ESTAT_ADD(tx_carrier_sense_errors);
9309 ESTAT_ADD(tx_discards);
9310 ESTAT_ADD(tx_errors);
9311
9312 ESTAT_ADD(dma_writeq_full);
9313 ESTAT_ADD(dma_write_prioq_full);
9314 ESTAT_ADD(rxbds_empty);
9315 ESTAT_ADD(rx_discards);
9316 ESTAT_ADD(rx_errors);
9317 ESTAT_ADD(rx_threshold_hit);
9318
9319 ESTAT_ADD(dma_readq_full);
9320 ESTAT_ADD(dma_read_prioq_full);
9321 ESTAT_ADD(tx_comp_queue_full);
9322
9323 ESTAT_ADD(ring_set_send_prod_index);
9324 ESTAT_ADD(ring_status_update);
9325 ESTAT_ADD(nic_irqs);
9326 ESTAT_ADD(nic_avoided_irqs);
9327 ESTAT_ADD(nic_tx_threshold_hit);
9328
9329 return estats;
9330}
9331
9332static struct net_device_stats *tg3_get_stats(struct net_device *dev)
9333{
9334 struct tg3 *tp = netdev_priv(dev);
9335 struct net_device_stats *stats = &tp->net_stats;
9336 struct net_device_stats *old_stats = &tp->net_stats_prev;
9337 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9338
9339 if (!hw_stats)
9340 return old_stats;
9341
9342 stats->rx_packets = old_stats->rx_packets +
9343 get_stat64(&hw_stats->rx_ucast_packets) +
9344 get_stat64(&hw_stats->rx_mcast_packets) +
9345 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009346
Linus Torvalds1da177e2005-04-16 15:20:36 -07009347 stats->tx_packets = old_stats->tx_packets +
9348 get_stat64(&hw_stats->tx_ucast_packets) +
9349 get_stat64(&hw_stats->tx_mcast_packets) +
9350 get_stat64(&hw_stats->tx_bcast_packets);
9351
9352 stats->rx_bytes = old_stats->rx_bytes +
9353 get_stat64(&hw_stats->rx_octets);
9354 stats->tx_bytes = old_stats->tx_bytes +
9355 get_stat64(&hw_stats->tx_octets);
9356
9357 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009358 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009359 stats->tx_errors = old_stats->tx_errors +
9360 get_stat64(&hw_stats->tx_errors) +
9361 get_stat64(&hw_stats->tx_mac_errors) +
9362 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9363 get_stat64(&hw_stats->tx_discards);
9364
9365 stats->multicast = old_stats->multicast +
9366 get_stat64(&hw_stats->rx_mcast_packets);
9367 stats->collisions = old_stats->collisions +
9368 get_stat64(&hw_stats->tx_collisions);
9369
9370 stats->rx_length_errors = old_stats->rx_length_errors +
9371 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9372 get_stat64(&hw_stats->rx_undersize_packets);
9373
9374 stats->rx_over_errors = old_stats->rx_over_errors +
9375 get_stat64(&hw_stats->rxbds_empty);
9376 stats->rx_frame_errors = old_stats->rx_frame_errors +
9377 get_stat64(&hw_stats->rx_align_errors);
9378 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
9379 get_stat64(&hw_stats->tx_discards);
9380 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
9381 get_stat64(&hw_stats->tx_carrier_sense_errors);
9382
9383 stats->rx_crc_errors = old_stats->rx_crc_errors +
9384 calc_crc_errors(tp);
9385
John W. Linville4f63b872005-09-12 14:43:18 -07009386 stats->rx_missed_errors = old_stats->rx_missed_errors +
9387 get_stat64(&hw_stats->rx_discards);
9388
Linus Torvalds1da177e2005-04-16 15:20:36 -07009389 return stats;
9390}
9391
9392static inline u32 calc_crc(unsigned char *buf, int len)
9393{
9394 u32 reg;
9395 u32 tmp;
9396 int j, k;
9397
9398 reg = 0xffffffff;
9399
9400 for (j = 0; j < len; j++) {
9401 reg ^= buf[j];
9402
9403 for (k = 0; k < 8; k++) {
9404 tmp = reg & 0x01;
9405
9406 reg >>= 1;
9407
9408 if (tmp) {
9409 reg ^= 0xedb88320;
9410 }
9411 }
9412 }
9413
9414 return ~reg;
9415}
9416
9417static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9418{
9419 /* accept or reject all multicast frames */
9420 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9421 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9422 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9423 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9424}
9425
9426static void __tg3_set_rx_mode(struct net_device *dev)
9427{
9428 struct tg3 *tp = netdev_priv(dev);
9429 u32 rx_mode;
9430
9431 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9432 RX_MODE_KEEP_VLAN_TAG);
9433
9434 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9435 * flag clear.
9436 */
9437#if TG3_VLAN_TAG_USED
9438 if (!tp->vlgrp &&
9439 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
9440 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9441#else
9442 /* By definition, VLAN is disabled always in this
9443 * case.
9444 */
9445 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
9446 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9447#endif
9448
9449 if (dev->flags & IFF_PROMISC) {
9450 /* Promiscuous mode. */
9451 rx_mode |= RX_MODE_PROMISC;
9452 } else if (dev->flags & IFF_ALLMULTI) {
9453 /* Accept all multicast. */
9454 tg3_set_multi (tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00009455 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009456 /* Reject all multicast. */
9457 tg3_set_multi (tp, 0);
9458 } else {
9459 /* Accept one or more multicast(s). */
Jiri Pirko22bedad32010-04-01 21:22:57 +00009460 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009461 u32 mc_filter[4] = { 0, };
9462 u32 regidx;
9463 u32 bit;
9464 u32 crc;
9465
Jiri Pirko22bedad32010-04-01 21:22:57 +00009466 netdev_for_each_mc_addr(ha, dev) {
9467 crc = calc_crc(ha->addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009468 bit = ~crc & 0x7f;
9469 regidx = (bit & 0x60) >> 5;
9470 bit &= 0x1f;
9471 mc_filter[regidx] |= (1 << bit);
9472 }
9473
9474 tw32(MAC_HASH_REG_0, mc_filter[0]);
9475 tw32(MAC_HASH_REG_1, mc_filter[1]);
9476 tw32(MAC_HASH_REG_2, mc_filter[2]);
9477 tw32(MAC_HASH_REG_3, mc_filter[3]);
9478 }
9479
9480 if (rx_mode != tp->rx_mode) {
9481 tp->rx_mode = rx_mode;
9482 tw32_f(MAC_RX_MODE, rx_mode);
9483 udelay(10);
9484 }
9485}
9486
9487static void tg3_set_rx_mode(struct net_device *dev)
9488{
9489 struct tg3 *tp = netdev_priv(dev);
9490
Michael Chane75f7c92006-03-20 21:33:26 -08009491 if (!netif_running(dev))
9492 return;
9493
David S. Millerf47c11e2005-06-24 20:18:35 -07009494 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009495 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07009496 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009497}
9498
9499#define TG3_REGDUMP_LEN (32 * 1024)
9500
9501static int tg3_get_regs_len(struct net_device *dev)
9502{
9503 return TG3_REGDUMP_LEN;
9504}
9505
9506static void tg3_get_regs(struct net_device *dev,
9507 struct ethtool_regs *regs, void *_p)
9508{
9509 u32 *p = _p;
9510 struct tg3 *tp = netdev_priv(dev);
9511 u8 *orig_p = _p;
9512 int i;
9513
9514 regs->version = 0;
9515
9516 memset(p, 0, TG3_REGDUMP_LEN);
9517
Michael Chanbc1c7562006-03-20 17:48:03 -08009518 if (tp->link_config.phy_is_low_power)
9519 return;
9520
David S. Millerf47c11e2005-06-24 20:18:35 -07009521 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009522
9523#define __GET_REG32(reg) (*(p)++ = tr32(reg))
9524#define GET_REG32_LOOP(base,len) \
9525do { p = (u32 *)(orig_p + (base)); \
9526 for (i = 0; i < len; i += 4) \
9527 __GET_REG32((base) + i); \
9528} while (0)
9529#define GET_REG32_1(reg) \
9530do { p = (u32 *)(orig_p + (reg)); \
9531 __GET_REG32((reg)); \
9532} while (0)
9533
9534 GET_REG32_LOOP(TG3PCI_VENDOR, 0xb0);
9535 GET_REG32_LOOP(MAILBOX_INTERRUPT_0, 0x200);
9536 GET_REG32_LOOP(MAC_MODE, 0x4f0);
9537 GET_REG32_LOOP(SNDDATAI_MODE, 0xe0);
9538 GET_REG32_1(SNDDATAC_MODE);
9539 GET_REG32_LOOP(SNDBDS_MODE, 0x80);
9540 GET_REG32_LOOP(SNDBDI_MODE, 0x48);
9541 GET_REG32_1(SNDBDC_MODE);
9542 GET_REG32_LOOP(RCVLPC_MODE, 0x20);
9543 GET_REG32_LOOP(RCVLPC_SELLST_BASE, 0x15c);
9544 GET_REG32_LOOP(RCVDBDI_MODE, 0x0c);
9545 GET_REG32_LOOP(RCVDBDI_JUMBO_BD, 0x3c);
9546 GET_REG32_LOOP(RCVDBDI_BD_PROD_IDX_0, 0x44);
9547 GET_REG32_1(RCVDCC_MODE);
9548 GET_REG32_LOOP(RCVBDI_MODE, 0x20);
9549 GET_REG32_LOOP(RCVCC_MODE, 0x14);
9550 GET_REG32_LOOP(RCVLSC_MODE, 0x08);
9551 GET_REG32_1(MBFREE_MODE);
9552 GET_REG32_LOOP(HOSTCC_MODE, 0x100);
9553 GET_REG32_LOOP(MEMARB_MODE, 0x10);
9554 GET_REG32_LOOP(BUFMGR_MODE, 0x58);
9555 GET_REG32_LOOP(RDMAC_MODE, 0x08);
9556 GET_REG32_LOOP(WDMAC_MODE, 0x08);
Chris Elmquist091465d2005-12-20 13:25:19 -08009557 GET_REG32_1(RX_CPU_MODE);
9558 GET_REG32_1(RX_CPU_STATE);
9559 GET_REG32_1(RX_CPU_PGMCTR);
9560 GET_REG32_1(RX_CPU_HWBKPT);
9561 GET_REG32_1(TX_CPU_MODE);
9562 GET_REG32_1(TX_CPU_STATE);
9563 GET_REG32_1(TX_CPU_PGMCTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009564 GET_REG32_LOOP(GRCMBOX_INTERRUPT_0, 0x110);
9565 GET_REG32_LOOP(FTQ_RESET, 0x120);
9566 GET_REG32_LOOP(MSGINT_MODE, 0x0c);
9567 GET_REG32_1(DMAC_MODE);
9568 GET_REG32_LOOP(GRC_MODE, 0x4c);
9569 if (tp->tg3_flags & TG3_FLAG_NVRAM)
9570 GET_REG32_LOOP(NVRAM_CMD, 0x24);
9571
9572#undef __GET_REG32
9573#undef GET_REG32_LOOP
9574#undef GET_REG32_1
9575
David S. Millerf47c11e2005-06-24 20:18:35 -07009576 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009577}
9578
9579static int tg3_get_eeprom_len(struct net_device *dev)
9580{
9581 struct tg3 *tp = netdev_priv(dev);
9582
9583 return tp->nvram_size;
9584}
9585
Linus Torvalds1da177e2005-04-16 15:20:36 -07009586static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9587{
9588 struct tg3 *tp = netdev_priv(dev);
9589 int ret;
9590 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -08009591 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009592 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009593
Matt Carlsondf259d82009-04-20 06:57:14 +00009594 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM)
9595 return -EINVAL;
9596
Michael Chanbc1c7562006-03-20 17:48:03 -08009597 if (tp->link_config.phy_is_low_power)
9598 return -EAGAIN;
9599
Linus Torvalds1da177e2005-04-16 15:20:36 -07009600 offset = eeprom->offset;
9601 len = eeprom->len;
9602 eeprom->len = 0;
9603
9604 eeprom->magic = TG3_EEPROM_MAGIC;
9605
9606 if (offset & 3) {
9607 /* adjustments to start on required 4 byte boundary */
9608 b_offset = offset & 3;
9609 b_count = 4 - b_offset;
9610 if (b_count > len) {
9611 /* i.e. offset=1 len=2 */
9612 b_count = len;
9613 }
Matt Carlsona9dc5292009-02-25 14:25:30 +00009614 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009615 if (ret)
9616 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009617 memcpy(data, ((char*)&val) + b_offset, b_count);
9618 len -= b_count;
9619 offset += b_count;
9620 eeprom->len += b_count;
9621 }
9622
9623 /* read bytes upto the last 4 byte boundary */
9624 pd = &data[eeprom->len];
9625 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +00009626 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009627 if (ret) {
9628 eeprom->len += i;
9629 return ret;
9630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009631 memcpy(pd + i, &val, 4);
9632 }
9633 eeprom->len += i;
9634
9635 if (len & 3) {
9636 /* read last bytes not ending on 4 byte boundary */
9637 pd = &data[eeprom->len];
9638 b_count = len & 3;
9639 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009640 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009641 if (ret)
9642 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009643 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009644 eeprom->len += b_count;
9645 }
9646 return 0;
9647}
9648
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009649static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009650
9651static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9652{
9653 struct tg3 *tp = netdev_priv(dev);
9654 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009655 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009656 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009657 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009658
Michael Chanbc1c7562006-03-20 17:48:03 -08009659 if (tp->link_config.phy_is_low_power)
9660 return -EAGAIN;
9661
Matt Carlsondf259d82009-04-20 06:57:14 +00009662 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
9663 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009664 return -EINVAL;
9665
9666 offset = eeprom->offset;
9667 len = eeprom->len;
9668
9669 if ((b_offset = (offset & 3))) {
9670 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +00009671 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009672 if (ret)
9673 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009674 len += b_offset;
9675 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -07009676 if (len < 4)
9677 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009678 }
9679
9680 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -07009681 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009682 /* adjustments to end on required 4 byte boundary */
9683 odd_len = 1;
9684 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009685 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009686 if (ret)
9687 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009688 }
9689
9690 buf = data;
9691 if (b_offset || odd_len) {
9692 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009693 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009694 return -ENOMEM;
9695 if (b_offset)
9696 memcpy(buf, &start, 4);
9697 if (odd_len)
9698 memcpy(buf+len-4, &end, 4);
9699 memcpy(buf + b_offset, data, eeprom->len);
9700 }
9701
9702 ret = tg3_nvram_write_block(tp, offset, len, buf);
9703
9704 if (buf != data)
9705 kfree(buf);
9706
9707 return ret;
9708}
9709
9710static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9711{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009712 struct tg3 *tp = netdev_priv(dev);
9713
9714 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009715 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009716 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9717 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009718 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9719 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009720 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009721
Linus Torvalds1da177e2005-04-16 15:20:36 -07009722 cmd->supported = (SUPPORTED_Autoneg);
9723
9724 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
9725 cmd->supported |= (SUPPORTED_1000baseT_Half |
9726 SUPPORTED_1000baseT_Full);
9727
Karsten Keilef348142006-05-12 12:49:08 -07009728 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009729 cmd->supported |= (SUPPORTED_100baseT_Half |
9730 SUPPORTED_100baseT_Full |
9731 SUPPORTED_10baseT_Half |
9732 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -08009733 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -07009734 cmd->port = PORT_TP;
9735 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009736 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -07009737 cmd->port = PORT_FIBRE;
9738 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009739
Linus Torvalds1da177e2005-04-16 15:20:36 -07009740 cmd->advertising = tp->link_config.advertising;
9741 if (netif_running(dev)) {
9742 cmd->speed = tp->link_config.active_speed;
9743 cmd->duplex = tp->link_config.active_duplex;
9744 }
Matt Carlson882e9792009-09-01 13:21:36 +00009745 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009746 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009747 cmd->autoneg = tp->link_config.autoneg;
9748 cmd->maxtxpkt = 0;
9749 cmd->maxrxpkt = 0;
9750 return 0;
9751}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009752
Linus Torvalds1da177e2005-04-16 15:20:36 -07009753static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9754{
9755 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009756
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009757 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009758 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009759 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9760 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009761 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9762 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009763 }
9764
Matt Carlson7e5856b2009-02-25 14:23:01 +00009765 if (cmd->autoneg != AUTONEG_ENABLE &&
9766 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -07009767 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009768
9769 if (cmd->autoneg == AUTONEG_DISABLE &&
9770 cmd->duplex != DUPLEX_FULL &&
9771 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -07009772 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009773
Matt Carlson7e5856b2009-02-25 14:23:01 +00009774 if (cmd->autoneg == AUTONEG_ENABLE) {
9775 u32 mask = ADVERTISED_Autoneg |
9776 ADVERTISED_Pause |
9777 ADVERTISED_Asym_Pause;
9778
Julia Lawall3f07d122010-03-13 12:22:16 -08009779 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +00009780 mask |= ADVERTISED_1000baseT_Half |
9781 ADVERTISED_1000baseT_Full;
9782
9783 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
9784 mask |= ADVERTISED_100baseT_Half |
9785 ADVERTISED_100baseT_Full |
9786 ADVERTISED_10baseT_Half |
9787 ADVERTISED_10baseT_Full |
9788 ADVERTISED_TP;
9789 else
9790 mask |= ADVERTISED_FIBRE;
9791
9792 if (cmd->advertising & ~mask)
9793 return -EINVAL;
9794
9795 mask &= (ADVERTISED_1000baseT_Half |
9796 ADVERTISED_1000baseT_Full |
9797 ADVERTISED_100baseT_Half |
9798 ADVERTISED_100baseT_Full |
9799 ADVERTISED_10baseT_Half |
9800 ADVERTISED_10baseT_Full);
9801
9802 cmd->advertising &= mask;
9803 } else {
9804 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) {
9805 if (cmd->speed != SPEED_1000)
9806 return -EINVAL;
9807
9808 if (cmd->duplex != DUPLEX_FULL)
9809 return -EINVAL;
9810 } else {
9811 if (cmd->speed != SPEED_100 &&
9812 cmd->speed != SPEED_10)
9813 return -EINVAL;
9814 }
9815 }
9816
David S. Millerf47c11e2005-06-24 20:18:35 -07009817 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009818
9819 tp->link_config.autoneg = cmd->autoneg;
9820 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -07009821 tp->link_config.advertising = (cmd->advertising |
9822 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009823 tp->link_config.speed = SPEED_INVALID;
9824 tp->link_config.duplex = DUPLEX_INVALID;
9825 } else {
9826 tp->link_config.advertising = 0;
9827 tp->link_config.speed = cmd->speed;
9828 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009829 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009830
Michael Chan24fcad62006-12-17 17:06:46 -08009831 tp->link_config.orig_speed = tp->link_config.speed;
9832 tp->link_config.orig_duplex = tp->link_config.duplex;
9833 tp->link_config.orig_autoneg = tp->link_config.autoneg;
9834
Linus Torvalds1da177e2005-04-16 15:20:36 -07009835 if (netif_running(dev))
9836 tg3_setup_phy(tp, 1);
9837
David S. Millerf47c11e2005-06-24 20:18:35 -07009838 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009839
Linus Torvalds1da177e2005-04-16 15:20:36 -07009840 return 0;
9841}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009842
Linus Torvalds1da177e2005-04-16 15:20:36 -07009843static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
9844{
9845 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009846
Linus Torvalds1da177e2005-04-16 15:20:36 -07009847 strcpy(info->driver, DRV_MODULE_NAME);
9848 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -08009849 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009850 strcpy(info->bus_info, pci_name(tp->pdev));
9851}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009852
Linus Torvalds1da177e2005-04-16 15:20:36 -07009853static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
9854{
9855 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009856
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009857 if ((tp->tg3_flags & TG3_FLAG_WOL_CAP) &&
9858 device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -07009859 wol->supported = WAKE_MAGIC;
9860 else
9861 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009862 wol->wolopts = 0;
Matt Carlson05ac4cb2008-11-03 16:53:46 -08009863 if ((tp->tg3_flags & TG3_FLAG_WOL_ENABLE) &&
9864 device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009865 wol->wolopts = WAKE_MAGIC;
9866 memset(&wol->sopass, 0, sizeof(wol->sopass));
9867}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009868
Linus Torvalds1da177e2005-04-16 15:20:36 -07009869static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
9870{
9871 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009872 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009873
Linus Torvalds1da177e2005-04-16 15:20:36 -07009874 if (wol->wolopts & ~WAKE_MAGIC)
9875 return -EINVAL;
9876 if ((wol->wolopts & WAKE_MAGIC) &&
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009877 !((tp->tg3_flags & TG3_FLAG_WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009878 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009879
David S. Millerf47c11e2005-06-24 20:18:35 -07009880 spin_lock_bh(&tp->lock);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009881 if (wol->wolopts & WAKE_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009882 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009883 device_set_wakeup_enable(dp, true);
9884 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009885 tp->tg3_flags &= ~TG3_FLAG_WOL_ENABLE;
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009886 device_set_wakeup_enable(dp, false);
9887 }
David S. Millerf47c11e2005-06-24 20:18:35 -07009888 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009889
Linus Torvalds1da177e2005-04-16 15:20:36 -07009890 return 0;
9891}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009892
Linus Torvalds1da177e2005-04-16 15:20:36 -07009893static u32 tg3_get_msglevel(struct net_device *dev)
9894{
9895 struct tg3 *tp = netdev_priv(dev);
9896 return tp->msg_enable;
9897}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009898
Linus Torvalds1da177e2005-04-16 15:20:36 -07009899static void tg3_set_msglevel(struct net_device *dev, u32 value)
9900{
9901 struct tg3 *tp = netdev_priv(dev);
9902 tp->msg_enable = value;
9903}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009904
Linus Torvalds1da177e2005-04-16 15:20:36 -07009905static int tg3_set_tso(struct net_device *dev, u32 value)
9906{
9907 struct tg3 *tp = netdev_priv(dev);
9908
9909 if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
9910 if (value)
9911 return -EINVAL;
9912 return 0;
9913 }
Matt Carlson027455a2008-12-21 20:19:30 -08009914 if ((dev->features & NETIF_F_IPV6_CSUM) &&
Matt Carlsone849cdc2009-11-13 13:03:38 +00009915 ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) ||
9916 (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3))) {
Matt Carlson9936bcf2007-10-10 18:03:07 -07009917 if (value) {
Michael Chanb0026622006-07-03 19:42:14 -07009918 dev->features |= NETIF_F_TSO6;
Matt Carlsone849cdc2009-11-13 13:03:38 +00009919 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
9920 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -07009921 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
9922 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Matt Carlson321d32a2008-11-21 17:22:19 -08009923 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00009924 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson9936bcf2007-10-10 18:03:07 -07009925 dev->features |= NETIF_F_TSO_ECN;
9926 } else
9927 dev->features &= ~(NETIF_F_TSO6 | NETIF_F_TSO_ECN);
Michael Chanb0026622006-07-03 19:42:14 -07009928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009929 return ethtool_op_set_tso(dev, value);
9930}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009931
Linus Torvalds1da177e2005-04-16 15:20:36 -07009932static int tg3_nway_reset(struct net_device *dev)
9933{
9934 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009935 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009936
Linus Torvalds1da177e2005-04-16 15:20:36 -07009937 if (!netif_running(dev))
9938 return -EAGAIN;
9939
Michael Chanc94e3942005-09-27 12:12:42 -07009940 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
9941 return -EINVAL;
9942
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009943 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
9944 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9945 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009946 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009947 } else {
9948 u32 bmcr;
9949
9950 spin_lock_bh(&tp->lock);
9951 r = -EINVAL;
9952 tg3_readphy(tp, MII_BMCR, &bmcr);
9953 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
9954 ((bmcr & BMCR_ANENABLE) ||
9955 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT))) {
9956 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
9957 BMCR_ANENABLE);
9958 r = 0;
9959 }
9960 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009961 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009962
Linus Torvalds1da177e2005-04-16 15:20:36 -07009963 return r;
9964}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009965
Linus Torvalds1da177e2005-04-16 15:20:36 -07009966static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
9967{
9968 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009969
Linus Torvalds1da177e2005-04-16 15:20:36 -07009970 ering->rx_max_pending = TG3_RX_RING_SIZE - 1;
9971 ering->rx_mini_max_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -08009972 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
9973 ering->rx_jumbo_max_pending = TG3_RX_JUMBO_RING_SIZE - 1;
9974 else
9975 ering->rx_jumbo_max_pending = 0;
9976
9977 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009978
9979 ering->rx_pending = tp->rx_pending;
9980 ering->rx_mini_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -08009981 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
9982 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
9983 else
9984 ering->rx_jumbo_pending = 0;
9985
Matt Carlsonf3f3f272009-08-28 14:03:21 +00009986 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009987}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009988
Linus Torvalds1da177e2005-04-16 15:20:36 -07009989static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
9990{
9991 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +00009992 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009993
Linus Torvalds1da177e2005-04-16 15:20:36 -07009994 if ((ering->rx_pending > TG3_RX_RING_SIZE - 1) ||
9995 (ering->rx_jumbo_pending > TG3_RX_JUMBO_RING_SIZE - 1) ||
Michael Chanbc3a9252006-10-18 20:55:18 -07009996 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
9997 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Michael Chan7f62ad52007-02-20 23:25:40 -08009998 ((tp->tg3_flags2 & TG3_FLG2_TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -07009999 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010000 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010001
Michael Chanbbe832c2005-06-24 20:20:04 -070010002 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010003 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010004 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010005 irq_sync = 1;
10006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010007
Michael Chanbbe832c2005-06-24 20:20:04 -070010008 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010010 tp->rx_pending = ering->rx_pending;
10011
10012 if ((tp->tg3_flags2 & TG3_FLG2_MAX_RXPEND_64) &&
10013 tp->rx_pending > 63)
10014 tp->rx_pending = 63;
10015 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010016
10017 for (i = 0; i < TG3_IRQ_MAX_VECS; i++)
10018 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010019
10020 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010021 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010022 err = tg3_restart_hw(tp, 1);
10023 if (!err)
10024 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010025 }
10026
David S. Millerf47c11e2005-06-24 20:18:35 -070010027 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010028
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010029 if (irq_sync && !err)
10030 tg3_phy_start(tp);
10031
Michael Chanb9ec6c12006-07-25 16:37:27 -070010032 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010033}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010034
Linus Torvalds1da177e2005-04-16 15:20:36 -070010035static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10036{
10037 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010038
Linus Torvalds1da177e2005-04-16 15:20:36 -070010039 epause->autoneg = (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG) != 0;
Matt Carlson8d018622007-12-20 20:05:44 -080010040
Steve Glendinninge18ce342008-12-16 02:00:00 -080010041 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010042 epause->rx_pause = 1;
10043 else
10044 epause->rx_pause = 0;
10045
Steve Glendinninge18ce342008-12-16 02:00:00 -080010046 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010047 epause->tx_pause = 1;
10048 else
10049 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010050}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010051
Linus Torvalds1da177e2005-04-16 15:20:36 -070010052static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10053{
10054 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010055 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010056
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010057 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson27121682010-02-17 15:16:57 +000010058 u32 newadv;
10059 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010060
Matt Carlson27121682010-02-17 15:16:57 +000010061 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010062
Matt Carlson27121682010-02-17 15:16:57 +000010063 if (!(phydev->supported & SUPPORTED_Pause) ||
10064 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
10065 ((epause->rx_pause && !epause->tx_pause) ||
10066 (!epause->rx_pause && epause->tx_pause))))
10067 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010068
Matt Carlson27121682010-02-17 15:16:57 +000010069 tp->link_config.flowctrl = 0;
10070 if (epause->rx_pause) {
10071 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010072
Matt Carlson27121682010-02-17 15:16:57 +000010073 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010074 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010075 newadv = ADVERTISED_Pause;
10076 } else
10077 newadv = ADVERTISED_Pause |
10078 ADVERTISED_Asym_Pause;
10079 } else if (epause->tx_pause) {
10080 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10081 newadv = ADVERTISED_Asym_Pause;
10082 } else
10083 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010084
Matt Carlson27121682010-02-17 15:16:57 +000010085 if (epause->autoneg)
10086 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
10087 else
10088 tp->tg3_flags &= ~TG3_FLAG_PAUSE_AUTONEG;
10089
10090 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
10091 u32 oldadv = phydev->advertising &
10092 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10093 if (oldadv != newadv) {
10094 phydev->advertising &=
10095 ~(ADVERTISED_Pause |
10096 ADVERTISED_Asym_Pause);
10097 phydev->advertising |= newadv;
10098 if (phydev->autoneg) {
10099 /*
10100 * Always renegotiate the link to
10101 * inform our link partner of our
10102 * flow control settings, even if the
10103 * flow control is forced. Let
10104 * tg3_adjust_link() do the final
10105 * flow control setup.
10106 */
10107 return phy_start_aneg(phydev);
10108 }
10109 }
10110
10111 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010112 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010113 } else {
10114 tp->link_config.orig_advertising &=
10115 ~(ADVERTISED_Pause |
10116 ADVERTISED_Asym_Pause);
10117 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010118 }
10119 } else {
10120 int irq_sync = 0;
10121
10122 if (netif_running(dev)) {
10123 tg3_netif_stop(tp);
10124 irq_sync = 1;
10125 }
10126
10127 tg3_full_lock(tp, irq_sync);
10128
10129 if (epause->autoneg)
10130 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
10131 else
10132 tp->tg3_flags &= ~TG3_FLAG_PAUSE_AUTONEG;
10133 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010134 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010135 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010136 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010137 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010138 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010139 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010140 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010141
10142 if (netif_running(dev)) {
10143 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10144 err = tg3_restart_hw(tp, 1);
10145 if (!err)
10146 tg3_netif_start(tp);
10147 }
10148
10149 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010151
Michael Chanb9ec6c12006-07-25 16:37:27 -070010152 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010153}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010154
Linus Torvalds1da177e2005-04-16 15:20:36 -070010155static u32 tg3_get_rx_csum(struct net_device *dev)
10156{
10157 struct tg3 *tp = netdev_priv(dev);
10158 return (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0;
10159}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010160
Linus Torvalds1da177e2005-04-16 15:20:36 -070010161static int tg3_set_rx_csum(struct net_device *dev, u32 data)
10162{
10163 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010164
Linus Torvalds1da177e2005-04-16 15:20:36 -070010165 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
10166 if (data != 0)
10167 return -EINVAL;
10168 return 0;
10169 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010170
David S. Millerf47c11e2005-06-24 20:18:35 -070010171 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010172 if (data)
10173 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
10174 else
10175 tp->tg3_flags &= ~TG3_FLAG_RX_CHECKSUMS;
David S. Millerf47c11e2005-06-24 20:18:35 -070010176 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010177
Linus Torvalds1da177e2005-04-16 15:20:36 -070010178 return 0;
10179}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010180
Linus Torvalds1da177e2005-04-16 15:20:36 -070010181static int tg3_set_tx_csum(struct net_device *dev, u32 data)
10182{
10183 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010184
Linus Torvalds1da177e2005-04-16 15:20:36 -070010185 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
10186 if (data != 0)
10187 return -EINVAL;
10188 return 0;
10189 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010190
Matt Carlson321d32a2008-11-21 17:22:19 -080010191 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Michael Chan6460d942007-07-14 19:07:52 -070010192 ethtool_op_set_tx_ipv6_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010193 else
Michael Chan9c27dbd2006-03-20 22:28:27 -080010194 ethtool_op_set_tx_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010195
10196 return 0;
10197}
10198
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010199static int tg3_get_sset_count (struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010200{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010201 switch (sset) {
10202 case ETH_SS_TEST:
10203 return TG3_NUM_TEST;
10204 case ETH_SS_STATS:
10205 return TG3_NUM_STATS;
10206 default:
10207 return -EOPNOTSUPP;
10208 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010209}
10210
Linus Torvalds1da177e2005-04-16 15:20:36 -070010211static void tg3_get_strings (struct net_device *dev, u32 stringset, u8 *buf)
10212{
10213 switch (stringset) {
10214 case ETH_SS_STATS:
10215 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10216 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010217 case ETH_SS_TEST:
10218 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10219 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010220 default:
10221 WARN_ON(1); /* we need a WARN() */
10222 break;
10223 }
10224}
10225
Michael Chan4009a932005-09-05 17:52:54 -070010226static int tg3_phys_id(struct net_device *dev, u32 data)
10227{
10228 struct tg3 *tp = netdev_priv(dev);
10229 int i;
10230
10231 if (!netif_running(tp->dev))
10232 return -EAGAIN;
10233
10234 if (data == 0)
Stephen Hemminger759afc32008-02-23 19:51:59 -080010235 data = UINT_MAX / 2;
Michael Chan4009a932005-09-05 17:52:54 -070010236
10237 for (i = 0; i < (data * 2); i++) {
10238 if ((i % 2) == 0)
10239 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10240 LED_CTRL_1000MBPS_ON |
10241 LED_CTRL_100MBPS_ON |
10242 LED_CTRL_10MBPS_ON |
10243 LED_CTRL_TRAFFIC_OVERRIDE |
10244 LED_CTRL_TRAFFIC_BLINK |
10245 LED_CTRL_TRAFFIC_LED);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010246
Michael Chan4009a932005-09-05 17:52:54 -070010247 else
10248 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10249 LED_CTRL_TRAFFIC_OVERRIDE);
10250
10251 if (msleep_interruptible(500))
10252 break;
10253 }
10254 tw32(MAC_LED_CTRL, tp->led_ctrl);
10255 return 0;
10256}
10257
Linus Torvalds1da177e2005-04-16 15:20:36 -070010258static void tg3_get_ethtool_stats (struct net_device *dev,
10259 struct ethtool_stats *estats, u64 *tmp_stats)
10260{
10261 struct tg3 *tp = netdev_priv(dev);
10262 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10263}
10264
Michael Chan566f86a2005-05-29 14:56:58 -070010265#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010266#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10267#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10268#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Michael Chanb16250e2006-09-27 16:10:14 -070010269#define NVRAM_SELFBOOT_HW_SIZE 0x20
10270#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010271
10272static int tg3_test_nvram(struct tg3 *tp)
10273{
Al Virob9fc7dc2007-12-17 22:59:57 -080010274 u32 csum, magic;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010275 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010276 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010277
Matt Carlsondf259d82009-04-20 06:57:14 +000010278 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM)
10279 return 0;
10280
Matt Carlsone4f34112009-02-25 14:25:00 +000010281 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010282 return -EIO;
10283
Michael Chan1b277772006-03-20 22:27:48 -080010284 if (magic == TG3_EEPROM_MAGIC)
10285 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010286 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010287 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10288 TG3_EEPROM_SB_FORMAT_1) {
10289 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10290 case TG3_EEPROM_SB_REVISION_0:
10291 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10292 break;
10293 case TG3_EEPROM_SB_REVISION_2:
10294 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10295 break;
10296 case TG3_EEPROM_SB_REVISION_3:
10297 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10298 break;
10299 default:
10300 return 0;
10301 }
10302 } else
Michael Chan1b277772006-03-20 22:27:48 -080010303 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010304 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10305 size = NVRAM_SELFBOOT_HW_SIZE;
10306 else
Michael Chan1b277772006-03-20 22:27:48 -080010307 return -EIO;
10308
10309 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010310 if (buf == NULL)
10311 return -ENOMEM;
10312
Michael Chan1b277772006-03-20 22:27:48 -080010313 err = -EIO;
10314 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010315 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10316 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010317 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010318 }
Michael Chan1b277772006-03-20 22:27:48 -080010319 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010320 goto out;
10321
Michael Chan1b277772006-03-20 22:27:48 -080010322 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010323 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010324 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010325 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010326 u8 *buf8 = (u8 *) buf, csum8 = 0;
10327
Al Virob9fc7dc2007-12-17 22:59:57 -080010328 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010329 TG3_EEPROM_SB_REVISION_2) {
10330 /* For rev 2, the csum doesn't include the MBA. */
10331 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10332 csum8 += buf8[i];
10333 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10334 csum8 += buf8[i];
10335 } else {
10336 for (i = 0; i < size; i++)
10337 csum8 += buf8[i];
10338 }
Michael Chan1b277772006-03-20 22:27:48 -080010339
Adrian Bunkad96b482006-04-05 22:21:04 -070010340 if (csum8 == 0) {
10341 err = 0;
10342 goto out;
10343 }
10344
10345 err = -EIO;
10346 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010347 }
Michael Chan566f86a2005-05-29 14:56:58 -070010348
Al Virob9fc7dc2007-12-17 22:59:57 -080010349 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010350 TG3_EEPROM_MAGIC_HW) {
10351 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010352 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010353 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010354
10355 /* Separate the parity bits and the data bytes. */
10356 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10357 if ((i == 0) || (i == 8)) {
10358 int l;
10359 u8 msk;
10360
10361 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10362 parity[k++] = buf8[i] & msk;
10363 i++;
10364 }
10365 else if (i == 16) {
10366 int l;
10367 u8 msk;
10368
10369 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10370 parity[k++] = buf8[i] & msk;
10371 i++;
10372
10373 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10374 parity[k++] = buf8[i] & msk;
10375 i++;
10376 }
10377 data[j++] = buf8[i];
10378 }
10379
10380 err = -EIO;
10381 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10382 u8 hw8 = hweight8(data[i]);
10383
10384 if ((hw8 & 0x1) && parity[i])
10385 goto out;
10386 else if (!(hw8 & 0x1) && !parity[i])
10387 goto out;
10388 }
10389 err = 0;
10390 goto out;
10391 }
10392
Michael Chan566f86a2005-05-29 14:56:58 -070010393 /* Bootstrap checksum at offset 0x10 */
10394 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlsona9dc5292009-02-25 14:25:30 +000010395 if (csum != be32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010396 goto out;
10397
10398 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10399 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlsona9dc5292009-02-25 14:25:30 +000010400 if (csum != be32_to_cpu(buf[0xfc/4]))
10401 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070010402
10403 err = 0;
10404
10405out:
10406 kfree(buf);
10407 return err;
10408}
10409
Michael Chanca430072005-05-29 14:57:23 -070010410#define TG3_SERDES_TIMEOUT_SEC 2
10411#define TG3_COPPER_TIMEOUT_SEC 6
10412
10413static int tg3_test_link(struct tg3 *tp)
10414{
10415 int i, max;
10416
10417 if (!netif_running(tp->dev))
10418 return -ENODEV;
10419
Michael Chan4c987482005-09-05 17:52:38 -070010420 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070010421 max = TG3_SERDES_TIMEOUT_SEC;
10422 else
10423 max = TG3_COPPER_TIMEOUT_SEC;
10424
10425 for (i = 0; i < max; i++) {
10426 if (netif_carrier_ok(tp->dev))
10427 return 0;
10428
10429 if (msleep_interruptible(1000))
10430 break;
10431 }
10432
10433 return -EIO;
10434}
10435
Michael Chana71116d2005-05-29 14:58:11 -070010436/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080010437static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070010438{
Michael Chanb16250e2006-09-27 16:10:14 -070010439 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070010440 u32 offset, read_mask, write_mask, val, save_val, read_val;
10441 static struct {
10442 u16 offset;
10443 u16 flags;
10444#define TG3_FL_5705 0x1
10445#define TG3_FL_NOT_5705 0x2
10446#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070010447#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070010448 u32 read_mask;
10449 u32 write_mask;
10450 } reg_tbl[] = {
10451 /* MAC Control Registers */
10452 { MAC_MODE, TG3_FL_NOT_5705,
10453 0x00000000, 0x00ef6f8c },
10454 { MAC_MODE, TG3_FL_5705,
10455 0x00000000, 0x01ef6b8c },
10456 { MAC_STATUS, TG3_FL_NOT_5705,
10457 0x03800107, 0x00000000 },
10458 { MAC_STATUS, TG3_FL_5705,
10459 0x03800100, 0x00000000 },
10460 { MAC_ADDR_0_HIGH, 0x0000,
10461 0x00000000, 0x0000ffff },
10462 { MAC_ADDR_0_LOW, 0x0000,
10463 0x00000000, 0xffffffff },
10464 { MAC_RX_MTU_SIZE, 0x0000,
10465 0x00000000, 0x0000ffff },
10466 { MAC_TX_MODE, 0x0000,
10467 0x00000000, 0x00000070 },
10468 { MAC_TX_LENGTHS, 0x0000,
10469 0x00000000, 0x00003fff },
10470 { MAC_RX_MODE, TG3_FL_NOT_5705,
10471 0x00000000, 0x000007fc },
10472 { MAC_RX_MODE, TG3_FL_5705,
10473 0x00000000, 0x000007dc },
10474 { MAC_HASH_REG_0, 0x0000,
10475 0x00000000, 0xffffffff },
10476 { MAC_HASH_REG_1, 0x0000,
10477 0x00000000, 0xffffffff },
10478 { MAC_HASH_REG_2, 0x0000,
10479 0x00000000, 0xffffffff },
10480 { MAC_HASH_REG_3, 0x0000,
10481 0x00000000, 0xffffffff },
10482
10483 /* Receive Data and Receive BD Initiator Control Registers. */
10484 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
10485 0x00000000, 0xffffffff },
10486 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
10487 0x00000000, 0xffffffff },
10488 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
10489 0x00000000, 0x00000003 },
10490 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
10491 0x00000000, 0xffffffff },
10492 { RCVDBDI_STD_BD+0, 0x0000,
10493 0x00000000, 0xffffffff },
10494 { RCVDBDI_STD_BD+4, 0x0000,
10495 0x00000000, 0xffffffff },
10496 { RCVDBDI_STD_BD+8, 0x0000,
10497 0x00000000, 0xffff0002 },
10498 { RCVDBDI_STD_BD+0xc, 0x0000,
10499 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010500
Michael Chana71116d2005-05-29 14:58:11 -070010501 /* Receive BD Initiator Control Registers. */
10502 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
10503 0x00000000, 0xffffffff },
10504 { RCVBDI_STD_THRESH, TG3_FL_5705,
10505 0x00000000, 0x000003ff },
10506 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
10507 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010508
Michael Chana71116d2005-05-29 14:58:11 -070010509 /* Host Coalescing Control Registers. */
10510 { HOSTCC_MODE, TG3_FL_NOT_5705,
10511 0x00000000, 0x00000004 },
10512 { HOSTCC_MODE, TG3_FL_5705,
10513 0x00000000, 0x000000f6 },
10514 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
10515 0x00000000, 0xffffffff },
10516 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
10517 0x00000000, 0x000003ff },
10518 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
10519 0x00000000, 0xffffffff },
10520 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
10521 0x00000000, 0x000003ff },
10522 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
10523 0x00000000, 0xffffffff },
10524 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10525 0x00000000, 0x000000ff },
10526 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
10527 0x00000000, 0xffffffff },
10528 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10529 0x00000000, 0x000000ff },
10530 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
10531 0x00000000, 0xffffffff },
10532 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
10533 0x00000000, 0xffffffff },
10534 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10535 0x00000000, 0xffffffff },
10536 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10537 0x00000000, 0x000000ff },
10538 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10539 0x00000000, 0xffffffff },
10540 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10541 0x00000000, 0x000000ff },
10542 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
10543 0x00000000, 0xffffffff },
10544 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
10545 0x00000000, 0xffffffff },
10546 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
10547 0x00000000, 0xffffffff },
10548 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
10549 0x00000000, 0xffffffff },
10550 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
10551 0x00000000, 0xffffffff },
10552 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
10553 0xffffffff, 0x00000000 },
10554 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
10555 0xffffffff, 0x00000000 },
10556
10557 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070010558 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010559 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070010560 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010561 0x00000000, 0x007fffff },
10562 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
10563 0x00000000, 0x0000003f },
10564 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
10565 0x00000000, 0x000001ff },
10566 { BUFMGR_MB_HIGH_WATER, 0x0000,
10567 0x00000000, 0x000001ff },
10568 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
10569 0xffffffff, 0x00000000 },
10570 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
10571 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010572
Michael Chana71116d2005-05-29 14:58:11 -070010573 /* Mailbox Registers */
10574 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
10575 0x00000000, 0x000001ff },
10576 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
10577 0x00000000, 0x000001ff },
10578 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
10579 0x00000000, 0x000007ff },
10580 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
10581 0x00000000, 0x000001ff },
10582
10583 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
10584 };
10585
Michael Chanb16250e2006-09-27 16:10:14 -070010586 is_5705 = is_5750 = 0;
10587 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chana71116d2005-05-29 14:58:11 -070010588 is_5705 = 1;
Michael Chanb16250e2006-09-27 16:10:14 -070010589 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
10590 is_5750 = 1;
10591 }
Michael Chana71116d2005-05-29 14:58:11 -070010592
10593 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
10594 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
10595 continue;
10596
10597 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
10598 continue;
10599
10600 if ((tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
10601 (reg_tbl[i].flags & TG3_FL_NOT_5788))
10602 continue;
10603
Michael Chanb16250e2006-09-27 16:10:14 -070010604 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
10605 continue;
10606
Michael Chana71116d2005-05-29 14:58:11 -070010607 offset = (u32) reg_tbl[i].offset;
10608 read_mask = reg_tbl[i].read_mask;
10609 write_mask = reg_tbl[i].write_mask;
10610
10611 /* Save the original register content */
10612 save_val = tr32(offset);
10613
10614 /* Determine the read-only value. */
10615 read_val = save_val & read_mask;
10616
10617 /* Write zero to the register, then make sure the read-only bits
10618 * are not changed and the read/write bits are all zeros.
10619 */
10620 tw32(offset, 0);
10621
10622 val = tr32(offset);
10623
10624 /* Test the read-only and read/write bits. */
10625 if (((val & read_mask) != read_val) || (val & write_mask))
10626 goto out;
10627
10628 /* Write ones to all the bits defined by RdMask and WrMask, then
10629 * make sure the read-only bits are not changed and the
10630 * read/write bits are all ones.
10631 */
10632 tw32(offset, read_mask | write_mask);
10633
10634 val = tr32(offset);
10635
10636 /* Test the read-only bits. */
10637 if ((val & read_mask) != read_val)
10638 goto out;
10639
10640 /* Test the read/write bits. */
10641 if ((val & write_mask) != write_mask)
10642 goto out;
10643
10644 tw32(offset, save_val);
10645 }
10646
10647 return 0;
10648
10649out:
Michael Chan9f88f292006-12-07 00:22:54 -080010650 if (netif_msg_hw(tp))
Joe Perches05dbe002010-02-17 19:44:19 +000010651 pr_err("Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070010652 tw32(offset, save_val);
10653 return -EIO;
10654}
10655
Michael Chan7942e1d2005-05-29 14:58:36 -070010656static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
10657{
Arjan van de Venf71e1302006-03-03 21:33:57 -050010658 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070010659 int i;
10660 u32 j;
10661
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020010662 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070010663 for (j = 0; j < len; j += 4) {
10664 u32 val;
10665
10666 tg3_write_mem(tp, offset + j, test_pattern[i]);
10667 tg3_read_mem(tp, offset + j, &val);
10668 if (val != test_pattern[i])
10669 return -EIO;
10670 }
10671 }
10672 return 0;
10673}
10674
10675static int tg3_test_memory(struct tg3 *tp)
10676{
10677 static struct mem_entry {
10678 u32 offset;
10679 u32 len;
10680 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080010681 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070010682 { 0x00002000, 0x1c000},
10683 { 0xffffffff, 0x00000}
10684 }, mem_tbl_5705[] = {
10685 { 0x00000100, 0x0000c},
10686 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070010687 { 0x00004000, 0x00800},
10688 { 0x00006000, 0x01000},
10689 { 0x00008000, 0x02000},
10690 { 0x00010000, 0x0e000},
10691 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080010692 }, mem_tbl_5755[] = {
10693 { 0x00000200, 0x00008},
10694 { 0x00004000, 0x00800},
10695 { 0x00006000, 0x00800},
10696 { 0x00008000, 0x02000},
10697 { 0x00010000, 0x0c000},
10698 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070010699 }, mem_tbl_5906[] = {
10700 { 0x00000200, 0x00008},
10701 { 0x00004000, 0x00400},
10702 { 0x00006000, 0x00400},
10703 { 0x00008000, 0x01000},
10704 { 0x00010000, 0x01000},
10705 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010706 }, mem_tbl_5717[] = {
10707 { 0x00000200, 0x00008},
10708 { 0x00010000, 0x0a000},
10709 { 0x00020000, 0x13c00},
10710 { 0xffffffff, 0x00000}
10711 }, mem_tbl_57765[] = {
10712 { 0x00000200, 0x00008},
10713 { 0x00004000, 0x00800},
10714 { 0x00006000, 0x09800},
10715 { 0x00010000, 0x0a000},
10716 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070010717 };
10718 struct mem_entry *mem_tbl;
10719 int err = 0;
10720 int i;
10721
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010722 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
10723 mem_tbl = mem_tbl_5717;
10724 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
10725 mem_tbl = mem_tbl_57765;
10726 else if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Matt Carlson321d32a2008-11-21 17:22:19 -080010727 mem_tbl = mem_tbl_5755;
10728 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10729 mem_tbl = mem_tbl_5906;
10730 else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
10731 mem_tbl = mem_tbl_5705;
10732 else
Michael Chan7942e1d2005-05-29 14:58:36 -070010733 mem_tbl = mem_tbl_570x;
10734
10735 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
10736 if ((err = tg3_do_mem_test(tp, mem_tbl[i].offset,
10737 mem_tbl[i].len)) != 0)
10738 break;
10739 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010740
Michael Chan7942e1d2005-05-29 14:58:36 -070010741 return err;
10742}
10743
Michael Chan9f40dea2005-09-05 17:53:06 -070010744#define TG3_MAC_LOOPBACK 0
10745#define TG3_PHY_LOOPBACK 1
10746
10747static int tg3_run_loopback(struct tg3 *tp, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -070010748{
Michael Chan9f40dea2005-09-05 17:53:06 -070010749 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010750 u32 desc_idx, coal_now;
Michael Chanc76949a2005-05-29 14:58:59 -070010751 struct sk_buff *skb, *rx_skb;
10752 u8 *tx_data;
10753 dma_addr_t map;
10754 int num_pkts, tx_len, rx_len, i, err;
10755 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000010756 struct tg3_napi *tnapi, *rnapi;
Matt Carlson21f581a2009-08-28 14:00:25 +000010757 struct tg3_rx_prodring_set *tpr = &tp->prodring[0];
Michael Chanc76949a2005-05-29 14:58:59 -070010758
Matt Carlsonc8873402010-02-12 14:47:11 +000010759 tnapi = &tp->napi[0];
10760 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010761 if (tp->irq_cnt > 1) {
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010762 rnapi = &tp->napi[1];
Matt Carlsonc8873402010-02-12 14:47:11 +000010763 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
10764 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010765 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010766 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000010767
Michael Chan9f40dea2005-09-05 17:53:06 -070010768 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -070010769 /* HW errata - mac loopback fails in some cases on 5780.
10770 * Normal traffic and PHY loopback are not affected by
10771 * errata.
10772 */
10773 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780)
10774 return 0;
10775
Michael Chan9f40dea2005-09-05 17:53:06 -070010776 mac_mode = (tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK) |
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010777 MAC_MODE_PORT_INT_LPBACK;
10778 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
10779 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chan3f7045c2006-09-27 16:02:29 -070010780 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
10781 mac_mode |= MAC_MODE_PORT_MODE_MII;
10782 else
10783 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -070010784 tw32(MAC_MODE, mac_mode);
10785 } else if (loopback_mode == TG3_PHY_LOOPBACK) {
Michael Chan3f7045c2006-09-27 16:02:29 -070010786 u32 val;
10787
Matt Carlson7f97a4b2009-08-25 10:10:03 +000010788 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
10789 tg3_phy_fet_toggle_apd(tp, false);
Michael Chan5d64ad32006-12-07 00:19:40 -080010790 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
10791 } else
10792 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -070010793
Matt Carlson9ef8ca92007-07-11 19:48:29 -070010794 tg3_phy_toggle_automdix(tp, 0);
10795
Michael Chan3f7045c2006-09-27 16:02:29 -070010796 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -070010797 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -080010798
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010799 mac_mode = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000010800 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
Matt Carlson1061b7c2010-02-12 14:47:12 +000010801 tg3_writephy(tp, MII_TG3_FET_PTEST,
10802 MII_TG3_FET_PTEST_FRC_TX_LINK |
10803 MII_TG3_FET_PTEST_FRC_TX_LOCK);
10804 /* The write needs to be flushed for the AC131 */
10805 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
10806 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
Michael Chan5d64ad32006-12-07 00:19:40 -080010807 mac_mode |= MAC_MODE_PORT_MODE_MII;
10808 } else
10809 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -070010810
Michael Chanc94e3942005-09-27 12:12:42 -070010811 /* reset to prevent losing 1st rx packet intermittently */
10812 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
10813 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10814 udelay(10);
10815 tw32_f(MAC_RX_MODE, tp->rx_mode);
10816 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010817 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlson79eb6902010-02-17 15:17:03 +000010818 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
10819 if (masked_phy_id == TG3_PHY_ID_BCM5401)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010820 mac_mode &= ~MAC_MODE_LINK_POLARITY;
Matt Carlson79eb6902010-02-17 15:17:03 +000010821 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010822 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -080010823 tg3_writephy(tp, MII_TG3_EXT_CTRL,
10824 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
10825 }
Michael Chan9f40dea2005-09-05 17:53:06 -070010826 tw32(MAC_MODE, mac_mode);
Michael Chan9f40dea2005-09-05 17:53:06 -070010827 }
10828 else
10829 return -EINVAL;
Michael Chanc76949a2005-05-29 14:58:59 -070010830
10831 err = -EIO;
10832
Michael Chanc76949a2005-05-29 14:58:59 -070010833 tx_len = 1514;
David S. Millera20e9c62006-07-31 22:38:16 -070010834 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070010835 if (!skb)
10836 return -ENOMEM;
10837
Michael Chanc76949a2005-05-29 14:58:59 -070010838 tx_data = skb_put(skb, tx_len);
10839 memcpy(tx_data, tp->dev->dev_addr, 6);
10840 memset(tx_data + 6, 0x0, 8);
10841
10842 tw32(MAC_RX_MTU_SIZE, tx_len + 4);
10843
10844 for (i = 14; i < tx_len; i++)
10845 tx_data[i] = (u8) (i & 0xff);
10846
Alexander Duyckf4188d82009-12-02 16:48:38 +000010847 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
10848 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000010849 dev_kfree_skb(skb);
10850 return -EIO;
10851 }
Michael Chanc76949a2005-05-29 14:58:59 -070010852
10853 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010854 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070010855
10856 udelay(10);
10857
Matt Carlson898a56f2009-08-28 14:02:40 +000010858 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070010859
Michael Chanc76949a2005-05-29 14:58:59 -070010860 num_pkts = 0;
10861
Alexander Duyckf4188d82009-12-02 16:48:38 +000010862 tg3_set_txd(tnapi, tnapi->tx_prod, map, tx_len, 0, 1);
Michael Chanc76949a2005-05-29 14:58:59 -070010863
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010864 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070010865 num_pkts++;
10866
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010867 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
10868 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070010869
10870 udelay(10);
10871
Matt Carlson303fc922009-11-02 14:27:34 +000010872 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
10873 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070010874 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010875 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070010876
10877 udelay(10);
10878
Matt Carlson898a56f2009-08-28 14:02:40 +000010879 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
10880 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010881 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070010882 (rx_idx == (rx_start_idx + num_pkts)))
10883 break;
10884 }
10885
Alexander Duyckf4188d82009-12-02 16:48:38 +000010886 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
Michael Chanc76949a2005-05-29 14:58:59 -070010887 dev_kfree_skb(skb);
10888
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010889 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070010890 goto out;
10891
10892 if (rx_idx != rx_start_idx + num_pkts)
10893 goto out;
10894
Matt Carlson72334482009-08-28 14:03:01 +000010895 desc = &rnapi->rx_rcb[rx_start_idx];
Michael Chanc76949a2005-05-29 14:58:59 -070010896 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
10897 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
10898 if (opaque_key != RXD_OPAQUE_RING_STD)
10899 goto out;
10900
10901 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
10902 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
10903 goto out;
10904
10905 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) - 4;
10906 if (rx_len != tx_len)
10907 goto out;
10908
Matt Carlson21f581a2009-08-28 14:00:25 +000010909 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
Michael Chanc76949a2005-05-29 14:58:59 -070010910
Matt Carlson21f581a2009-08-28 14:00:25 +000010911 map = pci_unmap_addr(&tpr->rx_std_buffers[desc_idx], mapping);
Michael Chanc76949a2005-05-29 14:58:59 -070010912 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len, PCI_DMA_FROMDEVICE);
10913
10914 for (i = 14; i < tx_len; i++) {
10915 if (*(rx_skb->data + i) != (u8) (i & 0xff))
10916 goto out;
10917 }
10918 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010919
Michael Chanc76949a2005-05-29 14:58:59 -070010920 /* tg3_free_rings will unmap and free the rx_skb */
10921out:
10922 return err;
10923}
10924
Michael Chan9f40dea2005-09-05 17:53:06 -070010925#define TG3_MAC_LOOPBACK_FAILED 1
10926#define TG3_PHY_LOOPBACK_FAILED 2
10927#define TG3_LOOPBACK_FAILED (TG3_MAC_LOOPBACK_FAILED | \
10928 TG3_PHY_LOOPBACK_FAILED)
10929
10930static int tg3_test_loopback(struct tg3 *tp)
10931{
10932 int err = 0;
Matt Carlson9936bcf2007-10-10 18:03:07 -070010933 u32 cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070010934
10935 if (!netif_running(tp->dev))
10936 return TG3_LOOPBACK_FAILED;
10937
Michael Chanb9ec6c12006-07-25 16:37:27 -070010938 err = tg3_reset_hw(tp, 1);
10939 if (err)
10940 return TG3_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070010941
Matt Carlson6833c042008-11-21 17:18:59 -080010942 /* Turn off gphy autopowerdown. */
10943 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
10944 tg3_phy_toggle_apd(tp, false);
10945
Matt Carlson321d32a2008-11-21 17:22:19 -080010946 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070010947 int i;
10948 u32 status;
10949
10950 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
10951
10952 /* Wait for up to 40 microseconds to acquire lock. */
10953 for (i = 0; i < 4; i++) {
10954 status = tr32(TG3_CPMU_MUTEX_GNT);
10955 if (status == CPMU_MUTEX_GNT_DRIVER)
10956 break;
10957 udelay(10);
10958 }
10959
10960 if (status != CPMU_MUTEX_GNT_DRIVER)
10961 return TG3_LOOPBACK_FAILED;
10962
Matt Carlsonb2a5c192008-04-03 21:44:44 -070010963 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080010964 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070010965 tw32(TG3_CPMU_CTRL,
10966 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
10967 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070010968 }
10969
Michael Chan9f40dea2005-09-05 17:53:06 -070010970 if (tg3_run_loopback(tp, TG3_MAC_LOOPBACK))
10971 err |= TG3_MAC_LOOPBACK_FAILED;
Matt Carlson9936bcf2007-10-10 18:03:07 -070010972
Matt Carlson321d32a2008-11-21 17:22:19 -080010973 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070010974 tw32(TG3_CPMU_CTRL, cpmuctrl);
10975
10976 /* Release the mutex */
10977 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
10978 }
10979
Matt Carlsondd477002008-05-25 23:45:58 -070010980 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
10981 !(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
Michael Chan9f40dea2005-09-05 17:53:06 -070010982 if (tg3_run_loopback(tp, TG3_PHY_LOOPBACK))
10983 err |= TG3_PHY_LOOPBACK_FAILED;
10984 }
10985
Matt Carlson6833c042008-11-21 17:18:59 -080010986 /* Re-enable gphy autopowerdown. */
10987 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
10988 tg3_phy_toggle_apd(tp, true);
10989
Michael Chan9f40dea2005-09-05 17:53:06 -070010990 return err;
10991}
10992
Michael Chan4cafd3f2005-05-29 14:56:34 -070010993static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
10994 u64 *data)
10995{
Michael Chan566f86a2005-05-29 14:56:58 -070010996 struct tg3 *tp = netdev_priv(dev);
10997
Michael Chanbc1c7562006-03-20 17:48:03 -080010998 if (tp->link_config.phy_is_low_power)
10999 tg3_set_power_state(tp, PCI_D0);
11000
Michael Chan566f86a2005-05-29 14:56:58 -070011001 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11002
11003 if (tg3_test_nvram(tp) != 0) {
11004 etest->flags |= ETH_TEST_FL_FAILED;
11005 data[0] = 1;
11006 }
Michael Chanca430072005-05-29 14:57:23 -070011007 if (tg3_test_link(tp) != 0) {
11008 etest->flags |= ETH_TEST_FL_FAILED;
11009 data[1] = 1;
11010 }
Michael Chana71116d2005-05-29 14:58:11 -070011011 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011012 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011013
Michael Chanbbe832c2005-06-24 20:20:04 -070011014 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011015 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011016 tg3_netif_stop(tp);
11017 irq_sync = 1;
11018 }
11019
11020 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011021
11022 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011023 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011024 tg3_halt_cpu(tp, RX_CPU_BASE);
11025 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
11026 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011027 if (!err)
11028 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011029
Michael Chand9ab5ad2006-03-20 22:27:35 -080011030 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
11031 tg3_phy_reset(tp);
11032
Michael Chana71116d2005-05-29 14:58:11 -070011033 if (tg3_test_registers(tp) != 0) {
11034 etest->flags |= ETH_TEST_FL_FAILED;
11035 data[2] = 1;
11036 }
Michael Chan7942e1d2005-05-29 14:58:36 -070011037 if (tg3_test_memory(tp) != 0) {
11038 etest->flags |= ETH_TEST_FL_FAILED;
11039 data[3] = 1;
11040 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011041 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070011042 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011043
David S. Millerf47c11e2005-06-24 20:18:35 -070011044 tg3_full_unlock(tp);
11045
Michael Chand4bc3922005-05-29 14:59:20 -070011046 if (tg3_test_interrupt(tp) != 0) {
11047 etest->flags |= ETH_TEST_FL_FAILED;
11048 data[5] = 1;
11049 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011050
11051 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011052
Michael Chana71116d2005-05-29 14:58:11 -070011053 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11054 if (netif_running(dev)) {
11055 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011056 err2 = tg3_restart_hw(tp, 1);
11057 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011058 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011059 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011060
11061 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011062
11063 if (irq_sync && !err2)
11064 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011065 }
Michael Chanbc1c7562006-03-20 17:48:03 -080011066 if (tp->link_config.phy_is_low_power)
11067 tg3_set_power_state(tp, PCI_D3hot);
11068
Michael Chan4cafd3f2005-05-29 14:56:34 -070011069}
11070
Linus Torvalds1da177e2005-04-16 15:20:36 -070011071static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11072{
11073 struct mii_ioctl_data *data = if_mii(ifr);
11074 struct tg3 *tp = netdev_priv(dev);
11075 int err;
11076
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011077 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011078 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011079 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
11080 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011081 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11082 return phy_mii_ioctl(phydev, data, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011083 }
11084
Linus Torvalds1da177e2005-04-16 15:20:36 -070011085 switch(cmd) {
11086 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011087 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011088
11089 /* fallthru */
11090 case SIOCGMIIREG: {
11091 u32 mii_regval;
11092
11093 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
11094 break; /* We have no PHY */
11095
Michael Chanbc1c7562006-03-20 17:48:03 -080011096 if (tp->link_config.phy_is_low_power)
11097 return -EAGAIN;
11098
David S. Millerf47c11e2005-06-24 20:18:35 -070011099 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011100 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011101 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011102
11103 data->val_out = mii_regval;
11104
11105 return err;
11106 }
11107
11108 case SIOCSMIIREG:
11109 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
11110 break; /* We have no PHY */
11111
Michael Chanbc1c7562006-03-20 17:48:03 -080011112 if (tp->link_config.phy_is_low_power)
11113 return -EAGAIN;
11114
David S. Millerf47c11e2005-06-24 20:18:35 -070011115 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011116 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011117 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011118
11119 return err;
11120
11121 default:
11122 /* do nothing */
11123 break;
11124 }
11125 return -EOPNOTSUPP;
11126}
11127
11128#if TG3_VLAN_TAG_USED
11129static void tg3_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
11130{
11131 struct tg3 *tp = netdev_priv(dev);
11132
Matt Carlson844b3ee2009-02-25 14:23:56 +000011133 if (!netif_running(dev)) {
11134 tp->vlgrp = grp;
11135 return;
11136 }
11137
11138 tg3_netif_stop(tp);
Michael Chan29315e82006-06-29 20:12:30 -070011139
David S. Millerf47c11e2005-06-24 20:18:35 -070011140 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011141
11142 tp->vlgrp = grp;
11143
11144 /* Update RX_MODE_KEEP_VLAN_TAG bit in RX_MODE register. */
11145 __tg3_set_rx_mode(dev);
11146
Matt Carlson844b3ee2009-02-25 14:23:56 +000011147 tg3_netif_start(tp);
Michael Chan46966542007-07-11 19:47:19 -070011148
11149 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011150}
Linus Torvalds1da177e2005-04-16 15:20:36 -070011151#endif
11152
David S. Miller15f98502005-05-18 22:49:26 -070011153static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11154{
11155 struct tg3 *tp = netdev_priv(dev);
11156
11157 memcpy(ec, &tp->coal, sizeof(*ec));
11158 return 0;
11159}
11160
Michael Chand244c892005-07-05 14:42:33 -070011161static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11162{
11163 struct tg3 *tp = netdev_priv(dev);
11164 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11165 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11166
11167 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
11168 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11169 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11170 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11171 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11172 }
11173
11174 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11175 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11176 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11177 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11178 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11179 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11180 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11181 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11182 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11183 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11184 return -EINVAL;
11185
11186 /* No rx interrupts will be generated if both are zero */
11187 if ((ec->rx_coalesce_usecs == 0) &&
11188 (ec->rx_max_coalesced_frames == 0))
11189 return -EINVAL;
11190
11191 /* No tx interrupts will be generated if both are zero */
11192 if ((ec->tx_coalesce_usecs == 0) &&
11193 (ec->tx_max_coalesced_frames == 0))
11194 return -EINVAL;
11195
11196 /* Only copy relevant parameters, ignore all others. */
11197 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11198 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11199 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11200 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11201 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11202 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11203 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11204 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11205 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11206
11207 if (netif_running(dev)) {
11208 tg3_full_lock(tp, 0);
11209 __tg3_set_coalesce(tp, &tp->coal);
11210 tg3_full_unlock(tp);
11211 }
11212 return 0;
11213}
11214
Jeff Garzik7282d492006-09-13 14:30:00 -040011215static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011216 .get_settings = tg3_get_settings,
11217 .set_settings = tg3_set_settings,
11218 .get_drvinfo = tg3_get_drvinfo,
11219 .get_regs_len = tg3_get_regs_len,
11220 .get_regs = tg3_get_regs,
11221 .get_wol = tg3_get_wol,
11222 .set_wol = tg3_set_wol,
11223 .get_msglevel = tg3_get_msglevel,
11224 .set_msglevel = tg3_set_msglevel,
11225 .nway_reset = tg3_nway_reset,
11226 .get_link = ethtool_op_get_link,
11227 .get_eeprom_len = tg3_get_eeprom_len,
11228 .get_eeprom = tg3_get_eeprom,
11229 .set_eeprom = tg3_set_eeprom,
11230 .get_ringparam = tg3_get_ringparam,
11231 .set_ringparam = tg3_set_ringparam,
11232 .get_pauseparam = tg3_get_pauseparam,
11233 .set_pauseparam = tg3_set_pauseparam,
11234 .get_rx_csum = tg3_get_rx_csum,
11235 .set_rx_csum = tg3_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011236 .set_tx_csum = tg3_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011237 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011238 .set_tso = tg3_set_tso,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011239 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011240 .get_strings = tg3_get_strings,
Michael Chan4009a932005-09-05 17:52:54 -070011241 .phys_id = tg3_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011242 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011243 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011244 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011245 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011246};
11247
11248static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11249{
Michael Chan1b277772006-03-20 22:27:48 -080011250 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011251
11252 tp->nvram_size = EEPROM_CHIP_SIZE;
11253
Matt Carlsone4f34112009-02-25 14:25:00 +000011254 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011255 return;
11256
Michael Chanb16250e2006-09-27 16:10:14 -070011257 if ((magic != TG3_EEPROM_MAGIC) &&
11258 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11259 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011260 return;
11261
11262 /*
11263 * Size the chip by reading offsets at increasing powers of two.
11264 * When we encounter our validation signature, we know the addressing
11265 * has wrapped around, and thus have our chip size.
11266 */
Michael Chan1b277772006-03-20 22:27:48 -080011267 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011268
11269 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011270 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011271 return;
11272
Michael Chan18201802006-03-20 22:29:15 -080011273 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011274 break;
11275
11276 cursize <<= 1;
11277 }
11278
11279 tp->nvram_size = cursize;
11280}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011281
Linus Torvalds1da177e2005-04-16 15:20:36 -070011282static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11283{
11284 u32 val;
11285
Matt Carlsondf259d82009-04-20 06:57:14 +000011286 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
11287 tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011288 return;
11289
11290 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011291 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011292 tg3_get_eeprom_size(tp);
11293 return;
11294 }
11295
Matt Carlson6d348f22009-02-25 14:25:52 +000011296 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011297 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011298 /* This is confusing. We want to operate on the
11299 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11300 * call will read from NVRAM and byteswap the data
11301 * according to the byteswapping settings for all
11302 * other register accesses. This ensures the data we
11303 * want will always reside in the lower 16-bits.
11304 * However, the data in NVRAM is in LE format, which
11305 * means the data from the NVRAM read will always be
11306 * opposite the endianness of the CPU. The 16-bit
11307 * byteswap then brings the data to CPU endianness.
11308 */
11309 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011310 return;
11311 }
11312 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070011313 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011314}
11315
11316static void __devinit tg3_get_nvram_info(struct tg3 *tp)
11317{
11318 u32 nvcfg1;
11319
11320 nvcfg1 = tr32(NVRAM_CFG1);
11321 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
11322 tp->tg3_flags2 |= TG3_FLG2_FLASH;
Matt Carlson8590a602009-08-28 12:29:16 +000011323 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011324 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11325 tw32(NVRAM_CFG1, nvcfg1);
11326 }
11327
Michael Chan4c987482005-09-05 17:52:38 -070011328 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) ||
Michael Chana4e2b342005-10-26 15:46:52 -070011329 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011330 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011331 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
11332 tp->nvram_jedecnum = JEDEC_ATMEL;
11333 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
11334 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11335 break;
11336 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
11337 tp->nvram_jedecnum = JEDEC_ATMEL;
11338 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
11339 break;
11340 case FLASH_VENDOR_ATMEL_EEPROM:
11341 tp->nvram_jedecnum = JEDEC_ATMEL;
11342 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11343 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11344 break;
11345 case FLASH_VENDOR_ST:
11346 tp->nvram_jedecnum = JEDEC_ST;
11347 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
11348 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11349 break;
11350 case FLASH_VENDOR_SAIFUN:
11351 tp->nvram_jedecnum = JEDEC_SAIFUN;
11352 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
11353 break;
11354 case FLASH_VENDOR_SST_SMALL:
11355 case FLASH_VENDOR_SST_LARGE:
11356 tp->nvram_jedecnum = JEDEC_SST;
11357 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
11358 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011359 }
Matt Carlson8590a602009-08-28 12:29:16 +000011360 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011361 tp->nvram_jedecnum = JEDEC_ATMEL;
11362 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
11363 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11364 }
11365}
11366
Matt Carlsona1b950d2009-09-01 13:20:17 +000011367static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
11368{
11369 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
11370 case FLASH_5752PAGE_SIZE_256:
11371 tp->nvram_pagesize = 256;
11372 break;
11373 case FLASH_5752PAGE_SIZE_512:
11374 tp->nvram_pagesize = 512;
11375 break;
11376 case FLASH_5752PAGE_SIZE_1K:
11377 tp->nvram_pagesize = 1024;
11378 break;
11379 case FLASH_5752PAGE_SIZE_2K:
11380 tp->nvram_pagesize = 2048;
11381 break;
11382 case FLASH_5752PAGE_SIZE_4K:
11383 tp->nvram_pagesize = 4096;
11384 break;
11385 case FLASH_5752PAGE_SIZE_264:
11386 tp->nvram_pagesize = 264;
11387 break;
11388 case FLASH_5752PAGE_SIZE_528:
11389 tp->nvram_pagesize = 528;
11390 break;
11391 }
11392}
11393
Michael Chan361b4ac2005-04-21 17:11:21 -070011394static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
11395{
11396 u32 nvcfg1;
11397
11398 nvcfg1 = tr32(NVRAM_CFG1);
11399
Michael Chane6af3012005-04-21 17:12:05 -070011400 /* NVRAM protection for TPM */
11401 if (nvcfg1 & (1 << 27))
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011402 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Michael Chane6af3012005-04-21 17:12:05 -070011403
Michael Chan361b4ac2005-04-21 17:11:21 -070011404 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011405 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
11406 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
11407 tp->nvram_jedecnum = JEDEC_ATMEL;
11408 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11409 break;
11410 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11411 tp->nvram_jedecnum = JEDEC_ATMEL;
11412 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11413 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11414 break;
11415 case FLASH_5752VENDOR_ST_M45PE10:
11416 case FLASH_5752VENDOR_ST_M45PE20:
11417 case FLASH_5752VENDOR_ST_M45PE40:
11418 tp->nvram_jedecnum = JEDEC_ST;
11419 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11420 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11421 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070011422 }
11423
11424 if (tp->tg3_flags2 & TG3_FLG2_FLASH) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000011425 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000011426 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070011427 /* For eeprom, set pagesize to maximum eeprom size */
11428 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11429
11430 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11431 tw32(NVRAM_CFG1, nvcfg1);
11432 }
11433}
11434
Michael Chand3c7b882006-03-23 01:28:25 -080011435static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
11436{
Matt Carlson989a9d22007-05-05 11:51:05 -070011437 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080011438
11439 nvcfg1 = tr32(NVRAM_CFG1);
11440
11441 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070011442 if (nvcfg1 & (1 << 27)) {
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011443 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Matt Carlson989a9d22007-05-05 11:51:05 -070011444 protect = 1;
11445 }
Michael Chand3c7b882006-03-23 01:28:25 -080011446
Matt Carlson989a9d22007-05-05 11:51:05 -070011447 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11448 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011449 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11450 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11451 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11452 case FLASH_5755VENDOR_ATMEL_FLASH_5:
11453 tp->nvram_jedecnum = JEDEC_ATMEL;
11454 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11455 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11456 tp->nvram_pagesize = 264;
11457 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
11458 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
11459 tp->nvram_size = (protect ? 0x3e200 :
11460 TG3_NVRAM_SIZE_512KB);
11461 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
11462 tp->nvram_size = (protect ? 0x1f200 :
11463 TG3_NVRAM_SIZE_256KB);
11464 else
11465 tp->nvram_size = (protect ? 0x1f200 :
11466 TG3_NVRAM_SIZE_128KB);
11467 break;
11468 case FLASH_5752VENDOR_ST_M45PE10:
11469 case FLASH_5752VENDOR_ST_M45PE20:
11470 case FLASH_5752VENDOR_ST_M45PE40:
11471 tp->nvram_jedecnum = JEDEC_ST;
11472 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11473 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11474 tp->nvram_pagesize = 256;
11475 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
11476 tp->nvram_size = (protect ?
11477 TG3_NVRAM_SIZE_64KB :
11478 TG3_NVRAM_SIZE_128KB);
11479 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
11480 tp->nvram_size = (protect ?
11481 TG3_NVRAM_SIZE_64KB :
11482 TG3_NVRAM_SIZE_256KB);
11483 else
11484 tp->nvram_size = (protect ?
11485 TG3_NVRAM_SIZE_128KB :
11486 TG3_NVRAM_SIZE_512KB);
11487 break;
Michael Chand3c7b882006-03-23 01:28:25 -080011488 }
11489}
11490
Michael Chan1b277772006-03-20 22:27:48 -080011491static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
11492{
11493 u32 nvcfg1;
11494
11495 nvcfg1 = tr32(NVRAM_CFG1);
11496
11497 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011498 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
11499 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11500 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
11501 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11502 tp->nvram_jedecnum = JEDEC_ATMEL;
11503 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11504 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080011505
Matt Carlson8590a602009-08-28 12:29:16 +000011506 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11507 tw32(NVRAM_CFG1, nvcfg1);
11508 break;
11509 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11510 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11511 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11512 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11513 tp->nvram_jedecnum = JEDEC_ATMEL;
11514 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11515 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11516 tp->nvram_pagesize = 264;
11517 break;
11518 case FLASH_5752VENDOR_ST_M45PE10:
11519 case FLASH_5752VENDOR_ST_M45PE20:
11520 case FLASH_5752VENDOR_ST_M45PE40:
11521 tp->nvram_jedecnum = JEDEC_ST;
11522 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11523 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11524 tp->nvram_pagesize = 256;
11525 break;
Michael Chan1b277772006-03-20 22:27:48 -080011526 }
11527}
11528
Matt Carlson6b91fa02007-10-10 18:01:09 -070011529static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
11530{
11531 u32 nvcfg1, protect = 0;
11532
11533 nvcfg1 = tr32(NVRAM_CFG1);
11534
11535 /* NVRAM protection for TPM */
11536 if (nvcfg1 & (1 << 27)) {
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011537 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011538 protect = 1;
11539 }
11540
11541 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11542 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011543 case FLASH_5761VENDOR_ATMEL_ADB021D:
11544 case FLASH_5761VENDOR_ATMEL_ADB041D:
11545 case FLASH_5761VENDOR_ATMEL_ADB081D:
11546 case FLASH_5761VENDOR_ATMEL_ADB161D:
11547 case FLASH_5761VENDOR_ATMEL_MDB021D:
11548 case FLASH_5761VENDOR_ATMEL_MDB041D:
11549 case FLASH_5761VENDOR_ATMEL_MDB081D:
11550 case FLASH_5761VENDOR_ATMEL_MDB161D:
11551 tp->nvram_jedecnum = JEDEC_ATMEL;
11552 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11553 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11554 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
11555 tp->nvram_pagesize = 256;
11556 break;
11557 case FLASH_5761VENDOR_ST_A_M45PE20:
11558 case FLASH_5761VENDOR_ST_A_M45PE40:
11559 case FLASH_5761VENDOR_ST_A_M45PE80:
11560 case FLASH_5761VENDOR_ST_A_M45PE16:
11561 case FLASH_5761VENDOR_ST_M_M45PE20:
11562 case FLASH_5761VENDOR_ST_M_M45PE40:
11563 case FLASH_5761VENDOR_ST_M_M45PE80:
11564 case FLASH_5761VENDOR_ST_M_M45PE16:
11565 tp->nvram_jedecnum = JEDEC_ST;
11566 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11567 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11568 tp->nvram_pagesize = 256;
11569 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011570 }
11571
11572 if (protect) {
11573 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
11574 } else {
11575 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011576 case FLASH_5761VENDOR_ATMEL_ADB161D:
11577 case FLASH_5761VENDOR_ATMEL_MDB161D:
11578 case FLASH_5761VENDOR_ST_A_M45PE16:
11579 case FLASH_5761VENDOR_ST_M_M45PE16:
11580 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
11581 break;
11582 case FLASH_5761VENDOR_ATMEL_ADB081D:
11583 case FLASH_5761VENDOR_ATMEL_MDB081D:
11584 case FLASH_5761VENDOR_ST_A_M45PE80:
11585 case FLASH_5761VENDOR_ST_M_M45PE80:
11586 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
11587 break;
11588 case FLASH_5761VENDOR_ATMEL_ADB041D:
11589 case FLASH_5761VENDOR_ATMEL_MDB041D:
11590 case FLASH_5761VENDOR_ST_A_M45PE40:
11591 case FLASH_5761VENDOR_ST_M_M45PE40:
11592 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11593 break;
11594 case FLASH_5761VENDOR_ATMEL_ADB021D:
11595 case FLASH_5761VENDOR_ATMEL_MDB021D:
11596 case FLASH_5761VENDOR_ST_A_M45PE20:
11597 case FLASH_5761VENDOR_ST_M_M45PE20:
11598 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11599 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011600 }
11601 }
11602}
11603
Michael Chanb5d37722006-09-27 16:06:21 -070011604static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
11605{
11606 tp->nvram_jedecnum = JEDEC_ATMEL;
11607 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11608 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11609}
11610
Matt Carlson321d32a2008-11-21 17:22:19 -080011611static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
11612{
11613 u32 nvcfg1;
11614
11615 nvcfg1 = tr32(NVRAM_CFG1);
11616
11617 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11618 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11619 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11620 tp->nvram_jedecnum = JEDEC_ATMEL;
11621 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11622 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11623
11624 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11625 tw32(NVRAM_CFG1, nvcfg1);
11626 return;
11627 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11628 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11629 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11630 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11631 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11632 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11633 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11634 tp->nvram_jedecnum = JEDEC_ATMEL;
11635 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11636 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11637
11638 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11639 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11640 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11641 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11642 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11643 break;
11644 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11645 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11646 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11647 break;
11648 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11649 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11650 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11651 break;
11652 }
11653 break;
11654 case FLASH_5752VENDOR_ST_M45PE10:
11655 case FLASH_5752VENDOR_ST_M45PE20:
11656 case FLASH_5752VENDOR_ST_M45PE40:
11657 tp->nvram_jedecnum = JEDEC_ST;
11658 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11659 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11660
11661 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11662 case FLASH_5752VENDOR_ST_M45PE10:
11663 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11664 break;
11665 case FLASH_5752VENDOR_ST_M45PE20:
11666 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11667 break;
11668 case FLASH_5752VENDOR_ST_M45PE40:
11669 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11670 break;
11671 }
11672 break;
11673 default:
Matt Carlsondf259d82009-04-20 06:57:14 +000011674 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM;
Matt Carlson321d32a2008-11-21 17:22:19 -080011675 return;
11676 }
11677
Matt Carlsona1b950d2009-09-01 13:20:17 +000011678 tg3_nvram_get_pagesize(tp, nvcfg1);
11679 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Matt Carlson321d32a2008-11-21 17:22:19 -080011680 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011681}
11682
11683
11684static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
11685{
11686 u32 nvcfg1;
11687
11688 nvcfg1 = tr32(NVRAM_CFG1);
11689
11690 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11691 case FLASH_5717VENDOR_ATMEL_EEPROM:
11692 case FLASH_5717VENDOR_MICRO_EEPROM:
11693 tp->nvram_jedecnum = JEDEC_ATMEL;
11694 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11695 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11696
11697 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11698 tw32(NVRAM_CFG1, nvcfg1);
11699 return;
11700 case FLASH_5717VENDOR_ATMEL_MDB011D:
11701 case FLASH_5717VENDOR_ATMEL_ADB011B:
11702 case FLASH_5717VENDOR_ATMEL_ADB011D:
11703 case FLASH_5717VENDOR_ATMEL_MDB021D:
11704 case FLASH_5717VENDOR_ATMEL_ADB021B:
11705 case FLASH_5717VENDOR_ATMEL_ADB021D:
11706 case FLASH_5717VENDOR_ATMEL_45USPT:
11707 tp->nvram_jedecnum = JEDEC_ATMEL;
11708 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11709 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11710
11711 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11712 case FLASH_5717VENDOR_ATMEL_MDB021D:
11713 case FLASH_5717VENDOR_ATMEL_ADB021B:
11714 case FLASH_5717VENDOR_ATMEL_ADB021D:
11715 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11716 break;
11717 default:
11718 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11719 break;
11720 }
Matt Carlson321d32a2008-11-21 17:22:19 -080011721 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011722 case FLASH_5717VENDOR_ST_M_M25PE10:
11723 case FLASH_5717VENDOR_ST_A_M25PE10:
11724 case FLASH_5717VENDOR_ST_M_M45PE10:
11725 case FLASH_5717VENDOR_ST_A_M45PE10:
11726 case FLASH_5717VENDOR_ST_M_M25PE20:
11727 case FLASH_5717VENDOR_ST_A_M25PE20:
11728 case FLASH_5717VENDOR_ST_M_M45PE20:
11729 case FLASH_5717VENDOR_ST_A_M45PE20:
11730 case FLASH_5717VENDOR_ST_25USPT:
11731 case FLASH_5717VENDOR_ST_45USPT:
11732 tp->nvram_jedecnum = JEDEC_ST;
11733 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11734 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11735
11736 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11737 case FLASH_5717VENDOR_ST_M_M25PE20:
11738 case FLASH_5717VENDOR_ST_A_M25PE20:
11739 case FLASH_5717VENDOR_ST_M_M45PE20:
11740 case FLASH_5717VENDOR_ST_A_M45PE20:
11741 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11742 break;
11743 default:
11744 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11745 break;
11746 }
Matt Carlson321d32a2008-11-21 17:22:19 -080011747 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011748 default:
11749 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM;
11750 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080011751 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000011752
11753 tg3_nvram_get_pagesize(tp, nvcfg1);
11754 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
11755 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
Matt Carlson321d32a2008-11-21 17:22:19 -080011756}
11757
Linus Torvalds1da177e2005-04-16 15:20:36 -070011758/* Chips other than 5700/5701 use the NVRAM for fetching info. */
11759static void __devinit tg3_nvram_init(struct tg3 *tp)
11760{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011761 tw32_f(GRC_EEPROM_ADDR,
11762 (EEPROM_ADDR_FSM_RESET |
11763 (EEPROM_DEFAULT_CLOCK_PERIOD <<
11764 EEPROM_ADDR_CLKPERD_SHIFT)));
11765
Michael Chan9d57f012006-12-07 00:23:25 -080011766 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011767
11768 /* Enable seeprom accesses. */
11769 tw32_f(GRC_LOCAL_CTRL,
11770 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
11771 udelay(100);
11772
11773 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
11774 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
11775 tp->tg3_flags |= TG3_FLAG_NVRAM;
11776
Michael Chanec41c7d2006-01-17 02:40:55 -080011777 if (tg3_nvram_lock(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +000011778 netdev_warn(tp->dev, "Cannot get nvram lock, %s failed\n",
11779 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080011780 return;
11781 }
Michael Chane6af3012005-04-21 17:12:05 -070011782 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011783
Matt Carlson989a9d22007-05-05 11:51:05 -070011784 tp->nvram_size = 0;
11785
Michael Chan361b4ac2005-04-21 17:11:21 -070011786 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
11787 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080011788 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
11789 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070011790 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070011791 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
11792 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080011793 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070011794 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
11795 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070011796 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11797 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000011798 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
11799 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080011800 tg3_get_57780_nvram_info(tp);
Matt Carlsona1b950d2009-09-01 13:20:17 +000011801 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
11802 tg3_get_5717_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070011803 else
11804 tg3_get_nvram_info(tp);
11805
Matt Carlson989a9d22007-05-05 11:51:05 -070011806 if (tp->nvram_size == 0)
11807 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011808
Michael Chane6af3012005-04-21 17:12:05 -070011809 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080011810 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011811
11812 } else {
11813 tp->tg3_flags &= ~(TG3_FLAG_NVRAM | TG3_FLAG_NVRAM_BUFFERED);
11814
11815 tg3_get_eeprom_size(tp);
11816 }
11817}
11818
Linus Torvalds1da177e2005-04-16 15:20:36 -070011819static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
11820 u32 offset, u32 len, u8 *buf)
11821{
11822 int i, j, rc = 0;
11823 u32 val;
11824
11825 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011826 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011827 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011828
11829 addr = offset + i;
11830
11831 memcpy(&data, buf + i, 4);
11832
Matt Carlson62cedd12009-04-20 14:52:29 -070011833 /*
11834 * The SEEPROM interface expects the data to always be opposite
11835 * the native endian format. We accomplish this by reversing
11836 * all the operations that would have been performed on the
11837 * data from a call to tg3_nvram_read_be32().
11838 */
11839 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011840
11841 val = tr32(GRC_EEPROM_ADDR);
11842 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
11843
11844 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
11845 EEPROM_ADDR_READ);
11846 tw32(GRC_EEPROM_ADDR, val |
11847 (0 << EEPROM_ADDR_DEVID_SHIFT) |
11848 (addr & EEPROM_ADDR_ADDR_MASK) |
11849 EEPROM_ADDR_START |
11850 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011851
Michael Chan9d57f012006-12-07 00:23:25 -080011852 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011853 val = tr32(GRC_EEPROM_ADDR);
11854
11855 if (val & EEPROM_ADDR_COMPLETE)
11856 break;
Michael Chan9d57f012006-12-07 00:23:25 -080011857 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011858 }
11859 if (!(val & EEPROM_ADDR_COMPLETE)) {
11860 rc = -EBUSY;
11861 break;
11862 }
11863 }
11864
11865 return rc;
11866}
11867
11868/* offset and length are dword aligned */
11869static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
11870 u8 *buf)
11871{
11872 int ret = 0;
11873 u32 pagesize = tp->nvram_pagesize;
11874 u32 pagemask = pagesize - 1;
11875 u32 nvram_cmd;
11876 u8 *tmp;
11877
11878 tmp = kmalloc(pagesize, GFP_KERNEL);
11879 if (tmp == NULL)
11880 return -ENOMEM;
11881
11882 while (len) {
11883 int j;
Michael Chane6af3012005-04-21 17:12:05 -070011884 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011885
11886 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011887
Linus Torvalds1da177e2005-04-16 15:20:36 -070011888 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011889 ret = tg3_nvram_read_be32(tp, phy_addr + j,
11890 (__be32 *) (tmp + j));
11891 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011892 break;
11893 }
11894 if (ret)
11895 break;
11896
11897 page_off = offset & pagemask;
11898 size = pagesize;
11899 if (len < size)
11900 size = len;
11901
11902 len -= size;
11903
11904 memcpy(tmp + page_off, buf, size);
11905
11906 offset = offset + (pagesize - page_off);
11907
Michael Chane6af3012005-04-21 17:12:05 -070011908 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011909
11910 /*
11911 * Before we can erase the flash page, we need
11912 * to issue a special "write enable" command.
11913 */
11914 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11915
11916 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11917 break;
11918
11919 /* Erase the target page */
11920 tw32(NVRAM_ADDR, phy_addr);
11921
11922 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
11923 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
11924
11925 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11926 break;
11927
11928 /* Issue another write enable to start the write. */
11929 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11930
11931 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11932 break;
11933
11934 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011935 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011936
Al Virob9fc7dc2007-12-17 22:59:57 -080011937 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000011938
Al Virob9fc7dc2007-12-17 22:59:57 -080011939 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011940
11941 tw32(NVRAM_ADDR, phy_addr + j);
11942
11943 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
11944 NVRAM_CMD_WR;
11945
11946 if (j == 0)
11947 nvram_cmd |= NVRAM_CMD_FIRST;
11948 else if (j == (pagesize - 4))
11949 nvram_cmd |= NVRAM_CMD_LAST;
11950
11951 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
11952 break;
11953 }
11954 if (ret)
11955 break;
11956 }
11957
11958 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11959 tg3_nvram_exec_cmd(tp, nvram_cmd);
11960
11961 kfree(tmp);
11962
11963 return ret;
11964}
11965
11966/* offset and length are dword aligned */
11967static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
11968 u8 *buf)
11969{
11970 int i, ret = 0;
11971
11972 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011973 u32 page_off, phy_addr, nvram_cmd;
11974 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011975
11976 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080011977 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011978
11979 page_off = offset % tp->nvram_pagesize;
11980
Michael Chan18201802006-03-20 22:29:15 -080011981 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011982
11983 tw32(NVRAM_ADDR, phy_addr);
11984
11985 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
11986
11987 if ((page_off == 0) || (i == 0))
11988 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070011989 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011990 nvram_cmd |= NVRAM_CMD_LAST;
11991
11992 if (i == (len - 4))
11993 nvram_cmd |= NVRAM_CMD_LAST;
11994
Matt Carlson321d32a2008-11-21 17:22:19 -080011995 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
11996 !(tp->tg3_flags3 & TG3_FLG3_5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070011997 (tp->nvram_jedecnum == JEDEC_ST) &&
11998 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011999
12000 if ((ret = tg3_nvram_exec_cmd(tp,
12001 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12002 NVRAM_CMD_DONE)))
12003
12004 break;
12005 }
12006 if (!(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
12007 /* We always do complete word writes to eeprom. */
12008 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12009 }
12010
12011 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12012 break;
12013 }
12014 return ret;
12015}
12016
12017/* offset and length are dword aligned */
12018static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12019{
12020 int ret;
12021
Linus Torvalds1da177e2005-04-16 15:20:36 -070012022 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070012023 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12024 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012025 udelay(40);
12026 }
12027
12028 if (!(tp->tg3_flags & TG3_FLAG_NVRAM)) {
12029 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
12030 }
12031 else {
12032 u32 grc_mode;
12033
Michael Chanec41c7d2006-01-17 02:40:55 -080012034 ret = tg3_nvram_lock(tp);
12035 if (ret)
12036 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012037
Michael Chane6af3012005-04-21 17:12:05 -070012038 tg3_enable_nvram_access(tp);
12039 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Matt Carlsonf66a29b2009-11-13 13:03:36 +000012040 !(tp->tg3_flags3 & TG3_FLG3_PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012041 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012042
12043 grc_mode = tr32(GRC_MODE);
12044 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12045
12046 if ((tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) ||
12047 !(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
12048
12049 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12050 buf);
12051 }
12052 else {
12053 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12054 buf);
12055 }
12056
12057 grc_mode = tr32(GRC_MODE);
12058 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12059
Michael Chane6af3012005-04-21 17:12:05 -070012060 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012061 tg3_nvram_unlock(tp);
12062 }
12063
12064 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070012065 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012066 udelay(40);
12067 }
12068
12069 return ret;
12070}
12071
12072struct subsys_tbl_ent {
12073 u16 subsys_vendor, subsys_devid;
12074 u32 phy_id;
12075};
12076
Matt Carlson24daf2b2010-02-17 15:17:02 +000012077static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012078 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012079 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012080 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012081 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012082 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012083 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012084 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012085 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12086 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
12087 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012088 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012089 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012090 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012091 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12092 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
12093 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012094 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012095 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012096 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, 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_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012099 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012100 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012101
12102 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012103 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012104 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012105 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012106 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012107 { TG3PCI_SUBVENDOR_ID_3COM,
12108 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
12109 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012110 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012111 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012112 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012113
12114 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012115 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012116 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012117 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012118 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, 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_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012121 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012122 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012123
12124 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012125 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012126 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
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_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012129 { TG3PCI_SUBVENDOR_ID_COMPAQ,
12130 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
12131 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012132 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012133 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012134 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012135
12136 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012137 { TG3PCI_SUBVENDOR_ID_IBM,
12138 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012139};
12140
Matt Carlson24daf2b2010-02-17 15:17:02 +000012141static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012142{
12143 int i;
12144
12145 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
12146 if ((subsys_id_to_phy_id[i].subsys_vendor ==
12147 tp->pdev->subsystem_vendor) &&
12148 (subsys_id_to_phy_id[i].subsys_devid ==
12149 tp->pdev->subsystem_device))
12150 return &subsys_id_to_phy_id[i];
12151 }
12152 return NULL;
12153}
12154
Michael Chan7d0c41e2005-04-21 17:06:20 -070012155static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012156{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012157 u32 val;
Michael Chancaf636c72006-03-22 01:05:31 -080012158 u16 pmcsr;
12159
12160 /* On some early chips the SRAM cannot be accessed in D3hot state,
12161 * so need make sure we're in D0.
12162 */
12163 pci_read_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, &pmcsr);
12164 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
12165 pci_write_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, pmcsr);
12166 msleep(1);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012167
12168 /* Make sure register accesses (indirect or otherwise)
12169 * will function correctly.
12170 */
12171 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12172 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012173
David S. Millerf49639e2006-06-09 11:58:36 -070012174 /* The memory arbiter has to be enabled in order for SRAM accesses
12175 * to succeed. Normally on powerup the tg3 chip firmware will make
12176 * sure it is enabled, but other entities such as system netboot
12177 * code might disable it.
12178 */
12179 val = tr32(MEMARB_MODE);
12180 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
12181
Matt Carlson79eb6902010-02-17 15:17:03 +000012182 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012183 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12184
Gary Zambranoa85feb82007-05-05 11:52:19 -070012185 /* Assume an onboard device and WOL capable by default. */
12186 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT | TG3_FLAG_WOL_CAP;
David S. Miller72b845e2006-03-14 14:11:48 -080012187
Michael Chanb5d37722006-09-27 16:06:21 -070012188 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080012189 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Michael Chanb5d37722006-09-27 16:06:21 -070012190 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012191 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
12192 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012193 val = tr32(VCPU_CFGSHDW);
12194 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Matt Carlson8ed5d972007-05-07 00:25:49 -070012195 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
Matt Carlson0527ba32007-10-10 18:03:30 -070012196 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Matt Carlson20232762008-12-21 20:18:56 -080012197 (val & VCPU_CFGSHDW_WOL_MAGPKT))
Matt Carlson0527ba32007-10-10 18:03:30 -070012198 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012199 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070012200 }
12201
Linus Torvalds1da177e2005-04-16 15:20:36 -070012202 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
12203 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
12204 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070012205 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012206 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012207
12208 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
12209 tp->nic_sram_data_cfg = nic_cfg;
12210
12211 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
12212 ver >>= NIC_SRAM_DATA_VER_SHIFT;
12213 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
12214 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
12215 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703) &&
12216 (ver > 0) && (ver < 0x100))
12217 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
12218
Matt Carlsona9daf362008-05-25 23:49:44 -070012219 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
12220 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
12221
Linus Torvalds1da177e2005-04-16 15:20:36 -070012222 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
12223 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
12224 eeprom_phy_serdes = 1;
12225
12226 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
12227 if (nic_phy_id != 0) {
12228 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
12229 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
12230
12231 eeprom_phy_id = (id1 >> 16) << 10;
12232 eeprom_phy_id |= (id2 & 0xfc00) << 16;
12233 eeprom_phy_id |= (id2 & 0x03ff) << 0;
12234 } else
12235 eeprom_phy_id = 0;
12236
Michael Chan7d0c41e2005-04-21 17:06:20 -070012237 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070012238 if (eeprom_phy_serdes) {
Matt Carlsond1ec96a2010-01-12 10:11:38 +000012239 if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
12240 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Michael Chan747e8f82005-07-25 12:33:22 -070012241 tp->tg3_flags2 |= TG3_FLG2_MII_SERDES;
12242 else
12243 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
12244 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070012245
John W. Linvillecbf46852005-04-21 17:01:29 -070012246 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012247 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
12248 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070012249 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070012250 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
12251
12252 switch (led_cfg) {
12253 default:
12254 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
12255 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12256 break;
12257
12258 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
12259 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12260 break;
12261
12262 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
12263 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070012264
12265 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
12266 * read on some older 5700/5701 bootcode.
12267 */
12268 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12269 ASIC_REV_5700 ||
12270 GET_ASIC_REV(tp->pci_chip_rev_id) ==
12271 ASIC_REV_5701)
12272 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12273
Linus Torvalds1da177e2005-04-16 15:20:36 -070012274 break;
12275
12276 case SHASTA_EXT_LED_SHARED:
12277 tp->led_ctrl = LED_CTRL_MODE_SHARED;
12278 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
12279 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
12280 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12281 LED_CTRL_MODE_PHY_2);
12282 break;
12283
12284 case SHASTA_EXT_LED_MAC:
12285 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
12286 break;
12287
12288 case SHASTA_EXT_LED_COMBO:
12289 tp->led_ctrl = LED_CTRL_MODE_COMBO;
12290 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
12291 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12292 LED_CTRL_MODE_PHY_2);
12293 break;
12294
Stephen Hemminger855e1112008-04-16 16:37:28 -070012295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012296
12297 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12298 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
12299 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
12300 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12301
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012302 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
12303 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080012304
Michael Chan9d26e212006-12-07 00:21:14 -080012305 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012306 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012307 if ((tp->pdev->subsystem_vendor ==
12308 PCI_VENDOR_ID_ARIMA) &&
12309 (tp->pdev->subsystem_device == 0x205a ||
12310 tp->pdev->subsystem_device == 0x2063))
12311 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
12312 } else {
David S. Millerf49639e2006-06-09 11:58:36 -070012313 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012314 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
12315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012316
12317 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
12318 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
John W. Linvillecbf46852005-04-21 17:01:29 -070012319 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012320 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
12321 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012322
12323 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
12324 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
Matt Carlson0d3031d2007-10-10 18:02:43 -070012325 tp->tg3_flags3 |= TG3_FLG3_ENABLE_APE;
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012326
Gary Zambranoa85feb82007-05-05 11:52:19 -070012327 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES &&
12328 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
12329 tp->tg3_flags &= ~TG3_FLAG_WOL_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012330
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070012331 if ((tp->tg3_flags & TG3_FLAG_WOL_CAP) &&
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012332 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE))
Matt Carlson0527ba32007-10-10 18:03:30 -070012333 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
12334
Linus Torvalds1da177e2005-04-16 15:20:36 -070012335 if (cfg2 & (1 << 17))
12336 tp->tg3_flags2 |= TG3_FLG2_CAPACITIVE_COUPLING;
12337
12338 /* serdes signal pre-emphasis in register 0x590 set by */
12339 /* bootcode if bit 18 is set */
12340 if (cfg2 & (1 << 18))
12341 tp->tg3_flags2 |= TG3_FLG2_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070012342
Matt Carlson321d32a2008-11-21 17:22:19 -080012343 if (((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
12344 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080012345 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
12346 tp->tg3_flags3 |= TG3_FLG3_PHY_ENABLE_APD;
12347
Matt Carlson8ed5d972007-05-07 00:25:49 -070012348 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
12349 u32 cfg3;
12350
12351 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
12352 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
12353 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
12354 }
Matt Carlsona9daf362008-05-25 23:49:44 -070012355
Matt Carlson14417062010-02-17 15:16:59 +000012356 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
12357 tp->tg3_flags3 |= TG3_FLG3_RGMII_INBAND_DISABLE;
Matt Carlsona9daf362008-05-25 23:49:44 -070012358 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
12359 tp->tg3_flags3 |= TG3_FLG3_RGMII_EXT_IBND_RX_EN;
12360 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
12361 tp->tg3_flags3 |= TG3_FLG3_RGMII_EXT_IBND_TX_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012362 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012363done:
12364 device_init_wakeup(&tp->pdev->dev, tp->tg3_flags & TG3_FLAG_WOL_CAP);
12365 device_set_wakeup_enable(&tp->pdev->dev,
12366 tp->tg3_flags & TG3_FLAG_WOL_ENABLE);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012367}
12368
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012369static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
12370{
12371 int i;
12372 u32 val;
12373
12374 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
12375 tw32(OTP_CTRL, cmd);
12376
12377 /* Wait for up to 1 ms for command to execute. */
12378 for (i = 0; i < 100; i++) {
12379 val = tr32(OTP_STATUS);
12380 if (val & OTP_STATUS_CMD_DONE)
12381 break;
12382 udelay(10);
12383 }
12384
12385 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
12386}
12387
12388/* Read the gphy configuration from the OTP region of the chip. The gphy
12389 * configuration is a 32-bit value that straddles the alignment boundary.
12390 * We do two 32-bit reads and then shift and merge the results.
12391 */
12392static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
12393{
12394 u32 bhalf_otp, thalf_otp;
12395
12396 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
12397
12398 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
12399 return 0;
12400
12401 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
12402
12403 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12404 return 0;
12405
12406 thalf_otp = tr32(OTP_READ_DATA);
12407
12408 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
12409
12410 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12411 return 0;
12412
12413 bhalf_otp = tr32(OTP_READ_DATA);
12414
12415 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
12416}
12417
Michael Chan7d0c41e2005-04-21 17:06:20 -070012418static int __devinit tg3_phy_probe(struct tg3 *tp)
12419{
12420 u32 hw_phy_id_1, hw_phy_id_2;
12421 u32 hw_phy_id, hw_phy_id_masked;
12422 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012423
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012424 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)
12425 return tg3_phy_init(tp);
12426
Linus Torvalds1da177e2005-04-16 15:20:36 -070012427 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010012428 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012429 */
12430 err = 0;
Matt Carlson0d3031d2007-10-10 18:02:43 -070012431 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
12432 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000012433 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012434 } else {
12435 /* Now read the physical PHY_ID from the chip and verify
12436 * that it is sane. If it doesn't look good, we fall back
12437 * to either the hard-coded table based PHY_ID and failing
12438 * that the value found in the eeprom area.
12439 */
12440 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
12441 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
12442
12443 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
12444 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
12445 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
12446
Matt Carlson79eb6902010-02-17 15:17:03 +000012447 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012448 }
12449
Matt Carlson79eb6902010-02-17 15:17:03 +000012450 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012451 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000012452 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012453 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070012454 else
12455 tp->tg3_flags2 &= ~TG3_FLG2_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012456 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000012457 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070012458 /* Do nothing, phy ID already set up in
12459 * tg3_get_eeprom_hw_cfg().
12460 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012461 } else {
12462 struct subsys_tbl_ent *p;
12463
12464 /* No eeprom signature? Try the hardcoded
12465 * subsys device table.
12466 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012467 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012468 if (!p)
12469 return -ENODEV;
12470
12471 tp->phy_id = p->phy_id;
12472 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000012473 tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012474 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
12475 }
12476 }
12477
Michael Chan747e8f82005-07-25 12:33:22 -070012478 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) &&
Matt Carlson0d3031d2007-10-10 18:02:43 -070012479 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012480 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan3600d912006-12-07 00:21:48 -080012481 u32 bmsr, adv_reg, tg3_ctrl, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012482
12483 tg3_readphy(tp, MII_BMSR, &bmsr);
12484 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
12485 (bmsr & BMSR_LSTATUS))
12486 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012487
Linus Torvalds1da177e2005-04-16 15:20:36 -070012488 err = tg3_phy_reset(tp);
12489 if (err)
12490 return err;
12491
12492 adv_reg = (ADVERTISE_10HALF | ADVERTISE_10FULL |
12493 ADVERTISE_100HALF | ADVERTISE_100FULL |
12494 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
12495 tg3_ctrl = 0;
12496 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
12497 tg3_ctrl = (MII_TG3_CTRL_ADV_1000_HALF |
12498 MII_TG3_CTRL_ADV_1000_FULL);
12499 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
12500 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
12501 tg3_ctrl |= (MII_TG3_CTRL_AS_MASTER |
12502 MII_TG3_CTRL_ENABLE_AS_MASTER);
12503 }
12504
Michael Chan3600d912006-12-07 00:21:48 -080012505 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
12506 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
12507 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
12508 if (!tg3_copper_is_advertising_all(tp, mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012509 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
12510
12511 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
12512 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12513
12514 tg3_writephy(tp, MII_BMCR,
12515 BMCR_ANENABLE | BMCR_ANRESTART);
12516 }
12517 tg3_phy_set_wirespeed(tp);
12518
12519 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
12520 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
12521 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12522 }
12523
12524skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000012525 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012526 err = tg3_init_5401phy_dsp(tp);
12527 if (err)
12528 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012529
Linus Torvalds1da177e2005-04-16 15:20:36 -070012530 err = tg3_init_5401phy_dsp(tp);
12531 }
12532
Michael Chan747e8f82005-07-25 12:33:22 -070012533 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012534 tp->link_config.advertising =
12535 (ADVERTISED_1000baseT_Half |
12536 ADVERTISED_1000baseT_Full |
12537 ADVERTISED_Autoneg |
12538 ADVERTISED_FIBRE);
12539 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
12540 tp->link_config.advertising &=
12541 ~(ADVERTISED_1000baseT_Half |
12542 ADVERTISED_1000baseT_Full);
12543
12544 return err;
12545}
12546
12547static void __devinit tg3_read_partno(struct tg3 *tp)
12548{
Matt Carlson141518c2009-12-03 08:36:22 +000012549 unsigned char vpd_data[TG3_NVM_VPD_LEN]; /* in little-endian format */
Matt Carlson4181b2c2010-02-26 14:04:45 +000012550 unsigned int block_end, rosize, len;
12551 int i = 0;
Michael Chan1b277772006-03-20 22:27:48 -080012552 u32 magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012553
Matt Carlsondf259d82009-04-20 06:57:14 +000012554 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
12555 tg3_nvram_read(tp, 0x0, &magic))
David S. Millerf49639e2006-06-09 11:58:36 -070012556 goto out_not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012557
Michael Chan18201802006-03-20 22:29:15 -080012558 if (magic == TG3_EEPROM_MAGIC) {
Matt Carlson141518c2009-12-03 08:36:22 +000012559 for (i = 0; i < TG3_NVM_VPD_LEN; i += 4) {
Michael Chan1b277772006-03-20 22:27:48 -080012560 u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012561
Matt Carlson6d348f22009-02-25 14:25:52 +000012562 /* The data is in little-endian format in NVRAM.
12563 * Use the big-endian read routines to preserve
12564 * the byte order as it exists in NVRAM.
12565 */
Matt Carlson141518c2009-12-03 08:36:22 +000012566 if (tg3_nvram_read_be32(tp, TG3_NVM_VPD_OFF + i, &tmp))
Michael Chan1b277772006-03-20 22:27:48 -080012567 goto out_not_found;
12568
Matt Carlson6d348f22009-02-25 14:25:52 +000012569 memcpy(&vpd_data[i], &tmp, sizeof(tmp));
Michael Chan1b277772006-03-20 22:27:48 -080012570 }
12571 } else {
Matt Carlson94c982b2009-12-03 08:36:23 +000012572 ssize_t cnt;
Matt Carlson4181b2c2010-02-26 14:04:45 +000012573 unsigned int pos = 0;
Michael Chan1b277772006-03-20 22:27:48 -080012574
Matt Carlson94c982b2009-12-03 08:36:23 +000012575 for (; pos < TG3_NVM_VPD_LEN && i < 3; i++, pos += cnt) {
12576 cnt = pci_read_vpd(tp->pdev, pos,
12577 TG3_NVM_VPD_LEN - pos,
12578 &vpd_data[pos]);
12579 if (cnt == -ETIMEDOUT || -EINTR)
12580 cnt = 0;
12581 else if (cnt < 0)
David S. Millerf49639e2006-06-09 11:58:36 -070012582 goto out_not_found;
Michael Chan1b277772006-03-20 22:27:48 -080012583 }
Matt Carlson94c982b2009-12-03 08:36:23 +000012584 if (pos != TG3_NVM_VPD_LEN)
12585 goto out_not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012586 }
12587
Matt Carlson4181b2c2010-02-26 14:04:45 +000012588 i = pci_vpd_find_tag(vpd_data, 0, TG3_NVM_VPD_LEN,
12589 PCI_VPD_LRDT_RO_DATA);
12590 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012591 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000012592
12593 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
12594 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
12595 i += PCI_VPD_LRDT_TAG_SIZE;
12596
12597 if (block_end > TG3_NVM_VPD_LEN)
12598 goto out_not_found;
12599
12600 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
12601 PCI_VPD_RO_KEYWORD_PARTNO);
12602 if (i < 0)
12603 goto out_not_found;
12604
12605 len = pci_vpd_info_field_size(&vpd_data[i]);
12606
12607 i += PCI_VPD_INFO_FLD_HDR_SIZE;
12608 if (len > TG3_BPN_SIZE ||
12609 (len + i) > TG3_NVM_VPD_LEN)
12610 goto out_not_found;
12611
12612 memcpy(tp->board_part_number, &vpd_data[i], len);
12613
12614 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012615
12616out_not_found:
Michael Chanb5d37722006-09-27 16:06:21 -070012617 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12618 strcpy(tp->board_part_number, "BCM95906");
Matt Carlsondf259d82009-04-20 06:57:14 +000012619 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12620 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
12621 strcpy(tp->board_part_number, "BCM57780");
12622 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12623 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
12624 strcpy(tp->board_part_number, "BCM57760");
12625 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12626 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
12627 strcpy(tp->board_part_number, "BCM57790");
Matt Carlson5e7ccf22009-08-25 10:08:42 +000012628 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12629 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
12630 strcpy(tp->board_part_number, "BCM57788");
Matt Carlsonb474eca2010-02-17 15:16:58 +000012631 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12632 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
12633 strcpy(tp->board_part_number, "BCM57761");
12634 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12635 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
Matt Carlsonb703df62009-12-03 08:36:21 +000012636 strcpy(tp->board_part_number, "BCM57765");
Matt Carlsonb474eca2010-02-17 15:16:58 +000012637 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12638 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
12639 strcpy(tp->board_part_number, "BCM57781");
12640 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12641 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
12642 strcpy(tp->board_part_number, "BCM57785");
12643 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12644 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
12645 strcpy(tp->board_part_number, "BCM57791");
12646 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12647 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
12648 strcpy(tp->board_part_number, "BCM57795");
Michael Chanb5d37722006-09-27 16:06:21 -070012649 else
12650 strcpy(tp->board_part_number, "none");
Linus Torvalds1da177e2005-04-16 15:20:36 -070012651}
12652
Matt Carlson9c8a6202007-10-21 16:16:08 -070012653static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
12654{
12655 u32 val;
12656
Matt Carlsone4f34112009-02-25 14:25:00 +000012657 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012658 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000012659 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012660 val != 0)
12661 return 0;
12662
12663 return 1;
12664}
12665
Matt Carlsonacd9c112009-02-25 14:26:33 +000012666static void __devinit tg3_read_bc_ver(struct tg3 *tp)
12667{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012668 u32 val, offset, start, ver_offset;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012669 int i;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012670 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012671
12672 if (tg3_nvram_read(tp, 0xc, &offset) ||
12673 tg3_nvram_read(tp, 0x4, &start))
12674 return;
12675
12676 offset = tg3_nvram_logical_addr(tp, offset);
12677
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012678 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000012679 return;
12680
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012681 if ((val & 0xfc000000) == 0x0c000000) {
12682 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000012683 return;
12684
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012685 if (val == 0)
12686 newver = true;
12687 }
12688
12689 if (newver) {
12690 if (tg3_nvram_read(tp, offset + 8, &ver_offset))
12691 return;
12692
12693 offset = offset + ver_offset - start;
12694 for (i = 0; i < 16; i += 4) {
12695 __be32 v;
12696 if (tg3_nvram_read_be32(tp, offset + i, &v))
12697 return;
12698
12699 memcpy(tp->fw_ver + i, &v, sizeof(v));
12700 }
12701 } else {
12702 u32 major, minor;
12703
12704 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
12705 return;
12706
12707 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
12708 TG3_NVM_BCVER_MAJSFT;
12709 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
12710 snprintf(&tp->fw_ver[0], 32, "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000012711 }
12712}
12713
Matt Carlsona6f6cb12009-02-25 14:27:43 +000012714static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
12715{
12716 u32 val, major, minor;
12717
12718 /* Use native endian representation */
12719 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
12720 return;
12721
12722 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
12723 TG3_NVM_HWSB_CFG1_MAJSFT;
12724 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
12725 TG3_NVM_HWSB_CFG1_MINSFT;
12726
12727 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
12728}
12729
Matt Carlsondfe00d72008-11-21 17:19:41 -080012730static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
12731{
12732 u32 offset, major, minor, build;
12733
12734 tp->fw_ver[0] = 's';
12735 tp->fw_ver[1] = 'b';
12736 tp->fw_ver[2] = '\0';
12737
12738 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
12739 return;
12740
12741 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
12742 case TG3_EEPROM_SB_REVISION_0:
12743 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
12744 break;
12745 case TG3_EEPROM_SB_REVISION_2:
12746 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
12747 break;
12748 case TG3_EEPROM_SB_REVISION_3:
12749 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
12750 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000012751 case TG3_EEPROM_SB_REVISION_4:
12752 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
12753 break;
12754 case TG3_EEPROM_SB_REVISION_5:
12755 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
12756 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080012757 default:
12758 return;
12759 }
12760
Matt Carlsone4f34112009-02-25 14:25:00 +000012761 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080012762 return;
12763
12764 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
12765 TG3_EEPROM_SB_EDH_BLD_SHFT;
12766 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
12767 TG3_EEPROM_SB_EDH_MAJ_SHFT;
12768 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
12769
12770 if (minor > 99 || build > 26)
12771 return;
12772
12773 snprintf(&tp->fw_ver[2], 30, " v%d.%02d", major, minor);
12774
12775 if (build > 0) {
12776 tp->fw_ver[8] = 'a' + build - 1;
12777 tp->fw_ver[9] = '\0';
12778 }
12779}
12780
Matt Carlsonacd9c112009-02-25 14:26:33 +000012781static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080012782{
12783 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012784 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070012785
12786 for (offset = TG3_NVM_DIR_START;
12787 offset < TG3_NVM_DIR_END;
12788 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000012789 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012790 return;
12791
12792 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
12793 break;
12794 }
12795
12796 if (offset == TG3_NVM_DIR_END)
12797 return;
12798
12799 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
12800 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000012801 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012802 return;
12803
Matt Carlsone4f34112009-02-25 14:25:00 +000012804 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012805 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000012806 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012807 return;
12808
12809 offset += val - start;
12810
Matt Carlsonacd9c112009-02-25 14:26:33 +000012811 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012812
Matt Carlsonacd9c112009-02-25 14:26:33 +000012813 tp->fw_ver[vlen++] = ',';
12814 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070012815
12816 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012817 __be32 v;
12818 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012819 return;
12820
Al Virob9fc7dc2007-12-17 22:59:57 -080012821 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012822
Matt Carlsonacd9c112009-02-25 14:26:33 +000012823 if (vlen > TG3_VER_SIZE - sizeof(v)) {
12824 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012825 break;
12826 }
12827
Matt Carlsonacd9c112009-02-25 14:26:33 +000012828 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
12829 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012830 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000012831}
12832
Matt Carlson7fd76442009-02-25 14:27:20 +000012833static void __devinit tg3_read_dash_ver(struct tg3 *tp)
12834{
12835 int vlen;
12836 u32 apedata;
12837
12838 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) ||
12839 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
12840 return;
12841
12842 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
12843 if (apedata != APE_SEG_SIG_MAGIC)
12844 return;
12845
12846 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
12847 if (!(apedata & APE_FW_STATUS_READY))
12848 return;
12849
12850 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
12851
12852 vlen = strlen(tp->fw_ver);
12853
12854 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " DASH v%d.%d.%d.%d",
12855 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
12856 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
12857 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
12858 (apedata & APE_FW_VERSION_BLDMSK));
12859}
12860
Matt Carlsonacd9c112009-02-25 14:26:33 +000012861static void __devinit tg3_read_fw_ver(struct tg3 *tp)
12862{
12863 u32 val;
12864
Matt Carlsondf259d82009-04-20 06:57:14 +000012865 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) {
12866 tp->fw_ver[0] = 's';
12867 tp->fw_ver[1] = 'b';
12868 tp->fw_ver[2] = '\0';
12869
12870 return;
12871 }
12872
Matt Carlsonacd9c112009-02-25 14:26:33 +000012873 if (tg3_nvram_read(tp, 0, &val))
12874 return;
12875
12876 if (val == TG3_EEPROM_MAGIC)
12877 tg3_read_bc_ver(tp);
12878 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
12879 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000012880 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
12881 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000012882 else
12883 return;
12884
12885 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
12886 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
12887 return;
12888
12889 tg3_read_mgmtfw_ver(tp);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012890
12891 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080012892}
12893
Michael Chan7544b092007-05-05 13:08:32 -070012894static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
12895
Linus Torvalds1da177e2005-04-16 15:20:36 -070012896static int __devinit tg3_get_invariants(struct tg3 *tp)
12897{
12898 static struct pci_device_id write_reorder_chipsets[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012899 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
12900 PCI_DEVICE_ID_AMD_FE_GATE_700C) },
John W. Linvillec165b002006-07-08 13:28:53 -070012901 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
12902 PCI_DEVICE_ID_AMD_8131_BRIDGE) },
Michael Chan399de502005-10-03 14:02:39 -070012903 { PCI_DEVICE(PCI_VENDOR_ID_VIA,
12904 PCI_DEVICE_ID_VIA_8385_0) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012905 { },
12906 };
12907 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012908 u32 pci_state_reg, grc_misc_cfg;
12909 u32 val;
12910 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080012911 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012912
Linus Torvalds1da177e2005-04-16 15:20:36 -070012913 /* Force memory write invalidate off. If we leave it on,
12914 * then on 5700_BX chips we have to enable a workaround.
12915 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
12916 * to match the cacheline size. The Broadcom driver have this
12917 * workaround but turns MWI off all the times so never uses
12918 * it. This seems to suggest that the workaround is insufficient.
12919 */
12920 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
12921 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
12922 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
12923
12924 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
12925 * has the register indirect write enable bit set before
12926 * we try to access any of the MMIO registers. It is also
12927 * critical that the PCI-X hw workaround situation is decided
12928 * before that as well.
12929 */
12930 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12931 &misc_ctrl_reg);
12932
12933 tp->pci_chip_rev_id = (misc_ctrl_reg >>
12934 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070012935 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
12936 u32 prod_id_asic_rev;
12937
Matt Carlson5001e2f2009-11-13 13:03:51 +000012938 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
12939 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
12940 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5724)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012941 pci_read_config_dword(tp->pdev,
12942 TG3PCI_GEN2_PRODID_ASICREV,
12943 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000012944 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
12945 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
12946 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
12947 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
12948 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
12949 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
12950 pci_read_config_dword(tp->pdev,
12951 TG3PCI_GEN15_PRODID_ASICREV,
12952 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012953 else
12954 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
12955 &prod_id_asic_rev);
12956
Matt Carlson321d32a2008-11-21 17:22:19 -080012957 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070012958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012959
Michael Chanff645be2005-04-21 17:09:53 -070012960 /* Wrong chip ID in 5752 A0. This code can be removed later
12961 * as A0 is not in production.
12962 */
12963 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
12964 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
12965
Michael Chan68929142005-08-09 20:17:14 -070012966 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
12967 * we need to disable memory and use config. cycles
12968 * only to access all registers. The 5702/03 chips
12969 * can mistakenly decode the special cycles from the
12970 * ICH chipsets as memory write cycles, causing corruption
12971 * of register and memory space. Only certain ICH bridges
12972 * will drive special cycles with non-zero data during the
12973 * address phase which can fall within the 5703's address
12974 * range. This is not an ICH bug as the PCI spec allows
12975 * non-zero address during special cycles. However, only
12976 * these ICH bridges are known to drive non-zero addresses
12977 * during special cycles.
12978 *
12979 * Since special cycles do not cross PCI bridges, we only
12980 * enable this workaround if the 5703 is on the secondary
12981 * bus of these ICH bridges.
12982 */
12983 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
12984 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
12985 static struct tg3_dev_id {
12986 u32 vendor;
12987 u32 device;
12988 u32 rev;
12989 } ich_chipsets[] = {
12990 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
12991 PCI_ANY_ID },
12992 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
12993 PCI_ANY_ID },
12994 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
12995 0xa },
12996 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
12997 PCI_ANY_ID },
12998 { },
12999 };
13000 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13001 struct pci_dev *bridge = NULL;
13002
13003 while (pci_id->vendor != 0) {
13004 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13005 bridge);
13006 if (!bridge) {
13007 pci_id++;
13008 continue;
13009 }
13010 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013011 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013012 continue;
13013 }
13014 if (bridge->subordinate &&
13015 (bridge->subordinate->number ==
13016 tp->pdev->bus->number)) {
13017
13018 tp->tg3_flags2 |= TG3_FLG2_ICH_WORKAROUND;
13019 pci_dev_put(bridge);
13020 break;
13021 }
13022 }
13023 }
13024
Matt Carlson41588ba2008-04-19 18:12:33 -070013025 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
13026 static struct tg3_dev_id {
13027 u32 vendor;
13028 u32 device;
13029 } bridge_chipsets[] = {
13030 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13031 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13032 { },
13033 };
13034 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13035 struct pci_dev *bridge = NULL;
13036
13037 while (pci_id->vendor != 0) {
13038 bridge = pci_get_device(pci_id->vendor,
13039 pci_id->device,
13040 bridge);
13041 if (!bridge) {
13042 pci_id++;
13043 continue;
13044 }
13045 if (bridge->subordinate &&
13046 (bridge->subordinate->number <=
13047 tp->pdev->bus->number) &&
13048 (bridge->subordinate->subordinate >=
13049 tp->pdev->bus->number)) {
13050 tp->tg3_flags3 |= TG3_FLG3_5701_DMA_BUG;
13051 pci_dev_put(bridge);
13052 break;
13053 }
13054 }
13055 }
13056
Michael Chan4a29cc22006-03-19 13:21:12 -080013057 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
13058 * DMA addresses > 40-bit. This bridge may have other additional
13059 * 57xx devices behind it in some 4-port NIC designs for example.
13060 * Any tg3 device found behind the bridge will also need the 40-bit
13061 * DMA workaround.
13062 */
Michael Chana4e2b342005-10-26 15:46:52 -070013063 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
13064 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
13065 tp->tg3_flags2 |= TG3_FLG2_5780_CLASS;
Michael Chan4a29cc22006-03-19 13:21:12 -080013066 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
Michael Chan4cf78e42005-07-25 12:29:19 -070013067 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Michael Chana4e2b342005-10-26 15:46:52 -070013068 }
Michael Chan4a29cc22006-03-19 13:21:12 -080013069 else {
13070 struct pci_dev *bridge = NULL;
13071
13072 do {
13073 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
13074 PCI_DEVICE_ID_SERVERWORKS_EPB,
13075 bridge);
13076 if (bridge && bridge->subordinate &&
13077 (bridge->subordinate->number <=
13078 tp->pdev->bus->number) &&
13079 (bridge->subordinate->subordinate >=
13080 tp->pdev->bus->number)) {
13081 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
13082 pci_dev_put(bridge);
13083 break;
13084 }
13085 } while (bridge);
13086 }
Michael Chan4cf78e42005-07-25 12:29:19 -070013087
Linus Torvalds1da177e2005-04-16 15:20:36 -070013088 /* Initialize misc host control in PCI block. */
13089 tp->misc_host_ctrl |= (misc_ctrl_reg &
13090 MISC_HOST_CTRL_CHIPREV);
13091 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13092 tp->misc_host_ctrl);
13093
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013094 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
13095 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
13096 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Michael Chan7544b092007-05-05 13:08:32 -070013097 tp->pdev_peer = tg3_find_peer(tp);
13098
Matt Carlson321d32a2008-11-21 17:22:19 -080013099 /* Intentionally exclude ASIC_REV_5906 */
13100 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad2006-03-20 22:27:35 -080013101 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013102 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013103 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013104 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013105 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlsonb703df62009-12-03 08:36:21 +000013106 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13107 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080013108 tp->tg3_flags3 |= TG3_FLG3_5755_PLUS;
13109
13110 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13111 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070013112 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013113 (tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
Michael Chana4e2b342005-10-26 15:46:52 -070013114 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
John W. Linville6708e5c2005-04-21 17:00:52 -070013115 tp->tg3_flags2 |= TG3_FLG2_5750_PLUS;
13116
John W. Linville1b440c562005-04-21 17:03:18 -070013117 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) ||
13118 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
13119 tp->tg3_flags2 |= TG3_FLG2_5705_PLUS;
13120
Matt Carlson027455a2008-12-21 20:19:30 -080013121 /* 5700 B0 chips do not support checksumming correctly due
13122 * to hardware bugs.
13123 */
13124 if (tp->pci_chip_rev_id == CHIPREV_ID_5700_B0)
13125 tp->tg3_flags |= TG3_FLAG_BROKEN_CHECKSUMS;
13126 else {
13127 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
13128 tp->dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
13129 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
13130 tp->dev->features |= NETIF_F_IPV6_CSUM;
13131 }
13132
Matt Carlson507399f2009-11-13 13:03:37 +000013133 /* Determine TSO capabilities */
Matt Carlsonb703df62009-12-03 08:36:21 +000013134 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13135 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsone849cdc2009-11-13 13:03:38 +000013136 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_3;
13137 else if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
13138 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlson507399f2009-11-13 13:03:37 +000013139 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_2;
13140 else if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
13141 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_1 | TG3_FLG2_TSO_BUG;
13142 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
13143 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
13144 tp->tg3_flags2 &= ~TG3_FLG2_TSO_BUG;
13145 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13146 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13147 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
13148 tp->tg3_flags2 |= TG3_FLG2_TSO_BUG;
13149 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
13150 tp->fw_needed = FIRMWARE_TG3TSO5;
13151 else
13152 tp->fw_needed = FIRMWARE_TG3TSO;
13153 }
13154
13155 tp->irq_max = 1;
13156
Michael Chan5a6f3072006-03-20 22:28:05 -080013157 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Michael Chan7544b092007-05-05 13:08:32 -070013158 tp->tg3_flags |= TG3_FLAG_SUPPORT_MSI;
13159 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
13160 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
13161 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
13162 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
13163 tp->pdev_peer == tp->pdev))
13164 tp->tg3_flags &= ~TG3_FLAG_SUPPORT_MSI;
13165
Matt Carlson321d32a2008-11-21 17:22:19 -080013166 if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070013167 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080013168 tp->tg3_flags2 |= TG3_FLG2_1SHOT_MSI;
Michael Chan52c0fd82006-06-29 20:15:54 -070013169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013170
Matt Carlsonb703df62009-12-03 08:36:21 +000013171 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13172 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlson507399f2009-11-13 13:03:37 +000013173 tp->tg3_flags |= TG3_FLAG_SUPPORT_MSIX;
13174 tp->irq_max = TG3_IRQ_MAX_VECS;
13175 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013176 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000013177
Matt Carlson615774f2009-11-13 13:03:39 +000013178 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13179 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13180 tp->tg3_flags3 |= TG3_FLG3_SHORT_DMA_BUG;
13181 else if (!(tp->tg3_flags3 & TG3_FLG3_5755_PLUS)) {
13182 tp->tg3_flags3 |= TG3_FLG3_4G_DMA_BNDRY_BUG;
13183 tp->tg3_flags3 |= TG3_FLG3_40BIT_DMA_LIMIT_BUG;
Matt Carlson0e1406d2009-11-02 12:33:33 +000013184 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013185
Matt Carlsonb703df62009-12-03 08:36:21 +000013186 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13187 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
13188 tp->tg3_flags3 |= TG3_FLG3_USE_JUMBO_BDFLAG;
13189
Matt Carlsonf51f3562008-05-25 23:45:08 -070013190 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013191 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
Matt Carlsonb703df62009-12-03 08:36:21 +000013192 (tp->tg3_flags3 & TG3_FLG3_USE_JUMBO_BDFLAG))
Matt Carlson8f666b02009-08-28 13:58:24 +000013193 tp->tg3_flags |= TG3_FLAG_JUMBO_CAPABLE;
Michael Chan0f893dc2005-07-25 12:30:38 -070013194
Matt Carlson52f44902008-11-21 17:17:04 -080013195 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13196 &pci_state_reg);
13197
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013198 tp->pcie_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_EXP);
13199 if (tp->pcie_cap != 0) {
13200 u16 lnkctl;
13201
Linus Torvalds1da177e2005-04-16 15:20:36 -070013202 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013203
13204 pcie_set_readrq(tp->pdev, 4096);
13205
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013206 pci_read_config_word(tp->pdev,
13207 tp->pcie_cap + PCI_EXP_LNKCTL,
13208 &lnkctl);
13209 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
13210 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanc7835a72006-11-15 21:14:42 -080013211 tp->tg3_flags2 &= ~TG3_FLG2_HW_TSO_2;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013212 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013213 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000013214 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
13215 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013216 tp->tg3_flags3 |= TG3_FLG3_CLKREQ_BUG;
Matt Carlson614b0592010-01-20 16:58:02 +000013217 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
13218 tp->tg3_flags3 |= TG3_FLG3_L1PLLPD_EN;
Michael Chanc7835a72006-11-15 21:14:42 -080013219 }
Matt Carlson52f44902008-11-21 17:17:04 -080013220 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlsonfcb389d2008-11-03 16:55:44 -080013221 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
Matt Carlson52f44902008-11-21 17:17:04 -080013222 } else if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
13223 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
13224 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
13225 if (!tp->pcix_cap) {
Joe Perches05dbe002010-02-17 19:44:19 +000013226 pr_err("Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080013227 return -EIO;
13228 }
13229
13230 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
13231 tp->tg3_flags |= TG3_FLAG_PCIX_MODE;
13232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013233
Michael Chan399de502005-10-03 14:02:39 -070013234 /* If we have an AMD 762 or VIA K8T800 chipset, write
13235 * reordering to the mailbox registers done by the host
13236 * controller can cause major troubles. We read back from
13237 * every mailbox register write to force the writes to be
13238 * posted to the chip in order.
13239 */
13240 if (pci_dev_present(write_reorder_chipsets) &&
13241 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
13242 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
13243
Matt Carlson69fc4052008-12-21 20:19:57 -080013244 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
13245 &tp->pci_cacheline_sz);
13246 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13247 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013248 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13249 tp->pci_lat_timer < 64) {
13250 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080013251 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13252 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013253 }
13254
Matt Carlson52f44902008-11-21 17:17:04 -080013255 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
13256 /* 5700 BX chips need to have their TX producer index
13257 * mailboxes written twice to workaround a bug.
13258 */
13259 tp->tg3_flags |= TG3_FLAG_TXD_MBOX_HWBUG;
Matt Carlson9974a352007-10-07 23:27:28 -070013260
Matt Carlson52f44902008-11-21 17:17:04 -080013261 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013262 *
13263 * The workaround is to use indirect register accesses
13264 * for all chip writes not to mailbox registers.
13265 */
Matt Carlson52f44902008-11-21 17:17:04 -080013266 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013267 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013268
13269 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
13270
13271 /* The chip can have it's power management PCI config
13272 * space registers clobbered due to this bug.
13273 * So explicitly force the chip into D0 here.
13274 */
Matt Carlson9974a352007-10-07 23:27:28 -070013275 pci_read_config_dword(tp->pdev,
13276 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013277 &pm_reg);
13278 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
13279 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070013280 pci_write_config_dword(tp->pdev,
13281 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013282 pm_reg);
13283
13284 /* Also, force SERR#/PERR# in PCI command. */
13285 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13286 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
13287 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13288 }
13289 }
13290
Linus Torvalds1da177e2005-04-16 15:20:36 -070013291 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
13292 tp->tg3_flags |= TG3_FLAG_PCI_HIGH_SPEED;
13293 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
13294 tp->tg3_flags |= TG3_FLAG_PCI_32BIT;
13295
13296 /* Chip-specific fixup from Broadcom driver */
13297 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
13298 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
13299 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
13300 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
13301 }
13302
Michael Chan1ee582d2005-08-09 20:16:46 -070013303 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070013304 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013305 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070013306 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070013307 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013308 tp->write32_tx_mbox = tg3_write32;
13309 tp->write32_rx_mbox = tg3_write32;
13310
13311 /* Various workaround register access methods */
13312 if (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG)
13313 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013314 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
13315 ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
13316 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
13317 /*
13318 * Back to back register writes can cause problems on these
13319 * chips, the workaround is to read back all reg writes
13320 * except those to mailbox regs.
13321 *
13322 * See tg3_write_indirect_reg32().
13323 */
Michael Chan1ee582d2005-08-09 20:16:46 -070013324 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013325 }
13326
Michael Chan1ee582d2005-08-09 20:16:46 -070013327 if ((tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG) ||
13328 (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)) {
13329 tp->write32_tx_mbox = tg3_write32_tx_mbox;
13330 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
13331 tp->write32_rx_mbox = tg3_write_flush_reg32;
13332 }
Michael Chan20094932005-08-09 20:16:32 -070013333
Michael Chan68929142005-08-09 20:17:14 -070013334 if (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND) {
13335 tp->read32 = tg3_read_indirect_reg32;
13336 tp->write32 = tg3_write_indirect_reg32;
13337 tp->read32_mbox = tg3_read_indirect_mbox;
13338 tp->write32_mbox = tg3_write_indirect_mbox;
13339 tp->write32_tx_mbox = tg3_write_indirect_mbox;
13340 tp->write32_rx_mbox = tg3_write_indirect_mbox;
13341
13342 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070013343 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070013344
13345 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13346 pci_cmd &= ~PCI_COMMAND_MEMORY;
13347 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13348 }
Michael Chanb5d37722006-09-27 16:06:21 -070013349 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
13350 tp->read32_mbox = tg3_read32_mbox_5906;
13351 tp->write32_mbox = tg3_write32_mbox_5906;
13352 tp->write32_tx_mbox = tg3_write32_mbox_5906;
13353 tp->write32_rx_mbox = tg3_write32_mbox_5906;
13354 }
Michael Chan68929142005-08-09 20:17:14 -070013355
Michael Chanbbadf502006-04-06 21:46:34 -070013356 if (tp->write32 == tg3_write_indirect_reg32 ||
13357 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
13358 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070013359 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Michael Chanbbadf502006-04-06 21:46:34 -070013360 tp->tg3_flags |= TG3_FLAG_SRAM_USE_CONFIG;
13361
Michael Chan7d0c41e2005-04-21 17:06:20 -070013362 /* Get eeprom hw config before calling tg3_set_power_state().
Michael Chan9d26e212006-12-07 00:21:14 -080013363 * In particular, the TG3_FLG2_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070013364 * determined before calling tg3_set_power_state() so that
13365 * we know whether or not to switch out of Vaux power.
13366 * When the flag is set, it means that GPIO1 is used for eeprom
13367 * write protect and also implies that it is a LOM where GPIOs
13368 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013369 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070013370 tg3_get_eeprom_hw_cfg(tp);
13371
Matt Carlson0d3031d2007-10-10 18:02:43 -070013372 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
13373 /* Allow reads and writes to the
13374 * APE register and memory space.
13375 */
13376 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
13377 PCISTATE_ALLOW_APE_SHMEM_WR;
13378 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
13379 pci_state_reg);
13380 }
13381
Matt Carlson9936bcf2007-10-10 18:03:07 -070013382 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013383 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013384 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013385 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlsonb703df62009-12-03 08:36:21 +000013386 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13387 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsond30cdd22007-10-07 23:28:35 -070013388 tp->tg3_flags |= TG3_FLAG_CPMU_PRESENT;
13389
Michael Chan314fba32005-04-21 17:07:04 -070013390 /* Set up tp->grc_local_ctrl before calling tg3_set_power_state().
13391 * GPIO1 driven high will bring 5700's external PHY out of reset.
13392 * It is also used as eeprom write protect on LOMs.
13393 */
13394 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
13395 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
13396 (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT))
13397 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
13398 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070013399 /* Unused GPIO3 must be driven as output on 5752 because there
13400 * are no pull-up resistors on unused GPIO pins.
13401 */
13402 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13403 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070013404
Matt Carlson321d32a2008-11-21 17:22:19 -080013405 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000013406 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
13407 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Michael Chanaf36e6b2006-03-23 01:28:06 -080013408 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13409
Matt Carlson8d519ab2009-04-20 06:58:01 +000013410 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
13411 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070013412 /* Turn off the debug UART. */
13413 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13414 if (tp->tg3_flags2 & TG3_FLG2_IS_NIC)
13415 /* Keep VMain power. */
13416 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
13417 GRC_LCLCTRL_GPIO_OUTPUT0;
13418 }
13419
Linus Torvalds1da177e2005-04-16 15:20:36 -070013420 /* Force the chip into D0. */
Michael Chanbc1c7562006-03-20 17:48:03 -080013421 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013422 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000013423 pr_err("(%s) transition to D0 failed\n", pci_name(tp->pdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070013424 return err;
13425 }
13426
Linus Torvalds1da177e2005-04-16 15:20:36 -070013427 /* Derive initial jumbo mode from MTU assigned in
13428 * ether_setup() via the alloc_etherdev() call
13429 */
Michael Chan0f893dc2005-07-25 12:30:38 -070013430 if (tp->dev->mtu > ETH_DATA_LEN &&
Michael Chana4e2b342005-10-26 15:46:52 -070013431 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan0f893dc2005-07-25 12:30:38 -070013432 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013433
13434 /* Determine WakeOnLan speed to use. */
13435 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13436 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
13437 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
13438 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
13439 tp->tg3_flags &= ~(TG3_FLAG_WOL_SPEED_100MB);
13440 } else {
13441 tp->tg3_flags |= TG3_FLAG_WOL_SPEED_100MB;
13442 }
13443
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013444 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13445 tp->tg3_flags3 |= TG3_FLG3_PHY_IS_FET;
13446
Linus Torvalds1da177e2005-04-16 15:20:36 -070013447 /* A few boards don't want Ethernet@WireSpeed phy feature */
13448 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
13449 ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
13450 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070013451 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013452 (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) ||
Michael Chan747e8f82005-07-25 12:33:22 -070013453 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013454 tp->tg3_flags2 |= TG3_FLG2_NO_ETH_WIRE_SPEED;
13455
13456 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
13457 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
13458 tp->tg3_flags2 |= TG3_FLG2_PHY_ADC_BUG;
13459 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
13460 tp->tg3_flags2 |= TG3_FLG2_PHY_5704_A0_BUG;
13461
Matt Carlson321d32a2008-11-21 17:22:19 -080013462 if ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013463 !(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080013464 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013465 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Matt Carlsonb703df62009-12-03 08:36:21 +000013466 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
13467 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765) {
Michael Chanc424cb22006-04-29 18:56:34 -070013468 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013469 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013470 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
13471 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080013472 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
13473 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
13474 tp->tg3_flags2 |= TG3_FLG2_PHY_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080013475 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
13476 tp->tg3_flags2 |= TG3_FLG2_PHY_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080013477 } else
Michael Chanc424cb22006-04-29 18:56:34 -070013478 tp->tg3_flags2 |= TG3_FLG2_PHY_BER_BUG;
13479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013480
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013481 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13482 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
13483 tp->phy_otp = tg3_read_otp_phycfg(tp);
13484 if (tp->phy_otp == 0)
13485 tp->phy_otp = TG3_OTP_DEFAULT;
13486 }
13487
Matt Carlsonf51f3562008-05-25 23:45:08 -070013488 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)
Matt Carlson8ef21422008-05-02 16:47:53 -070013489 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
13490 else
13491 tp->mi_mode = MAC_MI_MODE_BASE;
13492
Linus Torvalds1da177e2005-04-16 15:20:36 -070013493 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013494 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
13495 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
13496 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
13497
Matt Carlson321d32a2008-11-21 17:22:19 -080013498 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
13499 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson57e69832008-05-25 23:48:31 -070013500 tp->tg3_flags3 |= TG3_FLG3_USE_PHYLIB;
13501
Matt Carlson158d7ab2008-05-29 01:37:54 -070013502 err = tg3_mdio_init(tp);
13503 if (err)
13504 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013505
Matt Carlson55dffe72010-01-12 10:11:39 +000013506 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
13507 (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0 ||
13508 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)))
13509 return -ENOTSUPP;
13510
Linus Torvalds1da177e2005-04-16 15:20:36 -070013511 /* Initialize data/descriptor byte/word swapping. */
13512 val = tr32(GRC_MODE);
13513 val &= GRC_MODE_HOST_STACKUP;
13514 tw32(GRC_MODE, val | tp->grc_mode);
13515
13516 tg3_switch_clocks(tp);
13517
13518 /* Clear this out for sanity. */
13519 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
13520
13521 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13522 &pci_state_reg);
13523 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
13524 (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) == 0) {
13525 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
13526
13527 if (chiprevid == CHIPREV_ID_5701_A0 ||
13528 chiprevid == CHIPREV_ID_5701_B0 ||
13529 chiprevid == CHIPREV_ID_5701_B2 ||
13530 chiprevid == CHIPREV_ID_5701_B5) {
13531 void __iomem *sram_base;
13532
13533 /* Write some dummy words into the SRAM status block
13534 * area, see if it reads back correctly. If the return
13535 * value is bad, force enable the PCIX workaround.
13536 */
13537 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
13538
13539 writel(0x00000000, sram_base);
13540 writel(0x00000000, sram_base + 4);
13541 writel(0xffffffff, sram_base + 4);
13542 if (readl(sram_base) != 0x00000000)
13543 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
13544 }
13545 }
13546
13547 udelay(50);
13548 tg3_nvram_init(tp);
13549
13550 grc_misc_cfg = tr32(GRC_MISC_CFG);
13551 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
13552
Linus Torvalds1da177e2005-04-16 15:20:36 -070013553 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
13554 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
13555 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
13556 tp->tg3_flags2 |= TG3_FLG2_IS_5788;
13557
David S. Millerfac9b832005-05-18 22:46:34 -070013558 if (!(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
13559 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700))
13560 tp->tg3_flags |= TG3_FLAG_TAGGED_STATUS;
13561 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
13562 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
13563 HOSTCC_MODE_CLRTICK_TXBD);
13564
13565 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
13566 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13567 tp->misc_host_ctrl);
13568 }
13569
Matt Carlson3bda1252008-08-15 14:08:22 -070013570 /* Preserve the APE MAC_MODE bits */
13571 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
13572 tp->mac_mode = tr32(MAC_MODE) |
13573 MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
13574 else
13575 tp->mac_mode = TG3_DEF_MAC_MODE;
13576
Linus Torvalds1da177e2005-04-16 15:20:36 -070013577 /* these are limited to 10/100 only */
13578 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13579 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
13580 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
13581 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
13582 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
13583 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
13584 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
13585 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
13586 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080013587 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
13588 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013589 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000013590 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13591 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013592 (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013593 tp->tg3_flags |= TG3_FLAG_10_100_ONLY;
13594
13595 err = tg3_phy_probe(tp);
13596 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000013597 pr_err("(%s) phy probe failed, err %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070013598 pci_name(tp->pdev), err);
13599 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013600 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013601 }
13602
13603 tg3_read_partno(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080013604 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013605
13606 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
13607 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
13608 } else {
13609 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
13610 tp->tg3_flags |= TG3_FLAG_USE_MI_INTERRUPT;
13611 else
13612 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
13613 }
13614
13615 /* 5700 {AX,BX} chips have a broken status block link
13616 * change bit implementation, so we must use the
13617 * status register in those cases.
13618 */
13619 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
13620 tp->tg3_flags |= TG3_FLAG_USE_LINKCHG_REG;
13621 else
13622 tp->tg3_flags &= ~TG3_FLAG_USE_LINKCHG_REG;
13623
13624 /* The led_ctrl is set during tg3_phy_probe, here we might
13625 * have to force the link status polling mechanism based
13626 * upon subsystem IDs.
13627 */
13628 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070013629 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070013630 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
13631 tp->tg3_flags |= (TG3_FLAG_USE_MI_INTERRUPT |
13632 TG3_FLAG_USE_LINKCHG_REG);
13633 }
13634
13635 /* For all SERDES we poll the MAC status register. */
13636 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
13637 tp->tg3_flags |= TG3_FLAG_POLL_SERDES;
13638 else
13639 tp->tg3_flags &= ~TG3_FLAG_POLL_SERDES;
13640
Matt Carlsonad829262008-11-21 17:16:16 -080013641 tp->rx_offset = NET_IP_ALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013642 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
13643 (tp->tg3_flags & TG3_FLAG_PCIX_MODE) != 0)
13644 tp->rx_offset = 0;
13645
Michael Chanf92905d2006-06-29 20:14:29 -070013646 tp->rx_std_max_post = TG3_RX_RING_SIZE;
13647
13648 /* Increment the rx prod index on the rx std ring by at most
13649 * 8 for these chips to workaround hw errata.
13650 */
13651 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13652 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
13653 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
13654 tp->rx_std_max_post = 8;
13655
Matt Carlson8ed5d972007-05-07 00:25:49 -070013656 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND)
13657 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
13658 PCIE_PWR_MGMT_L1_THRESH_MSK;
13659
Linus Torvalds1da177e2005-04-16 15:20:36 -070013660 return err;
13661}
13662
David S. Miller49b6e95f2007-03-29 01:38:42 -070013663#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013664static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
13665{
13666 struct net_device *dev = tp->dev;
13667 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070013668 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070013669 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070013670 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013671
David S. Miller49b6e95f2007-03-29 01:38:42 -070013672 addr = of_get_property(dp, "local-mac-address", &len);
13673 if (addr && len == 6) {
13674 memcpy(dev->dev_addr, addr, 6);
13675 memcpy(dev->perm_addr, dev->dev_addr, 6);
13676 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013677 }
13678 return -ENODEV;
13679}
13680
13681static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
13682{
13683 struct net_device *dev = tp->dev;
13684
13685 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070013686 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013687 return 0;
13688}
13689#endif
13690
13691static int __devinit tg3_get_device_address(struct tg3 *tp)
13692{
13693 struct net_device *dev = tp->dev;
13694 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080013695 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013696
David S. Miller49b6e95f2007-03-29 01:38:42 -070013697#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013698 if (!tg3_get_macaddr_sparc(tp))
13699 return 0;
13700#endif
13701
13702 mac_offset = 0x7c;
David S. Millerf49639e2006-06-09 11:58:36 -070013703 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
Michael Chana4e2b342005-10-26 15:46:52 -070013704 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013705 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
13706 mac_offset = 0xcc;
13707 if (tg3_nvram_lock(tp))
13708 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
13709 else
13710 tg3_nvram_unlock(tp);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013711 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13712 if (tr32(TG3_CPMU_STATUS) & TG3_CPMU_STATUS_PCIE_FUNC)
13713 mac_offset = 0xcc;
13714 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070013715 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013716
13717 /* First try to get it from MAC address mailbox. */
13718 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
13719 if ((hi >> 16) == 0x484b) {
13720 dev->dev_addr[0] = (hi >> 8) & 0xff;
13721 dev->dev_addr[1] = (hi >> 0) & 0xff;
13722
13723 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
13724 dev->dev_addr[2] = (lo >> 24) & 0xff;
13725 dev->dev_addr[3] = (lo >> 16) & 0xff;
13726 dev->dev_addr[4] = (lo >> 8) & 0xff;
13727 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013728
Michael Chan008652b2006-03-27 23:14:53 -080013729 /* Some old bootcode may report a 0 MAC address in SRAM */
13730 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
13731 }
13732 if (!addr_ok) {
13733 /* Next, try NVRAM. */
Matt Carlsondf259d82009-04-20 06:57:14 +000013734 if (!(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) &&
13735 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000013736 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070013737 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
13738 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080013739 }
13740 /* Finally just fetch it out of the MAC control regs. */
13741 else {
13742 hi = tr32(MAC_ADDR_0_HIGH);
13743 lo = tr32(MAC_ADDR_0_LOW);
13744
13745 dev->dev_addr[5] = lo & 0xff;
13746 dev->dev_addr[4] = (lo >> 8) & 0xff;
13747 dev->dev_addr[3] = (lo >> 16) & 0xff;
13748 dev->dev_addr[2] = (lo >> 24) & 0xff;
13749 dev->dev_addr[1] = hi & 0xff;
13750 dev->dev_addr[0] = (hi >> 8) & 0xff;
13751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013752 }
13753
13754 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070013755#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013756 if (!tg3_get_default_macaddr_sparc(tp))
13757 return 0;
13758#endif
13759 return -EINVAL;
13760 }
John W. Linville2ff43692005-09-12 14:44:20 -070013761 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013762 return 0;
13763}
13764
David S. Miller59e6b432005-05-18 22:50:10 -070013765#define BOUNDARY_SINGLE_CACHELINE 1
13766#define BOUNDARY_MULTI_CACHELINE 2
13767
13768static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
13769{
13770 int cacheline_size;
13771 u8 byte;
13772 int goal;
13773
13774 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
13775 if (byte == 0)
13776 cacheline_size = 1024;
13777 else
13778 cacheline_size = (int) byte * 4;
13779
13780 /* On 5703 and later chips, the boundary bits have no
13781 * effect.
13782 */
13783 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13784 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13785 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
13786 goto out;
13787
13788#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
13789 goal = BOUNDARY_MULTI_CACHELINE;
13790#else
13791#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
13792 goal = BOUNDARY_SINGLE_CACHELINE;
13793#else
13794 goal = 0;
13795#endif
13796#endif
13797
Matt Carlsonb703df62009-12-03 08:36:21 +000013798 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13799 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000013800 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
13801 goto out;
13802 }
13803
David S. Miller59e6b432005-05-18 22:50:10 -070013804 if (!goal)
13805 goto out;
13806
13807 /* PCI controllers on most RISC systems tend to disconnect
13808 * when a device tries to burst across a cache-line boundary.
13809 * Therefore, letting tg3 do so just wastes PCI bandwidth.
13810 *
13811 * Unfortunately, for PCI-E there are only limited
13812 * write-side controls for this, and thus for reads
13813 * we will still get the disconnects. We'll also waste
13814 * these PCI cycles for both read and write for chips
13815 * other than 5700 and 5701 which do not implement the
13816 * boundary bits.
13817 */
13818 if ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
13819 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
13820 switch (cacheline_size) {
13821 case 16:
13822 case 32:
13823 case 64:
13824 case 128:
13825 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13826 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
13827 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
13828 } else {
13829 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
13830 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
13831 }
13832 break;
13833
13834 case 256:
13835 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
13836 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
13837 break;
13838
13839 default:
13840 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
13841 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
13842 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013843 }
David S. Miller59e6b432005-05-18 22:50:10 -070013844 } else if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
13845 switch (cacheline_size) {
13846 case 16:
13847 case 32:
13848 case 64:
13849 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13850 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
13851 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
13852 break;
13853 }
13854 /* fallthrough */
13855 case 128:
13856 default:
13857 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
13858 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
13859 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013860 }
David S. Miller59e6b432005-05-18 22:50:10 -070013861 } else {
13862 switch (cacheline_size) {
13863 case 16:
13864 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13865 val |= (DMA_RWCTRL_READ_BNDRY_16 |
13866 DMA_RWCTRL_WRITE_BNDRY_16);
13867 break;
13868 }
13869 /* fallthrough */
13870 case 32:
13871 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13872 val |= (DMA_RWCTRL_READ_BNDRY_32 |
13873 DMA_RWCTRL_WRITE_BNDRY_32);
13874 break;
13875 }
13876 /* fallthrough */
13877 case 64:
13878 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13879 val |= (DMA_RWCTRL_READ_BNDRY_64 |
13880 DMA_RWCTRL_WRITE_BNDRY_64);
13881 break;
13882 }
13883 /* fallthrough */
13884 case 128:
13885 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13886 val |= (DMA_RWCTRL_READ_BNDRY_128 |
13887 DMA_RWCTRL_WRITE_BNDRY_128);
13888 break;
13889 }
13890 /* fallthrough */
13891 case 256:
13892 val |= (DMA_RWCTRL_READ_BNDRY_256 |
13893 DMA_RWCTRL_WRITE_BNDRY_256);
13894 break;
13895 case 512:
13896 val |= (DMA_RWCTRL_READ_BNDRY_512 |
13897 DMA_RWCTRL_WRITE_BNDRY_512);
13898 break;
13899 case 1024:
13900 default:
13901 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
13902 DMA_RWCTRL_WRITE_BNDRY_1024);
13903 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013904 }
David S. Miller59e6b432005-05-18 22:50:10 -070013905 }
13906
13907out:
13908 return val;
13909}
13910
Linus Torvalds1da177e2005-04-16 15:20:36 -070013911static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
13912{
13913 struct tg3_internal_buffer_desc test_desc;
13914 u32 sram_dma_descs;
13915 int i, ret;
13916
13917 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
13918
13919 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
13920 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
13921 tw32(RDMAC_STATUS, 0);
13922 tw32(WDMAC_STATUS, 0);
13923
13924 tw32(BUFMGR_MODE, 0);
13925 tw32(FTQ_RESET, 0);
13926
13927 test_desc.addr_hi = ((u64) buf_dma) >> 32;
13928 test_desc.addr_lo = buf_dma & 0xffffffff;
13929 test_desc.nic_mbuf = 0x00002100;
13930 test_desc.len = size;
13931
13932 /*
13933 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
13934 * the *second* time the tg3 driver was getting loaded after an
13935 * initial scan.
13936 *
13937 * Broadcom tells me:
13938 * ...the DMA engine is connected to the GRC block and a DMA
13939 * reset may affect the GRC block in some unpredictable way...
13940 * The behavior of resets to individual blocks has not been tested.
13941 *
13942 * Broadcom noted the GRC reset will also reset all sub-components.
13943 */
13944 if (to_device) {
13945 test_desc.cqid_sqid = (13 << 8) | 2;
13946
13947 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
13948 udelay(40);
13949 } else {
13950 test_desc.cqid_sqid = (16 << 8) | 7;
13951
13952 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
13953 udelay(40);
13954 }
13955 test_desc.flags = 0x00000005;
13956
13957 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
13958 u32 val;
13959
13960 val = *(((u32 *)&test_desc) + i);
13961 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
13962 sram_dma_descs + (i * sizeof(u32)));
13963 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
13964 }
13965 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
13966
13967 if (to_device) {
13968 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
13969 } else {
13970 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
13971 }
13972
13973 ret = -ENODEV;
13974 for (i = 0; i < 40; i++) {
13975 u32 val;
13976
13977 if (to_device)
13978 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
13979 else
13980 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
13981 if ((val & 0xffff) == sram_dma_descs) {
13982 ret = 0;
13983 break;
13984 }
13985
13986 udelay(100);
13987 }
13988
13989 return ret;
13990}
13991
David S. Millerded73402005-05-23 13:59:47 -070013992#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070013993
13994static int __devinit tg3_test_dma(struct tg3 *tp)
13995{
13996 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070013997 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000013998 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013999
14000 buf = pci_alloc_consistent(tp->pdev, TEST_BUFFER_SIZE, &buf_dma);
14001 if (!buf) {
14002 ret = -ENOMEM;
14003 goto out_nofree;
14004 }
14005
14006 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
14007 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
14008
David S. Miller59e6b432005-05-18 22:50:10 -070014009 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014010
Matt Carlsonb703df62009-12-03 08:36:21 +000014011 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14012 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014013 goto out;
14014
Linus Torvalds1da177e2005-04-16 15:20:36 -070014015 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
14016 /* DMA read watermark not used on PCIE */
14017 tp->dma_rwctrl |= 0x00180000;
14018 } else if (!(tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070014019 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14020 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014021 tp->dma_rwctrl |= 0x003f0000;
14022 else
14023 tp->dma_rwctrl |= 0x003f000f;
14024 } else {
14025 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14026 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
14027 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080014028 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014029
Michael Chan4a29cc22006-03-19 13:21:12 -080014030 /* If the 5704 is behind the EPB bridge, we can
14031 * do the less restrictive ONE_DMA workaround for
14032 * better performance.
14033 */
14034 if ((tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) &&
14035 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14036 tp->dma_rwctrl |= 0x8000;
14037 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014038 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
14039
Michael Chan49afdeb2007-02-13 12:17:03 -080014040 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
14041 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070014042 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080014043 tp->dma_rwctrl |=
14044 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
14045 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
14046 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070014047 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
14048 /* 5780 always in PCIX mode */
14049 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070014050 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
14051 /* 5714 always in PCIX mode */
14052 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014053 } else {
14054 tp->dma_rwctrl |= 0x001b000f;
14055 }
14056 }
14057
14058 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14059 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14060 tp->dma_rwctrl &= 0xfffffff0;
14061
14062 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14063 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
14064 /* Remove this if it causes problems for some boards. */
14065 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
14066
14067 /* On 5700/5701 chips, we need to set this bit.
14068 * Otherwise the chip will issue cacheline transactions
14069 * to streamable DMA memory with not all the byte
14070 * enables turned on. This is an error on several
14071 * RISC PCI controllers, in particular sparc64.
14072 *
14073 * On 5703/5704 chips, this bit has been reassigned
14074 * a different meaning. In particular, it is used
14075 * on those chips to enable a PCI-X workaround.
14076 */
14077 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
14078 }
14079
14080 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14081
14082#if 0
14083 /* Unneeded, already done by tg3_get_invariants. */
14084 tg3_switch_clocks(tp);
14085#endif
14086
Linus Torvalds1da177e2005-04-16 15:20:36 -070014087 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14088 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
14089 goto out;
14090
David S. Miller59e6b432005-05-18 22:50:10 -070014091 /* It is best to perform DMA test with maximum write burst size
14092 * to expose the 5700/5701 write DMA bug.
14093 */
14094 saved_dma_rwctrl = tp->dma_rwctrl;
14095 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14096 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14097
Linus Torvalds1da177e2005-04-16 15:20:36 -070014098 while (1) {
14099 u32 *p = buf, i;
14100
14101 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
14102 p[i] = i;
14103
14104 /* Send the buffer to the chip. */
14105 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
14106 if (ret) {
Joe Perches05dbe002010-02-17 19:44:19 +000014107 pr_err("tg3_test_dma() Write the buffer failed %d\n",
14108 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014109 break;
14110 }
14111
14112#if 0
14113 /* validate data reached card RAM correctly. */
14114 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14115 u32 val;
14116 tg3_read_mem(tp, 0x2100 + (i*4), &val);
14117 if (le32_to_cpu(val) != p[i]) {
Joe Perches05dbe002010-02-17 19:44:19 +000014118 pr_err(" tg3_test_dma() Card buffer corrupted on write! (%d != %d)\n",
14119 val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014120 /* ret = -ENODEV here? */
14121 }
14122 p[i] = 0;
14123 }
14124#endif
14125 /* Now read it back. */
14126 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
14127 if (ret) {
Joe Perches05dbe002010-02-17 19:44:19 +000014128 pr_err("tg3_test_dma() Read the buffer failed %d\n",
14129 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014130
14131 break;
14132 }
14133
14134 /* Verify it. */
14135 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14136 if (p[i] == i)
14137 continue;
14138
David S. Miller59e6b432005-05-18 22:50:10 -070014139 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14140 DMA_RWCTRL_WRITE_BNDRY_16) {
14141 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014142 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14143 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14144 break;
14145 } else {
Joe Perches05dbe002010-02-17 19:44:19 +000014146 pr_err("tg3_test_dma() buffer corrupted on read back! (%d != %d)\n",
14147 p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014148 ret = -ENODEV;
14149 goto out;
14150 }
14151 }
14152
14153 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
14154 /* Success. */
14155 ret = 0;
14156 break;
14157 }
14158 }
David S. Miller59e6b432005-05-18 22:50:10 -070014159 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14160 DMA_RWCTRL_WRITE_BNDRY_16) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014161 static struct pci_device_id dma_wait_state_chipsets[] = {
14162 { PCI_DEVICE(PCI_VENDOR_ID_APPLE,
14163 PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
14164 { },
14165 };
14166
David S. Miller59e6b432005-05-18 22:50:10 -070014167 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070014168 * now look for chipsets that are known to expose the
14169 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070014170 */
Michael Chan6d1cfba2005-06-08 14:13:14 -070014171 if (pci_dev_present(dma_wait_state_chipsets)) {
14172 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14173 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14174 }
14175 else
14176 /* Safe to use the calculated DMA boundary. */
14177 tp->dma_rwctrl = saved_dma_rwctrl;
14178
David S. Miller59e6b432005-05-18 22:50:10 -070014179 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014181
14182out:
14183 pci_free_consistent(tp->pdev, TEST_BUFFER_SIZE, buf, buf_dma);
14184out_nofree:
14185 return ret;
14186}
14187
14188static void __devinit tg3_init_link_config(struct tg3 *tp)
14189{
14190 tp->link_config.advertising =
14191 (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
14192 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
14193 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full |
14194 ADVERTISED_Autoneg | ADVERTISED_MII);
14195 tp->link_config.speed = SPEED_INVALID;
14196 tp->link_config.duplex = DUPLEX_INVALID;
14197 tp->link_config.autoneg = AUTONEG_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014198 tp->link_config.active_speed = SPEED_INVALID;
14199 tp->link_config.active_duplex = DUPLEX_INVALID;
14200 tp->link_config.phy_is_low_power = 0;
14201 tp->link_config.orig_speed = SPEED_INVALID;
14202 tp->link_config.orig_duplex = DUPLEX_INVALID;
14203 tp->link_config.orig_autoneg = AUTONEG_INVALID;
14204}
14205
14206static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
14207{
Matt Carlson666bc832010-01-20 16:58:03 +000014208 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14209 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
14210 tp->bufmgr_config.mbuf_read_dma_low_water =
14211 DEFAULT_MB_RDMA_LOW_WATER_5705;
14212 tp->bufmgr_config.mbuf_mac_rx_low_water =
14213 DEFAULT_MB_MACRX_LOW_WATER_57765;
14214 tp->bufmgr_config.mbuf_high_water =
14215 DEFAULT_MB_HIGH_WATER_57765;
14216
14217 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14218 DEFAULT_MB_RDMA_LOW_WATER_5705;
14219 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14220 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
14221 tp->bufmgr_config.mbuf_high_water_jumbo =
14222 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
14223 } else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chanfdfec1722005-07-25 12:31:48 -070014224 tp->bufmgr_config.mbuf_read_dma_low_water =
14225 DEFAULT_MB_RDMA_LOW_WATER_5705;
14226 tp->bufmgr_config.mbuf_mac_rx_low_water =
14227 DEFAULT_MB_MACRX_LOW_WATER_5705;
14228 tp->bufmgr_config.mbuf_high_water =
14229 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070014230 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14231 tp->bufmgr_config.mbuf_mac_rx_low_water =
14232 DEFAULT_MB_MACRX_LOW_WATER_5906;
14233 tp->bufmgr_config.mbuf_high_water =
14234 DEFAULT_MB_HIGH_WATER_5906;
14235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014236
Michael Chanfdfec1722005-07-25 12:31:48 -070014237 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14238 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
14239 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14240 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
14241 tp->bufmgr_config.mbuf_high_water_jumbo =
14242 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
14243 } else {
14244 tp->bufmgr_config.mbuf_read_dma_low_water =
14245 DEFAULT_MB_RDMA_LOW_WATER;
14246 tp->bufmgr_config.mbuf_mac_rx_low_water =
14247 DEFAULT_MB_MACRX_LOW_WATER;
14248 tp->bufmgr_config.mbuf_high_water =
14249 DEFAULT_MB_HIGH_WATER;
14250
14251 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14252 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
14253 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14254 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
14255 tp->bufmgr_config.mbuf_high_water_jumbo =
14256 DEFAULT_MB_HIGH_WATER_JUMBO;
14257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014258
14259 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
14260 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
14261}
14262
14263static char * __devinit tg3_phy_string(struct tg3 *tp)
14264{
Matt Carlson79eb6902010-02-17 15:17:03 +000014265 switch (tp->phy_id & TG3_PHY_ID_MASK) {
14266 case TG3_PHY_ID_BCM5400: return "5400";
14267 case TG3_PHY_ID_BCM5401: return "5401";
14268 case TG3_PHY_ID_BCM5411: return "5411";
14269 case TG3_PHY_ID_BCM5701: return "5701";
14270 case TG3_PHY_ID_BCM5703: return "5703";
14271 case TG3_PHY_ID_BCM5704: return "5704";
14272 case TG3_PHY_ID_BCM5705: return "5705";
14273 case TG3_PHY_ID_BCM5750: return "5750";
14274 case TG3_PHY_ID_BCM5752: return "5752";
14275 case TG3_PHY_ID_BCM5714: return "5714";
14276 case TG3_PHY_ID_BCM5780: return "5780";
14277 case TG3_PHY_ID_BCM5755: return "5755";
14278 case TG3_PHY_ID_BCM5787: return "5787";
14279 case TG3_PHY_ID_BCM5784: return "5784";
14280 case TG3_PHY_ID_BCM5756: return "5722/5756";
14281 case TG3_PHY_ID_BCM5906: return "5906";
14282 case TG3_PHY_ID_BCM5761: return "5761";
14283 case TG3_PHY_ID_BCM5718C: return "5718C";
14284 case TG3_PHY_ID_BCM5718S: return "5718S";
14285 case TG3_PHY_ID_BCM57765: return "57765";
14286 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070014287 case 0: return "serdes";
14288 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070014289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014290}
14291
Michael Chanf9804dd2005-09-27 12:13:10 -070014292static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
14293{
14294 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
14295 strcpy(str, "PCI Express");
14296 return str;
14297 } else if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
14298 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
14299
14300 strcpy(str, "PCIX:");
14301
14302 if ((clock_ctrl == 7) ||
14303 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
14304 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
14305 strcat(str, "133MHz");
14306 else if (clock_ctrl == 0)
14307 strcat(str, "33MHz");
14308 else if (clock_ctrl == 2)
14309 strcat(str, "50MHz");
14310 else if (clock_ctrl == 4)
14311 strcat(str, "66MHz");
14312 else if (clock_ctrl == 6)
14313 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070014314 } else {
14315 strcpy(str, "PCI:");
14316 if (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED)
14317 strcat(str, "66MHz");
14318 else
14319 strcat(str, "33MHz");
14320 }
14321 if (tp->tg3_flags & TG3_FLAG_PCI_32BIT)
14322 strcat(str, ":32-bit");
14323 else
14324 strcat(str, ":64-bit");
14325 return str;
14326}
14327
Michael Chan8c2dc7e2005-12-19 16:26:02 -080014328static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014329{
14330 struct pci_dev *peer;
14331 unsigned int func, devnr = tp->pdev->devfn & ~7;
14332
14333 for (func = 0; func < 8; func++) {
14334 peer = pci_get_slot(tp->pdev->bus, devnr | func);
14335 if (peer && peer != tp->pdev)
14336 break;
14337 pci_dev_put(peer);
14338 }
Michael Chan16fe9d72005-12-13 21:09:54 -080014339 /* 5704 can be configured in single-port mode, set peer to
14340 * tp->pdev in that case.
14341 */
14342 if (!peer) {
14343 peer = tp->pdev;
14344 return peer;
14345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014346
14347 /*
14348 * We don't need to keep the refcount elevated; there's no way
14349 * to remove one half of this device without removing the other
14350 */
14351 pci_dev_put(peer);
14352
14353 return peer;
14354}
14355
David S. Miller15f98502005-05-18 22:49:26 -070014356static void __devinit tg3_init_coal(struct tg3 *tp)
14357{
14358 struct ethtool_coalesce *ec = &tp->coal;
14359
14360 memset(ec, 0, sizeof(*ec));
14361 ec->cmd = ETHTOOL_GCOALESCE;
14362 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
14363 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
14364 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
14365 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
14366 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
14367 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
14368 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
14369 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
14370 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
14371
14372 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
14373 HOSTCC_MODE_CLRTICK_TXBD)) {
14374 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
14375 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
14376 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
14377 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
14378 }
Michael Chand244c892005-07-05 14:42:33 -070014379
14380 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
14381 ec->rx_coalesce_usecs_irq = 0;
14382 ec->tx_coalesce_usecs_irq = 0;
14383 ec->stats_block_coalesce_usecs = 0;
14384 }
David S. Miller15f98502005-05-18 22:49:26 -070014385}
14386
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014387static const struct net_device_ops tg3_netdev_ops = {
14388 .ndo_open = tg3_open,
14389 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080014390 .ndo_start_xmit = tg3_start_xmit,
14391 .ndo_get_stats = tg3_get_stats,
14392 .ndo_validate_addr = eth_validate_addr,
14393 .ndo_set_multicast_list = tg3_set_rx_mode,
14394 .ndo_set_mac_address = tg3_set_mac_addr,
14395 .ndo_do_ioctl = tg3_ioctl,
14396 .ndo_tx_timeout = tg3_tx_timeout,
14397 .ndo_change_mtu = tg3_change_mtu,
14398#if TG3_VLAN_TAG_USED
14399 .ndo_vlan_rx_register = tg3_vlan_rx_register,
14400#endif
14401#ifdef CONFIG_NET_POLL_CONTROLLER
14402 .ndo_poll_controller = tg3_poll_controller,
14403#endif
14404};
14405
14406static const struct net_device_ops tg3_netdev_ops_dma_bug = {
14407 .ndo_open = tg3_open,
14408 .ndo_stop = tg3_close,
14409 .ndo_start_xmit = tg3_start_xmit_dma_bug,
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014410 .ndo_get_stats = tg3_get_stats,
14411 .ndo_validate_addr = eth_validate_addr,
14412 .ndo_set_multicast_list = tg3_set_rx_mode,
14413 .ndo_set_mac_address = tg3_set_mac_addr,
14414 .ndo_do_ioctl = tg3_ioctl,
14415 .ndo_tx_timeout = tg3_tx_timeout,
14416 .ndo_change_mtu = tg3_change_mtu,
14417#if TG3_VLAN_TAG_USED
14418 .ndo_vlan_rx_register = tg3_vlan_rx_register,
14419#endif
14420#ifdef CONFIG_NET_POLL_CONTROLLER
14421 .ndo_poll_controller = tg3_poll_controller,
14422#endif
14423};
14424
Linus Torvalds1da177e2005-04-16 15:20:36 -070014425static int __devinit tg3_init_one(struct pci_dev *pdev,
14426 const struct pci_device_id *ent)
14427{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014428 struct net_device *dev;
14429 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000014430 int i, err, pm_cap;
14431 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070014432 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080014433 u64 dma_mask, persist_dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014434
Joe Perches05dbe002010-02-17 19:44:19 +000014435 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014436
14437 err = pci_enable_device(pdev);
14438 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014439 pr_err("Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014440 return err;
14441 }
14442
Linus Torvalds1da177e2005-04-16 15:20:36 -070014443 err = pci_request_regions(pdev, DRV_MODULE_NAME);
14444 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014445 pr_err("Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014446 goto err_out_disable_pdev;
14447 }
14448
14449 pci_set_master(pdev);
14450
14451 /* Find power-management capability. */
14452 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
14453 if (pm_cap == 0) {
Joe Perches05dbe002010-02-17 19:44:19 +000014454 pr_err("Cannot find PowerManagement capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014455 err = -EIO;
14456 goto err_out_free_res;
14457 }
14458
Matt Carlsonfe5f5782009-09-01 13:09:39 +000014459 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014460 if (!dev) {
Joe Perches05dbe002010-02-17 19:44:19 +000014461 pr_err("Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014462 err = -ENOMEM;
14463 goto err_out_free_res;
14464 }
14465
Linus Torvalds1da177e2005-04-16 15:20:36 -070014466 SET_NETDEV_DEV(dev, &pdev->dev);
14467
Linus Torvalds1da177e2005-04-16 15:20:36 -070014468#if TG3_VLAN_TAG_USED
14469 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014470#endif
14471
14472 tp = netdev_priv(dev);
14473 tp->pdev = pdev;
14474 tp->dev = dev;
14475 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014476 tp->rx_mode = TG3_DEF_RX_MODE;
14477 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070014478
Linus Torvalds1da177e2005-04-16 15:20:36 -070014479 if (tg3_debug > 0)
14480 tp->msg_enable = tg3_debug;
14481 else
14482 tp->msg_enable = TG3_DEF_MSG_ENABLE;
14483
14484 /* The word/byte swap controls here control register access byte
14485 * swapping. DMA data byte swapping is controlled in the GRC_MODE
14486 * setting below.
14487 */
14488 tp->misc_host_ctrl =
14489 MISC_HOST_CTRL_MASK_PCI_INT |
14490 MISC_HOST_CTRL_WORD_SWAP |
14491 MISC_HOST_CTRL_INDIR_ACCESS |
14492 MISC_HOST_CTRL_PCISTATE_RW;
14493
14494 /* The NONFRM (non-frame) byte/word swap controls take effect
14495 * on descriptor entries, anything which isn't packet data.
14496 *
14497 * The StrongARM chips on the board (one for tx, one for rx)
14498 * are running in big-endian mode.
14499 */
14500 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
14501 GRC_MODE_WSWAP_NONFRM_DATA);
14502#ifdef __BIG_ENDIAN
14503 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
14504#endif
14505 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014506 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000014507 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014508
Matt Carlsond5fe4882008-11-21 17:20:32 -080014509 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010014510 if (!tp->regs) {
Joe Perches05dbe002010-02-17 19:44:19 +000014511 netdev_err(dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014512 err = -ENOMEM;
14513 goto err_out_free_dev;
14514 }
14515
14516 tg3_init_link_config(tp);
14517
Linus Torvalds1da177e2005-04-16 15:20:36 -070014518 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
14519 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014520
Linus Torvalds1da177e2005-04-16 15:20:36 -070014521 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014522 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014523 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014524
14525 err = tg3_get_invariants(tp);
14526 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014527 netdev_err(dev, "Problem fetching invariants of chip, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014528 goto err_out_iounmap;
14529 }
14530
Matt Carlson615774f2009-11-13 13:03:39 +000014531 if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) &&
14532 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
Stephen Hemminger00829822008-11-20 20:14:53 -080014533 dev->netdev_ops = &tg3_netdev_ops;
14534 else
14535 dev->netdev_ops = &tg3_netdev_ops_dma_bug;
14536
14537
Michael Chan4a29cc22006-03-19 13:21:12 -080014538 /* The EPB bridge inside 5714, 5715, and 5780 and any
14539 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080014540 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
14541 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
14542 * do DMA address check in tg3_start_xmit().
14543 */
Michael Chan4a29cc22006-03-19 13:21:12 -080014544 if (tp->tg3_flags2 & TG3_FLG2_IS_5788)
Yang Hongyang284901a2009-04-06 19:01:15 -070014545 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Michael Chan4a29cc22006-03-19 13:21:12 -080014546 else if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070014547 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080014548#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070014549 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080014550#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080014551 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070014552 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080014553
14554 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070014555 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080014556 err = pci_set_dma_mask(pdev, dma_mask);
14557 if (!err) {
14558 dev->features |= NETIF_F_HIGHDMA;
14559 err = pci_set_consistent_dma_mask(pdev,
14560 persist_dma_mask);
14561 if (err < 0) {
Joe Perches05dbe002010-02-17 19:44:19 +000014562 netdev_err(dev, "Unable to obtain 64 bit DMA for consistent allocations\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080014563 goto err_out_iounmap;
14564 }
14565 }
14566 }
Yang Hongyang284901a2009-04-06 19:01:15 -070014567 if (err || dma_mask == DMA_BIT_MASK(32)) {
14568 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080014569 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014570 netdev_err(dev, "No usable DMA configuration, aborting\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080014571 goto err_out_iounmap;
14572 }
14573 }
14574
Michael Chanfdfec1722005-07-25 12:31:48 -070014575 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014576
Matt Carlson507399f2009-11-13 13:03:37 +000014577 /* Selectively allow TSO based on operating conditions */
14578 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) ||
14579 (tp->fw_needed && !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)))
14580 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
14581 else {
14582 tp->tg3_flags2 &= ~(TG3_FLG2_TSO_CAPABLE | TG3_FLG2_TSO_BUG);
14583 tp->fw_needed = NULL;
14584 }
14585
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014586 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
Matt Carlson9e9fd122009-01-19 16:57:45 -080014587 tp->fw_needed = FIRMWARE_TG3;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014588
Michael Chan4e3a7aa2006-03-20 17:47:44 -080014589 /* TSO is on by default on chips that support hardware TSO.
14590 * Firmware TSO on older chips gives lower performance, so it
14591 * is off by default, but can be enabled using ethtool.
14592 */
Matt Carlsone849cdc2009-11-13 13:03:38 +000014593 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) &&
14594 (dev->features & NETIF_F_IP_CSUM))
14595 dev->features |= NETIF_F_TSO;
14596
14597 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) ||
14598 (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3)) {
14599 if (dev->features & NETIF_F_IPV6_CSUM)
Michael Chanb0026622006-07-03 19:42:14 -070014600 dev->features |= NETIF_F_TSO6;
Matt Carlsone849cdc2009-11-13 13:03:38 +000014601 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
14602 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070014603 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14604 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014605 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000014606 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson9936bcf2007-10-10 18:03:07 -070014607 dev->features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070014608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014609
Linus Torvalds1da177e2005-04-16 15:20:36 -070014610 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
14611 !(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
14612 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
14613 tp->tg3_flags2 |= TG3_FLG2_MAX_RXPEND_64;
14614 tp->rx_pending = 63;
14615 }
14616
Linus Torvalds1da177e2005-04-16 15:20:36 -070014617 err = tg3_get_device_address(tp);
14618 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014619 netdev_err(dev, "Could not obtain valid ethernet address, aborting\n");
Matt Carlson026a6c22009-12-03 08:36:24 +000014620 goto err_out_iounmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014621 }
14622
Matt Carlson0d3031d2007-10-10 18:02:43 -070014623 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
Matt Carlson63532392008-11-03 16:49:57 -080014624 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
Al Viro79ea13c2008-01-24 02:06:46 -080014625 if (!tp->aperegs) {
Joe Perches05dbe002010-02-17 19:44:19 +000014626 netdev_err(dev, "Cannot map APE registers, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070014627 err = -ENOMEM;
Matt Carlson026a6c22009-12-03 08:36:24 +000014628 goto err_out_iounmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014629 }
14630
14631 tg3_ape_lock_init(tp);
Matt Carlson7fd76442009-02-25 14:27:20 +000014632
14633 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
14634 tg3_read_dash_ver(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014635 }
14636
Matt Carlsonc88864d2007-11-12 21:07:01 -080014637 /*
14638 * Reset chip in case UNDI or EFI driver did not shutdown
14639 * DMA self test will enable WDMAC and we'll see (spurious)
14640 * pending DMA on the PCI bus at that point.
14641 */
14642 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
14643 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
14644 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
14645 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
14646 }
14647
14648 err = tg3_test_dma(tp);
14649 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014650 netdev_err(dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080014651 goto err_out_apeunmap;
14652 }
14653
Matt Carlsonc88864d2007-11-12 21:07:01 -080014654 /* flow control autonegotiation is default behavior */
14655 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
Steve Glendinninge18ce342008-12-16 02:00:00 -080014656 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlsonc88864d2007-11-12 21:07:01 -080014657
Matt Carlson78f90dc2009-11-13 13:03:42 +000014658 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
14659 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
14660 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
14661 for (i = 0; i < TG3_IRQ_MAX_VECS; i++) {
14662 struct tg3_napi *tnapi = &tp->napi[i];
14663
14664 tnapi->tp = tp;
14665 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
14666
14667 tnapi->int_mbox = intmbx;
14668 if (i < 4)
14669 intmbx += 0x8;
14670 else
14671 intmbx += 0x4;
14672
14673 tnapi->consmbox = rcvmbx;
14674 tnapi->prodmbox = sndmbx;
14675
14676 if (i) {
14677 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
14678 netif_napi_add(dev, &tnapi->napi, tg3_poll_msix, 64);
14679 } else {
14680 tnapi->coal_now = HOSTCC_MODE_NOW;
14681 netif_napi_add(dev, &tnapi->napi, tg3_poll, 64);
14682 }
14683
14684 if (!(tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX))
14685 break;
14686
14687 /*
14688 * If we support MSIX, we'll be using RSS. If we're using
14689 * RSS, the first vector only handles link interrupts and the
14690 * remaining vectors handle rx and tx interrupts. Reuse the
14691 * mailbox values for the next iteration. The values we setup
14692 * above are still useful for the single vectored mode.
14693 */
14694 if (!i)
14695 continue;
14696
14697 rcvmbx += 0x8;
14698
14699 if (sndmbx & 0x4)
14700 sndmbx -= 0x4;
14701 else
14702 sndmbx += 0xc;
14703 }
14704
Matt Carlsonc88864d2007-11-12 21:07:01 -080014705 tg3_init_coal(tp);
14706
Michael Chanc49a1562006-12-17 17:07:29 -080014707 pci_set_drvdata(pdev, dev);
14708
Linus Torvalds1da177e2005-04-16 15:20:36 -070014709 err = register_netdev(dev);
14710 if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000014711 netdev_err(dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070014712 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014713 }
14714
Joe Perches05dbe002010-02-17 19:44:19 +000014715 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
14716 tp->board_part_number,
14717 tp->pci_chip_rev_id,
14718 tg3_bus_string(tp, str),
14719 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014720
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000014721 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
14722 struct phy_device *phydev;
14723 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Joe Perches05dbe002010-02-17 19:44:19 +000014724 netdev_info(dev, "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
14725 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000014726 } else
Joe Perches05dbe002010-02-17 19:44:19 +000014727 netdev_info(dev, "attached PHY is %s (%s Ethernet) (WireSpeed[%d])\n",
14728 tg3_phy_string(tp),
14729 ((tp->tg3_flags & TG3_FLAG_10_100_ONLY) ? "10/100Base-TX" :
14730 ((tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) ? "1000Base-SX" :
14731 "10/100/1000Base-T")),
14732 (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED) == 0);
Matt Carlsondf59c942008-11-03 16:52:56 -080014733
Joe Perches05dbe002010-02-17 19:44:19 +000014734 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
14735 (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0,
14736 (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) != 0,
14737 (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) != 0,
14738 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0,
14739 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) != 0);
14740 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
14741 tp->dma_rwctrl,
14742 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
14743 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014744
14745 return 0;
14746
Matt Carlson0d3031d2007-10-10 18:02:43 -070014747err_out_apeunmap:
14748 if (tp->aperegs) {
14749 iounmap(tp->aperegs);
14750 tp->aperegs = NULL;
14751 }
14752
Linus Torvalds1da177e2005-04-16 15:20:36 -070014753err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070014754 if (tp->regs) {
14755 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014756 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014758
14759err_out_free_dev:
14760 free_netdev(dev);
14761
14762err_out_free_res:
14763 pci_release_regions(pdev);
14764
14765err_out_disable_pdev:
14766 pci_disable_device(pdev);
14767 pci_set_drvdata(pdev, NULL);
14768 return err;
14769}
14770
14771static void __devexit tg3_remove_one(struct pci_dev *pdev)
14772{
14773 struct net_device *dev = pci_get_drvdata(pdev);
14774
14775 if (dev) {
14776 struct tg3 *tp = netdev_priv(dev);
14777
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014778 if (tp->fw)
14779 release_firmware(tp->fw);
14780
Michael Chan7faa0062006-02-02 17:29:28 -080014781 flush_scheduled_work();
Matt Carlson158d7ab2008-05-29 01:37:54 -070014782
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014783 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
14784 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070014785 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014786 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070014787
Linus Torvalds1da177e2005-04-16 15:20:36 -070014788 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014789 if (tp->aperegs) {
14790 iounmap(tp->aperegs);
14791 tp->aperegs = NULL;
14792 }
Michael Chan68929142005-08-09 20:17:14 -070014793 if (tp->regs) {
14794 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014795 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014797 free_netdev(dev);
14798 pci_release_regions(pdev);
14799 pci_disable_device(pdev);
14800 pci_set_drvdata(pdev, NULL);
14801 }
14802}
14803
14804static int tg3_suspend(struct pci_dev *pdev, pm_message_t state)
14805{
14806 struct net_device *dev = pci_get_drvdata(pdev);
14807 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070014808 pci_power_t target_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014809 int err;
14810
Michael Chan3e0c95f2007-08-03 20:56:54 -070014811 /* PCI register 4 needs to be saved whether netif_running() or not.
14812 * MSI address and data need to be saved if using MSI and
14813 * netif_running().
14814 */
14815 pci_save_state(pdev);
14816
Linus Torvalds1da177e2005-04-16 15:20:36 -070014817 if (!netif_running(dev))
14818 return 0;
14819
Michael Chan7faa0062006-02-02 17:29:28 -080014820 flush_scheduled_work();
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014821 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014822 tg3_netif_stop(tp);
14823
14824 del_timer_sync(&tp->timer);
14825
David S. Millerf47c11e2005-06-24 20:18:35 -070014826 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014827 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070014828 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014829
14830 netif_device_detach(dev);
14831
David S. Millerf47c11e2005-06-24 20:18:35 -070014832 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070014833 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan6a9eba12005-12-13 21:08:58 -080014834 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
David S. Millerf47c11e2005-06-24 20:18:35 -070014835 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014836
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070014837 target_state = pdev->pm_cap ? pci_target_state(pdev) : PCI_D3hot;
14838
14839 err = tg3_set_power_state(tp, target_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014840 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014841 int err2;
14842
David S. Millerf47c11e2005-06-24 20:18:35 -070014843 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014844
Michael Chan6a9eba12005-12-13 21:08:58 -080014845 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014846 err2 = tg3_restart_hw(tp, 1);
14847 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070014848 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014849
14850 tp->timer.expires = jiffies + tp->timer_offset;
14851 add_timer(&tp->timer);
14852
14853 netif_device_attach(dev);
14854 tg3_netif_start(tp);
14855
Michael Chanb9ec6c12006-07-25 16:37:27 -070014856out:
David S. Millerf47c11e2005-06-24 20:18:35 -070014857 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014858
14859 if (!err2)
14860 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014861 }
14862
14863 return err;
14864}
14865
14866static int tg3_resume(struct pci_dev *pdev)
14867{
14868 struct net_device *dev = pci_get_drvdata(pdev);
14869 struct tg3 *tp = netdev_priv(dev);
14870 int err;
14871
Michael Chan3e0c95f2007-08-03 20:56:54 -070014872 pci_restore_state(tp->pdev);
14873
Linus Torvalds1da177e2005-04-16 15:20:36 -070014874 if (!netif_running(dev))
14875 return 0;
14876
Michael Chanbc1c7562006-03-20 17:48:03 -080014877 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014878 if (err)
14879 return err;
14880
14881 netif_device_attach(dev);
14882
David S. Millerf47c11e2005-06-24 20:18:35 -070014883 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014884
Michael Chan6a9eba12005-12-13 21:08:58 -080014885 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Michael Chanb9ec6c12006-07-25 16:37:27 -070014886 err = tg3_restart_hw(tp, 1);
14887 if (err)
14888 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014889
14890 tp->timer.expires = jiffies + tp->timer_offset;
14891 add_timer(&tp->timer);
14892
Linus Torvalds1da177e2005-04-16 15:20:36 -070014893 tg3_netif_start(tp);
14894
Michael Chanb9ec6c12006-07-25 16:37:27 -070014895out:
David S. Millerf47c11e2005-06-24 20:18:35 -070014896 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014897
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014898 if (!err)
14899 tg3_phy_start(tp);
14900
Michael Chanb9ec6c12006-07-25 16:37:27 -070014901 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014902}
14903
14904static struct pci_driver tg3_driver = {
14905 .name = DRV_MODULE_NAME,
14906 .id_table = tg3_pci_tbl,
14907 .probe = tg3_init_one,
14908 .remove = __devexit_p(tg3_remove_one),
14909 .suspend = tg3_suspend,
14910 .resume = tg3_resume
14911};
14912
14913static int __init tg3_init(void)
14914{
Jeff Garzik29917622006-08-19 17:48:59 -040014915 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014916}
14917
14918static void __exit tg3_cleanup(void)
14919{
14920 pci_unregister_driver(&tg3_driver);
14921}
14922
14923module_init(tg3_init);
14924module_exit(tg3_cleanup);