blob: 3ff2d40e63dd95fdd70951a791ae031964a3478f [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 Carlson0d2a5062009-02-25 14:40:42 +00007 * Copyright (C) 2005-2009 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"
70#define PFX DRV_MODULE_NAME ": "
Matt Carlson123b43e2009-11-02 14:33:03 +000071#define DRV_MODULE_VERSION "3.103"
72#define DRV_MODULE_RELDATE "November 2, 2009"
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74#define TG3_DEF_MAC_MODE 0
75#define TG3_DEF_RX_MODE 0
76#define TG3_DEF_TX_MODE 0
77#define TG3_DEF_MSG_ENABLE \
78 (NETIF_MSG_DRV | \
79 NETIF_MSG_PROBE | \
80 NETIF_MSG_LINK | \
81 NETIF_MSG_TIMER | \
82 NETIF_MSG_IFDOWN | \
83 NETIF_MSG_IFUP | \
84 NETIF_MSG_RX_ERR | \
85 NETIF_MSG_TX_ERR)
86
87/* length of time before we decide the hardware is borked,
88 * and dev->tx_timeout() should be called to fix the problem
89 */
90#define TG3_TX_TIMEOUT (5 * HZ)
91
92/* hardware minimum and maximum for a single frame's data payload */
93#define TG3_MIN_MTU 60
94#define TG3_MAX_MTU(tp) \
Matt Carlson8f666b02009-08-28 13:58:24 +000095 ((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97/* These numbers seem to be hard coded in the NIC firmware somehow.
98 * You can't change the ring sizes, but you can change where you place
99 * them in the NIC onboard memory.
100 */
101#define TG3_RX_RING_SIZE 512
102#define TG3_DEF_RX_RING_PENDING 200
103#define TG3_RX_JUMBO_RING_SIZE 256
104#define TG3_DEF_RX_JUMBO_RING_PENDING 100
Matt Carlsonbaf8a942009-09-01 13:13:00 +0000105#define TG3_RSS_INDIR_TBL_SIZE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107/* Do not place this n-ring entries value into the tp struct itself,
108 * we really want to expose these constants to GCC so that modulo et
109 * al. operations are done with shifts and masks instead of with
110 * hw multiply/modulo instructions. Another solution would be to
111 * replace things like '% foo' with '& (foo - 1)'.
112 */
113#define TG3_RX_RCB_RING_SIZE(tp) \
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000114 (((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) && \
Matt Carlson5ea1c502009-09-11 16:50:16 -0700115 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) ? 1024 : 512)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117#define TG3_TX_RING_SIZE 512
118#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
119
120#define TG3_RX_RING_BYTES (sizeof(struct tg3_rx_buffer_desc) * \
121 TG3_RX_RING_SIZE)
Matt Carlson79ed5ac2009-08-28 14:00:55 +0000122#define TG3_RX_JUMBO_RING_BYTES (sizeof(struct tg3_ext_rx_buffer_desc) * \
123 TG3_RX_JUMBO_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define TG3_RX_RCB_RING_BYTES(tp) (sizeof(struct tg3_rx_buffer_desc) * \
Matt Carlson79ed5ac2009-08-28 14:00:55 +0000125 TG3_RX_RCB_RING_SIZE(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
127 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
129
Matt Carlson287be122009-08-28 13:58:46 +0000130#define TG3_DMA_BYTE_ENAB 64
131
132#define TG3_RX_STD_DMA_SZ 1536
133#define TG3_RX_JMB_DMA_SZ 9046
134
135#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
136
137#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
138#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000140#define TG3_RX_STD_BUFF_RING_SIZE \
141 (sizeof(struct ring_info) * TG3_RX_RING_SIZE)
142
143#define TG3_RX_JMB_BUFF_RING_SIZE \
144 (sizeof(struct ring_info) * TG3_RX_JUMBO_RING_SIZE)
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000147#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Matt Carlsonad829262008-11-21 17:16:16 -0800149#define TG3_RAW_IP_ALIGN 2
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/* number of ETHTOOL_GSTATS u64's */
152#define TG3_NUM_STATS (sizeof(struct tg3_ethtool_stats)/sizeof(u64))
153
Michael Chan4cafd3f2005-05-29 14:56:34 -0700154#define TG3_NUM_TEST 6
155
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800156#define FIRMWARE_TG3 "tigon/tg3.bin"
157#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
158#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static char version[] __devinitdata =
161 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
162
163MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
164MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
165MODULE_LICENSE("GPL");
166MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800167MODULE_FIRMWARE(FIRMWARE_TG3);
168MODULE_FIRMWARE(FIRMWARE_TG3TSO);
169MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
170
Matt Carlson679563f2009-09-01 12:55:46 +0000171#define TG3_RSS_MIN_NUM_MSIX_VECS 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
174module_param(tg3_debug, int, 0);
175MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
176
177static struct pci_device_id tg3_pci_tbl[] = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700178 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
179 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
180 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
181 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
182 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
183 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
184 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
185 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
186 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
187 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
188 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
189 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
190 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
191 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
192 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
193 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
194 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
195 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
196 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
197 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
198 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
199 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
200 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5720)},
201 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700202 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700203 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750)},
204 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
205 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750M)},
206 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
207 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
208 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
209 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
210 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
211 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
212 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
213 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
214 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
215 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
216 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700217 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700218 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
219 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
220 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800221 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700222 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
223 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
224 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
225 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
226 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
227 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
228 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700229 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
230 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700231 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700244 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
245 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
246 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
247 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
248 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
249 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
250 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
251 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252};
253
254MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
255
Andreas Mohr50da8592006-08-14 23:54:30 -0700256static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 const char string[ETH_GSTRING_LEN];
258} ethtool_stats_keys[TG3_NUM_STATS] = {
259 { "rx_octets" },
260 { "rx_fragments" },
261 { "rx_ucast_packets" },
262 { "rx_mcast_packets" },
263 { "rx_bcast_packets" },
264 { "rx_fcs_errors" },
265 { "rx_align_errors" },
266 { "rx_xon_pause_rcvd" },
267 { "rx_xoff_pause_rcvd" },
268 { "rx_mac_ctrl_rcvd" },
269 { "rx_xoff_entered" },
270 { "rx_frame_too_long_errors" },
271 { "rx_jabbers" },
272 { "rx_undersize_packets" },
273 { "rx_in_length_errors" },
274 { "rx_out_length_errors" },
275 { "rx_64_or_less_octet_packets" },
276 { "rx_65_to_127_octet_packets" },
277 { "rx_128_to_255_octet_packets" },
278 { "rx_256_to_511_octet_packets" },
279 { "rx_512_to_1023_octet_packets" },
280 { "rx_1024_to_1522_octet_packets" },
281 { "rx_1523_to_2047_octet_packets" },
282 { "rx_2048_to_4095_octet_packets" },
283 { "rx_4096_to_8191_octet_packets" },
284 { "rx_8192_to_9022_octet_packets" },
285
286 { "tx_octets" },
287 { "tx_collisions" },
288
289 { "tx_xon_sent" },
290 { "tx_xoff_sent" },
291 { "tx_flow_control" },
292 { "tx_mac_errors" },
293 { "tx_single_collisions" },
294 { "tx_mult_collisions" },
295 { "tx_deferred" },
296 { "tx_excessive_collisions" },
297 { "tx_late_collisions" },
298 { "tx_collide_2times" },
299 { "tx_collide_3times" },
300 { "tx_collide_4times" },
301 { "tx_collide_5times" },
302 { "tx_collide_6times" },
303 { "tx_collide_7times" },
304 { "tx_collide_8times" },
305 { "tx_collide_9times" },
306 { "tx_collide_10times" },
307 { "tx_collide_11times" },
308 { "tx_collide_12times" },
309 { "tx_collide_13times" },
310 { "tx_collide_14times" },
311 { "tx_collide_15times" },
312 { "tx_ucast_packets" },
313 { "tx_mcast_packets" },
314 { "tx_bcast_packets" },
315 { "tx_carrier_sense_errors" },
316 { "tx_discards" },
317 { "tx_errors" },
318
319 { "dma_writeq_full" },
320 { "dma_write_prioq_full" },
321 { "rxbds_empty" },
322 { "rx_discards" },
323 { "rx_errors" },
324 { "rx_threshold_hit" },
325
326 { "dma_readq_full" },
327 { "dma_read_prioq_full" },
328 { "tx_comp_queue_full" },
329
330 { "ring_set_send_prod_index" },
331 { "ring_status_update" },
332 { "nic_irqs" },
333 { "nic_avoided_irqs" },
334 { "nic_tx_threshold_hit" }
335};
336
Andreas Mohr50da8592006-08-14 23:54:30 -0700337static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700338 const char string[ETH_GSTRING_LEN];
339} ethtool_test_keys[TG3_NUM_TEST] = {
340 { "nvram test (online) " },
341 { "link test (online) " },
342 { "register test (offline)" },
343 { "memory test (offline)" },
344 { "loopback test (offline)" },
345 { "interrupt test (offline)" },
346};
347
Michael Chanb401e9e2005-12-19 16:27:04 -0800348static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
349{
350 writel(val, tp->regs + off);
351}
352
353static u32 tg3_read32(struct tg3 *tp, u32 off)
354{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400355 return (readl(tp->regs + off));
Michael Chanb401e9e2005-12-19 16:27:04 -0800356}
357
Matt Carlson0d3031d2007-10-10 18:02:43 -0700358static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
359{
360 writel(val, tp->aperegs + off);
361}
362
363static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
364{
365 return (readl(tp->aperegs + off));
366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
369{
Michael Chan68929142005-08-09 20:17:14 -0700370 unsigned long flags;
371
372 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700373 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
374 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700375 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700376}
377
378static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
379{
380 writel(val, tp->regs + off);
381 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Michael Chan68929142005-08-09 20:17:14 -0700384static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
385{
386 unsigned long flags;
387 u32 val;
388
389 spin_lock_irqsave(&tp->indirect_lock, flags);
390 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
391 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
392 spin_unlock_irqrestore(&tp->indirect_lock, flags);
393 return val;
394}
395
396static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
397{
398 unsigned long flags;
399
400 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
401 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
402 TG3_64BIT_REG_LOW, val);
403 return;
404 }
Matt Carlson66711e62009-11-13 13:03:49 +0000405 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700406 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
407 TG3_64BIT_REG_LOW, val);
408 return;
409 }
410
411 spin_lock_irqsave(&tp->indirect_lock, flags);
412 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
413 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
414 spin_unlock_irqrestore(&tp->indirect_lock, flags);
415
416 /* In indirect mode when disabling interrupts, we also need
417 * to clear the interrupt bit in the GRC local ctrl register.
418 */
419 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
420 (val == 0x1)) {
421 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
422 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
423 }
424}
425
426static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
427{
428 unsigned long flags;
429 u32 val;
430
431 spin_lock_irqsave(&tp->indirect_lock, flags);
432 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
433 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
434 spin_unlock_irqrestore(&tp->indirect_lock, flags);
435 return val;
436}
437
Michael Chanb401e9e2005-12-19 16:27:04 -0800438/* usec_wait specifies the wait time in usec when writing to certain registers
439 * where it is unsafe to read back the register without some delay.
440 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
441 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
442 */
443static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Michael Chanb401e9e2005-12-19 16:27:04 -0800445 if ((tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) ||
446 (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND))
447 /* Non-posted methods */
448 tp->write32(tp, off, val);
449 else {
450 /* Posted method */
451 tg3_write32(tp, off, val);
452 if (usec_wait)
453 udelay(usec_wait);
454 tp->read32(tp, off);
455 }
456 /* Wait again after the read for the posted method to guarantee that
457 * the wait time is met.
458 */
459 if (usec_wait)
460 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
Michael Chan09ee9292005-08-09 20:17:00 -0700463static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
464{
465 tp->write32_mbox(tp, off, val);
Michael Chan68929142005-08-09 20:17:14 -0700466 if (!(tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER) &&
467 !(tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND))
468 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700469}
470
Michael Chan20094932005-08-09 20:16:32 -0700471static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 void __iomem *mbox = tp->regs + off;
474 writel(val, mbox);
475 if (tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG)
476 writel(val, mbox);
477 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
478 readl(mbox);
479}
480
Michael Chanb5d37722006-09-27 16:06:21 -0700481static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
482{
483 return (readl(tp->regs + off + GRCMBOX_BASE));
484}
485
486static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
487{
488 writel(val, tp->regs + off + GRCMBOX_BASE);
489}
490
Michael Chan20094932005-08-09 20:16:32 -0700491#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700492#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Michael Chan20094932005-08-09 20:16:32 -0700493#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
494#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700495#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700496
497#define tw32(reg,val) tp->write32(tp, reg, val)
Michael Chanb401e9e2005-12-19 16:27:04 -0800498#define tw32_f(reg,val) _tw32_flush(tp,(reg),(val), 0)
499#define tw32_wait_f(reg,val,us) _tw32_flush(tp,(reg),(val), (us))
Michael Chan20094932005-08-09 20:16:32 -0700500#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
503{
Michael Chan68929142005-08-09 20:17:14 -0700504 unsigned long flags;
505
Michael Chanb5d37722006-09-27 16:06:21 -0700506 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
507 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
508 return;
509
Michael Chan68929142005-08-09 20:17:14 -0700510 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chanbbadf502006-04-06 21:46:34 -0700511 if (tp->tg3_flags & TG3_FLAG_SRAM_USE_CONFIG) {
512 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
513 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Michael Chanbbadf502006-04-06 21:46:34 -0700515 /* Always leave this as zero. */
516 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
517 } else {
518 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
519 tw32_f(TG3PCI_MEM_WIN_DATA, val);
520
521 /* Always leave this as zero. */
522 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
523 }
Michael Chan68929142005-08-09 20:17:14 -0700524 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
528{
Michael Chan68929142005-08-09 20:17:14 -0700529 unsigned long flags;
530
Michael Chanb5d37722006-09-27 16:06:21 -0700531 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
532 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
533 *val = 0;
534 return;
535 }
536
Michael Chan68929142005-08-09 20:17:14 -0700537 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chanbbadf502006-04-06 21:46:34 -0700538 if (tp->tg3_flags & TG3_FLAG_SRAM_USE_CONFIG) {
539 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
540 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Michael Chanbbadf502006-04-06 21:46:34 -0700542 /* Always leave this as zero. */
543 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
544 } else {
545 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
546 *val = tr32(TG3PCI_MEM_WIN_DATA);
547
548 /* Always leave this as zero. */
549 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
550 }
Michael Chan68929142005-08-09 20:17:14 -0700551 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Matt Carlson0d3031d2007-10-10 18:02:43 -0700554static void tg3_ape_lock_init(struct tg3 *tp)
555{
556 int i;
557
558 /* Make sure the driver hasn't any stale locks. */
559 for (i = 0; i < 8; i++)
560 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + 4 * i,
561 APE_LOCK_GRANT_DRIVER);
562}
563
564static int tg3_ape_lock(struct tg3 *tp, int locknum)
565{
566 int i, off;
567 int ret = 0;
568 u32 status;
569
570 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
571 return 0;
572
573 switch (locknum) {
Matt Carlson77b483f2008-08-15 14:07:24 -0700574 case TG3_APE_LOCK_GRC:
Matt Carlson0d3031d2007-10-10 18:02:43 -0700575 case TG3_APE_LOCK_MEM:
576 break;
577 default:
578 return -EINVAL;
579 }
580
581 off = 4 * locknum;
582
583 tg3_ape_write32(tp, TG3_APE_LOCK_REQ + off, APE_LOCK_REQ_DRIVER);
584
585 /* Wait for up to 1 millisecond to acquire lock. */
586 for (i = 0; i < 100; i++) {
587 status = tg3_ape_read32(tp, TG3_APE_LOCK_GRANT + off);
588 if (status == APE_LOCK_GRANT_DRIVER)
589 break;
590 udelay(10);
591 }
592
593 if (status != APE_LOCK_GRANT_DRIVER) {
594 /* Revoke the lock request. */
595 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + off,
596 APE_LOCK_GRANT_DRIVER);
597
598 ret = -EBUSY;
599 }
600
601 return ret;
602}
603
604static void tg3_ape_unlock(struct tg3 *tp, int locknum)
605{
606 int off;
607
608 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
609 return;
610
611 switch (locknum) {
Matt Carlson77b483f2008-08-15 14:07:24 -0700612 case TG3_APE_LOCK_GRC:
Matt Carlson0d3031d2007-10-10 18:02:43 -0700613 case TG3_APE_LOCK_MEM:
614 break;
615 default:
616 return;
617 }
618
619 off = 4 * locknum;
620 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + off, APE_LOCK_GRANT_DRIVER);
621}
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623static void tg3_disable_ints(struct tg3 *tp)
624{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000625 int i;
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 tw32(TG3PCI_MISC_HOST_CTRL,
628 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000629 for (i = 0; i < tp->irq_max; i++)
630 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633static void tg3_enable_ints(struct tg3 *tp)
634{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000635 int i;
636 u32 coal_now = 0;
637
Michael Chanbbe832c2005-06-24 20:20:04 -0700638 tp->irq_sync = 0;
639 wmb();
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 tw32(TG3PCI_MISC_HOST_CTRL,
642 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000643
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000644 for (i = 0; i < tp->irq_cnt; i++) {
645 struct tg3_napi *tnapi = &tp->napi[i];
646 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
647 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
648 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
649
650 coal_now |= tnapi->coal_now;
651 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000652
653 /* Force an initial interrupt */
654 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
655 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
656 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
657 else
658 tw32(HOSTCC_MODE, tp->coalesce_mode |
659 HOSTCC_MODE_ENABLE | coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
Matt Carlson17375d22009-08-28 14:02:18 +0000662static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700663{
Matt Carlson17375d22009-08-28 14:02:18 +0000664 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000665 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700666 unsigned int work_exists = 0;
667
668 /* check for phy events */
669 if (!(tp->tg3_flags &
670 (TG3_FLAG_USE_LINKCHG_REG |
671 TG3_FLAG_POLL_SERDES))) {
672 if (sblk->status & SD_STATUS_LINK_CHG)
673 work_exists = 1;
674 }
675 /* check for RX/TX work to do */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000676 if (sblk->idx[0].tx_consumer != tnapi->tx_cons ||
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000677 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700678 work_exists = 1;
679
680 return work_exists;
681}
682
Matt Carlson17375d22009-08-28 14:02:18 +0000683/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700684 * similar to tg3_enable_ints, but it accurately determines whether there
685 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400686 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 */
Matt Carlson17375d22009-08-28 14:02:18 +0000688static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Matt Carlson17375d22009-08-28 14:02:18 +0000690 struct tg3 *tp = tnapi->tp;
691
Matt Carlson898a56f2009-08-28 14:02:40 +0000692 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 mmiowb();
694
David S. Millerfac9b832005-05-18 22:46:34 -0700695 /* When doing tagged status, this work check is unnecessary.
696 * The last_tag we write above tells the chip which piece of
697 * work we've completed.
698 */
699 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
Matt Carlson17375d22009-08-28 14:02:18 +0000700 tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700701 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000702 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Matt Carlsonfed97812009-09-01 13:10:19 +0000705static void tg3_napi_disable(struct tg3 *tp)
706{
707 int i;
708
709 for (i = tp->irq_cnt - 1; i >= 0; i--)
710 napi_disable(&tp->napi[i].napi);
711}
712
713static void tg3_napi_enable(struct tg3 *tp)
714{
715 int i;
716
717 for (i = 0; i < tp->irq_cnt; i++)
718 napi_enable(&tp->napi[i].napi);
719}
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721static inline void tg3_netif_stop(struct tg3 *tp)
722{
Michael Chanbbe832c2005-06-24 20:20:04 -0700723 tp->dev->trans_start = jiffies; /* prevent tx timeout */
Matt Carlsonfed97812009-09-01 13:10:19 +0000724 tg3_napi_disable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 netif_tx_disable(tp->dev);
726}
727
728static inline void tg3_netif_start(struct tg3 *tp)
729{
Matt Carlsonfe5f5782009-09-01 13:09:39 +0000730 /* NOTE: unconditional netif_tx_wake_all_queues is only
731 * appropriate so long as all callers are assured to
732 * have free tx slots (such as after tg3_init_hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 */
Matt Carlsonfe5f5782009-09-01 13:09:39 +0000734 netif_tx_wake_all_queues(tp->dev);
735
Matt Carlsonfed97812009-09-01 13:10:19 +0000736 tg3_napi_enable(tp);
737 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
David S. Millerf47c11e2005-06-24 20:18:35 -0700738 tg3_enable_ints(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
741static void tg3_switch_clocks(struct tg3 *tp)
742{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000743 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 u32 orig_clock_ctrl;
745
Matt Carlson795d01c2007-10-07 23:28:17 -0700746 if ((tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
747 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700748 return;
749
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000750 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 orig_clock_ctrl = clock_ctrl;
753 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
754 CLOCK_CTRL_CLKRUN_OENABLE |
755 0x1f);
756 tp->pci_clock_ctrl = clock_ctrl;
757
758 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
759 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800760 tw32_wait_f(TG3PCI_CLOCK_CTRL,
761 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800764 tw32_wait_f(TG3PCI_CLOCK_CTRL,
765 clock_ctrl |
766 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
767 40);
768 tw32_wait_f(TG3PCI_CLOCK_CTRL,
769 clock_ctrl | (CLOCK_CTRL_ALTCLK),
770 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800772 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
775#define PHY_BUSY_LOOPS 5000
776
777static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
778{
779 u32 frame_val;
780 unsigned int loops;
781 int ret;
782
783 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
784 tw32_f(MAC_MI_MODE,
785 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
786 udelay(80);
787 }
788
789 *val = 0x0;
790
Matt Carlson882e9792009-09-01 13:21:36 +0000791 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 MI_COM_PHY_ADDR_MASK);
793 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
794 MI_COM_REG_ADDR_MASK);
795 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 tw32_f(MAC_MI_COM, frame_val);
798
799 loops = PHY_BUSY_LOOPS;
800 while (loops != 0) {
801 udelay(10);
802 frame_val = tr32(MAC_MI_COM);
803
804 if ((frame_val & MI_COM_BUSY) == 0) {
805 udelay(5);
806 frame_val = tr32(MAC_MI_COM);
807 break;
808 }
809 loops -= 1;
810 }
811
812 ret = -EBUSY;
813 if (loops != 0) {
814 *val = frame_val & MI_COM_DATA_MASK;
815 ret = 0;
816 }
817
818 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
819 tw32_f(MAC_MI_MODE, tp->mi_mode);
820 udelay(80);
821 }
822
823 return ret;
824}
825
826static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
827{
828 u32 frame_val;
829 unsigned int loops;
830 int ret;
831
Matt Carlson7f97a4b2009-08-25 10:10:03 +0000832 if ((tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) &&
Michael Chanb5d37722006-09-27 16:06:21 -0700833 (reg == MII_TG3_CTRL || reg == MII_TG3_AUX_CTRL))
834 return 0;
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
837 tw32_f(MAC_MI_MODE,
838 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
839 udelay(80);
840 }
841
Matt Carlson882e9792009-09-01 13:21:36 +0000842 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 MI_COM_PHY_ADDR_MASK);
844 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
845 MI_COM_REG_ADDR_MASK);
846 frame_val |= (val & MI_COM_DATA_MASK);
847 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 tw32_f(MAC_MI_COM, frame_val);
850
851 loops = PHY_BUSY_LOOPS;
852 while (loops != 0) {
853 udelay(10);
854 frame_val = tr32(MAC_MI_COM);
855 if ((frame_val & MI_COM_BUSY) == 0) {
856 udelay(5);
857 frame_val = tr32(MAC_MI_COM);
858 break;
859 }
860 loops -= 1;
861 }
862
863 ret = -EBUSY;
864 if (loops != 0)
865 ret = 0;
866
867 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
868 tw32_f(MAC_MI_MODE, tp->mi_mode);
869 udelay(80);
870 }
871
872 return ret;
873}
874
Matt Carlson95e28692008-05-25 23:44:14 -0700875static int tg3_bmcr_reset(struct tg3 *tp)
876{
877 u32 phy_control;
878 int limit, err;
879
880 /* OK, reset it, and poll the BMCR_RESET bit until it
881 * clears or we time out.
882 */
883 phy_control = BMCR_RESET;
884 err = tg3_writephy(tp, MII_BMCR, phy_control);
885 if (err != 0)
886 return -EBUSY;
887
888 limit = 5000;
889 while (limit--) {
890 err = tg3_readphy(tp, MII_BMCR, &phy_control);
891 if (err != 0)
892 return -EBUSY;
893
894 if ((phy_control & BMCR_RESET) == 0) {
895 udelay(40);
896 break;
897 }
898 udelay(10);
899 }
Roel Kluind4675b52009-02-12 16:33:27 -0800900 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -0700901 return -EBUSY;
902
903 return 0;
904}
905
Matt Carlson158d7ab2008-05-29 01:37:54 -0700906static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
907{
Francois Romieu3d165432009-01-19 16:56:50 -0800908 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700909 u32 val;
910
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000911 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -0700912
913 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000914 val = -EIO;
915
916 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -0700917
918 return val;
919}
920
921static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
922{
Francois Romieu3d165432009-01-19 16:56:50 -0800923 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000924 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700925
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000926 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -0700927
928 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000929 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700930
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000931 spin_unlock_bh(&tp->lock);
932
933 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700934}
935
936static int tg3_mdio_reset(struct mii_bus *bp)
937{
938 return 0;
939}
940
Matt Carlson9c61d6b2008-11-03 16:54:56 -0800941static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -0700942{
943 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800944 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -0700945
Matt Carlson3f0e3ad2009-11-02 14:24:36 +0000946 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800947 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
948 case TG3_PHY_ID_BCM50610:
Matt Carlsonc73430d2009-11-02 14:29:34 +0000949 case TG3_PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800950 val = MAC_PHYCFG2_50610_LED_MODES;
951 break;
952 case TG3_PHY_ID_BCMAC131:
953 val = MAC_PHYCFG2_AC131_LED_MODES;
954 break;
955 case TG3_PHY_ID_RTL8211C:
956 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
957 break;
958 case TG3_PHY_ID_RTL8201E:
959 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
960 break;
961 default:
Matt Carlsona9daf362008-05-25 23:49:44 -0700962 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800963 }
964
965 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
966 tw32(MAC_PHYCFG2, val);
967
968 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +0000969 val &= ~(MAC_PHYCFG1_RGMII_INT |
970 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
971 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800972 tw32(MAC_PHYCFG1, val);
973
974 return;
975 }
976
977 if (!(tp->tg3_flags3 & TG3_FLG3_RGMII_STD_IBND_DISABLE))
978 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
979 MAC_PHYCFG2_FMODE_MASK_MASK |
980 MAC_PHYCFG2_GMODE_MASK_MASK |
981 MAC_PHYCFG2_ACT_MASK_MASK |
982 MAC_PHYCFG2_QUAL_MASK_MASK |
983 MAC_PHYCFG2_INBAND_ENABLE;
984
985 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -0700986
Matt Carlsonbb85fbb2009-08-25 10:09:07 +0000987 val = tr32(MAC_PHYCFG1);
988 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
989 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
990 if (!(tp->tg3_flags3 & TG3_FLG3_RGMII_STD_IBND_DISABLE)) {
Matt Carlsona9daf362008-05-25 23:49:44 -0700991 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
992 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
993 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
994 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
995 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +0000996 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
997 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
998 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -0700999
Matt Carlsona9daf362008-05-25 23:49:44 -07001000 val = tr32(MAC_EXT_RGMII_MODE);
1001 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1002 MAC_RGMII_MODE_RX_QUALITY |
1003 MAC_RGMII_MODE_RX_ACTIVITY |
1004 MAC_RGMII_MODE_RX_ENG_DET |
1005 MAC_RGMII_MODE_TX_ENABLE |
1006 MAC_RGMII_MODE_TX_LOWPWR |
1007 MAC_RGMII_MODE_TX_RESET);
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001008 if (!(tp->tg3_flags3 & TG3_FLG3_RGMII_STD_IBND_DISABLE)) {
Matt Carlsona9daf362008-05-25 23:49:44 -07001009 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
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 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
1015 val |= MAC_RGMII_MODE_TX_ENABLE |
1016 MAC_RGMII_MODE_TX_LOWPWR |
1017 MAC_RGMII_MODE_TX_RESET;
1018 }
1019 tw32(MAC_EXT_RGMII_MODE, val);
1020}
1021
Matt Carlson158d7ab2008-05-29 01:37:54 -07001022static void tg3_mdio_start(struct tg3 *tp)
1023{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001024 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1025 tw32_f(MAC_MI_MODE, tp->mi_mode);
1026 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001027
Matt Carlson882e9792009-09-01 13:21:36 +00001028 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
1029 u32 funcnum, is_serdes;
1030
1031 funcnum = tr32(TG3_CPMU_STATUS) & TG3_CPMU_STATUS_PCIE_FUNC;
1032 if (funcnum)
1033 tp->phy_addr = 2;
1034 else
1035 tp->phy_addr = 1;
1036
1037 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1038 if (is_serdes)
1039 tp->phy_addr += 7;
1040 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001041 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001042
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001043 if ((tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED) &&
1044 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1045 tg3_mdio_config_5785(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001046}
1047
Matt Carlson158d7ab2008-05-29 01:37:54 -07001048static int tg3_mdio_init(struct tg3 *tp)
1049{
1050 int i;
1051 u32 reg;
Matt Carlsona9daf362008-05-25 23:49:44 -07001052 struct phy_device *phydev;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001053
1054 tg3_mdio_start(tp);
1055
1056 if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) ||
1057 (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED))
1058 return 0;
1059
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001060 tp->mdio_bus = mdiobus_alloc();
1061 if (tp->mdio_bus == NULL)
1062 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001063
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001064 tp->mdio_bus->name = "tg3 mdio bus";
1065 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001066 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001067 tp->mdio_bus->priv = tp;
1068 tp->mdio_bus->parent = &tp->pdev->dev;
1069 tp->mdio_bus->read = &tg3_mdio_read;
1070 tp->mdio_bus->write = &tg3_mdio_write;
1071 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001072 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001073 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001074
1075 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001076 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001077
1078 /* The bus registration will look for all the PHYs on the mdio bus.
1079 * Unfortunately, it does not ensure the PHY is powered up before
1080 * accessing the PHY ID registers. A chip reset is the
1081 * quickest way to bring the device back to an operational state..
1082 */
1083 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1084 tg3_bmcr_reset(tp);
1085
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001086 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001087 if (i) {
Matt Carlson158d7ab2008-05-29 01:37:54 -07001088 printk(KERN_WARNING "%s: mdiobus_reg failed (0x%x)\n",
1089 tp->dev->name, i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001090 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001091 return i;
1092 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001093
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001094 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001095
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001096 if (!phydev || !phydev->drv) {
1097 printk(KERN_WARNING "%s: No PHY devices\n", tp->dev->name);
1098 mdiobus_unregister(tp->mdio_bus);
1099 mdiobus_free(tp->mdio_bus);
1100 return -ENODEV;
1101 }
1102
1103 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001104 case TG3_PHY_ID_BCM57780:
1105 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001106 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001107 break;
Matt Carlsona9daf362008-05-25 23:49:44 -07001108 case TG3_PHY_ID_BCM50610:
Matt Carlsonc73430d2009-11-02 14:29:34 +00001109 case TG3_PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001110 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001111 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001112 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001113 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsona9daf362008-05-25 23:49:44 -07001114 if (tp->tg3_flags3 & TG3_FLG3_RGMII_STD_IBND_DISABLE)
1115 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
1116 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
1117 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
1118 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
1119 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001120 /* fallthru */
1121 case TG3_PHY_ID_RTL8211C:
1122 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001123 break;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001124 case TG3_PHY_ID_RTL8201E:
Matt Carlsona9daf362008-05-25 23:49:44 -07001125 case TG3_PHY_ID_BCMAC131:
1126 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001127 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001128 tp->tg3_flags3 |= TG3_FLG3_PHY_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001129 break;
1130 }
1131
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001132 tp->tg3_flags3 |= TG3_FLG3_MDIOBUS_INITED;
1133
1134 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1135 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001136
1137 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001138}
1139
1140static void tg3_mdio_fini(struct tg3 *tp)
1141{
1142 if (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED) {
1143 tp->tg3_flags3 &= ~TG3_FLG3_MDIOBUS_INITED;
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001144 mdiobus_unregister(tp->mdio_bus);
1145 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001146 }
1147}
1148
Matt Carlson95e28692008-05-25 23:44:14 -07001149/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001150static inline void tg3_generate_fw_event(struct tg3 *tp)
1151{
1152 u32 val;
1153
1154 val = tr32(GRC_RX_CPU_EVENT);
1155 val |= GRC_RX_CPU_DRIVER_EVENT;
1156 tw32_f(GRC_RX_CPU_EVENT, val);
1157
1158 tp->last_event_jiffies = jiffies;
1159}
1160
1161#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1162
1163/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001164static void tg3_wait_for_event_ack(struct tg3 *tp)
1165{
1166 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001167 unsigned int delay_cnt;
1168 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001169
Matt Carlson4ba526c2008-08-15 14:10:04 -07001170 /* If enough time has passed, no wait is necessary. */
1171 time_remain = (long)(tp->last_event_jiffies + 1 +
1172 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1173 (long)jiffies;
1174 if (time_remain < 0)
1175 return;
1176
1177 /* Check if we can shorten the wait time. */
1178 delay_cnt = jiffies_to_usecs(time_remain);
1179 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1180 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1181 delay_cnt = (delay_cnt >> 3) + 1;
1182
1183 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001184 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1185 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001186 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001187 }
1188}
1189
1190/* tp->lock is held. */
1191static void tg3_ump_link_report(struct tg3 *tp)
1192{
1193 u32 reg;
1194 u32 val;
1195
1196 if (!(tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
1197 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
1198 return;
1199
1200 tg3_wait_for_event_ack(tp);
1201
1202 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1203
1204 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1205
1206 val = 0;
1207 if (!tg3_readphy(tp, MII_BMCR, &reg))
1208 val = reg << 16;
1209 if (!tg3_readphy(tp, MII_BMSR, &reg))
1210 val |= (reg & 0xffff);
1211 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, val);
1212
1213 val = 0;
1214 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1215 val = reg << 16;
1216 if (!tg3_readphy(tp, MII_LPA, &reg))
1217 val |= (reg & 0xffff);
1218 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 4, val);
1219
1220 val = 0;
1221 if (!(tp->tg3_flags2 & TG3_FLG2_MII_SERDES)) {
1222 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1223 val = reg << 16;
1224 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1225 val |= (reg & 0xffff);
1226 }
1227 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 8, val);
1228
1229 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1230 val = reg << 16;
1231 else
1232 val = 0;
1233 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 12, val);
1234
Matt Carlson4ba526c2008-08-15 14:10:04 -07001235 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001236}
1237
1238static void tg3_link_report(struct tg3 *tp)
1239{
1240 if (!netif_carrier_ok(tp->dev)) {
1241 if (netif_msg_link(tp))
1242 printk(KERN_INFO PFX "%s: Link is down.\n",
1243 tp->dev->name);
1244 tg3_ump_link_report(tp);
1245 } else if (netif_msg_link(tp)) {
1246 printk(KERN_INFO PFX "%s: Link is up at %d Mbps, %s duplex.\n",
1247 tp->dev->name,
1248 (tp->link_config.active_speed == SPEED_1000 ?
1249 1000 :
1250 (tp->link_config.active_speed == SPEED_100 ?
1251 100 : 10)),
1252 (tp->link_config.active_duplex == DUPLEX_FULL ?
1253 "full" : "half"));
1254
1255 printk(KERN_INFO PFX
1256 "%s: Flow control is %s for TX and %s for RX.\n",
1257 tp->dev->name,
Steve Glendinninge18ce342008-12-16 02:00:00 -08001258 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
Matt Carlson95e28692008-05-25 23:44:14 -07001259 "on" : "off",
Steve Glendinninge18ce342008-12-16 02:00:00 -08001260 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
Matt Carlson95e28692008-05-25 23:44:14 -07001261 "on" : "off");
1262 tg3_ump_link_report(tp);
1263 }
1264}
1265
1266static u16 tg3_advert_flowctrl_1000T(u8 flow_ctrl)
1267{
1268 u16 miireg;
1269
Steve Glendinninge18ce342008-12-16 02:00:00 -08001270 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001271 miireg = ADVERTISE_PAUSE_CAP;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001272 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001273 miireg = ADVERTISE_PAUSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001274 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001275 miireg = ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1276 else
1277 miireg = 0;
1278
1279 return miireg;
1280}
1281
1282static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1283{
1284 u16 miireg;
1285
Steve Glendinninge18ce342008-12-16 02:00:00 -08001286 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001287 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001288 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001289 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001290 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001291 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1292 else
1293 miireg = 0;
1294
1295 return miireg;
1296}
1297
Matt Carlson95e28692008-05-25 23:44:14 -07001298static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1299{
1300 u8 cap = 0;
1301
1302 if (lcladv & ADVERTISE_1000XPAUSE) {
1303 if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1304 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001305 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001306 else if (rmtadv & LPA_1000XPAUSE_ASYM)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001307 cap = FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001308 } else {
1309 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001310 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001311 }
1312 } else if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1313 if ((rmtadv & LPA_1000XPAUSE) && (rmtadv & LPA_1000XPAUSE_ASYM))
Steve Glendinninge18ce342008-12-16 02:00:00 -08001314 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001315 }
1316
1317 return cap;
1318}
1319
Matt Carlsonf51f3562008-05-25 23:45:08 -07001320static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001321{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001322 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001323 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001324 u32 old_rx_mode = tp->rx_mode;
1325 u32 old_tx_mode = tp->tx_mode;
1326
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001327 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001328 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001329 else
1330 autoneg = tp->link_config.autoneg;
1331
1332 if (autoneg == AUTONEG_ENABLE &&
Matt Carlson95e28692008-05-25 23:44:14 -07001333 (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG)) {
1334 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001335 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001336 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001337 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001338 } else
1339 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001340
Matt Carlsonf51f3562008-05-25 23:45:08 -07001341 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001342
Steve Glendinninge18ce342008-12-16 02:00:00 -08001343 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001344 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1345 else
1346 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1347
Matt Carlsonf51f3562008-05-25 23:45:08 -07001348 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001349 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001350
Steve Glendinninge18ce342008-12-16 02:00:00 -08001351 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001352 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1353 else
1354 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1355
Matt Carlsonf51f3562008-05-25 23:45:08 -07001356 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001357 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001358}
1359
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001360static void tg3_adjust_link(struct net_device *dev)
1361{
1362 u8 oldflowctrl, linkmesg = 0;
1363 u32 mac_mode, lcl_adv, rmt_adv;
1364 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001365 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001366
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001367 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001368
1369 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1370 MAC_MODE_HALF_DUPLEX);
1371
1372 oldflowctrl = tp->link_config.active_flowctrl;
1373
1374 if (phydev->link) {
1375 lcl_adv = 0;
1376 rmt_adv = 0;
1377
1378 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1379 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001380 else if (phydev->speed == SPEED_1000 ||
1381 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001382 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001383 else
1384 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001385
1386 if (phydev->duplex == DUPLEX_HALF)
1387 mac_mode |= MAC_MODE_HALF_DUPLEX;
1388 else {
1389 lcl_adv = tg3_advert_flowctrl_1000T(
1390 tp->link_config.flowctrl);
1391
1392 if (phydev->pause)
1393 rmt_adv = LPA_PAUSE_CAP;
1394 if (phydev->asym_pause)
1395 rmt_adv |= LPA_PAUSE_ASYM;
1396 }
1397
1398 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1399 } else
1400 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1401
1402 if (mac_mode != tp->mac_mode) {
1403 tp->mac_mode = mac_mode;
1404 tw32_f(MAC_MODE, tp->mac_mode);
1405 udelay(40);
1406 }
1407
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001408 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1409 if (phydev->speed == SPEED_10)
1410 tw32(MAC_MI_STAT,
1411 MAC_MI_STAT_10MBPS_MODE |
1412 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1413 else
1414 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1415 }
1416
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001417 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1418 tw32(MAC_TX_LENGTHS,
1419 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1420 (6 << TX_LENGTHS_IPG_SHIFT) |
1421 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1422 else
1423 tw32(MAC_TX_LENGTHS,
1424 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1425 (6 << TX_LENGTHS_IPG_SHIFT) |
1426 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1427
1428 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1429 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1430 phydev->speed != tp->link_config.active_speed ||
1431 phydev->duplex != tp->link_config.active_duplex ||
1432 oldflowctrl != tp->link_config.active_flowctrl)
1433 linkmesg = 1;
1434
1435 tp->link_config.active_speed = phydev->speed;
1436 tp->link_config.active_duplex = phydev->duplex;
1437
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001438 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001439
1440 if (linkmesg)
1441 tg3_link_report(tp);
1442}
1443
1444static int tg3_phy_init(struct tg3 *tp)
1445{
1446 struct phy_device *phydev;
1447
1448 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED)
1449 return 0;
1450
1451 /* Bring the PHY back to a known state. */
1452 tg3_bmcr_reset(tp);
1453
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001454 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001455
1456 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad32008-11-10 13:55:14 -08001457 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001458 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001459 if (IS_ERR(phydev)) {
1460 printk(KERN_ERR "%s: Could not attach to PHY\n", tp->dev->name);
1461 return PTR_ERR(phydev);
1462 }
1463
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001464 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001465 switch (phydev->interface) {
1466 case PHY_INTERFACE_MODE_GMII:
1467 case PHY_INTERFACE_MODE_RGMII:
Matt Carlson321d32a2008-11-21 17:22:19 -08001468 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
1469 phydev->supported &= (PHY_GBIT_FEATURES |
1470 SUPPORTED_Pause |
1471 SUPPORTED_Asym_Pause);
1472 break;
1473 }
1474 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001475 case PHY_INTERFACE_MODE_MII:
1476 phydev->supported &= (PHY_BASIC_FEATURES |
1477 SUPPORTED_Pause |
1478 SUPPORTED_Asym_Pause);
1479 break;
1480 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001481 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001482 return -EINVAL;
1483 }
1484
1485 tp->tg3_flags3 |= TG3_FLG3_PHY_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001486
1487 phydev->advertising = phydev->supported;
1488
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001489 return 0;
1490}
1491
1492static void tg3_phy_start(struct tg3 *tp)
1493{
1494 struct phy_device *phydev;
1495
1496 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
1497 return;
1498
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001499 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001500
1501 if (tp->link_config.phy_is_low_power) {
1502 tp->link_config.phy_is_low_power = 0;
1503 phydev->speed = tp->link_config.orig_speed;
1504 phydev->duplex = tp->link_config.orig_duplex;
1505 phydev->autoneg = tp->link_config.orig_autoneg;
1506 phydev->advertising = tp->link_config.orig_advertising;
1507 }
1508
1509 phy_start(phydev);
1510
1511 phy_start_aneg(phydev);
1512}
1513
1514static void tg3_phy_stop(struct tg3 *tp)
1515{
1516 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
1517 return;
1518
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001519 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001520}
1521
1522static void tg3_phy_fini(struct tg3 *tp)
1523{
1524 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001525 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001526 tp->tg3_flags3 &= ~TG3_FLG3_PHY_CONNECTED;
1527 }
1528}
1529
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001530static void tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1531{
1532 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1533 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1534}
1535
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001536static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1537{
1538 u32 phytest;
1539
1540 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1541 u32 phy;
1542
1543 tg3_writephy(tp, MII_TG3_FET_TEST,
1544 phytest | MII_TG3_FET_SHADOW_EN);
1545 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1546 if (enable)
1547 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1548 else
1549 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1550 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1551 }
1552 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1553 }
1554}
1555
Matt Carlson6833c042008-11-21 17:18:59 -08001556static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1557{
1558 u32 reg;
1559
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001560 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
Matt Carlson6833c042008-11-21 17:18:59 -08001561 return;
1562
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001563 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
1564 tg3_phy_fet_toggle_apd(tp, enable);
1565 return;
1566 }
1567
Matt Carlson6833c042008-11-21 17:18:59 -08001568 reg = MII_TG3_MISC_SHDW_WREN |
1569 MII_TG3_MISC_SHDW_SCR5_SEL |
1570 MII_TG3_MISC_SHDW_SCR5_LPED |
1571 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1572 MII_TG3_MISC_SHDW_SCR5_SDTL |
1573 MII_TG3_MISC_SHDW_SCR5_C125OE;
1574 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
1575 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
1576
1577 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1578
1579
1580 reg = MII_TG3_MISC_SHDW_WREN |
1581 MII_TG3_MISC_SHDW_APD_SEL |
1582 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
1583 if (enable)
1584 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
1585
1586 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1587}
1588
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001589static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
1590{
1591 u32 phy;
1592
1593 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
1594 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
1595 return;
1596
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001597 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001598 u32 ephy;
1599
Matt Carlson535ef6e2009-08-25 10:09:36 +00001600 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
1601 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
1602
1603 tg3_writephy(tp, MII_TG3_FET_TEST,
1604 ephy | MII_TG3_FET_SHADOW_EN);
1605 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001606 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00001607 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001608 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00001609 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
1610 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001611 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00001612 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001613 }
1614 } else {
1615 phy = MII_TG3_AUXCTL_MISC_RDSEL_MISC |
1616 MII_TG3_AUXCTL_SHDWSEL_MISC;
1617 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, phy) &&
1618 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy)) {
1619 if (enable)
1620 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1621 else
1622 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1623 phy |= MII_TG3_AUXCTL_MISC_WREN;
1624 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1625 }
1626 }
1627}
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629static void tg3_phy_set_wirespeed(struct tg3 *tp)
1630{
1631 u32 val;
1632
1633 if (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED)
1634 return;
1635
1636 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x7007) &&
1637 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &val))
1638 tg3_writephy(tp, MII_TG3_AUX_CTRL,
1639 (val | (1 << 15) | (1 << 4)));
1640}
1641
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001642static void tg3_phy_apply_otp(struct tg3 *tp)
1643{
1644 u32 otp, phy;
1645
1646 if (!tp->phy_otp)
1647 return;
1648
1649 otp = tp->phy_otp;
1650
1651 /* Enable SM_DSP clock and tx 6dB coding. */
1652 phy = MII_TG3_AUXCTL_SHDWSEL_AUXCTL |
1653 MII_TG3_AUXCTL_ACTL_SMDSP_ENA |
1654 MII_TG3_AUXCTL_ACTL_TX_6DB;
1655 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1656
1657 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
1658 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
1659 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
1660
1661 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
1662 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
1663 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
1664
1665 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
1666 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
1667 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
1668
1669 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
1670 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
1671
1672 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
1673 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
1674
1675 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
1676 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
1677 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
1678
1679 /* Turn off SM_DSP clock. */
1680 phy = MII_TG3_AUXCTL_SHDWSEL_AUXCTL |
1681 MII_TG3_AUXCTL_ACTL_TX_6DB;
1682 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1683}
1684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685static int tg3_wait_macro_done(struct tg3 *tp)
1686{
1687 int limit = 100;
1688
1689 while (limit--) {
1690 u32 tmp32;
1691
1692 if (!tg3_readphy(tp, 0x16, &tmp32)) {
1693 if ((tmp32 & 0x1000) == 0)
1694 break;
1695 }
1696 }
Roel Kluind4675b52009-02-12 16:33:27 -08001697 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 return -EBUSY;
1699
1700 return 0;
1701}
1702
1703static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
1704{
1705 static const u32 test_pat[4][6] = {
1706 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
1707 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
1708 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
1709 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
1710 };
1711 int chan;
1712
1713 for (chan = 0; chan < 4; chan++) {
1714 int i;
1715
1716 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1717 (chan * 0x2000) | 0x0200);
1718 tg3_writephy(tp, 0x16, 0x0002);
1719
1720 for (i = 0; i < 6; i++)
1721 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
1722 test_pat[chan][i]);
1723
1724 tg3_writephy(tp, 0x16, 0x0202);
1725 if (tg3_wait_macro_done(tp)) {
1726 *resetp = 1;
1727 return -EBUSY;
1728 }
1729
1730 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1731 (chan * 0x2000) | 0x0200);
1732 tg3_writephy(tp, 0x16, 0x0082);
1733 if (tg3_wait_macro_done(tp)) {
1734 *resetp = 1;
1735 return -EBUSY;
1736 }
1737
1738 tg3_writephy(tp, 0x16, 0x0802);
1739 if (tg3_wait_macro_done(tp)) {
1740 *resetp = 1;
1741 return -EBUSY;
1742 }
1743
1744 for (i = 0; i < 6; i += 2) {
1745 u32 low, high;
1746
1747 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
1748 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
1749 tg3_wait_macro_done(tp)) {
1750 *resetp = 1;
1751 return -EBUSY;
1752 }
1753 low &= 0x7fff;
1754 high &= 0x000f;
1755 if (low != test_pat[chan][i] ||
1756 high != test_pat[chan][i+1]) {
1757 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
1758 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
1759 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
1760
1761 return -EBUSY;
1762 }
1763 }
1764 }
1765
1766 return 0;
1767}
1768
1769static int tg3_phy_reset_chanpat(struct tg3 *tp)
1770{
1771 int chan;
1772
1773 for (chan = 0; chan < 4; chan++) {
1774 int i;
1775
1776 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1777 (chan * 0x2000) | 0x0200);
1778 tg3_writephy(tp, 0x16, 0x0002);
1779 for (i = 0; i < 6; i++)
1780 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
1781 tg3_writephy(tp, 0x16, 0x0202);
1782 if (tg3_wait_macro_done(tp))
1783 return -EBUSY;
1784 }
1785
1786 return 0;
1787}
1788
1789static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
1790{
1791 u32 reg32, phy9_orig;
1792 int retries, do_phy_reset, err;
1793
1794 retries = 10;
1795 do_phy_reset = 1;
1796 do {
1797 if (do_phy_reset) {
1798 err = tg3_bmcr_reset(tp);
1799 if (err)
1800 return err;
1801 do_phy_reset = 0;
1802 }
1803
1804 /* Disable transmitter and interrupt. */
1805 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
1806 continue;
1807
1808 reg32 |= 0x3000;
1809 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1810
1811 /* Set full-duplex, 1000 mbps. */
1812 tg3_writephy(tp, MII_BMCR,
1813 BMCR_FULLDPLX | TG3_BMCR_SPEED1000);
1814
1815 /* Set to master mode. */
1816 if (tg3_readphy(tp, MII_TG3_CTRL, &phy9_orig))
1817 continue;
1818
1819 tg3_writephy(tp, MII_TG3_CTRL,
1820 (MII_TG3_CTRL_AS_MASTER |
1821 MII_TG3_CTRL_ENABLE_AS_MASTER));
1822
1823 /* Enable SM_DSP_CLOCK and 6dB. */
1824 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1825
1826 /* Block the PHY control access. */
1827 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
1828 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0800);
1829
1830 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
1831 if (!err)
1832 break;
1833 } while (--retries);
1834
1835 err = tg3_phy_reset_chanpat(tp);
1836 if (err)
1837 return err;
1838
1839 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
1840 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0000);
1841
1842 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
1843 tg3_writephy(tp, 0x16, 0x0000);
1844
1845 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1846 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
1847 /* Set Extended packet length bit for jumbo frames */
1848 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4400);
1849 }
1850 else {
1851 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1852 }
1853
1854 tg3_writephy(tp, MII_TG3_CTRL, phy9_orig);
1855
1856 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
1857 reg32 &= ~0x3000;
1858 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1859 } else if (!err)
1860 err = -EBUSY;
1861
1862 return err;
1863}
1864
1865/* This will reset the tigon3 PHY if there is no valid
1866 * link unless the FORCE argument is non-zero.
1867 */
1868static int tg3_phy_reset(struct tg3 *tp)
1869{
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001870 u32 cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 u32 phy_status;
1872 int err;
1873
Michael Chan60189dd2006-12-17 17:08:07 -08001874 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1875 u32 val;
1876
1877 val = tr32(GRC_MISC_CFG);
1878 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
1879 udelay(40);
1880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 err = tg3_readphy(tp, MII_BMSR, &phy_status);
1882 err |= tg3_readphy(tp, MII_BMSR, &phy_status);
1883 if (err != 0)
1884 return -EBUSY;
1885
Michael Chanc8e1e822006-04-29 18:55:17 -07001886 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
1887 netif_carrier_off(tp->dev);
1888 tg3_link_report(tp);
1889 }
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1892 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
1893 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
1894 err = tg3_phy_reset_5703_4_5(tp);
1895 if (err)
1896 return err;
1897 goto out;
1898 }
1899
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001900 cpmuctrl = 0;
1901 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
1902 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
1903 cpmuctrl = tr32(TG3_CPMU_CTRL);
1904 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
1905 tw32(TG3_CPMU_CTRL,
1906 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
1907 }
1908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 err = tg3_bmcr_reset(tp);
1910 if (err)
1911 return err;
1912
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001913 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
1914 u32 phy;
1915
1916 phy = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
1917 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, phy);
1918
1919 tw32(TG3_CPMU_CTRL, cpmuctrl);
1920 }
1921
Matt Carlsonbcb37f62008-11-03 16:52:09 -08001922 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
1923 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08001924 u32 val;
1925
1926 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
1927 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
1928 CPMU_LSPD_1000MB_MACCLK_12_5) {
1929 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
1930 udelay(40);
1931 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
1932 }
1933 }
1934
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001935 tg3_phy_apply_otp(tp);
1936
Matt Carlson6833c042008-11-21 17:18:59 -08001937 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
1938 tg3_phy_toggle_apd(tp, true);
1939 else
1940 tg3_phy_toggle_apd(tp, false);
1941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942out:
1943 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADC_BUG) {
1944 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1945 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1946 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x2aaa);
1947 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
1948 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0323);
1949 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1950 }
1951 if (tp->tg3_flags2 & TG3_FLG2_PHY_5704_A0_BUG) {
1952 tg3_writephy(tp, 0x1c, 0x8d68);
1953 tg3_writephy(tp, 0x1c, 0x8d68);
1954 }
1955 if (tp->tg3_flags2 & TG3_FLG2_PHY_BER_BUG) {
1956 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1957 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
1958 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x310b);
1959 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1960 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x9506);
1961 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x401f);
1962 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x14e2);
1963 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1964 }
Michael Chanc424cb22006-04-29 18:56:34 -07001965 else if (tp->tg3_flags2 & TG3_FLG2_PHY_JITTER_BUG) {
1966 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1967 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
Michael Chanc1d2a192007-01-08 19:57:20 -08001968 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADJUST_TRIM) {
1969 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
1970 tg3_writephy(tp, MII_TG3_TEST1,
1971 MII_TG3_TEST1_TRIM_EN | 0x4);
1972 } else
1973 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
Michael Chanc424cb22006-04-29 18:56:34 -07001974 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 /* Set Extended packet length bit (bit 14) on all chips that */
1977 /* support jumbo frames */
1978 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
1979 /* Cannot do read-modify-write on 5401 */
1980 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
Matt Carlson8f666b02009-08-28 13:58:24 +00001981 } else if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 u32 phy_reg;
1983
1984 /* Set bit 14 with read-modify-write to preserve other bits */
1985 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0007) &&
1986 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy_reg))
1987 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy_reg | 0x4000);
1988 }
1989
1990 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
1991 * jumbo frames transmission.
1992 */
Matt Carlson8f666b02009-08-28 13:58:24 +00001993 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 u32 phy_reg;
1995
1996 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &phy_reg))
1997 tg3_writephy(tp, MII_TG3_EXT_CTRL,
1998 phy_reg | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
1999 }
2000
Michael Chan715116a2006-09-27 16:09:25 -07002001 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002002 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002003 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002004 }
2005
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002006 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 tg3_phy_set_wirespeed(tp);
2008 return 0;
2009}
2010
2011static void tg3_frob_aux_power(struct tg3 *tp)
2012{
2013 struct tg3 *tp_peer = tp;
2014
Michael Chan9d26e212006-12-07 00:21:14 -08002015 if ((tp->tg3_flags2 & TG3_FLG2_IS_NIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 return;
2017
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00002018 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2019 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
2020 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002021 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002023 dev_peer = pci_get_drvdata(tp->pdev_peer);
Michael Chanbc1c7562006-03-20 17:48:03 -08002024 /* remove_one() may have been run on the peer. */
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002025 if (!dev_peer)
Michael Chanbc1c7562006-03-20 17:48:03 -08002026 tp_peer = tp;
2027 else
2028 tp_peer = netdev_priv(dev_peer);
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031 if ((tp->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
Michael Chan6921d202005-12-13 21:15:53 -08002032 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0 ||
2033 (tp_peer->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
2034 (tp_peer->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2036 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08002037 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2038 (GRC_LCLCTRL_GPIO_OE0 |
2039 GRC_LCLCTRL_GPIO_OE1 |
2040 GRC_LCLCTRL_GPIO_OE2 |
2041 GRC_LCLCTRL_GPIO_OUTPUT0 |
2042 GRC_LCLCTRL_GPIO_OUTPUT1),
2043 100);
Matt Carlson8d519ab2009-04-20 06:58:01 +00002044 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2045 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -07002046 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2047 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2048 GRC_LCLCTRL_GPIO_OE1 |
2049 GRC_LCLCTRL_GPIO_OE2 |
2050 GRC_LCLCTRL_GPIO_OUTPUT0 |
2051 GRC_LCLCTRL_GPIO_OUTPUT1 |
2052 tp->grc_local_ctrl;
2053 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2054
2055 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2056 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2057
2058 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2059 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 } else {
2061 u32 no_gpio2;
Michael Chandc56b7d2005-12-19 16:26:28 -08002062 u32 grc_local_ctrl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064 if (tp_peer != tp &&
2065 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
2066 return;
2067
Michael Chandc56b7d2005-12-19 16:26:28 -08002068 /* Workaround to prevent overdrawing Amps. */
2069 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2070 ASIC_REV_5714) {
2071 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chanb401e9e2005-12-19 16:27:04 -08002072 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2073 grc_local_ctrl, 100);
Michael Chandc56b7d2005-12-19 16:26:28 -08002074 }
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 /* On 5753 and variants, GPIO2 cannot be used. */
2077 no_gpio2 = tp->nic_sram_data_cfg &
2078 NIC_SRAM_DATA_CFG_NO_GPIO2;
2079
Michael Chandc56b7d2005-12-19 16:26:28 -08002080 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 GRC_LCLCTRL_GPIO_OE1 |
2082 GRC_LCLCTRL_GPIO_OE2 |
2083 GRC_LCLCTRL_GPIO_OUTPUT1 |
2084 GRC_LCLCTRL_GPIO_OUTPUT2;
2085 if (no_gpio2) {
2086 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2087 GRC_LCLCTRL_GPIO_OUTPUT2);
2088 }
Michael Chanb401e9e2005-12-19 16:27:04 -08002089 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2090 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2093
Michael Chanb401e9e2005-12-19 16:27:04 -08002094 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2095 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 if (!no_gpio2) {
2098 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chanb401e9e2005-12-19 16:27:04 -08002099 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2100 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
2102 }
2103 } else {
2104 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
2105 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
2106 if (tp_peer != tp &&
2107 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
2108 return;
2109
Michael Chanb401e9e2005-12-19 16:27:04 -08002110 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2111 (GRC_LCLCTRL_GPIO_OE1 |
2112 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Michael Chanb401e9e2005-12-19 16:27:04 -08002114 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2115 GRC_LCLCTRL_GPIO_OE1, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Michael Chanb401e9e2005-12-19 16:27:04 -08002117 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2118 (GRC_LCLCTRL_GPIO_OE1 |
2119 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
2121 }
2122}
2123
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002124static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2125{
2126 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2127 return 1;
2128 else if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411) {
2129 if (speed != SPEED_10)
2130 return 1;
2131 } else if (speed == SPEED_10)
2132 return 1;
2133
2134 return 0;
2135}
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137static int tg3_setup_phy(struct tg3 *, int);
2138
2139#define RESET_KIND_SHUTDOWN 0
2140#define RESET_KIND_INIT 1
2141#define RESET_KIND_SUSPEND 2
2142
2143static void tg3_write_sig_post_reset(struct tg3 *, int);
2144static int tg3_halt_cpu(struct tg3 *, u32);
2145
Matt Carlson0a459aa2008-11-03 16:54:15 -08002146static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002147{
Matt Carlsonce057f02007-11-12 21:08:03 -08002148 u32 val;
2149
Michael Chan51297242007-02-13 12:17:57 -08002150 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
2151 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2152 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2153 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2154
2155 sg_dig_ctrl |=
2156 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2157 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2158 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2159 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002160 return;
Michael Chan51297242007-02-13 12:17:57 -08002161 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002162
Michael Chan60189dd2006-12-17 17:08:07 -08002163 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002164 tg3_bmcr_reset(tp);
2165 val = tr32(GRC_MISC_CFG);
2166 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2167 udelay(40);
2168 return;
Matt Carlson0e5f7842009-11-02 14:26:38 +00002169 } else if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
2170 u32 phytest;
2171 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2172 u32 phy;
2173
2174 tg3_writephy(tp, MII_ADVERTISE, 0);
2175 tg3_writephy(tp, MII_BMCR,
2176 BMCR_ANENABLE | BMCR_ANRESTART);
2177
2178 tg3_writephy(tp, MII_TG3_FET_TEST,
2179 phytest | MII_TG3_FET_SHADOW_EN);
2180 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2181 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2182 tg3_writephy(tp,
2183 MII_TG3_FET_SHDW_AUXMODE4,
2184 phy);
2185 }
2186 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2187 }
2188 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002189 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002190 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2191 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002192
2193 tg3_writephy(tp, MII_TG3_AUX_CTRL,
2194 MII_TG3_AUXCTL_SHDWSEL_PWRCTL |
2195 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2196 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2197 MII_TG3_AUXCTL_PCTL_VREG_11V);
Michael Chan715116a2006-09-27 16:09:25 -07002198 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002199
Michael Chan15c3b692006-03-22 01:06:52 -08002200 /* The PHY should not be powered down on some chips because
2201 * of bugs.
2202 */
2203 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2204 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2205 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
2206 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)))
2207 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002208
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002209 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2210 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002211 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2212 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2213 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2214 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2215 }
2216
Michael Chan15c3b692006-03-22 01:06:52 -08002217 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2218}
2219
Matt Carlson3f007892008-11-03 16:51:36 -08002220/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002221static int tg3_nvram_lock(struct tg3 *tp)
2222{
2223 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
2224 int i;
2225
2226 if (tp->nvram_lock_cnt == 0) {
2227 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2228 for (i = 0; i < 8000; i++) {
2229 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2230 break;
2231 udelay(20);
2232 }
2233 if (i == 8000) {
2234 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2235 return -ENODEV;
2236 }
2237 }
2238 tp->nvram_lock_cnt++;
2239 }
2240 return 0;
2241}
2242
2243/* tp->lock is held. */
2244static void tg3_nvram_unlock(struct tg3 *tp)
2245{
2246 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
2247 if (tp->nvram_lock_cnt > 0)
2248 tp->nvram_lock_cnt--;
2249 if (tp->nvram_lock_cnt == 0)
2250 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2251 }
2252}
2253
2254/* tp->lock is held. */
2255static void tg3_enable_nvram_access(struct tg3 *tp)
2256{
2257 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Matt Carlsonf66a29b2009-11-13 13:03:36 +00002258 !(tp->tg3_flags3 & TG3_FLG3_PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002259 u32 nvaccess = tr32(NVRAM_ACCESS);
2260
2261 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2262 }
2263}
2264
2265/* tp->lock is held. */
2266static void tg3_disable_nvram_access(struct tg3 *tp)
2267{
2268 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Matt Carlsonf66a29b2009-11-13 13:03:36 +00002269 !(tp->tg3_flags3 & TG3_FLG3_PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002270 u32 nvaccess = tr32(NVRAM_ACCESS);
2271
2272 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2273 }
2274}
2275
2276static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2277 u32 offset, u32 *val)
2278{
2279 u32 tmp;
2280 int i;
2281
2282 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2283 return -EINVAL;
2284
2285 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2286 EEPROM_ADDR_DEVID_MASK |
2287 EEPROM_ADDR_READ);
2288 tw32(GRC_EEPROM_ADDR,
2289 tmp |
2290 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2291 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2292 EEPROM_ADDR_ADDR_MASK) |
2293 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2294
2295 for (i = 0; i < 1000; i++) {
2296 tmp = tr32(GRC_EEPROM_ADDR);
2297
2298 if (tmp & EEPROM_ADDR_COMPLETE)
2299 break;
2300 msleep(1);
2301 }
2302 if (!(tmp & EEPROM_ADDR_COMPLETE))
2303 return -EBUSY;
2304
Matt Carlson62cedd12009-04-20 14:52:29 -07002305 tmp = tr32(GRC_EEPROM_DATA);
2306
2307 /*
2308 * The data will always be opposite the native endian
2309 * format. Perform a blind byteswap to compensate.
2310 */
2311 *val = swab32(tmp);
2312
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002313 return 0;
2314}
2315
2316#define NVRAM_CMD_TIMEOUT 10000
2317
2318static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2319{
2320 int i;
2321
2322 tw32(NVRAM_CMD, nvram_cmd);
2323 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2324 udelay(10);
2325 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2326 udelay(10);
2327 break;
2328 }
2329 }
2330
2331 if (i == NVRAM_CMD_TIMEOUT)
2332 return -EBUSY;
2333
2334 return 0;
2335}
2336
2337static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2338{
2339 if ((tp->tg3_flags & TG3_FLAG_NVRAM) &&
2340 (tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) &&
2341 (tp->tg3_flags2 & TG3_FLG2_FLASH) &&
2342 !(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM_ADDR_TRANS) &&
2343 (tp->nvram_jedecnum == JEDEC_ATMEL))
2344
2345 addr = ((addr / tp->nvram_pagesize) <<
2346 ATMEL_AT45DB0X1B_PAGE_POS) +
2347 (addr % tp->nvram_pagesize);
2348
2349 return addr;
2350}
2351
2352static u32 tg3_nvram_logical_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 >> ATMEL_AT45DB0X1B_PAGE_POS) *
2361 tp->nvram_pagesize) +
2362 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2363
2364 return addr;
2365}
2366
Matt Carlsone4f34112009-02-25 14:25:00 +00002367/* NOTE: Data read in from NVRAM is byteswapped according to
2368 * the byteswapping settings for all other register accesses.
2369 * tg3 devices are BE devices, so on a BE machine, the data
2370 * returned will be exactly as it is seen in NVRAM. On a LE
2371 * machine, the 32-bit value will be byteswapped.
2372 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002373static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2374{
2375 int ret;
2376
2377 if (!(tp->tg3_flags & TG3_FLAG_NVRAM))
2378 return tg3_nvram_read_using_eeprom(tp, offset, val);
2379
2380 offset = tg3_nvram_phys_addr(tp, offset);
2381
2382 if (offset > NVRAM_ADDR_MSK)
2383 return -EINVAL;
2384
2385 ret = tg3_nvram_lock(tp);
2386 if (ret)
2387 return ret;
2388
2389 tg3_enable_nvram_access(tp);
2390
2391 tw32(NVRAM_ADDR, offset);
2392 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2393 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2394
2395 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002396 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002397
2398 tg3_disable_nvram_access(tp);
2399
2400 tg3_nvram_unlock(tp);
2401
2402 return ret;
2403}
2404
Matt Carlsona9dc5292009-02-25 14:25:30 +00002405/* Ensures NVRAM data is in bytestream format. */
2406static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002407{
2408 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002409 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002410 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002411 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002412 return res;
2413}
2414
2415/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08002416static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
2417{
2418 u32 addr_high, addr_low;
2419 int i;
2420
2421 addr_high = ((tp->dev->dev_addr[0] << 8) |
2422 tp->dev->dev_addr[1]);
2423 addr_low = ((tp->dev->dev_addr[2] << 24) |
2424 (tp->dev->dev_addr[3] << 16) |
2425 (tp->dev->dev_addr[4] << 8) |
2426 (tp->dev->dev_addr[5] << 0));
2427 for (i = 0; i < 4; i++) {
2428 if (i == 1 && skip_mac_1)
2429 continue;
2430 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
2431 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
2432 }
2433
2434 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2435 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2436 for (i = 0; i < 12; i++) {
2437 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
2438 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
2439 }
2440 }
2441
2442 addr_high = (tp->dev->dev_addr[0] +
2443 tp->dev->dev_addr[1] +
2444 tp->dev->dev_addr[2] +
2445 tp->dev->dev_addr[3] +
2446 tp->dev->dev_addr[4] +
2447 tp->dev->dev_addr[5]) &
2448 TX_BACKOFF_SEED_MASK;
2449 tw32(MAC_TX_BACKOFF_SEED, addr_high);
2450}
2451
Michael Chanbc1c7562006-03-20 17:48:03 -08002452static int tg3_set_power_state(struct tg3 *tp, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
2454 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002455 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
2457 /* Make sure register accesses (indirect or otherwise)
2458 * will function correctly.
2459 */
2460 pci_write_config_dword(tp->pdev,
2461 TG3PCI_MISC_HOST_CTRL,
2462 tp->misc_host_ctrl);
2463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 switch (state) {
Michael Chanbc1c7562006-03-20 17:48:03 -08002465 case PCI_D0:
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002466 pci_enable_wake(tp->pdev, state, false);
2467 pci_set_power_state(tp->pdev, PCI_D0);
Michael Chan8c6bda12005-04-21 17:09:08 -07002468
Michael Chan9d26e212006-12-07 00:21:14 -08002469 /* Switch out of Vaux if it is a NIC */
2470 if (tp->tg3_flags2 & TG3_FLG2_IS_NIC)
Michael Chanb401e9e2005-12-19 16:27:04 -08002471 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
2473 return 0;
2474
Michael Chanbc1c7562006-03-20 17:48:03 -08002475 case PCI_D1:
Michael Chanbc1c7562006-03-20 17:48:03 -08002476 case PCI_D2:
Michael Chanbc1c7562006-03-20 17:48:03 -08002477 case PCI_D3hot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 break;
2479
2480 default:
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002481 printk(KERN_ERR PFX "%s: Invalid power state (D%d) requested\n",
2482 tp->dev->name, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002484 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002485
2486 /* Restore the CLKREQ setting. */
2487 if (tp->tg3_flags3 & TG3_FLG3_CLKREQ_BUG) {
2488 u16 lnkctl;
2489
2490 pci_read_config_word(tp->pdev,
2491 tp->pcie_cap + PCI_EXP_LNKCTL,
2492 &lnkctl);
2493 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
2494 pci_write_config_word(tp->pdev,
2495 tp->pcie_cap + PCI_EXP_LNKCTL,
2496 lnkctl);
2497 }
2498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
2500 tw32(TG3PCI_MISC_HOST_CTRL,
2501 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
2502
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002503 device_should_wake = pci_pme_capable(tp->pdev, state) &&
2504 device_may_wakeup(&tp->pdev->dev) &&
2505 (tp->tg3_flags & TG3_FLAG_WOL_ENABLE);
2506
Matt Carlsondd477002008-05-25 23:45:58 -07002507 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002508 do_low_power = false;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002509 if ((tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) &&
2510 !tp->link_config.phy_is_low_power) {
2511 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002512 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002513
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002514 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002515
2516 tp->link_config.phy_is_low_power = 1;
2517
2518 tp->link_config.orig_speed = phydev->speed;
2519 tp->link_config.orig_duplex = phydev->duplex;
2520 tp->link_config.orig_autoneg = phydev->autoneg;
2521 tp->link_config.orig_advertising = phydev->advertising;
2522
2523 advertising = ADVERTISED_TP |
2524 ADVERTISED_Pause |
2525 ADVERTISED_Autoneg |
2526 ADVERTISED_10baseT_Half;
2527
2528 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002529 device_should_wake) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002530 if (tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB)
2531 advertising |=
2532 ADVERTISED_100baseT_Half |
2533 ADVERTISED_100baseT_Full |
2534 ADVERTISED_10baseT_Full;
2535 else
2536 advertising |= ADVERTISED_10baseT_Full;
2537 }
2538
2539 phydev->advertising = advertising;
2540
2541 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002542
2543 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
2544 if (phyid != TG3_PHY_ID_BCMAC131) {
2545 phyid &= TG3_PHY_OUI_MASK;
Roel Kluinf72b5342009-02-18 17:42:42 -08002546 if (phyid == TG3_PHY_OUI_1 ||
2547 phyid == TG3_PHY_OUI_2 ||
Matt Carlson0a459aa2008-11-03 16:54:15 -08002548 phyid == TG3_PHY_OUI_3)
2549 do_low_power = true;
2550 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002551 }
Matt Carlsondd477002008-05-25 23:45:58 -07002552 } else {
Matt Carlson20232762008-12-21 20:18:56 -08002553 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002554
Matt Carlsondd477002008-05-25 23:45:58 -07002555 if (tp->link_config.phy_is_low_power == 0) {
2556 tp->link_config.phy_is_low_power = 1;
2557 tp->link_config.orig_speed = tp->link_config.speed;
2558 tp->link_config.orig_duplex = tp->link_config.duplex;
2559 tp->link_config.orig_autoneg = tp->link_config.autoneg;
2560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Matt Carlsondd477002008-05-25 23:45:58 -07002562 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
2563 tp->link_config.speed = SPEED_10;
2564 tp->link_config.duplex = DUPLEX_HALF;
2565 tp->link_config.autoneg = AUTONEG_ENABLE;
2566 tg3_setup_phy(tp, 0);
2567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 }
2569
Michael Chanb5d37722006-09-27 16:06:21 -07002570 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2571 u32 val;
2572
2573 val = tr32(GRC_VCPU_EXT_CTRL);
2574 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
2575 } else if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08002576 int i;
2577 u32 val;
2578
2579 for (i = 0; i < 200; i++) {
2580 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
2581 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
2582 break;
2583 msleep(1);
2584 }
2585 }
Gary Zambranoa85feb82007-05-05 11:52:19 -07002586 if (tp->tg3_flags & TG3_FLAG_WOL_CAP)
2587 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
2588 WOL_DRV_STATE_SHUTDOWN |
2589 WOL_DRV_WOL |
2590 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08002591
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002592 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 u32 mac_mode;
2594
2595 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002596 if (do_low_power) {
Matt Carlsondd477002008-05-25 23:45:58 -07002597 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x5a);
2598 udelay(40);
2599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Michael Chan3f7045c2006-09-27 16:02:29 -07002601 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
2602 mac_mode = MAC_MODE_PORT_MODE_GMII;
2603 else
2604 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002606 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
2607 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2608 ASIC_REV_5700) {
2609 u32 speed = (tp->tg3_flags &
2610 TG3_FLAG_WOL_SPEED_100MB) ?
2611 SPEED_100 : SPEED_10;
2612 if (tg3_5700_link_polarity(tp, speed))
2613 mac_mode |= MAC_MODE_LINK_POLARITY;
2614 else
2615 mac_mode &= ~MAC_MODE_LINK_POLARITY;
2616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 } else {
2618 mac_mode = MAC_MODE_PORT_MODE_TBI;
2619 }
2620
John W. Linvillecbf46852005-04-21 17:01:29 -07002621 if (!(tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 tw32(MAC_LED_CTRL, tp->led_ctrl);
2623
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002624 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
2625 if (((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
2626 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) &&
2627 ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
2628 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)))
2629 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
Matt Carlson3bda1252008-08-15 14:08:22 -07002631 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
2632 mac_mode |= tp->mac_mode &
2633 (MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN);
2634 if (mac_mode & MAC_MODE_APE_TX_EN)
2635 mac_mode |= MAC_MODE_TDE_ENABLE;
2636 }
2637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 tw32_f(MAC_MODE, mac_mode);
2639 udelay(100);
2640
2641 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
2642 udelay(10);
2643 }
2644
2645 if (!(tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB) &&
2646 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2647 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
2648 u32 base_val;
2649
2650 base_val = tp->pci_clock_ctrl;
2651 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
2652 CLOCK_CTRL_TXCLK_DISABLE);
2653
Michael Chanb401e9e2005-12-19 16:27:04 -08002654 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
2655 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Michael Chand7b0a852007-02-13 12:17:38 -08002656 } else if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
Matt Carlson795d01c2007-10-07 23:28:17 -07002657 (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
Michael Chand7b0a852007-02-13 12:17:38 -08002658 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)) {
Michael Chan4cf78e42005-07-25 12:29:19 -07002659 /* do nothing */
Michael Chan85e94ce2005-04-21 17:05:28 -07002660 } else if (!((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF))) {
2662 u32 newbits1, newbits2;
2663
2664 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2665 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2666 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
2667 CLOCK_CTRL_TXCLK_DISABLE |
2668 CLOCK_CTRL_ALTCLK);
2669 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2670 } else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
2671 newbits1 = CLOCK_CTRL_625_CORE;
2672 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
2673 } else {
2674 newbits1 = CLOCK_CTRL_ALTCLK;
2675 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2676 }
2677
Michael Chanb401e9e2005-12-19 16:27:04 -08002678 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
2679 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Michael Chanb401e9e2005-12-19 16:27:04 -08002681 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
2682 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
2684 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
2685 u32 newbits3;
2686
2687 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2688 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2689 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
2690 CLOCK_CTRL_TXCLK_DISABLE |
2691 CLOCK_CTRL_44MHZ_CORE);
2692 } else {
2693 newbits3 = CLOCK_CTRL_44MHZ_CORE;
2694 }
2695
Michael Chanb401e9e2005-12-19 16:27:04 -08002696 tw32_wait_f(TG3PCI_CLOCK_CTRL,
2697 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 }
2699 }
2700
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002701 if (!(device_should_wake) &&
Matt Carlson22435842008-11-21 17:21:13 -08002702 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08002703 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08002704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 tg3_frob_aux_power(tp);
2706
2707 /* Workaround for unstable PLL clock */
2708 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
2709 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
2710 u32 val = tr32(0x7d00);
2711
2712 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
2713 tw32(0x7d00, val);
Michael Chan6921d202005-12-13 21:15:53 -08002714 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08002715 int err;
2716
2717 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08002719 if (!err)
2720 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08002721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 }
2723
Michael Chanbbadf502006-04-06 21:46:34 -07002724 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
2725
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002726 if (device_should_wake)
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002727 pci_enable_wake(tp->pdev, state, true);
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 /* Finally, set the new power state. */
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002730 pci_set_power_state(tp->pdev, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 return 0;
2733}
2734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
2736{
2737 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
2738 case MII_TG3_AUX_STAT_10HALF:
2739 *speed = SPEED_10;
2740 *duplex = DUPLEX_HALF;
2741 break;
2742
2743 case MII_TG3_AUX_STAT_10FULL:
2744 *speed = SPEED_10;
2745 *duplex = DUPLEX_FULL;
2746 break;
2747
2748 case MII_TG3_AUX_STAT_100HALF:
2749 *speed = SPEED_100;
2750 *duplex = DUPLEX_HALF;
2751 break;
2752
2753 case MII_TG3_AUX_STAT_100FULL:
2754 *speed = SPEED_100;
2755 *duplex = DUPLEX_FULL;
2756 break;
2757
2758 case MII_TG3_AUX_STAT_1000HALF:
2759 *speed = SPEED_1000;
2760 *duplex = DUPLEX_HALF;
2761 break;
2762
2763 case MII_TG3_AUX_STAT_1000FULL:
2764 *speed = SPEED_1000;
2765 *duplex = DUPLEX_FULL;
2766 break;
2767
2768 default:
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002769 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07002770 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
2771 SPEED_10;
2772 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
2773 DUPLEX_HALF;
2774 break;
2775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 *speed = SPEED_INVALID;
2777 *duplex = DUPLEX_INVALID;
2778 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780}
2781
2782static void tg3_phy_copper_begin(struct tg3 *tp)
2783{
2784 u32 new_adv;
2785 int i;
2786
2787 if (tp->link_config.phy_is_low_power) {
2788 /* Entering low power mode. Disable gigabit and
2789 * 100baseT advertisements.
2790 */
2791 tg3_writephy(tp, MII_TG3_CTRL, 0);
2792
2793 new_adv = (ADVERTISE_10HALF | ADVERTISE_10FULL |
2794 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
2795 if (tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB)
2796 new_adv |= (ADVERTISE_100HALF | ADVERTISE_100FULL);
2797
2798 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2799 } else if (tp->link_config.speed == SPEED_INVALID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
2801 tp->link_config.advertising &=
2802 ~(ADVERTISED_1000baseT_Half |
2803 ADVERTISED_1000baseT_Full);
2804
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002805 new_adv = ADVERTISE_CSMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 if (tp->link_config.advertising & ADVERTISED_10baseT_Half)
2807 new_adv |= ADVERTISE_10HALF;
2808 if (tp->link_config.advertising & ADVERTISED_10baseT_Full)
2809 new_adv |= ADVERTISE_10FULL;
2810 if (tp->link_config.advertising & ADVERTISED_100baseT_Half)
2811 new_adv |= ADVERTISE_100HALF;
2812 if (tp->link_config.advertising & ADVERTISED_100baseT_Full)
2813 new_adv |= ADVERTISE_100FULL;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002814
2815 new_adv |= tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2818
2819 if (tp->link_config.advertising &
2820 (ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full)) {
2821 new_adv = 0;
2822 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
2823 new_adv |= MII_TG3_CTRL_ADV_1000_HALF;
2824 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
2825 new_adv |= MII_TG3_CTRL_ADV_1000_FULL;
2826 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY) &&
2827 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2828 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0))
2829 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2830 MII_TG3_CTRL_ENABLE_AS_MASTER);
2831 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
2832 } else {
2833 tg3_writephy(tp, MII_TG3_CTRL, 0);
2834 }
2835 } else {
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002836 new_adv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2837 new_adv |= ADVERTISE_CSMA;
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 /* Asking for a specific link mode. */
2840 if (tp->link_config.speed == SPEED_1000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2842
2843 if (tp->link_config.duplex == DUPLEX_FULL)
2844 new_adv = MII_TG3_CTRL_ADV_1000_FULL;
2845 else
2846 new_adv = MII_TG3_CTRL_ADV_1000_HALF;
2847 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2848 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
2849 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2850 MII_TG3_CTRL_ENABLE_AS_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 if (tp->link_config.speed == SPEED_100) {
2853 if (tp->link_config.duplex == DUPLEX_FULL)
2854 new_adv |= ADVERTISE_100FULL;
2855 else
2856 new_adv |= ADVERTISE_100HALF;
2857 } else {
2858 if (tp->link_config.duplex == DUPLEX_FULL)
2859 new_adv |= ADVERTISE_10FULL;
2860 else
2861 new_adv |= ADVERTISE_10HALF;
2862 }
2863 tg3_writephy(tp, MII_ADVERTISE, new_adv);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002864
2865 new_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002867
2868 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 }
2870
2871 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
2872 tp->link_config.speed != SPEED_INVALID) {
2873 u32 bmcr, orig_bmcr;
2874
2875 tp->link_config.active_speed = tp->link_config.speed;
2876 tp->link_config.active_duplex = tp->link_config.duplex;
2877
2878 bmcr = 0;
2879 switch (tp->link_config.speed) {
2880 default:
2881 case SPEED_10:
2882 break;
2883
2884 case SPEED_100:
2885 bmcr |= BMCR_SPEED100;
2886 break;
2887
2888 case SPEED_1000:
2889 bmcr |= TG3_BMCR_SPEED1000;
2890 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893 if (tp->link_config.duplex == DUPLEX_FULL)
2894 bmcr |= BMCR_FULLDPLX;
2895
2896 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
2897 (bmcr != orig_bmcr)) {
2898 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
2899 for (i = 0; i < 1500; i++) {
2900 u32 tmp;
2901
2902 udelay(10);
2903 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
2904 tg3_readphy(tp, MII_BMSR, &tmp))
2905 continue;
2906 if (!(tmp & BMSR_LSTATUS)) {
2907 udelay(40);
2908 break;
2909 }
2910 }
2911 tg3_writephy(tp, MII_BMCR, bmcr);
2912 udelay(40);
2913 }
2914 } else {
2915 tg3_writephy(tp, MII_BMCR,
2916 BMCR_ANENABLE | BMCR_ANRESTART);
2917 }
2918}
2919
2920static int tg3_init_5401phy_dsp(struct tg3 *tp)
2921{
2922 int err;
2923
2924 /* Turn off tap power management. */
2925 /* Set Extended packet length bit */
2926 err = tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
2927
2928 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0012);
2929 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1804);
2930
2931 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0013);
2932 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1204);
2933
2934 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
2935 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0132);
2936
2937 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
2938 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0232);
2939
2940 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
2941 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0a20);
2942
2943 udelay(40);
2944
2945 return err;
2946}
2947
Michael Chan3600d912006-12-07 00:21:48 -08002948static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949{
Michael Chan3600d912006-12-07 00:21:48 -08002950 u32 adv_reg, all_mask = 0;
2951
2952 if (mask & ADVERTISED_10baseT_Half)
2953 all_mask |= ADVERTISE_10HALF;
2954 if (mask & ADVERTISED_10baseT_Full)
2955 all_mask |= ADVERTISE_10FULL;
2956 if (mask & ADVERTISED_100baseT_Half)
2957 all_mask |= ADVERTISE_100HALF;
2958 if (mask & ADVERTISED_100baseT_Full)
2959 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
2961 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
2962 return 0;
2963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 if ((adv_reg & all_mask) != all_mask)
2965 return 0;
2966 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
2967 u32 tg3_ctrl;
2968
Michael Chan3600d912006-12-07 00:21:48 -08002969 all_mask = 0;
2970 if (mask & ADVERTISED_1000baseT_Half)
2971 all_mask |= ADVERTISE_1000HALF;
2972 if (mask & ADVERTISED_1000baseT_Full)
2973 all_mask |= ADVERTISE_1000FULL;
2974
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 if (tg3_readphy(tp, MII_TG3_CTRL, &tg3_ctrl))
2976 return 0;
2977
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 if ((tg3_ctrl & all_mask) != all_mask)
2979 return 0;
2980 }
2981 return 1;
2982}
2983
Matt Carlsonef167e22007-12-20 20:10:01 -08002984static int tg3_adv_1000T_flowctrl_ok(struct tg3 *tp, u32 *lcladv, u32 *rmtadv)
2985{
2986 u32 curadv, reqadv;
2987
2988 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
2989 return 1;
2990
2991 curadv = *lcladv & (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
2992 reqadv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2993
2994 if (tp->link_config.active_duplex == DUPLEX_FULL) {
2995 if (curadv != reqadv)
2996 return 0;
2997
2998 if (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG)
2999 tg3_readphy(tp, MII_LPA, rmtadv);
3000 } else {
3001 /* Reprogram the advertisement register, even if it
3002 * does not affect the current link. If the link
3003 * gets renegotiated in the future, we can save an
3004 * additional renegotiation cycle by advertising
3005 * it correctly in the first place.
3006 */
3007 if (curadv != reqadv) {
3008 *lcladv &= ~(ADVERTISE_PAUSE_CAP |
3009 ADVERTISE_PAUSE_ASYM);
3010 tg3_writephy(tp, MII_ADVERTISE, *lcladv | reqadv);
3011 }
3012 }
3013
3014 return 1;
3015}
3016
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
3018{
3019 int current_link_up;
3020 u32 bmsr, dummy;
Matt Carlsonef167e22007-12-20 20:10:01 -08003021 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 u16 current_speed;
3023 u8 current_duplex;
3024 int i, err;
3025
3026 tw32(MAC_EVENT, 0);
3027
3028 tw32_f(MAC_STATUS,
3029 (MAC_STATUS_SYNC_CHANGED |
3030 MAC_STATUS_CFG_CHANGED |
3031 MAC_STATUS_MI_COMPLETION |
3032 MAC_STATUS_LNKSTATE_CHANGED));
3033 udelay(40);
3034
Matt Carlson8ef21422008-05-02 16:47:53 -07003035 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
3036 tw32_f(MAC_MI_MODE,
3037 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
3038 udelay(80);
3039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
3041 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x02);
3042
3043 /* Some third-party PHYs need to be reset on link going
3044 * down.
3045 */
3046 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3047 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
3048 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
3049 netif_carrier_ok(tp->dev)) {
3050 tg3_readphy(tp, MII_BMSR, &bmsr);
3051 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3052 !(bmsr & BMSR_LSTATUS))
3053 force_reset = 1;
3054 }
3055 if (force_reset)
3056 tg3_phy_reset(tp);
3057
3058 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
3059 tg3_readphy(tp, MII_BMSR, &bmsr);
3060 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
3061 !(tp->tg3_flags & TG3_FLAG_INIT_COMPLETE))
3062 bmsr = 0;
3063
3064 if (!(bmsr & BMSR_LSTATUS)) {
3065 err = tg3_init_5401phy_dsp(tp);
3066 if (err)
3067 return err;
3068
3069 tg3_readphy(tp, MII_BMSR, &bmsr);
3070 for (i = 0; i < 1000; i++) {
3071 udelay(10);
3072 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3073 (bmsr & BMSR_LSTATUS)) {
3074 udelay(40);
3075 break;
3076 }
3077 }
3078
3079 if ((tp->phy_id & PHY_ID_REV_MASK) == PHY_REV_BCM5401_B0 &&
3080 !(bmsr & BMSR_LSTATUS) &&
3081 tp->link_config.active_speed == SPEED_1000) {
3082 err = tg3_phy_reset(tp);
3083 if (!err)
3084 err = tg3_init_5401phy_dsp(tp);
3085 if (err)
3086 return err;
3087 }
3088 }
3089 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3090 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
3091 /* 5701 {A0,B0} CRC bug workaround */
3092 tg3_writephy(tp, 0x15, 0x0a75);
3093 tg3_writephy(tp, 0x1c, 0x8c68);
3094 tg3_writephy(tp, 0x1c, 0x8d68);
3095 tg3_writephy(tp, 0x1c, 0x8c68);
3096 }
3097
3098 /* Clear pending interrupts... */
3099 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
3100 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
3101
3102 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT)
3103 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlson7f97a4b2009-08-25 10:10:03 +00003104 else if (!(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 tg3_writephy(tp, MII_TG3_IMASK, ~0);
3106
3107 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3108 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3109 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
3110 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3111 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
3112 else
3113 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
3114 }
3115
3116 current_link_up = 0;
3117 current_speed = SPEED_INVALID;
3118 current_duplex = DUPLEX_INVALID;
3119
3120 if (tp->tg3_flags2 & TG3_FLG2_CAPACITIVE_COUPLING) {
3121 u32 val;
3122
3123 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4007);
3124 tg3_readphy(tp, MII_TG3_AUX_CTRL, &val);
3125 if (!(val & (1 << 10))) {
3126 val |= (1 << 10);
3127 tg3_writephy(tp, MII_TG3_AUX_CTRL, val);
3128 goto relink;
3129 }
3130 }
3131
3132 bmsr = 0;
3133 for (i = 0; i < 100; i++) {
3134 tg3_readphy(tp, MII_BMSR, &bmsr);
3135 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3136 (bmsr & BMSR_LSTATUS))
3137 break;
3138 udelay(40);
3139 }
3140
3141 if (bmsr & BMSR_LSTATUS) {
3142 u32 aux_stat, bmcr;
3143
3144 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
3145 for (i = 0; i < 2000; i++) {
3146 udelay(10);
3147 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
3148 aux_stat)
3149 break;
3150 }
3151
3152 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
3153 &current_speed,
3154 &current_duplex);
3155
3156 bmcr = 0;
3157 for (i = 0; i < 200; i++) {
3158 tg3_readphy(tp, MII_BMCR, &bmcr);
3159 if (tg3_readphy(tp, MII_BMCR, &bmcr))
3160 continue;
3161 if (bmcr && bmcr != 0x7fff)
3162 break;
3163 udelay(10);
3164 }
3165
Matt Carlsonef167e22007-12-20 20:10:01 -08003166 lcl_adv = 0;
3167 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
Matt Carlsonef167e22007-12-20 20:10:01 -08003169 tp->link_config.active_speed = current_speed;
3170 tp->link_config.active_duplex = current_duplex;
3171
3172 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3173 if ((bmcr & BMCR_ANENABLE) &&
3174 tg3_copper_is_advertising_all(tp,
3175 tp->link_config.advertising)) {
3176 if (tg3_adv_1000T_flowctrl_ok(tp, &lcl_adv,
3177 &rmt_adv))
3178 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 }
3180 } else {
3181 if (!(bmcr & BMCR_ANENABLE) &&
3182 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08003183 tp->link_config.duplex == current_duplex &&
3184 tp->link_config.flowctrl ==
3185 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 }
3188 }
3189
Matt Carlsonef167e22007-12-20 20:10:01 -08003190 if (current_link_up == 1 &&
3191 tp->link_config.active_duplex == DUPLEX_FULL)
3192 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 }
3194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195relink:
Michael Chan6921d202005-12-13 21:15:53 -08003196 if (current_link_up == 0 || tp->link_config.phy_is_low_power) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 u32 tmp;
3198
3199 tg3_phy_copper_begin(tp);
3200
3201 tg3_readphy(tp, MII_BMSR, &tmp);
3202 if (!tg3_readphy(tp, MII_BMSR, &tmp) &&
3203 (tmp & BMSR_LSTATUS))
3204 current_link_up = 1;
3205 }
3206
3207 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
3208 if (current_link_up == 1) {
3209 if (tp->link_config.active_speed == SPEED_100 ||
3210 tp->link_config.active_speed == SPEED_10)
3211 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3212 else
3213 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlson7f97a4b2009-08-25 10:10:03 +00003214 } else if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET)
3215 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3216 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
3218
3219 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
3220 if (tp->link_config.active_duplex == DUPLEX_HALF)
3221 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
3222
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003224 if (current_link_up == 1 &&
3225 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003227 else
3228 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 }
3230
3231 /* ??? Without this setting Netgear GA302T PHY does not
3232 * ??? send/receive packets...
3233 */
3234 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411 &&
3235 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
3236 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
3237 tw32_f(MAC_MI_MODE, tp->mi_mode);
3238 udelay(80);
3239 }
3240
3241 tw32_f(MAC_MODE, tp->mac_mode);
3242 udelay(40);
3243
3244 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
3245 /* Polled via timer. */
3246 tw32_f(MAC_EVENT, 0);
3247 } else {
3248 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3249 }
3250 udelay(40);
3251
3252 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
3253 current_link_up == 1 &&
3254 tp->link_config.active_speed == SPEED_1000 &&
3255 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) ||
3256 (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED))) {
3257 udelay(120);
3258 tw32_f(MAC_STATUS,
3259 (MAC_STATUS_SYNC_CHANGED |
3260 MAC_STATUS_CFG_CHANGED));
3261 udelay(40);
3262 tg3_write_mem(tp,
3263 NIC_SRAM_FIRMWARE_MBOX,
3264 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
3265 }
3266
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003267 /* Prevent send BD corruption. */
3268 if (tp->tg3_flags3 & TG3_FLG3_CLKREQ_BUG) {
3269 u16 oldlnkctl, newlnkctl;
3270
3271 pci_read_config_word(tp->pdev,
3272 tp->pcie_cap + PCI_EXP_LNKCTL,
3273 &oldlnkctl);
3274 if (tp->link_config.active_speed == SPEED_100 ||
3275 tp->link_config.active_speed == SPEED_10)
3276 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
3277 else
3278 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
3279 if (newlnkctl != oldlnkctl)
3280 pci_write_config_word(tp->pdev,
3281 tp->pcie_cap + PCI_EXP_LNKCTL,
3282 newlnkctl);
3283 }
3284
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 if (current_link_up != netif_carrier_ok(tp->dev)) {
3286 if (current_link_up)
3287 netif_carrier_on(tp->dev);
3288 else
3289 netif_carrier_off(tp->dev);
3290 tg3_link_report(tp);
3291 }
3292
3293 return 0;
3294}
3295
3296struct tg3_fiber_aneginfo {
3297 int state;
3298#define ANEG_STATE_UNKNOWN 0
3299#define ANEG_STATE_AN_ENABLE 1
3300#define ANEG_STATE_RESTART_INIT 2
3301#define ANEG_STATE_RESTART 3
3302#define ANEG_STATE_DISABLE_LINK_OK 4
3303#define ANEG_STATE_ABILITY_DETECT_INIT 5
3304#define ANEG_STATE_ABILITY_DETECT 6
3305#define ANEG_STATE_ACK_DETECT_INIT 7
3306#define ANEG_STATE_ACK_DETECT 8
3307#define ANEG_STATE_COMPLETE_ACK_INIT 9
3308#define ANEG_STATE_COMPLETE_ACK 10
3309#define ANEG_STATE_IDLE_DETECT_INIT 11
3310#define ANEG_STATE_IDLE_DETECT 12
3311#define ANEG_STATE_LINK_OK 13
3312#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
3313#define ANEG_STATE_NEXT_PAGE_WAIT 15
3314
3315 u32 flags;
3316#define MR_AN_ENABLE 0x00000001
3317#define MR_RESTART_AN 0x00000002
3318#define MR_AN_COMPLETE 0x00000004
3319#define MR_PAGE_RX 0x00000008
3320#define MR_NP_LOADED 0x00000010
3321#define MR_TOGGLE_TX 0x00000020
3322#define MR_LP_ADV_FULL_DUPLEX 0x00000040
3323#define MR_LP_ADV_HALF_DUPLEX 0x00000080
3324#define MR_LP_ADV_SYM_PAUSE 0x00000100
3325#define MR_LP_ADV_ASYM_PAUSE 0x00000200
3326#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
3327#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
3328#define MR_LP_ADV_NEXT_PAGE 0x00001000
3329#define MR_TOGGLE_RX 0x00002000
3330#define MR_NP_RX 0x00004000
3331
3332#define MR_LINK_OK 0x80000000
3333
3334 unsigned long link_time, cur_time;
3335
3336 u32 ability_match_cfg;
3337 int ability_match_count;
3338
3339 char ability_match, idle_match, ack_match;
3340
3341 u32 txconfig, rxconfig;
3342#define ANEG_CFG_NP 0x00000080
3343#define ANEG_CFG_ACK 0x00000040
3344#define ANEG_CFG_RF2 0x00000020
3345#define ANEG_CFG_RF1 0x00000010
3346#define ANEG_CFG_PS2 0x00000001
3347#define ANEG_CFG_PS1 0x00008000
3348#define ANEG_CFG_HD 0x00004000
3349#define ANEG_CFG_FD 0x00002000
3350#define ANEG_CFG_INVAL 0x00001f06
3351
3352};
3353#define ANEG_OK 0
3354#define ANEG_DONE 1
3355#define ANEG_TIMER_ENAB 2
3356#define ANEG_FAILED -1
3357
3358#define ANEG_STATE_SETTLE_TIME 10000
3359
3360static int tg3_fiber_aneg_smachine(struct tg3 *tp,
3361 struct tg3_fiber_aneginfo *ap)
3362{
Matt Carlson5be73b42007-12-20 20:09:29 -08003363 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 unsigned long delta;
3365 u32 rx_cfg_reg;
3366 int ret;
3367
3368 if (ap->state == ANEG_STATE_UNKNOWN) {
3369 ap->rxconfig = 0;
3370 ap->link_time = 0;
3371 ap->cur_time = 0;
3372 ap->ability_match_cfg = 0;
3373 ap->ability_match_count = 0;
3374 ap->ability_match = 0;
3375 ap->idle_match = 0;
3376 ap->ack_match = 0;
3377 }
3378 ap->cur_time++;
3379
3380 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
3381 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
3382
3383 if (rx_cfg_reg != ap->ability_match_cfg) {
3384 ap->ability_match_cfg = rx_cfg_reg;
3385 ap->ability_match = 0;
3386 ap->ability_match_count = 0;
3387 } else {
3388 if (++ap->ability_match_count > 1) {
3389 ap->ability_match = 1;
3390 ap->ability_match_cfg = rx_cfg_reg;
3391 }
3392 }
3393 if (rx_cfg_reg & ANEG_CFG_ACK)
3394 ap->ack_match = 1;
3395 else
3396 ap->ack_match = 0;
3397
3398 ap->idle_match = 0;
3399 } else {
3400 ap->idle_match = 1;
3401 ap->ability_match_cfg = 0;
3402 ap->ability_match_count = 0;
3403 ap->ability_match = 0;
3404 ap->ack_match = 0;
3405
3406 rx_cfg_reg = 0;
3407 }
3408
3409 ap->rxconfig = rx_cfg_reg;
3410 ret = ANEG_OK;
3411
3412 switch(ap->state) {
3413 case ANEG_STATE_UNKNOWN:
3414 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
3415 ap->state = ANEG_STATE_AN_ENABLE;
3416
3417 /* fallthru */
3418 case ANEG_STATE_AN_ENABLE:
3419 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
3420 if (ap->flags & MR_AN_ENABLE) {
3421 ap->link_time = 0;
3422 ap->cur_time = 0;
3423 ap->ability_match_cfg = 0;
3424 ap->ability_match_count = 0;
3425 ap->ability_match = 0;
3426 ap->idle_match = 0;
3427 ap->ack_match = 0;
3428
3429 ap->state = ANEG_STATE_RESTART_INIT;
3430 } else {
3431 ap->state = ANEG_STATE_DISABLE_LINK_OK;
3432 }
3433 break;
3434
3435 case ANEG_STATE_RESTART_INIT:
3436 ap->link_time = ap->cur_time;
3437 ap->flags &= ~(MR_NP_LOADED);
3438 ap->txconfig = 0;
3439 tw32(MAC_TX_AUTO_NEG, 0);
3440 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3441 tw32_f(MAC_MODE, tp->mac_mode);
3442 udelay(40);
3443
3444 ret = ANEG_TIMER_ENAB;
3445 ap->state = ANEG_STATE_RESTART;
3446
3447 /* fallthru */
3448 case ANEG_STATE_RESTART:
3449 delta = ap->cur_time - ap->link_time;
3450 if (delta > ANEG_STATE_SETTLE_TIME) {
3451 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
3452 } else {
3453 ret = ANEG_TIMER_ENAB;
3454 }
3455 break;
3456
3457 case ANEG_STATE_DISABLE_LINK_OK:
3458 ret = ANEG_DONE;
3459 break;
3460
3461 case ANEG_STATE_ABILITY_DETECT_INIT:
3462 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08003463 ap->txconfig = ANEG_CFG_FD;
3464 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3465 if (flowctrl & ADVERTISE_1000XPAUSE)
3466 ap->txconfig |= ANEG_CFG_PS1;
3467 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3468 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3470 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3471 tw32_f(MAC_MODE, tp->mac_mode);
3472 udelay(40);
3473
3474 ap->state = ANEG_STATE_ABILITY_DETECT;
3475 break;
3476
3477 case ANEG_STATE_ABILITY_DETECT:
3478 if (ap->ability_match != 0 && ap->rxconfig != 0) {
3479 ap->state = ANEG_STATE_ACK_DETECT_INIT;
3480 }
3481 break;
3482
3483 case ANEG_STATE_ACK_DETECT_INIT:
3484 ap->txconfig |= ANEG_CFG_ACK;
3485 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_ACK_DETECT;
3491
3492 /* fallthru */
3493 case ANEG_STATE_ACK_DETECT:
3494 if (ap->ack_match != 0) {
3495 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
3496 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
3497 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
3498 } else {
3499 ap->state = ANEG_STATE_AN_ENABLE;
3500 }
3501 } else if (ap->ability_match != 0 &&
3502 ap->rxconfig == 0) {
3503 ap->state = ANEG_STATE_AN_ENABLE;
3504 }
3505 break;
3506
3507 case ANEG_STATE_COMPLETE_ACK_INIT:
3508 if (ap->rxconfig & ANEG_CFG_INVAL) {
3509 ret = ANEG_FAILED;
3510 break;
3511 }
3512 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
3513 MR_LP_ADV_HALF_DUPLEX |
3514 MR_LP_ADV_SYM_PAUSE |
3515 MR_LP_ADV_ASYM_PAUSE |
3516 MR_LP_ADV_REMOTE_FAULT1 |
3517 MR_LP_ADV_REMOTE_FAULT2 |
3518 MR_LP_ADV_NEXT_PAGE |
3519 MR_TOGGLE_RX |
3520 MR_NP_RX);
3521 if (ap->rxconfig & ANEG_CFG_FD)
3522 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
3523 if (ap->rxconfig & ANEG_CFG_HD)
3524 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
3525 if (ap->rxconfig & ANEG_CFG_PS1)
3526 ap->flags |= MR_LP_ADV_SYM_PAUSE;
3527 if (ap->rxconfig & ANEG_CFG_PS2)
3528 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
3529 if (ap->rxconfig & ANEG_CFG_RF1)
3530 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
3531 if (ap->rxconfig & ANEG_CFG_RF2)
3532 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
3533 if (ap->rxconfig & ANEG_CFG_NP)
3534 ap->flags |= MR_LP_ADV_NEXT_PAGE;
3535
3536 ap->link_time = ap->cur_time;
3537
3538 ap->flags ^= (MR_TOGGLE_TX);
3539 if (ap->rxconfig & 0x0008)
3540 ap->flags |= MR_TOGGLE_RX;
3541 if (ap->rxconfig & ANEG_CFG_NP)
3542 ap->flags |= MR_NP_RX;
3543 ap->flags |= MR_PAGE_RX;
3544
3545 ap->state = ANEG_STATE_COMPLETE_ACK;
3546 ret = ANEG_TIMER_ENAB;
3547 break;
3548
3549 case ANEG_STATE_COMPLETE_ACK:
3550 if (ap->ability_match != 0 &&
3551 ap->rxconfig == 0) {
3552 ap->state = ANEG_STATE_AN_ENABLE;
3553 break;
3554 }
3555 delta = ap->cur_time - ap->link_time;
3556 if (delta > ANEG_STATE_SETTLE_TIME) {
3557 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
3558 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3559 } else {
3560 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
3561 !(ap->flags & MR_NP_RX)) {
3562 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3563 } else {
3564 ret = ANEG_FAILED;
3565 }
3566 }
3567 }
3568 break;
3569
3570 case ANEG_STATE_IDLE_DETECT_INIT:
3571 ap->link_time = ap->cur_time;
3572 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3573 tw32_f(MAC_MODE, tp->mac_mode);
3574 udelay(40);
3575
3576 ap->state = ANEG_STATE_IDLE_DETECT;
3577 ret = ANEG_TIMER_ENAB;
3578 break;
3579
3580 case ANEG_STATE_IDLE_DETECT:
3581 if (ap->ability_match != 0 &&
3582 ap->rxconfig == 0) {
3583 ap->state = ANEG_STATE_AN_ENABLE;
3584 break;
3585 }
3586 delta = ap->cur_time - ap->link_time;
3587 if (delta > ANEG_STATE_SETTLE_TIME) {
3588 /* XXX another gem from the Broadcom driver :( */
3589 ap->state = ANEG_STATE_LINK_OK;
3590 }
3591 break;
3592
3593 case ANEG_STATE_LINK_OK:
3594 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
3595 ret = ANEG_DONE;
3596 break;
3597
3598 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
3599 /* ??? unimplemented */
3600 break;
3601
3602 case ANEG_STATE_NEXT_PAGE_WAIT:
3603 /* ??? unimplemented */
3604 break;
3605
3606 default:
3607 ret = ANEG_FAILED;
3608 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
3611 return ret;
3612}
3613
Matt Carlson5be73b42007-12-20 20:09:29 -08003614static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615{
3616 int res = 0;
3617 struct tg3_fiber_aneginfo aninfo;
3618 int status = ANEG_FAILED;
3619 unsigned int tick;
3620 u32 tmp;
3621
3622 tw32_f(MAC_TX_AUTO_NEG, 0);
3623
3624 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
3625 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
3626 udelay(40);
3627
3628 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
3629 udelay(40);
3630
3631 memset(&aninfo, 0, sizeof(aninfo));
3632 aninfo.flags |= MR_AN_ENABLE;
3633 aninfo.state = ANEG_STATE_UNKNOWN;
3634 aninfo.cur_time = 0;
3635 tick = 0;
3636 while (++tick < 195000) {
3637 status = tg3_fiber_aneg_smachine(tp, &aninfo);
3638 if (status == ANEG_DONE || status == ANEG_FAILED)
3639 break;
3640
3641 udelay(1);
3642 }
3643
3644 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3645 tw32_f(MAC_MODE, tp->mac_mode);
3646 udelay(40);
3647
Matt Carlson5be73b42007-12-20 20:09:29 -08003648 *txflags = aninfo.txconfig;
3649 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
3651 if (status == ANEG_DONE &&
3652 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
3653 MR_LP_ADV_FULL_DUPLEX)))
3654 res = 1;
3655
3656 return res;
3657}
3658
3659static void tg3_init_bcm8002(struct tg3 *tp)
3660{
3661 u32 mac_status = tr32(MAC_STATUS);
3662 int i;
3663
3664 /* Reset when initting first time or we have a link. */
3665 if ((tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) &&
3666 !(mac_status & MAC_STATUS_PCS_SYNCED))
3667 return;
3668
3669 /* Set PLL lock range. */
3670 tg3_writephy(tp, 0x16, 0x8007);
3671
3672 /* SW reset */
3673 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
3674
3675 /* Wait for reset to complete. */
3676 /* XXX schedule_timeout() ... */
3677 for (i = 0; i < 500; i++)
3678 udelay(10);
3679
3680 /* Config mode; select PMA/Ch 1 regs. */
3681 tg3_writephy(tp, 0x10, 0x8411);
3682
3683 /* Enable auto-lock and comdet, select txclk for tx. */
3684 tg3_writephy(tp, 0x11, 0x0a10);
3685
3686 tg3_writephy(tp, 0x18, 0x00a0);
3687 tg3_writephy(tp, 0x16, 0x41ff);
3688
3689 /* Assert and deassert POR. */
3690 tg3_writephy(tp, 0x13, 0x0400);
3691 udelay(40);
3692 tg3_writephy(tp, 0x13, 0x0000);
3693
3694 tg3_writephy(tp, 0x11, 0x0a50);
3695 udelay(40);
3696 tg3_writephy(tp, 0x11, 0x0a10);
3697
3698 /* Wait for signal to stabilize */
3699 /* XXX schedule_timeout() ... */
3700 for (i = 0; i < 15000; i++)
3701 udelay(10);
3702
3703 /* Deselect the channel register so we can read the PHYID
3704 * later.
3705 */
3706 tg3_writephy(tp, 0x10, 0x8011);
3707}
3708
3709static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
3710{
Matt Carlson82cd3d12007-12-20 20:09:00 -08003711 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 u32 sg_dig_ctrl, sg_dig_status;
3713 u32 serdes_cfg, expected_sg_dig_ctrl;
3714 int workaround, port_a;
3715 int current_link_up;
3716
3717 serdes_cfg = 0;
3718 expected_sg_dig_ctrl = 0;
3719 workaround = 0;
3720 port_a = 1;
3721 current_link_up = 0;
3722
3723 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
3724 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
3725 workaround = 1;
3726 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
3727 port_a = 0;
3728
3729 /* preserve bits 0-11,13,14 for signal pre-emphasis */
3730 /* preserve bits 20-23 for voltage regulator */
3731 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
3732 }
3733
3734 sg_dig_ctrl = tr32(SG_DIG_CTRL);
3735
3736 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003737 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 if (workaround) {
3739 u32 val = serdes_cfg;
3740
3741 if (port_a)
3742 val |= 0xc010000;
3743 else
3744 val |= 0x4010000;
3745 tw32_f(MAC_SERDES_CFG, val);
3746 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003747
3748 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 }
3750 if (mac_status & MAC_STATUS_PCS_SYNCED) {
3751 tg3_setup_flow_control(tp, 0, 0);
3752 current_link_up = 1;
3753 }
3754 goto out;
3755 }
3756
3757 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003758 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
Matt Carlson82cd3d12007-12-20 20:09:00 -08003760 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3761 if (flowctrl & ADVERTISE_1000XPAUSE)
3762 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
3763 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3764 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
3766 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003767 if ((tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT) &&
3768 tp->serdes_counter &&
3769 ((mac_status & (MAC_STATUS_PCS_SYNCED |
3770 MAC_STATUS_RCVD_CFG)) ==
3771 MAC_STATUS_PCS_SYNCED)) {
3772 tp->serdes_counter--;
3773 current_link_up = 1;
3774 goto out;
3775 }
3776restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 if (workaround)
3778 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003779 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 udelay(5);
3781 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
3782
Michael Chan3d3ebe72006-09-27 15:59:15 -07003783 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
3784 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
3786 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003787 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 mac_status = tr32(MAC_STATUS);
3789
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003790 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08003792 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
Matt Carlson82cd3d12007-12-20 20:09:00 -08003794 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
3795 local_adv |= ADVERTISE_1000XPAUSE;
3796 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
3797 local_adv |= ADVERTISE_1000XPSE_ASYM;
3798
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003799 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003800 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003801 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003802 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
3804 tg3_setup_flow_control(tp, local_adv, remote_adv);
3805 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003806 tp->serdes_counter = 0;
3807 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003808 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003809 if (tp->serdes_counter)
3810 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 else {
3812 if (workaround) {
3813 u32 val = serdes_cfg;
3814
3815 if (port_a)
3816 val |= 0xc010000;
3817 else
3818 val |= 0x4010000;
3819
3820 tw32_f(MAC_SERDES_CFG, val);
3821 }
3822
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003823 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 udelay(40);
3825
3826 /* Link parallel detection - link is up */
3827 /* only if we have PCS_SYNC and not */
3828 /* receiving config code words */
3829 mac_status = tr32(MAC_STATUS);
3830 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
3831 !(mac_status & MAC_STATUS_RCVD_CFG)) {
3832 tg3_setup_flow_control(tp, 0, 0);
3833 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003834 tp->tg3_flags2 |=
3835 TG3_FLG2_PARALLEL_DETECT;
3836 tp->serdes_counter =
3837 SERDES_PARALLEL_DET_TIMEOUT;
3838 } else
3839 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 }
3841 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07003842 } else {
3843 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
3844 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 }
3846
3847out:
3848 return current_link_up;
3849}
3850
3851static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
3852{
3853 int current_link_up = 0;
3854
Michael Chan5cf64b8a2007-05-05 12:11:21 -07003855 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
3858 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08003859 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003861
Matt Carlson5be73b42007-12-20 20:09:29 -08003862 if (fiber_autoneg(tp, &txflags, &rxflags)) {
3863 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
Matt Carlson5be73b42007-12-20 20:09:29 -08003865 if (txflags & ANEG_CFG_PS1)
3866 local_adv |= ADVERTISE_1000XPAUSE;
3867 if (txflags & ANEG_CFG_PS2)
3868 local_adv |= ADVERTISE_1000XPSE_ASYM;
3869
3870 if (rxflags & MR_LP_ADV_SYM_PAUSE)
3871 remote_adv |= LPA_1000XPAUSE;
3872 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
3873 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
3875 tg3_setup_flow_control(tp, local_adv, remote_adv);
3876
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 current_link_up = 1;
3878 }
3879 for (i = 0; i < 30; i++) {
3880 udelay(20);
3881 tw32_f(MAC_STATUS,
3882 (MAC_STATUS_SYNC_CHANGED |
3883 MAC_STATUS_CFG_CHANGED));
3884 udelay(40);
3885 if ((tr32(MAC_STATUS) &
3886 (MAC_STATUS_SYNC_CHANGED |
3887 MAC_STATUS_CFG_CHANGED)) == 0)
3888 break;
3889 }
3890
3891 mac_status = tr32(MAC_STATUS);
3892 if (current_link_up == 0 &&
3893 (mac_status & MAC_STATUS_PCS_SYNCED) &&
3894 !(mac_status & MAC_STATUS_RCVD_CFG))
3895 current_link_up = 1;
3896 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08003897 tg3_setup_flow_control(tp, 0, 0);
3898
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 /* Forcing 1000FD link up. */
3900 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
3902 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
3903 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003904
3905 tw32_f(MAC_MODE, tp->mac_mode);
3906 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 }
3908
3909out:
3910 return current_link_up;
3911}
3912
3913static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
3914{
3915 u32 orig_pause_cfg;
3916 u16 orig_active_speed;
3917 u8 orig_active_duplex;
3918 u32 mac_status;
3919 int current_link_up;
3920 int i;
3921
Matt Carlson8d018622007-12-20 20:05:44 -08003922 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 orig_active_speed = tp->link_config.active_speed;
3924 orig_active_duplex = tp->link_config.active_duplex;
3925
3926 if (!(tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG) &&
3927 netif_carrier_ok(tp->dev) &&
3928 (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE)) {
3929 mac_status = tr32(MAC_STATUS);
3930 mac_status &= (MAC_STATUS_PCS_SYNCED |
3931 MAC_STATUS_SIGNAL_DET |
3932 MAC_STATUS_CFG_CHANGED |
3933 MAC_STATUS_RCVD_CFG);
3934 if (mac_status == (MAC_STATUS_PCS_SYNCED |
3935 MAC_STATUS_SIGNAL_DET)) {
3936 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
3937 MAC_STATUS_CFG_CHANGED));
3938 return 0;
3939 }
3940 }
3941
3942 tw32_f(MAC_TX_AUTO_NEG, 0);
3943
3944 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
3945 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
3946 tw32_f(MAC_MODE, tp->mac_mode);
3947 udelay(40);
3948
3949 if (tp->phy_id == PHY_ID_BCM8002)
3950 tg3_init_bcm8002(tp);
3951
3952 /* Enable link change event even when serdes polling. */
3953 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3954 udelay(40);
3955
3956 current_link_up = 0;
3957 mac_status = tr32(MAC_STATUS);
3958
3959 if (tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG)
3960 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
3961 else
3962 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
3963
Matt Carlson898a56f2009-08-28 14:02:40 +00003964 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00003966 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967
3968 for (i = 0; i < 100; i++) {
3969 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
3970 MAC_STATUS_CFG_CHANGED));
3971 udelay(5);
3972 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07003973 MAC_STATUS_CFG_CHANGED |
3974 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 break;
3976 }
3977
3978 mac_status = tr32(MAC_STATUS);
3979 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
3980 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003981 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
3982 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 tw32_f(MAC_MODE, (tp->mac_mode |
3984 MAC_MODE_SEND_CONFIGS));
3985 udelay(1);
3986 tw32_f(MAC_MODE, tp->mac_mode);
3987 }
3988 }
3989
3990 if (current_link_up == 1) {
3991 tp->link_config.active_speed = SPEED_1000;
3992 tp->link_config.active_duplex = DUPLEX_FULL;
3993 tw32(MAC_LED_CTRL, (tp->led_ctrl |
3994 LED_CTRL_LNKLED_OVERRIDE |
3995 LED_CTRL_1000MBPS_ON));
3996 } else {
3997 tp->link_config.active_speed = SPEED_INVALID;
3998 tp->link_config.active_duplex = DUPLEX_INVALID;
3999 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4000 LED_CTRL_LNKLED_OVERRIDE |
4001 LED_CTRL_TRAFFIC_OVERRIDE));
4002 }
4003
4004 if (current_link_up != netif_carrier_ok(tp->dev)) {
4005 if (current_link_up)
4006 netif_carrier_on(tp->dev);
4007 else
4008 netif_carrier_off(tp->dev);
4009 tg3_link_report(tp);
4010 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08004011 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 if (orig_pause_cfg != now_pause_cfg ||
4013 orig_active_speed != tp->link_config.active_speed ||
4014 orig_active_duplex != tp->link_config.active_duplex)
4015 tg3_link_report(tp);
4016 }
4017
4018 return 0;
4019}
4020
Michael Chan747e8f82005-07-25 12:33:22 -07004021static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
4022{
4023 int current_link_up, err = 0;
4024 u32 bmsr, bmcr;
4025 u16 current_speed;
4026 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08004027 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07004028
4029 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4030 tw32_f(MAC_MODE, tp->mac_mode);
4031 udelay(40);
4032
4033 tw32(MAC_EVENT, 0);
4034
4035 tw32_f(MAC_STATUS,
4036 (MAC_STATUS_SYNC_CHANGED |
4037 MAC_STATUS_CFG_CHANGED |
4038 MAC_STATUS_MI_COMPLETION |
4039 MAC_STATUS_LNKSTATE_CHANGED));
4040 udelay(40);
4041
4042 if (force_reset)
4043 tg3_phy_reset(tp);
4044
4045 current_link_up = 0;
4046 current_speed = SPEED_INVALID;
4047 current_duplex = DUPLEX_INVALID;
4048
4049 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4050 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004051 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
4052 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4053 bmsr |= BMSR_LSTATUS;
4054 else
4055 bmsr &= ~BMSR_LSTATUS;
4056 }
Michael Chan747e8f82005-07-25 12:33:22 -07004057
4058 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
4059
4060 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlson2bd3ed02008-06-09 15:39:55 -07004061 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004062 /* do nothing, just check for link up at the end */
4063 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4064 u32 adv, new_adv;
4065
4066 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4067 new_adv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
4068 ADVERTISE_1000XPAUSE |
4069 ADVERTISE_1000XPSE_ASYM |
4070 ADVERTISE_SLCT);
4071
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004072 new_adv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Michael Chan747e8f82005-07-25 12:33:22 -07004073
4074 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
4075 new_adv |= ADVERTISE_1000XHALF;
4076 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
4077 new_adv |= ADVERTISE_1000XFULL;
4078
4079 if ((new_adv != adv) || !(bmcr & BMCR_ANENABLE)) {
4080 tg3_writephy(tp, MII_ADVERTISE, new_adv);
4081 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
4082 tg3_writephy(tp, MII_BMCR, bmcr);
4083
4084 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07004085 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Michael Chan747e8f82005-07-25 12:33:22 -07004086 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4087
4088 return err;
4089 }
4090 } else {
4091 u32 new_bmcr;
4092
4093 bmcr &= ~BMCR_SPEED1000;
4094 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
4095
4096 if (tp->link_config.duplex == DUPLEX_FULL)
4097 new_bmcr |= BMCR_FULLDPLX;
4098
4099 if (new_bmcr != bmcr) {
4100 /* BMCR_SPEED1000 is a reserved bit that needs
4101 * to be set on write.
4102 */
4103 new_bmcr |= BMCR_SPEED1000;
4104
4105 /* Force a linkdown */
4106 if (netif_carrier_ok(tp->dev)) {
4107 u32 adv;
4108
4109 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4110 adv &= ~(ADVERTISE_1000XFULL |
4111 ADVERTISE_1000XHALF |
4112 ADVERTISE_SLCT);
4113 tg3_writephy(tp, MII_ADVERTISE, adv);
4114 tg3_writephy(tp, MII_BMCR, bmcr |
4115 BMCR_ANRESTART |
4116 BMCR_ANENABLE);
4117 udelay(10);
4118 netif_carrier_off(tp->dev);
4119 }
4120 tg3_writephy(tp, MII_BMCR, new_bmcr);
4121 bmcr = new_bmcr;
4122 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4123 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004124 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
4125 ASIC_REV_5714) {
4126 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4127 bmsr |= BMSR_LSTATUS;
4128 else
4129 bmsr &= ~BMSR_LSTATUS;
4130 }
Michael Chan747e8f82005-07-25 12:33:22 -07004131 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4132 }
4133 }
4134
4135 if (bmsr & BMSR_LSTATUS) {
4136 current_speed = SPEED_1000;
4137 current_link_up = 1;
4138 if (bmcr & BMCR_FULLDPLX)
4139 current_duplex = DUPLEX_FULL;
4140 else
4141 current_duplex = DUPLEX_HALF;
4142
Matt Carlsonef167e22007-12-20 20:10:01 -08004143 local_adv = 0;
4144 remote_adv = 0;
4145
Michael Chan747e8f82005-07-25 12:33:22 -07004146 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08004147 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07004148
4149 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
4150 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
4151 common = local_adv & remote_adv;
4152 if (common & (ADVERTISE_1000XHALF |
4153 ADVERTISE_1000XFULL)) {
4154 if (common & ADVERTISE_1000XFULL)
4155 current_duplex = DUPLEX_FULL;
4156 else
4157 current_duplex = DUPLEX_HALF;
Michael Chan747e8f82005-07-25 12:33:22 -07004158 }
4159 else
4160 current_link_up = 0;
4161 }
4162 }
4163
Matt Carlsonef167e22007-12-20 20:10:01 -08004164 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
4165 tg3_setup_flow_control(tp, local_adv, remote_adv);
4166
Michael Chan747e8f82005-07-25 12:33:22 -07004167 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4168 if (tp->link_config.active_duplex == DUPLEX_HALF)
4169 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4170
4171 tw32_f(MAC_MODE, tp->mac_mode);
4172 udelay(40);
4173
4174 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4175
4176 tp->link_config.active_speed = current_speed;
4177 tp->link_config.active_duplex = current_duplex;
4178
4179 if (current_link_up != netif_carrier_ok(tp->dev)) {
4180 if (current_link_up)
4181 netif_carrier_on(tp->dev);
4182 else {
4183 netif_carrier_off(tp->dev);
4184 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4185 }
4186 tg3_link_report(tp);
4187 }
4188 return err;
4189}
4190
4191static void tg3_serdes_parallel_detect(struct tg3 *tp)
4192{
Michael Chan3d3ebe72006-09-27 15:59:15 -07004193 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07004194 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07004195 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07004196 return;
4197 }
4198 if (!netif_carrier_ok(tp->dev) &&
4199 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
4200 u32 bmcr;
4201
4202 tg3_readphy(tp, MII_BMCR, &bmcr);
4203 if (bmcr & BMCR_ANENABLE) {
4204 u32 phy1, phy2;
4205
4206 /* Select shadow register 0x1f */
4207 tg3_writephy(tp, 0x1c, 0x7c00);
4208 tg3_readphy(tp, 0x1c, &phy1);
4209
4210 /* Select expansion interrupt status register */
4211 tg3_writephy(tp, 0x17, 0x0f01);
4212 tg3_readphy(tp, 0x15, &phy2);
4213 tg3_readphy(tp, 0x15, &phy2);
4214
4215 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
4216 /* We have signal detect and not receiving
4217 * config code words, link is up by parallel
4218 * detection.
4219 */
4220
4221 bmcr &= ~BMCR_ANENABLE;
4222 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
4223 tg3_writephy(tp, MII_BMCR, bmcr);
4224 tp->tg3_flags2 |= TG3_FLG2_PARALLEL_DETECT;
4225 }
4226 }
4227 }
4228 else if (netif_carrier_ok(tp->dev) &&
4229 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
4230 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT)) {
4231 u32 phy2;
4232
4233 /* Select expansion interrupt status register */
4234 tg3_writephy(tp, 0x17, 0x0f01);
4235 tg3_readphy(tp, 0x15, &phy2);
4236 if (phy2 & 0x20) {
4237 u32 bmcr;
4238
4239 /* Config code words received, turn on autoneg. */
4240 tg3_readphy(tp, MII_BMCR, &bmcr);
4241 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
4242
4243 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4244
4245 }
4246 }
4247}
4248
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249static int tg3_setup_phy(struct tg3 *tp, int force_reset)
4250{
4251 int err;
4252
4253 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
4254 err = tg3_setup_fiber_phy(tp, force_reset);
Michael Chan747e8f82005-07-25 12:33:22 -07004255 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
4256 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 } else {
4258 err = tg3_setup_copper_phy(tp, force_reset);
4259 }
4260
Matt Carlsonbcb37f62008-11-03 16:52:09 -08004261 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08004262 u32 val, scale;
4263
4264 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
4265 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
4266 scale = 65;
4267 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
4268 scale = 6;
4269 else
4270 scale = 12;
4271
4272 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
4273 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
4274 tw32(GRC_MISC_CFG, val);
4275 }
4276
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 if (tp->link_config.active_speed == SPEED_1000 &&
4278 tp->link_config.active_duplex == DUPLEX_HALF)
4279 tw32(MAC_TX_LENGTHS,
4280 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
4281 (6 << TX_LENGTHS_IPG_SHIFT) |
4282 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
4283 else
4284 tw32(MAC_TX_LENGTHS,
4285 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
4286 (6 << TX_LENGTHS_IPG_SHIFT) |
4287 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
4288
4289 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
4290 if (netif_carrier_ok(tp->dev)) {
4291 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07004292 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 } else {
4294 tw32(HOSTCC_STAT_COAL_TICKS, 0);
4295 }
4296 }
4297
Matt Carlson8ed5d972007-05-07 00:25:49 -07004298 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND) {
4299 u32 val = tr32(PCIE_PWR_MGMT_THRESH);
4300 if (!netif_carrier_ok(tp->dev))
4301 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
4302 tp->pwrmgmt_thresh;
4303 else
4304 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
4305 tw32(PCIE_PWR_MGMT_THRESH, val);
4306 }
4307
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 return err;
4309}
4310
Michael Chandf3e6542006-05-26 17:48:07 -07004311/* This is called whenever we suspect that the system chipset is re-
4312 * ordering the sequence of MMIO to the tx send mailbox. The symptom
4313 * is bogus tx completions. We try to recover by setting the
4314 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
4315 * in the workqueue.
4316 */
4317static void tg3_tx_recover(struct tg3 *tp)
4318{
4319 BUG_ON((tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER) ||
4320 tp->write32_tx_mbox == tg3_write_indirect_mbox);
4321
4322 printk(KERN_WARNING PFX "%s: The system may be re-ordering memory-"
4323 "mapped I/O cycles to the network device, attempting to "
4324 "recover. Please report the problem to the driver maintainer "
4325 "and include system chipset information.\n", tp->dev->name);
4326
4327 spin_lock(&tp->lock);
Michael Chandf3e6542006-05-26 17:48:07 -07004328 tp->tg3_flags |= TG3_FLAG_TX_RECOVERY_PENDING;
Michael Chandf3e6542006-05-26 17:48:07 -07004329 spin_unlock(&tp->lock);
4330}
4331
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004332static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07004333{
4334 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004335 return tnapi->tx_pending -
4336 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07004337}
4338
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339/* Tigon3 never reports partial packet sends. So we do not
4340 * need special logic to handle SKBs that have not had all
4341 * of their frags sent yet, like SunGEM does.
4342 */
Matt Carlson17375d22009-08-28 14:02:18 +00004343static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344{
Matt Carlson17375d22009-08-28 14:02:18 +00004345 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00004346 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004347 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004348 struct netdev_queue *txq;
4349 int index = tnapi - tp->napi;
4350
4351 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
4352 index--;
4353
4354 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355
4356 while (sw_idx != hw_idx) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004357 struct tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07004359 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
Michael Chandf3e6542006-05-26 17:48:07 -07004361 if (unlikely(skb == NULL)) {
4362 tg3_tx_recover(tp);
4363 return;
4364 }
4365
David S. Miller90079ce2008-09-11 04:52:51 -07004366 skb_dma_unmap(&tp->pdev->dev, skb, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367
4368 ri->skb = NULL;
4369
4370 sw_idx = NEXT_TX(sw_idx);
4371
4372 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004373 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07004374 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
4375 tx_bug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 sw_idx = NEXT_TX(sw_idx);
4377 }
4378
David S. Millerf47c11e2005-06-24 20:18:35 -07004379 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07004380
4381 if (unlikely(tx_bug)) {
4382 tg3_tx_recover(tp);
4383 return;
4384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 }
4386
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004387 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388
Michael Chan1b2a7202006-08-07 21:46:02 -07004389 /* Need to make the tx_cons update visible to tg3_start_xmit()
4390 * before checking for netif_queue_stopped(). Without the
4391 * memory barrier, there is a small possibility that tg3_start_xmit()
4392 * will miss it and cause the queue to be stopped forever.
4393 */
4394 smp_mb();
4395
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004396 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004397 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004398 __netif_tx_lock(txq, smp_processor_id());
4399 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004400 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004401 netif_tx_wake_queue(txq);
4402 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07004403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404}
4405
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004406static void tg3_rx_skb_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
4407{
4408 if (!ri->skb)
4409 return;
4410
4411 pci_unmap_single(tp->pdev, pci_unmap_addr(ri, mapping),
4412 map_sz, PCI_DMA_FROMDEVICE);
4413 dev_kfree_skb_any(ri->skb);
4414 ri->skb = NULL;
4415}
4416
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417/* Returns size of skb allocated or < 0 on error.
4418 *
4419 * We only need to fill in the address because the other members
4420 * of the RX descriptor are invariant, see tg3_init_rings.
4421 *
4422 * Note the purposeful assymetry of cpu vs. chip accesses. For
4423 * posting buffers we only dirty the first cache line of the RX
4424 * descriptor (containing the address). Whereas for the RX status
4425 * buffers the cpu only reads the last cacheline of the RX descriptor
4426 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
4427 */
Matt Carlson86b21e52009-11-13 13:03:45 +00004428static int tg3_alloc_rx_skb(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Matt Carlsona3896162009-11-13 13:03:44 +00004429 u32 opaque_key, u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430{
4431 struct tg3_rx_buffer_desc *desc;
4432 struct ring_info *map, *src_map;
4433 struct sk_buff *skb;
4434 dma_addr_t mapping;
4435 int skb_size, dest_idx;
4436
4437 src_map = NULL;
4438 switch (opaque_key) {
4439 case RXD_OPAQUE_RING_STD:
4440 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
Matt Carlson21f581a2009-08-28 14:00:25 +00004441 desc = &tpr->rx_std[dest_idx];
4442 map = &tpr->rx_std_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004443 skb_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 break;
4445
4446 case RXD_OPAQUE_RING_JUMBO:
4447 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00004448 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00004449 map = &tpr->rx_jmb_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004450 skb_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 break;
4452
4453 default:
4454 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
4457 /* Do not overwrite any of the map or rp information
4458 * until we are sure we can commit to a new buffer.
4459 *
4460 * Callers depend upon this behavior and assume that
4461 * we leave everything unchanged if we fail.
4462 */
Matt Carlson287be122009-08-28 13:58:46 +00004463 skb = netdev_alloc_skb(tp->dev, skb_size + tp->rx_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 if (skb == NULL)
4465 return -ENOMEM;
4466
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 skb_reserve(skb, tp->rx_offset);
4468
Matt Carlson287be122009-08-28 13:58:46 +00004469 mapping = pci_map_single(tp->pdev, skb->data, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 PCI_DMA_FROMDEVICE);
Matt Carlsona21771d2009-11-02 14:25:31 +00004471 if (pci_dma_mapping_error(tp->pdev, mapping)) {
4472 dev_kfree_skb(skb);
4473 return -EIO;
4474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
4476 map->skb = skb;
4477 pci_unmap_addr_set(map, mapping, mapping);
4478
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 desc->addr_hi = ((u64)mapping >> 32);
4480 desc->addr_lo = ((u64)mapping & 0xffffffff);
4481
4482 return skb_size;
4483}
4484
4485/* We only need to move over in the address because the other
4486 * members of the RX descriptor are invariant. See notes above
4487 * tg3_alloc_rx_skb for full details.
4488 */
Matt Carlsona3896162009-11-13 13:03:44 +00004489static void tg3_recycle_rx(struct tg3_napi *tnapi,
4490 struct tg3_rx_prodring_set *dpr,
4491 u32 opaque_key, int src_idx,
4492 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493{
Matt Carlson17375d22009-08-28 14:02:18 +00004494 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
4496 struct ring_info *src_map, *dest_map;
4497 int dest_idx;
Matt Carlsona3896162009-11-13 13:03:44 +00004498 struct tg3_rx_prodring_set *spr = &tp->prodring[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499
4500 switch (opaque_key) {
4501 case RXD_OPAQUE_RING_STD:
4502 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
Matt Carlsona3896162009-11-13 13:03:44 +00004503 dest_desc = &dpr->rx_std[dest_idx];
4504 dest_map = &dpr->rx_std_buffers[dest_idx];
4505 src_desc = &spr->rx_std[src_idx];
4506 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 break;
4508
4509 case RXD_OPAQUE_RING_JUMBO:
4510 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
Matt Carlsona3896162009-11-13 13:03:44 +00004511 dest_desc = &dpr->rx_jmb[dest_idx].std;
4512 dest_map = &dpr->rx_jmb_buffers[dest_idx];
4513 src_desc = &spr->rx_jmb[src_idx].std;
4514 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 break;
4516
4517 default:
4518 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
4521 dest_map->skb = src_map->skb;
4522 pci_unmap_addr_set(dest_map, mapping,
4523 pci_unmap_addr(src_map, mapping));
4524 dest_desc->addr_hi = src_desc->addr_hi;
4525 dest_desc->addr_lo = src_desc->addr_lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 src_map->skb = NULL;
4527}
4528
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529/* The RX ring scheme is composed of multiple rings which post fresh
4530 * buffers to the chip, and one special ring the chip uses to report
4531 * status back to the host.
4532 *
4533 * The special ring reports the status of received packets to the
4534 * host. The chip does not write into the original descriptor the
4535 * RX buffer was obtained from. The chip simply takes the original
4536 * descriptor as provided by the host, updates the status and length
4537 * field, then writes this into the next status ring entry.
4538 *
4539 * Each ring the host uses to post buffers to the chip is described
4540 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
4541 * it is first placed into the on-chip ram. When the packet's length
4542 * is known, it walks down the TG3_BDINFO entries to select the ring.
4543 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
4544 * which is within the range of the new packet's length is chosen.
4545 *
4546 * The "separate ring for rx status" scheme may sound queer, but it makes
4547 * sense from a cache coherency perspective. If only the host writes
4548 * to the buffer post rings, and only the chip writes to the rx status
4549 * rings, then cache lines never move beyond shared-modified state.
4550 * If both the host and chip were to write into the same ring, cache line
4551 * eviction could occur since both entities want it in an exclusive state.
4552 */
Matt Carlson17375d22009-08-28 14:02:18 +00004553static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554{
Matt Carlson17375d22009-08-28 14:02:18 +00004555 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07004556 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00004557 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00004558 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07004559 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 int received;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004561 struct tg3_rx_prodring_set *tpr = tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004563 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 /*
4565 * We need to order the read of hw_idx and the read of
4566 * the opaque cookie.
4567 */
4568 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569 work_mask = 0;
4570 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00004571 std_prod_idx = tpr->rx_std_prod_idx;
4572 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00004574 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00004575 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 unsigned int len;
4577 struct sk_buff *skb;
4578 dma_addr_t dma_addr;
4579 u32 opaque_key, desc_idx, *post_ptr;
4580
4581 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
4582 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
4583 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004584 ri = &tp->prodring[0].rx_std_buffers[desc_idx];
Matt Carlson21f581a2009-08-28 14:00:25 +00004585 dma_addr = pci_unmap_addr(ri, mapping);
4586 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00004587 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07004588 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004590 ri = &tp->prodring[0].rx_jmb_buffers[desc_idx];
Matt Carlson21f581a2009-08-28 14:00:25 +00004591 dma_addr = pci_unmap_addr(ri, mapping);
4592 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00004593 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00004594 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596
4597 work_mask |= opaque_key;
4598
4599 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
4600 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
4601 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00004602 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 desc_idx, *post_ptr);
4604 drop_it_no_recycle:
4605 /* Other statistics kept track of by card. */
4606 tp->net_stats.rx_dropped++;
4607 goto next_pkt;
4608 }
4609
Matt Carlsonad829262008-11-21 17:16:16 -08004610 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
4611 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004613 if (len > RX_COPY_THRESHOLD
Matt Carlsonad829262008-11-21 17:16:16 -08004614 && tp->rx_offset == NET_IP_ALIGN
4615 /* rx_offset will likely not equal NET_IP_ALIGN
4616 * if this is a 5701 card running in PCI-X mode
4617 * [see tg3_get_invariants()]
4618 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 ) {
4620 int skb_size;
4621
Matt Carlson86b21e52009-11-13 13:03:45 +00004622 skb_size = tg3_alloc_rx_skb(tp, tpr, opaque_key,
Matt Carlsonafc081f2009-11-13 13:03:43 +00004623 *post_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 if (skb_size < 0)
4625 goto drop_it;
4626
Matt Carlsonafc081f2009-11-13 13:03:43 +00004627 ri->skb = NULL;
4628
Matt Carlson287be122009-08-28 13:58:46 +00004629 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 PCI_DMA_FROMDEVICE);
4631
4632 skb_put(skb, len);
4633 } else {
4634 struct sk_buff *copy_skb;
4635
Matt Carlsona3896162009-11-13 13:03:44 +00004636 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 desc_idx, *post_ptr);
4638
Matt Carlsonad829262008-11-21 17:16:16 -08004639 copy_skb = netdev_alloc_skb(tp->dev,
4640 len + TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 if (copy_skb == NULL)
4642 goto drop_it_no_recycle;
4643
Matt Carlsonad829262008-11-21 17:16:16 -08004644 skb_reserve(copy_skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 skb_put(copy_skb, len);
4646 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03004647 skb_copy_from_linear_data(skb, copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
4649
4650 /* We'll reuse the original ring buffer. */
4651 skb = copy_skb;
4652 }
4653
4654 if ((tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) &&
4655 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
4656 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
4657 >> RXD_TCPCSUM_SHIFT) == 0xffff))
4658 skb->ip_summed = CHECKSUM_UNNECESSARY;
4659 else
4660 skb->ip_summed = CHECKSUM_NONE;
4661
4662 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00004663
4664 if (len > (tp->dev->mtu + ETH_HLEN) &&
4665 skb->protocol != htons(ETH_P_8021Q)) {
4666 dev_kfree_skb(skb);
4667 goto next_pkt;
4668 }
4669
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670#if TG3_VLAN_TAG_USED
4671 if (tp->vlgrp != NULL &&
4672 desc->type_flags & RXD_FLAG_VLAN) {
Matt Carlson17375d22009-08-28 14:02:18 +00004673 vlan_gro_receive(&tnapi->napi, tp->vlgrp,
Matt Carlson8ef04422009-08-28 14:01:37 +00004674 desc->err_vlan & RXD_VLAN_MASK, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 } else
4676#endif
Matt Carlson17375d22009-08-28 14:02:18 +00004677 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 received++;
4680 budget--;
4681
4682next_pkt:
4683 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07004684
4685 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
4686 u32 idx = *post_ptr % TG3_RX_RING_SIZE;
Matt Carlson66711e62009-11-13 13:03:49 +00004687 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, idx);
Michael Chanf92905d2006-06-29 20:14:29 -07004688 work_mask &= ~RXD_OPAQUE_RING_STD;
4689 rx_std_posted = 0;
4690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07004692 sw_idx++;
Eric Dumazet6b31a512007-02-06 13:29:21 -08004693 sw_idx &= (TG3_RX_RCB_RING_SIZE(tp) - 1);
Michael Chan52f6d692005-04-25 15:14:32 -07004694
4695 /* Refresh hw_idx to see if there is new work */
4696 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004697 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07004698 rmb();
4699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 }
4701
4702 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00004703 tnapi->rx_rcb_ptr = sw_idx;
4704 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705
4706 /* Refill RX ring(s). */
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004707 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS) || tnapi == &tp->napi[1]) {
4708 if (work_mask & RXD_OPAQUE_RING_STD) {
4709 tpr->rx_std_prod_idx = std_prod_idx % TG3_RX_RING_SIZE;
4710 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
4711 tpr->rx_std_prod_idx);
4712 }
4713 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
4714 tpr->rx_jmb_prod_idx = jmb_prod_idx %
4715 TG3_RX_JUMBO_RING_SIZE;
4716 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
4717 tpr->rx_jmb_prod_idx);
4718 }
4719 mmiowb();
4720 } else if (work_mask) {
4721 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
4722 * updated before the producer indices can be updated.
4723 */
4724 smp_wmb();
4725
Matt Carlson43619352009-11-13 13:03:47 +00004726 tpr->rx_std_prod_idx = std_prod_idx % TG3_RX_RING_SIZE;
Matt Carlson43619352009-11-13 13:03:47 +00004727 tpr->rx_jmb_prod_idx = jmb_prod_idx % TG3_RX_JUMBO_RING_SIZE;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004728
4729 napi_schedule(&tp->napi[1].napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
4732 return received;
4733}
4734
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004735static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 /* handle link change and other phy events */
4738 if (!(tp->tg3_flags &
4739 (TG3_FLAG_USE_LINKCHG_REG |
4740 TG3_FLAG_POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004741 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
4742
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 if (sblk->status & SD_STATUS_LINK_CHG) {
4744 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004745 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07004746 spin_lock(&tp->lock);
Matt Carlsondd477002008-05-25 23:45:58 -07004747 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
4748 tw32_f(MAC_STATUS,
4749 (MAC_STATUS_SYNC_CHANGED |
4750 MAC_STATUS_CFG_CHANGED |
4751 MAC_STATUS_MI_COMPLETION |
4752 MAC_STATUS_LNKSTATE_CHANGED));
4753 udelay(40);
4754 } else
4755 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07004756 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 }
4758 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004759}
4760
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004761static void tg3_rx_prodring_xfer(struct tg3 *tp,
4762 struct tg3_rx_prodring_set *dpr,
4763 struct tg3_rx_prodring_set *spr)
4764{
4765 u32 si, di, cpycnt, src_prod_idx;
4766 int i;
4767
4768 while (1) {
4769 src_prod_idx = spr->rx_std_prod_idx;
4770
4771 /* Make sure updates to the rx_std_buffers[] entries and the
4772 * standard producer index are seen in the correct order.
4773 */
4774 smp_rmb();
4775
4776 if (spr->rx_std_cons_idx == src_prod_idx)
4777 break;
4778
4779 if (spr->rx_std_cons_idx < src_prod_idx)
4780 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
4781 else
4782 cpycnt = TG3_RX_RING_SIZE - spr->rx_std_cons_idx;
4783
4784 cpycnt = min(cpycnt, TG3_RX_RING_SIZE - dpr->rx_std_prod_idx);
4785
4786 si = spr->rx_std_cons_idx;
4787 di = dpr->rx_std_prod_idx;
4788
4789 memcpy(&dpr->rx_std_buffers[di],
4790 &spr->rx_std_buffers[si],
4791 cpycnt * sizeof(struct ring_info));
4792
4793 for (i = 0; i < cpycnt; i++, di++, si++) {
4794 struct tg3_rx_buffer_desc *sbd, *dbd;
4795 sbd = &spr->rx_std[si];
4796 dbd = &dpr->rx_std[di];
4797 dbd->addr_hi = sbd->addr_hi;
4798 dbd->addr_lo = sbd->addr_lo;
4799 }
4800
4801 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) %
4802 TG3_RX_RING_SIZE;
4803 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) %
4804 TG3_RX_RING_SIZE;
4805 }
4806
4807 while (1) {
4808 src_prod_idx = spr->rx_jmb_prod_idx;
4809
4810 /* Make sure updates to the rx_jmb_buffers[] entries and
4811 * the jumbo producer index are seen in the correct order.
4812 */
4813 smp_rmb();
4814
4815 if (spr->rx_jmb_cons_idx == src_prod_idx)
4816 break;
4817
4818 if (spr->rx_jmb_cons_idx < src_prod_idx)
4819 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
4820 else
4821 cpycnt = TG3_RX_JUMBO_RING_SIZE - spr->rx_jmb_cons_idx;
4822
4823 cpycnt = min(cpycnt,
4824 TG3_RX_JUMBO_RING_SIZE - dpr->rx_jmb_prod_idx);
4825
4826 si = spr->rx_jmb_cons_idx;
4827 di = dpr->rx_jmb_prod_idx;
4828
4829 memcpy(&dpr->rx_jmb_buffers[di],
4830 &spr->rx_jmb_buffers[si],
4831 cpycnt * sizeof(struct ring_info));
4832
4833 for (i = 0; i < cpycnt; i++, di++, si++) {
4834 struct tg3_rx_buffer_desc *sbd, *dbd;
4835 sbd = &spr->rx_jmb[si].std;
4836 dbd = &dpr->rx_jmb[di].std;
4837 dbd->addr_hi = sbd->addr_hi;
4838 dbd->addr_lo = sbd->addr_lo;
4839 }
4840
4841 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) %
4842 TG3_RX_JUMBO_RING_SIZE;
4843 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) %
4844 TG3_RX_JUMBO_RING_SIZE;
4845 }
4846}
4847
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004848static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
4849{
4850 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851
4852 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004853 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00004854 tg3_tx(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07004855 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
Michael Chan4fd7ab52007-10-12 01:39:50 -07004856 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 }
4858
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 /* run RX thread, within the bounds set by NAPI.
4860 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004861 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004863 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00004864 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004866 if ((tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS) && tnapi == &tp->napi[1]) {
4867 int i;
4868 u32 std_prod_idx = tp->prodring[0].rx_std_prod_idx;
4869 u32 jmb_prod_idx = tp->prodring[0].rx_jmb_prod_idx;
4870
4871 for (i = 2; i < tp->irq_cnt; i++)
4872 tg3_rx_prodring_xfer(tp, tnapi->prodring,
4873 tp->napi[i].prodring);
4874
4875 wmb();
4876
4877 if (std_prod_idx != tp->prodring[0].rx_std_prod_idx) {
4878 u32 mbox = TG3_RX_STD_PROD_IDX_REG;
4879 tw32_rx_mbox(mbox, tp->prodring[0].rx_std_prod_idx);
4880 }
4881
4882 if (jmb_prod_idx != tp->prodring[0].rx_jmb_prod_idx) {
4883 u32 mbox = TG3_RX_JMB_PROD_IDX_REG;
4884 tw32_rx_mbox(mbox, tp->prodring[0].rx_jmb_prod_idx);
4885 }
4886
4887 mmiowb();
4888 }
4889
David S. Miller6f535762007-10-11 18:08:29 -07004890 return work_done;
4891}
David S. Millerf7383c22005-05-18 22:50:53 -07004892
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004893static int tg3_poll_msix(struct napi_struct *napi, int budget)
4894{
4895 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
4896 struct tg3 *tp = tnapi->tp;
4897 int work_done = 0;
4898 struct tg3_hw_status *sblk = tnapi->hw_status;
4899
4900 while (1) {
4901 work_done = tg3_poll_work(tnapi, work_done, budget);
4902
4903 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
4904 goto tx_recovery;
4905
4906 if (unlikely(work_done >= budget))
4907 break;
4908
4909 /* tp->last_tag is used in tg3_restart_ints() below
4910 * to tell the hw how much work has been processed,
4911 * so we must read it before checking for more work.
4912 */
4913 tnapi->last_tag = sblk->status_tag;
4914 tnapi->last_irq_tag = tnapi->last_tag;
4915 rmb();
4916
4917 /* check for RX/TX work to do */
4918 if (sblk->idx[0].tx_consumer == tnapi->tx_cons &&
4919 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr) {
4920 napi_complete(napi);
4921 /* Reenable interrupts. */
4922 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
4923 mmiowb();
4924 break;
4925 }
4926 }
4927
4928 return work_done;
4929
4930tx_recovery:
4931 /* work_done is guaranteed to be less than budget. */
4932 napi_complete(napi);
4933 schedule_work(&tp->reset_task);
4934 return work_done;
4935}
4936
David S. Miller6f535762007-10-11 18:08:29 -07004937static int tg3_poll(struct napi_struct *napi, int budget)
4938{
Matt Carlson8ef04422009-08-28 14:01:37 +00004939 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
4940 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07004941 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00004942 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07004943
4944 while (1) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004945 tg3_poll_link(tp);
4946
Matt Carlson17375d22009-08-28 14:02:18 +00004947 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07004948
4949 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
4950 goto tx_recovery;
4951
4952 if (unlikely(work_done >= budget))
4953 break;
4954
Michael Chan4fd7ab52007-10-12 01:39:50 -07004955 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
Matt Carlson17375d22009-08-28 14:02:18 +00004956 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07004957 * to tell the hw how much work has been processed,
4958 * so we must read it before checking for more work.
4959 */
Matt Carlson898a56f2009-08-28 14:02:40 +00004960 tnapi->last_tag = sblk->status_tag;
4961 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07004962 rmb();
4963 } else
4964 sblk->status &= ~SD_STATUS_UPDATED;
4965
Matt Carlson17375d22009-08-28 14:02:18 +00004966 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004967 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00004968 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07004969 break;
4970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 }
4972
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004973 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07004974
4975tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07004976 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08004977 napi_complete(napi);
David S. Miller6f535762007-10-11 18:08:29 -07004978 schedule_work(&tp->reset_task);
Michael Chan4fd7ab52007-10-12 01:39:50 -07004979 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980}
4981
David S. Millerf47c11e2005-06-24 20:18:35 -07004982static void tg3_irq_quiesce(struct tg3 *tp)
4983{
Matt Carlson4f125f42009-09-01 12:55:02 +00004984 int i;
4985
David S. Millerf47c11e2005-06-24 20:18:35 -07004986 BUG_ON(tp->irq_sync);
4987
4988 tp->irq_sync = 1;
4989 smp_mb();
4990
Matt Carlson4f125f42009-09-01 12:55:02 +00004991 for (i = 0; i < tp->irq_cnt; i++)
4992 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07004993}
4994
4995static inline int tg3_irq_sync(struct tg3 *tp)
4996{
4997 return tp->irq_sync;
4998}
4999
5000/* Fully shutdown all tg3 driver activity elsewhere in the system.
5001 * If irq_sync is non-zero, then the IRQ handler must be synchronized
5002 * with as well. Most of the time, this is not necessary except when
5003 * shutting down the device.
5004 */
5005static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
5006{
Michael Chan46966542007-07-11 19:47:19 -07005007 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07005008 if (irq_sync)
5009 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005010}
5011
5012static inline void tg3_full_unlock(struct tg3 *tp)
5013{
David S. Millerf47c11e2005-06-24 20:18:35 -07005014 spin_unlock_bh(&tp->lock);
5015}
5016
Michael Chanfcfa0a32006-03-20 22:28:41 -08005017/* One-shot MSI handler - Chip automatically disables interrupt
5018 * after sending MSI so driver doesn't have to do it.
5019 */
David Howells7d12e782006-10-05 14:55:46 +01005020static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08005021{
Matt Carlson09943a12009-08-28 14:01:57 +00005022 struct tg3_napi *tnapi = dev_id;
5023 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08005024
Matt Carlson898a56f2009-08-28 14:02:40 +00005025 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005026 if (tnapi->rx_rcb)
5027 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005028
5029 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005030 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005031
5032 return IRQ_HANDLED;
5033}
5034
Michael Chan88b06bc22005-04-21 17:13:25 -07005035/* MSI ISR - No need to check for interrupt sharing and no need to
5036 * flush status block and interrupt mailbox. PCI ordering rules
5037 * guarantee that MSI will arrive after the status block.
5038 */
David Howells7d12e782006-10-05 14:55:46 +01005039static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07005040{
Matt Carlson09943a12009-08-28 14:01:57 +00005041 struct tg3_napi *tnapi = dev_id;
5042 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07005043
Matt Carlson898a56f2009-08-28 14:02:40 +00005044 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005045 if (tnapi->rx_rcb)
5046 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07005047 /*
David S. Millerfac9b832005-05-18 22:46:34 -07005048 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07005049 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07005050 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07005051 * NIC to stop sending us irqs, engaging "in-intr-handler"
5052 * event coalescing.
5053 */
5054 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07005055 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005056 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07005057
Michael Chan88b06bc22005-04-21 17:13:25 -07005058 return IRQ_RETVAL(1);
5059}
5060
David Howells7d12e782006-10-05 14:55:46 +01005061static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062{
Matt Carlson09943a12009-08-28 14:01:57 +00005063 struct tg3_napi *tnapi = dev_id;
5064 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005065 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066 unsigned int handled = 1;
5067
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068 /* In INTx mode, it is possible for the interrupt to arrive at
5069 * the CPU before the status block posted prior to the interrupt.
5070 * Reading the PCI State register will confirm whether the
5071 * interrupt is ours and will flush the status block.
5072 */
Michael Chand18edcb2007-03-24 20:57:11 -07005073 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
5074 if ((tp->tg3_flags & TG3_FLAG_CHIP_RESETTING) ||
5075 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5076 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005077 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07005078 }
Michael Chand18edcb2007-03-24 20:57:11 -07005079 }
5080
5081 /*
5082 * Writing any value to intr-mbox-0 clears PCI INTA# and
5083 * chip-internal interrupt pending events.
5084 * Writing non-zero to intr-mbox-0 additional tells the
5085 * NIC to stop sending us irqs, engaging "in-intr-handler"
5086 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005087 *
5088 * Flush the mailbox to de-assert the IRQ immediately to prevent
5089 * spurious interrupts. The flush impacts performance but
5090 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005091 */
Michael Chanc04cb342007-05-07 00:26:15 -07005092 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07005093 if (tg3_irq_sync(tp))
5094 goto out;
5095 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00005096 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00005097 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00005098 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07005099 } else {
5100 /* No work, shared interrupt perhaps? re-enable
5101 * interrupts, and flush that PCI write
5102 */
5103 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
5104 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07005105 }
David S. Millerf47c11e2005-06-24 20:18:35 -07005106out:
David S. Millerfac9b832005-05-18 22:46:34 -07005107 return IRQ_RETVAL(handled);
5108}
5109
David Howells7d12e782006-10-05 14:55:46 +01005110static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07005111{
Matt Carlson09943a12009-08-28 14:01:57 +00005112 struct tg3_napi *tnapi = dev_id;
5113 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005114 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07005115 unsigned int handled = 1;
5116
David S. Millerfac9b832005-05-18 22:46:34 -07005117 /* In INTx mode, it is possible for the interrupt to arrive at
5118 * the CPU before the status block posted prior to the interrupt.
5119 * Reading the PCI State register will confirm whether the
5120 * interrupt is ours and will flush the status block.
5121 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005122 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Michael Chand18edcb2007-03-24 20:57:11 -07005123 if ((tp->tg3_flags & TG3_FLAG_CHIP_RESETTING) ||
5124 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5125 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005126 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127 }
Michael Chand18edcb2007-03-24 20:57:11 -07005128 }
5129
5130 /*
5131 * writing any value to intr-mbox-0 clears PCI INTA# and
5132 * chip-internal interrupt pending events.
5133 * writing non-zero to intr-mbox-0 additional tells the
5134 * NIC to stop sending us irqs, engaging "in-intr-handler"
5135 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005136 *
5137 * Flush the mailbox to de-assert the IRQ immediately to prevent
5138 * spurious interrupts. The flush impacts performance but
5139 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005140 */
Michael Chanc04cb342007-05-07 00:26:15 -07005141 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00005142
5143 /*
5144 * In a shared interrupt configuration, sometimes other devices'
5145 * interrupts will scream. We record the current status tag here
5146 * so that the above check can report that the screaming interrupts
5147 * are unhandled. Eventually they will be silenced.
5148 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005149 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00005150
Michael Chand18edcb2007-03-24 20:57:11 -07005151 if (tg3_irq_sync(tp))
5152 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00005153
Matt Carlson72334482009-08-28 14:03:01 +00005154 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00005155
Matt Carlson09943a12009-08-28 14:01:57 +00005156 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00005157
David S. Millerf47c11e2005-06-24 20:18:35 -07005158out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 return IRQ_RETVAL(handled);
5160}
5161
Michael Chan79381092005-04-21 17:13:59 -07005162/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01005163static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07005164{
Matt Carlson09943a12009-08-28 14:01:57 +00005165 struct tg3_napi *tnapi = dev_id;
5166 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005167 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07005168
Michael Chanf9804dd2005-09-27 12:13:10 -07005169 if ((sblk->status & SD_STATUS_UPDATED) ||
5170 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07005171 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07005172 return IRQ_RETVAL(1);
5173 }
5174 return IRQ_RETVAL(0);
5175}
5176
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07005177static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07005178static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179
Michael Chanb9ec6c12006-07-25 16:37:27 -07005180/* Restart hardware after configuration changes, self-test, etc.
5181 * Invoked with tp->lock held.
5182 */
5183static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07005184 __releases(tp->lock)
5185 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005186{
5187 int err;
5188
5189 err = tg3_init_hw(tp, reset_phy);
5190 if (err) {
5191 printk(KERN_ERR PFX "%s: Failed to re-initialize device, "
5192 "aborting.\n", tp->dev->name);
5193 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
5194 tg3_full_unlock(tp);
5195 del_timer_sync(&tp->timer);
5196 tp->irq_sync = 0;
Matt Carlsonfed97812009-09-01 13:10:19 +00005197 tg3_napi_enable(tp);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005198 dev_close(tp->dev);
5199 tg3_full_lock(tp, 0);
5200 }
5201 return err;
5202}
5203
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204#ifdef CONFIG_NET_POLL_CONTROLLER
5205static void tg3_poll_controller(struct net_device *dev)
5206{
Matt Carlson4f125f42009-09-01 12:55:02 +00005207 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07005208 struct tg3 *tp = netdev_priv(dev);
5209
Matt Carlson4f125f42009-09-01 12:55:02 +00005210 for (i = 0; i < tp->irq_cnt; i++)
5211 tg3_interrupt(tp->napi[i].irq_vec, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212}
5213#endif
5214
David Howellsc4028952006-11-22 14:57:56 +00005215static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216{
David Howellsc4028952006-11-22 14:57:56 +00005217 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005218 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 unsigned int restart_timer;
5220
Michael Chan7faa0062006-02-02 17:29:28 -08005221 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08005222
5223 if (!netif_running(tp->dev)) {
Michael Chan7faa0062006-02-02 17:29:28 -08005224 tg3_full_unlock(tp);
5225 return;
5226 }
5227
5228 tg3_full_unlock(tp);
5229
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005230 tg3_phy_stop(tp);
5231
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232 tg3_netif_stop(tp);
5233
David S. Millerf47c11e2005-06-24 20:18:35 -07005234 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235
5236 restart_timer = tp->tg3_flags2 & TG3_FLG2_RESTART_TIMER;
5237 tp->tg3_flags2 &= ~TG3_FLG2_RESTART_TIMER;
5238
Michael Chandf3e6542006-05-26 17:48:07 -07005239 if (tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING) {
5240 tp->write32_tx_mbox = tg3_write32_tx_mbox;
5241 tp->write32_rx_mbox = tg3_write_flush_reg32;
5242 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
5243 tp->tg3_flags &= ~TG3_FLAG_TX_RECOVERY_PENDING;
5244 }
5245
Michael Chan944d9802005-05-29 14:57:48 -07005246 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005247 err = tg3_init_hw(tp, 1);
5248 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005249 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250
5251 tg3_netif_start(tp);
5252
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253 if (restart_timer)
5254 mod_timer(&tp->timer, jiffies + 1);
Michael Chan7faa0062006-02-02 17:29:28 -08005255
Michael Chanb9ec6c12006-07-25 16:37:27 -07005256out:
Michael Chan7faa0062006-02-02 17:29:28 -08005257 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005258
5259 if (!err)
5260 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261}
5262
Michael Chanb0408752007-02-13 12:18:30 -08005263static void tg3_dump_short_state(struct tg3 *tp)
5264{
5265 printk(KERN_ERR PFX "DEBUG: MAC_TX_STATUS[%08x] MAC_RX_STATUS[%08x]\n",
5266 tr32(MAC_TX_STATUS), tr32(MAC_RX_STATUS));
5267 printk(KERN_ERR PFX "DEBUG: RDMAC_STATUS[%08x] WDMAC_STATUS[%08x]\n",
5268 tr32(RDMAC_STATUS), tr32(WDMAC_STATUS));
5269}
5270
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271static void tg3_tx_timeout(struct net_device *dev)
5272{
5273 struct tg3 *tp = netdev_priv(dev);
5274
Michael Chanb0408752007-02-13 12:18:30 -08005275 if (netif_msg_tx_err(tp)) {
Michael Chan9f88f292006-12-07 00:22:54 -08005276 printk(KERN_ERR PFX "%s: transmit timed out, resetting\n",
5277 dev->name);
Michael Chanb0408752007-02-13 12:18:30 -08005278 tg3_dump_short_state(tp);
5279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280
5281 schedule_work(&tp->reset_task);
5282}
5283
Michael Chanc58ec932005-09-17 00:46:27 -07005284/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
5285static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
5286{
5287 u32 base = (u32) mapping & 0xffffffff;
5288
5289 return ((base > 0xffffdcc0) &&
5290 (base + len + 8 < base));
5291}
5292
Michael Chan72f2afb2006-03-06 19:28:35 -08005293/* Test for DMA addresses > 40-bit */
5294static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
5295 int len)
5296{
5297#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Michael Chan6728a8e2006-03-27 23:16:49 -08005298 if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG)
Yang Hongyang50cf1562009-04-06 19:01:14 -07005299 return (((u64) mapping + len) > DMA_BIT_MASK(40));
Michael Chan72f2afb2006-03-06 19:28:35 -08005300 return 0;
5301#else
5302 return 0;
5303#endif
5304}
5305
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005306static void tg3_set_txd(struct tg3_napi *, int, dma_addr_t, int, u32, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307
Michael Chan72f2afb2006-03-06 19:28:35 -08005308/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005309static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
5310 struct sk_buff *skb, u32 last_plus_one,
5311 u32 *start, u32 base_flags, u32 mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312{
Matt Carlson24f4efd2009-11-13 13:03:35 +00005313 struct tg3 *tp = tnapi->tp;
Matt Carlson41588ba2008-04-19 18:12:33 -07005314 struct sk_buff *new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07005315 dma_addr_t new_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316 u32 entry = *start;
Michael Chanc58ec932005-09-17 00:46:27 -07005317 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318
Matt Carlson41588ba2008-04-19 18:12:33 -07005319 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
5320 new_skb = skb_copy(skb, GFP_ATOMIC);
5321 else {
5322 int more_headroom = 4 - ((unsigned long)skb->data & 3);
5323
5324 new_skb = skb_copy_expand(skb,
5325 skb_headroom(skb) + more_headroom,
5326 skb_tailroom(skb), GFP_ATOMIC);
5327 }
5328
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07005330 ret = -1;
5331 } else {
5332 /* New SKB is guaranteed to be linear. */
5333 entry = *start;
David S. Miller90079ce2008-09-11 04:52:51 -07005334 ret = skb_dma_map(&tp->pdev->dev, new_skb, DMA_TO_DEVICE);
Eric Dumazet042a53a2009-06-05 04:04:16 +00005335 new_addr = skb_shinfo(new_skb)->dma_head;
David S. Miller90079ce2008-09-11 04:52:51 -07005336
Michael Chanc58ec932005-09-17 00:46:27 -07005337 /* Make sure new skb does not cross any 4G boundaries.
5338 * Drop the packet if it does.
5339 */
Matt Carlson0e1406d2009-11-02 12:33:33 +00005340 if (ret || ((tp->tg3_flags3 & TG3_FLG3_4G_DMA_BNDRY_BUG) &&
5341 tg3_4g_overflow_test(new_addr, new_skb->len))) {
David S. Miller638266f2008-09-11 15:45:19 -07005342 if (!ret)
5343 skb_dma_unmap(&tp->pdev->dev, new_skb,
5344 DMA_TO_DEVICE);
Michael Chanc58ec932005-09-17 00:46:27 -07005345 ret = -1;
5346 dev_kfree_skb(new_skb);
5347 new_skb = NULL;
5348 } else {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005349 tg3_set_txd(tnapi, entry, new_addr, new_skb->len,
Michael Chanc58ec932005-09-17 00:46:27 -07005350 base_flags, 1 | (mss << 1));
5351 *start = NEXT_TX(entry);
5352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353 }
5354
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355 /* Now clean up the sw ring entries. */
5356 i = 0;
5357 while (entry != last_plus_one) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005358 if (i == 0)
5359 tnapi->tx_buffers[entry].skb = new_skb;
5360 else
5361 tnapi->tx_buffers[entry].skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 entry = NEXT_TX(entry);
5363 i++;
5364 }
5365
David S. Miller90079ce2008-09-11 04:52:51 -07005366 skb_dma_unmap(&tp->pdev->dev, skb, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 dev_kfree_skb(skb);
5368
Michael Chanc58ec932005-09-17 00:46:27 -07005369 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370}
5371
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005372static void tg3_set_txd(struct tg3_napi *tnapi, int entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373 dma_addr_t mapping, int len, u32 flags,
5374 u32 mss_and_is_end)
5375{
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005376 struct tg3_tx_buffer_desc *txd = &tnapi->tx_ring[entry];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 int is_end = (mss_and_is_end & 0x1);
5378 u32 mss = (mss_and_is_end >> 1);
5379 u32 vlan_tag = 0;
5380
5381 if (is_end)
5382 flags |= TXD_FLAG_END;
5383 if (flags & TXD_FLAG_VLAN) {
5384 vlan_tag = flags >> 16;
5385 flags &= 0xffff;
5386 }
5387 vlan_tag |= (mss << TXD_MSS_SHIFT);
5388
5389 txd->addr_hi = ((u64) mapping >> 32);
5390 txd->addr_lo = ((u64) mapping & 0xffffffff);
5391 txd->len_flags = (len << TXD_LEN_SHIFT) | flags;
5392 txd->vlan_tag = vlan_tag << TXD_VLAN_TAG_SHIFT;
5393}
5394
Michael Chan5a6f3072006-03-20 22:28:05 -08005395/* hard_start_xmit for devices that don't have any bugs and
Matt Carlsone849cdc2009-11-13 13:03:38 +00005396 * support TG3_FLG2_HW_TSO_2 and TG3_FLG2_HW_TSO_3 only.
Michael Chan5a6f3072006-03-20 22:28:05 -08005397 */
Stephen Hemminger613573252009-08-31 19:50:58 +00005398static netdev_tx_t tg3_start_xmit(struct sk_buff *skb,
5399 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400{
5401 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402 u32 len, entry, base_flags, mss;
David S. Miller90079ce2008-09-11 04:52:51 -07005403 struct skb_shared_info *sp;
5404 dma_addr_t mapping;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005405 struct tg3_napi *tnapi;
5406 struct netdev_queue *txq;
Michael Chan5a6f3072006-03-20 22:28:05 -08005407
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005408 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
5409 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
5410 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
5411 tnapi++;
Michael Chan5a6f3072006-03-20 22:28:05 -08005412
Michael Chan00b70502006-06-17 21:58:45 -07005413 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005414 * and TX reclaim runs via tp->napi.poll inside of a software
Michael Chan5a6f3072006-03-20 22:28:05 -08005415 * interrupt. Furthermore, IRQ processing runs lockless so we have
5416 * no IRQ context deadlocks to worry about either. Rejoice!
5417 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005418 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005419 if (!netif_tx_queue_stopped(txq)) {
5420 netif_tx_stop_queue(txq);
Michael Chan5a6f3072006-03-20 22:28:05 -08005421
5422 /* This is a hard error, log it. */
5423 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when "
5424 "queue awake!\n", dev->name);
5425 }
Michael Chan5a6f3072006-03-20 22:28:05 -08005426 return NETDEV_TX_BUSY;
5427 }
5428
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005429 entry = tnapi->tx_prod;
Michael Chan5a6f3072006-03-20 22:28:05 -08005430 base_flags = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08005431 mss = 0;
Matt Carlsonc13e3712007-05-05 11:50:04 -07005432 if ((mss = skb_shinfo(skb)->gso_size) != 0) {
Michael Chan5a6f3072006-03-20 22:28:05 -08005433 int tcp_opt_len, ip_tcp_len;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005434 u32 hdrlen;
Michael Chan5a6f3072006-03-20 22:28:05 -08005435
5436 if (skb_header_cloned(skb) &&
5437 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
5438 dev_kfree_skb(skb);
5439 goto out_unlock;
5440 }
5441
Michael Chanb0026622006-07-03 19:42:14 -07005442 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005443 hdrlen = skb_headlen(skb) - ETH_HLEN;
Michael Chanb0026622006-07-03 19:42:14 -07005444 else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005445 struct iphdr *iph = ip_hdr(skb);
5446
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07005447 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03005448 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Michael Chanb0026622006-07-03 19:42:14 -07005449
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005450 iph->check = 0;
5451 iph->tot_len = htons(mss + ip_tcp_len + tcp_opt_len);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005452 hdrlen = ip_tcp_len + tcp_opt_len;
Michael Chanb0026622006-07-03 19:42:14 -07005453 }
Michael Chan5a6f3072006-03-20 22:28:05 -08005454
Matt Carlsone849cdc2009-11-13 13:03:38 +00005455 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005456 mss |= (hdrlen & 0xc) << 12;
5457 if (hdrlen & 0x10)
5458 base_flags |= 0x00000010;
5459 base_flags |= (hdrlen & 0x3e0) << 5;
5460 } else
5461 mss |= hdrlen << 9;
5462
Michael Chan5a6f3072006-03-20 22:28:05 -08005463 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
5464 TXD_FLAG_CPU_POST_DMA);
5465
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005466 tcp_hdr(skb)->check = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08005467
Michael Chan5a6f3072006-03-20 22:28:05 -08005468 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07005469 else if (skb->ip_summed == CHECKSUM_PARTIAL)
Michael Chan5a6f3072006-03-20 22:28:05 -08005470 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Michael Chan5a6f3072006-03-20 22:28:05 -08005471#if TG3_VLAN_TAG_USED
5472 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
5473 base_flags |= (TXD_FLAG_VLAN |
5474 (vlan_tx_tag_get(skb) << 16));
5475#endif
5476
David S. Miller90079ce2008-09-11 04:52:51 -07005477 if (skb_dma_map(&tp->pdev->dev, skb, DMA_TO_DEVICE)) {
5478 dev_kfree_skb(skb);
5479 goto out_unlock;
5480 }
5481
5482 sp = skb_shinfo(skb);
5483
Eric Dumazet042a53a2009-06-05 04:04:16 +00005484 mapping = sp->dma_head;
Michael Chan5a6f3072006-03-20 22:28:05 -08005485
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005486 tnapi->tx_buffers[entry].skb = skb;
Michael Chan5a6f3072006-03-20 22:28:05 -08005487
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005488 len = skb_headlen(skb);
5489
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005490 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
5491 !mss && skb->len > ETH_DATA_LEN)
5492 base_flags |= TXD_FLAG_JMB_PKT;
5493
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005494 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Michael Chan5a6f3072006-03-20 22:28:05 -08005495 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
5496
5497 entry = NEXT_TX(entry);
5498
5499 /* Now loop through additional data fragments, and queue them. */
5500 if (skb_shinfo(skb)->nr_frags > 0) {
5501 unsigned int i, last;
5502
5503 last = skb_shinfo(skb)->nr_frags - 1;
5504 for (i = 0; i <= last; i++) {
5505 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5506
5507 len = frag->size;
Eric Dumazet042a53a2009-06-05 04:04:16 +00005508 mapping = sp->dma_maps[i];
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005509 tnapi->tx_buffers[entry].skb = NULL;
Michael Chan5a6f3072006-03-20 22:28:05 -08005510
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005511 tg3_set_txd(tnapi, entry, mapping, len,
Michael Chan5a6f3072006-03-20 22:28:05 -08005512 base_flags, (i == last) | (mss << 1));
5513
5514 entry = NEXT_TX(entry);
5515 }
5516 }
5517
5518 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005519 tw32_tx_mbox(tnapi->prodmbox, entry);
Michael Chan5a6f3072006-03-20 22:28:05 -08005520
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005521 tnapi->tx_prod = entry;
5522 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005523 netif_tx_stop_queue(txq);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005524 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005525 netif_tx_wake_queue(txq);
Michael Chan5a6f3072006-03-20 22:28:05 -08005526 }
5527
5528out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00005529 mmiowb();
Michael Chan5a6f3072006-03-20 22:28:05 -08005530
5531 return NETDEV_TX_OK;
5532}
5533
Stephen Hemminger613573252009-08-31 19:50:58 +00005534static netdev_tx_t tg3_start_xmit_dma_bug(struct sk_buff *,
5535 struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07005536
5537/* Use GSO to workaround a rare TSO bug that may be triggered when the
5538 * TSO header is greater than 80 bytes.
5539 */
5540static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
5541{
5542 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005543 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07005544
5545 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005546 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07005547 netif_stop_queue(tp->dev);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005548 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08005549 return NETDEV_TX_BUSY;
5550
5551 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07005552 }
5553
5554 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07005555 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07005556 goto tg3_tso_bug_end;
5557
5558 do {
5559 nskb = segs;
5560 segs = segs->next;
5561 nskb->next = NULL;
5562 tg3_start_xmit_dma_bug(nskb, tp->dev);
5563 } while (segs);
5564
5565tg3_tso_bug_end:
5566 dev_kfree_skb(skb);
5567
5568 return NETDEV_TX_OK;
5569}
Michael Chan52c0fd82006-06-29 20:15:54 -07005570
Michael Chan5a6f3072006-03-20 22:28:05 -08005571/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
5572 * support TG3_FLG2_HW_TSO_1 or firmware TSO only.
5573 */
Stephen Hemminger613573252009-08-31 19:50:58 +00005574static netdev_tx_t tg3_start_xmit_dma_bug(struct sk_buff *skb,
5575 struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08005576{
5577 struct tg3 *tp = netdev_priv(dev);
Michael Chan5a6f3072006-03-20 22:28:05 -08005578 u32 len, entry, base_flags, mss;
David S. Miller90079ce2008-09-11 04:52:51 -07005579 struct skb_shared_info *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580 int would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07005581 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005582 struct tg3_napi *tnapi;
5583 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584
Matt Carlson24f4efd2009-11-13 13:03:35 +00005585 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
5586 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
5587 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
5588 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589
Michael Chan00b70502006-06-17 21:58:45 -07005590 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005591 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07005592 * interrupt. Furthermore, IRQ processing runs lockless so we have
5593 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005595 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00005596 if (!netif_tx_queue_stopped(txq)) {
5597 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08005598
5599 /* This is a hard error, log it. */
5600 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when "
5601 "queue awake!\n", dev->name);
5602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603 return NETDEV_TX_BUSY;
5604 }
5605
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005606 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07005608 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005610
Matt Carlsonc13e3712007-05-05 11:50:04 -07005611 if ((mss = skb_shinfo(skb)->gso_size) != 0) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005612 struct iphdr *iph;
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005613 u32 tcp_opt_len, ip_tcp_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614
5615 if (skb_header_cloned(skb) &&
5616 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
5617 dev_kfree_skb(skb);
5618 goto out_unlock;
5619 }
5620
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07005621 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03005622 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
Michael Chan52c0fd82006-06-29 20:15:54 -07005624 hdr_len = ip_tcp_len + tcp_opt_len;
5625 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Michael Chan7f62ad52007-02-20 23:25:40 -08005626 (tp->tg3_flags2 & TG3_FLG2_TSO_BUG))
Michael Chan52c0fd82006-06-29 20:15:54 -07005627 return (tg3_tso_bug(tp, skb));
5628
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
5630 TXD_FLAG_CPU_POST_DMA);
5631
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005632 iph = ip_hdr(skb);
5633 iph->check = 0;
5634 iph->tot_len = htons(mss + hdr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005636 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005638 } else
5639 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5640 iph->daddr, 0,
5641 IPPROTO_TCP,
5642 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643
Matt Carlson615774f2009-11-13 13:03:39 +00005644 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) {
5645 mss |= (hdr_len & 0xc) << 12;
5646 if (hdr_len & 0x10)
5647 base_flags |= 0x00000010;
5648 base_flags |= (hdr_len & 0x3e0) << 5;
5649 } else if (tp->tg3_flags2 & TG3_FLG2_HW_TSO_2)
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005650 mss |= hdr_len << 9;
5651 else if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_1) ||
5652 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005653 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654 int tsflags;
5655
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005656 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 mss |= (tsflags << 11);
5658 }
5659 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005660 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 int tsflags;
5662
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005663 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664 base_flags |= tsflags << 12;
5665 }
5666 }
5667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668#if TG3_VLAN_TAG_USED
5669 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
5670 base_flags |= (TXD_FLAG_VLAN |
5671 (vlan_tx_tag_get(skb) << 16));
5672#endif
5673
Matt Carlson615774f2009-11-13 13:03:39 +00005674 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
5675 !mss && skb->len > ETH_DATA_LEN)
5676 base_flags |= TXD_FLAG_JMB_PKT;
5677
David S. Miller90079ce2008-09-11 04:52:51 -07005678 if (skb_dma_map(&tp->pdev->dev, skb, DMA_TO_DEVICE)) {
5679 dev_kfree_skb(skb);
5680 goto out_unlock;
5681 }
5682
5683 sp = skb_shinfo(skb);
5684
Eric Dumazet042a53a2009-06-05 04:04:16 +00005685 mapping = sp->dma_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005687 tnapi->tx_buffers[entry].skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
5689 would_hit_hwbug = 0;
5690
Matt Carlson24f4efd2009-11-13 13:03:35 +00005691 len = skb_headlen(skb);
5692
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005693 if ((tp->tg3_flags3 & TG3_FLG3_SHORT_DMA_BUG) && len <= 8)
5694 would_hit_hwbug = 1;
5695
Matt Carlson0e1406d2009-11-02 12:33:33 +00005696 if ((tp->tg3_flags3 & TG3_FLG3_4G_DMA_BNDRY_BUG) &&
5697 tg3_4g_overflow_test(mapping, len))
Matt Carlson41588ba2008-04-19 18:12:33 -07005698 would_hit_hwbug = 1;
Matt Carlson0e1406d2009-11-02 12:33:33 +00005699
5700 if ((tp->tg3_flags3 & TG3_FLG3_40BIT_DMA_LIMIT_BUG) &&
5701 tg3_40bit_overflow_test(tp, mapping, len))
5702 would_hit_hwbug = 1;
5703
5704 if (tp->tg3_flags3 & TG3_FLG3_5701_DMA_BUG)
Michael Chanc58ec932005-09-17 00:46:27 -07005705 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005707 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
5709
5710 entry = NEXT_TX(entry);
5711
5712 /* Now loop through additional data fragments, and queue them. */
5713 if (skb_shinfo(skb)->nr_frags > 0) {
5714 unsigned int i, last;
5715
5716 last = skb_shinfo(skb)->nr_frags - 1;
5717 for (i = 0; i <= last; i++) {
5718 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5719
5720 len = frag->size;
Eric Dumazet042a53a2009-06-05 04:04:16 +00005721 mapping = sp->dma_maps[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005723 tnapi->tx_buffers[entry].skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005725 if ((tp->tg3_flags3 & TG3_FLG3_SHORT_DMA_BUG) &&
5726 len <= 8)
5727 would_hit_hwbug = 1;
5728
Matt Carlson0e1406d2009-11-02 12:33:33 +00005729 if ((tp->tg3_flags3 & TG3_FLG3_4G_DMA_BNDRY_BUG) &&
5730 tg3_4g_overflow_test(mapping, len))
Michael Chanc58ec932005-09-17 00:46:27 -07005731 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732
Matt Carlson0e1406d2009-11-02 12:33:33 +00005733 if ((tp->tg3_flags3 & TG3_FLG3_40BIT_DMA_LIMIT_BUG) &&
5734 tg3_40bit_overflow_test(tp, mapping, len))
Michael Chan72f2afb2006-03-06 19:28:35 -08005735 would_hit_hwbug = 1;
5736
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005738 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739 base_flags, (i == last)|(mss << 1));
5740 else
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005741 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 base_flags, (i == last));
5743
5744 entry = NEXT_TX(entry);
5745 }
5746 }
5747
5748 if (would_hit_hwbug) {
5749 u32 last_plus_one = entry;
5750 u32 start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751
Michael Chanc58ec932005-09-17 00:46:27 -07005752 start = entry - 1 - skb_shinfo(skb)->nr_frags;
5753 start &= (TG3_TX_RING_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754
5755 /* If the workaround fails due to memory/mapping
5756 * failure, silently drop this packet.
5757 */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005758 if (tigon3_dma_hwbug_workaround(tnapi, skb, last_plus_one,
Michael Chanc58ec932005-09-17 00:46:27 -07005759 &start, base_flags, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760 goto out_unlock;
5761
5762 entry = start;
5763 }
5764
5765 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005766 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005768 tnapi->tx_prod = entry;
5769 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00005770 netif_tx_stop_queue(txq);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005771 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00005772 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07005773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774
5775out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00005776 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777
5778 return NETDEV_TX_OK;
5779}
5780
5781static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
5782 int new_mtu)
5783{
5784 dev->mtu = new_mtu;
5785
Michael Chanef7f5ec2005-07-25 12:32:25 -07005786 if (new_mtu > ETH_DATA_LEN) {
Michael Chana4e2b342005-10-26 15:46:52 -07005787 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanef7f5ec2005-07-25 12:32:25 -07005788 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
5789 ethtool_op_set_tso(dev, 0);
5790 }
5791 else
5792 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
5793 } else {
Michael Chana4e2b342005-10-26 15:46:52 -07005794 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chanef7f5ec2005-07-25 12:32:25 -07005795 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
Michael Chan0f893dc2005-07-25 12:30:38 -07005796 tp->tg3_flags &= ~TG3_FLAG_JUMBO_RING_ENABLE;
Michael Chanef7f5ec2005-07-25 12:32:25 -07005797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798}
5799
5800static int tg3_change_mtu(struct net_device *dev, int new_mtu)
5801{
5802 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005803 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804
5805 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
5806 return -EINVAL;
5807
5808 if (!netif_running(dev)) {
5809 /* We'll just catch it later when the
5810 * device is up'd.
5811 */
5812 tg3_set_mtu(dev, tp, new_mtu);
5813 return 0;
5814 }
5815
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005816 tg3_phy_stop(tp);
5817
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005819
5820 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821
Michael Chan944d9802005-05-29 14:57:48 -07005822 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823
5824 tg3_set_mtu(dev, tp, new_mtu);
5825
Michael Chanb9ec6c12006-07-25 16:37:27 -07005826 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827
Michael Chanb9ec6c12006-07-25 16:37:27 -07005828 if (!err)
5829 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830
David S. Millerf47c11e2005-06-24 20:18:35 -07005831 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005833 if (!err)
5834 tg3_phy_start(tp);
5835
Michael Chanb9ec6c12006-07-25 16:37:27 -07005836 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837}
5838
Matt Carlson21f581a2009-08-28 14:00:25 +00005839static void tg3_rx_prodring_free(struct tg3 *tp,
5840 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842 int i;
5843
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005844 if (tpr != &tp->prodring[0]) {
5845 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
5846 i = (i + 1) % TG3_RX_RING_SIZE)
5847 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
5848 tp->rx_pkt_map_sz);
5849
5850 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
5851 for (i = tpr->rx_jmb_cons_idx;
5852 i != tpr->rx_jmb_prod_idx;
5853 i = (i + 1) % TG3_RX_JUMBO_RING_SIZE) {
5854 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
5855 TG3_RX_JMB_MAP_SZ);
5856 }
5857 }
5858
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005859 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005862 for (i = 0; i < TG3_RX_RING_SIZE; i++)
5863 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
5864 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865
Matt Carlsoncf7a7292009-08-28 13:59:57 +00005866 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005867 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++)
5868 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
5869 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870 }
5871}
5872
5873/* Initialize tx/rx rings for packet processing.
5874 *
5875 * The chip has been shut down and the driver detached from
5876 * the networking, so no interrupts or new tx packets will
5877 * end up in the driver. tp->{tx,}lock are held and thus
5878 * we may not sleep.
5879 */
Matt Carlson21f581a2009-08-28 14:00:25 +00005880static int tg3_rx_prodring_alloc(struct tg3 *tp,
5881 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882{
Matt Carlson287be122009-08-28 13:58:46 +00005883 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005885 tpr->rx_std_cons_idx = 0;
5886 tpr->rx_std_prod_idx = 0;
5887 tpr->rx_jmb_cons_idx = 0;
5888 tpr->rx_jmb_prod_idx = 0;
5889
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005890 if (tpr != &tp->prodring[0]) {
5891 memset(&tpr->rx_std_buffers[0], 0, TG3_RX_STD_BUFF_RING_SIZE);
5892 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE)
5893 memset(&tpr->rx_jmb_buffers[0], 0,
5894 TG3_RX_JMB_BUFF_RING_SIZE);
5895 goto done;
5896 }
5897
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898 /* Zero out all descriptors. */
Matt Carlson21f581a2009-08-28 14:00:25 +00005899 memset(tpr->rx_std, 0, TG3_RX_RING_BYTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900
Matt Carlson287be122009-08-28 13:58:46 +00005901 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Michael Chana4e2b342005-10-26 15:46:52 -07005902 if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00005903 tp->dev->mtu > ETH_DATA_LEN)
5904 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
5905 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07005906
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907 /* Initialize invariants of the rings, we only set this
5908 * stuff once. This works because the card does not
5909 * write into the rx buffer posting rings.
5910 */
5911 for (i = 0; i < TG3_RX_RING_SIZE; i++) {
5912 struct tg3_rx_buffer_desc *rxd;
5913
Matt Carlson21f581a2009-08-28 14:00:25 +00005914 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00005915 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
5917 rxd->opaque = (RXD_OPAQUE_RING_STD |
5918 (i << RXD_OPAQUE_INDEX_SHIFT));
5919 }
5920
Matt Carlsoncf7a7292009-08-28 13:59:57 +00005921 /* Now allocate fresh SKBs for each rx ring. */
5922 for (i = 0; i < tp->rx_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00005923 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlsoncf7a7292009-08-28 13:59:57 +00005924 printk(KERN_WARNING PFX
5925 "%s: Using a smaller RX standard ring, "
5926 "only %d out of %d buffers were allocated "
5927 "successfully.\n",
5928 tp->dev->name, i, tp->rx_pending);
5929 if (i == 0)
5930 goto initfail;
5931 tp->rx_pending = i;
5932 break;
5933 }
5934 }
5935
5936 if (!(tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE))
5937 goto done;
5938
Matt Carlson21f581a2009-08-28 14:00:25 +00005939 memset(tpr->rx_jmb, 0, TG3_RX_JUMBO_RING_BYTES);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00005940
Michael Chan0f893dc2005-07-25 12:30:38 -07005941 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++) {
5943 struct tg3_rx_buffer_desc *rxd;
5944
Matt Carlson79ed5ac2009-08-28 14:00:55 +00005945 rxd = &tpr->rx_jmb[i].std;
Matt Carlson287be122009-08-28 13:58:46 +00005946 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
5948 RXD_FLAG_JUMBO;
5949 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
5950 (i << RXD_OPAQUE_INDEX_SHIFT));
5951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00005954 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_JUMBO,
Matt Carlsonafc081f2009-11-13 13:03:43 +00005955 i) < 0) {
Michael Chan32d8c572006-07-25 16:38:29 -07005956 printk(KERN_WARNING PFX
5957 "%s: Using a smaller RX jumbo ring, "
5958 "only %d out of %d buffers were "
5959 "allocated successfully.\n",
5960 tp->dev->name, i, tp->rx_jumbo_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00005961 if (i == 0)
5962 goto initfail;
Michael Chan32d8c572006-07-25 16:38:29 -07005963 tp->rx_jumbo_pending = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964 break;
Michael Chan32d8c572006-07-25 16:38:29 -07005965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966 }
5967 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00005968
5969done:
Michael Chan32d8c572006-07-25 16:38:29 -07005970 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00005971
5972initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00005973 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00005974 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975}
5976
Matt Carlson21f581a2009-08-28 14:00:25 +00005977static void tg3_rx_prodring_fini(struct tg3 *tp,
5978 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979{
Matt Carlson21f581a2009-08-28 14:00:25 +00005980 kfree(tpr->rx_std_buffers);
5981 tpr->rx_std_buffers = NULL;
5982 kfree(tpr->rx_jmb_buffers);
5983 tpr->rx_jmb_buffers = NULL;
5984 if (tpr->rx_std) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985 pci_free_consistent(tp->pdev, TG3_RX_RING_BYTES,
Matt Carlson21f581a2009-08-28 14:00:25 +00005986 tpr->rx_std, tpr->rx_std_mapping);
5987 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988 }
Matt Carlson21f581a2009-08-28 14:00:25 +00005989 if (tpr->rx_jmb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990 pci_free_consistent(tp->pdev, TG3_RX_JUMBO_RING_BYTES,
Matt Carlson21f581a2009-08-28 14:00:25 +00005991 tpr->rx_jmb, tpr->rx_jmb_mapping);
5992 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00005994}
5995
Matt Carlson21f581a2009-08-28 14:00:25 +00005996static int tg3_rx_prodring_init(struct tg3 *tp,
5997 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00005998{
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005999 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE, GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006000 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006001 return -ENOMEM;
6002
Matt Carlson21f581a2009-08-28 14:00:25 +00006003 tpr->rx_std = pci_alloc_consistent(tp->pdev, TG3_RX_RING_BYTES,
6004 &tpr->rx_std_mapping);
6005 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006006 goto err_out;
6007
6008 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006009 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE,
Matt Carlson21f581a2009-08-28 14:00:25 +00006010 GFP_KERNEL);
6011 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006012 goto err_out;
6013
Matt Carlson21f581a2009-08-28 14:00:25 +00006014 tpr->rx_jmb = pci_alloc_consistent(tp->pdev,
6015 TG3_RX_JUMBO_RING_BYTES,
6016 &tpr->rx_jmb_mapping);
6017 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006018 goto err_out;
6019 }
6020
6021 return 0;
6022
6023err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00006024 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006025 return -ENOMEM;
6026}
6027
6028/* Free up pending packets in all rx/tx rings.
6029 *
6030 * The chip has been shut down and the driver detached from
6031 * the networking, so no interrupts or new tx packets will
6032 * end up in the driver. tp->{tx,}lock is not held and we are not
6033 * in an interrupt context and thus may sleep.
6034 */
6035static void tg3_free_rings(struct tg3 *tp)
6036{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006037 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006038
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006039 for (j = 0; j < tp->irq_cnt; j++) {
6040 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006041
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006042 if (!tnapi->tx_buffers)
6043 continue;
6044
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006045 for (i = 0; i < TG3_TX_RING_SIZE; ) {
6046 struct tx_ring_info *txp;
6047 struct sk_buff *skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006048
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006049 txp = &tnapi->tx_buffers[i];
6050 skb = txp->skb;
6051
6052 if (skb == NULL) {
6053 i++;
6054 continue;
6055 }
6056
6057 skb_dma_unmap(&tp->pdev->dev, skb, DMA_TO_DEVICE);
6058
6059 txp->skb = NULL;
6060
6061 i += skb_shinfo(skb)->nr_frags + 1;
6062
6063 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006064 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006065
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006066 if (tp->irq_cnt == 1 || j != tp->irq_cnt - 1)
6067 tg3_rx_prodring_free(tp, &tp->prodring[j]);
6068 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006069}
6070
6071/* Initialize tx/rx rings for packet processing.
6072 *
6073 * The chip has been shut down and the driver detached from
6074 * the networking, so no interrupts or new tx packets will
6075 * end up in the driver. tp->{tx,}lock are held and thus
6076 * we may not sleep.
6077 */
6078static int tg3_init_rings(struct tg3 *tp)
6079{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006080 int i;
Matt Carlson72334482009-08-28 14:03:01 +00006081
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006082 /* Free up all the SKBs. */
6083 tg3_free_rings(tp);
6084
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006085 for (i = 0; i < tp->irq_cnt; i++) {
6086 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006087
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006088 tnapi->last_tag = 0;
6089 tnapi->last_irq_tag = 0;
6090 tnapi->hw_status->status = 0;
6091 tnapi->hw_status->status_tag = 0;
6092 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6093
6094 tnapi->tx_prod = 0;
6095 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006096 if (tnapi->tx_ring)
6097 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006098
6099 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006100 if (tnapi->rx_rcb)
6101 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006102
6103 if ((tp->irq_cnt == 1 || i != tp->irq_cnt - 1) &&
6104 tg3_rx_prodring_alloc(tp, &tp->prodring[i]))
6105 return -ENOMEM;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006106 }
Matt Carlson72334482009-08-28 14:03:01 +00006107
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006108 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006109}
6110
6111/*
6112 * Must not be invoked with interrupt sources disabled and
6113 * the hardware shutdown down.
6114 */
6115static void tg3_free_consistent(struct tg3 *tp)
6116{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006117 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006118
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006119 for (i = 0; i < tp->irq_cnt; i++) {
6120 struct tg3_napi *tnapi = &tp->napi[i];
6121
6122 if (tnapi->tx_ring) {
6123 pci_free_consistent(tp->pdev, TG3_TX_RING_BYTES,
6124 tnapi->tx_ring, tnapi->tx_desc_mapping);
6125 tnapi->tx_ring = NULL;
6126 }
6127
6128 kfree(tnapi->tx_buffers);
6129 tnapi->tx_buffers = NULL;
6130
6131 if (tnapi->rx_rcb) {
6132 pci_free_consistent(tp->pdev, TG3_RX_RCB_RING_BYTES(tp),
6133 tnapi->rx_rcb,
6134 tnapi->rx_rcb_mapping);
6135 tnapi->rx_rcb = NULL;
6136 }
6137
6138 if (tnapi->hw_status) {
6139 pci_free_consistent(tp->pdev, TG3_HW_STATUS_SIZE,
6140 tnapi->hw_status,
6141 tnapi->status_mapping);
6142 tnapi->hw_status = NULL;
6143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006145
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146 if (tp->hw_stats) {
6147 pci_free_consistent(tp->pdev, sizeof(struct tg3_hw_stats),
6148 tp->hw_stats, tp->stats_mapping);
6149 tp->hw_stats = NULL;
6150 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006151
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006152 for (i = 0; i < (tp->irq_cnt == 1 ? 1 : tp->irq_cnt - 1); i++)
6153 tg3_rx_prodring_fini(tp, &tp->prodring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154}
6155
6156/*
6157 * Must not be invoked with interrupt sources disabled and
6158 * the hardware shutdown down. Can sleep.
6159 */
6160static int tg3_alloc_consistent(struct tg3 *tp)
6161{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006162 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006163
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006164 for (i = 0; i < (tp->irq_cnt == 1 ? 1 : tp->irq_cnt - 1); i++) {
6165 if (tg3_rx_prodring_init(tp, &tp->prodring[i]))
6166 goto err_out;
6167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169 tp->hw_stats = pci_alloc_consistent(tp->pdev,
6170 sizeof(struct tg3_hw_stats),
6171 &tp->stats_mapping);
6172 if (!tp->hw_stats)
6173 goto err_out;
6174
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6176
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006177 for (i = 0; i < tp->irq_cnt; i++) {
6178 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006179 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006180
6181 tnapi->hw_status = pci_alloc_consistent(tp->pdev,
6182 TG3_HW_STATUS_SIZE,
6183 &tnapi->status_mapping);
6184 if (!tnapi->hw_status)
6185 goto err_out;
6186
6187 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006188 sblk = tnapi->hw_status;
6189
6190 /*
6191 * When RSS is enabled, the status block format changes
6192 * slightly. The "rx_jumbo_consumer", "reserved",
6193 * and "rx_mini_consumer" members get mapped to the
6194 * other three rx return ring producer indexes.
6195 */
6196 switch (i) {
6197 default:
6198 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
6199 break;
6200 case 2:
6201 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
6202 break;
6203 case 3:
6204 tnapi->rx_rcb_prod_idx = &sblk->reserved;
6205 break;
6206 case 4:
6207 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
6208 break;
6209 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006210
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006211 if (tp->irq_cnt == 1)
6212 tnapi->prodring = &tp->prodring[0];
6213 else if (i)
6214 tnapi->prodring = &tp->prodring[i - 1];
6215
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006216 /*
6217 * If multivector RSS is enabled, vector 0 does not handle
6218 * rx or tx interrupts. Don't allocate any resources for it.
6219 */
6220 if (!i && (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS))
6221 continue;
6222
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006223 tnapi->rx_rcb = pci_alloc_consistent(tp->pdev,
6224 TG3_RX_RCB_RING_BYTES(tp),
6225 &tnapi->rx_rcb_mapping);
6226 if (!tnapi->rx_rcb)
6227 goto err_out;
6228
6229 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
6230
6231 tnapi->tx_buffers = kzalloc(sizeof(struct tx_ring_info) *
6232 TG3_TX_RING_SIZE, GFP_KERNEL);
6233 if (!tnapi->tx_buffers)
6234 goto err_out;
6235
6236 tnapi->tx_ring = pci_alloc_consistent(tp->pdev,
6237 TG3_TX_RING_BYTES,
6238 &tnapi->tx_desc_mapping);
6239 if (!tnapi->tx_ring)
6240 goto err_out;
6241 }
6242
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243 return 0;
6244
6245err_out:
6246 tg3_free_consistent(tp);
6247 return -ENOMEM;
6248}
6249
6250#define MAX_WAIT_CNT 1000
6251
6252/* To stop a block, clear the enable bit and poll till it
6253 * clears. tp->lock is held.
6254 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006255static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256{
6257 unsigned int i;
6258 u32 val;
6259
6260 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
6261 switch (ofs) {
6262 case RCVLSC_MODE:
6263 case DMAC_MODE:
6264 case MBFREE_MODE:
6265 case BUFMGR_MODE:
6266 case MEMARB_MODE:
6267 /* We can't enable/disable these bits of the
6268 * 5705/5750, just say success.
6269 */
6270 return 0;
6271
6272 default:
6273 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275 }
6276
6277 val = tr32(ofs);
6278 val &= ~enable_bit;
6279 tw32_f(ofs, val);
6280
6281 for (i = 0; i < MAX_WAIT_CNT; i++) {
6282 udelay(100);
6283 val = tr32(ofs);
6284 if ((val & enable_bit) == 0)
6285 break;
6286 }
6287
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006288 if (i == MAX_WAIT_CNT && !silent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289 printk(KERN_ERR PFX "tg3_stop_block timed out, "
6290 "ofs=%lx enable_bit=%x\n",
6291 ofs, enable_bit);
6292 return -ENODEV;
6293 }
6294
6295 return 0;
6296}
6297
6298/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006299static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300{
6301 int i, err;
6302
6303 tg3_disable_ints(tp);
6304
6305 tp->rx_mode &= ~RX_MODE_ENABLE;
6306 tw32_f(MAC_RX_MODE, tp->rx_mode);
6307 udelay(10);
6308
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006309 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
6310 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
6311 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
6312 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
6313 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
6314 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006316 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
6317 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
6318 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
6319 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
6320 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
6321 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
6322 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006323
6324 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
6325 tw32_f(MAC_MODE, tp->mac_mode);
6326 udelay(40);
6327
6328 tp->tx_mode &= ~TX_MODE_ENABLE;
6329 tw32_f(MAC_TX_MODE, tp->tx_mode);
6330
6331 for (i = 0; i < MAX_WAIT_CNT; i++) {
6332 udelay(100);
6333 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
6334 break;
6335 }
6336 if (i >= MAX_WAIT_CNT) {
6337 printk(KERN_ERR PFX "tg3_abort_hw timed out for %s, "
6338 "TX_MODE_ENABLE will not clear MAC_TX_MODE=%08x\n",
6339 tp->dev->name, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07006340 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341 }
6342
Michael Chane6de8ad2005-05-05 14:42:41 -07006343 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006344 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
6345 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346
6347 tw32(FTQ_RESET, 0xffffffff);
6348 tw32(FTQ_RESET, 0x00000000);
6349
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006350 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
6351 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006353 for (i = 0; i < tp->irq_cnt; i++) {
6354 struct tg3_napi *tnapi = &tp->napi[i];
6355 if (tnapi->hw_status)
6356 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358 if (tp->hw_stats)
6359 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6360
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361 return err;
6362}
6363
Matt Carlson0d3031d2007-10-10 18:02:43 -07006364static void tg3_ape_send_event(struct tg3 *tp, u32 event)
6365{
6366 int i;
6367 u32 apedata;
6368
6369 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
6370 if (apedata != APE_SEG_SIG_MAGIC)
6371 return;
6372
6373 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
Matt Carlson731fd792008-08-15 14:07:51 -07006374 if (!(apedata & APE_FW_STATUS_READY))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006375 return;
6376
6377 /* Wait for up to 1 millisecond for APE to service previous event. */
6378 for (i = 0; i < 10; i++) {
6379 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
6380 return;
6381
6382 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
6383
6384 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6385 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
6386 event | APE_EVENT_STATUS_EVENT_PENDING);
6387
6388 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
6389
6390 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6391 break;
6392
6393 udelay(100);
6394 }
6395
6396 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6397 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
6398}
6399
6400static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
6401{
6402 u32 event;
6403 u32 apedata;
6404
6405 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
6406 return;
6407
6408 switch (kind) {
6409 case RESET_KIND_INIT:
6410 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
6411 APE_HOST_SEG_SIG_MAGIC);
6412 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
6413 APE_HOST_SEG_LEN_MAGIC);
6414 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
6415 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
6416 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
6417 APE_HOST_DRIVER_ID_MAGIC);
6418 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
6419 APE_HOST_BEHAV_NO_PHYLOCK);
6420
6421 event = APE_EVENT_STATUS_STATE_START;
6422 break;
6423 case RESET_KIND_SHUTDOWN:
Matt Carlsonb2aee152008-11-03 16:51:11 -08006424 /* With the interface we are currently using,
6425 * APE does not track driver state. Wiping
6426 * out the HOST SEGMENT SIGNATURE forces
6427 * the APE to assume OS absent status.
6428 */
6429 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
6430
Matt Carlson0d3031d2007-10-10 18:02:43 -07006431 event = APE_EVENT_STATUS_STATE_UNLOAD;
6432 break;
6433 case RESET_KIND_SUSPEND:
6434 event = APE_EVENT_STATUS_STATE_SUSPEND;
6435 break;
6436 default:
6437 return;
6438 }
6439
6440 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
6441
6442 tg3_ape_send_event(tp, event);
6443}
6444
Michael Chane6af3012005-04-21 17:12:05 -07006445/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
6447{
David S. Millerf49639e2006-06-09 11:58:36 -07006448 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
6449 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450
6451 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
6452 switch (kind) {
6453 case RESET_KIND_INIT:
6454 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6455 DRV_STATE_START);
6456 break;
6457
6458 case RESET_KIND_SHUTDOWN:
6459 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6460 DRV_STATE_UNLOAD);
6461 break;
6462
6463 case RESET_KIND_SUSPEND:
6464 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6465 DRV_STATE_SUSPEND);
6466 break;
6467
6468 default:
6469 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006472
6473 if (kind == RESET_KIND_INIT ||
6474 kind == RESET_KIND_SUSPEND)
6475 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476}
6477
6478/* tp->lock is held. */
6479static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
6480{
6481 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
6482 switch (kind) {
6483 case RESET_KIND_INIT:
6484 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6485 DRV_STATE_START_DONE);
6486 break;
6487
6488 case RESET_KIND_SHUTDOWN:
6489 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6490 DRV_STATE_UNLOAD_DONE);
6491 break;
6492
6493 default:
6494 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006497
6498 if (kind == RESET_KIND_SHUTDOWN)
6499 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500}
6501
6502/* tp->lock is held. */
6503static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
6504{
6505 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
6506 switch (kind) {
6507 case RESET_KIND_INIT:
6508 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6509 DRV_STATE_START);
6510 break;
6511
6512 case RESET_KIND_SHUTDOWN:
6513 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6514 DRV_STATE_UNLOAD);
6515 break;
6516
6517 case RESET_KIND_SUSPEND:
6518 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6519 DRV_STATE_SUSPEND);
6520 break;
6521
6522 default:
6523 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525 }
6526}
6527
Michael Chan7a6f4362006-09-27 16:03:31 -07006528static int tg3_poll_fw(struct tg3 *tp)
6529{
6530 int i;
6531 u32 val;
6532
Michael Chanb5d37722006-09-27 16:06:21 -07006533 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08006534 /* Wait up to 20ms for init done. */
6535 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07006536 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
6537 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08006538 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07006539 }
6540 return -ENODEV;
6541 }
6542
Michael Chan7a6f4362006-09-27 16:03:31 -07006543 /* Wait for firmware initialization to complete. */
6544 for (i = 0; i < 100000; i++) {
6545 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
6546 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
6547 break;
6548 udelay(10);
6549 }
6550
6551 /* Chip might not be fitted with firmware. Some Sun onboard
6552 * parts are configured like that. So don't signal the timeout
6553 * of the above loop as an error, but do report the lack of
6554 * running firmware once.
6555 */
6556 if (i >= 100000 &&
6557 !(tp->tg3_flags2 & TG3_FLG2_NO_FWARE_REPORTED)) {
6558 tp->tg3_flags2 |= TG3_FLG2_NO_FWARE_REPORTED;
6559
6560 printk(KERN_INFO PFX "%s: No firmware running.\n",
6561 tp->dev->name);
6562 }
6563
6564 return 0;
6565}
6566
Michael Chanee6a99b2007-07-18 21:49:10 -07006567/* Save PCI command register before chip reset */
6568static void tg3_save_pci_state(struct tg3 *tp)
6569{
Matt Carlson8a6eac92007-10-21 16:17:55 -07006570 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07006571}
6572
6573/* Restore PCI state after chip reset */
6574static void tg3_restore_pci_state(struct tg3 *tp)
6575{
6576 u32 val;
6577
6578 /* Re-enable indirect register accesses. */
6579 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
6580 tp->misc_host_ctrl);
6581
6582 /* Set MAX PCI retry to zero. */
6583 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
6584 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
6585 (tp->tg3_flags & TG3_FLAG_PCIX_MODE))
6586 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07006587 /* Allow reads and writes to the APE register and memory space. */
6588 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
6589 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
6590 PCISTATE_ALLOW_APE_SHMEM_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07006591 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
6592
Matt Carlson8a6eac92007-10-21 16:17:55 -07006593 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07006594
Matt Carlsonfcb389d2008-11-03 16:55:44 -08006595 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
6596 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
6597 pcie_set_readrq(tp->pdev, 4096);
6598 else {
6599 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
6600 tp->pci_cacheline_sz);
6601 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
6602 tp->pci_lat_timer);
6603 }
Michael Chan114342f2007-10-15 02:12:26 -07006604 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08006605
Michael Chanee6a99b2007-07-18 21:49:10 -07006606 /* Make sure PCI-X relaxed ordering bit is clear. */
Matt Carlson52f44902008-11-21 17:17:04 -08006607 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
Matt Carlson9974a352007-10-07 23:27:28 -07006608 u16 pcix_cmd;
6609
6610 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
6611 &pcix_cmd);
6612 pcix_cmd &= ~PCI_X_CMD_ERO;
6613 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
6614 pcix_cmd);
6615 }
Michael Chanee6a99b2007-07-18 21:49:10 -07006616
6617 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanee6a99b2007-07-18 21:49:10 -07006618
6619 /* Chip reset on 5780 will reset MSI enable bit,
6620 * so need to restore it.
6621 */
6622 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
6623 u16 ctrl;
6624
6625 pci_read_config_word(tp->pdev,
6626 tp->msi_cap + PCI_MSI_FLAGS,
6627 &ctrl);
6628 pci_write_config_word(tp->pdev,
6629 tp->msi_cap + PCI_MSI_FLAGS,
6630 ctrl | PCI_MSI_FLAGS_ENABLE);
6631 val = tr32(MSGINT_MODE);
6632 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
6633 }
6634 }
6635}
6636
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637static void tg3_stop_fw(struct tg3 *);
6638
6639/* tp->lock is held. */
6640static int tg3_chip_reset(struct tg3 *tp)
6641{
6642 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07006643 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00006644 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645
David S. Millerf49639e2006-06-09 11:58:36 -07006646 tg3_nvram_lock(tp);
6647
Matt Carlson77b483f2008-08-15 14:07:24 -07006648 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
6649
David S. Millerf49639e2006-06-09 11:58:36 -07006650 /* No matching tg3_nvram_unlock() after this because
6651 * chip reset below will undo the nvram lock.
6652 */
6653 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654
Michael Chanee6a99b2007-07-18 21:49:10 -07006655 /* GRC_MISC_CFG core clock reset will clear the memory
6656 * enable bit in PCI register 4 and the MSI enable bit
6657 * on some chips, so we save relevant registers here.
6658 */
6659 tg3_save_pci_state(tp);
6660
Michael Chand9ab5ad2006-03-20 22:27:35 -08006661 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08006662 (tp->tg3_flags3 & TG3_FLG3_5755_PLUS))
Michael Chand9ab5ad2006-03-20 22:27:35 -08006663 tw32(GRC_FASTBOOT_PC, 0);
6664
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665 /*
6666 * We must avoid the readl() that normally takes place.
6667 * It locks machines, causes machine checks, and other
6668 * fun things. So, temporarily disable the 5701
6669 * hardware workaround, while we do the reset.
6670 */
Michael Chan1ee582d2005-08-09 20:16:46 -07006671 write_op = tp->write32;
6672 if (write_op == tg3_write_flush_reg32)
6673 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674
Michael Chand18edcb2007-03-24 20:57:11 -07006675 /* Prevent the irq handler from reading or writing PCI registers
6676 * during chip reset when the memory enable bit in the PCI command
6677 * register may be cleared. The chip does not generate interrupt
6678 * at this time, but the irq handler may still be called due to irq
6679 * sharing or irqpoll.
6680 */
6681 tp->tg3_flags |= TG3_FLAG_CHIP_RESETTING;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006682 for (i = 0; i < tp->irq_cnt; i++) {
6683 struct tg3_napi *tnapi = &tp->napi[i];
6684 if (tnapi->hw_status) {
6685 tnapi->hw_status->status = 0;
6686 tnapi->hw_status->status_tag = 0;
6687 }
6688 tnapi->last_tag = 0;
6689 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07006690 }
Michael Chand18edcb2007-03-24 20:57:11 -07006691 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00006692
6693 for (i = 0; i < tp->irq_cnt; i++)
6694 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07006695
Matt Carlson255ca312009-08-25 10:07:27 +00006696 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
6697 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
6698 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
6699 }
6700
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701 /* do the reset */
6702 val = GRC_MISC_CFG_CORECLK_RESET;
6703
6704 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
6705 if (tr32(0x7e2c) == 0x60) {
6706 tw32(0x7e2c, 0x20);
6707 }
6708 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
6709 tw32(GRC_MISC_CFG, (1 << 29));
6710 val |= (1 << 29);
6711 }
6712 }
6713
Michael Chanb5d37722006-09-27 16:06:21 -07006714 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
6715 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
6716 tw32(GRC_VCPU_EXT_CTRL,
6717 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
6718 }
6719
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
6721 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
6722 tw32(GRC_MISC_CFG, val);
6723
Michael Chan1ee582d2005-08-09 20:16:46 -07006724 /* restore 5701 hardware bug workaround write method */
6725 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726
6727 /* Unfortunately, we have to delay before the PCI read back.
6728 * Some 575X chips even will not respond to a PCI cfg access
6729 * when the reset command is given to the chip.
6730 *
6731 * How do these hardware designers expect things to work
6732 * properly if the PCI write is posted for a long period
6733 * of time? It is always necessary to have some method by
6734 * which a register read back can occur to push the write
6735 * out which does the reset.
6736 *
6737 * For most tg3 variants the trick below was working.
6738 * Ho hum...
6739 */
6740 udelay(120);
6741
6742 /* Flush PCI posted writes. The normal MMIO registers
6743 * are inaccessible at this time so this is the only
6744 * way to make this reliably (actually, this is no longer
6745 * the case, see above). I tried to use indirect
6746 * register read/write but this upset some 5701 variants.
6747 */
6748 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
6749
6750 udelay(120);
6751
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006752 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) && tp->pcie_cap) {
Matt Carlsone7126992009-08-25 10:08:16 +00006753 u16 val16;
6754
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
6756 int i;
6757 u32 cfg_val;
6758
6759 /* Wait for link training to complete. */
6760 for (i = 0; i < 5000; i++)
6761 udelay(100);
6762
6763 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
6764 pci_write_config_dword(tp->pdev, 0xc4,
6765 cfg_val | (1 << 15));
6766 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006767
Matt Carlsone7126992009-08-25 10:08:16 +00006768 /* Clear the "no snoop" and "relaxed ordering" bits. */
6769 pci_read_config_word(tp->pdev,
6770 tp->pcie_cap + PCI_EXP_DEVCTL,
6771 &val16);
6772 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
6773 PCI_EXP_DEVCTL_NOSNOOP_EN);
6774 /*
6775 * Older PCIe devices only support the 128 byte
6776 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006777 */
Matt Carlsone7126992009-08-25 10:08:16 +00006778 if (!(tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
6779 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784))
6780 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006781 pci_write_config_word(tp->pdev,
6782 tp->pcie_cap + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00006783 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006784
6785 pcie_set_readrq(tp->pdev, 4096);
6786
6787 /* Clear error status */
6788 pci_write_config_word(tp->pdev,
6789 tp->pcie_cap + PCI_EXP_DEVSTA,
6790 PCI_EXP_DEVSTA_CED |
6791 PCI_EXP_DEVSTA_NFED |
6792 PCI_EXP_DEVSTA_FED |
6793 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794 }
6795
Michael Chanee6a99b2007-07-18 21:49:10 -07006796 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797
Michael Chand18edcb2007-03-24 20:57:11 -07006798 tp->tg3_flags &= ~TG3_FLAG_CHIP_RESETTING;
6799
Michael Chanee6a99b2007-07-18 21:49:10 -07006800 val = 0;
6801 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chan4cf78e42005-07-25 12:29:19 -07006802 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07006803 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804
6805 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
6806 tg3_stop_fw(tp);
6807 tw32(0x5000, 0x400);
6808 }
6809
6810 tw32(GRC_MODE, tp->grc_mode);
6811
6812 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01006813 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814
6815 tw32(0xc4, val | (1 << 15));
6816 }
6817
6818 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
6819 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
6820 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
6821 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
6822 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
6823 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
6824 }
6825
6826 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
6827 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
6828 tw32_f(MAC_MODE, tp->mac_mode);
Michael Chan747e8f82005-07-25 12:33:22 -07006829 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
6830 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
6831 tw32_f(MAC_MODE, tp->mac_mode);
Matt Carlson3bda1252008-08-15 14:08:22 -07006832 } else if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
6833 tp->mac_mode &= (MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN);
6834 if (tp->mac_mode & MAC_MODE_APE_TX_EN)
6835 tp->mac_mode |= MAC_MODE_TDE_ENABLE;
6836 tw32_f(MAC_MODE, tp->mac_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837 } else
6838 tw32_f(MAC_MODE, 0);
6839 udelay(40);
6840
Matt Carlson77b483f2008-08-15 14:07:24 -07006841 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
6842
Michael Chan7a6f4362006-09-27 16:03:31 -07006843 err = tg3_poll_fw(tp);
6844 if (err)
6845 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846
Matt Carlson0a9140c2009-08-28 12:27:50 +00006847 tg3_mdio_start(tp);
6848
Matt Carlson52cdf852009-11-02 14:25:06 +00006849 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
6850 u8 phy_addr;
6851
6852 phy_addr = tp->phy_addr;
6853 tp->phy_addr = TG3_PHY_PCIE_ADDR;
6854
6855 tg3_writephy(tp, TG3_PCIEPHY_BLOCK_ADDR,
6856 TG3_PCIEPHY_TXB_BLK << TG3_PCIEPHY_BLOCK_SHIFT);
6857 val = TG3_PCIEPHY_TX0CTRL1_TXOCM | TG3_PCIEPHY_TX0CTRL1_RDCTL |
6858 TG3_PCIEPHY_TX0CTRL1_TXCMV | TG3_PCIEPHY_TX0CTRL1_TKSEL |
6859 TG3_PCIEPHY_TX0CTRL1_NB_EN;
6860 tg3_writephy(tp, TG3_PCIEPHY_TX0CTRL1, val);
6861 udelay(10);
6862
6863 tg3_writephy(tp, TG3_PCIEPHY_BLOCK_ADDR,
6864 TG3_PCIEPHY_XGXS_BLK1 << TG3_PCIEPHY_BLOCK_SHIFT);
6865 val = TG3_PCIEPHY_PWRMGMT4_LOWPWR_EN |
6866 TG3_PCIEPHY_PWRMGMT4_L1PLLPD_EN;
6867 tg3_writephy(tp, TG3_PCIEPHY_PWRMGMT4, val);
6868 udelay(10);
6869
6870 tp->phy_addr = phy_addr;
6871 }
6872
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00006874 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
6875 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
6876 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01006877 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878
6879 tw32(0x7c00, val | (1 << 25));
6880 }
6881
6882 /* Reprobe ASF enable state. */
6883 tp->tg3_flags &= ~TG3_FLAG_ENABLE_ASF;
6884 tp->tg3_flags2 &= ~TG3_FLG2_ASF_NEW_HANDSHAKE;
6885 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
6886 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
6887 u32 nic_cfg;
6888
6889 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
6890 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
6891 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
Matt Carlson4ba526c2008-08-15 14:10:04 -07006892 tp->last_event_jiffies = jiffies;
John W. Linvillecbf46852005-04-21 17:01:29 -07006893 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
6895 }
6896 }
6897
6898 return 0;
6899}
6900
6901/* tp->lock is held. */
6902static void tg3_stop_fw(struct tg3 *tp)
6903{
Matt Carlson0d3031d2007-10-10 18:02:43 -07006904 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
6905 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07006906 /* Wait for RX cpu to ACK the previous event. */
6907 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006908
6909 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
Matt Carlson4ba526c2008-08-15 14:10:04 -07006910
6911 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912
Matt Carlson7c5026a2008-05-02 16:49:29 -07006913 /* Wait for RX cpu to ACK this event. */
6914 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915 }
6916}
6917
6918/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07006919static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920{
6921 int err;
6922
6923 tg3_stop_fw(tp);
6924
Michael Chan944d9802005-05-29 14:57:48 -07006925 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006927 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928 err = tg3_chip_reset(tp);
6929
Matt Carlsondaba2a62009-04-20 06:58:52 +00006930 __tg3_set_mac_addr(tp, 0);
6931
Michael Chan944d9802005-05-29 14:57:48 -07006932 tg3_write_sig_legacy(tp, kind);
6933 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934
6935 if (err)
6936 return err;
6937
6938 return 0;
6939}
6940
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941#define RX_CPU_SCRATCH_BASE 0x30000
6942#define RX_CPU_SCRATCH_SIZE 0x04000
6943#define TX_CPU_SCRATCH_BASE 0x34000
6944#define TX_CPU_SCRATCH_SIZE 0x04000
6945
6946/* tp->lock is held. */
6947static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
6948{
6949 int i;
6950
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02006951 BUG_ON(offset == TX_CPU_BASE &&
6952 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953
Michael Chanb5d37722006-09-27 16:06:21 -07006954 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
6955 u32 val = tr32(GRC_VCPU_EXT_CTRL);
6956
6957 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
6958 return 0;
6959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960 if (offset == RX_CPU_BASE) {
6961 for (i = 0; i < 10000; i++) {
6962 tw32(offset + CPU_STATE, 0xffffffff);
6963 tw32(offset + CPU_MODE, CPU_MODE_HALT);
6964 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
6965 break;
6966 }
6967
6968 tw32(offset + CPU_STATE, 0xffffffff);
6969 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
6970 udelay(10);
6971 } else {
6972 for (i = 0; i < 10000; i++) {
6973 tw32(offset + CPU_STATE, 0xffffffff);
6974 tw32(offset + CPU_MODE, CPU_MODE_HALT);
6975 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
6976 break;
6977 }
6978 }
6979
6980 if (i >= 10000) {
6981 printk(KERN_ERR PFX "tg3_reset_cpu timed out for %s, "
6982 "and %s CPU\n",
6983 tp->dev->name,
6984 (offset == RX_CPU_BASE ? "RX" : "TX"));
6985 return -ENODEV;
6986 }
Michael Chanec41c7d2006-01-17 02:40:55 -08006987
6988 /* Clear firmware's nvram arbitration. */
6989 if (tp->tg3_flags & TG3_FLAG_NVRAM)
6990 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991 return 0;
6992}
6993
6994struct fw_info {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08006995 unsigned int fw_base;
6996 unsigned int fw_len;
6997 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998};
6999
7000/* tp->lock is held. */
7001static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
7002 int cpu_scratch_size, struct fw_info *info)
7003{
Michael Chanec41c7d2006-01-17 02:40:55 -08007004 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005 void (*write_op)(struct tg3 *, u32, u32);
7006
7007 if (cpu_base == TX_CPU_BASE &&
7008 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7009 printk(KERN_ERR PFX "tg3_load_firmware_cpu: Trying to load "
7010 "TX cpu firmware on %s which is 5705.\n",
7011 tp->dev->name);
7012 return -EINVAL;
7013 }
7014
7015 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
7016 write_op = tg3_write_mem;
7017 else
7018 write_op = tg3_write_indirect_reg32;
7019
Michael Chan1b628152005-05-29 14:59:49 -07007020 /* It is possible that bootcode is still loading at this point.
7021 * Get the nvram lock first before halting the cpu.
7022 */
Michael Chanec41c7d2006-01-17 02:40:55 -08007023 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08007025 if (!lock_err)
7026 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027 if (err)
7028 goto out;
7029
7030 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
7031 write_op(tp, cpu_scratch_base + i, 0);
7032 tw32(cpu_base + CPU_STATE, 0xffffffff);
7033 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007034 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035 write_op(tp, (cpu_scratch_base +
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007036 (info->fw_base & 0xffff) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037 (i * sizeof(u32))),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007038 be32_to_cpu(info->fw_data[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039
7040 err = 0;
7041
7042out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007043 return err;
7044}
7045
7046/* tp->lock is held. */
7047static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
7048{
7049 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007050 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051 int err, i;
7052
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007053 fw_data = (void *)tp->fw->data;
7054
7055 /* Firmware blob starts with version numbers, followed by
7056 start address and length. We are setting complete length.
7057 length = end_address_of_bss - start_address_of_text.
7058 Remainder is the blob to be loaded contiguously
7059 from start address. */
7060
7061 info.fw_base = be32_to_cpu(fw_data[1]);
7062 info.fw_len = tp->fw->size - 12;
7063 info.fw_data = &fw_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064
7065 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
7066 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
7067 &info);
7068 if (err)
7069 return err;
7070
7071 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
7072 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
7073 &info);
7074 if (err)
7075 return err;
7076
7077 /* Now startup only the RX cpu. */
7078 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007079 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080
7081 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007082 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083 break;
7084 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7085 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007086 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087 udelay(1000);
7088 }
7089 if (i >= 5) {
7090 printk(KERN_ERR PFX "tg3_load_firmware fails for %s "
7091 "to set RX CPU PC, is %08x should be %08x\n",
7092 tp->dev->name, tr32(RX_CPU_BASE + CPU_PC),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007093 info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094 return -ENODEV;
7095 }
7096 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7097 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
7098
7099 return 0;
7100}
7101
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102/* 5705 needs a special version of the TSO firmware. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103
7104/* tp->lock is held. */
7105static int tg3_load_tso_firmware(struct tg3 *tp)
7106{
7107 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007108 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
7110 int err, i;
7111
7112 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
7113 return 0;
7114
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007115 fw_data = (void *)tp->fw->data;
7116
7117 /* Firmware blob starts with version numbers, followed by
7118 start address and length. We are setting complete length.
7119 length = end_address_of_bss - start_address_of_text.
7120 Remainder is the blob to be loaded contiguously
7121 from start address. */
7122
7123 info.fw_base = be32_to_cpu(fw_data[1]);
7124 cpu_scratch_size = tp->fw_len;
7125 info.fw_len = tp->fw->size - 12;
7126 info.fw_data = &fw_data[3];
7127
Linus Torvalds1da177e2005-04-16 15:20:36 -07007128 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007129 cpu_base = RX_CPU_BASE;
7130 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007131 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132 cpu_base = TX_CPU_BASE;
7133 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
7134 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
7135 }
7136
7137 err = tg3_load_firmware_cpu(tp, cpu_base,
7138 cpu_scratch_base, cpu_scratch_size,
7139 &info);
7140 if (err)
7141 return err;
7142
7143 /* Now startup the cpu. */
7144 tw32(cpu_base + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007145 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146
7147 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007148 if (tr32(cpu_base + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149 break;
7150 tw32(cpu_base + CPU_STATE, 0xffffffff);
7151 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007152 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007153 udelay(1000);
7154 }
7155 if (i >= 5) {
7156 printk(KERN_ERR PFX "tg3_load_tso_firmware fails for %s "
7157 "to set CPU PC, is %08x should be %08x\n",
7158 tp->dev->name, tr32(cpu_base + CPU_PC),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007159 info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007160 return -ENODEV;
7161 }
7162 tw32(cpu_base + CPU_STATE, 0xffffffff);
7163 tw32_f(cpu_base + CPU_MODE, 0x00000000);
7164 return 0;
7165}
7166
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168static int tg3_set_mac_addr(struct net_device *dev, void *p)
7169{
7170 struct tg3 *tp = netdev_priv(dev);
7171 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007172 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173
Michael Chanf9804dd2005-09-27 12:13:10 -07007174 if (!is_valid_ether_addr(addr->sa_data))
7175 return -EINVAL;
7176
Linus Torvalds1da177e2005-04-16 15:20:36 -07007177 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7178
Michael Chane75f7c92006-03-20 21:33:26 -08007179 if (!netif_running(dev))
7180 return 0;
7181
Michael Chan58712ef2006-04-29 18:58:01 -07007182 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007183 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007184
Michael Chan986e0ae2007-05-05 12:10:20 -07007185 addr0_high = tr32(MAC_ADDR_0_HIGH);
7186 addr0_low = tr32(MAC_ADDR_0_LOW);
7187 addr1_high = tr32(MAC_ADDR_1_HIGH);
7188 addr1_low = tr32(MAC_ADDR_1_LOW);
7189
7190 /* Skip MAC addr 1 if ASF is using it. */
7191 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7192 !(addr1_high == 0 && addr1_low == 0))
7193 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007194 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007195 spin_lock_bh(&tp->lock);
7196 __tg3_set_mac_addr(tp, skip_mac_1);
7197 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007198
Michael Chanb9ec6c12006-07-25 16:37:27 -07007199 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200}
7201
7202/* tp->lock is held. */
7203static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7204 dma_addr_t mapping, u32 maxlen_flags,
7205 u32 nic_addr)
7206{
7207 tg3_write_mem(tp,
7208 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7209 ((u64) mapping >> 32));
7210 tg3_write_mem(tp,
7211 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7212 ((u64) mapping & 0xffffffff));
7213 tg3_write_mem(tp,
7214 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7215 maxlen_flags);
7216
7217 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7218 tg3_write_mem(tp,
7219 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7220 nic_addr);
7221}
7222
7223static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007224static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007225{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007226 int i;
7227
7228 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSIX)) {
7229 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7230 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7231 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
7232
7233 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7234 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7235 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7236 } else {
7237 tw32(HOSTCC_TXCOL_TICKS, 0);
7238 tw32(HOSTCC_TXMAX_FRAMES, 0);
7239 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
7240
7241 tw32(HOSTCC_RXCOL_TICKS, 0);
7242 tw32(HOSTCC_RXMAX_FRAMES, 0);
7243 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07007244 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007245
David S. Miller15f98502005-05-18 22:49:26 -07007246 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7247 u32 val = ec->stats_block_coalesce_usecs;
7248
Matt Carlsonb6080e12009-09-01 13:12:00 +00007249 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
7250 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
7251
David S. Miller15f98502005-05-18 22:49:26 -07007252 if (!netif_carrier_ok(tp->dev))
7253 val = 0;
7254
7255 tw32(HOSTCC_STAT_COAL_TICKS, val);
7256 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007257
7258 for (i = 0; i < tp->irq_cnt - 1; i++) {
7259 u32 reg;
7260
7261 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
7262 tw32(reg, ec->rx_coalesce_usecs);
7263 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
7264 tw32(reg, ec->tx_coalesce_usecs);
7265 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
7266 tw32(reg, ec->rx_max_coalesced_frames);
7267 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
7268 tw32(reg, ec->tx_max_coalesced_frames);
7269 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
7270 tw32(reg, ec->rx_max_coalesced_frames_irq);
7271 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
7272 tw32(reg, ec->tx_max_coalesced_frames_irq);
7273 }
7274
7275 for (; i < tp->irq_max - 1; i++) {
7276 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
7277 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
7278 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
7279 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
7280 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7281 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7282 }
David S. Miller15f98502005-05-18 22:49:26 -07007283}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007284
7285/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00007286static void tg3_rings_reset(struct tg3 *tp)
7287{
7288 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007289 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007290 struct tg3_napi *tnapi = &tp->napi[0];
7291
7292 /* Disable all transmit rings but the first. */
7293 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7294 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
7295 else
7296 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7297
7298 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7299 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
7300 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
7301 BDINFO_FLAGS_DISABLED);
7302
7303
7304 /* Disable all receive return rings but the first. */
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007305 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
7306 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
7307 else if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007308 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
7309 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
7310 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
7311 else
7312 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7313
7314 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7315 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
7316 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
7317 BDINFO_FLAGS_DISABLED);
7318
7319 /* Disable interrupts */
7320 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
7321
7322 /* Zero mailbox registers. */
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007323 if (tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX) {
7324 for (i = 1; i < TG3_IRQ_MAX_VECS; i++) {
7325 tp->napi[i].tx_prod = 0;
7326 tp->napi[i].tx_cons = 0;
7327 tw32_mailbox(tp->napi[i].prodmbox, 0);
7328 tw32_rx_mbox(tp->napi[i].consmbox, 0);
7329 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
7330 }
7331 } else {
7332 tp->napi[0].tx_prod = 0;
7333 tp->napi[0].tx_cons = 0;
7334 tw32_mailbox(tp->napi[0].prodmbox, 0);
7335 tw32_rx_mbox(tp->napi[0].consmbox, 0);
7336 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007337
7338 /* Make sure the NIC-based send BD rings are disabled. */
7339 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7340 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
7341 for (i = 0; i < 16; i++)
7342 tw32_tx_mbox(mbox + i * 8, 0);
7343 }
7344
7345 txrcb = NIC_SRAM_SEND_RCB;
7346 rxrcb = NIC_SRAM_RCV_RET_RCB;
7347
7348 /* Clear status block in ram. */
7349 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7350
7351 /* Set status block DMA address */
7352 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7353 ((u64) tnapi->status_mapping >> 32));
7354 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7355 ((u64) tnapi->status_mapping & 0xffffffff));
7356
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007357 if (tnapi->tx_ring) {
7358 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7359 (TG3_TX_RING_SIZE <<
7360 BDINFO_FLAGS_MAXLEN_SHIFT),
7361 NIC_SRAM_TX_BUFFER_DESC);
7362 txrcb += TG3_BDINFO_SIZE;
7363 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007364
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007365 if (tnapi->rx_rcb) {
7366 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
7367 (TG3_RX_RCB_RING_SIZE(tp) <<
7368 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7369 rxrcb += TG3_BDINFO_SIZE;
7370 }
7371
7372 stblk = HOSTCC_STATBLCK_RING1;
7373
7374 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
7375 u64 mapping = (u64)tnapi->status_mapping;
7376 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
7377 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
7378
7379 /* Clear status block in ram. */
7380 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7381
7382 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7383 (TG3_TX_RING_SIZE <<
7384 BDINFO_FLAGS_MAXLEN_SHIFT),
7385 NIC_SRAM_TX_BUFFER_DESC);
7386
7387 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
7388 (TG3_RX_RCB_RING_SIZE(tp) <<
7389 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7390
7391 stblk += 8;
7392 txrcb += TG3_BDINFO_SIZE;
7393 rxrcb += TG3_BDINFO_SIZE;
7394 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007395}
7396
7397/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007398static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399{
7400 u32 val, rdmac_mode;
7401 int i, err, limit;
Matt Carlson21f581a2009-08-28 14:00:25 +00007402 struct tg3_rx_prodring_set *tpr = &tp->prodring[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403
7404 tg3_disable_ints(tp);
7405
7406 tg3_stop_fw(tp);
7407
7408 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
7409
7410 if (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) {
Michael Chane6de8ad2005-05-05 14:42:41 -07007411 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412 }
7413
Matt Carlsondd477002008-05-25 23:45:58 -07007414 if (reset_phy &&
7415 !(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB))
Michael Chand4d2c552006-03-20 17:47:20 -08007416 tg3_phy_reset(tp);
7417
Linus Torvalds1da177e2005-04-16 15:20:36 -07007418 err = tg3_chip_reset(tp);
7419 if (err)
7420 return err;
7421
7422 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
7423
Matt Carlsonbcb37f62008-11-03 16:52:09 -08007424 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007425 val = tr32(TG3_CPMU_CTRL);
7426 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
7427 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08007428
7429 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
7430 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
7431 val |= CPMU_LSPD_10MB_MACCLK_6_25;
7432 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
7433
7434 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
7435 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
7436 val |= CPMU_LNK_AWARE_MACCLK_6_25;
7437 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
7438
7439 val = tr32(TG3_CPMU_HST_ACC);
7440 val &= ~CPMU_HST_ACC_MACCLK_MASK;
7441 val |= CPMU_HST_ACC_MACCLK_6_25;
7442 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07007443 }
7444
Matt Carlson33466d92009-04-20 06:57:41 +00007445 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7446 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
7447 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
7448 PCIE_PWR_MGMT_L1_THRESH_4MS;
7449 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00007450
7451 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
7452 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
7453
7454 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00007455
Matt Carlsonf40386c2009-11-02 14:24:02 +00007456 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7457 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00007458 }
7459
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460 /* This works around an issue with Athlon chipsets on
7461 * B3 tigon3 silicon. This bit has no effect on any
7462 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07007463 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007464 */
Matt Carlson795d01c2007-10-07 23:28:17 -07007465 if (!(tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)) {
7466 if (!(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
7467 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
7468 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470
7471 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
7472 (tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
7473 val = tr32(TG3PCI_PCISTATE);
7474 val |= PCISTATE_RETRY_SAME_DMA;
7475 tw32(TG3PCI_PCISTATE, val);
7476 }
7477
Matt Carlson0d3031d2007-10-10 18:02:43 -07007478 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
7479 /* Allow reads and writes to the
7480 * APE register and memory space.
7481 */
7482 val = tr32(TG3PCI_PCISTATE);
7483 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
7484 PCISTATE_ALLOW_APE_SHMEM_WR;
7485 tw32(TG3PCI_PCISTATE, val);
7486 }
7487
Linus Torvalds1da177e2005-04-16 15:20:36 -07007488 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
7489 /* Enable some hw fixes. */
7490 val = tr32(TG3PCI_MSI_DATA);
7491 val |= (1 << 26) | (1 << 28) | (1 << 29);
7492 tw32(TG3PCI_MSI_DATA, val);
7493 }
7494
7495 /* Descriptor ring init may make accesses to the
7496 * NIC SRAM area to setup the TX descriptors, so we
7497 * can only do this after the hardware has been
7498 * successfully reset.
7499 */
Michael Chan32d8c572006-07-25 16:38:29 -07007500 err = tg3_init_rings(tp);
7501 if (err)
7502 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00007504 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
7505 val = tr32(TG3PCI_DMA_RW_CTRL) &
7506 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
7507 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
7508 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
7509 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007510 /* This value is determined during the probe time DMA
7511 * engine test, tg3_test_dma.
7512 */
7513 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
7514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515
7516 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
7517 GRC_MODE_4X_NIC_SEND_RINGS |
7518 GRC_MODE_NO_TX_PHDR_CSUM |
7519 GRC_MODE_NO_RX_PHDR_CSUM);
7520 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07007521
7522 /* Pseudo-header checksum is done by hardware logic and not
7523 * the offload processers, so make the chip do the pseudo-
7524 * header checksums on receive. For transmit it is more
7525 * convenient to do the pseudo-header checksum in software
7526 * as Linux does that on transmit for us in all cases.
7527 */
7528 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007529
7530 tw32(GRC_MODE,
7531 tp->grc_mode |
7532 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
7533
7534 /* Setup the timer prescalar register. Clock is always 66Mhz. */
7535 val = tr32(GRC_MISC_CFG);
7536 val &= ~0xff;
7537 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
7538 tw32(GRC_MISC_CFG, val);
7539
7540 /* Initialize MBUF/DESC pool. */
John W. Linvillecbf46852005-04-21 17:01:29 -07007541 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007542 /* Do nothing. */
7543 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
7544 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
7545 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
7546 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
7547 else
7548 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
7549 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
7550 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
7551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007552 else if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
7553 int fw_len;
7554
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007555 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007556 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
7557 tw32(BUFMGR_MB_POOL_ADDR,
7558 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
7559 tw32(BUFMGR_MB_POOL_SIZE,
7560 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
7561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007562
Michael Chan0f893dc2005-07-25 12:30:38 -07007563 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007564 tw32(BUFMGR_MB_RDMA_LOW_WATER,
7565 tp->bufmgr_config.mbuf_read_dma_low_water);
7566 tw32(BUFMGR_MB_MACRX_LOW_WATER,
7567 tp->bufmgr_config.mbuf_mac_rx_low_water);
7568 tw32(BUFMGR_MB_HIGH_WATER,
7569 tp->bufmgr_config.mbuf_high_water);
7570 } else {
7571 tw32(BUFMGR_MB_RDMA_LOW_WATER,
7572 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
7573 tw32(BUFMGR_MB_MACRX_LOW_WATER,
7574 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
7575 tw32(BUFMGR_MB_HIGH_WATER,
7576 tp->bufmgr_config.mbuf_high_water_jumbo);
7577 }
7578 tw32(BUFMGR_DMA_LOW_WATER,
7579 tp->bufmgr_config.dma_low_water);
7580 tw32(BUFMGR_DMA_HIGH_WATER,
7581 tp->bufmgr_config.dma_high_water);
7582
7583 tw32(BUFMGR_MODE, BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE);
7584 for (i = 0; i < 2000; i++) {
7585 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
7586 break;
7587 udelay(10);
7588 }
7589 if (i >= 2000) {
7590 printk(KERN_ERR PFX "tg3_reset_hw cannot enable BUFMGR for %s.\n",
7591 tp->dev->name);
7592 return -ENODEV;
7593 }
7594
7595 /* Setup replenish threshold. */
Michael Chanf92905d2006-06-29 20:14:29 -07007596 val = tp->rx_pending / 8;
7597 if (val == 0)
7598 val = 1;
7599 else if (val > tp->rx_std_max_post)
7600 val = tp->rx_std_max_post;
Michael Chanb5d37722006-09-27 16:06:21 -07007601 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7602 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
7603 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
7604
7605 if (val > (TG3_RX_INTERNAL_RING_SZ_5906 / 2))
7606 val = TG3_RX_INTERNAL_RING_SZ_5906 / 2;
7607 }
Michael Chanf92905d2006-06-29 20:14:29 -07007608
7609 tw32(RCVBDI_STD_THRESH, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610
7611 /* Initialize TG3_BDINFO's at:
7612 * RCVDBDI_STD_BD: standard eth size rx ring
7613 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
7614 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
7615 *
7616 * like so:
7617 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
7618 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
7619 * ring attribute flags
7620 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
7621 *
7622 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
7623 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
7624 *
7625 * The size of each ring is fixed in the firmware, but the location is
7626 * configurable.
7627 */
7628 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00007629 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00007631 ((u64) tpr->rx_std_mapping & 0xffffffff));
Matt Carlson87668d32009-11-13 13:03:34 +00007632 if (!(tp->tg3_flags3 & TG3_FLG3_5755_PLUS))
7633 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
7634 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007636 /* Disable the mini ring */
7637 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
7639 BDINFO_FLAGS_DISABLED);
7640
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007641 /* Program the jumbo buffer descriptor ring control
7642 * blocks on those devices that have them.
7643 */
Matt Carlson8f666b02009-08-28 13:58:24 +00007644 if ((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) &&
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007645 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646 /* Setup replenish threshold. */
7647 tw32(RCVBDI_JUMBO_THRESH, tp->rx_jumbo_pending / 8);
7648
Michael Chan0f893dc2005-07-25 12:30:38 -07007649 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007650 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00007651 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007652 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00007653 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlson79ed5ac2009-08-28 14:00:55 +00007655 (RX_JUMBO_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT) |
7656 BDINFO_FLAGS_USE_EXT_RECV);
Matt Carlson87668d32009-11-13 13:03:34 +00007657 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7658 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
7659 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660 } else {
7661 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
7662 BDINFO_FLAGS_DISABLED);
7663 }
7664
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007665 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
7666 val = (RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT) |
7667 (RX_STD_MAX_SIZE << 2);
7668 else
7669 val = RX_STD_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007670 } else
7671 val = RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT;
7672
7673 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674
Matt Carlson411da642009-11-13 13:03:46 +00007675 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00007676 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
Matt Carlson411da642009-11-13 13:03:46 +00007678 tpr->rx_jmb_prod_idx = (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) ?
Matt Carlson21f581a2009-08-28 14:00:25 +00007679 tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00007680 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007681
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007682 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
7683 tw32(STD_REPLENISH_LWM, 32);
7684 tw32(JMB_REPLENISH_LWM, 16);
7685 }
7686
Matt Carlson2d31eca2009-09-01 12:53:31 +00007687 tg3_rings_reset(tp);
7688
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07007690 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691
7692 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00007693 tw32(MAC_RX_MTU_SIZE,
7694 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695
7696 /* The slot time is changed by tg3_setup_phy if we
7697 * run at gigabit with half duplex.
7698 */
7699 tw32(MAC_TX_LENGTHS,
7700 (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
7701 (6 << TX_LENGTHS_IPG_SHIFT) |
7702 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
7703
7704 /* Receive rules. */
7705 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
7706 tw32(RCVLPC_CONFIG, 0x0181);
7707
7708 /* Calculate RDMAC_MODE setting early, we need it to determine
7709 * the RCVLPC_STATE_ENABLE mask.
7710 */
7711 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
7712 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
7713 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
7714 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
7715 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07007716
Matt Carlson57e69832008-05-25 23:48:31 -07007717 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08007718 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
7719 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07007720 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
7721 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
7722 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
7723
Michael Chan85e94ce2005-04-21 17:05:28 -07007724 /* If statement applies to 5705 and 5750 PCI devices only */
7725 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
7726 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
7727 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007728 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07007729 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
7731 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
7732 !(tp->tg3_flags2 & TG3_FLG2_IS_5788)) {
7733 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
7734 }
7735 }
7736
Michael Chan85e94ce2005-04-21 17:05:28 -07007737 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
7738 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
7739
Linus Torvalds1da177e2005-04-16 15:20:36 -07007740 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
Matt Carlson027455a2008-12-21 20:19:30 -08007741 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
7742
Matt Carlsone849cdc2009-11-13 13:03:38 +00007743 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
7744 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08007745 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
7746 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007747
7748 /* Receive/send statistics. */
Michael Chan16613942006-06-29 20:15:13 -07007749 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
7750 val = tr32(RCVLPC_STATS_ENABLE);
7751 val &= ~RCVLPC_STATSENAB_DACK_FIX;
7752 tw32(RCVLPC_STATS_ENABLE, val);
7753 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
7754 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755 val = tr32(RCVLPC_STATS_ENABLE);
7756 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
7757 tw32(RCVLPC_STATS_ENABLE, val);
7758 } else {
7759 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
7760 }
7761 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
7762 tw32(SNDDATAI_STATSENAB, 0xffffff);
7763 tw32(SNDDATAI_STATSCTRL,
7764 (SNDDATAI_SCTRL_ENABLE |
7765 SNDDATAI_SCTRL_FASTUPD));
7766
7767 /* Setup host coalescing engine. */
7768 tw32(HOSTCC_MODE, 0);
7769 for (i = 0; i < 2000; i++) {
7770 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
7771 break;
7772 udelay(10);
7773 }
7774
Michael Chand244c892005-07-05 14:42:33 -07007775 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007776
Linus Torvalds1da177e2005-04-16 15:20:36 -07007777 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7778 /* Status/statistics block address. See tg3_timer,
7779 * the tg3_periodic_fetch_stats call there, and
7780 * tg3_get_stats to see how this works for 5705/5750 chips.
7781 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007782 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7783 ((u64) tp->stats_mapping >> 32));
7784 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7785 ((u64) tp->stats_mapping & 0xffffffff));
7786 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00007787
Linus Torvalds1da177e2005-04-16 15:20:36 -07007788 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00007789
7790 /* Clear statistics and status block memory areas */
7791 for (i = NIC_SRAM_STATS_BLK;
7792 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
7793 i += sizeof(u32)) {
7794 tg3_write_mem(tp, i, 0);
7795 udelay(40);
7796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797 }
7798
7799 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
7800
7801 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
7802 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
7803 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7804 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
7805
Michael Chanc94e3942005-09-27 12:12:42 -07007806 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
7807 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
7808 /* reset to prevent losing 1st rx packet intermittently */
7809 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7810 udelay(10);
7811 }
7812
Matt Carlson3bda1252008-08-15 14:08:22 -07007813 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
7814 tp->mac_mode &= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
7815 else
7816 tp->mac_mode = 0;
7817 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07007818 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07007819 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
7820 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
7821 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
7822 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007823 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
7824 udelay(40);
7825
Michael Chan314fba32005-04-21 17:07:04 -07007826 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Michael Chan9d26e212006-12-07 00:21:14 -08007827 * If TG3_FLG2_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07007828 * register to preserve the GPIO settings for LOMs. The GPIOs,
7829 * whether used as inputs or outputs, are set by boot code after
7830 * reset.
7831 */
Michael Chan9d26e212006-12-07 00:21:14 -08007832 if (!(tp->tg3_flags2 & TG3_FLG2_IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07007833 u32 gpio_mask;
7834
Michael Chan9d26e212006-12-07 00:21:14 -08007835 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
7836 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
7837 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07007838
7839 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
7840 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
7841 GRC_LCLCTRL_GPIO_OUTPUT3;
7842
Michael Chanaf36e6b2006-03-23 01:28:06 -08007843 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
7844 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
7845
Gary Zambranoaaf84462007-05-05 11:51:45 -07007846 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07007847 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
7848
7849 /* GPIO1 must be driven high for eeprom write protect */
Michael Chan9d26e212006-12-07 00:21:14 -08007850 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT)
7851 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
7852 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07007853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007854 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
7855 udelay(100);
7856
Matt Carlsonbaf8a942009-09-01 13:13:00 +00007857 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX) {
7858 val = tr32(MSGINT_MODE);
7859 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
7860 tw32(MSGINT_MODE, val);
7861 }
7862
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7864 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
7865 udelay(40);
7866 }
7867
7868 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
7869 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
7870 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
7871 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
7872 WDMAC_MODE_LNGREAD_ENAB);
7873
Michael Chan85e94ce2005-04-21 17:05:28 -07007874 /* If statement applies to 5705 and 5750 PCI devices only */
7875 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
7876 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
7877 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) {
Matt Carlson29ea0952009-08-25 10:07:54 +00007878 if ((tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
7880 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
7881 /* nothing */
7882 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
7883 !(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
7884 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
7885 val |= WDMAC_MODE_RX_ACCEL;
7886 }
7887 }
7888
Michael Chand9ab5ad2006-03-20 22:27:35 -08007889 /* Enable host coalescing bug fix */
Matt Carlson321d32a2008-11-21 17:22:19 -08007890 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Matt Carlsonf51f3562008-05-25 23:45:08 -07007891 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad2006-03-20 22:27:35 -08007892
Matt Carlson788a0352009-11-02 14:26:03 +00007893 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
7894 val |= WDMAC_MODE_BURST_ALL_DATA;
7895
Linus Torvalds1da177e2005-04-16 15:20:36 -07007896 tw32_f(WDMAC_MODE, val);
7897 udelay(40);
7898
Matt Carlson9974a352007-10-07 23:27:28 -07007899 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
7900 u16 pcix_cmd;
7901
7902 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7903 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07007905 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
7906 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007907 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07007908 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
7909 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007910 }
Matt Carlson9974a352007-10-07 23:27:28 -07007911 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7912 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007913 }
7914
7915 tw32_f(RDMAC_MODE, rdmac_mode);
7916 udelay(40);
7917
7918 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
7919 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7920 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07007921
7922 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
7923 tw32(SNDDATAC_MODE,
7924 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
7925 else
7926 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
7927
Linus Torvalds1da177e2005-04-16 15:20:36 -07007928 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
7929 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
7930 tw32(RCVDBDI_MODE, RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ);
7931 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007932 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
7933 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00007934 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
7935 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
7936 val |= SNDBDI_MODE_MULTI_TXQ_EN;
7937 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007938 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
7939
7940 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
7941 err = tg3_load_5701_a0_firmware_fix(tp);
7942 if (err)
7943 return err;
7944 }
7945
Linus Torvalds1da177e2005-04-16 15:20:36 -07007946 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
7947 err = tg3_load_tso_firmware(tp);
7948 if (err)
7949 return err;
7950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007951
7952 tp->tx_mode = TX_MODE_ENABLE;
7953 tw32_f(MAC_TX_MODE, tp->tx_mode);
7954 udelay(100);
7955
Matt Carlsonbaf8a942009-09-01 13:13:00 +00007956 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS) {
7957 u32 reg = MAC_RSS_INDIR_TBL_0;
7958 u8 *ent = (u8 *)&val;
7959
7960 /* Setup the indirection table */
7961 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
7962 int idx = i % sizeof(val);
7963
7964 ent[idx] = i % (tp->irq_cnt - 1);
7965 if (idx == sizeof(val) - 1) {
7966 tw32(reg, val);
7967 reg += 4;
7968 }
7969 }
7970
7971 /* Setup the "secret" hash key. */
7972 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
7973 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
7974 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
7975 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
7976 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
7977 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
7978 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
7979 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
7980 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
7981 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
7982 }
7983
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984 tp->rx_mode = RX_MODE_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08007985 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Michael Chanaf36e6b2006-03-23 01:28:06 -08007986 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
7987
Matt Carlsonbaf8a942009-09-01 13:13:00 +00007988 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS)
7989 tp->rx_mode |= RX_MODE_RSS_ENABLE |
7990 RX_MODE_RSS_ITBL_HASH_BITS_7 |
7991 RX_MODE_RSS_IPV6_HASH_EN |
7992 RX_MODE_RSS_TCP_IPV6_HASH_EN |
7993 RX_MODE_RSS_IPV4_HASH_EN |
7994 RX_MODE_RSS_TCP_IPV4_HASH_EN;
7995
Linus Torvalds1da177e2005-04-16 15:20:36 -07007996 tw32_f(MAC_RX_MODE, tp->rx_mode);
7997 udelay(10);
7998
Linus Torvalds1da177e2005-04-16 15:20:36 -07007999 tw32(MAC_LED_CTRL, tp->led_ctrl);
8000
8001 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Michael Chanc94e3942005-09-27 12:12:42 -07008002 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8004 udelay(10);
8005 }
8006 tw32_f(MAC_RX_MODE, tp->rx_mode);
8007 udelay(10);
8008
8009 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
8010 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
8011 !(tp->tg3_flags2 & TG3_FLG2_SERDES_PREEMPHASIS)) {
8012 /* Set drive transmission level to 1.2V */
8013 /* only if the signal pre-emphasis bit is not set */
8014 val = tr32(MAC_SERDES_CFG);
8015 val &= 0xfffff000;
8016 val |= 0x880;
8017 tw32(MAC_SERDES_CFG, val);
8018 }
8019 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8020 tw32(MAC_SERDES_CFG, 0x616000);
8021 }
8022
8023 /* Prevent chip from dropping frames when flow control
8024 * is enabled.
8025 */
8026 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, 2);
8027
8028 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
8029 (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
8030 /* Use hardware link auto-negotiation */
8031 tp->tg3_flags2 |= TG3_FLG2_HW_AUTONEG;
8032 }
8033
Michael Chand4d2c552006-03-20 17:47:20 -08008034 if ((tp->tg3_flags2 & TG3_FLG2_MII_SERDES) &&
8035 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
8036 u32 tmp;
8037
8038 tmp = tr32(SERDES_RX_CTRL);
8039 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
8040 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
8041 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
8042 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8043 }
8044
Matt Carlsondd477002008-05-25 23:45:58 -07008045 if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
8046 if (tp->link_config.phy_is_low_power) {
8047 tp->link_config.phy_is_low_power = 0;
8048 tp->link_config.speed = tp->link_config.orig_speed;
8049 tp->link_config.duplex = tp->link_config.orig_duplex;
8050 tp->link_config.autoneg = tp->link_config.orig_autoneg;
8051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008052
Matt Carlsondd477002008-05-25 23:45:58 -07008053 err = tg3_setup_phy(tp, 0);
8054 if (err)
8055 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008056
Matt Carlsondd477002008-05-25 23:45:58 -07008057 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
Matt Carlson7f97a4b2009-08-25 10:10:03 +00008058 !(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07008059 u32 tmp;
8060
8061 /* Clear CRC stats. */
8062 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
8063 tg3_writephy(tp, MII_TG3_TEST1,
8064 tmp | MII_TG3_TEST1_CRC_EN);
8065 tg3_readphy(tp, 0x14, &tmp);
8066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008067 }
8068 }
8069
8070 __tg3_set_rx_mode(tp->dev);
8071
8072 /* Initialize receive rules. */
8073 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
8074 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
8075 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
8076 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
8077
Michael Chan4cf78e42005-07-25 12:29:19 -07008078 if ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
Michael Chana4e2b342005-10-26 15:46:52 -07008079 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008080 limit = 8;
8081 else
8082 limit = 16;
8083 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
8084 limit -= 4;
8085 switch (limit) {
8086 case 16:
8087 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
8088 case 15:
8089 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
8090 case 14:
8091 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
8092 case 13:
8093 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
8094 case 12:
8095 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
8096 case 11:
8097 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
8098 case 10:
8099 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
8100 case 9:
8101 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
8102 case 8:
8103 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
8104 case 7:
8105 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
8106 case 6:
8107 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
8108 case 5:
8109 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
8110 case 4:
8111 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
8112 case 3:
8113 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
8114 case 2:
8115 case 1:
8116
8117 default:
8118 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008120
Matt Carlson9ce768e2007-10-11 19:49:11 -07008121 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
8122 /* Write our heartbeat update interval to APE. */
8123 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
8124 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07008125
Linus Torvalds1da177e2005-04-16 15:20:36 -07008126 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
8127
Linus Torvalds1da177e2005-04-16 15:20:36 -07008128 return 0;
8129}
8130
8131/* Called at device open time to get the chip ready for
8132 * packet processing. Invoked with tp->lock held.
8133 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008134static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008135{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136 tg3_switch_clocks(tp);
8137
8138 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
8139
Matt Carlson2f751b62008-08-04 23:17:34 -07008140 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141}
8142
8143#define TG3_STAT_ADD32(PSTAT, REG) \
8144do { u32 __val = tr32(REG); \
8145 (PSTAT)->low += __val; \
8146 if ((PSTAT)->low < __val) \
8147 (PSTAT)->high += 1; \
8148} while (0)
8149
8150static void tg3_periodic_fetch_stats(struct tg3 *tp)
8151{
8152 struct tg3_hw_stats *sp = tp->hw_stats;
8153
8154 if (!netif_carrier_ok(tp->dev))
8155 return;
8156
8157 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
8158 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
8159 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
8160 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
8161 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
8162 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
8163 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
8164 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
8165 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
8166 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
8167 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
8168 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
8169 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
8170
8171 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
8172 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
8173 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
8174 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
8175 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
8176 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
8177 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
8178 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
8179 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
8180 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
8181 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
8182 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
8183 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
8184 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07008185
8186 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
8187 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
8188 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008189}
8190
8191static void tg3_timer(unsigned long __opaque)
8192{
8193 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194
Michael Chanf475f162006-03-27 23:20:14 -08008195 if (tp->irq_sync)
8196 goto restart_timer;
8197
David S. Millerf47c11e2005-06-24 20:18:35 -07008198 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199
David S. Millerfac9b832005-05-18 22:46:34 -07008200 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
8201 /* All of this garbage is because when using non-tagged
8202 * IRQ status the mailbox/status_block protocol the chip
8203 * uses with the cpu is race prone.
8204 */
Matt Carlson898a56f2009-08-28 14:02:40 +00008205 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07008206 tw32(GRC_LOCAL_CTRL,
8207 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
8208 } else {
8209 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008210 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07008211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008212
David S. Millerfac9b832005-05-18 22:46:34 -07008213 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
8214 tp->tg3_flags2 |= TG3_FLG2_RESTART_TIMER;
David S. Millerf47c11e2005-06-24 20:18:35 -07008215 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07008216 schedule_work(&tp->reset_task);
8217 return;
8218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008219 }
8220
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221 /* This part only runs once per second. */
8222 if (!--tp->timer_counter) {
David S. Millerfac9b832005-05-18 22:46:34 -07008223 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
8224 tg3_periodic_fetch_stats(tp);
8225
Linus Torvalds1da177e2005-04-16 15:20:36 -07008226 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
8227 u32 mac_stat;
8228 int phy_event;
8229
8230 mac_stat = tr32(MAC_STATUS);
8231
8232 phy_event = 0;
8233 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) {
8234 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
8235 phy_event = 1;
8236 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
8237 phy_event = 1;
8238
8239 if (phy_event)
8240 tg3_setup_phy(tp, 0);
8241 } else if (tp->tg3_flags & TG3_FLAG_POLL_SERDES) {
8242 u32 mac_stat = tr32(MAC_STATUS);
8243 int need_setup = 0;
8244
8245 if (netif_carrier_ok(tp->dev) &&
8246 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
8247 need_setup = 1;
8248 }
8249 if (! netif_carrier_ok(tp->dev) &&
8250 (mac_stat & (MAC_STATUS_PCS_SYNCED |
8251 MAC_STATUS_SIGNAL_DET))) {
8252 need_setup = 1;
8253 }
8254 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07008255 if (!tp->serdes_counter) {
8256 tw32_f(MAC_MODE,
8257 (tp->mac_mode &
8258 ~MAC_MODE_PORT_MODE_MASK));
8259 udelay(40);
8260 tw32_f(MAC_MODE, tp->mac_mode);
8261 udelay(40);
8262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263 tg3_setup_phy(tp, 0);
8264 }
Michael Chan747e8f82005-07-25 12:33:22 -07008265 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
8266 tg3_serdes_parallel_detect(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008267
8268 tp->timer_counter = tp->timer_multiplier;
8269 }
8270
Michael Chan130b8e42006-09-27 16:00:40 -07008271 /* Heartbeat is only sent once every 2 seconds.
8272 *
8273 * The heartbeat is to tell the ASF firmware that the host
8274 * driver is still alive. In the event that the OS crashes,
8275 * ASF needs to reset the hardware to free up the FIFO space
8276 * that may be filled with rx packets destined for the host.
8277 * If the FIFO is full, ASF will no longer function properly.
8278 *
8279 * Unintended resets have been reported on real time kernels
8280 * where the timer doesn't run on time. Netpoll will also have
8281 * same problem.
8282 *
8283 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
8284 * to check the ring condition when the heartbeat is expiring
8285 * before doing the reset. This will prevent most unintended
8286 * resets.
8287 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288 if (!--tp->asf_counter) {
Matt Carlsonbc7959b2008-08-15 14:08:55 -07008289 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
8290 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07008291 tg3_wait_for_event_ack(tp);
8292
Michael Chanbbadf502006-04-06 21:46:34 -07008293 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07008294 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07008295 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Michael Chan28fbef72005-10-26 15:48:35 -07008296 /* 5 seconds timeout */
Michael Chanbbadf502006-04-06 21:46:34 -07008297 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, 5);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008298
8299 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300 }
8301 tp->asf_counter = tp->asf_multiplier;
8302 }
8303
David S. Millerf47c11e2005-06-24 20:18:35 -07008304 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008305
Michael Chanf475f162006-03-27 23:20:14 -08008306restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07008307 tp->timer.expires = jiffies + tp->timer_offset;
8308 add_timer(&tp->timer);
8309}
8310
Matt Carlson4f125f42009-09-01 12:55:02 +00008311static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08008312{
David Howells7d12e782006-10-05 14:55:46 +01008313 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008314 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00008315 char *name;
8316 struct tg3_napi *tnapi = &tp->napi[irq_num];
8317
8318 if (tp->irq_cnt == 1)
8319 name = tp->dev->name;
8320 else {
8321 name = &tnapi->irq_lbl[0];
8322 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
8323 name[IFNAMSIZ-1] = 0;
8324 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008325
Matt Carlson679563f2009-09-01 12:55:46 +00008326 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI_OR_MSIX) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08008327 fn = tg3_msi;
8328 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
8329 fn = tg3_msi_1shot;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07008330 flags = IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008331 } else {
8332 fn = tg3_interrupt;
8333 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
8334 fn = tg3_interrupt_tagged;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07008335 flags = IRQF_SHARED | IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008336 }
Matt Carlson4f125f42009-09-01 12:55:02 +00008337
8338 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008339}
8340
Michael Chan79381092005-04-21 17:13:59 -07008341static int tg3_test_interrupt(struct tg3 *tp)
8342{
Matt Carlson09943a12009-08-28 14:01:57 +00008343 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07008344 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07008345 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008346 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07008347
Michael Chand4bc3922005-05-29 14:59:20 -07008348 if (!netif_running(dev))
8349 return -ENODEV;
8350
Michael Chan79381092005-04-21 17:13:59 -07008351 tg3_disable_ints(tp);
8352
Matt Carlson4f125f42009-09-01 12:55:02 +00008353 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008354
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008355 /*
8356 * Turn off MSI one shot mode. Otherwise this test has no
8357 * observable way to know whether the interrupt was delivered.
8358 */
8359 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
8360 (tp->tg3_flags2 & TG3_FLG2_USING_MSI)) {
8361 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
8362 tw32(MSGINT_MODE, val);
8363 }
8364
Matt Carlson4f125f42009-09-01 12:55:02 +00008365 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00008366 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008367 if (err)
8368 return err;
8369
Matt Carlson898a56f2009-08-28 14:02:40 +00008370 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07008371 tg3_enable_ints(tp);
8372
8373 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008374 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07008375
8376 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07008377 u32 int_mbox, misc_host_ctrl;
8378
Matt Carlson898a56f2009-08-28 14:02:40 +00008379 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07008380 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
8381
8382 if ((int_mbox != 0) ||
8383 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
8384 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07008385 break;
Michael Chanb16250e2006-09-27 16:10:14 -07008386 }
8387
Michael Chan79381092005-04-21 17:13:59 -07008388 msleep(10);
8389 }
8390
8391 tg3_disable_ints(tp);
8392
Matt Carlson4f125f42009-09-01 12:55:02 +00008393 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008394
Matt Carlson4f125f42009-09-01 12:55:02 +00008395 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07008396
8397 if (err)
8398 return err;
8399
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008400 if (intr_ok) {
8401 /* Reenable MSI one shot mode. */
8402 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
8403 (tp->tg3_flags2 & TG3_FLG2_USING_MSI)) {
8404 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
8405 tw32(MSGINT_MODE, val);
8406 }
Michael Chan79381092005-04-21 17:13:59 -07008407 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008408 }
Michael Chan79381092005-04-21 17:13:59 -07008409
8410 return -EIO;
8411}
8412
8413/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
8414 * successfully restored
8415 */
8416static int tg3_test_msi(struct tg3 *tp)
8417{
Michael Chan79381092005-04-21 17:13:59 -07008418 int err;
8419 u16 pci_cmd;
8420
8421 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSI))
8422 return 0;
8423
8424 /* Turn off SERR reporting in case MSI terminates with Master
8425 * Abort.
8426 */
8427 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
8428 pci_write_config_word(tp->pdev, PCI_COMMAND,
8429 pci_cmd & ~PCI_COMMAND_SERR);
8430
8431 err = tg3_test_interrupt(tp);
8432
8433 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
8434
8435 if (!err)
8436 return 0;
8437
8438 /* other failures */
8439 if (err != -EIO)
8440 return err;
8441
8442 /* MSI test failed, go back to INTx mode */
8443 printk(KERN_WARNING PFX "%s: No interrupt was generated using MSI, "
8444 "switching to INTx mode. Please report this failure to "
8445 "the PCI maintainer and include system chipset information.\n",
8446 tp->dev->name);
8447
Matt Carlson4f125f42009-09-01 12:55:02 +00008448 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00008449
Michael Chan79381092005-04-21 17:13:59 -07008450 pci_disable_msi(tp->pdev);
8451
8452 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
8453
Matt Carlson4f125f42009-09-01 12:55:02 +00008454 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07008455 if (err)
8456 return err;
8457
8458 /* Need to reset the chip because the MSI cycle may have terminated
8459 * with Master Abort.
8460 */
David S. Millerf47c11e2005-06-24 20:18:35 -07008461 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07008462
Michael Chan944d9802005-05-29 14:57:48 -07008463 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008464 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07008465
David S. Millerf47c11e2005-06-24 20:18:35 -07008466 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07008467
8468 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00008469 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07008470
8471 return err;
8472}
8473
Matt Carlson9e9fd122009-01-19 16:57:45 -08008474static int tg3_request_firmware(struct tg3 *tp)
8475{
8476 const __be32 *fw_data;
8477
8478 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
8479 printk(KERN_ERR "%s: Failed to load firmware \"%s\"\n",
8480 tp->dev->name, tp->fw_needed);
8481 return -ENOENT;
8482 }
8483
8484 fw_data = (void *)tp->fw->data;
8485
8486 /* Firmware blob starts with version numbers, followed by
8487 * start address and _full_ length including BSS sections
8488 * (which must be longer than the actual data, of course
8489 */
8490
8491 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
8492 if (tp->fw_len < (tp->fw->size - 12)) {
8493 printk(KERN_ERR "%s: bogus length %d in \"%s\"\n",
8494 tp->dev->name, tp->fw_len, tp->fw_needed);
8495 release_firmware(tp->fw);
8496 tp->fw = NULL;
8497 return -EINVAL;
8498 }
8499
8500 /* We no longer need firmware; we have it. */
8501 tp->fw_needed = NULL;
8502 return 0;
8503}
8504
Matt Carlson679563f2009-09-01 12:55:46 +00008505static bool tg3_enable_msix(struct tg3 *tp)
8506{
8507 int i, rc, cpus = num_online_cpus();
8508 struct msix_entry msix_ent[tp->irq_max];
8509
8510 if (cpus == 1)
8511 /* Just fallback to the simpler MSI mode. */
8512 return false;
8513
8514 /*
8515 * We want as many rx rings enabled as there are cpus.
8516 * The first MSIX vector only deals with link interrupts, etc,
8517 * so we add one to the number of vectors we are requesting.
8518 */
8519 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
8520
8521 for (i = 0; i < tp->irq_max; i++) {
8522 msix_ent[i].entry = i;
8523 msix_ent[i].vector = 0;
8524 }
8525
8526 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
8527 if (rc != 0) {
8528 if (rc < TG3_RSS_MIN_NUM_MSIX_VECS)
8529 return false;
8530 if (pci_enable_msix(tp->pdev, msix_ent, rc))
8531 return false;
8532 printk(KERN_NOTICE
8533 "%s: Requested %d MSI-X vectors, received %d\n",
8534 tp->dev->name, tp->irq_cnt, rc);
8535 tp->irq_cnt = rc;
8536 }
8537
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008538 tp->tg3_flags3 |= TG3_FLG3_ENABLE_RSS;
8539
Matt Carlson679563f2009-09-01 12:55:46 +00008540 for (i = 0; i < tp->irq_max; i++)
8541 tp->napi[i].irq_vec = msix_ent[i].vector;
8542
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008543 tp->dev->real_num_tx_queues = tp->irq_cnt - 1;
8544
Matt Carlson679563f2009-09-01 12:55:46 +00008545 return true;
8546}
8547
Matt Carlson07b01732009-08-28 14:01:15 +00008548static void tg3_ints_init(struct tg3 *tp)
8549{
Matt Carlson679563f2009-09-01 12:55:46 +00008550 if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSI_OR_MSIX) &&
8551 !(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00008552 /* All MSI supporting chips should support tagged
8553 * status. Assert that this is the case.
8554 */
Matt Carlson679563f2009-09-01 12:55:46 +00008555 printk(KERN_WARNING PFX "%s: MSI without TAGGED? "
8556 "Not using MSI.\n", tp->dev->name);
8557 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00008558 }
Matt Carlson4f125f42009-09-01 12:55:02 +00008559
Matt Carlson679563f2009-09-01 12:55:46 +00008560 if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX) && tg3_enable_msix(tp))
8561 tp->tg3_flags2 |= TG3_FLG2_USING_MSIX;
8562 else if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSI) &&
8563 pci_enable_msi(tp->pdev) == 0)
8564 tp->tg3_flags2 |= TG3_FLG2_USING_MSI;
8565
8566 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI_OR_MSIX) {
8567 u32 msi_mode = tr32(MSGINT_MODE);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008568 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
8569 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson679563f2009-09-01 12:55:46 +00008570 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
8571 }
8572defcfg:
8573 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSIX)) {
8574 tp->irq_cnt = 1;
8575 tp->napi[0].irq_vec = tp->pdev->irq;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008576 tp->dev->real_num_tx_queues = 1;
Matt Carlson679563f2009-09-01 12:55:46 +00008577 }
Matt Carlson07b01732009-08-28 14:01:15 +00008578}
8579
8580static void tg3_ints_fini(struct tg3 *tp)
8581{
Matt Carlson679563f2009-09-01 12:55:46 +00008582 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
8583 pci_disable_msix(tp->pdev);
8584 else if (tp->tg3_flags2 & TG3_FLG2_USING_MSI)
8585 pci_disable_msi(tp->pdev);
8586 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI_OR_MSIX;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008587 tp->tg3_flags3 &= ~TG3_FLG3_ENABLE_RSS;
Matt Carlson07b01732009-08-28 14:01:15 +00008588}
8589
Linus Torvalds1da177e2005-04-16 15:20:36 -07008590static int tg3_open(struct net_device *dev)
8591{
8592 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00008593 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008594
Matt Carlson9e9fd122009-01-19 16:57:45 -08008595 if (tp->fw_needed) {
8596 err = tg3_request_firmware(tp);
8597 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8598 if (err)
8599 return err;
8600 } else if (err) {
8601 printk(KERN_WARNING "%s: TSO capability disabled.\n",
8602 tp->dev->name);
8603 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
8604 } else if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
8605 printk(KERN_NOTICE "%s: TSO capability restored.\n",
8606 tp->dev->name);
8607 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
8608 }
8609 }
8610
Michael Chanc49a1562006-12-17 17:07:29 -08008611 netif_carrier_off(tp->dev);
8612
Michael Chanbc1c7562006-03-20 17:48:03 -08008613 err = tg3_set_power_state(tp, PCI_D0);
Matt Carlson2f751b62008-08-04 23:17:34 -07008614 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08008615 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07008616
8617 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08008618
Linus Torvalds1da177e2005-04-16 15:20:36 -07008619 tg3_disable_ints(tp);
8620 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
8621
David S. Millerf47c11e2005-06-24 20:18:35 -07008622 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008623
Matt Carlson679563f2009-09-01 12:55:46 +00008624 /*
8625 * Setup interrupts first so we know how
8626 * many NAPI resources to allocate
8627 */
8628 tg3_ints_init(tp);
8629
Linus Torvalds1da177e2005-04-16 15:20:36 -07008630 /* The placement of this call is tied
8631 * to the setup and use of Host TX descriptors.
8632 */
8633 err = tg3_alloc_consistent(tp);
8634 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008635 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008636
Matt Carlsonfed97812009-09-01 13:10:19 +00008637 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07008638
Matt Carlson4f125f42009-09-01 12:55:02 +00008639 for (i = 0; i < tp->irq_cnt; i++) {
8640 struct tg3_napi *tnapi = &tp->napi[i];
8641 err = tg3_request_irq(tp, i);
8642 if (err) {
8643 for (i--; i >= 0; i--)
8644 free_irq(tnapi->irq_vec, tnapi);
8645 break;
8646 }
8647 }
Matt Carlson07b01732009-08-28 14:01:15 +00008648
8649 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008650 goto err_out2;
Matt Carlson07b01732009-08-28 14:01:15 +00008651
David S. Millerf47c11e2005-06-24 20:18:35 -07008652 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008654 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07008656 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657 tg3_free_rings(tp);
8658 } else {
David S. Millerfac9b832005-05-18 22:46:34 -07008659 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
8660 tp->timer_offset = HZ;
8661 else
8662 tp->timer_offset = HZ / 10;
8663
8664 BUG_ON(tp->timer_offset > HZ);
8665 tp->timer_counter = tp->timer_multiplier =
8666 (HZ / tp->timer_offset);
8667 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07008668 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008669
8670 init_timer(&tp->timer);
8671 tp->timer.expires = jiffies + tp->timer_offset;
8672 tp->timer.data = (unsigned long) tp;
8673 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008674 }
8675
David S. Millerf47c11e2005-06-24 20:18:35 -07008676 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008677
Matt Carlson07b01732009-08-28 14:01:15 +00008678 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008679 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008680
Michael Chan79381092005-04-21 17:13:59 -07008681 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
8682 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07008683
Michael Chan79381092005-04-21 17:13:59 -07008684 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07008685 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07008686 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07008687 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07008688 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07008689
Matt Carlson679563f2009-09-01 12:55:46 +00008690 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07008691 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008692
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008693 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
8694 (tp->tg3_flags2 & TG3_FLG2_USING_MSI) &&
8695 (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)) {
8696 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008697
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008698 tw32(PCIE_TRANSACTION_CFG,
8699 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008700 }
Michael Chan79381092005-04-21 17:13:59 -07008701 }
8702
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07008703 tg3_phy_start(tp);
8704
David S. Millerf47c11e2005-06-24 20:18:35 -07008705 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706
Michael Chan79381092005-04-21 17:13:59 -07008707 add_timer(&tp->timer);
8708 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008709 tg3_enable_ints(tp);
8710
David S. Millerf47c11e2005-06-24 20:18:35 -07008711 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008712
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008713 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008714
8715 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00008716
Matt Carlson679563f2009-09-01 12:55:46 +00008717err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00008718 for (i = tp->irq_cnt - 1; i >= 0; i--) {
8719 struct tg3_napi *tnapi = &tp->napi[i];
8720 free_irq(tnapi->irq_vec, tnapi);
8721 }
Matt Carlson07b01732009-08-28 14:01:15 +00008722
Matt Carlson679563f2009-09-01 12:55:46 +00008723err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00008724 tg3_napi_disable(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00008725 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00008726
8727err_out1:
8728 tg3_ints_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00008729 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008730}
8731
8732#if 0
8733/*static*/ void tg3_dump_state(struct tg3 *tp)
8734{
8735 u32 val32, val32_2, val32_3, val32_4, val32_5;
8736 u16 val16;
8737 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008738 struct tg3_hw_status *sblk = tp->napi[0]->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008739
8740 pci_read_config_word(tp->pdev, PCI_STATUS, &val16);
8741 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE, &val32);
8742 printk("DEBUG: PCI status [%04x] TG3PCI state[%08x]\n",
8743 val16, val32);
8744
8745 /* MAC block */
8746 printk("DEBUG: MAC_MODE[%08x] MAC_STATUS[%08x]\n",
8747 tr32(MAC_MODE), tr32(MAC_STATUS));
8748 printk(" MAC_EVENT[%08x] MAC_LED_CTRL[%08x]\n",
8749 tr32(MAC_EVENT), tr32(MAC_LED_CTRL));
8750 printk("DEBUG: MAC_TX_MODE[%08x] MAC_TX_STATUS[%08x]\n",
8751 tr32(MAC_TX_MODE), tr32(MAC_TX_STATUS));
8752 printk(" MAC_RX_MODE[%08x] MAC_RX_STATUS[%08x]\n",
8753 tr32(MAC_RX_MODE), tr32(MAC_RX_STATUS));
8754
8755 /* Send data initiator control block */
8756 printk("DEBUG: SNDDATAI_MODE[%08x] SNDDATAI_STATUS[%08x]\n",
8757 tr32(SNDDATAI_MODE), tr32(SNDDATAI_STATUS));
8758 printk(" SNDDATAI_STATSCTRL[%08x]\n",
8759 tr32(SNDDATAI_STATSCTRL));
8760
8761 /* Send data completion control block */
8762 printk("DEBUG: SNDDATAC_MODE[%08x]\n", tr32(SNDDATAC_MODE));
8763
8764 /* Send BD ring selector block */
8765 printk("DEBUG: SNDBDS_MODE[%08x] SNDBDS_STATUS[%08x]\n",
8766 tr32(SNDBDS_MODE), tr32(SNDBDS_STATUS));
8767
8768 /* Send BD initiator control block */
8769 printk("DEBUG: SNDBDI_MODE[%08x] SNDBDI_STATUS[%08x]\n",
8770 tr32(SNDBDI_MODE), tr32(SNDBDI_STATUS));
8771
8772 /* Send BD completion control block */
8773 printk("DEBUG: SNDBDC_MODE[%08x]\n", tr32(SNDBDC_MODE));
8774
8775 /* Receive list placement control block */
8776 printk("DEBUG: RCVLPC_MODE[%08x] RCVLPC_STATUS[%08x]\n",
8777 tr32(RCVLPC_MODE), tr32(RCVLPC_STATUS));
8778 printk(" RCVLPC_STATSCTRL[%08x]\n",
8779 tr32(RCVLPC_STATSCTRL));
8780
8781 /* Receive data and receive BD initiator control block */
8782 printk("DEBUG: RCVDBDI_MODE[%08x] RCVDBDI_STATUS[%08x]\n",
8783 tr32(RCVDBDI_MODE), tr32(RCVDBDI_STATUS));
8784
8785 /* Receive data completion control block */
8786 printk("DEBUG: RCVDCC_MODE[%08x]\n",
8787 tr32(RCVDCC_MODE));
8788
8789 /* Receive BD initiator control block */
8790 printk("DEBUG: RCVBDI_MODE[%08x] RCVBDI_STATUS[%08x]\n",
8791 tr32(RCVBDI_MODE), tr32(RCVBDI_STATUS));
8792
8793 /* Receive BD completion control block */
8794 printk("DEBUG: RCVCC_MODE[%08x] RCVCC_STATUS[%08x]\n",
8795 tr32(RCVCC_MODE), tr32(RCVCC_STATUS));
8796
8797 /* Receive list selector control block */
8798 printk("DEBUG: RCVLSC_MODE[%08x] RCVLSC_STATUS[%08x]\n",
8799 tr32(RCVLSC_MODE), tr32(RCVLSC_STATUS));
8800
8801 /* Mbuf cluster free block */
8802 printk("DEBUG: MBFREE_MODE[%08x] MBFREE_STATUS[%08x]\n",
8803 tr32(MBFREE_MODE), tr32(MBFREE_STATUS));
8804
8805 /* Host coalescing control block */
8806 printk("DEBUG: HOSTCC_MODE[%08x] HOSTCC_STATUS[%08x]\n",
8807 tr32(HOSTCC_MODE), tr32(HOSTCC_STATUS));
8808 printk("DEBUG: HOSTCC_STATS_BLK_HOST_ADDR[%08x%08x]\n",
8809 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
8810 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
8811 printk("DEBUG: HOSTCC_STATUS_BLK_HOST_ADDR[%08x%08x]\n",
8812 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
8813 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
8814 printk("DEBUG: HOSTCC_STATS_BLK_NIC_ADDR[%08x]\n",
8815 tr32(HOSTCC_STATS_BLK_NIC_ADDR));
8816 printk("DEBUG: HOSTCC_STATUS_BLK_NIC_ADDR[%08x]\n",
8817 tr32(HOSTCC_STATUS_BLK_NIC_ADDR));
8818
8819 /* Memory arbiter control block */
8820 printk("DEBUG: MEMARB_MODE[%08x] MEMARB_STATUS[%08x]\n",
8821 tr32(MEMARB_MODE), tr32(MEMARB_STATUS));
8822
8823 /* Buffer manager control block */
8824 printk("DEBUG: BUFMGR_MODE[%08x] BUFMGR_STATUS[%08x]\n",
8825 tr32(BUFMGR_MODE), tr32(BUFMGR_STATUS));
8826 printk("DEBUG: BUFMGR_MB_POOL_ADDR[%08x] BUFMGR_MB_POOL_SIZE[%08x]\n",
8827 tr32(BUFMGR_MB_POOL_ADDR), tr32(BUFMGR_MB_POOL_SIZE));
8828 printk("DEBUG: BUFMGR_DMA_DESC_POOL_ADDR[%08x] "
8829 "BUFMGR_DMA_DESC_POOL_SIZE[%08x]\n",
8830 tr32(BUFMGR_DMA_DESC_POOL_ADDR),
8831 tr32(BUFMGR_DMA_DESC_POOL_SIZE));
8832
8833 /* Read DMA control block */
8834 printk("DEBUG: RDMAC_MODE[%08x] RDMAC_STATUS[%08x]\n",
8835 tr32(RDMAC_MODE), tr32(RDMAC_STATUS));
8836
8837 /* Write DMA control block */
8838 printk("DEBUG: WDMAC_MODE[%08x] WDMAC_STATUS[%08x]\n",
8839 tr32(WDMAC_MODE), tr32(WDMAC_STATUS));
8840
8841 /* DMA completion block */
8842 printk("DEBUG: DMAC_MODE[%08x]\n",
8843 tr32(DMAC_MODE));
8844
8845 /* GRC block */
8846 printk("DEBUG: GRC_MODE[%08x] GRC_MISC_CFG[%08x]\n",
8847 tr32(GRC_MODE), tr32(GRC_MISC_CFG));
8848 printk("DEBUG: GRC_LOCAL_CTRL[%08x]\n",
8849 tr32(GRC_LOCAL_CTRL));
8850
8851 /* TG3_BDINFOs */
8852 printk("DEBUG: RCVDBDI_JUMBO_BD[%08x%08x:%08x:%08x]\n",
8853 tr32(RCVDBDI_JUMBO_BD + 0x0),
8854 tr32(RCVDBDI_JUMBO_BD + 0x4),
8855 tr32(RCVDBDI_JUMBO_BD + 0x8),
8856 tr32(RCVDBDI_JUMBO_BD + 0xc));
8857 printk("DEBUG: RCVDBDI_STD_BD[%08x%08x:%08x:%08x]\n",
8858 tr32(RCVDBDI_STD_BD + 0x0),
8859 tr32(RCVDBDI_STD_BD + 0x4),
8860 tr32(RCVDBDI_STD_BD + 0x8),
8861 tr32(RCVDBDI_STD_BD + 0xc));
8862 printk("DEBUG: RCVDBDI_MINI_BD[%08x%08x:%08x:%08x]\n",
8863 tr32(RCVDBDI_MINI_BD + 0x0),
8864 tr32(RCVDBDI_MINI_BD + 0x4),
8865 tr32(RCVDBDI_MINI_BD + 0x8),
8866 tr32(RCVDBDI_MINI_BD + 0xc));
8867
8868 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x0, &val32);
8869 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x4, &val32_2);
8870 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x8, &val32_3);
8871 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0xc, &val32_4);
8872 printk("DEBUG: SRAM_SEND_RCB_0[%08x%08x:%08x:%08x]\n",
8873 val32, val32_2, val32_3, val32_4);
8874
8875 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x0, &val32);
8876 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x4, &val32_2);
8877 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x8, &val32_3);
8878 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0xc, &val32_4);
8879 printk("DEBUG: SRAM_RCV_RET_RCB_0[%08x%08x:%08x:%08x]\n",
8880 val32, val32_2, val32_3, val32_4);
8881
8882 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x0, &val32);
8883 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x4, &val32_2);
8884 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x8, &val32_3);
8885 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0xc, &val32_4);
8886 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x10, &val32_5);
8887 printk("DEBUG: SRAM_STATUS_BLK[%08x:%08x:%08x:%08x:%08x]\n",
8888 val32, val32_2, val32_3, val32_4, val32_5);
8889
8890 /* SW status block */
Matt Carlson898a56f2009-08-28 14:02:40 +00008891 printk(KERN_DEBUG
8892 "Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
8893 sblk->status,
8894 sblk->status_tag,
8895 sblk->rx_jumbo_consumer,
8896 sblk->rx_consumer,
8897 sblk->rx_mini_consumer,
8898 sblk->idx[0].rx_producer,
8899 sblk->idx[0].tx_consumer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008900
8901 /* SW statistics block */
8902 printk("DEBUG: Host statistics block [%08x:%08x:%08x:%08x]\n",
8903 ((u32 *)tp->hw_stats)[0],
8904 ((u32 *)tp->hw_stats)[1],
8905 ((u32 *)tp->hw_stats)[2],
8906 ((u32 *)tp->hw_stats)[3]);
8907
8908 /* Mailboxes */
8909 printk("DEBUG: SNDHOST_PROD[%08x%08x] SNDNIC_PROD[%08x%08x]\n",
Michael Chan09ee9292005-08-09 20:17:00 -07008910 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x0),
8911 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x4),
8912 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x0),
8913 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x4));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008914
8915 /* NIC side send descriptors. */
8916 for (i = 0; i < 6; i++) {
8917 unsigned long txd;
8918
8919 txd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_TX_BUFFER_DESC
8920 + (i * sizeof(struct tg3_tx_buffer_desc));
8921 printk("DEBUG: NIC TXD(%d)[%08x:%08x:%08x:%08x]\n",
8922 i,
8923 readl(txd + 0x0), readl(txd + 0x4),
8924 readl(txd + 0x8), readl(txd + 0xc));
8925 }
8926
8927 /* NIC side RX descriptors. */
8928 for (i = 0; i < 6; i++) {
8929 unsigned long rxd;
8930
8931 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_BUFFER_DESC
8932 + (i * sizeof(struct tg3_rx_buffer_desc));
8933 printk("DEBUG: NIC RXD_STD(%d)[0][%08x:%08x:%08x:%08x]\n",
8934 i,
8935 readl(rxd + 0x0), readl(rxd + 0x4),
8936 readl(rxd + 0x8), readl(rxd + 0xc));
8937 rxd += (4 * sizeof(u32));
8938 printk("DEBUG: NIC RXD_STD(%d)[1][%08x:%08x:%08x:%08x]\n",
8939 i,
8940 readl(rxd + 0x0), readl(rxd + 0x4),
8941 readl(rxd + 0x8), readl(rxd + 0xc));
8942 }
8943
8944 for (i = 0; i < 6; i++) {
8945 unsigned long rxd;
8946
8947 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_JUMBO_BUFFER_DESC
8948 + (i * sizeof(struct tg3_rx_buffer_desc));
8949 printk("DEBUG: NIC RXD_JUMBO(%d)[0][%08x:%08x:%08x:%08x]\n",
8950 i,
8951 readl(rxd + 0x0), readl(rxd + 0x4),
8952 readl(rxd + 0x8), readl(rxd + 0xc));
8953 rxd += (4 * sizeof(u32));
8954 printk("DEBUG: NIC RXD_JUMBO(%d)[1][%08x:%08x:%08x:%08x]\n",
8955 i,
8956 readl(rxd + 0x0), readl(rxd + 0x4),
8957 readl(rxd + 0x8), readl(rxd + 0xc));
8958 }
8959}
8960#endif
8961
8962static struct net_device_stats *tg3_get_stats(struct net_device *);
8963static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
8964
8965static int tg3_close(struct net_device *dev)
8966{
Matt Carlson4f125f42009-09-01 12:55:02 +00008967 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008968 struct tg3 *tp = netdev_priv(dev);
8969
Matt Carlsonfed97812009-09-01 13:10:19 +00008970 tg3_napi_disable(tp);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07008971 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08008972
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008973 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008974
8975 del_timer_sync(&tp->timer);
8976
Matt Carlson24bb4fb2009-10-05 17:55:29 +00008977 tg3_phy_stop(tp);
8978
David S. Millerf47c11e2005-06-24 20:18:35 -07008979 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008980#if 0
8981 tg3_dump_state(tp);
8982#endif
8983
8984 tg3_disable_ints(tp);
8985
Michael Chan944d9802005-05-29 14:57:48 -07008986 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008987 tg3_free_rings(tp);
Michael Chan5cf64b8a2007-05-05 12:11:21 -07008988 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008989
David S. Millerf47c11e2005-06-24 20:18:35 -07008990 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008991
Matt Carlson4f125f42009-09-01 12:55:02 +00008992 for (i = tp->irq_cnt - 1; i >= 0; i--) {
8993 struct tg3_napi *tnapi = &tp->napi[i];
8994 free_irq(tnapi->irq_vec, tnapi);
8995 }
Matt Carlson07b01732009-08-28 14:01:15 +00008996
8997 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008998
8999 memcpy(&tp->net_stats_prev, tg3_get_stats(tp->dev),
9000 sizeof(tp->net_stats_prev));
9001 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9002 sizeof(tp->estats_prev));
9003
9004 tg3_free_consistent(tp);
9005
Michael Chanbc1c7562006-03-20 17:48:03 -08009006 tg3_set_power_state(tp, PCI_D3hot);
9007
9008 netif_carrier_off(tp->dev);
9009
Linus Torvalds1da177e2005-04-16 15:20:36 -07009010 return 0;
9011}
9012
9013static inline unsigned long get_stat64(tg3_stat64_t *val)
9014{
9015 unsigned long ret;
9016
9017#if (BITS_PER_LONG == 32)
9018 ret = val->low;
9019#else
9020 ret = ((u64)val->high << 32) | ((u64)val->low);
9021#endif
9022 return ret;
9023}
9024
Stefan Buehler816f8b82008-08-15 14:10:54 -07009025static inline u64 get_estat64(tg3_stat64_t *val)
9026{
9027 return ((u64)val->high << 32) | ((u64)val->low);
9028}
9029
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030static unsigned long calc_crc_errors(struct tg3 *tp)
9031{
9032 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9033
9034 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
9035 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9036 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009037 u32 val;
9038
David S. Millerf47c11e2005-06-24 20:18:35 -07009039 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009040 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9041 tg3_writephy(tp, MII_TG3_TEST1,
9042 val | MII_TG3_TEST1_CRC_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009043 tg3_readphy(tp, 0x14, &val);
9044 } else
9045 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009046 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009047
9048 tp->phy_crc_errors += val;
9049
9050 return tp->phy_crc_errors;
9051 }
9052
9053 return get_stat64(&hw_stats->rx_fcs_errors);
9054}
9055
9056#define ESTAT_ADD(member) \
9057 estats->member = old_estats->member + \
Stefan Buehler816f8b82008-08-15 14:10:54 -07009058 get_estat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009059
9060static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9061{
9062 struct tg3_ethtool_stats *estats = &tp->estats;
9063 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9064 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9065
9066 if (!hw_stats)
9067 return old_estats;
9068
9069 ESTAT_ADD(rx_octets);
9070 ESTAT_ADD(rx_fragments);
9071 ESTAT_ADD(rx_ucast_packets);
9072 ESTAT_ADD(rx_mcast_packets);
9073 ESTAT_ADD(rx_bcast_packets);
9074 ESTAT_ADD(rx_fcs_errors);
9075 ESTAT_ADD(rx_align_errors);
9076 ESTAT_ADD(rx_xon_pause_rcvd);
9077 ESTAT_ADD(rx_xoff_pause_rcvd);
9078 ESTAT_ADD(rx_mac_ctrl_rcvd);
9079 ESTAT_ADD(rx_xoff_entered);
9080 ESTAT_ADD(rx_frame_too_long_errors);
9081 ESTAT_ADD(rx_jabbers);
9082 ESTAT_ADD(rx_undersize_packets);
9083 ESTAT_ADD(rx_in_length_errors);
9084 ESTAT_ADD(rx_out_length_errors);
9085 ESTAT_ADD(rx_64_or_less_octet_packets);
9086 ESTAT_ADD(rx_65_to_127_octet_packets);
9087 ESTAT_ADD(rx_128_to_255_octet_packets);
9088 ESTAT_ADD(rx_256_to_511_octet_packets);
9089 ESTAT_ADD(rx_512_to_1023_octet_packets);
9090 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9091 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9092 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9093 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9094 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9095
9096 ESTAT_ADD(tx_octets);
9097 ESTAT_ADD(tx_collisions);
9098 ESTAT_ADD(tx_xon_sent);
9099 ESTAT_ADD(tx_xoff_sent);
9100 ESTAT_ADD(tx_flow_control);
9101 ESTAT_ADD(tx_mac_errors);
9102 ESTAT_ADD(tx_single_collisions);
9103 ESTAT_ADD(tx_mult_collisions);
9104 ESTAT_ADD(tx_deferred);
9105 ESTAT_ADD(tx_excessive_collisions);
9106 ESTAT_ADD(tx_late_collisions);
9107 ESTAT_ADD(tx_collide_2times);
9108 ESTAT_ADD(tx_collide_3times);
9109 ESTAT_ADD(tx_collide_4times);
9110 ESTAT_ADD(tx_collide_5times);
9111 ESTAT_ADD(tx_collide_6times);
9112 ESTAT_ADD(tx_collide_7times);
9113 ESTAT_ADD(tx_collide_8times);
9114 ESTAT_ADD(tx_collide_9times);
9115 ESTAT_ADD(tx_collide_10times);
9116 ESTAT_ADD(tx_collide_11times);
9117 ESTAT_ADD(tx_collide_12times);
9118 ESTAT_ADD(tx_collide_13times);
9119 ESTAT_ADD(tx_collide_14times);
9120 ESTAT_ADD(tx_collide_15times);
9121 ESTAT_ADD(tx_ucast_packets);
9122 ESTAT_ADD(tx_mcast_packets);
9123 ESTAT_ADD(tx_bcast_packets);
9124 ESTAT_ADD(tx_carrier_sense_errors);
9125 ESTAT_ADD(tx_discards);
9126 ESTAT_ADD(tx_errors);
9127
9128 ESTAT_ADD(dma_writeq_full);
9129 ESTAT_ADD(dma_write_prioq_full);
9130 ESTAT_ADD(rxbds_empty);
9131 ESTAT_ADD(rx_discards);
9132 ESTAT_ADD(rx_errors);
9133 ESTAT_ADD(rx_threshold_hit);
9134
9135 ESTAT_ADD(dma_readq_full);
9136 ESTAT_ADD(dma_read_prioq_full);
9137 ESTAT_ADD(tx_comp_queue_full);
9138
9139 ESTAT_ADD(ring_set_send_prod_index);
9140 ESTAT_ADD(ring_status_update);
9141 ESTAT_ADD(nic_irqs);
9142 ESTAT_ADD(nic_avoided_irqs);
9143 ESTAT_ADD(nic_tx_threshold_hit);
9144
9145 return estats;
9146}
9147
9148static struct net_device_stats *tg3_get_stats(struct net_device *dev)
9149{
9150 struct tg3 *tp = netdev_priv(dev);
9151 struct net_device_stats *stats = &tp->net_stats;
9152 struct net_device_stats *old_stats = &tp->net_stats_prev;
9153 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9154
9155 if (!hw_stats)
9156 return old_stats;
9157
9158 stats->rx_packets = old_stats->rx_packets +
9159 get_stat64(&hw_stats->rx_ucast_packets) +
9160 get_stat64(&hw_stats->rx_mcast_packets) +
9161 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009162
Linus Torvalds1da177e2005-04-16 15:20:36 -07009163 stats->tx_packets = old_stats->tx_packets +
9164 get_stat64(&hw_stats->tx_ucast_packets) +
9165 get_stat64(&hw_stats->tx_mcast_packets) +
9166 get_stat64(&hw_stats->tx_bcast_packets);
9167
9168 stats->rx_bytes = old_stats->rx_bytes +
9169 get_stat64(&hw_stats->rx_octets);
9170 stats->tx_bytes = old_stats->tx_bytes +
9171 get_stat64(&hw_stats->tx_octets);
9172
9173 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009174 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009175 stats->tx_errors = old_stats->tx_errors +
9176 get_stat64(&hw_stats->tx_errors) +
9177 get_stat64(&hw_stats->tx_mac_errors) +
9178 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9179 get_stat64(&hw_stats->tx_discards);
9180
9181 stats->multicast = old_stats->multicast +
9182 get_stat64(&hw_stats->rx_mcast_packets);
9183 stats->collisions = old_stats->collisions +
9184 get_stat64(&hw_stats->tx_collisions);
9185
9186 stats->rx_length_errors = old_stats->rx_length_errors +
9187 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9188 get_stat64(&hw_stats->rx_undersize_packets);
9189
9190 stats->rx_over_errors = old_stats->rx_over_errors +
9191 get_stat64(&hw_stats->rxbds_empty);
9192 stats->rx_frame_errors = old_stats->rx_frame_errors +
9193 get_stat64(&hw_stats->rx_align_errors);
9194 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
9195 get_stat64(&hw_stats->tx_discards);
9196 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
9197 get_stat64(&hw_stats->tx_carrier_sense_errors);
9198
9199 stats->rx_crc_errors = old_stats->rx_crc_errors +
9200 calc_crc_errors(tp);
9201
John W. Linville4f63b872005-09-12 14:43:18 -07009202 stats->rx_missed_errors = old_stats->rx_missed_errors +
9203 get_stat64(&hw_stats->rx_discards);
9204
Linus Torvalds1da177e2005-04-16 15:20:36 -07009205 return stats;
9206}
9207
9208static inline u32 calc_crc(unsigned char *buf, int len)
9209{
9210 u32 reg;
9211 u32 tmp;
9212 int j, k;
9213
9214 reg = 0xffffffff;
9215
9216 for (j = 0; j < len; j++) {
9217 reg ^= buf[j];
9218
9219 for (k = 0; k < 8; k++) {
9220 tmp = reg & 0x01;
9221
9222 reg >>= 1;
9223
9224 if (tmp) {
9225 reg ^= 0xedb88320;
9226 }
9227 }
9228 }
9229
9230 return ~reg;
9231}
9232
9233static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9234{
9235 /* accept or reject all multicast frames */
9236 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9237 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9238 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9239 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9240}
9241
9242static void __tg3_set_rx_mode(struct net_device *dev)
9243{
9244 struct tg3 *tp = netdev_priv(dev);
9245 u32 rx_mode;
9246
9247 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9248 RX_MODE_KEEP_VLAN_TAG);
9249
9250 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9251 * flag clear.
9252 */
9253#if TG3_VLAN_TAG_USED
9254 if (!tp->vlgrp &&
9255 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
9256 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9257#else
9258 /* By definition, VLAN is disabled always in this
9259 * case.
9260 */
9261 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
9262 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9263#endif
9264
9265 if (dev->flags & IFF_PROMISC) {
9266 /* Promiscuous mode. */
9267 rx_mode |= RX_MODE_PROMISC;
9268 } else if (dev->flags & IFF_ALLMULTI) {
9269 /* Accept all multicast. */
9270 tg3_set_multi (tp, 1);
9271 } else if (dev->mc_count < 1) {
9272 /* Reject all multicast. */
9273 tg3_set_multi (tp, 0);
9274 } else {
9275 /* Accept one or more multicast(s). */
9276 struct dev_mc_list *mclist;
9277 unsigned int i;
9278 u32 mc_filter[4] = { 0, };
9279 u32 regidx;
9280 u32 bit;
9281 u32 crc;
9282
9283 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
9284 i++, mclist = mclist->next) {
9285
9286 crc = calc_crc (mclist->dmi_addr, ETH_ALEN);
9287 bit = ~crc & 0x7f;
9288 regidx = (bit & 0x60) >> 5;
9289 bit &= 0x1f;
9290 mc_filter[regidx] |= (1 << bit);
9291 }
9292
9293 tw32(MAC_HASH_REG_0, mc_filter[0]);
9294 tw32(MAC_HASH_REG_1, mc_filter[1]);
9295 tw32(MAC_HASH_REG_2, mc_filter[2]);
9296 tw32(MAC_HASH_REG_3, mc_filter[3]);
9297 }
9298
9299 if (rx_mode != tp->rx_mode) {
9300 tp->rx_mode = rx_mode;
9301 tw32_f(MAC_RX_MODE, rx_mode);
9302 udelay(10);
9303 }
9304}
9305
9306static void tg3_set_rx_mode(struct net_device *dev)
9307{
9308 struct tg3 *tp = netdev_priv(dev);
9309
Michael Chane75f7c92006-03-20 21:33:26 -08009310 if (!netif_running(dev))
9311 return;
9312
David S. Millerf47c11e2005-06-24 20:18:35 -07009313 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009314 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07009315 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009316}
9317
9318#define TG3_REGDUMP_LEN (32 * 1024)
9319
9320static int tg3_get_regs_len(struct net_device *dev)
9321{
9322 return TG3_REGDUMP_LEN;
9323}
9324
9325static void tg3_get_regs(struct net_device *dev,
9326 struct ethtool_regs *regs, void *_p)
9327{
9328 u32 *p = _p;
9329 struct tg3 *tp = netdev_priv(dev);
9330 u8 *orig_p = _p;
9331 int i;
9332
9333 regs->version = 0;
9334
9335 memset(p, 0, TG3_REGDUMP_LEN);
9336
Michael Chanbc1c7562006-03-20 17:48:03 -08009337 if (tp->link_config.phy_is_low_power)
9338 return;
9339
David S. Millerf47c11e2005-06-24 20:18:35 -07009340 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009341
9342#define __GET_REG32(reg) (*(p)++ = tr32(reg))
9343#define GET_REG32_LOOP(base,len) \
9344do { p = (u32 *)(orig_p + (base)); \
9345 for (i = 0; i < len; i += 4) \
9346 __GET_REG32((base) + i); \
9347} while (0)
9348#define GET_REG32_1(reg) \
9349do { p = (u32 *)(orig_p + (reg)); \
9350 __GET_REG32((reg)); \
9351} while (0)
9352
9353 GET_REG32_LOOP(TG3PCI_VENDOR, 0xb0);
9354 GET_REG32_LOOP(MAILBOX_INTERRUPT_0, 0x200);
9355 GET_REG32_LOOP(MAC_MODE, 0x4f0);
9356 GET_REG32_LOOP(SNDDATAI_MODE, 0xe0);
9357 GET_REG32_1(SNDDATAC_MODE);
9358 GET_REG32_LOOP(SNDBDS_MODE, 0x80);
9359 GET_REG32_LOOP(SNDBDI_MODE, 0x48);
9360 GET_REG32_1(SNDBDC_MODE);
9361 GET_REG32_LOOP(RCVLPC_MODE, 0x20);
9362 GET_REG32_LOOP(RCVLPC_SELLST_BASE, 0x15c);
9363 GET_REG32_LOOP(RCVDBDI_MODE, 0x0c);
9364 GET_REG32_LOOP(RCVDBDI_JUMBO_BD, 0x3c);
9365 GET_REG32_LOOP(RCVDBDI_BD_PROD_IDX_0, 0x44);
9366 GET_REG32_1(RCVDCC_MODE);
9367 GET_REG32_LOOP(RCVBDI_MODE, 0x20);
9368 GET_REG32_LOOP(RCVCC_MODE, 0x14);
9369 GET_REG32_LOOP(RCVLSC_MODE, 0x08);
9370 GET_REG32_1(MBFREE_MODE);
9371 GET_REG32_LOOP(HOSTCC_MODE, 0x100);
9372 GET_REG32_LOOP(MEMARB_MODE, 0x10);
9373 GET_REG32_LOOP(BUFMGR_MODE, 0x58);
9374 GET_REG32_LOOP(RDMAC_MODE, 0x08);
9375 GET_REG32_LOOP(WDMAC_MODE, 0x08);
Chris Elmquist091465d2005-12-20 13:25:19 -08009376 GET_REG32_1(RX_CPU_MODE);
9377 GET_REG32_1(RX_CPU_STATE);
9378 GET_REG32_1(RX_CPU_PGMCTR);
9379 GET_REG32_1(RX_CPU_HWBKPT);
9380 GET_REG32_1(TX_CPU_MODE);
9381 GET_REG32_1(TX_CPU_STATE);
9382 GET_REG32_1(TX_CPU_PGMCTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009383 GET_REG32_LOOP(GRCMBOX_INTERRUPT_0, 0x110);
9384 GET_REG32_LOOP(FTQ_RESET, 0x120);
9385 GET_REG32_LOOP(MSGINT_MODE, 0x0c);
9386 GET_REG32_1(DMAC_MODE);
9387 GET_REG32_LOOP(GRC_MODE, 0x4c);
9388 if (tp->tg3_flags & TG3_FLAG_NVRAM)
9389 GET_REG32_LOOP(NVRAM_CMD, 0x24);
9390
9391#undef __GET_REG32
9392#undef GET_REG32_LOOP
9393#undef GET_REG32_1
9394
David S. Millerf47c11e2005-06-24 20:18:35 -07009395 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009396}
9397
9398static int tg3_get_eeprom_len(struct net_device *dev)
9399{
9400 struct tg3 *tp = netdev_priv(dev);
9401
9402 return tp->nvram_size;
9403}
9404
Linus Torvalds1da177e2005-04-16 15:20:36 -07009405static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9406{
9407 struct tg3 *tp = netdev_priv(dev);
9408 int ret;
9409 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -08009410 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009411 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009412
Matt Carlsondf259d82009-04-20 06:57:14 +00009413 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM)
9414 return -EINVAL;
9415
Michael Chanbc1c7562006-03-20 17:48:03 -08009416 if (tp->link_config.phy_is_low_power)
9417 return -EAGAIN;
9418
Linus Torvalds1da177e2005-04-16 15:20:36 -07009419 offset = eeprom->offset;
9420 len = eeprom->len;
9421 eeprom->len = 0;
9422
9423 eeprom->magic = TG3_EEPROM_MAGIC;
9424
9425 if (offset & 3) {
9426 /* adjustments to start on required 4 byte boundary */
9427 b_offset = offset & 3;
9428 b_count = 4 - b_offset;
9429 if (b_count > len) {
9430 /* i.e. offset=1 len=2 */
9431 b_count = len;
9432 }
Matt Carlsona9dc5292009-02-25 14:25:30 +00009433 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009434 if (ret)
9435 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009436 memcpy(data, ((char*)&val) + b_offset, b_count);
9437 len -= b_count;
9438 offset += b_count;
9439 eeprom->len += b_count;
9440 }
9441
9442 /* read bytes upto the last 4 byte boundary */
9443 pd = &data[eeprom->len];
9444 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +00009445 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009446 if (ret) {
9447 eeprom->len += i;
9448 return ret;
9449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009450 memcpy(pd + i, &val, 4);
9451 }
9452 eeprom->len += i;
9453
9454 if (len & 3) {
9455 /* read last bytes not ending on 4 byte boundary */
9456 pd = &data[eeprom->len];
9457 b_count = len & 3;
9458 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009459 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009460 if (ret)
9461 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009462 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009463 eeprom->len += b_count;
9464 }
9465 return 0;
9466}
9467
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009468static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009469
9470static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9471{
9472 struct tg3 *tp = netdev_priv(dev);
9473 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009474 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009475 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009476 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009477
Michael Chanbc1c7562006-03-20 17:48:03 -08009478 if (tp->link_config.phy_is_low_power)
9479 return -EAGAIN;
9480
Matt Carlsondf259d82009-04-20 06:57:14 +00009481 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
9482 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009483 return -EINVAL;
9484
9485 offset = eeprom->offset;
9486 len = eeprom->len;
9487
9488 if ((b_offset = (offset & 3))) {
9489 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +00009490 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009491 if (ret)
9492 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009493 len += b_offset;
9494 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -07009495 if (len < 4)
9496 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009497 }
9498
9499 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -07009500 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009501 /* adjustments to end on required 4 byte boundary */
9502 odd_len = 1;
9503 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009504 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009505 if (ret)
9506 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009507 }
9508
9509 buf = data;
9510 if (b_offset || odd_len) {
9511 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009512 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009513 return -ENOMEM;
9514 if (b_offset)
9515 memcpy(buf, &start, 4);
9516 if (odd_len)
9517 memcpy(buf+len-4, &end, 4);
9518 memcpy(buf + b_offset, data, eeprom->len);
9519 }
9520
9521 ret = tg3_nvram_write_block(tp, offset, len, buf);
9522
9523 if (buf != data)
9524 kfree(buf);
9525
9526 return ret;
9527}
9528
9529static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9530{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009531 struct tg3 *tp = netdev_priv(dev);
9532
9533 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009534 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009535 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9536 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009537 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9538 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009539 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009540
Linus Torvalds1da177e2005-04-16 15:20:36 -07009541 cmd->supported = (SUPPORTED_Autoneg);
9542
9543 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
9544 cmd->supported |= (SUPPORTED_1000baseT_Half |
9545 SUPPORTED_1000baseT_Full);
9546
Karsten Keilef348142006-05-12 12:49:08 -07009547 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009548 cmd->supported |= (SUPPORTED_100baseT_Half |
9549 SUPPORTED_100baseT_Full |
9550 SUPPORTED_10baseT_Half |
9551 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -08009552 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -07009553 cmd->port = PORT_TP;
9554 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009555 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -07009556 cmd->port = PORT_FIBRE;
9557 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009558
Linus Torvalds1da177e2005-04-16 15:20:36 -07009559 cmd->advertising = tp->link_config.advertising;
9560 if (netif_running(dev)) {
9561 cmd->speed = tp->link_config.active_speed;
9562 cmd->duplex = tp->link_config.active_duplex;
9563 }
Matt Carlson882e9792009-09-01 13:21:36 +00009564 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009565 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009566 cmd->autoneg = tp->link_config.autoneg;
9567 cmd->maxtxpkt = 0;
9568 cmd->maxrxpkt = 0;
9569 return 0;
9570}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009571
Linus Torvalds1da177e2005-04-16 15:20:36 -07009572static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9573{
9574 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009575
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009576 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009577 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009578 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9579 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009580 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9581 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009582 }
9583
Matt Carlson7e5856b2009-02-25 14:23:01 +00009584 if (cmd->autoneg != AUTONEG_ENABLE &&
9585 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -07009586 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009587
9588 if (cmd->autoneg == AUTONEG_DISABLE &&
9589 cmd->duplex != DUPLEX_FULL &&
9590 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -07009591 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009592
Matt Carlson7e5856b2009-02-25 14:23:01 +00009593 if (cmd->autoneg == AUTONEG_ENABLE) {
9594 u32 mask = ADVERTISED_Autoneg |
9595 ADVERTISED_Pause |
9596 ADVERTISED_Asym_Pause;
9597
9598 if (!(tp->tg3_flags2 & TG3_FLAG_10_100_ONLY))
9599 mask |= ADVERTISED_1000baseT_Half |
9600 ADVERTISED_1000baseT_Full;
9601
9602 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
9603 mask |= ADVERTISED_100baseT_Half |
9604 ADVERTISED_100baseT_Full |
9605 ADVERTISED_10baseT_Half |
9606 ADVERTISED_10baseT_Full |
9607 ADVERTISED_TP;
9608 else
9609 mask |= ADVERTISED_FIBRE;
9610
9611 if (cmd->advertising & ~mask)
9612 return -EINVAL;
9613
9614 mask &= (ADVERTISED_1000baseT_Half |
9615 ADVERTISED_1000baseT_Full |
9616 ADVERTISED_100baseT_Half |
9617 ADVERTISED_100baseT_Full |
9618 ADVERTISED_10baseT_Half |
9619 ADVERTISED_10baseT_Full);
9620
9621 cmd->advertising &= mask;
9622 } else {
9623 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) {
9624 if (cmd->speed != SPEED_1000)
9625 return -EINVAL;
9626
9627 if (cmd->duplex != DUPLEX_FULL)
9628 return -EINVAL;
9629 } else {
9630 if (cmd->speed != SPEED_100 &&
9631 cmd->speed != SPEED_10)
9632 return -EINVAL;
9633 }
9634 }
9635
David S. Millerf47c11e2005-06-24 20:18:35 -07009636 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009637
9638 tp->link_config.autoneg = cmd->autoneg;
9639 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -07009640 tp->link_config.advertising = (cmd->advertising |
9641 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009642 tp->link_config.speed = SPEED_INVALID;
9643 tp->link_config.duplex = DUPLEX_INVALID;
9644 } else {
9645 tp->link_config.advertising = 0;
9646 tp->link_config.speed = cmd->speed;
9647 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009648 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009649
Michael Chan24fcad62006-12-17 17:06:46 -08009650 tp->link_config.orig_speed = tp->link_config.speed;
9651 tp->link_config.orig_duplex = tp->link_config.duplex;
9652 tp->link_config.orig_autoneg = tp->link_config.autoneg;
9653
Linus Torvalds1da177e2005-04-16 15:20:36 -07009654 if (netif_running(dev))
9655 tg3_setup_phy(tp, 1);
9656
David S. Millerf47c11e2005-06-24 20:18:35 -07009657 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009658
Linus Torvalds1da177e2005-04-16 15:20:36 -07009659 return 0;
9660}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009661
Linus Torvalds1da177e2005-04-16 15:20:36 -07009662static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
9663{
9664 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009665
Linus Torvalds1da177e2005-04-16 15:20:36 -07009666 strcpy(info->driver, DRV_MODULE_NAME);
9667 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -08009668 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009669 strcpy(info->bus_info, pci_name(tp->pdev));
9670}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009671
Linus Torvalds1da177e2005-04-16 15:20:36 -07009672static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
9673{
9674 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009675
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009676 if ((tp->tg3_flags & TG3_FLAG_WOL_CAP) &&
9677 device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -07009678 wol->supported = WAKE_MAGIC;
9679 else
9680 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009681 wol->wolopts = 0;
Matt Carlson05ac4cb2008-11-03 16:53:46 -08009682 if ((tp->tg3_flags & TG3_FLAG_WOL_ENABLE) &&
9683 device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009684 wol->wolopts = WAKE_MAGIC;
9685 memset(&wol->sopass, 0, sizeof(wol->sopass));
9686}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009687
Linus Torvalds1da177e2005-04-16 15:20:36 -07009688static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
9689{
9690 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009691 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009692
Linus Torvalds1da177e2005-04-16 15:20:36 -07009693 if (wol->wolopts & ~WAKE_MAGIC)
9694 return -EINVAL;
9695 if ((wol->wolopts & WAKE_MAGIC) &&
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009696 !((tp->tg3_flags & TG3_FLAG_WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009697 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009698
David S. Millerf47c11e2005-06-24 20:18:35 -07009699 spin_lock_bh(&tp->lock);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009700 if (wol->wolopts & WAKE_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009701 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009702 device_set_wakeup_enable(dp, true);
9703 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009704 tp->tg3_flags &= ~TG3_FLAG_WOL_ENABLE;
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009705 device_set_wakeup_enable(dp, false);
9706 }
David S. Millerf47c11e2005-06-24 20:18:35 -07009707 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009708
Linus Torvalds1da177e2005-04-16 15:20:36 -07009709 return 0;
9710}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009711
Linus Torvalds1da177e2005-04-16 15:20:36 -07009712static u32 tg3_get_msglevel(struct net_device *dev)
9713{
9714 struct tg3 *tp = netdev_priv(dev);
9715 return tp->msg_enable;
9716}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009717
Linus Torvalds1da177e2005-04-16 15:20:36 -07009718static void tg3_set_msglevel(struct net_device *dev, u32 value)
9719{
9720 struct tg3 *tp = netdev_priv(dev);
9721 tp->msg_enable = value;
9722}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009723
Linus Torvalds1da177e2005-04-16 15:20:36 -07009724static int tg3_set_tso(struct net_device *dev, u32 value)
9725{
9726 struct tg3 *tp = netdev_priv(dev);
9727
9728 if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
9729 if (value)
9730 return -EINVAL;
9731 return 0;
9732 }
Matt Carlson027455a2008-12-21 20:19:30 -08009733 if ((dev->features & NETIF_F_IPV6_CSUM) &&
Matt Carlsone849cdc2009-11-13 13:03:38 +00009734 ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) ||
9735 (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3))) {
Matt Carlson9936bcf2007-10-10 18:03:07 -07009736 if (value) {
Michael Chanb0026622006-07-03 19:42:14 -07009737 dev->features |= NETIF_F_TSO6;
Matt Carlsone849cdc2009-11-13 13:03:38 +00009738 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
9739 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -07009740 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
9741 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Matt Carlson321d32a2008-11-21 17:22:19 -08009742 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00009743 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson9936bcf2007-10-10 18:03:07 -07009744 dev->features |= NETIF_F_TSO_ECN;
9745 } else
9746 dev->features &= ~(NETIF_F_TSO6 | NETIF_F_TSO_ECN);
Michael Chanb0026622006-07-03 19:42:14 -07009747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009748 return ethtool_op_set_tso(dev, value);
9749}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009750
Linus Torvalds1da177e2005-04-16 15:20:36 -07009751static int tg3_nway_reset(struct net_device *dev)
9752{
9753 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009754 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009755
Linus Torvalds1da177e2005-04-16 15:20:36 -07009756 if (!netif_running(dev))
9757 return -EAGAIN;
9758
Michael Chanc94e3942005-09-27 12:12:42 -07009759 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
9760 return -EINVAL;
9761
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009762 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
9763 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9764 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009765 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009766 } else {
9767 u32 bmcr;
9768
9769 spin_lock_bh(&tp->lock);
9770 r = -EINVAL;
9771 tg3_readphy(tp, MII_BMCR, &bmcr);
9772 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
9773 ((bmcr & BMCR_ANENABLE) ||
9774 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT))) {
9775 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
9776 BMCR_ANENABLE);
9777 r = 0;
9778 }
9779 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009780 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009781
Linus Torvalds1da177e2005-04-16 15:20:36 -07009782 return r;
9783}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009784
Linus Torvalds1da177e2005-04-16 15:20:36 -07009785static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
9786{
9787 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009788
Linus Torvalds1da177e2005-04-16 15:20:36 -07009789 ering->rx_max_pending = TG3_RX_RING_SIZE - 1;
9790 ering->rx_mini_max_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -08009791 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
9792 ering->rx_jumbo_max_pending = TG3_RX_JUMBO_RING_SIZE - 1;
9793 else
9794 ering->rx_jumbo_max_pending = 0;
9795
9796 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009797
9798 ering->rx_pending = tp->rx_pending;
9799 ering->rx_mini_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -08009800 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
9801 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
9802 else
9803 ering->rx_jumbo_pending = 0;
9804
Matt Carlsonf3f3f272009-08-28 14:03:21 +00009805 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009806}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009807
Linus Torvalds1da177e2005-04-16 15:20:36 -07009808static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
9809{
9810 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +00009811 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009812
Linus Torvalds1da177e2005-04-16 15:20:36 -07009813 if ((ering->rx_pending > TG3_RX_RING_SIZE - 1) ||
9814 (ering->rx_jumbo_pending > TG3_RX_JUMBO_RING_SIZE - 1) ||
Michael Chanbc3a9252006-10-18 20:55:18 -07009815 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
9816 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Michael Chan7f62ad52007-02-20 23:25:40 -08009817 ((tp->tg3_flags2 & TG3_FLG2_TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -07009818 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009819 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009820
Michael Chanbbe832c2005-06-24 20:20:04 -07009821 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009822 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009823 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -07009824 irq_sync = 1;
9825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009826
Michael Chanbbe832c2005-06-24 20:20:04 -07009827 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009828
Linus Torvalds1da177e2005-04-16 15:20:36 -07009829 tp->rx_pending = ering->rx_pending;
9830
9831 if ((tp->tg3_flags2 & TG3_FLG2_MAX_RXPEND_64) &&
9832 tp->rx_pending > 63)
9833 tp->rx_pending = 63;
9834 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +00009835
9836 for (i = 0; i < TG3_IRQ_MAX_VECS; i++)
9837 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009838
9839 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -07009840 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -07009841 err = tg3_restart_hw(tp, 1);
9842 if (!err)
9843 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009844 }
9845
David S. Millerf47c11e2005-06-24 20:18:35 -07009846 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009847
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009848 if (irq_sync && !err)
9849 tg3_phy_start(tp);
9850
Michael Chanb9ec6c12006-07-25 16:37:27 -07009851 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009852}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009853
Linus Torvalds1da177e2005-04-16 15:20:36 -07009854static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
9855{
9856 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009857
Linus Torvalds1da177e2005-04-16 15:20:36 -07009858 epause->autoneg = (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG) != 0;
Matt Carlson8d018622007-12-20 20:05:44 -08009859
Steve Glendinninge18ce342008-12-16 02:00:00 -08009860 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -08009861 epause->rx_pause = 1;
9862 else
9863 epause->rx_pause = 0;
9864
Steve Glendinninge18ce342008-12-16 02:00:00 -08009865 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -08009866 epause->tx_pause = 1;
9867 else
9868 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009869}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009870
Linus Torvalds1da177e2005-04-16 15:20:36 -07009871static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
9872{
9873 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009874 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009875
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009876 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
9877 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9878 return -EAGAIN;
9879
9880 if (epause->autoneg) {
9881 u32 newadv;
9882 struct phy_device *phydev;
9883
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009884 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009885
9886 if (epause->rx_pause) {
9887 if (epause->tx_pause)
9888 newadv = ADVERTISED_Pause;
9889 else
9890 newadv = ADVERTISED_Pause |
9891 ADVERTISED_Asym_Pause;
9892 } else if (epause->tx_pause) {
9893 newadv = ADVERTISED_Asym_Pause;
9894 } else
9895 newadv = 0;
9896
9897 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
9898 u32 oldadv = phydev->advertising &
9899 (ADVERTISED_Pause |
9900 ADVERTISED_Asym_Pause);
9901 if (oldadv != newadv) {
9902 phydev->advertising &=
9903 ~(ADVERTISED_Pause |
9904 ADVERTISED_Asym_Pause);
9905 phydev->advertising |= newadv;
9906 err = phy_start_aneg(phydev);
9907 }
9908 } else {
9909 tp->link_config.advertising &=
9910 ~(ADVERTISED_Pause |
9911 ADVERTISED_Asym_Pause);
9912 tp->link_config.advertising |= newadv;
9913 }
9914 } else {
9915 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -08009916 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009917 else
Steve Glendinninge18ce342008-12-16 02:00:00 -08009918 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009919
9920 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -08009921 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009922 else
Steve Glendinninge18ce342008-12-16 02:00:00 -08009923 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009924
9925 if (netif_running(dev))
9926 tg3_setup_flow_control(tp, 0, 0);
9927 }
9928 } else {
9929 int irq_sync = 0;
9930
9931 if (netif_running(dev)) {
9932 tg3_netif_stop(tp);
9933 irq_sync = 1;
9934 }
9935
9936 tg3_full_lock(tp, irq_sync);
9937
9938 if (epause->autoneg)
9939 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
9940 else
9941 tp->tg3_flags &= ~TG3_FLAG_PAUSE_AUTONEG;
9942 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -08009943 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009944 else
Steve Glendinninge18ce342008-12-16 02:00:00 -08009945 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009946 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -08009947 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009948 else
Steve Glendinninge18ce342008-12-16 02:00:00 -08009949 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009950
9951 if (netif_running(dev)) {
9952 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
9953 err = tg3_restart_hw(tp, 1);
9954 if (!err)
9955 tg3_netif_start(tp);
9956 }
9957
9958 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -07009959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009960
Michael Chanb9ec6c12006-07-25 16:37:27 -07009961 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009962}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009963
Linus Torvalds1da177e2005-04-16 15:20:36 -07009964static u32 tg3_get_rx_csum(struct net_device *dev)
9965{
9966 struct tg3 *tp = netdev_priv(dev);
9967 return (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0;
9968}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009969
Linus Torvalds1da177e2005-04-16 15:20:36 -07009970static int tg3_set_rx_csum(struct net_device *dev, u32 data)
9971{
9972 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009973
Linus Torvalds1da177e2005-04-16 15:20:36 -07009974 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
9975 if (data != 0)
9976 return -EINVAL;
9977 return 0;
9978 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009979
David S. Millerf47c11e2005-06-24 20:18:35 -07009980 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009981 if (data)
9982 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
9983 else
9984 tp->tg3_flags &= ~TG3_FLAG_RX_CHECKSUMS;
David S. Millerf47c11e2005-06-24 20:18:35 -07009985 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009986
Linus Torvalds1da177e2005-04-16 15:20:36 -07009987 return 0;
9988}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009989
Linus Torvalds1da177e2005-04-16 15:20:36 -07009990static int tg3_set_tx_csum(struct net_device *dev, u32 data)
9991{
9992 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009993
Linus Torvalds1da177e2005-04-16 15:20:36 -07009994 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
9995 if (data != 0)
9996 return -EINVAL;
9997 return 0;
9998 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009999
Matt Carlson321d32a2008-11-21 17:22:19 -080010000 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Michael Chan6460d942007-07-14 19:07:52 -070010001 ethtool_op_set_tx_ipv6_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010002 else
Michael Chan9c27dbd2006-03-20 22:28:27 -080010003 ethtool_op_set_tx_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010004
10005 return 0;
10006}
10007
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010008static int tg3_get_sset_count (struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010009{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010010 switch (sset) {
10011 case ETH_SS_TEST:
10012 return TG3_NUM_TEST;
10013 case ETH_SS_STATS:
10014 return TG3_NUM_STATS;
10015 default:
10016 return -EOPNOTSUPP;
10017 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010018}
10019
Linus Torvalds1da177e2005-04-16 15:20:36 -070010020static void tg3_get_strings (struct net_device *dev, u32 stringset, u8 *buf)
10021{
10022 switch (stringset) {
10023 case ETH_SS_STATS:
10024 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10025 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010026 case ETH_SS_TEST:
10027 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10028 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010029 default:
10030 WARN_ON(1); /* we need a WARN() */
10031 break;
10032 }
10033}
10034
Michael Chan4009a932005-09-05 17:52:54 -070010035static int tg3_phys_id(struct net_device *dev, u32 data)
10036{
10037 struct tg3 *tp = netdev_priv(dev);
10038 int i;
10039
10040 if (!netif_running(tp->dev))
10041 return -EAGAIN;
10042
10043 if (data == 0)
Stephen Hemminger759afc32008-02-23 19:51:59 -080010044 data = UINT_MAX / 2;
Michael Chan4009a932005-09-05 17:52:54 -070010045
10046 for (i = 0; i < (data * 2); i++) {
10047 if ((i % 2) == 0)
10048 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10049 LED_CTRL_1000MBPS_ON |
10050 LED_CTRL_100MBPS_ON |
10051 LED_CTRL_10MBPS_ON |
10052 LED_CTRL_TRAFFIC_OVERRIDE |
10053 LED_CTRL_TRAFFIC_BLINK |
10054 LED_CTRL_TRAFFIC_LED);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010055
Michael Chan4009a932005-09-05 17:52:54 -070010056 else
10057 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10058 LED_CTRL_TRAFFIC_OVERRIDE);
10059
10060 if (msleep_interruptible(500))
10061 break;
10062 }
10063 tw32(MAC_LED_CTRL, tp->led_ctrl);
10064 return 0;
10065}
10066
Linus Torvalds1da177e2005-04-16 15:20:36 -070010067static void tg3_get_ethtool_stats (struct net_device *dev,
10068 struct ethtool_stats *estats, u64 *tmp_stats)
10069{
10070 struct tg3 *tp = netdev_priv(dev);
10071 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10072}
10073
Michael Chan566f86a2005-05-29 14:56:58 -070010074#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010075#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10076#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10077#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Michael Chanb16250e2006-09-27 16:10:14 -070010078#define NVRAM_SELFBOOT_HW_SIZE 0x20
10079#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010080
10081static int tg3_test_nvram(struct tg3 *tp)
10082{
Al Virob9fc7dc2007-12-17 22:59:57 -080010083 u32 csum, magic;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010084 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010085 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010086
Matt Carlsondf259d82009-04-20 06:57:14 +000010087 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM)
10088 return 0;
10089
Matt Carlsone4f34112009-02-25 14:25:00 +000010090 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010091 return -EIO;
10092
Michael Chan1b277772006-03-20 22:27:48 -080010093 if (magic == TG3_EEPROM_MAGIC)
10094 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010095 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010096 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10097 TG3_EEPROM_SB_FORMAT_1) {
10098 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10099 case TG3_EEPROM_SB_REVISION_0:
10100 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10101 break;
10102 case TG3_EEPROM_SB_REVISION_2:
10103 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10104 break;
10105 case TG3_EEPROM_SB_REVISION_3:
10106 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10107 break;
10108 default:
10109 return 0;
10110 }
10111 } else
Michael Chan1b277772006-03-20 22:27:48 -080010112 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010113 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10114 size = NVRAM_SELFBOOT_HW_SIZE;
10115 else
Michael Chan1b277772006-03-20 22:27:48 -080010116 return -EIO;
10117
10118 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010119 if (buf == NULL)
10120 return -ENOMEM;
10121
Michael Chan1b277772006-03-20 22:27:48 -080010122 err = -EIO;
10123 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010124 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10125 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010126 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010127 }
Michael Chan1b277772006-03-20 22:27:48 -080010128 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010129 goto out;
10130
Michael Chan1b277772006-03-20 22:27:48 -080010131 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010132 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010133 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010134 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010135 u8 *buf8 = (u8 *) buf, csum8 = 0;
10136
Al Virob9fc7dc2007-12-17 22:59:57 -080010137 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010138 TG3_EEPROM_SB_REVISION_2) {
10139 /* For rev 2, the csum doesn't include the MBA. */
10140 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10141 csum8 += buf8[i];
10142 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10143 csum8 += buf8[i];
10144 } else {
10145 for (i = 0; i < size; i++)
10146 csum8 += buf8[i];
10147 }
Michael Chan1b277772006-03-20 22:27:48 -080010148
Adrian Bunkad96b482006-04-05 22:21:04 -070010149 if (csum8 == 0) {
10150 err = 0;
10151 goto out;
10152 }
10153
10154 err = -EIO;
10155 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010156 }
Michael Chan566f86a2005-05-29 14:56:58 -070010157
Al Virob9fc7dc2007-12-17 22:59:57 -080010158 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010159 TG3_EEPROM_MAGIC_HW) {
10160 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010161 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010162 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010163
10164 /* Separate the parity bits and the data bytes. */
10165 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10166 if ((i == 0) || (i == 8)) {
10167 int l;
10168 u8 msk;
10169
10170 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10171 parity[k++] = buf8[i] & msk;
10172 i++;
10173 }
10174 else if (i == 16) {
10175 int l;
10176 u8 msk;
10177
10178 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10179 parity[k++] = buf8[i] & msk;
10180 i++;
10181
10182 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10183 parity[k++] = buf8[i] & msk;
10184 i++;
10185 }
10186 data[j++] = buf8[i];
10187 }
10188
10189 err = -EIO;
10190 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10191 u8 hw8 = hweight8(data[i]);
10192
10193 if ((hw8 & 0x1) && parity[i])
10194 goto out;
10195 else if (!(hw8 & 0x1) && !parity[i])
10196 goto out;
10197 }
10198 err = 0;
10199 goto out;
10200 }
10201
Michael Chan566f86a2005-05-29 14:56:58 -070010202 /* Bootstrap checksum at offset 0x10 */
10203 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlsona9dc5292009-02-25 14:25:30 +000010204 if (csum != be32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010205 goto out;
10206
10207 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10208 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlsona9dc5292009-02-25 14:25:30 +000010209 if (csum != be32_to_cpu(buf[0xfc/4]))
10210 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070010211
10212 err = 0;
10213
10214out:
10215 kfree(buf);
10216 return err;
10217}
10218
Michael Chanca430072005-05-29 14:57:23 -070010219#define TG3_SERDES_TIMEOUT_SEC 2
10220#define TG3_COPPER_TIMEOUT_SEC 6
10221
10222static int tg3_test_link(struct tg3 *tp)
10223{
10224 int i, max;
10225
10226 if (!netif_running(tp->dev))
10227 return -ENODEV;
10228
Michael Chan4c987482005-09-05 17:52:38 -070010229 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070010230 max = TG3_SERDES_TIMEOUT_SEC;
10231 else
10232 max = TG3_COPPER_TIMEOUT_SEC;
10233
10234 for (i = 0; i < max; i++) {
10235 if (netif_carrier_ok(tp->dev))
10236 return 0;
10237
10238 if (msleep_interruptible(1000))
10239 break;
10240 }
10241
10242 return -EIO;
10243}
10244
Michael Chana71116d2005-05-29 14:58:11 -070010245/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080010246static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070010247{
Michael Chanb16250e2006-09-27 16:10:14 -070010248 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070010249 u32 offset, read_mask, write_mask, val, save_val, read_val;
10250 static struct {
10251 u16 offset;
10252 u16 flags;
10253#define TG3_FL_5705 0x1
10254#define TG3_FL_NOT_5705 0x2
10255#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070010256#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070010257 u32 read_mask;
10258 u32 write_mask;
10259 } reg_tbl[] = {
10260 /* MAC Control Registers */
10261 { MAC_MODE, TG3_FL_NOT_5705,
10262 0x00000000, 0x00ef6f8c },
10263 { MAC_MODE, TG3_FL_5705,
10264 0x00000000, 0x01ef6b8c },
10265 { MAC_STATUS, TG3_FL_NOT_5705,
10266 0x03800107, 0x00000000 },
10267 { MAC_STATUS, TG3_FL_5705,
10268 0x03800100, 0x00000000 },
10269 { MAC_ADDR_0_HIGH, 0x0000,
10270 0x00000000, 0x0000ffff },
10271 { MAC_ADDR_0_LOW, 0x0000,
10272 0x00000000, 0xffffffff },
10273 { MAC_RX_MTU_SIZE, 0x0000,
10274 0x00000000, 0x0000ffff },
10275 { MAC_TX_MODE, 0x0000,
10276 0x00000000, 0x00000070 },
10277 { MAC_TX_LENGTHS, 0x0000,
10278 0x00000000, 0x00003fff },
10279 { MAC_RX_MODE, TG3_FL_NOT_5705,
10280 0x00000000, 0x000007fc },
10281 { MAC_RX_MODE, TG3_FL_5705,
10282 0x00000000, 0x000007dc },
10283 { MAC_HASH_REG_0, 0x0000,
10284 0x00000000, 0xffffffff },
10285 { MAC_HASH_REG_1, 0x0000,
10286 0x00000000, 0xffffffff },
10287 { MAC_HASH_REG_2, 0x0000,
10288 0x00000000, 0xffffffff },
10289 { MAC_HASH_REG_3, 0x0000,
10290 0x00000000, 0xffffffff },
10291
10292 /* Receive Data and Receive BD Initiator Control Registers. */
10293 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
10294 0x00000000, 0xffffffff },
10295 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
10296 0x00000000, 0xffffffff },
10297 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
10298 0x00000000, 0x00000003 },
10299 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
10300 0x00000000, 0xffffffff },
10301 { RCVDBDI_STD_BD+0, 0x0000,
10302 0x00000000, 0xffffffff },
10303 { RCVDBDI_STD_BD+4, 0x0000,
10304 0x00000000, 0xffffffff },
10305 { RCVDBDI_STD_BD+8, 0x0000,
10306 0x00000000, 0xffff0002 },
10307 { RCVDBDI_STD_BD+0xc, 0x0000,
10308 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010309
Michael Chana71116d2005-05-29 14:58:11 -070010310 /* Receive BD Initiator Control Registers. */
10311 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
10312 0x00000000, 0xffffffff },
10313 { RCVBDI_STD_THRESH, TG3_FL_5705,
10314 0x00000000, 0x000003ff },
10315 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
10316 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010317
Michael Chana71116d2005-05-29 14:58:11 -070010318 /* Host Coalescing Control Registers. */
10319 { HOSTCC_MODE, TG3_FL_NOT_5705,
10320 0x00000000, 0x00000004 },
10321 { HOSTCC_MODE, TG3_FL_5705,
10322 0x00000000, 0x000000f6 },
10323 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
10324 0x00000000, 0xffffffff },
10325 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
10326 0x00000000, 0x000003ff },
10327 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
10328 0x00000000, 0xffffffff },
10329 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
10330 0x00000000, 0x000003ff },
10331 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
10332 0x00000000, 0xffffffff },
10333 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10334 0x00000000, 0x000000ff },
10335 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
10336 0x00000000, 0xffffffff },
10337 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10338 0x00000000, 0x000000ff },
10339 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
10340 0x00000000, 0xffffffff },
10341 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
10342 0x00000000, 0xffffffff },
10343 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10344 0x00000000, 0xffffffff },
10345 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10346 0x00000000, 0x000000ff },
10347 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10348 0x00000000, 0xffffffff },
10349 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10350 0x00000000, 0x000000ff },
10351 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
10352 0x00000000, 0xffffffff },
10353 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
10354 0x00000000, 0xffffffff },
10355 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
10356 0x00000000, 0xffffffff },
10357 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
10358 0x00000000, 0xffffffff },
10359 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
10360 0x00000000, 0xffffffff },
10361 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
10362 0xffffffff, 0x00000000 },
10363 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
10364 0xffffffff, 0x00000000 },
10365
10366 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070010367 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010368 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070010369 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010370 0x00000000, 0x007fffff },
10371 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
10372 0x00000000, 0x0000003f },
10373 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
10374 0x00000000, 0x000001ff },
10375 { BUFMGR_MB_HIGH_WATER, 0x0000,
10376 0x00000000, 0x000001ff },
10377 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
10378 0xffffffff, 0x00000000 },
10379 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
10380 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010381
Michael Chana71116d2005-05-29 14:58:11 -070010382 /* Mailbox Registers */
10383 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
10384 0x00000000, 0x000001ff },
10385 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
10386 0x00000000, 0x000001ff },
10387 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
10388 0x00000000, 0x000007ff },
10389 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
10390 0x00000000, 0x000001ff },
10391
10392 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
10393 };
10394
Michael Chanb16250e2006-09-27 16:10:14 -070010395 is_5705 = is_5750 = 0;
10396 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chana71116d2005-05-29 14:58:11 -070010397 is_5705 = 1;
Michael Chanb16250e2006-09-27 16:10:14 -070010398 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
10399 is_5750 = 1;
10400 }
Michael Chana71116d2005-05-29 14:58:11 -070010401
10402 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
10403 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
10404 continue;
10405
10406 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
10407 continue;
10408
10409 if ((tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
10410 (reg_tbl[i].flags & TG3_FL_NOT_5788))
10411 continue;
10412
Michael Chanb16250e2006-09-27 16:10:14 -070010413 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
10414 continue;
10415
Michael Chana71116d2005-05-29 14:58:11 -070010416 offset = (u32) reg_tbl[i].offset;
10417 read_mask = reg_tbl[i].read_mask;
10418 write_mask = reg_tbl[i].write_mask;
10419
10420 /* Save the original register content */
10421 save_val = tr32(offset);
10422
10423 /* Determine the read-only value. */
10424 read_val = save_val & read_mask;
10425
10426 /* Write zero to the register, then make sure the read-only bits
10427 * are not changed and the read/write bits are all zeros.
10428 */
10429 tw32(offset, 0);
10430
10431 val = tr32(offset);
10432
10433 /* Test the read-only and read/write bits. */
10434 if (((val & read_mask) != read_val) || (val & write_mask))
10435 goto out;
10436
10437 /* Write ones to all the bits defined by RdMask and WrMask, then
10438 * make sure the read-only bits are not changed and the
10439 * read/write bits are all ones.
10440 */
10441 tw32(offset, read_mask | write_mask);
10442
10443 val = tr32(offset);
10444
10445 /* Test the read-only bits. */
10446 if ((val & read_mask) != read_val)
10447 goto out;
10448
10449 /* Test the read/write bits. */
10450 if ((val & write_mask) != write_mask)
10451 goto out;
10452
10453 tw32(offset, save_val);
10454 }
10455
10456 return 0;
10457
10458out:
Michael Chan9f88f292006-12-07 00:22:54 -080010459 if (netif_msg_hw(tp))
10460 printk(KERN_ERR PFX "Register test failed at offset %x\n",
10461 offset);
Michael Chana71116d2005-05-29 14:58:11 -070010462 tw32(offset, save_val);
10463 return -EIO;
10464}
10465
Michael Chan7942e1d2005-05-29 14:58:36 -070010466static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
10467{
Arjan van de Venf71e1302006-03-03 21:33:57 -050010468 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070010469 int i;
10470 u32 j;
10471
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020010472 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070010473 for (j = 0; j < len; j += 4) {
10474 u32 val;
10475
10476 tg3_write_mem(tp, offset + j, test_pattern[i]);
10477 tg3_read_mem(tp, offset + j, &val);
10478 if (val != test_pattern[i])
10479 return -EIO;
10480 }
10481 }
10482 return 0;
10483}
10484
10485static int tg3_test_memory(struct tg3 *tp)
10486{
10487 static struct mem_entry {
10488 u32 offset;
10489 u32 len;
10490 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080010491 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070010492 { 0x00002000, 0x1c000},
10493 { 0xffffffff, 0x00000}
10494 }, mem_tbl_5705[] = {
10495 { 0x00000100, 0x0000c},
10496 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070010497 { 0x00004000, 0x00800},
10498 { 0x00006000, 0x01000},
10499 { 0x00008000, 0x02000},
10500 { 0x00010000, 0x0e000},
10501 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080010502 }, mem_tbl_5755[] = {
10503 { 0x00000200, 0x00008},
10504 { 0x00004000, 0x00800},
10505 { 0x00006000, 0x00800},
10506 { 0x00008000, 0x02000},
10507 { 0x00010000, 0x0c000},
10508 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070010509 }, mem_tbl_5906[] = {
10510 { 0x00000200, 0x00008},
10511 { 0x00004000, 0x00400},
10512 { 0x00006000, 0x00400},
10513 { 0x00008000, 0x01000},
10514 { 0x00010000, 0x01000},
10515 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070010516 };
10517 struct mem_entry *mem_tbl;
10518 int err = 0;
10519 int i;
10520
Matt Carlson321d32a2008-11-21 17:22:19 -080010521 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
10522 mem_tbl = mem_tbl_5755;
10523 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10524 mem_tbl = mem_tbl_5906;
10525 else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
10526 mem_tbl = mem_tbl_5705;
10527 else
Michael Chan7942e1d2005-05-29 14:58:36 -070010528 mem_tbl = mem_tbl_570x;
10529
10530 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
10531 if ((err = tg3_do_mem_test(tp, mem_tbl[i].offset,
10532 mem_tbl[i].len)) != 0)
10533 break;
10534 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010535
Michael Chan7942e1d2005-05-29 14:58:36 -070010536 return err;
10537}
10538
Michael Chan9f40dea2005-09-05 17:53:06 -070010539#define TG3_MAC_LOOPBACK 0
10540#define TG3_PHY_LOOPBACK 1
10541
10542static int tg3_run_loopback(struct tg3 *tp, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -070010543{
Michael Chan9f40dea2005-09-05 17:53:06 -070010544 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010545 u32 desc_idx, coal_now;
Michael Chanc76949a2005-05-29 14:58:59 -070010546 struct sk_buff *skb, *rx_skb;
10547 u8 *tx_data;
10548 dma_addr_t map;
10549 int num_pkts, tx_len, rx_len, i, err;
10550 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000010551 struct tg3_napi *tnapi, *rnapi;
Matt Carlson21f581a2009-08-28 14:00:25 +000010552 struct tg3_rx_prodring_set *tpr = &tp->prodring[0];
Michael Chanc76949a2005-05-29 14:58:59 -070010553
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010554 if (tp->irq_cnt > 1) {
10555 tnapi = &tp->napi[1];
10556 rnapi = &tp->napi[1];
10557 } else {
10558 tnapi = &tp->napi[0];
10559 rnapi = &tp->napi[0];
10560 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010561 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000010562
Michael Chan9f40dea2005-09-05 17:53:06 -070010563 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -070010564 /* HW errata - mac loopback fails in some cases on 5780.
10565 * Normal traffic and PHY loopback are not affected by
10566 * errata.
10567 */
10568 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780)
10569 return 0;
10570
Michael Chan9f40dea2005-09-05 17:53:06 -070010571 mac_mode = (tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK) |
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010572 MAC_MODE_PORT_INT_LPBACK;
10573 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
10574 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chan3f7045c2006-09-27 16:02:29 -070010575 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
10576 mac_mode |= MAC_MODE_PORT_MODE_MII;
10577 else
10578 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -070010579 tw32(MAC_MODE, mac_mode);
10580 } else if (loopback_mode == TG3_PHY_LOOPBACK) {
Michael Chan3f7045c2006-09-27 16:02:29 -070010581 u32 val;
10582
Matt Carlson7f97a4b2009-08-25 10:10:03 +000010583 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
10584 tg3_phy_fet_toggle_apd(tp, false);
Michael Chan5d64ad32006-12-07 00:19:40 -080010585 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
10586 } else
10587 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -070010588
Matt Carlson9ef8ca92007-07-11 19:48:29 -070010589 tg3_phy_toggle_automdix(tp, 0);
10590
Michael Chan3f7045c2006-09-27 16:02:29 -070010591 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -070010592 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -080010593
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010594 mac_mode = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000010595 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
10596 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10597 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x1800);
Michael Chan5d64ad32006-12-07 00:19:40 -080010598 mac_mode |= MAC_MODE_PORT_MODE_MII;
10599 } else
10600 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -070010601
Michael Chanc94e3942005-09-27 12:12:42 -070010602 /* reset to prevent losing 1st rx packet intermittently */
10603 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
10604 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10605 udelay(10);
10606 tw32_f(MAC_RX_MODE, tp->rx_mode);
10607 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010608 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
10609 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401)
10610 mac_mode &= ~MAC_MODE_LINK_POLARITY;
10611 else if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411)
10612 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -080010613 tg3_writephy(tp, MII_TG3_EXT_CTRL,
10614 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
10615 }
Michael Chan9f40dea2005-09-05 17:53:06 -070010616 tw32(MAC_MODE, mac_mode);
Michael Chan9f40dea2005-09-05 17:53:06 -070010617 }
10618 else
10619 return -EINVAL;
Michael Chanc76949a2005-05-29 14:58:59 -070010620
10621 err = -EIO;
10622
Michael Chanc76949a2005-05-29 14:58:59 -070010623 tx_len = 1514;
David S. Millera20e9c62006-07-31 22:38:16 -070010624 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070010625 if (!skb)
10626 return -ENOMEM;
10627
Michael Chanc76949a2005-05-29 14:58:59 -070010628 tx_data = skb_put(skb, tx_len);
10629 memcpy(tx_data, tp->dev->dev_addr, 6);
10630 memset(tx_data + 6, 0x0, 8);
10631
10632 tw32(MAC_RX_MTU_SIZE, tx_len + 4);
10633
10634 for (i = 14; i < tx_len; i++)
10635 tx_data[i] = (u8) (i & 0xff);
10636
Matt Carlsona21771d2009-11-02 14:25:31 +000010637 if (skb_dma_map(&tp->pdev->dev, skb, DMA_TO_DEVICE)) {
10638 dev_kfree_skb(skb);
10639 return -EIO;
10640 }
Michael Chanc76949a2005-05-29 14:58:59 -070010641
10642 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010643 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070010644
10645 udelay(10);
10646
Matt Carlson898a56f2009-08-28 14:02:40 +000010647 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070010648
Michael Chanc76949a2005-05-29 14:58:59 -070010649 num_pkts = 0;
10650
Matt Carlsona21771d2009-11-02 14:25:31 +000010651 tg3_set_txd(tnapi, tnapi->tx_prod,
10652 skb_shinfo(skb)->dma_head, tx_len, 0, 1);
Michael Chanc76949a2005-05-29 14:58:59 -070010653
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010654 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070010655 num_pkts++;
10656
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010657 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
10658 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070010659
10660 udelay(10);
10661
Matt Carlson303fc922009-11-02 14:27:34 +000010662 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
10663 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070010664 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010665 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070010666
10667 udelay(10);
10668
Matt Carlson898a56f2009-08-28 14:02:40 +000010669 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
10670 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010671 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070010672 (rx_idx == (rx_start_idx + num_pkts)))
10673 break;
10674 }
10675
Matt Carlsona21771d2009-11-02 14:25:31 +000010676 skb_dma_unmap(&tp->pdev->dev, skb, DMA_TO_DEVICE);
Michael Chanc76949a2005-05-29 14:58:59 -070010677 dev_kfree_skb(skb);
10678
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010679 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070010680 goto out;
10681
10682 if (rx_idx != rx_start_idx + num_pkts)
10683 goto out;
10684
Matt Carlson72334482009-08-28 14:03:01 +000010685 desc = &rnapi->rx_rcb[rx_start_idx];
Michael Chanc76949a2005-05-29 14:58:59 -070010686 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
10687 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
10688 if (opaque_key != RXD_OPAQUE_RING_STD)
10689 goto out;
10690
10691 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
10692 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
10693 goto out;
10694
10695 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) - 4;
10696 if (rx_len != tx_len)
10697 goto out;
10698
Matt Carlson21f581a2009-08-28 14:00:25 +000010699 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
Michael Chanc76949a2005-05-29 14:58:59 -070010700
Matt Carlson21f581a2009-08-28 14:00:25 +000010701 map = pci_unmap_addr(&tpr->rx_std_buffers[desc_idx], mapping);
Michael Chanc76949a2005-05-29 14:58:59 -070010702 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len, PCI_DMA_FROMDEVICE);
10703
10704 for (i = 14; i < tx_len; i++) {
10705 if (*(rx_skb->data + i) != (u8) (i & 0xff))
10706 goto out;
10707 }
10708 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010709
Michael Chanc76949a2005-05-29 14:58:59 -070010710 /* tg3_free_rings will unmap and free the rx_skb */
10711out:
10712 return err;
10713}
10714
Michael Chan9f40dea2005-09-05 17:53:06 -070010715#define TG3_MAC_LOOPBACK_FAILED 1
10716#define TG3_PHY_LOOPBACK_FAILED 2
10717#define TG3_LOOPBACK_FAILED (TG3_MAC_LOOPBACK_FAILED | \
10718 TG3_PHY_LOOPBACK_FAILED)
10719
10720static int tg3_test_loopback(struct tg3 *tp)
10721{
10722 int err = 0;
Matt Carlson9936bcf2007-10-10 18:03:07 -070010723 u32 cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070010724
10725 if (!netif_running(tp->dev))
10726 return TG3_LOOPBACK_FAILED;
10727
Michael Chanb9ec6c12006-07-25 16:37:27 -070010728 err = tg3_reset_hw(tp, 1);
10729 if (err)
10730 return TG3_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070010731
Matt Carlson6833c042008-11-21 17:18:59 -080010732 /* Turn off gphy autopowerdown. */
10733 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
10734 tg3_phy_toggle_apd(tp, false);
10735
Matt Carlson321d32a2008-11-21 17:22:19 -080010736 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070010737 int i;
10738 u32 status;
10739
10740 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
10741
10742 /* Wait for up to 40 microseconds to acquire lock. */
10743 for (i = 0; i < 4; i++) {
10744 status = tr32(TG3_CPMU_MUTEX_GNT);
10745 if (status == CPMU_MUTEX_GNT_DRIVER)
10746 break;
10747 udelay(10);
10748 }
10749
10750 if (status != CPMU_MUTEX_GNT_DRIVER)
10751 return TG3_LOOPBACK_FAILED;
10752
Matt Carlsonb2a5c192008-04-03 21:44:44 -070010753 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080010754 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070010755 tw32(TG3_CPMU_CTRL,
10756 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
10757 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070010758 }
10759
Michael Chan9f40dea2005-09-05 17:53:06 -070010760 if (tg3_run_loopback(tp, TG3_MAC_LOOPBACK))
10761 err |= TG3_MAC_LOOPBACK_FAILED;
Matt Carlson9936bcf2007-10-10 18:03:07 -070010762
Matt Carlson321d32a2008-11-21 17:22:19 -080010763 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070010764 tw32(TG3_CPMU_CTRL, cpmuctrl);
10765
10766 /* Release the mutex */
10767 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
10768 }
10769
Matt Carlsondd477002008-05-25 23:45:58 -070010770 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
10771 !(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
Michael Chan9f40dea2005-09-05 17:53:06 -070010772 if (tg3_run_loopback(tp, TG3_PHY_LOOPBACK))
10773 err |= TG3_PHY_LOOPBACK_FAILED;
10774 }
10775
Matt Carlson6833c042008-11-21 17:18:59 -080010776 /* Re-enable gphy autopowerdown. */
10777 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
10778 tg3_phy_toggle_apd(tp, true);
10779
Michael Chan9f40dea2005-09-05 17:53:06 -070010780 return err;
10781}
10782
Michael Chan4cafd3f2005-05-29 14:56:34 -070010783static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
10784 u64 *data)
10785{
Michael Chan566f86a2005-05-29 14:56:58 -070010786 struct tg3 *tp = netdev_priv(dev);
10787
Michael Chanbc1c7562006-03-20 17:48:03 -080010788 if (tp->link_config.phy_is_low_power)
10789 tg3_set_power_state(tp, PCI_D0);
10790
Michael Chan566f86a2005-05-29 14:56:58 -070010791 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
10792
10793 if (tg3_test_nvram(tp) != 0) {
10794 etest->flags |= ETH_TEST_FL_FAILED;
10795 data[0] = 1;
10796 }
Michael Chanca430072005-05-29 14:57:23 -070010797 if (tg3_test_link(tp) != 0) {
10798 etest->flags |= ETH_TEST_FL_FAILED;
10799 data[1] = 1;
10800 }
Michael Chana71116d2005-05-29 14:58:11 -070010801 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010802 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070010803
Michael Chanbbe832c2005-06-24 20:20:04 -070010804 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010805 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010806 tg3_netif_stop(tp);
10807 irq_sync = 1;
10808 }
10809
10810 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070010811
10812 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080010813 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070010814 tg3_halt_cpu(tp, RX_CPU_BASE);
10815 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
10816 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080010817 if (!err)
10818 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070010819
Michael Chand9ab5ad2006-03-20 22:27:35 -080010820 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
10821 tg3_phy_reset(tp);
10822
Michael Chana71116d2005-05-29 14:58:11 -070010823 if (tg3_test_registers(tp) != 0) {
10824 etest->flags |= ETH_TEST_FL_FAILED;
10825 data[2] = 1;
10826 }
Michael Chan7942e1d2005-05-29 14:58:36 -070010827 if (tg3_test_memory(tp) != 0) {
10828 etest->flags |= ETH_TEST_FL_FAILED;
10829 data[3] = 1;
10830 }
Michael Chan9f40dea2005-09-05 17:53:06 -070010831 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070010832 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070010833
David S. Millerf47c11e2005-06-24 20:18:35 -070010834 tg3_full_unlock(tp);
10835
Michael Chand4bc3922005-05-29 14:59:20 -070010836 if (tg3_test_interrupt(tp) != 0) {
10837 etest->flags |= ETH_TEST_FL_FAILED;
10838 data[5] = 1;
10839 }
David S. Millerf47c11e2005-06-24 20:18:35 -070010840
10841 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070010842
Michael Chana71116d2005-05-29 14:58:11 -070010843 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10844 if (netif_running(dev)) {
10845 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010846 err2 = tg3_restart_hw(tp, 1);
10847 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070010848 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070010849 }
David S. Millerf47c11e2005-06-24 20:18:35 -070010850
10851 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010852
10853 if (irq_sync && !err2)
10854 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070010855 }
Michael Chanbc1c7562006-03-20 17:48:03 -080010856 if (tp->link_config.phy_is_low_power)
10857 tg3_set_power_state(tp, PCI_D3hot);
10858
Michael Chan4cafd3f2005-05-29 14:56:34 -070010859}
10860
Linus Torvalds1da177e2005-04-16 15:20:36 -070010861static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
10862{
10863 struct mii_ioctl_data *data = if_mii(ifr);
10864 struct tg3 *tp = netdev_priv(dev);
10865 int err;
10866
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010867 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010868 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010869 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
10870 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010871 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10872 return phy_mii_ioctl(phydev, data, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010873 }
10874
Linus Torvalds1da177e2005-04-16 15:20:36 -070010875 switch(cmd) {
10876 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000010877 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010878
10879 /* fallthru */
10880 case SIOCGMIIREG: {
10881 u32 mii_regval;
10882
10883 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
10884 break; /* We have no PHY */
10885
Michael Chanbc1c7562006-03-20 17:48:03 -080010886 if (tp->link_config.phy_is_low_power)
10887 return -EAGAIN;
10888
David S. Millerf47c11e2005-06-24 20:18:35 -070010889 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010890 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070010891 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010892
10893 data->val_out = mii_regval;
10894
10895 return err;
10896 }
10897
10898 case SIOCSMIIREG:
10899 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
10900 break; /* We have no PHY */
10901
Michael Chanbc1c7562006-03-20 17:48:03 -080010902 if (tp->link_config.phy_is_low_power)
10903 return -EAGAIN;
10904
David S. Millerf47c11e2005-06-24 20:18:35 -070010905 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010906 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070010907 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010908
10909 return err;
10910
10911 default:
10912 /* do nothing */
10913 break;
10914 }
10915 return -EOPNOTSUPP;
10916}
10917
10918#if TG3_VLAN_TAG_USED
10919static void tg3_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
10920{
10921 struct tg3 *tp = netdev_priv(dev);
10922
Matt Carlson844b3ee2009-02-25 14:23:56 +000010923 if (!netif_running(dev)) {
10924 tp->vlgrp = grp;
10925 return;
10926 }
10927
10928 tg3_netif_stop(tp);
Michael Chan29315e82006-06-29 20:12:30 -070010929
David S. Millerf47c11e2005-06-24 20:18:35 -070010930 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010931
10932 tp->vlgrp = grp;
10933
10934 /* Update RX_MODE_KEEP_VLAN_TAG bit in RX_MODE register. */
10935 __tg3_set_rx_mode(dev);
10936
Matt Carlson844b3ee2009-02-25 14:23:56 +000010937 tg3_netif_start(tp);
Michael Chan46966542007-07-11 19:47:19 -070010938
10939 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010940}
Linus Torvalds1da177e2005-04-16 15:20:36 -070010941#endif
10942
David S. Miller15f98502005-05-18 22:49:26 -070010943static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
10944{
10945 struct tg3 *tp = netdev_priv(dev);
10946
10947 memcpy(ec, &tp->coal, sizeof(*ec));
10948 return 0;
10949}
10950
Michael Chand244c892005-07-05 14:42:33 -070010951static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
10952{
10953 struct tg3 *tp = netdev_priv(dev);
10954 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
10955 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
10956
10957 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
10958 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
10959 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
10960 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
10961 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
10962 }
10963
10964 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
10965 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
10966 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
10967 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
10968 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
10969 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
10970 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
10971 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
10972 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
10973 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
10974 return -EINVAL;
10975
10976 /* No rx interrupts will be generated if both are zero */
10977 if ((ec->rx_coalesce_usecs == 0) &&
10978 (ec->rx_max_coalesced_frames == 0))
10979 return -EINVAL;
10980
10981 /* No tx interrupts will be generated if both are zero */
10982 if ((ec->tx_coalesce_usecs == 0) &&
10983 (ec->tx_max_coalesced_frames == 0))
10984 return -EINVAL;
10985
10986 /* Only copy relevant parameters, ignore all others. */
10987 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
10988 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
10989 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
10990 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
10991 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
10992 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
10993 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
10994 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
10995 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
10996
10997 if (netif_running(dev)) {
10998 tg3_full_lock(tp, 0);
10999 __tg3_set_coalesce(tp, &tp->coal);
11000 tg3_full_unlock(tp);
11001 }
11002 return 0;
11003}
11004
Jeff Garzik7282d492006-09-13 14:30:00 -040011005static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011006 .get_settings = tg3_get_settings,
11007 .set_settings = tg3_set_settings,
11008 .get_drvinfo = tg3_get_drvinfo,
11009 .get_regs_len = tg3_get_regs_len,
11010 .get_regs = tg3_get_regs,
11011 .get_wol = tg3_get_wol,
11012 .set_wol = tg3_set_wol,
11013 .get_msglevel = tg3_get_msglevel,
11014 .set_msglevel = tg3_set_msglevel,
11015 .nway_reset = tg3_nway_reset,
11016 .get_link = ethtool_op_get_link,
11017 .get_eeprom_len = tg3_get_eeprom_len,
11018 .get_eeprom = tg3_get_eeprom,
11019 .set_eeprom = tg3_set_eeprom,
11020 .get_ringparam = tg3_get_ringparam,
11021 .set_ringparam = tg3_set_ringparam,
11022 .get_pauseparam = tg3_get_pauseparam,
11023 .set_pauseparam = tg3_set_pauseparam,
11024 .get_rx_csum = tg3_get_rx_csum,
11025 .set_rx_csum = tg3_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011026 .set_tx_csum = tg3_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011027 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011028 .set_tso = tg3_set_tso,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011029 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011030 .get_strings = tg3_get_strings,
Michael Chan4009a932005-09-05 17:52:54 -070011031 .phys_id = tg3_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011032 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011033 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011034 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011035 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011036};
11037
11038static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11039{
Michael Chan1b277772006-03-20 22:27:48 -080011040 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011041
11042 tp->nvram_size = EEPROM_CHIP_SIZE;
11043
Matt Carlsone4f34112009-02-25 14:25:00 +000011044 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011045 return;
11046
Michael Chanb16250e2006-09-27 16:10:14 -070011047 if ((magic != TG3_EEPROM_MAGIC) &&
11048 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11049 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011050 return;
11051
11052 /*
11053 * Size the chip by reading offsets at increasing powers of two.
11054 * When we encounter our validation signature, we know the addressing
11055 * has wrapped around, and thus have our chip size.
11056 */
Michael Chan1b277772006-03-20 22:27:48 -080011057 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011058
11059 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011060 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011061 return;
11062
Michael Chan18201802006-03-20 22:29:15 -080011063 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011064 break;
11065
11066 cursize <<= 1;
11067 }
11068
11069 tp->nvram_size = cursize;
11070}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011071
Linus Torvalds1da177e2005-04-16 15:20:36 -070011072static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11073{
11074 u32 val;
11075
Matt Carlsondf259d82009-04-20 06:57:14 +000011076 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
11077 tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011078 return;
11079
11080 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011081 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011082 tg3_get_eeprom_size(tp);
11083 return;
11084 }
11085
Matt Carlson6d348f22009-02-25 14:25:52 +000011086 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011087 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011088 /* This is confusing. We want to operate on the
11089 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11090 * call will read from NVRAM and byteswap the data
11091 * according to the byteswapping settings for all
11092 * other register accesses. This ensures the data we
11093 * want will always reside in the lower 16-bits.
11094 * However, the data in NVRAM is in LE format, which
11095 * means the data from the NVRAM read will always be
11096 * opposite the endianness of the CPU. The 16-bit
11097 * byteswap then brings the data to CPU endianness.
11098 */
11099 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011100 return;
11101 }
11102 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070011103 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011104}
11105
11106static void __devinit tg3_get_nvram_info(struct tg3 *tp)
11107{
11108 u32 nvcfg1;
11109
11110 nvcfg1 = tr32(NVRAM_CFG1);
11111 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
11112 tp->tg3_flags2 |= TG3_FLG2_FLASH;
Matt Carlson8590a602009-08-28 12:29:16 +000011113 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011114 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11115 tw32(NVRAM_CFG1, nvcfg1);
11116 }
11117
Michael Chan4c987482005-09-05 17:52:38 -070011118 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) ||
Michael Chana4e2b342005-10-26 15:46:52 -070011119 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011120 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011121 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
11122 tp->nvram_jedecnum = JEDEC_ATMEL;
11123 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
11124 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11125 break;
11126 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
11127 tp->nvram_jedecnum = JEDEC_ATMEL;
11128 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
11129 break;
11130 case FLASH_VENDOR_ATMEL_EEPROM:
11131 tp->nvram_jedecnum = JEDEC_ATMEL;
11132 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11133 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11134 break;
11135 case FLASH_VENDOR_ST:
11136 tp->nvram_jedecnum = JEDEC_ST;
11137 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
11138 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11139 break;
11140 case FLASH_VENDOR_SAIFUN:
11141 tp->nvram_jedecnum = JEDEC_SAIFUN;
11142 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
11143 break;
11144 case FLASH_VENDOR_SST_SMALL:
11145 case FLASH_VENDOR_SST_LARGE:
11146 tp->nvram_jedecnum = JEDEC_SST;
11147 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
11148 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011149 }
Matt Carlson8590a602009-08-28 12:29:16 +000011150 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011151 tp->nvram_jedecnum = JEDEC_ATMEL;
11152 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
11153 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11154 }
11155}
11156
Matt Carlsona1b950d2009-09-01 13:20:17 +000011157static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
11158{
11159 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
11160 case FLASH_5752PAGE_SIZE_256:
11161 tp->nvram_pagesize = 256;
11162 break;
11163 case FLASH_5752PAGE_SIZE_512:
11164 tp->nvram_pagesize = 512;
11165 break;
11166 case FLASH_5752PAGE_SIZE_1K:
11167 tp->nvram_pagesize = 1024;
11168 break;
11169 case FLASH_5752PAGE_SIZE_2K:
11170 tp->nvram_pagesize = 2048;
11171 break;
11172 case FLASH_5752PAGE_SIZE_4K:
11173 tp->nvram_pagesize = 4096;
11174 break;
11175 case FLASH_5752PAGE_SIZE_264:
11176 tp->nvram_pagesize = 264;
11177 break;
11178 case FLASH_5752PAGE_SIZE_528:
11179 tp->nvram_pagesize = 528;
11180 break;
11181 }
11182}
11183
Michael Chan361b4ac2005-04-21 17:11:21 -070011184static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
11185{
11186 u32 nvcfg1;
11187
11188 nvcfg1 = tr32(NVRAM_CFG1);
11189
Michael Chane6af3012005-04-21 17:12:05 -070011190 /* NVRAM protection for TPM */
11191 if (nvcfg1 & (1 << 27))
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011192 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Michael Chane6af3012005-04-21 17:12:05 -070011193
Michael Chan361b4ac2005-04-21 17:11:21 -070011194 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011195 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
11196 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
11197 tp->nvram_jedecnum = JEDEC_ATMEL;
11198 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11199 break;
11200 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11201 tp->nvram_jedecnum = JEDEC_ATMEL;
11202 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11203 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11204 break;
11205 case FLASH_5752VENDOR_ST_M45PE10:
11206 case FLASH_5752VENDOR_ST_M45PE20:
11207 case FLASH_5752VENDOR_ST_M45PE40:
11208 tp->nvram_jedecnum = JEDEC_ST;
11209 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11210 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11211 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070011212 }
11213
11214 if (tp->tg3_flags2 & TG3_FLG2_FLASH) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000011215 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000011216 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070011217 /* For eeprom, set pagesize to maximum eeprom size */
11218 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11219
11220 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11221 tw32(NVRAM_CFG1, nvcfg1);
11222 }
11223}
11224
Michael Chand3c7b882006-03-23 01:28:25 -080011225static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
11226{
Matt Carlson989a9d22007-05-05 11:51:05 -070011227 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080011228
11229 nvcfg1 = tr32(NVRAM_CFG1);
11230
11231 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070011232 if (nvcfg1 & (1 << 27)) {
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011233 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Matt Carlson989a9d22007-05-05 11:51:05 -070011234 protect = 1;
11235 }
Michael Chand3c7b882006-03-23 01:28:25 -080011236
Matt Carlson989a9d22007-05-05 11:51:05 -070011237 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11238 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011239 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11240 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11241 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11242 case FLASH_5755VENDOR_ATMEL_FLASH_5:
11243 tp->nvram_jedecnum = JEDEC_ATMEL;
11244 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11245 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11246 tp->nvram_pagesize = 264;
11247 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
11248 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
11249 tp->nvram_size = (protect ? 0x3e200 :
11250 TG3_NVRAM_SIZE_512KB);
11251 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
11252 tp->nvram_size = (protect ? 0x1f200 :
11253 TG3_NVRAM_SIZE_256KB);
11254 else
11255 tp->nvram_size = (protect ? 0x1f200 :
11256 TG3_NVRAM_SIZE_128KB);
11257 break;
11258 case FLASH_5752VENDOR_ST_M45PE10:
11259 case FLASH_5752VENDOR_ST_M45PE20:
11260 case FLASH_5752VENDOR_ST_M45PE40:
11261 tp->nvram_jedecnum = JEDEC_ST;
11262 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11263 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11264 tp->nvram_pagesize = 256;
11265 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
11266 tp->nvram_size = (protect ?
11267 TG3_NVRAM_SIZE_64KB :
11268 TG3_NVRAM_SIZE_128KB);
11269 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
11270 tp->nvram_size = (protect ?
11271 TG3_NVRAM_SIZE_64KB :
11272 TG3_NVRAM_SIZE_256KB);
11273 else
11274 tp->nvram_size = (protect ?
11275 TG3_NVRAM_SIZE_128KB :
11276 TG3_NVRAM_SIZE_512KB);
11277 break;
Michael Chand3c7b882006-03-23 01:28:25 -080011278 }
11279}
11280
Michael Chan1b277772006-03-20 22:27:48 -080011281static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
11282{
11283 u32 nvcfg1;
11284
11285 nvcfg1 = tr32(NVRAM_CFG1);
11286
11287 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011288 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
11289 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11290 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
11291 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11292 tp->nvram_jedecnum = JEDEC_ATMEL;
11293 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11294 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080011295
Matt Carlson8590a602009-08-28 12:29:16 +000011296 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11297 tw32(NVRAM_CFG1, nvcfg1);
11298 break;
11299 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11300 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11301 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11302 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11303 tp->nvram_jedecnum = JEDEC_ATMEL;
11304 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11305 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11306 tp->nvram_pagesize = 264;
11307 break;
11308 case FLASH_5752VENDOR_ST_M45PE10:
11309 case FLASH_5752VENDOR_ST_M45PE20:
11310 case FLASH_5752VENDOR_ST_M45PE40:
11311 tp->nvram_jedecnum = JEDEC_ST;
11312 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11313 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11314 tp->nvram_pagesize = 256;
11315 break;
Michael Chan1b277772006-03-20 22:27:48 -080011316 }
11317}
11318
Matt Carlson6b91fa02007-10-10 18:01:09 -070011319static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
11320{
11321 u32 nvcfg1, protect = 0;
11322
11323 nvcfg1 = tr32(NVRAM_CFG1);
11324
11325 /* NVRAM protection for TPM */
11326 if (nvcfg1 & (1 << 27)) {
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011327 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011328 protect = 1;
11329 }
11330
11331 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11332 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011333 case FLASH_5761VENDOR_ATMEL_ADB021D:
11334 case FLASH_5761VENDOR_ATMEL_ADB041D:
11335 case FLASH_5761VENDOR_ATMEL_ADB081D:
11336 case FLASH_5761VENDOR_ATMEL_ADB161D:
11337 case FLASH_5761VENDOR_ATMEL_MDB021D:
11338 case FLASH_5761VENDOR_ATMEL_MDB041D:
11339 case FLASH_5761VENDOR_ATMEL_MDB081D:
11340 case FLASH_5761VENDOR_ATMEL_MDB161D:
11341 tp->nvram_jedecnum = JEDEC_ATMEL;
11342 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11343 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11344 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
11345 tp->nvram_pagesize = 256;
11346 break;
11347 case FLASH_5761VENDOR_ST_A_M45PE20:
11348 case FLASH_5761VENDOR_ST_A_M45PE40:
11349 case FLASH_5761VENDOR_ST_A_M45PE80:
11350 case FLASH_5761VENDOR_ST_A_M45PE16:
11351 case FLASH_5761VENDOR_ST_M_M45PE20:
11352 case FLASH_5761VENDOR_ST_M_M45PE40:
11353 case FLASH_5761VENDOR_ST_M_M45PE80:
11354 case FLASH_5761VENDOR_ST_M_M45PE16:
11355 tp->nvram_jedecnum = JEDEC_ST;
11356 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11357 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11358 tp->nvram_pagesize = 256;
11359 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011360 }
11361
11362 if (protect) {
11363 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
11364 } else {
11365 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011366 case FLASH_5761VENDOR_ATMEL_ADB161D:
11367 case FLASH_5761VENDOR_ATMEL_MDB161D:
11368 case FLASH_5761VENDOR_ST_A_M45PE16:
11369 case FLASH_5761VENDOR_ST_M_M45PE16:
11370 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
11371 break;
11372 case FLASH_5761VENDOR_ATMEL_ADB081D:
11373 case FLASH_5761VENDOR_ATMEL_MDB081D:
11374 case FLASH_5761VENDOR_ST_A_M45PE80:
11375 case FLASH_5761VENDOR_ST_M_M45PE80:
11376 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
11377 break;
11378 case FLASH_5761VENDOR_ATMEL_ADB041D:
11379 case FLASH_5761VENDOR_ATMEL_MDB041D:
11380 case FLASH_5761VENDOR_ST_A_M45PE40:
11381 case FLASH_5761VENDOR_ST_M_M45PE40:
11382 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11383 break;
11384 case FLASH_5761VENDOR_ATMEL_ADB021D:
11385 case FLASH_5761VENDOR_ATMEL_MDB021D:
11386 case FLASH_5761VENDOR_ST_A_M45PE20:
11387 case FLASH_5761VENDOR_ST_M_M45PE20:
11388 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11389 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011390 }
11391 }
11392}
11393
Michael Chanb5d37722006-09-27 16:06:21 -070011394static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
11395{
11396 tp->nvram_jedecnum = JEDEC_ATMEL;
11397 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11398 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11399}
11400
Matt Carlson321d32a2008-11-21 17:22:19 -080011401static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
11402{
11403 u32 nvcfg1;
11404
11405 nvcfg1 = tr32(NVRAM_CFG1);
11406
11407 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11408 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11409 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11410 tp->nvram_jedecnum = JEDEC_ATMEL;
11411 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11412 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11413
11414 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11415 tw32(NVRAM_CFG1, nvcfg1);
11416 return;
11417 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11418 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11419 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11420 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11421 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11422 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11423 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11424 tp->nvram_jedecnum = JEDEC_ATMEL;
11425 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11426 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11427
11428 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11429 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11430 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11431 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11432 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11433 break;
11434 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11435 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11436 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11437 break;
11438 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11439 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11440 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11441 break;
11442 }
11443 break;
11444 case FLASH_5752VENDOR_ST_M45PE10:
11445 case FLASH_5752VENDOR_ST_M45PE20:
11446 case FLASH_5752VENDOR_ST_M45PE40:
11447 tp->nvram_jedecnum = JEDEC_ST;
11448 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11449 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11450
11451 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11452 case FLASH_5752VENDOR_ST_M45PE10:
11453 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11454 break;
11455 case FLASH_5752VENDOR_ST_M45PE20:
11456 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11457 break;
11458 case FLASH_5752VENDOR_ST_M45PE40:
11459 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11460 break;
11461 }
11462 break;
11463 default:
Matt Carlsondf259d82009-04-20 06:57:14 +000011464 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM;
Matt Carlson321d32a2008-11-21 17:22:19 -080011465 return;
11466 }
11467
Matt Carlsona1b950d2009-09-01 13:20:17 +000011468 tg3_nvram_get_pagesize(tp, nvcfg1);
11469 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Matt Carlson321d32a2008-11-21 17:22:19 -080011470 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011471}
11472
11473
11474static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
11475{
11476 u32 nvcfg1;
11477
11478 nvcfg1 = tr32(NVRAM_CFG1);
11479
11480 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11481 case FLASH_5717VENDOR_ATMEL_EEPROM:
11482 case FLASH_5717VENDOR_MICRO_EEPROM:
11483 tp->nvram_jedecnum = JEDEC_ATMEL;
11484 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11485 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11486
11487 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11488 tw32(NVRAM_CFG1, nvcfg1);
11489 return;
11490 case FLASH_5717VENDOR_ATMEL_MDB011D:
11491 case FLASH_5717VENDOR_ATMEL_ADB011B:
11492 case FLASH_5717VENDOR_ATMEL_ADB011D:
11493 case FLASH_5717VENDOR_ATMEL_MDB021D:
11494 case FLASH_5717VENDOR_ATMEL_ADB021B:
11495 case FLASH_5717VENDOR_ATMEL_ADB021D:
11496 case FLASH_5717VENDOR_ATMEL_45USPT:
11497 tp->nvram_jedecnum = JEDEC_ATMEL;
11498 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11499 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11500
11501 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11502 case FLASH_5717VENDOR_ATMEL_MDB021D:
11503 case FLASH_5717VENDOR_ATMEL_ADB021B:
11504 case FLASH_5717VENDOR_ATMEL_ADB021D:
11505 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11506 break;
11507 default:
11508 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11509 break;
11510 }
Matt Carlson321d32a2008-11-21 17:22:19 -080011511 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011512 case FLASH_5717VENDOR_ST_M_M25PE10:
11513 case FLASH_5717VENDOR_ST_A_M25PE10:
11514 case FLASH_5717VENDOR_ST_M_M45PE10:
11515 case FLASH_5717VENDOR_ST_A_M45PE10:
11516 case FLASH_5717VENDOR_ST_M_M25PE20:
11517 case FLASH_5717VENDOR_ST_A_M25PE20:
11518 case FLASH_5717VENDOR_ST_M_M45PE20:
11519 case FLASH_5717VENDOR_ST_A_M45PE20:
11520 case FLASH_5717VENDOR_ST_25USPT:
11521 case FLASH_5717VENDOR_ST_45USPT:
11522 tp->nvram_jedecnum = JEDEC_ST;
11523 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11524 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11525
11526 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11527 case FLASH_5717VENDOR_ST_M_M25PE20:
11528 case FLASH_5717VENDOR_ST_A_M25PE20:
11529 case FLASH_5717VENDOR_ST_M_M45PE20:
11530 case FLASH_5717VENDOR_ST_A_M45PE20:
11531 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11532 break;
11533 default:
11534 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11535 break;
11536 }
Matt Carlson321d32a2008-11-21 17:22:19 -080011537 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011538 default:
11539 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM;
11540 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080011541 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000011542
11543 tg3_nvram_get_pagesize(tp, nvcfg1);
11544 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
11545 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
Matt Carlson321d32a2008-11-21 17:22:19 -080011546}
11547
Linus Torvalds1da177e2005-04-16 15:20:36 -070011548/* Chips other than 5700/5701 use the NVRAM for fetching info. */
11549static void __devinit tg3_nvram_init(struct tg3 *tp)
11550{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011551 tw32_f(GRC_EEPROM_ADDR,
11552 (EEPROM_ADDR_FSM_RESET |
11553 (EEPROM_DEFAULT_CLOCK_PERIOD <<
11554 EEPROM_ADDR_CLKPERD_SHIFT)));
11555
Michael Chan9d57f012006-12-07 00:23:25 -080011556 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011557
11558 /* Enable seeprom accesses. */
11559 tw32_f(GRC_LOCAL_CTRL,
11560 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
11561 udelay(100);
11562
11563 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
11564 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
11565 tp->tg3_flags |= TG3_FLAG_NVRAM;
11566
Michael Chanec41c7d2006-01-17 02:40:55 -080011567 if (tg3_nvram_lock(tp)) {
11568 printk(KERN_WARNING PFX "%s: Cannot get nvarm lock, "
11569 "tg3_nvram_init failed.\n", tp->dev->name);
11570 return;
11571 }
Michael Chane6af3012005-04-21 17:12:05 -070011572 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011573
Matt Carlson989a9d22007-05-05 11:51:05 -070011574 tp->nvram_size = 0;
11575
Michael Chan361b4ac2005-04-21 17:11:21 -070011576 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
11577 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080011578 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
11579 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070011580 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070011581 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
11582 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080011583 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070011584 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
11585 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070011586 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11587 tg3_get_5906_nvram_info(tp);
Matt Carlson321d32a2008-11-21 17:22:19 -080011588 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
11589 tg3_get_57780_nvram_info(tp);
Matt Carlsona1b950d2009-09-01 13:20:17 +000011590 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
11591 tg3_get_5717_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070011592 else
11593 tg3_get_nvram_info(tp);
11594
Matt Carlson989a9d22007-05-05 11:51:05 -070011595 if (tp->nvram_size == 0)
11596 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011597
Michael Chane6af3012005-04-21 17:12:05 -070011598 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080011599 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011600
11601 } else {
11602 tp->tg3_flags &= ~(TG3_FLAG_NVRAM | TG3_FLAG_NVRAM_BUFFERED);
11603
11604 tg3_get_eeprom_size(tp);
11605 }
11606}
11607
Linus Torvalds1da177e2005-04-16 15:20:36 -070011608static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
11609 u32 offset, u32 len, u8 *buf)
11610{
11611 int i, j, rc = 0;
11612 u32 val;
11613
11614 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011615 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011616 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011617
11618 addr = offset + i;
11619
11620 memcpy(&data, buf + i, 4);
11621
Matt Carlson62cedd12009-04-20 14:52:29 -070011622 /*
11623 * The SEEPROM interface expects the data to always be opposite
11624 * the native endian format. We accomplish this by reversing
11625 * all the operations that would have been performed on the
11626 * data from a call to tg3_nvram_read_be32().
11627 */
11628 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011629
11630 val = tr32(GRC_EEPROM_ADDR);
11631 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
11632
11633 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
11634 EEPROM_ADDR_READ);
11635 tw32(GRC_EEPROM_ADDR, val |
11636 (0 << EEPROM_ADDR_DEVID_SHIFT) |
11637 (addr & EEPROM_ADDR_ADDR_MASK) |
11638 EEPROM_ADDR_START |
11639 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011640
Michael Chan9d57f012006-12-07 00:23:25 -080011641 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011642 val = tr32(GRC_EEPROM_ADDR);
11643
11644 if (val & EEPROM_ADDR_COMPLETE)
11645 break;
Michael Chan9d57f012006-12-07 00:23:25 -080011646 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011647 }
11648 if (!(val & EEPROM_ADDR_COMPLETE)) {
11649 rc = -EBUSY;
11650 break;
11651 }
11652 }
11653
11654 return rc;
11655}
11656
11657/* offset and length are dword aligned */
11658static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
11659 u8 *buf)
11660{
11661 int ret = 0;
11662 u32 pagesize = tp->nvram_pagesize;
11663 u32 pagemask = pagesize - 1;
11664 u32 nvram_cmd;
11665 u8 *tmp;
11666
11667 tmp = kmalloc(pagesize, GFP_KERNEL);
11668 if (tmp == NULL)
11669 return -ENOMEM;
11670
11671 while (len) {
11672 int j;
Michael Chane6af3012005-04-21 17:12:05 -070011673 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011674
11675 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011676
Linus Torvalds1da177e2005-04-16 15:20:36 -070011677 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011678 ret = tg3_nvram_read_be32(tp, phy_addr + j,
11679 (__be32 *) (tmp + j));
11680 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011681 break;
11682 }
11683 if (ret)
11684 break;
11685
11686 page_off = offset & pagemask;
11687 size = pagesize;
11688 if (len < size)
11689 size = len;
11690
11691 len -= size;
11692
11693 memcpy(tmp + page_off, buf, size);
11694
11695 offset = offset + (pagesize - page_off);
11696
Michael Chane6af3012005-04-21 17:12:05 -070011697 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011698
11699 /*
11700 * Before we can erase the flash page, we need
11701 * to issue a special "write enable" command.
11702 */
11703 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11704
11705 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11706 break;
11707
11708 /* Erase the target page */
11709 tw32(NVRAM_ADDR, phy_addr);
11710
11711 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
11712 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
11713
11714 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11715 break;
11716
11717 /* Issue another write enable to start the write. */
11718 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11719
11720 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11721 break;
11722
11723 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011724 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011725
Al Virob9fc7dc2007-12-17 22:59:57 -080011726 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000011727
Al Virob9fc7dc2007-12-17 22:59:57 -080011728 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011729
11730 tw32(NVRAM_ADDR, phy_addr + j);
11731
11732 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
11733 NVRAM_CMD_WR;
11734
11735 if (j == 0)
11736 nvram_cmd |= NVRAM_CMD_FIRST;
11737 else if (j == (pagesize - 4))
11738 nvram_cmd |= NVRAM_CMD_LAST;
11739
11740 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
11741 break;
11742 }
11743 if (ret)
11744 break;
11745 }
11746
11747 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11748 tg3_nvram_exec_cmd(tp, nvram_cmd);
11749
11750 kfree(tmp);
11751
11752 return ret;
11753}
11754
11755/* offset and length are dword aligned */
11756static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
11757 u8 *buf)
11758{
11759 int i, ret = 0;
11760
11761 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011762 u32 page_off, phy_addr, nvram_cmd;
11763 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011764
11765 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080011766 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011767
11768 page_off = offset % tp->nvram_pagesize;
11769
Michael Chan18201802006-03-20 22:29:15 -080011770 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011771
11772 tw32(NVRAM_ADDR, phy_addr);
11773
11774 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
11775
11776 if ((page_off == 0) || (i == 0))
11777 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070011778 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011779 nvram_cmd |= NVRAM_CMD_LAST;
11780
11781 if (i == (len - 4))
11782 nvram_cmd |= NVRAM_CMD_LAST;
11783
Matt Carlson321d32a2008-11-21 17:22:19 -080011784 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
11785 !(tp->tg3_flags3 & TG3_FLG3_5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070011786 (tp->nvram_jedecnum == JEDEC_ST) &&
11787 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011788
11789 if ((ret = tg3_nvram_exec_cmd(tp,
11790 NVRAM_CMD_WREN | NVRAM_CMD_GO |
11791 NVRAM_CMD_DONE)))
11792
11793 break;
11794 }
11795 if (!(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
11796 /* We always do complete word writes to eeprom. */
11797 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
11798 }
11799
11800 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
11801 break;
11802 }
11803 return ret;
11804}
11805
11806/* offset and length are dword aligned */
11807static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
11808{
11809 int ret;
11810
Linus Torvalds1da177e2005-04-16 15:20:36 -070011811 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070011812 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
11813 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011814 udelay(40);
11815 }
11816
11817 if (!(tp->tg3_flags & TG3_FLAG_NVRAM)) {
11818 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
11819 }
11820 else {
11821 u32 grc_mode;
11822
Michael Chanec41c7d2006-01-17 02:40:55 -080011823 ret = tg3_nvram_lock(tp);
11824 if (ret)
11825 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011826
Michael Chane6af3012005-04-21 17:12:05 -070011827 tg3_enable_nvram_access(tp);
11828 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011829 !(tp->tg3_flags3 & TG3_FLG3_PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011830 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011831
11832 grc_mode = tr32(GRC_MODE);
11833 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
11834
11835 if ((tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) ||
11836 !(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
11837
11838 ret = tg3_nvram_write_block_buffered(tp, offset, len,
11839 buf);
11840 }
11841 else {
11842 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
11843 buf);
11844 }
11845
11846 grc_mode = tr32(GRC_MODE);
11847 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
11848
Michael Chane6af3012005-04-21 17:12:05 -070011849 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011850 tg3_nvram_unlock(tp);
11851 }
11852
11853 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070011854 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011855 udelay(40);
11856 }
11857
11858 return ret;
11859}
11860
11861struct subsys_tbl_ent {
11862 u16 subsys_vendor, subsys_devid;
11863 u32 phy_id;
11864};
11865
11866static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
11867 /* Broadcom boards. */
11868 { PCI_VENDOR_ID_BROADCOM, 0x1644, PHY_ID_BCM5401 }, /* BCM95700A6 */
11869 { PCI_VENDOR_ID_BROADCOM, 0x0001, PHY_ID_BCM5701 }, /* BCM95701A5 */
11870 { PCI_VENDOR_ID_BROADCOM, 0x0002, PHY_ID_BCM8002 }, /* BCM95700T6 */
11871 { PCI_VENDOR_ID_BROADCOM, 0x0003, 0 }, /* BCM95700A9 */
11872 { PCI_VENDOR_ID_BROADCOM, 0x0005, PHY_ID_BCM5701 }, /* BCM95701T1 */
11873 { PCI_VENDOR_ID_BROADCOM, 0x0006, PHY_ID_BCM5701 }, /* BCM95701T8 */
11874 { PCI_VENDOR_ID_BROADCOM, 0x0007, 0 }, /* BCM95701A7 */
11875 { PCI_VENDOR_ID_BROADCOM, 0x0008, PHY_ID_BCM5701 }, /* BCM95701A10 */
11876 { PCI_VENDOR_ID_BROADCOM, 0x8008, PHY_ID_BCM5701 }, /* BCM95701A12 */
11877 { PCI_VENDOR_ID_BROADCOM, 0x0009, PHY_ID_BCM5703 }, /* BCM95703Ax1 */
11878 { PCI_VENDOR_ID_BROADCOM, 0x8009, PHY_ID_BCM5703 }, /* BCM95703Ax2 */
11879
11880 /* 3com boards. */
11881 { PCI_VENDOR_ID_3COM, 0x1000, PHY_ID_BCM5401 }, /* 3C996T */
11882 { PCI_VENDOR_ID_3COM, 0x1006, PHY_ID_BCM5701 }, /* 3C996BT */
11883 { PCI_VENDOR_ID_3COM, 0x1004, 0 }, /* 3C996SX */
11884 { PCI_VENDOR_ID_3COM, 0x1007, PHY_ID_BCM5701 }, /* 3C1000T */
11885 { PCI_VENDOR_ID_3COM, 0x1008, PHY_ID_BCM5701 }, /* 3C940BR01 */
11886
11887 /* DELL boards. */
11888 { PCI_VENDOR_ID_DELL, 0x00d1, PHY_ID_BCM5401 }, /* VIPER */
11889 { PCI_VENDOR_ID_DELL, 0x0106, PHY_ID_BCM5401 }, /* JAGUAR */
11890 { PCI_VENDOR_ID_DELL, 0x0109, PHY_ID_BCM5411 }, /* MERLOT */
11891 { PCI_VENDOR_ID_DELL, 0x010a, PHY_ID_BCM5411 }, /* SLIM_MERLOT */
11892
11893 /* Compaq boards. */
11894 { PCI_VENDOR_ID_COMPAQ, 0x007c, PHY_ID_BCM5701 }, /* BANSHEE */
11895 { PCI_VENDOR_ID_COMPAQ, 0x009a, PHY_ID_BCM5701 }, /* BANSHEE_2 */
11896 { PCI_VENDOR_ID_COMPAQ, 0x007d, 0 }, /* CHANGELING */
11897 { PCI_VENDOR_ID_COMPAQ, 0x0085, PHY_ID_BCM5701 }, /* NC7780 */
11898 { PCI_VENDOR_ID_COMPAQ, 0x0099, PHY_ID_BCM5701 }, /* NC7780_2 */
11899
11900 /* IBM boards. */
11901 { PCI_VENDOR_ID_IBM, 0x0281, 0 } /* IBM??? */
11902};
11903
11904static inline struct subsys_tbl_ent *lookup_by_subsys(struct tg3 *tp)
11905{
11906 int i;
11907
11908 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
11909 if ((subsys_id_to_phy_id[i].subsys_vendor ==
11910 tp->pdev->subsystem_vendor) &&
11911 (subsys_id_to_phy_id[i].subsys_devid ==
11912 tp->pdev->subsystem_device))
11913 return &subsys_id_to_phy_id[i];
11914 }
11915 return NULL;
11916}
11917
Michael Chan7d0c41e2005-04-21 17:06:20 -070011918static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011919{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011920 u32 val;
Michael Chancaf636c72006-03-22 01:05:31 -080011921 u16 pmcsr;
11922
11923 /* On some early chips the SRAM cannot be accessed in D3hot state,
11924 * so need make sure we're in D0.
11925 */
11926 pci_read_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, &pmcsr);
11927 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
11928 pci_write_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, pmcsr);
11929 msleep(1);
Michael Chan7d0c41e2005-04-21 17:06:20 -070011930
11931 /* Make sure register accesses (indirect or otherwise)
11932 * will function correctly.
11933 */
11934 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
11935 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011936
David S. Millerf49639e2006-06-09 11:58:36 -070011937 /* The memory arbiter has to be enabled in order for SRAM accesses
11938 * to succeed. Normally on powerup the tg3 chip firmware will make
11939 * sure it is enabled, but other entities such as system netboot
11940 * code might disable it.
11941 */
11942 val = tr32(MEMARB_MODE);
11943 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
11944
Linus Torvalds1da177e2005-04-16 15:20:36 -070011945 tp->phy_id = PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070011946 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
11947
Gary Zambranoa85feb82007-05-05 11:52:19 -070011948 /* Assume an onboard device and WOL capable by default. */
11949 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT | TG3_FLAG_WOL_CAP;
David S. Miller72b845e2006-03-14 14:11:48 -080011950
Michael Chanb5d37722006-09-27 16:06:21 -070011951 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080011952 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Michael Chanb5d37722006-09-27 16:06:21 -070011953 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080011954 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
11955 }
Matt Carlson0527ba32007-10-10 18:03:30 -070011956 val = tr32(VCPU_CFGSHDW);
11957 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Matt Carlson8ed5d972007-05-07 00:25:49 -070011958 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
Matt Carlson0527ba32007-10-10 18:03:30 -070011959 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Matt Carlson20232762008-12-21 20:18:56 -080011960 (val & VCPU_CFGSHDW_WOL_MAGPKT))
Matt Carlson0527ba32007-10-10 18:03:30 -070011961 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Matt Carlson05ac4cb2008-11-03 16:53:46 -080011962 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070011963 }
11964
Linus Torvalds1da177e2005-04-16 15:20:36 -070011965 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
11966 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
11967 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070011968 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070011969 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011970
11971 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
11972 tp->nic_sram_data_cfg = nic_cfg;
11973
11974 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
11975 ver >>= NIC_SRAM_DATA_VER_SHIFT;
11976 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
11977 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
11978 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703) &&
11979 (ver > 0) && (ver < 0x100))
11980 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
11981
Matt Carlsona9daf362008-05-25 23:49:44 -070011982 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
11983 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
11984
Linus Torvalds1da177e2005-04-16 15:20:36 -070011985 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
11986 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
11987 eeprom_phy_serdes = 1;
11988
11989 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
11990 if (nic_phy_id != 0) {
11991 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
11992 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
11993
11994 eeprom_phy_id = (id1 >> 16) << 10;
11995 eeprom_phy_id |= (id2 & 0xfc00) << 16;
11996 eeprom_phy_id |= (id2 & 0x03ff) << 0;
11997 } else
11998 eeprom_phy_id = 0;
11999
Michael Chan7d0c41e2005-04-21 17:06:20 -070012000 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070012001 if (eeprom_phy_serdes) {
Michael Chana4e2b342005-10-26 15:46:52 -070012002 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chan747e8f82005-07-25 12:33:22 -070012003 tp->tg3_flags2 |= TG3_FLG2_MII_SERDES;
12004 else
12005 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
12006 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070012007
John W. Linvillecbf46852005-04-21 17:01:29 -070012008 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012009 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
12010 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070012011 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070012012 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
12013
12014 switch (led_cfg) {
12015 default:
12016 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
12017 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12018 break;
12019
12020 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
12021 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12022 break;
12023
12024 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
12025 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070012026
12027 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
12028 * read on some older 5700/5701 bootcode.
12029 */
12030 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12031 ASIC_REV_5700 ||
12032 GET_ASIC_REV(tp->pci_chip_rev_id) ==
12033 ASIC_REV_5701)
12034 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12035
Linus Torvalds1da177e2005-04-16 15:20:36 -070012036 break;
12037
12038 case SHASTA_EXT_LED_SHARED:
12039 tp->led_ctrl = LED_CTRL_MODE_SHARED;
12040 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
12041 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
12042 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12043 LED_CTRL_MODE_PHY_2);
12044 break;
12045
12046 case SHASTA_EXT_LED_MAC:
12047 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
12048 break;
12049
12050 case SHASTA_EXT_LED_COMBO:
12051 tp->led_ctrl = LED_CTRL_MODE_COMBO;
12052 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
12053 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12054 LED_CTRL_MODE_PHY_2);
12055 break;
12056
Stephen Hemminger855e1112008-04-16 16:37:28 -070012057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012058
12059 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12060 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
12061 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
12062 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12063
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012064 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
12065 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080012066
Michael Chan9d26e212006-12-07 00:21:14 -080012067 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012068 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012069 if ((tp->pdev->subsystem_vendor ==
12070 PCI_VENDOR_ID_ARIMA) &&
12071 (tp->pdev->subsystem_device == 0x205a ||
12072 tp->pdev->subsystem_device == 0x2063))
12073 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
12074 } else {
David S. Millerf49639e2006-06-09 11:58:36 -070012075 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012076 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
12077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012078
12079 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
12080 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
John W. Linvillecbf46852005-04-21 17:01:29 -070012081 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012082 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
12083 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012084
12085 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
12086 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
Matt Carlson0d3031d2007-10-10 18:02:43 -070012087 tp->tg3_flags3 |= TG3_FLG3_ENABLE_APE;
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012088
Gary Zambranoa85feb82007-05-05 11:52:19 -070012089 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES &&
12090 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
12091 tp->tg3_flags &= ~TG3_FLAG_WOL_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012092
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070012093 if ((tp->tg3_flags & TG3_FLAG_WOL_CAP) &&
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012094 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE))
Matt Carlson0527ba32007-10-10 18:03:30 -070012095 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
12096
Linus Torvalds1da177e2005-04-16 15:20:36 -070012097 if (cfg2 & (1 << 17))
12098 tp->tg3_flags2 |= TG3_FLG2_CAPACITIVE_COUPLING;
12099
12100 /* serdes signal pre-emphasis in register 0x590 set by */
12101 /* bootcode if bit 18 is set */
12102 if (cfg2 & (1 << 18))
12103 tp->tg3_flags2 |= TG3_FLG2_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070012104
Matt Carlson321d32a2008-11-21 17:22:19 -080012105 if (((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
12106 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080012107 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
12108 tp->tg3_flags3 |= TG3_FLG3_PHY_ENABLE_APD;
12109
Matt Carlson8ed5d972007-05-07 00:25:49 -070012110 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
12111 u32 cfg3;
12112
12113 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
12114 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
12115 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
12116 }
Matt Carlsona9daf362008-05-25 23:49:44 -070012117
12118 if (cfg4 & NIC_SRAM_RGMII_STD_IBND_DISABLE)
12119 tp->tg3_flags3 |= TG3_FLG3_RGMII_STD_IBND_DISABLE;
12120 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
12121 tp->tg3_flags3 |= TG3_FLG3_RGMII_EXT_IBND_RX_EN;
12122 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
12123 tp->tg3_flags3 |= TG3_FLG3_RGMII_EXT_IBND_TX_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012124 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012125done:
12126 device_init_wakeup(&tp->pdev->dev, tp->tg3_flags & TG3_FLAG_WOL_CAP);
12127 device_set_wakeup_enable(&tp->pdev->dev,
12128 tp->tg3_flags & TG3_FLAG_WOL_ENABLE);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012129}
12130
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012131static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
12132{
12133 int i;
12134 u32 val;
12135
12136 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
12137 tw32(OTP_CTRL, cmd);
12138
12139 /* Wait for up to 1 ms for command to execute. */
12140 for (i = 0; i < 100; i++) {
12141 val = tr32(OTP_STATUS);
12142 if (val & OTP_STATUS_CMD_DONE)
12143 break;
12144 udelay(10);
12145 }
12146
12147 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
12148}
12149
12150/* Read the gphy configuration from the OTP region of the chip. The gphy
12151 * configuration is a 32-bit value that straddles the alignment boundary.
12152 * We do two 32-bit reads and then shift and merge the results.
12153 */
12154static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
12155{
12156 u32 bhalf_otp, thalf_otp;
12157
12158 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
12159
12160 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
12161 return 0;
12162
12163 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
12164
12165 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12166 return 0;
12167
12168 thalf_otp = tr32(OTP_READ_DATA);
12169
12170 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
12171
12172 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12173 return 0;
12174
12175 bhalf_otp = tr32(OTP_READ_DATA);
12176
12177 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
12178}
12179
Michael Chan7d0c41e2005-04-21 17:06:20 -070012180static int __devinit tg3_phy_probe(struct tg3 *tp)
12181{
12182 u32 hw_phy_id_1, hw_phy_id_2;
12183 u32 hw_phy_id, hw_phy_id_masked;
12184 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012185
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012186 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)
12187 return tg3_phy_init(tp);
12188
Linus Torvalds1da177e2005-04-16 15:20:36 -070012189 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010012190 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012191 */
12192 err = 0;
Matt Carlson0d3031d2007-10-10 18:02:43 -070012193 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
12194 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012195 hw_phy_id = hw_phy_id_masked = PHY_ID_INVALID;
12196 } else {
12197 /* Now read the physical PHY_ID from the chip and verify
12198 * that it is sane. If it doesn't look good, we fall back
12199 * to either the hard-coded table based PHY_ID and failing
12200 * that the value found in the eeprom area.
12201 */
12202 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
12203 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
12204
12205 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
12206 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
12207 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
12208
12209 hw_phy_id_masked = hw_phy_id & PHY_ID_MASK;
12210 }
12211
12212 if (!err && KNOWN_PHY_ID(hw_phy_id_masked)) {
12213 tp->phy_id = hw_phy_id;
12214 if (hw_phy_id_masked == PHY_ID_BCM8002)
12215 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070012216 else
12217 tp->tg3_flags2 &= ~TG3_FLG2_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012218 } else {
Michael Chan7d0c41e2005-04-21 17:06:20 -070012219 if (tp->phy_id != PHY_ID_INVALID) {
12220 /* Do nothing, phy ID already set up in
12221 * tg3_get_eeprom_hw_cfg().
12222 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012223 } else {
12224 struct subsys_tbl_ent *p;
12225
12226 /* No eeprom signature? Try the hardcoded
12227 * subsys device table.
12228 */
12229 p = lookup_by_subsys(tp);
12230 if (!p)
12231 return -ENODEV;
12232
12233 tp->phy_id = p->phy_id;
12234 if (!tp->phy_id ||
12235 tp->phy_id == PHY_ID_BCM8002)
12236 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
12237 }
12238 }
12239
Michael Chan747e8f82005-07-25 12:33:22 -070012240 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) &&
Matt Carlson0d3031d2007-10-10 18:02:43 -070012241 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012242 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan3600d912006-12-07 00:21:48 -080012243 u32 bmsr, adv_reg, tg3_ctrl, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012244
12245 tg3_readphy(tp, MII_BMSR, &bmsr);
12246 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
12247 (bmsr & BMSR_LSTATUS))
12248 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012249
Linus Torvalds1da177e2005-04-16 15:20:36 -070012250 err = tg3_phy_reset(tp);
12251 if (err)
12252 return err;
12253
12254 adv_reg = (ADVERTISE_10HALF | ADVERTISE_10FULL |
12255 ADVERTISE_100HALF | ADVERTISE_100FULL |
12256 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
12257 tg3_ctrl = 0;
12258 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
12259 tg3_ctrl = (MII_TG3_CTRL_ADV_1000_HALF |
12260 MII_TG3_CTRL_ADV_1000_FULL);
12261 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
12262 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
12263 tg3_ctrl |= (MII_TG3_CTRL_AS_MASTER |
12264 MII_TG3_CTRL_ENABLE_AS_MASTER);
12265 }
12266
Michael Chan3600d912006-12-07 00:21:48 -080012267 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
12268 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
12269 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
12270 if (!tg3_copper_is_advertising_all(tp, mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012271 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
12272
12273 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
12274 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12275
12276 tg3_writephy(tp, MII_BMCR,
12277 BMCR_ANENABLE | BMCR_ANRESTART);
12278 }
12279 tg3_phy_set_wirespeed(tp);
12280
12281 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
12282 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
12283 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12284 }
12285
12286skip_phy_reset:
12287 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
12288 err = tg3_init_5401phy_dsp(tp);
12289 if (err)
12290 return err;
12291 }
12292
12293 if (!err && ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401)) {
12294 err = tg3_init_5401phy_dsp(tp);
12295 }
12296
Michael Chan747e8f82005-07-25 12:33:22 -070012297 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012298 tp->link_config.advertising =
12299 (ADVERTISED_1000baseT_Half |
12300 ADVERTISED_1000baseT_Full |
12301 ADVERTISED_Autoneg |
12302 ADVERTISED_FIBRE);
12303 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
12304 tp->link_config.advertising &=
12305 ~(ADVERTISED_1000baseT_Half |
12306 ADVERTISED_1000baseT_Full);
12307
12308 return err;
12309}
12310
12311static void __devinit tg3_read_partno(struct tg3 *tp)
12312{
Matt Carlson6d348f22009-02-25 14:25:52 +000012313 unsigned char vpd_data[256]; /* in little-endian format */
Michael Chanaf2c6a42006-11-07 14:57:51 -080012314 unsigned int i;
Michael Chan1b277772006-03-20 22:27:48 -080012315 u32 magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012316
Matt Carlsondf259d82009-04-20 06:57:14 +000012317 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
12318 tg3_nvram_read(tp, 0x0, &magic))
David S. Millerf49639e2006-06-09 11:58:36 -070012319 goto out_not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012320
Michael Chan18201802006-03-20 22:29:15 -080012321 if (magic == TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080012322 for (i = 0; i < 256; i += 4) {
12323 u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012324
Matt Carlson6d348f22009-02-25 14:25:52 +000012325 /* The data is in little-endian format in NVRAM.
12326 * Use the big-endian read routines to preserve
12327 * the byte order as it exists in NVRAM.
12328 */
12329 if (tg3_nvram_read_be32(tp, 0x100 + i, &tmp))
Michael Chan1b277772006-03-20 22:27:48 -080012330 goto out_not_found;
12331
Matt Carlson6d348f22009-02-25 14:25:52 +000012332 memcpy(&vpd_data[i], &tmp, sizeof(tmp));
Michael Chan1b277772006-03-20 22:27:48 -080012333 }
12334 } else {
12335 int vpd_cap;
12336
12337 vpd_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_VPD);
12338 for (i = 0; i < 256; i += 4) {
12339 u32 tmp, j = 0;
Al Virob9fc7dc2007-12-17 22:59:57 -080012340 __le32 v;
Michael Chan1b277772006-03-20 22:27:48 -080012341 u16 tmp16;
12342
12343 pci_write_config_word(tp->pdev, vpd_cap + PCI_VPD_ADDR,
12344 i);
12345 while (j++ < 100) {
12346 pci_read_config_word(tp->pdev, vpd_cap +
12347 PCI_VPD_ADDR, &tmp16);
12348 if (tmp16 & 0x8000)
12349 break;
12350 msleep(1);
12351 }
David S. Millerf49639e2006-06-09 11:58:36 -070012352 if (!(tmp16 & 0x8000))
12353 goto out_not_found;
12354
Michael Chan1b277772006-03-20 22:27:48 -080012355 pci_read_config_dword(tp->pdev, vpd_cap + PCI_VPD_DATA,
12356 &tmp);
Al Virob9fc7dc2007-12-17 22:59:57 -080012357 v = cpu_to_le32(tmp);
Matt Carlson6d348f22009-02-25 14:25:52 +000012358 memcpy(&vpd_data[i], &v, sizeof(v));
Michael Chan1b277772006-03-20 22:27:48 -080012359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012360 }
12361
12362 /* Now parse and find the part number. */
Michael Chanaf2c6a42006-11-07 14:57:51 -080012363 for (i = 0; i < 254; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012364 unsigned char val = vpd_data[i];
Michael Chanaf2c6a42006-11-07 14:57:51 -080012365 unsigned int block_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012366
12367 if (val == 0x82 || val == 0x91) {
12368 i = (i + 3 +
12369 (vpd_data[i + 1] +
12370 (vpd_data[i + 2] << 8)));
12371 continue;
12372 }
12373
12374 if (val != 0x90)
12375 goto out_not_found;
12376
12377 block_end = (i + 3 +
12378 (vpd_data[i + 1] +
12379 (vpd_data[i + 2] << 8)));
12380 i += 3;
Michael Chanaf2c6a42006-11-07 14:57:51 -080012381
12382 if (block_end > 256)
12383 goto out_not_found;
12384
12385 while (i < (block_end - 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012386 if (vpd_data[i + 0] == 'P' &&
12387 vpd_data[i + 1] == 'N') {
12388 int partno_len = vpd_data[i + 2];
12389
Michael Chanaf2c6a42006-11-07 14:57:51 -080012390 i += 3;
12391 if (partno_len > 24 || (partno_len + i) > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012392 goto out_not_found;
12393
12394 memcpy(tp->board_part_number,
Michael Chanaf2c6a42006-11-07 14:57:51 -080012395 &vpd_data[i], partno_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012396
12397 /* Success. */
12398 return;
12399 }
Michael Chanaf2c6a42006-11-07 14:57:51 -080012400 i += 3 + vpd_data[i + 2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070012401 }
12402
12403 /* Part number not found. */
12404 goto out_not_found;
12405 }
12406
12407out_not_found:
Michael Chanb5d37722006-09-27 16:06:21 -070012408 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12409 strcpy(tp->board_part_number, "BCM95906");
Matt Carlsondf259d82009-04-20 06:57:14 +000012410 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12411 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
12412 strcpy(tp->board_part_number, "BCM57780");
12413 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12414 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
12415 strcpy(tp->board_part_number, "BCM57760");
12416 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12417 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
12418 strcpy(tp->board_part_number, "BCM57790");
Matt Carlson5e7ccf22009-08-25 10:08:42 +000012419 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12420 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
12421 strcpy(tp->board_part_number, "BCM57788");
Michael Chanb5d37722006-09-27 16:06:21 -070012422 else
12423 strcpy(tp->board_part_number, "none");
Linus Torvalds1da177e2005-04-16 15:20:36 -070012424}
12425
Matt Carlson9c8a6202007-10-21 16:16:08 -070012426static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
12427{
12428 u32 val;
12429
Matt Carlsone4f34112009-02-25 14:25:00 +000012430 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012431 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000012432 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012433 val != 0)
12434 return 0;
12435
12436 return 1;
12437}
12438
Matt Carlsonacd9c112009-02-25 14:26:33 +000012439static void __devinit tg3_read_bc_ver(struct tg3 *tp)
12440{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012441 u32 val, offset, start, ver_offset;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012442 int i;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012443 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012444
12445 if (tg3_nvram_read(tp, 0xc, &offset) ||
12446 tg3_nvram_read(tp, 0x4, &start))
12447 return;
12448
12449 offset = tg3_nvram_logical_addr(tp, offset);
12450
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012451 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000012452 return;
12453
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012454 if ((val & 0xfc000000) == 0x0c000000) {
12455 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000012456 return;
12457
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012458 if (val == 0)
12459 newver = true;
12460 }
12461
12462 if (newver) {
12463 if (tg3_nvram_read(tp, offset + 8, &ver_offset))
12464 return;
12465
12466 offset = offset + ver_offset - start;
12467 for (i = 0; i < 16; i += 4) {
12468 __be32 v;
12469 if (tg3_nvram_read_be32(tp, offset + i, &v))
12470 return;
12471
12472 memcpy(tp->fw_ver + i, &v, sizeof(v));
12473 }
12474 } else {
12475 u32 major, minor;
12476
12477 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
12478 return;
12479
12480 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
12481 TG3_NVM_BCVER_MAJSFT;
12482 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
12483 snprintf(&tp->fw_ver[0], 32, "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000012484 }
12485}
12486
Matt Carlsona6f6cb12009-02-25 14:27:43 +000012487static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
12488{
12489 u32 val, major, minor;
12490
12491 /* Use native endian representation */
12492 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
12493 return;
12494
12495 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
12496 TG3_NVM_HWSB_CFG1_MAJSFT;
12497 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
12498 TG3_NVM_HWSB_CFG1_MINSFT;
12499
12500 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
12501}
12502
Matt Carlsondfe00d72008-11-21 17:19:41 -080012503static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
12504{
12505 u32 offset, major, minor, build;
12506
12507 tp->fw_ver[0] = 's';
12508 tp->fw_ver[1] = 'b';
12509 tp->fw_ver[2] = '\0';
12510
12511 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
12512 return;
12513
12514 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
12515 case TG3_EEPROM_SB_REVISION_0:
12516 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
12517 break;
12518 case TG3_EEPROM_SB_REVISION_2:
12519 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
12520 break;
12521 case TG3_EEPROM_SB_REVISION_3:
12522 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
12523 break;
12524 default:
12525 return;
12526 }
12527
Matt Carlsone4f34112009-02-25 14:25:00 +000012528 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080012529 return;
12530
12531 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
12532 TG3_EEPROM_SB_EDH_BLD_SHFT;
12533 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
12534 TG3_EEPROM_SB_EDH_MAJ_SHFT;
12535 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
12536
12537 if (minor > 99 || build > 26)
12538 return;
12539
12540 snprintf(&tp->fw_ver[2], 30, " v%d.%02d", major, minor);
12541
12542 if (build > 0) {
12543 tp->fw_ver[8] = 'a' + build - 1;
12544 tp->fw_ver[9] = '\0';
12545 }
12546}
12547
Matt Carlsonacd9c112009-02-25 14:26:33 +000012548static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080012549{
12550 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012551 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070012552
12553 for (offset = TG3_NVM_DIR_START;
12554 offset < TG3_NVM_DIR_END;
12555 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000012556 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012557 return;
12558
12559 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
12560 break;
12561 }
12562
12563 if (offset == TG3_NVM_DIR_END)
12564 return;
12565
12566 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
12567 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000012568 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012569 return;
12570
Matt Carlsone4f34112009-02-25 14:25:00 +000012571 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012572 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000012573 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012574 return;
12575
12576 offset += val - start;
12577
Matt Carlsonacd9c112009-02-25 14:26:33 +000012578 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012579
Matt Carlsonacd9c112009-02-25 14:26:33 +000012580 tp->fw_ver[vlen++] = ',';
12581 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070012582
12583 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012584 __be32 v;
12585 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012586 return;
12587
Al Virob9fc7dc2007-12-17 22:59:57 -080012588 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012589
Matt Carlsonacd9c112009-02-25 14:26:33 +000012590 if (vlen > TG3_VER_SIZE - sizeof(v)) {
12591 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012592 break;
12593 }
12594
Matt Carlsonacd9c112009-02-25 14:26:33 +000012595 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
12596 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012597 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000012598}
12599
Matt Carlson7fd76442009-02-25 14:27:20 +000012600static void __devinit tg3_read_dash_ver(struct tg3 *tp)
12601{
12602 int vlen;
12603 u32 apedata;
12604
12605 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) ||
12606 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
12607 return;
12608
12609 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
12610 if (apedata != APE_SEG_SIG_MAGIC)
12611 return;
12612
12613 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
12614 if (!(apedata & APE_FW_STATUS_READY))
12615 return;
12616
12617 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
12618
12619 vlen = strlen(tp->fw_ver);
12620
12621 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " DASH v%d.%d.%d.%d",
12622 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
12623 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
12624 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
12625 (apedata & APE_FW_VERSION_BLDMSK));
12626}
12627
Matt Carlsonacd9c112009-02-25 14:26:33 +000012628static void __devinit tg3_read_fw_ver(struct tg3 *tp)
12629{
12630 u32 val;
12631
Matt Carlsondf259d82009-04-20 06:57:14 +000012632 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) {
12633 tp->fw_ver[0] = 's';
12634 tp->fw_ver[1] = 'b';
12635 tp->fw_ver[2] = '\0';
12636
12637 return;
12638 }
12639
Matt Carlsonacd9c112009-02-25 14:26:33 +000012640 if (tg3_nvram_read(tp, 0, &val))
12641 return;
12642
12643 if (val == TG3_EEPROM_MAGIC)
12644 tg3_read_bc_ver(tp);
12645 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
12646 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000012647 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
12648 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000012649 else
12650 return;
12651
12652 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
12653 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
12654 return;
12655
12656 tg3_read_mgmtfw_ver(tp);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012657
12658 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080012659}
12660
Michael Chan7544b092007-05-05 13:08:32 -070012661static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
12662
Linus Torvalds1da177e2005-04-16 15:20:36 -070012663static int __devinit tg3_get_invariants(struct tg3 *tp)
12664{
12665 static struct pci_device_id write_reorder_chipsets[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012666 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
12667 PCI_DEVICE_ID_AMD_FE_GATE_700C) },
John W. Linvillec165b002006-07-08 13:28:53 -070012668 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
12669 PCI_DEVICE_ID_AMD_8131_BRIDGE) },
Michael Chan399de502005-10-03 14:02:39 -070012670 { PCI_DEVICE(PCI_VENDOR_ID_VIA,
12671 PCI_DEVICE_ID_VIA_8385_0) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012672 { },
12673 };
12674 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012675 u32 pci_state_reg, grc_misc_cfg;
12676 u32 val;
12677 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080012678 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012679
Linus Torvalds1da177e2005-04-16 15:20:36 -070012680 /* Force memory write invalidate off. If we leave it on,
12681 * then on 5700_BX chips we have to enable a workaround.
12682 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
12683 * to match the cacheline size. The Broadcom driver have this
12684 * workaround but turns MWI off all the times so never uses
12685 * it. This seems to suggest that the workaround is insufficient.
12686 */
12687 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
12688 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
12689 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
12690
12691 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
12692 * has the register indirect write enable bit set before
12693 * we try to access any of the MMIO registers. It is also
12694 * critical that the PCI-X hw workaround situation is decided
12695 * before that as well.
12696 */
12697 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12698 &misc_ctrl_reg);
12699
12700 tp->pci_chip_rev_id = (misc_ctrl_reg >>
12701 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070012702 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
12703 u32 prod_id_asic_rev;
12704
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012705 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717C ||
12706 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717S ||
12707 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718C ||
12708 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718S)
12709 pci_read_config_dword(tp->pdev,
12710 TG3PCI_GEN2_PRODID_ASICREV,
12711 &prod_id_asic_rev);
12712 else
12713 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
12714 &prod_id_asic_rev);
12715
Matt Carlson321d32a2008-11-21 17:22:19 -080012716 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070012717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012718
Michael Chanff645be2005-04-21 17:09:53 -070012719 /* Wrong chip ID in 5752 A0. This code can be removed later
12720 * as A0 is not in production.
12721 */
12722 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
12723 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
12724
Michael Chan68929142005-08-09 20:17:14 -070012725 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
12726 * we need to disable memory and use config. cycles
12727 * only to access all registers. The 5702/03 chips
12728 * can mistakenly decode the special cycles from the
12729 * ICH chipsets as memory write cycles, causing corruption
12730 * of register and memory space. Only certain ICH bridges
12731 * will drive special cycles with non-zero data during the
12732 * address phase which can fall within the 5703's address
12733 * range. This is not an ICH bug as the PCI spec allows
12734 * non-zero address during special cycles. However, only
12735 * these ICH bridges are known to drive non-zero addresses
12736 * during special cycles.
12737 *
12738 * Since special cycles do not cross PCI bridges, we only
12739 * enable this workaround if the 5703 is on the secondary
12740 * bus of these ICH bridges.
12741 */
12742 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
12743 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
12744 static struct tg3_dev_id {
12745 u32 vendor;
12746 u32 device;
12747 u32 rev;
12748 } ich_chipsets[] = {
12749 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
12750 PCI_ANY_ID },
12751 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
12752 PCI_ANY_ID },
12753 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
12754 0xa },
12755 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
12756 PCI_ANY_ID },
12757 { },
12758 };
12759 struct tg3_dev_id *pci_id = &ich_chipsets[0];
12760 struct pci_dev *bridge = NULL;
12761
12762 while (pci_id->vendor != 0) {
12763 bridge = pci_get_device(pci_id->vendor, pci_id->device,
12764 bridge);
12765 if (!bridge) {
12766 pci_id++;
12767 continue;
12768 }
12769 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070012770 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070012771 continue;
12772 }
12773 if (bridge->subordinate &&
12774 (bridge->subordinate->number ==
12775 tp->pdev->bus->number)) {
12776
12777 tp->tg3_flags2 |= TG3_FLG2_ICH_WORKAROUND;
12778 pci_dev_put(bridge);
12779 break;
12780 }
12781 }
12782 }
12783
Matt Carlson41588ba2008-04-19 18:12:33 -070012784 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
12785 static struct tg3_dev_id {
12786 u32 vendor;
12787 u32 device;
12788 } bridge_chipsets[] = {
12789 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
12790 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
12791 { },
12792 };
12793 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
12794 struct pci_dev *bridge = NULL;
12795
12796 while (pci_id->vendor != 0) {
12797 bridge = pci_get_device(pci_id->vendor,
12798 pci_id->device,
12799 bridge);
12800 if (!bridge) {
12801 pci_id++;
12802 continue;
12803 }
12804 if (bridge->subordinate &&
12805 (bridge->subordinate->number <=
12806 tp->pdev->bus->number) &&
12807 (bridge->subordinate->subordinate >=
12808 tp->pdev->bus->number)) {
12809 tp->tg3_flags3 |= TG3_FLG3_5701_DMA_BUG;
12810 pci_dev_put(bridge);
12811 break;
12812 }
12813 }
12814 }
12815
Michael Chan4a29cc22006-03-19 13:21:12 -080012816 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
12817 * DMA addresses > 40-bit. This bridge may have other additional
12818 * 57xx devices behind it in some 4-port NIC designs for example.
12819 * Any tg3 device found behind the bridge will also need the 40-bit
12820 * DMA workaround.
12821 */
Michael Chana4e2b342005-10-26 15:46:52 -070012822 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
12823 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
12824 tp->tg3_flags2 |= TG3_FLG2_5780_CLASS;
Michael Chan4a29cc22006-03-19 13:21:12 -080012825 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
Michael Chan4cf78e42005-07-25 12:29:19 -070012826 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Michael Chana4e2b342005-10-26 15:46:52 -070012827 }
Michael Chan4a29cc22006-03-19 13:21:12 -080012828 else {
12829 struct pci_dev *bridge = NULL;
12830
12831 do {
12832 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
12833 PCI_DEVICE_ID_SERVERWORKS_EPB,
12834 bridge);
12835 if (bridge && bridge->subordinate &&
12836 (bridge->subordinate->number <=
12837 tp->pdev->bus->number) &&
12838 (bridge->subordinate->subordinate >=
12839 tp->pdev->bus->number)) {
12840 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
12841 pci_dev_put(bridge);
12842 break;
12843 }
12844 } while (bridge);
12845 }
Michael Chan4cf78e42005-07-25 12:29:19 -070012846
Linus Torvalds1da177e2005-04-16 15:20:36 -070012847 /* Initialize misc host control in PCI block. */
12848 tp->misc_host_ctrl |= (misc_ctrl_reg &
12849 MISC_HOST_CTRL_CHIPREV);
12850 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12851 tp->misc_host_ctrl);
12852
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012853 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
12854 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
12855 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Michael Chan7544b092007-05-05 13:08:32 -070012856 tp->pdev_peer = tg3_find_peer(tp);
12857
Matt Carlson321d32a2008-11-21 17:22:19 -080012858 /* Intentionally exclude ASIC_REV_5906 */
12859 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad2006-03-20 22:27:35 -080012860 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070012861 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070012862 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012863 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012864 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
12865 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson321d32a2008-11-21 17:22:19 -080012866 tp->tg3_flags3 |= TG3_FLG3_5755_PLUS;
12867
12868 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
12869 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070012870 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080012871 (tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
Michael Chana4e2b342005-10-26 15:46:52 -070012872 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
John W. Linville6708e5c2005-04-21 17:00:52 -070012873 tp->tg3_flags2 |= TG3_FLG2_5750_PLUS;
12874
John W. Linville1b440c562005-04-21 17:03:18 -070012875 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) ||
12876 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
12877 tp->tg3_flags2 |= TG3_FLG2_5705_PLUS;
12878
Matt Carlson027455a2008-12-21 20:19:30 -080012879 /* 5700 B0 chips do not support checksumming correctly due
12880 * to hardware bugs.
12881 */
12882 if (tp->pci_chip_rev_id == CHIPREV_ID_5700_B0)
12883 tp->tg3_flags |= TG3_FLAG_BROKEN_CHECKSUMS;
12884 else {
12885 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
12886 tp->dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
12887 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
12888 tp->dev->features |= NETIF_F_IPV6_CSUM;
12889 }
12890
Matt Carlson507399f2009-11-13 13:03:37 +000012891 /* Determine TSO capabilities */
Matt Carlsone849cdc2009-11-13 13:03:38 +000012892 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
12893 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_3;
12894 else if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
12895 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlson507399f2009-11-13 13:03:37 +000012896 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_2;
12897 else if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
12898 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_1 | TG3_FLG2_TSO_BUG;
12899 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
12900 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
12901 tp->tg3_flags2 &= ~TG3_FLG2_TSO_BUG;
12902 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12903 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
12904 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
12905 tp->tg3_flags2 |= TG3_FLG2_TSO_BUG;
12906 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
12907 tp->fw_needed = FIRMWARE_TG3TSO5;
12908 else
12909 tp->fw_needed = FIRMWARE_TG3TSO;
12910 }
12911
12912 tp->irq_max = 1;
12913
Michael Chan5a6f3072006-03-20 22:28:05 -080012914 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Michael Chan7544b092007-05-05 13:08:32 -070012915 tp->tg3_flags |= TG3_FLAG_SUPPORT_MSI;
12916 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
12917 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
12918 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
12919 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
12920 tp->pdev_peer == tp->pdev))
12921 tp->tg3_flags &= ~TG3_FLAG_SUPPORT_MSI;
12922
Matt Carlson321d32a2008-11-21 17:22:19 -080012923 if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070012924 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080012925 tp->tg3_flags2 |= TG3_FLG2_1SHOT_MSI;
Michael Chan52c0fd82006-06-29 20:15:54 -070012926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012927
Matt Carlson507399f2009-11-13 13:03:37 +000012928 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
12929 tp->tg3_flags |= TG3_FLAG_SUPPORT_MSIX;
12930 tp->irq_max = TG3_IRQ_MAX_VECS;
12931 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012932 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000012933
Matt Carlson615774f2009-11-13 13:03:39 +000012934 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
12935 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12936 tp->tg3_flags3 |= TG3_FLG3_SHORT_DMA_BUG;
12937 else if (!(tp->tg3_flags3 & TG3_FLG3_5755_PLUS)) {
12938 tp->tg3_flags3 |= TG3_FLG3_4G_DMA_BNDRY_BUG;
12939 tp->tg3_flags3 |= TG3_FLG3_40BIT_DMA_LIMIT_BUG;
Matt Carlson0e1406d2009-11-02 12:33:33 +000012940 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012941
Matt Carlsonf51f3562008-05-25 23:45:08 -070012942 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012943 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
12944 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson8f666b02009-08-28 13:58:24 +000012945 tp->tg3_flags |= TG3_FLAG_JUMBO_CAPABLE;
Michael Chan0f893dc2005-07-25 12:30:38 -070012946
Matt Carlson52f44902008-11-21 17:17:04 -080012947 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
12948 &pci_state_reg);
12949
Matt Carlson5e7dfd02008-11-21 17:18:16 -080012950 tp->pcie_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_EXP);
12951 if (tp->pcie_cap != 0) {
12952 u16 lnkctl;
12953
Linus Torvalds1da177e2005-04-16 15:20:36 -070012954 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
Matt Carlson5f5c51e2007-11-12 21:19:37 -080012955
12956 pcie_set_readrq(tp->pdev, 4096);
12957
Matt Carlson5e7dfd02008-11-21 17:18:16 -080012958 pci_read_config_word(tp->pdev,
12959 tp->pcie_cap + PCI_EXP_LNKCTL,
12960 &lnkctl);
12961 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
12962 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanc7835a72006-11-15 21:14:42 -080012963 tp->tg3_flags2 &= ~TG3_FLG2_HW_TSO_2;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080012964 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080012965 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000012966 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
12967 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Matt Carlson5e7dfd02008-11-21 17:18:16 -080012968 tp->tg3_flags3 |= TG3_FLG3_CLKREQ_BUG;
Michael Chanc7835a72006-11-15 21:14:42 -080012969 }
Matt Carlson52f44902008-11-21 17:17:04 -080012970 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlsonfcb389d2008-11-03 16:55:44 -080012971 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
Matt Carlson52f44902008-11-21 17:17:04 -080012972 } else if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
12973 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
12974 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
12975 if (!tp->pcix_cap) {
12976 printk(KERN_ERR PFX "Cannot find PCI-X "
12977 "capability, aborting.\n");
12978 return -EIO;
12979 }
12980
12981 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
12982 tp->tg3_flags |= TG3_FLAG_PCIX_MODE;
12983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012984
Michael Chan399de502005-10-03 14:02:39 -070012985 /* If we have an AMD 762 or VIA K8T800 chipset, write
12986 * reordering to the mailbox registers done by the host
12987 * controller can cause major troubles. We read back from
12988 * every mailbox register write to force the writes to be
12989 * posted to the chip in order.
12990 */
12991 if (pci_dev_present(write_reorder_chipsets) &&
12992 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
12993 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
12994
Matt Carlson69fc4052008-12-21 20:19:57 -080012995 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
12996 &tp->pci_cacheline_sz);
12997 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
12998 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012999 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13000 tp->pci_lat_timer < 64) {
13001 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080013002 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13003 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013004 }
13005
Matt Carlson52f44902008-11-21 17:17:04 -080013006 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
13007 /* 5700 BX chips need to have their TX producer index
13008 * mailboxes written twice to workaround a bug.
13009 */
13010 tp->tg3_flags |= TG3_FLAG_TXD_MBOX_HWBUG;
Matt Carlson9974a352007-10-07 23:27:28 -070013011
Matt Carlson52f44902008-11-21 17:17:04 -080013012 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013013 *
13014 * The workaround is to use indirect register accesses
13015 * for all chip writes not to mailbox registers.
13016 */
Matt Carlson52f44902008-11-21 17:17:04 -080013017 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013018 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013019
13020 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
13021
13022 /* The chip can have it's power management PCI config
13023 * space registers clobbered due to this bug.
13024 * So explicitly force the chip into D0 here.
13025 */
Matt Carlson9974a352007-10-07 23:27:28 -070013026 pci_read_config_dword(tp->pdev,
13027 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013028 &pm_reg);
13029 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
13030 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070013031 pci_write_config_dword(tp->pdev,
13032 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013033 pm_reg);
13034
13035 /* Also, force SERR#/PERR# in PCI command. */
13036 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13037 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
13038 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13039 }
13040 }
13041
Linus Torvalds1da177e2005-04-16 15:20:36 -070013042 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
13043 tp->tg3_flags |= TG3_FLAG_PCI_HIGH_SPEED;
13044 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
13045 tp->tg3_flags |= TG3_FLAG_PCI_32BIT;
13046
13047 /* Chip-specific fixup from Broadcom driver */
13048 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
13049 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
13050 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
13051 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
13052 }
13053
Michael Chan1ee582d2005-08-09 20:16:46 -070013054 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070013055 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013056 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070013057 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070013058 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013059 tp->write32_tx_mbox = tg3_write32;
13060 tp->write32_rx_mbox = tg3_write32;
13061
13062 /* Various workaround register access methods */
13063 if (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG)
13064 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013065 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
13066 ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
13067 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
13068 /*
13069 * Back to back register writes can cause problems on these
13070 * chips, the workaround is to read back all reg writes
13071 * except those to mailbox regs.
13072 *
13073 * See tg3_write_indirect_reg32().
13074 */
Michael Chan1ee582d2005-08-09 20:16:46 -070013075 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013076 }
13077
Michael Chan1ee582d2005-08-09 20:16:46 -070013078 if ((tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG) ||
13079 (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)) {
13080 tp->write32_tx_mbox = tg3_write32_tx_mbox;
13081 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
13082 tp->write32_rx_mbox = tg3_write_flush_reg32;
13083 }
Michael Chan20094932005-08-09 20:16:32 -070013084
Michael Chan68929142005-08-09 20:17:14 -070013085 if (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND) {
13086 tp->read32 = tg3_read_indirect_reg32;
13087 tp->write32 = tg3_write_indirect_reg32;
13088 tp->read32_mbox = tg3_read_indirect_mbox;
13089 tp->write32_mbox = tg3_write_indirect_mbox;
13090 tp->write32_tx_mbox = tg3_write_indirect_mbox;
13091 tp->write32_rx_mbox = tg3_write_indirect_mbox;
13092
13093 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070013094 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070013095
13096 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13097 pci_cmd &= ~PCI_COMMAND_MEMORY;
13098 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13099 }
Michael Chanb5d37722006-09-27 16:06:21 -070013100 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
13101 tp->read32_mbox = tg3_read32_mbox_5906;
13102 tp->write32_mbox = tg3_write32_mbox_5906;
13103 tp->write32_tx_mbox = tg3_write32_mbox_5906;
13104 tp->write32_rx_mbox = tg3_write32_mbox_5906;
13105 }
Michael Chan68929142005-08-09 20:17:14 -070013106
Michael Chanbbadf502006-04-06 21:46:34 -070013107 if (tp->write32 == tg3_write_indirect_reg32 ||
13108 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
13109 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070013110 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Michael Chanbbadf502006-04-06 21:46:34 -070013111 tp->tg3_flags |= TG3_FLAG_SRAM_USE_CONFIG;
13112
Michael Chan7d0c41e2005-04-21 17:06:20 -070013113 /* Get eeprom hw config before calling tg3_set_power_state().
Michael Chan9d26e212006-12-07 00:21:14 -080013114 * In particular, the TG3_FLG2_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070013115 * determined before calling tg3_set_power_state() so that
13116 * we know whether or not to switch out of Vaux power.
13117 * When the flag is set, it means that GPIO1 is used for eeprom
13118 * write protect and also implies that it is a LOM where GPIOs
13119 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013120 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070013121 tg3_get_eeprom_hw_cfg(tp);
13122
Matt Carlson0d3031d2007-10-10 18:02:43 -070013123 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
13124 /* Allow reads and writes to the
13125 * APE register and memory space.
13126 */
13127 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
13128 PCISTATE_ALLOW_APE_SHMEM_WR;
13129 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
13130 pci_state_reg);
13131 }
13132
Matt Carlson9936bcf2007-10-10 18:03:07 -070013133 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013134 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013135 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013136 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
13137 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlsond30cdd22007-10-07 23:28:35 -070013138 tp->tg3_flags |= TG3_FLAG_CPMU_PRESENT;
13139
Michael Chan314fba32005-04-21 17:07:04 -070013140 /* Set up tp->grc_local_ctrl before calling tg3_set_power_state().
13141 * GPIO1 driven high will bring 5700's external PHY out of reset.
13142 * It is also used as eeprom write protect on LOMs.
13143 */
13144 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
13145 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
13146 (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT))
13147 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
13148 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070013149 /* Unused GPIO3 must be driven as output on 5752 because there
13150 * are no pull-up resistors on unused GPIO pins.
13151 */
13152 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13153 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070013154
Matt Carlson321d32a2008-11-21 17:22:19 -080013155 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
13156 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Michael Chanaf36e6b2006-03-23 01:28:06 -080013157 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13158
Matt Carlson8d519ab2009-04-20 06:58:01 +000013159 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
13160 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070013161 /* Turn off the debug UART. */
13162 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13163 if (tp->tg3_flags2 & TG3_FLG2_IS_NIC)
13164 /* Keep VMain power. */
13165 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
13166 GRC_LCLCTRL_GPIO_OUTPUT0;
13167 }
13168
Linus Torvalds1da177e2005-04-16 15:20:36 -070013169 /* Force the chip into D0. */
Michael Chanbc1c7562006-03-20 17:48:03 -080013170 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013171 if (err) {
13172 printk(KERN_ERR PFX "(%s) transition to D0 failed\n",
13173 pci_name(tp->pdev));
13174 return err;
13175 }
13176
Linus Torvalds1da177e2005-04-16 15:20:36 -070013177 /* Derive initial jumbo mode from MTU assigned in
13178 * ether_setup() via the alloc_etherdev() call
13179 */
Michael Chan0f893dc2005-07-25 12:30:38 -070013180 if (tp->dev->mtu > ETH_DATA_LEN &&
Michael Chana4e2b342005-10-26 15:46:52 -070013181 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan0f893dc2005-07-25 12:30:38 -070013182 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013183
13184 /* Determine WakeOnLan speed to use. */
13185 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13186 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
13187 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
13188 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
13189 tp->tg3_flags &= ~(TG3_FLAG_WOL_SPEED_100MB);
13190 } else {
13191 tp->tg3_flags |= TG3_FLAG_WOL_SPEED_100MB;
13192 }
13193
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013194 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13195 tp->tg3_flags3 |= TG3_FLG3_PHY_IS_FET;
13196
Linus Torvalds1da177e2005-04-16 15:20:36 -070013197 /* A few boards don't want Ethernet@WireSpeed phy feature */
13198 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
13199 ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
13200 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070013201 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013202 (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) ||
Michael Chan747e8f82005-07-25 12:33:22 -070013203 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013204 tp->tg3_flags2 |= TG3_FLG2_NO_ETH_WIRE_SPEED;
13205
13206 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
13207 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
13208 tp->tg3_flags2 |= TG3_FLG2_PHY_ADC_BUG;
13209 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
13210 tp->tg3_flags2 |= TG3_FLG2_PHY_5704_A0_BUG;
13211
Matt Carlson321d32a2008-11-21 17:22:19 -080013212 if ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013213 !(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080013214 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013215 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
13216 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717) {
Michael Chanc424cb22006-04-29 18:56:34 -070013217 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013218 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013219 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
13220 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080013221 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
13222 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
13223 tp->tg3_flags2 |= TG3_FLG2_PHY_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080013224 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
13225 tp->tg3_flags2 |= TG3_FLG2_PHY_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080013226 } else
Michael Chanc424cb22006-04-29 18:56:34 -070013227 tp->tg3_flags2 |= TG3_FLG2_PHY_BER_BUG;
13228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013229
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013230 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13231 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
13232 tp->phy_otp = tg3_read_otp_phycfg(tp);
13233 if (tp->phy_otp == 0)
13234 tp->phy_otp = TG3_OTP_DEFAULT;
13235 }
13236
Matt Carlsonf51f3562008-05-25 23:45:08 -070013237 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)
Matt Carlson8ef21422008-05-02 16:47:53 -070013238 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
13239 else
13240 tp->mi_mode = MAC_MI_MODE_BASE;
13241
Linus Torvalds1da177e2005-04-16 15:20:36 -070013242 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013243 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
13244 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
13245 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
13246
Matt Carlson321d32a2008-11-21 17:22:19 -080013247 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
13248 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson57e69832008-05-25 23:48:31 -070013249 tp->tg3_flags3 |= TG3_FLG3_USE_PHYLIB;
13250
Matt Carlson158d7ab2008-05-29 01:37:54 -070013251 err = tg3_mdio_init(tp);
13252 if (err)
13253 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013254
13255 /* Initialize data/descriptor byte/word swapping. */
13256 val = tr32(GRC_MODE);
13257 val &= GRC_MODE_HOST_STACKUP;
13258 tw32(GRC_MODE, val | tp->grc_mode);
13259
13260 tg3_switch_clocks(tp);
13261
13262 /* Clear this out for sanity. */
13263 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
13264
13265 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13266 &pci_state_reg);
13267 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
13268 (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) == 0) {
13269 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
13270
13271 if (chiprevid == CHIPREV_ID_5701_A0 ||
13272 chiprevid == CHIPREV_ID_5701_B0 ||
13273 chiprevid == CHIPREV_ID_5701_B2 ||
13274 chiprevid == CHIPREV_ID_5701_B5) {
13275 void __iomem *sram_base;
13276
13277 /* Write some dummy words into the SRAM status block
13278 * area, see if it reads back correctly. If the return
13279 * value is bad, force enable the PCIX workaround.
13280 */
13281 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
13282
13283 writel(0x00000000, sram_base);
13284 writel(0x00000000, sram_base + 4);
13285 writel(0xffffffff, sram_base + 4);
13286 if (readl(sram_base) != 0x00000000)
13287 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
13288 }
13289 }
13290
13291 udelay(50);
13292 tg3_nvram_init(tp);
13293
13294 grc_misc_cfg = tr32(GRC_MISC_CFG);
13295 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
13296
Linus Torvalds1da177e2005-04-16 15:20:36 -070013297 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
13298 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
13299 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
13300 tp->tg3_flags2 |= TG3_FLG2_IS_5788;
13301
David S. Millerfac9b832005-05-18 22:46:34 -070013302 if (!(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
13303 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700))
13304 tp->tg3_flags |= TG3_FLAG_TAGGED_STATUS;
13305 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
13306 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
13307 HOSTCC_MODE_CLRTICK_TXBD);
13308
13309 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
13310 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13311 tp->misc_host_ctrl);
13312 }
13313
Matt Carlson3bda1252008-08-15 14:08:22 -070013314 /* Preserve the APE MAC_MODE bits */
13315 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
13316 tp->mac_mode = tr32(MAC_MODE) |
13317 MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
13318 else
13319 tp->mac_mode = TG3_DEF_MAC_MODE;
13320
Linus Torvalds1da177e2005-04-16 15:20:36 -070013321 /* these are limited to 10/100 only */
13322 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13323 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
13324 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
13325 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
13326 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
13327 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
13328 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
13329 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
13330 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080013331 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
13332 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013333 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013334 (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013335 tp->tg3_flags |= TG3_FLAG_10_100_ONLY;
13336
13337 err = tg3_phy_probe(tp);
13338 if (err) {
13339 printk(KERN_ERR PFX "(%s) phy probe failed, err %d\n",
13340 pci_name(tp->pdev), err);
13341 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013342 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013343 }
13344
13345 tg3_read_partno(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080013346 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013347
13348 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
13349 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
13350 } else {
13351 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
13352 tp->tg3_flags |= TG3_FLAG_USE_MI_INTERRUPT;
13353 else
13354 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
13355 }
13356
13357 /* 5700 {AX,BX} chips have a broken status block link
13358 * change bit implementation, so we must use the
13359 * status register in those cases.
13360 */
13361 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
13362 tp->tg3_flags |= TG3_FLAG_USE_LINKCHG_REG;
13363 else
13364 tp->tg3_flags &= ~TG3_FLAG_USE_LINKCHG_REG;
13365
13366 /* The led_ctrl is set during tg3_phy_probe, here we might
13367 * have to force the link status polling mechanism based
13368 * upon subsystem IDs.
13369 */
13370 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070013371 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070013372 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
13373 tp->tg3_flags |= (TG3_FLAG_USE_MI_INTERRUPT |
13374 TG3_FLAG_USE_LINKCHG_REG);
13375 }
13376
13377 /* For all SERDES we poll the MAC status register. */
13378 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
13379 tp->tg3_flags |= TG3_FLAG_POLL_SERDES;
13380 else
13381 tp->tg3_flags &= ~TG3_FLAG_POLL_SERDES;
13382
Matt Carlsonad829262008-11-21 17:16:16 -080013383 tp->rx_offset = NET_IP_ALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013384 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
13385 (tp->tg3_flags & TG3_FLAG_PCIX_MODE) != 0)
13386 tp->rx_offset = 0;
13387
Michael Chanf92905d2006-06-29 20:14:29 -070013388 tp->rx_std_max_post = TG3_RX_RING_SIZE;
13389
13390 /* Increment the rx prod index on the rx std ring by at most
13391 * 8 for these chips to workaround hw errata.
13392 */
13393 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13394 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
13395 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
13396 tp->rx_std_max_post = 8;
13397
Matt Carlson8ed5d972007-05-07 00:25:49 -070013398 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND)
13399 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
13400 PCIE_PWR_MGMT_L1_THRESH_MSK;
13401
Linus Torvalds1da177e2005-04-16 15:20:36 -070013402 return err;
13403}
13404
David S. Miller49b6e95f2007-03-29 01:38:42 -070013405#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013406static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
13407{
13408 struct net_device *dev = tp->dev;
13409 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070013410 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070013411 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070013412 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013413
David S. Miller49b6e95f2007-03-29 01:38:42 -070013414 addr = of_get_property(dp, "local-mac-address", &len);
13415 if (addr && len == 6) {
13416 memcpy(dev->dev_addr, addr, 6);
13417 memcpy(dev->perm_addr, dev->dev_addr, 6);
13418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013419 }
13420 return -ENODEV;
13421}
13422
13423static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
13424{
13425 struct net_device *dev = tp->dev;
13426
13427 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070013428 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013429 return 0;
13430}
13431#endif
13432
13433static int __devinit tg3_get_device_address(struct tg3 *tp)
13434{
13435 struct net_device *dev = tp->dev;
13436 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080013437 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013438
David S. Miller49b6e95f2007-03-29 01:38:42 -070013439#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013440 if (!tg3_get_macaddr_sparc(tp))
13441 return 0;
13442#endif
13443
13444 mac_offset = 0x7c;
David S. Millerf49639e2006-06-09 11:58:36 -070013445 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
Michael Chana4e2b342005-10-26 15:46:52 -070013446 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013447 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
13448 mac_offset = 0xcc;
13449 if (tg3_nvram_lock(tp))
13450 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
13451 else
13452 tg3_nvram_unlock(tp);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013453 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13454 if (tr32(TG3_CPMU_STATUS) & TG3_CPMU_STATUS_PCIE_FUNC)
13455 mac_offset = 0xcc;
13456 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070013457 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013458
13459 /* First try to get it from MAC address mailbox. */
13460 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
13461 if ((hi >> 16) == 0x484b) {
13462 dev->dev_addr[0] = (hi >> 8) & 0xff;
13463 dev->dev_addr[1] = (hi >> 0) & 0xff;
13464
13465 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
13466 dev->dev_addr[2] = (lo >> 24) & 0xff;
13467 dev->dev_addr[3] = (lo >> 16) & 0xff;
13468 dev->dev_addr[4] = (lo >> 8) & 0xff;
13469 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013470
Michael Chan008652b2006-03-27 23:14:53 -080013471 /* Some old bootcode may report a 0 MAC address in SRAM */
13472 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
13473 }
13474 if (!addr_ok) {
13475 /* Next, try NVRAM. */
Matt Carlsondf259d82009-04-20 06:57:14 +000013476 if (!(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) &&
13477 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000013478 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070013479 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
13480 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080013481 }
13482 /* Finally just fetch it out of the MAC control regs. */
13483 else {
13484 hi = tr32(MAC_ADDR_0_HIGH);
13485 lo = tr32(MAC_ADDR_0_LOW);
13486
13487 dev->dev_addr[5] = lo & 0xff;
13488 dev->dev_addr[4] = (lo >> 8) & 0xff;
13489 dev->dev_addr[3] = (lo >> 16) & 0xff;
13490 dev->dev_addr[2] = (lo >> 24) & 0xff;
13491 dev->dev_addr[1] = hi & 0xff;
13492 dev->dev_addr[0] = (hi >> 8) & 0xff;
13493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013494 }
13495
13496 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070013497#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013498 if (!tg3_get_default_macaddr_sparc(tp))
13499 return 0;
13500#endif
13501 return -EINVAL;
13502 }
John W. Linville2ff43692005-09-12 14:44:20 -070013503 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013504 return 0;
13505}
13506
David S. Miller59e6b432005-05-18 22:50:10 -070013507#define BOUNDARY_SINGLE_CACHELINE 1
13508#define BOUNDARY_MULTI_CACHELINE 2
13509
13510static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
13511{
13512 int cacheline_size;
13513 u8 byte;
13514 int goal;
13515
13516 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
13517 if (byte == 0)
13518 cacheline_size = 1024;
13519 else
13520 cacheline_size = (int) byte * 4;
13521
13522 /* On 5703 and later chips, the boundary bits have no
13523 * effect.
13524 */
13525 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13526 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13527 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
13528 goto out;
13529
13530#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
13531 goal = BOUNDARY_MULTI_CACHELINE;
13532#else
13533#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
13534 goal = BOUNDARY_SINGLE_CACHELINE;
13535#else
13536 goal = 0;
13537#endif
13538#endif
13539
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000013540 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13541 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
13542 goto out;
13543 }
13544
David S. Miller59e6b432005-05-18 22:50:10 -070013545 if (!goal)
13546 goto out;
13547
13548 /* PCI controllers on most RISC systems tend to disconnect
13549 * when a device tries to burst across a cache-line boundary.
13550 * Therefore, letting tg3 do so just wastes PCI bandwidth.
13551 *
13552 * Unfortunately, for PCI-E there are only limited
13553 * write-side controls for this, and thus for reads
13554 * we will still get the disconnects. We'll also waste
13555 * these PCI cycles for both read and write for chips
13556 * other than 5700 and 5701 which do not implement the
13557 * boundary bits.
13558 */
13559 if ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
13560 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
13561 switch (cacheline_size) {
13562 case 16:
13563 case 32:
13564 case 64:
13565 case 128:
13566 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13567 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
13568 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
13569 } else {
13570 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
13571 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
13572 }
13573 break;
13574
13575 case 256:
13576 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
13577 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
13578 break;
13579
13580 default:
13581 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
13582 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
13583 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013584 }
David S. Miller59e6b432005-05-18 22:50:10 -070013585 } else if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
13586 switch (cacheline_size) {
13587 case 16:
13588 case 32:
13589 case 64:
13590 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13591 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
13592 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
13593 break;
13594 }
13595 /* fallthrough */
13596 case 128:
13597 default:
13598 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
13599 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
13600 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013601 }
David S. Miller59e6b432005-05-18 22:50:10 -070013602 } else {
13603 switch (cacheline_size) {
13604 case 16:
13605 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13606 val |= (DMA_RWCTRL_READ_BNDRY_16 |
13607 DMA_RWCTRL_WRITE_BNDRY_16);
13608 break;
13609 }
13610 /* fallthrough */
13611 case 32:
13612 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13613 val |= (DMA_RWCTRL_READ_BNDRY_32 |
13614 DMA_RWCTRL_WRITE_BNDRY_32);
13615 break;
13616 }
13617 /* fallthrough */
13618 case 64:
13619 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13620 val |= (DMA_RWCTRL_READ_BNDRY_64 |
13621 DMA_RWCTRL_WRITE_BNDRY_64);
13622 break;
13623 }
13624 /* fallthrough */
13625 case 128:
13626 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13627 val |= (DMA_RWCTRL_READ_BNDRY_128 |
13628 DMA_RWCTRL_WRITE_BNDRY_128);
13629 break;
13630 }
13631 /* fallthrough */
13632 case 256:
13633 val |= (DMA_RWCTRL_READ_BNDRY_256 |
13634 DMA_RWCTRL_WRITE_BNDRY_256);
13635 break;
13636 case 512:
13637 val |= (DMA_RWCTRL_READ_BNDRY_512 |
13638 DMA_RWCTRL_WRITE_BNDRY_512);
13639 break;
13640 case 1024:
13641 default:
13642 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
13643 DMA_RWCTRL_WRITE_BNDRY_1024);
13644 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013645 }
David S. Miller59e6b432005-05-18 22:50:10 -070013646 }
13647
13648out:
13649 return val;
13650}
13651
Linus Torvalds1da177e2005-04-16 15:20:36 -070013652static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
13653{
13654 struct tg3_internal_buffer_desc test_desc;
13655 u32 sram_dma_descs;
13656 int i, ret;
13657
13658 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
13659
13660 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
13661 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
13662 tw32(RDMAC_STATUS, 0);
13663 tw32(WDMAC_STATUS, 0);
13664
13665 tw32(BUFMGR_MODE, 0);
13666 tw32(FTQ_RESET, 0);
13667
13668 test_desc.addr_hi = ((u64) buf_dma) >> 32;
13669 test_desc.addr_lo = buf_dma & 0xffffffff;
13670 test_desc.nic_mbuf = 0x00002100;
13671 test_desc.len = size;
13672
13673 /*
13674 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
13675 * the *second* time the tg3 driver was getting loaded after an
13676 * initial scan.
13677 *
13678 * Broadcom tells me:
13679 * ...the DMA engine is connected to the GRC block and a DMA
13680 * reset may affect the GRC block in some unpredictable way...
13681 * The behavior of resets to individual blocks has not been tested.
13682 *
13683 * Broadcom noted the GRC reset will also reset all sub-components.
13684 */
13685 if (to_device) {
13686 test_desc.cqid_sqid = (13 << 8) | 2;
13687
13688 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
13689 udelay(40);
13690 } else {
13691 test_desc.cqid_sqid = (16 << 8) | 7;
13692
13693 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
13694 udelay(40);
13695 }
13696 test_desc.flags = 0x00000005;
13697
13698 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
13699 u32 val;
13700
13701 val = *(((u32 *)&test_desc) + i);
13702 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
13703 sram_dma_descs + (i * sizeof(u32)));
13704 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
13705 }
13706 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
13707
13708 if (to_device) {
13709 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
13710 } else {
13711 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
13712 }
13713
13714 ret = -ENODEV;
13715 for (i = 0; i < 40; i++) {
13716 u32 val;
13717
13718 if (to_device)
13719 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
13720 else
13721 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
13722 if ((val & 0xffff) == sram_dma_descs) {
13723 ret = 0;
13724 break;
13725 }
13726
13727 udelay(100);
13728 }
13729
13730 return ret;
13731}
13732
David S. Millerded73402005-05-23 13:59:47 -070013733#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070013734
13735static int __devinit tg3_test_dma(struct tg3 *tp)
13736{
13737 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070013738 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000013739 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013740
13741 buf = pci_alloc_consistent(tp->pdev, TEST_BUFFER_SIZE, &buf_dma);
13742 if (!buf) {
13743 ret = -ENOMEM;
13744 goto out_nofree;
13745 }
13746
13747 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
13748 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
13749
David S. Miller59e6b432005-05-18 22:50:10 -070013750 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013751
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000013752 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
13753 goto out;
13754
Linus Torvalds1da177e2005-04-16 15:20:36 -070013755 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
13756 /* DMA read watermark not used on PCIE */
13757 tp->dma_rwctrl |= 0x00180000;
13758 } else if (!(tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070013759 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
13760 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013761 tp->dma_rwctrl |= 0x003f0000;
13762 else
13763 tp->dma_rwctrl |= 0x003f000f;
13764 } else {
13765 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
13766 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
13767 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080013768 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013769
Michael Chan4a29cc22006-03-19 13:21:12 -080013770 /* If the 5704 is behind the EPB bridge, we can
13771 * do the less restrictive ONE_DMA workaround for
13772 * better performance.
13773 */
13774 if ((tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) &&
13775 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
13776 tp->dma_rwctrl |= 0x8000;
13777 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013778 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
13779
Michael Chan49afdeb2007-02-13 12:17:03 -080013780 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
13781 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070013782 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080013783 tp->dma_rwctrl |=
13784 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
13785 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
13786 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070013787 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
13788 /* 5780 always in PCIX mode */
13789 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070013790 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
13791 /* 5714 always in PCIX mode */
13792 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013793 } else {
13794 tp->dma_rwctrl |= 0x001b000f;
13795 }
13796 }
13797
13798 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
13799 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
13800 tp->dma_rwctrl &= 0xfffffff0;
13801
13802 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13803 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
13804 /* Remove this if it causes problems for some boards. */
13805 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
13806
13807 /* On 5700/5701 chips, we need to set this bit.
13808 * Otherwise the chip will issue cacheline transactions
13809 * to streamable DMA memory with not all the byte
13810 * enables turned on. This is an error on several
13811 * RISC PCI controllers, in particular sparc64.
13812 *
13813 * On 5703/5704 chips, this bit has been reassigned
13814 * a different meaning. In particular, it is used
13815 * on those chips to enable a PCI-X workaround.
13816 */
13817 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
13818 }
13819
13820 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
13821
13822#if 0
13823 /* Unneeded, already done by tg3_get_invariants. */
13824 tg3_switch_clocks(tp);
13825#endif
13826
Linus Torvalds1da177e2005-04-16 15:20:36 -070013827 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13828 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
13829 goto out;
13830
David S. Miller59e6b432005-05-18 22:50:10 -070013831 /* It is best to perform DMA test with maximum write burst size
13832 * to expose the 5700/5701 write DMA bug.
13833 */
13834 saved_dma_rwctrl = tp->dma_rwctrl;
13835 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
13836 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
13837
Linus Torvalds1da177e2005-04-16 15:20:36 -070013838 while (1) {
13839 u32 *p = buf, i;
13840
13841 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
13842 p[i] = i;
13843
13844 /* Send the buffer to the chip. */
13845 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
13846 if (ret) {
13847 printk(KERN_ERR "tg3_test_dma() Write the buffer failed %d\n", ret);
13848 break;
13849 }
13850
13851#if 0
13852 /* validate data reached card RAM correctly. */
13853 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
13854 u32 val;
13855 tg3_read_mem(tp, 0x2100 + (i*4), &val);
13856 if (le32_to_cpu(val) != p[i]) {
13857 printk(KERN_ERR " tg3_test_dma() Card buffer corrupted on write! (%d != %d)\n", val, i);
13858 /* ret = -ENODEV here? */
13859 }
13860 p[i] = 0;
13861 }
13862#endif
13863 /* Now read it back. */
13864 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
13865 if (ret) {
13866 printk(KERN_ERR "tg3_test_dma() Read the buffer failed %d\n", ret);
13867
13868 break;
13869 }
13870
13871 /* Verify it. */
13872 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
13873 if (p[i] == i)
13874 continue;
13875
David S. Miller59e6b432005-05-18 22:50:10 -070013876 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
13877 DMA_RWCTRL_WRITE_BNDRY_16) {
13878 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013879 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
13880 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
13881 break;
13882 } else {
13883 printk(KERN_ERR "tg3_test_dma() buffer corrupted on read back! (%d != %d)\n", p[i], i);
13884 ret = -ENODEV;
13885 goto out;
13886 }
13887 }
13888
13889 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
13890 /* Success. */
13891 ret = 0;
13892 break;
13893 }
13894 }
David S. Miller59e6b432005-05-18 22:50:10 -070013895 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
13896 DMA_RWCTRL_WRITE_BNDRY_16) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070013897 static struct pci_device_id dma_wait_state_chipsets[] = {
13898 { PCI_DEVICE(PCI_VENDOR_ID_APPLE,
13899 PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
13900 { },
13901 };
13902
David S. Miller59e6b432005-05-18 22:50:10 -070013903 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070013904 * now look for chipsets that are known to expose the
13905 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070013906 */
Michael Chan6d1cfba2005-06-08 14:13:14 -070013907 if (pci_dev_present(dma_wait_state_chipsets)) {
13908 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
13909 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
13910 }
13911 else
13912 /* Safe to use the calculated DMA boundary. */
13913 tp->dma_rwctrl = saved_dma_rwctrl;
13914
David S. Miller59e6b432005-05-18 22:50:10 -070013915 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
13916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013917
13918out:
13919 pci_free_consistent(tp->pdev, TEST_BUFFER_SIZE, buf, buf_dma);
13920out_nofree:
13921 return ret;
13922}
13923
13924static void __devinit tg3_init_link_config(struct tg3 *tp)
13925{
13926 tp->link_config.advertising =
13927 (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
13928 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
13929 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full |
13930 ADVERTISED_Autoneg | ADVERTISED_MII);
13931 tp->link_config.speed = SPEED_INVALID;
13932 tp->link_config.duplex = DUPLEX_INVALID;
13933 tp->link_config.autoneg = AUTONEG_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013934 tp->link_config.active_speed = SPEED_INVALID;
13935 tp->link_config.active_duplex = DUPLEX_INVALID;
13936 tp->link_config.phy_is_low_power = 0;
13937 tp->link_config.orig_speed = SPEED_INVALID;
13938 tp->link_config.orig_duplex = DUPLEX_INVALID;
13939 tp->link_config.orig_autoneg = AUTONEG_INVALID;
13940}
13941
13942static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
13943{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013944 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS &&
13945 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717) {
Michael Chanfdfec1722005-07-25 12:31:48 -070013946 tp->bufmgr_config.mbuf_read_dma_low_water =
13947 DEFAULT_MB_RDMA_LOW_WATER_5705;
13948 tp->bufmgr_config.mbuf_mac_rx_low_water =
13949 DEFAULT_MB_MACRX_LOW_WATER_5705;
13950 tp->bufmgr_config.mbuf_high_water =
13951 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070013952 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
13953 tp->bufmgr_config.mbuf_mac_rx_low_water =
13954 DEFAULT_MB_MACRX_LOW_WATER_5906;
13955 tp->bufmgr_config.mbuf_high_water =
13956 DEFAULT_MB_HIGH_WATER_5906;
13957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013958
Michael Chanfdfec1722005-07-25 12:31:48 -070013959 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
13960 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
13961 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
13962 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
13963 tp->bufmgr_config.mbuf_high_water_jumbo =
13964 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
13965 } else {
13966 tp->bufmgr_config.mbuf_read_dma_low_water =
13967 DEFAULT_MB_RDMA_LOW_WATER;
13968 tp->bufmgr_config.mbuf_mac_rx_low_water =
13969 DEFAULT_MB_MACRX_LOW_WATER;
13970 tp->bufmgr_config.mbuf_high_water =
13971 DEFAULT_MB_HIGH_WATER;
13972
13973 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
13974 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
13975 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
13976 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
13977 tp->bufmgr_config.mbuf_high_water_jumbo =
13978 DEFAULT_MB_HIGH_WATER_JUMBO;
13979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013980
13981 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
13982 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
13983}
13984
13985static char * __devinit tg3_phy_string(struct tg3 *tp)
13986{
13987 switch (tp->phy_id & PHY_ID_MASK) {
13988 case PHY_ID_BCM5400: return "5400";
13989 case PHY_ID_BCM5401: return "5401";
13990 case PHY_ID_BCM5411: return "5411";
13991 case PHY_ID_BCM5701: return "5701";
13992 case PHY_ID_BCM5703: return "5703";
13993 case PHY_ID_BCM5704: return "5704";
13994 case PHY_ID_BCM5705: return "5705";
13995 case PHY_ID_BCM5750: return "5750";
Michael Chan85e94ce2005-04-21 17:05:28 -070013996 case PHY_ID_BCM5752: return "5752";
Michael Chana4e2b342005-10-26 15:46:52 -070013997 case PHY_ID_BCM5714: return "5714";
Michael Chan4cf78e42005-07-25 12:29:19 -070013998 case PHY_ID_BCM5780: return "5780";
Michael Chanaf36e6b2006-03-23 01:28:06 -080013999 case PHY_ID_BCM5755: return "5755";
Michael Chand9ab5ad2006-03-20 22:27:35 -080014000 case PHY_ID_BCM5787: return "5787";
Matt Carlsond30cdd22007-10-07 23:28:35 -070014001 case PHY_ID_BCM5784: return "5784";
Michael Chan126a3362006-09-27 16:03:07 -070014002 case PHY_ID_BCM5756: return "5722/5756";
Michael Chanb5d37722006-09-27 16:06:21 -070014003 case PHY_ID_BCM5906: return "5906";
Matt Carlson9936bcf2007-10-10 18:03:07 -070014004 case PHY_ID_BCM5761: return "5761";
Matt Carlsonc2060fe2009-11-13 13:03:33 +000014005 case PHY_ID_BCM5717: return "5717";
Linus Torvalds1da177e2005-04-16 15:20:36 -070014006 case PHY_ID_BCM8002: return "8002/serdes";
14007 case 0: return "serdes";
14008 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070014009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014010}
14011
Michael Chanf9804dd2005-09-27 12:13:10 -070014012static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
14013{
14014 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
14015 strcpy(str, "PCI Express");
14016 return str;
14017 } else if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
14018 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
14019
14020 strcpy(str, "PCIX:");
14021
14022 if ((clock_ctrl == 7) ||
14023 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
14024 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
14025 strcat(str, "133MHz");
14026 else if (clock_ctrl == 0)
14027 strcat(str, "33MHz");
14028 else if (clock_ctrl == 2)
14029 strcat(str, "50MHz");
14030 else if (clock_ctrl == 4)
14031 strcat(str, "66MHz");
14032 else if (clock_ctrl == 6)
14033 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070014034 } else {
14035 strcpy(str, "PCI:");
14036 if (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED)
14037 strcat(str, "66MHz");
14038 else
14039 strcat(str, "33MHz");
14040 }
14041 if (tp->tg3_flags & TG3_FLAG_PCI_32BIT)
14042 strcat(str, ":32-bit");
14043 else
14044 strcat(str, ":64-bit");
14045 return str;
14046}
14047
Michael Chan8c2dc7e2005-12-19 16:26:02 -080014048static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014049{
14050 struct pci_dev *peer;
14051 unsigned int func, devnr = tp->pdev->devfn & ~7;
14052
14053 for (func = 0; func < 8; func++) {
14054 peer = pci_get_slot(tp->pdev->bus, devnr | func);
14055 if (peer && peer != tp->pdev)
14056 break;
14057 pci_dev_put(peer);
14058 }
Michael Chan16fe9d72005-12-13 21:09:54 -080014059 /* 5704 can be configured in single-port mode, set peer to
14060 * tp->pdev in that case.
14061 */
14062 if (!peer) {
14063 peer = tp->pdev;
14064 return peer;
14065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014066
14067 /*
14068 * We don't need to keep the refcount elevated; there's no way
14069 * to remove one half of this device without removing the other
14070 */
14071 pci_dev_put(peer);
14072
14073 return peer;
14074}
14075
David S. Miller15f98502005-05-18 22:49:26 -070014076static void __devinit tg3_init_coal(struct tg3 *tp)
14077{
14078 struct ethtool_coalesce *ec = &tp->coal;
14079
14080 memset(ec, 0, sizeof(*ec));
14081 ec->cmd = ETHTOOL_GCOALESCE;
14082 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
14083 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
14084 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
14085 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
14086 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
14087 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
14088 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
14089 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
14090 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
14091
14092 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
14093 HOSTCC_MODE_CLRTICK_TXBD)) {
14094 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
14095 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
14096 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
14097 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
14098 }
Michael Chand244c892005-07-05 14:42:33 -070014099
14100 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
14101 ec->rx_coalesce_usecs_irq = 0;
14102 ec->tx_coalesce_usecs_irq = 0;
14103 ec->stats_block_coalesce_usecs = 0;
14104 }
David S. Miller15f98502005-05-18 22:49:26 -070014105}
14106
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014107static const struct net_device_ops tg3_netdev_ops = {
14108 .ndo_open = tg3_open,
14109 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080014110 .ndo_start_xmit = tg3_start_xmit,
14111 .ndo_get_stats = tg3_get_stats,
14112 .ndo_validate_addr = eth_validate_addr,
14113 .ndo_set_multicast_list = tg3_set_rx_mode,
14114 .ndo_set_mac_address = tg3_set_mac_addr,
14115 .ndo_do_ioctl = tg3_ioctl,
14116 .ndo_tx_timeout = tg3_tx_timeout,
14117 .ndo_change_mtu = tg3_change_mtu,
14118#if TG3_VLAN_TAG_USED
14119 .ndo_vlan_rx_register = tg3_vlan_rx_register,
14120#endif
14121#ifdef CONFIG_NET_POLL_CONTROLLER
14122 .ndo_poll_controller = tg3_poll_controller,
14123#endif
14124};
14125
14126static const struct net_device_ops tg3_netdev_ops_dma_bug = {
14127 .ndo_open = tg3_open,
14128 .ndo_stop = tg3_close,
14129 .ndo_start_xmit = tg3_start_xmit_dma_bug,
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014130 .ndo_get_stats = tg3_get_stats,
14131 .ndo_validate_addr = eth_validate_addr,
14132 .ndo_set_multicast_list = tg3_set_rx_mode,
14133 .ndo_set_mac_address = tg3_set_mac_addr,
14134 .ndo_do_ioctl = tg3_ioctl,
14135 .ndo_tx_timeout = tg3_tx_timeout,
14136 .ndo_change_mtu = tg3_change_mtu,
14137#if TG3_VLAN_TAG_USED
14138 .ndo_vlan_rx_register = tg3_vlan_rx_register,
14139#endif
14140#ifdef CONFIG_NET_POLL_CONTROLLER
14141 .ndo_poll_controller = tg3_poll_controller,
14142#endif
14143};
14144
Linus Torvalds1da177e2005-04-16 15:20:36 -070014145static int __devinit tg3_init_one(struct pci_dev *pdev,
14146 const struct pci_device_id *ent)
14147{
14148 static int tg3_version_printed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014149 struct net_device *dev;
14150 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000014151 int i, err, pm_cap;
14152 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070014153 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080014154 u64 dma_mask, persist_dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014155
14156 if (tg3_version_printed++ == 0)
14157 printk(KERN_INFO "%s", version);
14158
14159 err = pci_enable_device(pdev);
14160 if (err) {
14161 printk(KERN_ERR PFX "Cannot enable PCI device, "
14162 "aborting.\n");
14163 return err;
14164 }
14165
Linus Torvalds1da177e2005-04-16 15:20:36 -070014166 err = pci_request_regions(pdev, DRV_MODULE_NAME);
14167 if (err) {
14168 printk(KERN_ERR PFX "Cannot obtain PCI resources, "
14169 "aborting.\n");
14170 goto err_out_disable_pdev;
14171 }
14172
14173 pci_set_master(pdev);
14174
14175 /* Find power-management capability. */
14176 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
14177 if (pm_cap == 0) {
14178 printk(KERN_ERR PFX "Cannot find PowerManagement capability, "
14179 "aborting.\n");
14180 err = -EIO;
14181 goto err_out_free_res;
14182 }
14183
Matt Carlsonfe5f5782009-09-01 13:09:39 +000014184 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014185 if (!dev) {
14186 printk(KERN_ERR PFX "Etherdev alloc failed, aborting.\n");
14187 err = -ENOMEM;
14188 goto err_out_free_res;
14189 }
14190
Linus Torvalds1da177e2005-04-16 15:20:36 -070014191 SET_NETDEV_DEV(dev, &pdev->dev);
14192
Linus Torvalds1da177e2005-04-16 15:20:36 -070014193#if TG3_VLAN_TAG_USED
14194 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014195#endif
14196
14197 tp = netdev_priv(dev);
14198 tp->pdev = pdev;
14199 tp->dev = dev;
14200 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014201 tp->rx_mode = TG3_DEF_RX_MODE;
14202 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070014203
Linus Torvalds1da177e2005-04-16 15:20:36 -070014204 if (tg3_debug > 0)
14205 tp->msg_enable = tg3_debug;
14206 else
14207 tp->msg_enable = TG3_DEF_MSG_ENABLE;
14208
14209 /* The word/byte swap controls here control register access byte
14210 * swapping. DMA data byte swapping is controlled in the GRC_MODE
14211 * setting below.
14212 */
14213 tp->misc_host_ctrl =
14214 MISC_HOST_CTRL_MASK_PCI_INT |
14215 MISC_HOST_CTRL_WORD_SWAP |
14216 MISC_HOST_CTRL_INDIR_ACCESS |
14217 MISC_HOST_CTRL_PCISTATE_RW;
14218
14219 /* The NONFRM (non-frame) byte/word swap controls take effect
14220 * on descriptor entries, anything which isn't packet data.
14221 *
14222 * The StrongARM chips on the board (one for tx, one for rx)
14223 * are running in big-endian mode.
14224 */
14225 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
14226 GRC_MODE_WSWAP_NONFRM_DATA);
14227#ifdef __BIG_ENDIAN
14228 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
14229#endif
14230 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014231 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000014232 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014233
Matt Carlsond5fe4882008-11-21 17:20:32 -080014234 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010014235 if (!tp->regs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014236 printk(KERN_ERR PFX "Cannot map device registers, "
14237 "aborting.\n");
14238 err = -ENOMEM;
14239 goto err_out_free_dev;
14240 }
14241
14242 tg3_init_link_config(tp);
14243
Linus Torvalds1da177e2005-04-16 15:20:36 -070014244 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
14245 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014246
Linus Torvalds1da177e2005-04-16 15:20:36 -070014247 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014248 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014249 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014250
14251 err = tg3_get_invariants(tp);
14252 if (err) {
14253 printk(KERN_ERR PFX "Problem fetching invariants of chip, "
14254 "aborting.\n");
14255 goto err_out_iounmap;
14256 }
14257
Matt Carlson615774f2009-11-13 13:03:39 +000014258 if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) &&
14259 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
Stephen Hemminger00829822008-11-20 20:14:53 -080014260 dev->netdev_ops = &tg3_netdev_ops;
14261 else
14262 dev->netdev_ops = &tg3_netdev_ops_dma_bug;
14263
14264
Michael Chan4a29cc22006-03-19 13:21:12 -080014265 /* The EPB bridge inside 5714, 5715, and 5780 and any
14266 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080014267 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
14268 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
14269 * do DMA address check in tg3_start_xmit().
14270 */
Michael Chan4a29cc22006-03-19 13:21:12 -080014271 if (tp->tg3_flags2 & TG3_FLG2_IS_5788)
Yang Hongyang284901a2009-04-06 19:01:15 -070014272 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Michael Chan4a29cc22006-03-19 13:21:12 -080014273 else if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070014274 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080014275#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070014276 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080014277#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080014278 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070014279 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080014280
14281 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070014282 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080014283 err = pci_set_dma_mask(pdev, dma_mask);
14284 if (!err) {
14285 dev->features |= NETIF_F_HIGHDMA;
14286 err = pci_set_consistent_dma_mask(pdev,
14287 persist_dma_mask);
14288 if (err < 0) {
14289 printk(KERN_ERR PFX "Unable to obtain 64 bit "
14290 "DMA for consistent allocations\n");
14291 goto err_out_iounmap;
14292 }
14293 }
14294 }
Yang Hongyang284901a2009-04-06 19:01:15 -070014295 if (err || dma_mask == DMA_BIT_MASK(32)) {
14296 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080014297 if (err) {
14298 printk(KERN_ERR PFX "No usable DMA configuration, "
14299 "aborting.\n");
14300 goto err_out_iounmap;
14301 }
14302 }
14303
Michael Chanfdfec1722005-07-25 12:31:48 -070014304 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014305
Matt Carlson507399f2009-11-13 13:03:37 +000014306 /* Selectively allow TSO based on operating conditions */
14307 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) ||
14308 (tp->fw_needed && !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)))
14309 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
14310 else {
14311 tp->tg3_flags2 &= ~(TG3_FLG2_TSO_CAPABLE | TG3_FLG2_TSO_BUG);
14312 tp->fw_needed = NULL;
14313 }
14314
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014315 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
Matt Carlson9e9fd122009-01-19 16:57:45 -080014316 tp->fw_needed = FIRMWARE_TG3;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014317
Michael Chan4e3a7aa2006-03-20 17:47:44 -080014318 /* TSO is on by default on chips that support hardware TSO.
14319 * Firmware TSO on older chips gives lower performance, so it
14320 * is off by default, but can be enabled using ethtool.
14321 */
Matt Carlsone849cdc2009-11-13 13:03:38 +000014322 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) &&
14323 (dev->features & NETIF_F_IP_CSUM))
14324 dev->features |= NETIF_F_TSO;
14325
14326 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) ||
14327 (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3)) {
14328 if (dev->features & NETIF_F_IPV6_CSUM)
Michael Chanb0026622006-07-03 19:42:14 -070014329 dev->features |= NETIF_F_TSO6;
Matt Carlsone849cdc2009-11-13 13:03:38 +000014330 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
14331 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070014332 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14333 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014334 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000014335 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson9936bcf2007-10-10 18:03:07 -070014336 dev->features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070014337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014338
Linus Torvalds1da177e2005-04-16 15:20:36 -070014339 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
14340 !(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
14341 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
14342 tp->tg3_flags2 |= TG3_FLG2_MAX_RXPEND_64;
14343 tp->rx_pending = 63;
14344 }
14345
Linus Torvalds1da177e2005-04-16 15:20:36 -070014346 err = tg3_get_device_address(tp);
14347 if (err) {
14348 printk(KERN_ERR PFX "Could not obtain valid ethernet address, "
14349 "aborting.\n");
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014350 goto err_out_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014351 }
14352
Matt Carlson0d3031d2007-10-10 18:02:43 -070014353 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
Matt Carlson63532392008-11-03 16:49:57 -080014354 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
Al Viro79ea13c2008-01-24 02:06:46 -080014355 if (!tp->aperegs) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014356 printk(KERN_ERR PFX "Cannot map APE registers, "
14357 "aborting.\n");
14358 err = -ENOMEM;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014359 goto err_out_fw;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014360 }
14361
14362 tg3_ape_lock_init(tp);
Matt Carlson7fd76442009-02-25 14:27:20 +000014363
14364 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
14365 tg3_read_dash_ver(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014366 }
14367
Matt Carlsonc88864d2007-11-12 21:07:01 -080014368 /*
14369 * Reset chip in case UNDI or EFI driver did not shutdown
14370 * DMA self test will enable WDMAC and we'll see (spurious)
14371 * pending DMA on the PCI bus at that point.
14372 */
14373 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
14374 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
14375 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
14376 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
14377 }
14378
14379 err = tg3_test_dma(tp);
14380 if (err) {
14381 printk(KERN_ERR PFX "DMA engine test failed, aborting.\n");
14382 goto err_out_apeunmap;
14383 }
14384
Matt Carlsonc88864d2007-11-12 21:07:01 -080014385 /* flow control autonegotiation is default behavior */
14386 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
Steve Glendinninge18ce342008-12-16 02:00:00 -080014387 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlsonc88864d2007-11-12 21:07:01 -080014388
Matt Carlson78f90dc2009-11-13 13:03:42 +000014389 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
14390 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
14391 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
14392 for (i = 0; i < TG3_IRQ_MAX_VECS; i++) {
14393 struct tg3_napi *tnapi = &tp->napi[i];
14394
14395 tnapi->tp = tp;
14396 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
14397
14398 tnapi->int_mbox = intmbx;
14399 if (i < 4)
14400 intmbx += 0x8;
14401 else
14402 intmbx += 0x4;
14403
14404 tnapi->consmbox = rcvmbx;
14405 tnapi->prodmbox = sndmbx;
14406
14407 if (i) {
14408 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
14409 netif_napi_add(dev, &tnapi->napi, tg3_poll_msix, 64);
14410 } else {
14411 tnapi->coal_now = HOSTCC_MODE_NOW;
14412 netif_napi_add(dev, &tnapi->napi, tg3_poll, 64);
14413 }
14414
14415 if (!(tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX))
14416 break;
14417
14418 /*
14419 * If we support MSIX, we'll be using RSS. If we're using
14420 * RSS, the first vector only handles link interrupts and the
14421 * remaining vectors handle rx and tx interrupts. Reuse the
14422 * mailbox values for the next iteration. The values we setup
14423 * above are still useful for the single vectored mode.
14424 */
14425 if (!i)
14426 continue;
14427
14428 rcvmbx += 0x8;
14429
14430 if (sndmbx & 0x4)
14431 sndmbx -= 0x4;
14432 else
14433 sndmbx += 0xc;
14434 }
14435
Matt Carlsonc88864d2007-11-12 21:07:01 -080014436 tg3_init_coal(tp);
14437
Michael Chanc49a1562006-12-17 17:07:29 -080014438 pci_set_drvdata(pdev, dev);
14439
Linus Torvalds1da177e2005-04-16 15:20:36 -070014440 err = register_netdev(dev);
14441 if (err) {
14442 printk(KERN_ERR PFX "Cannot register net device, "
14443 "aborting.\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070014444 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014445 }
14446
Matt Carlsondf59c942008-11-03 16:52:56 -080014447 printk(KERN_INFO "%s: Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070014448 dev->name,
14449 tp->board_part_number,
14450 tp->pci_chip_rev_id,
Michael Chanf9804dd2005-09-27 12:13:10 -070014451 tg3_bus_string(tp, str),
Johannes Berge1749612008-10-27 15:59:26 -070014452 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014453
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000014454 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
14455 struct phy_device *phydev;
14456 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsondf59c942008-11-03 16:52:56 -080014457 printk(KERN_INFO
14458 "%s: attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000014459 tp->dev->name, phydev->drv->name,
14460 dev_name(&phydev->dev));
14461 } else
Matt Carlsondf59c942008-11-03 16:52:56 -080014462 printk(KERN_INFO
14463 "%s: attached PHY is %s (%s Ethernet) (WireSpeed[%d])\n",
14464 tp->dev->name, tg3_phy_string(tp),
14465 ((tp->tg3_flags & TG3_FLAG_10_100_ONLY) ? "10/100Base-TX" :
14466 ((tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) ? "1000Base-SX" :
14467 "10/100/1000Base-T")),
14468 (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED) == 0);
14469
14470 printk(KERN_INFO "%s: RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070014471 dev->name,
14472 (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0,
14473 (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) != 0,
14474 (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) != 0,
14475 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014476 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) != 0);
Michael Chan4a29cc22006-03-19 13:21:12 -080014477 printk(KERN_INFO "%s: dma_rwctrl[%08x] dma_mask[%d-bit]\n",
14478 dev->name, tp->dma_rwctrl,
Yang Hongyang284901a2009-04-06 19:01:15 -070014479 (pdev->dma_mask == DMA_BIT_MASK(32)) ? 32 :
Yang Hongyang50cf1562009-04-06 19:01:14 -070014480 (((u64) pdev->dma_mask == DMA_BIT_MASK(40)) ? 40 : 64));
Linus Torvalds1da177e2005-04-16 15:20:36 -070014481
14482 return 0;
14483
Matt Carlson0d3031d2007-10-10 18:02:43 -070014484err_out_apeunmap:
14485 if (tp->aperegs) {
14486 iounmap(tp->aperegs);
14487 tp->aperegs = NULL;
14488 }
14489
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014490err_out_fw:
14491 if (tp->fw)
14492 release_firmware(tp->fw);
14493
Linus Torvalds1da177e2005-04-16 15:20:36 -070014494err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070014495 if (tp->regs) {
14496 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014497 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014499
14500err_out_free_dev:
14501 free_netdev(dev);
14502
14503err_out_free_res:
14504 pci_release_regions(pdev);
14505
14506err_out_disable_pdev:
14507 pci_disable_device(pdev);
14508 pci_set_drvdata(pdev, NULL);
14509 return err;
14510}
14511
14512static void __devexit tg3_remove_one(struct pci_dev *pdev)
14513{
14514 struct net_device *dev = pci_get_drvdata(pdev);
14515
14516 if (dev) {
14517 struct tg3 *tp = netdev_priv(dev);
14518
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014519 if (tp->fw)
14520 release_firmware(tp->fw);
14521
Michael Chan7faa0062006-02-02 17:29:28 -080014522 flush_scheduled_work();
Matt Carlson158d7ab2008-05-29 01:37:54 -070014523
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014524 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
14525 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070014526 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014527 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070014528
Linus Torvalds1da177e2005-04-16 15:20:36 -070014529 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014530 if (tp->aperegs) {
14531 iounmap(tp->aperegs);
14532 tp->aperegs = NULL;
14533 }
Michael Chan68929142005-08-09 20:17:14 -070014534 if (tp->regs) {
14535 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014536 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014538 free_netdev(dev);
14539 pci_release_regions(pdev);
14540 pci_disable_device(pdev);
14541 pci_set_drvdata(pdev, NULL);
14542 }
14543}
14544
14545static int tg3_suspend(struct pci_dev *pdev, pm_message_t state)
14546{
14547 struct net_device *dev = pci_get_drvdata(pdev);
14548 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070014549 pci_power_t target_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014550 int err;
14551
Michael Chan3e0c95f2007-08-03 20:56:54 -070014552 /* PCI register 4 needs to be saved whether netif_running() or not.
14553 * MSI address and data need to be saved if using MSI and
14554 * netif_running().
14555 */
14556 pci_save_state(pdev);
14557
Linus Torvalds1da177e2005-04-16 15:20:36 -070014558 if (!netif_running(dev))
14559 return 0;
14560
Michael Chan7faa0062006-02-02 17:29:28 -080014561 flush_scheduled_work();
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014562 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014563 tg3_netif_stop(tp);
14564
14565 del_timer_sync(&tp->timer);
14566
David S. Millerf47c11e2005-06-24 20:18:35 -070014567 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014568 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070014569 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014570
14571 netif_device_detach(dev);
14572
David S. Millerf47c11e2005-06-24 20:18:35 -070014573 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070014574 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan6a9eba12005-12-13 21:08:58 -080014575 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
David S. Millerf47c11e2005-06-24 20:18:35 -070014576 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014577
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070014578 target_state = pdev->pm_cap ? pci_target_state(pdev) : PCI_D3hot;
14579
14580 err = tg3_set_power_state(tp, target_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014581 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014582 int err2;
14583
David S. Millerf47c11e2005-06-24 20:18:35 -070014584 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014585
Michael Chan6a9eba12005-12-13 21:08:58 -080014586 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014587 err2 = tg3_restart_hw(tp, 1);
14588 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070014589 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014590
14591 tp->timer.expires = jiffies + tp->timer_offset;
14592 add_timer(&tp->timer);
14593
14594 netif_device_attach(dev);
14595 tg3_netif_start(tp);
14596
Michael Chanb9ec6c12006-07-25 16:37:27 -070014597out:
David S. Millerf47c11e2005-06-24 20:18:35 -070014598 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014599
14600 if (!err2)
14601 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014602 }
14603
14604 return err;
14605}
14606
14607static int tg3_resume(struct pci_dev *pdev)
14608{
14609 struct net_device *dev = pci_get_drvdata(pdev);
14610 struct tg3 *tp = netdev_priv(dev);
14611 int err;
14612
Michael Chan3e0c95f2007-08-03 20:56:54 -070014613 pci_restore_state(tp->pdev);
14614
Linus Torvalds1da177e2005-04-16 15:20:36 -070014615 if (!netif_running(dev))
14616 return 0;
14617
Michael Chanbc1c7562006-03-20 17:48:03 -080014618 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014619 if (err)
14620 return err;
14621
14622 netif_device_attach(dev);
14623
David S. Millerf47c11e2005-06-24 20:18:35 -070014624 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014625
Michael Chan6a9eba12005-12-13 21:08:58 -080014626 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Michael Chanb9ec6c12006-07-25 16:37:27 -070014627 err = tg3_restart_hw(tp, 1);
14628 if (err)
14629 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014630
14631 tp->timer.expires = jiffies + tp->timer_offset;
14632 add_timer(&tp->timer);
14633
Linus Torvalds1da177e2005-04-16 15:20:36 -070014634 tg3_netif_start(tp);
14635
Michael Chanb9ec6c12006-07-25 16:37:27 -070014636out:
David S. Millerf47c11e2005-06-24 20:18:35 -070014637 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014638
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014639 if (!err)
14640 tg3_phy_start(tp);
14641
Michael Chanb9ec6c12006-07-25 16:37:27 -070014642 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014643}
14644
14645static struct pci_driver tg3_driver = {
14646 .name = DRV_MODULE_NAME,
14647 .id_table = tg3_pci_tbl,
14648 .probe = tg3_init_one,
14649 .remove = __devexit_p(tg3_remove_one),
14650 .suspend = tg3_suspend,
14651 .resume = tg3_resume
14652};
14653
14654static int __init tg3_init(void)
14655{
Jeff Garzik29917622006-08-19 17:48:59 -040014656 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014657}
14658
14659static void __exit tg3_cleanup(void)
14660{
14661 pci_unregister_driver(&tg3_driver);
14662}
14663
14664module_init(tg3_init);
14665module_exit(tg3_cleanup);