blob: c38143b7b600be5abd2b3f6b79901058cf78ad89 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * tg3.c: Broadcom Tigon3 ethernet driver.
3 *
4 * Copyright (C) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com)
5 * Copyright (C) 2001, 2002, 2003 Jeff Garzik (jgarzik@pobox.com)
6 * Copyright (C) 2004 Sun Microsystems Inc.
Matt Carlsonba5b0bf2010-01-12 10:11:40 +00007 * Copyright (C) 2005-2010 Broadcom Corporation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Firmware is:
Michael Chan49cabf42005-06-06 15:15:17 -070010 * Derived from proprietary unpublished source code,
11 * Copyright (C) 2000-2003 Broadcom Corporation.
12 *
13 * Permission is hereby granted for the distribution of this firmware
14 * data in hexadecimal or equivalent format, provided this copyright
15 * notice is accompanying it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <linux/module.h>
20#include <linux/moduleparam.h>
21#include <linux/kernel.h>
22#include <linux/types.h>
23#include <linux/compiler.h>
24#include <linux/slab.h>
25#include <linux/delay.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020026#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/init.h>
28#include <linux/ioport.h>
29#include <linux/pci.h>
30#include <linux/netdevice.h>
31#include <linux/etherdevice.h>
32#include <linux/skbuff.h>
33#include <linux/ethtool.h>
34#include <linux/mii.h>
Matt Carlson158d7ab2008-05-29 01:37:54 -070035#include <linux/phy.h>
Matt Carlsona9daf362008-05-25 23:49:44 -070036#include <linux/brcmphy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/if_vlan.h>
38#include <linux/ip.h>
39#include <linux/tcp.h>
40#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070041#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020042#include <linux/dma-mapping.h>
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080043#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030046#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include <asm/system.h>
49#include <asm/io.h>
50#include <asm/byteorder.h>
51#include <asm/uaccess.h>
52
David S. Miller49b6e95f2007-03-29 01:38:42 -070053#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070055#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#endif
57
Matt Carlson63532392008-11-03 16:49:57 -080058#define BAR_0 0
59#define BAR_2 2
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
62#define TG3_VLAN_TAG_USED 1
63#else
64#define TG3_VLAN_TAG_USED 0
65#endif
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include "tg3.h"
68
69#define DRV_MODULE_NAME "tg3"
70#define PFX DRV_MODULE_NAME ": "
Matt Carlsonb3b3f042010-02-12 14:47:13 +000071#define DRV_MODULE_VERSION "3.107"
72#define DRV_MODULE_RELDATE "February 12, 2010"
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
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000177static DEFINE_PCI_DEVICE_TABLE(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)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5724)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700253 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
254 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
255 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
256 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
257 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
258 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
259 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
260 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261};
262
263MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
264
Andreas Mohr50da8592006-08-14 23:54:30 -0700265static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 const char string[ETH_GSTRING_LEN];
267} ethtool_stats_keys[TG3_NUM_STATS] = {
268 { "rx_octets" },
269 { "rx_fragments" },
270 { "rx_ucast_packets" },
271 { "rx_mcast_packets" },
272 { "rx_bcast_packets" },
273 { "rx_fcs_errors" },
274 { "rx_align_errors" },
275 { "rx_xon_pause_rcvd" },
276 { "rx_xoff_pause_rcvd" },
277 { "rx_mac_ctrl_rcvd" },
278 { "rx_xoff_entered" },
279 { "rx_frame_too_long_errors" },
280 { "rx_jabbers" },
281 { "rx_undersize_packets" },
282 { "rx_in_length_errors" },
283 { "rx_out_length_errors" },
284 { "rx_64_or_less_octet_packets" },
285 { "rx_65_to_127_octet_packets" },
286 { "rx_128_to_255_octet_packets" },
287 { "rx_256_to_511_octet_packets" },
288 { "rx_512_to_1023_octet_packets" },
289 { "rx_1024_to_1522_octet_packets" },
290 { "rx_1523_to_2047_octet_packets" },
291 { "rx_2048_to_4095_octet_packets" },
292 { "rx_4096_to_8191_octet_packets" },
293 { "rx_8192_to_9022_octet_packets" },
294
295 { "tx_octets" },
296 { "tx_collisions" },
297
298 { "tx_xon_sent" },
299 { "tx_xoff_sent" },
300 { "tx_flow_control" },
301 { "tx_mac_errors" },
302 { "tx_single_collisions" },
303 { "tx_mult_collisions" },
304 { "tx_deferred" },
305 { "tx_excessive_collisions" },
306 { "tx_late_collisions" },
307 { "tx_collide_2times" },
308 { "tx_collide_3times" },
309 { "tx_collide_4times" },
310 { "tx_collide_5times" },
311 { "tx_collide_6times" },
312 { "tx_collide_7times" },
313 { "tx_collide_8times" },
314 { "tx_collide_9times" },
315 { "tx_collide_10times" },
316 { "tx_collide_11times" },
317 { "tx_collide_12times" },
318 { "tx_collide_13times" },
319 { "tx_collide_14times" },
320 { "tx_collide_15times" },
321 { "tx_ucast_packets" },
322 { "tx_mcast_packets" },
323 { "tx_bcast_packets" },
324 { "tx_carrier_sense_errors" },
325 { "tx_discards" },
326 { "tx_errors" },
327
328 { "dma_writeq_full" },
329 { "dma_write_prioq_full" },
330 { "rxbds_empty" },
331 { "rx_discards" },
332 { "rx_errors" },
333 { "rx_threshold_hit" },
334
335 { "dma_readq_full" },
336 { "dma_read_prioq_full" },
337 { "tx_comp_queue_full" },
338
339 { "ring_set_send_prod_index" },
340 { "ring_status_update" },
341 { "nic_irqs" },
342 { "nic_avoided_irqs" },
343 { "nic_tx_threshold_hit" }
344};
345
Andreas Mohr50da8592006-08-14 23:54:30 -0700346static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700347 const char string[ETH_GSTRING_LEN];
348} ethtool_test_keys[TG3_NUM_TEST] = {
349 { "nvram test (online) " },
350 { "link test (online) " },
351 { "register test (offline)" },
352 { "memory test (offline)" },
353 { "loopback test (offline)" },
354 { "interrupt test (offline)" },
355};
356
Michael Chanb401e9e2005-12-19 16:27:04 -0800357static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
358{
359 writel(val, tp->regs + off);
360}
361
362static u32 tg3_read32(struct tg3 *tp, u32 off)
363{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400364 return (readl(tp->regs + off));
Michael Chanb401e9e2005-12-19 16:27:04 -0800365}
366
Matt Carlson0d3031d2007-10-10 18:02:43 -0700367static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
368{
369 writel(val, tp->aperegs + off);
370}
371
372static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
373{
374 return (readl(tp->aperegs + off));
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
378{
Michael Chan68929142005-08-09 20:17:14 -0700379 unsigned long flags;
380
381 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700382 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
383 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700384 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700385}
386
387static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
388{
389 writel(val, tp->regs + off);
390 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Michael Chan68929142005-08-09 20:17:14 -0700393static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
394{
395 unsigned long flags;
396 u32 val;
397
398 spin_lock_irqsave(&tp->indirect_lock, flags);
399 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
400 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
401 spin_unlock_irqrestore(&tp->indirect_lock, flags);
402 return val;
403}
404
405static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
406{
407 unsigned long flags;
408
409 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
410 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
411 TG3_64BIT_REG_LOW, val);
412 return;
413 }
Matt Carlson66711e62009-11-13 13:03:49 +0000414 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700415 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
416 TG3_64BIT_REG_LOW, val);
417 return;
418 }
419
420 spin_lock_irqsave(&tp->indirect_lock, flags);
421 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
422 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
423 spin_unlock_irqrestore(&tp->indirect_lock, flags);
424
425 /* In indirect mode when disabling interrupts, we also need
426 * to clear the interrupt bit in the GRC local ctrl register.
427 */
428 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
429 (val == 0x1)) {
430 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
431 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
432 }
433}
434
435static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
436{
437 unsigned long flags;
438 u32 val;
439
440 spin_lock_irqsave(&tp->indirect_lock, flags);
441 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
442 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
443 spin_unlock_irqrestore(&tp->indirect_lock, flags);
444 return val;
445}
446
Michael Chanb401e9e2005-12-19 16:27:04 -0800447/* usec_wait specifies the wait time in usec when writing to certain registers
448 * where it is unsafe to read back the register without some delay.
449 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
450 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
451 */
452static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Michael Chanb401e9e2005-12-19 16:27:04 -0800454 if ((tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) ||
455 (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND))
456 /* Non-posted methods */
457 tp->write32(tp, off, val);
458 else {
459 /* Posted method */
460 tg3_write32(tp, off, val);
461 if (usec_wait)
462 udelay(usec_wait);
463 tp->read32(tp, off);
464 }
465 /* Wait again after the read for the posted method to guarantee that
466 * the wait time is met.
467 */
468 if (usec_wait)
469 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Michael Chan09ee9292005-08-09 20:17:00 -0700472static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
473{
474 tp->write32_mbox(tp, off, val);
Michael Chan68929142005-08-09 20:17:14 -0700475 if (!(tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER) &&
476 !(tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND))
477 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700478}
479
Michael Chan20094932005-08-09 20:16:32 -0700480static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 void __iomem *mbox = tp->regs + off;
483 writel(val, mbox);
484 if (tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG)
485 writel(val, mbox);
486 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
487 readl(mbox);
488}
489
Michael Chanb5d37722006-09-27 16:06:21 -0700490static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
491{
492 return (readl(tp->regs + off + GRCMBOX_BASE));
493}
494
495static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
496{
497 writel(val, tp->regs + off + GRCMBOX_BASE);
498}
499
Michael Chan20094932005-08-09 20:16:32 -0700500#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700501#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Michael Chan20094932005-08-09 20:16:32 -0700502#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
503#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700504#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700505
506#define tw32(reg,val) tp->write32(tp, reg, val)
Michael Chanb401e9e2005-12-19 16:27:04 -0800507#define tw32_f(reg,val) _tw32_flush(tp,(reg),(val), 0)
508#define tw32_wait_f(reg,val,us) _tw32_flush(tp,(reg),(val), (us))
Michael Chan20094932005-08-09 20:16:32 -0700509#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
512{
Michael Chan68929142005-08-09 20:17:14 -0700513 unsigned long flags;
514
Michael Chanb5d37722006-09-27 16:06:21 -0700515 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
516 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
517 return;
518
Michael Chan68929142005-08-09 20:17:14 -0700519 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chanbbadf502006-04-06 21:46:34 -0700520 if (tp->tg3_flags & TG3_FLAG_SRAM_USE_CONFIG) {
521 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
522 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Michael Chanbbadf502006-04-06 21:46:34 -0700524 /* Always leave this as zero. */
525 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
526 } else {
527 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
528 tw32_f(TG3PCI_MEM_WIN_DATA, val);
529
530 /* Always leave this as zero. */
531 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
532 }
Michael Chan68929142005-08-09 20:17:14 -0700533 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
537{
Michael Chan68929142005-08-09 20:17:14 -0700538 unsigned long flags;
539
Michael Chanb5d37722006-09-27 16:06:21 -0700540 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
541 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
542 *val = 0;
543 return;
544 }
545
Michael Chan68929142005-08-09 20:17:14 -0700546 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chanbbadf502006-04-06 21:46:34 -0700547 if (tp->tg3_flags & TG3_FLAG_SRAM_USE_CONFIG) {
548 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
549 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Michael Chanbbadf502006-04-06 21:46:34 -0700551 /* Always leave this as zero. */
552 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
553 } else {
554 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
555 *val = tr32(TG3PCI_MEM_WIN_DATA);
556
557 /* Always leave this as zero. */
558 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
559 }
Michael Chan68929142005-08-09 20:17:14 -0700560 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Matt Carlson0d3031d2007-10-10 18:02:43 -0700563static void tg3_ape_lock_init(struct tg3 *tp)
564{
565 int i;
566
567 /* Make sure the driver hasn't any stale locks. */
568 for (i = 0; i < 8; i++)
569 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + 4 * i,
570 APE_LOCK_GRANT_DRIVER);
571}
572
573static int tg3_ape_lock(struct tg3 *tp, int locknum)
574{
575 int i, off;
576 int ret = 0;
577 u32 status;
578
579 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
580 return 0;
581
582 switch (locknum) {
Matt Carlson77b483f2008-08-15 14:07:24 -0700583 case TG3_APE_LOCK_GRC:
Matt Carlson0d3031d2007-10-10 18:02:43 -0700584 case TG3_APE_LOCK_MEM:
585 break;
586 default:
587 return -EINVAL;
588 }
589
590 off = 4 * locknum;
591
592 tg3_ape_write32(tp, TG3_APE_LOCK_REQ + off, APE_LOCK_REQ_DRIVER);
593
594 /* Wait for up to 1 millisecond to acquire lock. */
595 for (i = 0; i < 100; i++) {
596 status = tg3_ape_read32(tp, TG3_APE_LOCK_GRANT + off);
597 if (status == APE_LOCK_GRANT_DRIVER)
598 break;
599 udelay(10);
600 }
601
602 if (status != APE_LOCK_GRANT_DRIVER) {
603 /* Revoke the lock request. */
604 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + off,
605 APE_LOCK_GRANT_DRIVER);
606
607 ret = -EBUSY;
608 }
609
610 return ret;
611}
612
613static void tg3_ape_unlock(struct tg3 *tp, int locknum)
614{
615 int off;
616
617 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
618 return;
619
620 switch (locknum) {
Matt Carlson77b483f2008-08-15 14:07:24 -0700621 case TG3_APE_LOCK_GRC:
Matt Carlson0d3031d2007-10-10 18:02:43 -0700622 case TG3_APE_LOCK_MEM:
623 break;
624 default:
625 return;
626 }
627
628 off = 4 * locknum;
629 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + off, APE_LOCK_GRANT_DRIVER);
630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632static void tg3_disable_ints(struct tg3 *tp)
633{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000634 int i;
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 tw32(TG3PCI_MISC_HOST_CTRL,
637 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000638 for (i = 0; i < tp->irq_max; i++)
639 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642static void tg3_enable_ints(struct tg3 *tp)
643{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000644 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000645
Michael Chanbbe832c2005-06-24 20:20:04 -0700646 tp->irq_sync = 0;
647 wmb();
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 tw32(TG3PCI_MISC_HOST_CTRL,
650 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000651
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000652 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000653 for (i = 0; i < tp->irq_cnt; i++) {
654 struct tg3_napi *tnapi = &tp->napi[i];
655 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
656 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
657 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
658
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000659 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000660 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000661
662 /* Force an initial interrupt */
663 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
664 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
665 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
666 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000667 tw32(HOSTCC_MODE, tp->coal_now);
668
669 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Matt Carlson17375d22009-08-28 14:02:18 +0000672static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700673{
Matt Carlson17375d22009-08-28 14:02:18 +0000674 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000675 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700676 unsigned int work_exists = 0;
677
678 /* check for phy events */
679 if (!(tp->tg3_flags &
680 (TG3_FLAG_USE_LINKCHG_REG |
681 TG3_FLAG_POLL_SERDES))) {
682 if (sblk->status & SD_STATUS_LINK_CHG)
683 work_exists = 1;
684 }
685 /* check for RX/TX work to do */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000686 if (sblk->idx[0].tx_consumer != tnapi->tx_cons ||
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000687 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700688 work_exists = 1;
689
690 return work_exists;
691}
692
Matt Carlson17375d22009-08-28 14:02:18 +0000693/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700694 * similar to tg3_enable_ints, but it accurately determines whether there
695 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400696 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 */
Matt Carlson17375d22009-08-28 14:02:18 +0000698static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Matt Carlson17375d22009-08-28 14:02:18 +0000700 struct tg3 *tp = tnapi->tp;
701
Matt Carlson898a56f2009-08-28 14:02:40 +0000702 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 mmiowb();
704
David S. Millerfac9b832005-05-18 22:46:34 -0700705 /* When doing tagged status, this work check is unnecessary.
706 * The last_tag we write above tells the chip which piece of
707 * work we've completed.
708 */
709 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
Matt Carlson17375d22009-08-28 14:02:18 +0000710 tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700711 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000712 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Matt Carlsonfed97812009-09-01 13:10:19 +0000715static void tg3_napi_disable(struct tg3 *tp)
716{
717 int i;
718
719 for (i = tp->irq_cnt - 1; i >= 0; i--)
720 napi_disable(&tp->napi[i].napi);
721}
722
723static void tg3_napi_enable(struct tg3 *tp)
724{
725 int i;
726
727 for (i = 0; i < tp->irq_cnt; i++)
728 napi_enable(&tp->napi[i].napi);
729}
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731static inline void tg3_netif_stop(struct tg3 *tp)
732{
Michael Chanbbe832c2005-06-24 20:20:04 -0700733 tp->dev->trans_start = jiffies; /* prevent tx timeout */
Matt Carlsonfed97812009-09-01 13:10:19 +0000734 tg3_napi_disable(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 netif_tx_disable(tp->dev);
736}
737
738static inline void tg3_netif_start(struct tg3 *tp)
739{
Matt Carlsonfe5f5782009-09-01 13:09:39 +0000740 /* NOTE: unconditional netif_tx_wake_all_queues is only
741 * appropriate so long as all callers are assured to
742 * have free tx slots (such as after tg3_init_hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 */
Matt Carlsonfe5f5782009-09-01 13:09:39 +0000744 netif_tx_wake_all_queues(tp->dev);
745
Matt Carlsonfed97812009-09-01 13:10:19 +0000746 tg3_napi_enable(tp);
747 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
David S. Millerf47c11e2005-06-24 20:18:35 -0700748 tg3_enable_ints(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
751static void tg3_switch_clocks(struct tg3 *tp)
752{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000753 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 u32 orig_clock_ctrl;
755
Matt Carlson795d01c2007-10-07 23:28:17 -0700756 if ((tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
757 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700758 return;
759
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000760 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 orig_clock_ctrl = clock_ctrl;
763 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
764 CLOCK_CTRL_CLKRUN_OENABLE |
765 0x1f);
766 tp->pci_clock_ctrl = clock_ctrl;
767
768 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
769 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800770 tw32_wait_f(TG3PCI_CLOCK_CTRL,
771 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800774 tw32_wait_f(TG3PCI_CLOCK_CTRL,
775 clock_ctrl |
776 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
777 40);
778 tw32_wait_f(TG3PCI_CLOCK_CTRL,
779 clock_ctrl | (CLOCK_CTRL_ALTCLK),
780 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800782 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
785#define PHY_BUSY_LOOPS 5000
786
787static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
788{
789 u32 frame_val;
790 unsigned int loops;
791 int ret;
792
793 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
794 tw32_f(MAC_MI_MODE,
795 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
796 udelay(80);
797 }
798
799 *val = 0x0;
800
Matt Carlson882e9792009-09-01 13:21:36 +0000801 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 MI_COM_PHY_ADDR_MASK);
803 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
804 MI_COM_REG_ADDR_MASK);
805 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 tw32_f(MAC_MI_COM, frame_val);
808
809 loops = PHY_BUSY_LOOPS;
810 while (loops != 0) {
811 udelay(10);
812 frame_val = tr32(MAC_MI_COM);
813
814 if ((frame_val & MI_COM_BUSY) == 0) {
815 udelay(5);
816 frame_val = tr32(MAC_MI_COM);
817 break;
818 }
819 loops -= 1;
820 }
821
822 ret = -EBUSY;
823 if (loops != 0) {
824 *val = frame_val & MI_COM_DATA_MASK;
825 ret = 0;
826 }
827
828 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
829 tw32_f(MAC_MI_MODE, tp->mi_mode);
830 udelay(80);
831 }
832
833 return ret;
834}
835
836static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
837{
838 u32 frame_val;
839 unsigned int loops;
840 int ret;
841
Matt Carlson7f97a4b2009-08-25 10:10:03 +0000842 if ((tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) &&
Michael Chanb5d37722006-09-27 16:06:21 -0700843 (reg == MII_TG3_CTRL || reg == MII_TG3_AUX_CTRL))
844 return 0;
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
847 tw32_f(MAC_MI_MODE,
848 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
849 udelay(80);
850 }
851
Matt Carlson882e9792009-09-01 13:21:36 +0000852 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 MI_COM_PHY_ADDR_MASK);
854 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
855 MI_COM_REG_ADDR_MASK);
856 frame_val |= (val & MI_COM_DATA_MASK);
857 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 tw32_f(MAC_MI_COM, frame_val);
860
861 loops = PHY_BUSY_LOOPS;
862 while (loops != 0) {
863 udelay(10);
864 frame_val = tr32(MAC_MI_COM);
865 if ((frame_val & MI_COM_BUSY) == 0) {
866 udelay(5);
867 frame_val = tr32(MAC_MI_COM);
868 break;
869 }
870 loops -= 1;
871 }
872
873 ret = -EBUSY;
874 if (loops != 0)
875 ret = 0;
876
877 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
878 tw32_f(MAC_MI_MODE, tp->mi_mode);
879 udelay(80);
880 }
881
882 return ret;
883}
884
Matt Carlson95e28692008-05-25 23:44:14 -0700885static int tg3_bmcr_reset(struct tg3 *tp)
886{
887 u32 phy_control;
888 int limit, err;
889
890 /* OK, reset it, and poll the BMCR_RESET bit until it
891 * clears or we time out.
892 */
893 phy_control = BMCR_RESET;
894 err = tg3_writephy(tp, MII_BMCR, phy_control);
895 if (err != 0)
896 return -EBUSY;
897
898 limit = 5000;
899 while (limit--) {
900 err = tg3_readphy(tp, MII_BMCR, &phy_control);
901 if (err != 0)
902 return -EBUSY;
903
904 if ((phy_control & BMCR_RESET) == 0) {
905 udelay(40);
906 break;
907 }
908 udelay(10);
909 }
Roel Kluind4675b52009-02-12 16:33:27 -0800910 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -0700911 return -EBUSY;
912
913 return 0;
914}
915
Matt Carlson158d7ab2008-05-29 01:37:54 -0700916static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
917{
Francois Romieu3d165432009-01-19 16:56:50 -0800918 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700919 u32 val;
920
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000921 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -0700922
923 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000924 val = -EIO;
925
926 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -0700927
928 return val;
929}
930
931static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
932{
Francois Romieu3d165432009-01-19 16:56:50 -0800933 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000934 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700935
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000936 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -0700937
938 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000939 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700940
Matt Carlson24bb4fb2009-10-05 17:55:29 +0000941 spin_unlock_bh(&tp->lock);
942
943 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700944}
945
946static int tg3_mdio_reset(struct mii_bus *bp)
947{
948 return 0;
949}
950
Matt Carlson9c61d6b2008-11-03 16:54:56 -0800951static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -0700952{
953 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800954 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -0700955
Matt Carlson3f0e3ad2009-11-02 14:24:36 +0000956 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800957 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
958 case TG3_PHY_ID_BCM50610:
Matt Carlsonc73430d2009-11-02 14:29:34 +0000959 case TG3_PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800960 val = MAC_PHYCFG2_50610_LED_MODES;
961 break;
962 case TG3_PHY_ID_BCMAC131:
963 val = MAC_PHYCFG2_AC131_LED_MODES;
964 break;
965 case TG3_PHY_ID_RTL8211C:
966 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
967 break;
968 case TG3_PHY_ID_RTL8201E:
969 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
970 break;
971 default:
Matt Carlsona9daf362008-05-25 23:49:44 -0700972 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800973 }
974
975 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
976 tw32(MAC_PHYCFG2, val);
977
978 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +0000979 val &= ~(MAC_PHYCFG1_RGMII_INT |
980 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
981 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800982 tw32(MAC_PHYCFG1, val);
983
984 return;
985 }
986
Matt Carlson14417062010-02-17 15:16:59 +0000987 if (!(tp->tg3_flags3 & TG3_FLG3_RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -0800988 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
989 MAC_PHYCFG2_FMODE_MASK_MASK |
990 MAC_PHYCFG2_GMODE_MASK_MASK |
991 MAC_PHYCFG2_ACT_MASK_MASK |
992 MAC_PHYCFG2_QUAL_MASK_MASK |
993 MAC_PHYCFG2_INBAND_ENABLE;
994
995 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -0700996
Matt Carlsonbb85fbb2009-08-25 10:09:07 +0000997 val = tr32(MAC_PHYCFG1);
998 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
999 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Matt Carlson14417062010-02-17 15:16:59 +00001000 if (!(tp->tg3_flags3 & TG3_FLG3_RGMII_INBAND_DISABLE)) {
Matt Carlsona9daf362008-05-25 23:49:44 -07001001 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
1002 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
1003 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
1004 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1005 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001006 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1007 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1008 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001009
Matt Carlsona9daf362008-05-25 23:49:44 -07001010 val = tr32(MAC_EXT_RGMII_MODE);
1011 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1012 MAC_RGMII_MODE_RX_QUALITY |
1013 MAC_RGMII_MODE_RX_ACTIVITY |
1014 MAC_RGMII_MODE_RX_ENG_DET |
1015 MAC_RGMII_MODE_TX_ENABLE |
1016 MAC_RGMII_MODE_TX_LOWPWR |
1017 MAC_RGMII_MODE_TX_RESET);
Matt Carlson14417062010-02-17 15:16:59 +00001018 if (!(tp->tg3_flags3 & TG3_FLG3_RGMII_INBAND_DISABLE)) {
Matt Carlsona9daf362008-05-25 23:49:44 -07001019 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
1020 val |= MAC_RGMII_MODE_RX_INT_B |
1021 MAC_RGMII_MODE_RX_QUALITY |
1022 MAC_RGMII_MODE_RX_ACTIVITY |
1023 MAC_RGMII_MODE_RX_ENG_DET;
1024 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
1025 val |= MAC_RGMII_MODE_TX_ENABLE |
1026 MAC_RGMII_MODE_TX_LOWPWR |
1027 MAC_RGMII_MODE_TX_RESET;
1028 }
1029 tw32(MAC_EXT_RGMII_MODE, val);
1030}
1031
Matt Carlson158d7ab2008-05-29 01:37:54 -07001032static void tg3_mdio_start(struct tg3 *tp)
1033{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001034 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1035 tw32_f(MAC_MI_MODE, tp->mi_mode);
1036 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001037
Matt Carlson882e9792009-09-01 13:21:36 +00001038 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
1039 u32 funcnum, is_serdes;
1040
1041 funcnum = tr32(TG3_CPMU_STATUS) & TG3_CPMU_STATUS_PCIE_FUNC;
1042 if (funcnum)
1043 tp->phy_addr = 2;
1044 else
1045 tp->phy_addr = 1;
1046
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001047 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1048 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1049 else
1050 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1051 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001052 if (is_serdes)
1053 tp->phy_addr += 7;
1054 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001055 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001056
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001057 if ((tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED) &&
1058 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1059 tg3_mdio_config_5785(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001060}
1061
Matt Carlson158d7ab2008-05-29 01:37:54 -07001062static int tg3_mdio_init(struct tg3 *tp)
1063{
1064 int i;
1065 u32 reg;
Matt Carlsona9daf362008-05-25 23:49:44 -07001066 struct phy_device *phydev;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001067
1068 tg3_mdio_start(tp);
1069
1070 if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) ||
1071 (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED))
1072 return 0;
1073
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001074 tp->mdio_bus = mdiobus_alloc();
1075 if (tp->mdio_bus == NULL)
1076 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001077
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001078 tp->mdio_bus->name = "tg3 mdio bus";
1079 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001080 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001081 tp->mdio_bus->priv = tp;
1082 tp->mdio_bus->parent = &tp->pdev->dev;
1083 tp->mdio_bus->read = &tg3_mdio_read;
1084 tp->mdio_bus->write = &tg3_mdio_write;
1085 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001086 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001087 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001088
1089 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001090 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001091
1092 /* The bus registration will look for all the PHYs on the mdio bus.
1093 * Unfortunately, it does not ensure the PHY is powered up before
1094 * accessing the PHY ID registers. A chip reset is the
1095 * quickest way to bring the device back to an operational state..
1096 */
1097 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1098 tg3_bmcr_reset(tp);
1099
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001100 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001101 if (i) {
Matt Carlson158d7ab2008-05-29 01:37:54 -07001102 printk(KERN_WARNING "%s: mdiobus_reg failed (0x%x)\n",
1103 tp->dev->name, i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001104 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001105 return i;
1106 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001107
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001108 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001109
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001110 if (!phydev || !phydev->drv) {
1111 printk(KERN_WARNING "%s: No PHY devices\n", tp->dev->name);
1112 mdiobus_unregister(tp->mdio_bus);
1113 mdiobus_free(tp->mdio_bus);
1114 return -ENODEV;
1115 }
1116
1117 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001118 case TG3_PHY_ID_BCM57780:
1119 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001120 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001121 break;
Matt Carlsona9daf362008-05-25 23:49:44 -07001122 case TG3_PHY_ID_BCM50610:
Matt Carlsonc73430d2009-11-02 14:29:34 +00001123 case TG3_PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001124 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001125 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001126 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001127 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson14417062010-02-17 15:16:59 +00001128 if (tp->tg3_flags3 & TG3_FLG3_RGMII_INBAND_DISABLE)
Matt Carlsona9daf362008-05-25 23:49:44 -07001129 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
1130 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
1131 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
1132 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
1133 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001134 /* fallthru */
1135 case TG3_PHY_ID_RTL8211C:
1136 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001137 break;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001138 case TG3_PHY_ID_RTL8201E:
Matt Carlsona9daf362008-05-25 23:49:44 -07001139 case TG3_PHY_ID_BCMAC131:
1140 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001141 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001142 tp->tg3_flags3 |= TG3_FLG3_PHY_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001143 break;
1144 }
1145
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001146 tp->tg3_flags3 |= TG3_FLG3_MDIOBUS_INITED;
1147
1148 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1149 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001150
1151 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001152}
1153
1154static void tg3_mdio_fini(struct tg3 *tp)
1155{
1156 if (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED) {
1157 tp->tg3_flags3 &= ~TG3_FLG3_MDIOBUS_INITED;
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001158 mdiobus_unregister(tp->mdio_bus);
1159 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001160 }
1161}
1162
Matt Carlson95e28692008-05-25 23:44:14 -07001163/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001164static inline void tg3_generate_fw_event(struct tg3 *tp)
1165{
1166 u32 val;
1167
1168 val = tr32(GRC_RX_CPU_EVENT);
1169 val |= GRC_RX_CPU_DRIVER_EVENT;
1170 tw32_f(GRC_RX_CPU_EVENT, val);
1171
1172 tp->last_event_jiffies = jiffies;
1173}
1174
1175#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1176
1177/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001178static void tg3_wait_for_event_ack(struct tg3 *tp)
1179{
1180 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001181 unsigned int delay_cnt;
1182 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001183
Matt Carlson4ba526c2008-08-15 14:10:04 -07001184 /* If enough time has passed, no wait is necessary. */
1185 time_remain = (long)(tp->last_event_jiffies + 1 +
1186 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1187 (long)jiffies;
1188 if (time_remain < 0)
1189 return;
1190
1191 /* Check if we can shorten the wait time. */
1192 delay_cnt = jiffies_to_usecs(time_remain);
1193 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1194 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1195 delay_cnt = (delay_cnt >> 3) + 1;
1196
1197 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001198 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1199 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001200 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001201 }
1202}
1203
1204/* tp->lock is held. */
1205static void tg3_ump_link_report(struct tg3 *tp)
1206{
1207 u32 reg;
1208 u32 val;
1209
1210 if (!(tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
1211 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
1212 return;
1213
1214 tg3_wait_for_event_ack(tp);
1215
1216 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1217
1218 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1219
1220 val = 0;
1221 if (!tg3_readphy(tp, MII_BMCR, &reg))
1222 val = reg << 16;
1223 if (!tg3_readphy(tp, MII_BMSR, &reg))
1224 val |= (reg & 0xffff);
1225 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, val);
1226
1227 val = 0;
1228 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1229 val = reg << 16;
1230 if (!tg3_readphy(tp, MII_LPA, &reg))
1231 val |= (reg & 0xffff);
1232 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 4, val);
1233
1234 val = 0;
1235 if (!(tp->tg3_flags2 & TG3_FLG2_MII_SERDES)) {
1236 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1237 val = reg << 16;
1238 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1239 val |= (reg & 0xffff);
1240 }
1241 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 8, val);
1242
1243 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1244 val = reg << 16;
1245 else
1246 val = 0;
1247 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 12, val);
1248
Matt Carlson4ba526c2008-08-15 14:10:04 -07001249 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001250}
1251
1252static void tg3_link_report(struct tg3 *tp)
1253{
1254 if (!netif_carrier_ok(tp->dev)) {
1255 if (netif_msg_link(tp))
1256 printk(KERN_INFO PFX "%s: Link is down.\n",
1257 tp->dev->name);
1258 tg3_ump_link_report(tp);
1259 } else if (netif_msg_link(tp)) {
1260 printk(KERN_INFO PFX "%s: Link is up at %d Mbps, %s duplex.\n",
1261 tp->dev->name,
1262 (tp->link_config.active_speed == SPEED_1000 ?
1263 1000 :
1264 (tp->link_config.active_speed == SPEED_100 ?
1265 100 : 10)),
1266 (tp->link_config.active_duplex == DUPLEX_FULL ?
1267 "full" : "half"));
1268
1269 printk(KERN_INFO PFX
1270 "%s: Flow control is %s for TX and %s for RX.\n",
1271 tp->dev->name,
Steve Glendinninge18ce342008-12-16 02:00:00 -08001272 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
Matt Carlson95e28692008-05-25 23:44:14 -07001273 "on" : "off",
Steve Glendinninge18ce342008-12-16 02:00:00 -08001274 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
Matt Carlson95e28692008-05-25 23:44:14 -07001275 "on" : "off");
1276 tg3_ump_link_report(tp);
1277 }
1278}
1279
1280static u16 tg3_advert_flowctrl_1000T(u8 flow_ctrl)
1281{
1282 u16 miireg;
1283
Steve Glendinninge18ce342008-12-16 02:00:00 -08001284 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001285 miireg = ADVERTISE_PAUSE_CAP;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001286 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001287 miireg = ADVERTISE_PAUSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001288 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001289 miireg = ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1290 else
1291 miireg = 0;
1292
1293 return miireg;
1294}
1295
1296static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1297{
1298 u16 miireg;
1299
Steve Glendinninge18ce342008-12-16 02:00:00 -08001300 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001301 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001302 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001303 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001304 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001305 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1306 else
1307 miireg = 0;
1308
1309 return miireg;
1310}
1311
Matt Carlson95e28692008-05-25 23:44:14 -07001312static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1313{
1314 u8 cap = 0;
1315
1316 if (lcladv & ADVERTISE_1000XPAUSE) {
1317 if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1318 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001319 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001320 else if (rmtadv & LPA_1000XPAUSE_ASYM)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001321 cap = FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001322 } else {
1323 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001324 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001325 }
1326 } else if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1327 if ((rmtadv & LPA_1000XPAUSE) && (rmtadv & LPA_1000XPAUSE_ASYM))
Steve Glendinninge18ce342008-12-16 02:00:00 -08001328 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001329 }
1330
1331 return cap;
1332}
1333
Matt Carlsonf51f3562008-05-25 23:45:08 -07001334static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001335{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001336 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001337 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001338 u32 old_rx_mode = tp->rx_mode;
1339 u32 old_tx_mode = tp->tx_mode;
1340
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001341 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001342 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001343 else
1344 autoneg = tp->link_config.autoneg;
1345
1346 if (autoneg == AUTONEG_ENABLE &&
Matt Carlson95e28692008-05-25 23:44:14 -07001347 (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG)) {
1348 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001349 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001350 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001351 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001352 } else
1353 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001354
Matt Carlsonf51f3562008-05-25 23:45:08 -07001355 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001356
Steve Glendinninge18ce342008-12-16 02:00:00 -08001357 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001358 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1359 else
1360 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1361
Matt Carlsonf51f3562008-05-25 23:45:08 -07001362 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001363 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001364
Steve Glendinninge18ce342008-12-16 02:00:00 -08001365 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001366 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1367 else
1368 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1369
Matt Carlsonf51f3562008-05-25 23:45:08 -07001370 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001371 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001372}
1373
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001374static void tg3_adjust_link(struct net_device *dev)
1375{
1376 u8 oldflowctrl, linkmesg = 0;
1377 u32 mac_mode, lcl_adv, rmt_adv;
1378 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001379 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001380
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001381 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001382
1383 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1384 MAC_MODE_HALF_DUPLEX);
1385
1386 oldflowctrl = tp->link_config.active_flowctrl;
1387
1388 if (phydev->link) {
1389 lcl_adv = 0;
1390 rmt_adv = 0;
1391
1392 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1393 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001394 else if (phydev->speed == SPEED_1000 ||
1395 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001396 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001397 else
1398 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001399
1400 if (phydev->duplex == DUPLEX_HALF)
1401 mac_mode |= MAC_MODE_HALF_DUPLEX;
1402 else {
1403 lcl_adv = tg3_advert_flowctrl_1000T(
1404 tp->link_config.flowctrl);
1405
1406 if (phydev->pause)
1407 rmt_adv = LPA_PAUSE_CAP;
1408 if (phydev->asym_pause)
1409 rmt_adv |= LPA_PAUSE_ASYM;
1410 }
1411
1412 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1413 } else
1414 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1415
1416 if (mac_mode != tp->mac_mode) {
1417 tp->mac_mode = mac_mode;
1418 tw32_f(MAC_MODE, tp->mac_mode);
1419 udelay(40);
1420 }
1421
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001422 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1423 if (phydev->speed == SPEED_10)
1424 tw32(MAC_MI_STAT,
1425 MAC_MI_STAT_10MBPS_MODE |
1426 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1427 else
1428 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1429 }
1430
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001431 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1432 tw32(MAC_TX_LENGTHS,
1433 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1434 (6 << TX_LENGTHS_IPG_SHIFT) |
1435 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1436 else
1437 tw32(MAC_TX_LENGTHS,
1438 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1439 (6 << TX_LENGTHS_IPG_SHIFT) |
1440 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1441
1442 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1443 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1444 phydev->speed != tp->link_config.active_speed ||
1445 phydev->duplex != tp->link_config.active_duplex ||
1446 oldflowctrl != tp->link_config.active_flowctrl)
1447 linkmesg = 1;
1448
1449 tp->link_config.active_speed = phydev->speed;
1450 tp->link_config.active_duplex = phydev->duplex;
1451
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001452 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001453
1454 if (linkmesg)
1455 tg3_link_report(tp);
1456}
1457
1458static int tg3_phy_init(struct tg3 *tp)
1459{
1460 struct phy_device *phydev;
1461
1462 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED)
1463 return 0;
1464
1465 /* Bring the PHY back to a known state. */
1466 tg3_bmcr_reset(tp);
1467
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001468 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001469
1470 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad32008-11-10 13:55:14 -08001471 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001472 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001473 if (IS_ERR(phydev)) {
1474 printk(KERN_ERR "%s: Could not attach to PHY\n", tp->dev->name);
1475 return PTR_ERR(phydev);
1476 }
1477
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001478 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001479 switch (phydev->interface) {
1480 case PHY_INTERFACE_MODE_GMII:
1481 case PHY_INTERFACE_MODE_RGMII:
Matt Carlson321d32a2008-11-21 17:22:19 -08001482 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
1483 phydev->supported &= (PHY_GBIT_FEATURES |
1484 SUPPORTED_Pause |
1485 SUPPORTED_Asym_Pause);
1486 break;
1487 }
1488 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001489 case PHY_INTERFACE_MODE_MII:
1490 phydev->supported &= (PHY_BASIC_FEATURES |
1491 SUPPORTED_Pause |
1492 SUPPORTED_Asym_Pause);
1493 break;
1494 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001495 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001496 return -EINVAL;
1497 }
1498
1499 tp->tg3_flags3 |= TG3_FLG3_PHY_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001500
1501 phydev->advertising = phydev->supported;
1502
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001503 return 0;
1504}
1505
1506static void tg3_phy_start(struct tg3 *tp)
1507{
1508 struct phy_device *phydev;
1509
1510 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
1511 return;
1512
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001513 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001514
1515 if (tp->link_config.phy_is_low_power) {
1516 tp->link_config.phy_is_low_power = 0;
1517 phydev->speed = tp->link_config.orig_speed;
1518 phydev->duplex = tp->link_config.orig_duplex;
1519 phydev->autoneg = tp->link_config.orig_autoneg;
1520 phydev->advertising = tp->link_config.orig_advertising;
1521 }
1522
1523 phy_start(phydev);
1524
1525 phy_start_aneg(phydev);
1526}
1527
1528static void tg3_phy_stop(struct tg3 *tp)
1529{
1530 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
1531 return;
1532
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001533 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001534}
1535
1536static void tg3_phy_fini(struct tg3 *tp)
1537{
1538 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001539 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001540 tp->tg3_flags3 &= ~TG3_FLG3_PHY_CONNECTED;
1541 }
1542}
1543
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001544static void tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1545{
1546 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1547 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1548}
1549
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001550static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1551{
1552 u32 phytest;
1553
1554 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1555 u32 phy;
1556
1557 tg3_writephy(tp, MII_TG3_FET_TEST,
1558 phytest | MII_TG3_FET_SHADOW_EN);
1559 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1560 if (enable)
1561 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1562 else
1563 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1564 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1565 }
1566 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1567 }
1568}
1569
Matt Carlson6833c042008-11-21 17:18:59 -08001570static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1571{
1572 u32 reg;
1573
Matt Carlsonecf14102010-01-20 16:58:05 +00001574 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
1575 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
1576 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001577 return;
1578
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001579 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
1580 tg3_phy_fet_toggle_apd(tp, enable);
1581 return;
1582 }
1583
Matt Carlson6833c042008-11-21 17:18:59 -08001584 reg = MII_TG3_MISC_SHDW_WREN |
1585 MII_TG3_MISC_SHDW_SCR5_SEL |
1586 MII_TG3_MISC_SHDW_SCR5_LPED |
1587 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1588 MII_TG3_MISC_SHDW_SCR5_SDTL |
1589 MII_TG3_MISC_SHDW_SCR5_C125OE;
1590 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
1591 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
1592
1593 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1594
1595
1596 reg = MII_TG3_MISC_SHDW_WREN |
1597 MII_TG3_MISC_SHDW_APD_SEL |
1598 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
1599 if (enable)
1600 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
1601
1602 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1603}
1604
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001605static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
1606{
1607 u32 phy;
1608
1609 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
1610 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
1611 return;
1612
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001613 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001614 u32 ephy;
1615
Matt Carlson535ef6e2009-08-25 10:09:36 +00001616 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
1617 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
1618
1619 tg3_writephy(tp, MII_TG3_FET_TEST,
1620 ephy | MII_TG3_FET_SHADOW_EN);
1621 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001622 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00001623 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001624 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00001625 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
1626 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001627 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00001628 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001629 }
1630 } else {
1631 phy = MII_TG3_AUXCTL_MISC_RDSEL_MISC |
1632 MII_TG3_AUXCTL_SHDWSEL_MISC;
1633 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, phy) &&
1634 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy)) {
1635 if (enable)
1636 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1637 else
1638 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1639 phy |= MII_TG3_AUXCTL_MISC_WREN;
1640 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1641 }
1642 }
1643}
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645static void tg3_phy_set_wirespeed(struct tg3 *tp)
1646{
1647 u32 val;
1648
1649 if (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED)
1650 return;
1651
1652 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x7007) &&
1653 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &val))
1654 tg3_writephy(tp, MII_TG3_AUX_CTRL,
1655 (val | (1 << 15) | (1 << 4)));
1656}
1657
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001658static void tg3_phy_apply_otp(struct tg3 *tp)
1659{
1660 u32 otp, phy;
1661
1662 if (!tp->phy_otp)
1663 return;
1664
1665 otp = tp->phy_otp;
1666
1667 /* Enable SM_DSP clock and tx 6dB coding. */
1668 phy = MII_TG3_AUXCTL_SHDWSEL_AUXCTL |
1669 MII_TG3_AUXCTL_ACTL_SMDSP_ENA |
1670 MII_TG3_AUXCTL_ACTL_TX_6DB;
1671 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1672
1673 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
1674 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
1675 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
1676
1677 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
1678 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
1679 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
1680
1681 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
1682 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
1683 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
1684
1685 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
1686 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
1687
1688 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
1689 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
1690
1691 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
1692 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
1693 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
1694
1695 /* Turn off SM_DSP clock. */
1696 phy = MII_TG3_AUXCTL_SHDWSEL_AUXCTL |
1697 MII_TG3_AUXCTL_ACTL_TX_6DB;
1698 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1699}
1700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701static int tg3_wait_macro_done(struct tg3 *tp)
1702{
1703 int limit = 100;
1704
1705 while (limit--) {
1706 u32 tmp32;
1707
1708 if (!tg3_readphy(tp, 0x16, &tmp32)) {
1709 if ((tmp32 & 0x1000) == 0)
1710 break;
1711 }
1712 }
Roel Kluind4675b52009-02-12 16:33:27 -08001713 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 return -EBUSY;
1715
1716 return 0;
1717}
1718
1719static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
1720{
1721 static const u32 test_pat[4][6] = {
1722 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
1723 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
1724 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
1725 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
1726 };
1727 int chan;
1728
1729 for (chan = 0; chan < 4; chan++) {
1730 int i;
1731
1732 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1733 (chan * 0x2000) | 0x0200);
1734 tg3_writephy(tp, 0x16, 0x0002);
1735
1736 for (i = 0; i < 6; i++)
1737 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
1738 test_pat[chan][i]);
1739
1740 tg3_writephy(tp, 0x16, 0x0202);
1741 if (tg3_wait_macro_done(tp)) {
1742 *resetp = 1;
1743 return -EBUSY;
1744 }
1745
1746 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1747 (chan * 0x2000) | 0x0200);
1748 tg3_writephy(tp, 0x16, 0x0082);
1749 if (tg3_wait_macro_done(tp)) {
1750 *resetp = 1;
1751 return -EBUSY;
1752 }
1753
1754 tg3_writephy(tp, 0x16, 0x0802);
1755 if (tg3_wait_macro_done(tp)) {
1756 *resetp = 1;
1757 return -EBUSY;
1758 }
1759
1760 for (i = 0; i < 6; i += 2) {
1761 u32 low, high;
1762
1763 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
1764 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
1765 tg3_wait_macro_done(tp)) {
1766 *resetp = 1;
1767 return -EBUSY;
1768 }
1769 low &= 0x7fff;
1770 high &= 0x000f;
1771 if (low != test_pat[chan][i] ||
1772 high != test_pat[chan][i+1]) {
1773 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
1774 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
1775 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
1776
1777 return -EBUSY;
1778 }
1779 }
1780 }
1781
1782 return 0;
1783}
1784
1785static int tg3_phy_reset_chanpat(struct tg3 *tp)
1786{
1787 int chan;
1788
1789 for (chan = 0; chan < 4; chan++) {
1790 int i;
1791
1792 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1793 (chan * 0x2000) | 0x0200);
1794 tg3_writephy(tp, 0x16, 0x0002);
1795 for (i = 0; i < 6; i++)
1796 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
1797 tg3_writephy(tp, 0x16, 0x0202);
1798 if (tg3_wait_macro_done(tp))
1799 return -EBUSY;
1800 }
1801
1802 return 0;
1803}
1804
1805static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
1806{
1807 u32 reg32, phy9_orig;
1808 int retries, do_phy_reset, err;
1809
1810 retries = 10;
1811 do_phy_reset = 1;
1812 do {
1813 if (do_phy_reset) {
1814 err = tg3_bmcr_reset(tp);
1815 if (err)
1816 return err;
1817 do_phy_reset = 0;
1818 }
1819
1820 /* Disable transmitter and interrupt. */
1821 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
1822 continue;
1823
1824 reg32 |= 0x3000;
1825 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1826
1827 /* Set full-duplex, 1000 mbps. */
1828 tg3_writephy(tp, MII_BMCR,
1829 BMCR_FULLDPLX | TG3_BMCR_SPEED1000);
1830
1831 /* Set to master mode. */
1832 if (tg3_readphy(tp, MII_TG3_CTRL, &phy9_orig))
1833 continue;
1834
1835 tg3_writephy(tp, MII_TG3_CTRL,
1836 (MII_TG3_CTRL_AS_MASTER |
1837 MII_TG3_CTRL_ENABLE_AS_MASTER));
1838
1839 /* Enable SM_DSP_CLOCK and 6dB. */
1840 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1841
1842 /* Block the PHY control access. */
1843 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
1844 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0800);
1845
1846 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
1847 if (!err)
1848 break;
1849 } while (--retries);
1850
1851 err = tg3_phy_reset_chanpat(tp);
1852 if (err)
1853 return err;
1854
1855 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
1856 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0000);
1857
1858 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
1859 tg3_writephy(tp, 0x16, 0x0000);
1860
1861 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1862 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
1863 /* Set Extended packet length bit for jumbo frames */
1864 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4400);
1865 }
1866 else {
1867 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1868 }
1869
1870 tg3_writephy(tp, MII_TG3_CTRL, phy9_orig);
1871
1872 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
1873 reg32 &= ~0x3000;
1874 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1875 } else if (!err)
1876 err = -EBUSY;
1877
1878 return err;
1879}
1880
1881/* This will reset the tigon3 PHY if there is no valid
1882 * link unless the FORCE argument is non-zero.
1883 */
1884static int tg3_phy_reset(struct tg3 *tp)
1885{
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001886 u32 cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 u32 phy_status;
1888 int err;
1889
Michael Chan60189dd2006-12-17 17:08:07 -08001890 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1891 u32 val;
1892
1893 val = tr32(GRC_MISC_CFG);
1894 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
1895 udelay(40);
1896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 err = tg3_readphy(tp, MII_BMSR, &phy_status);
1898 err |= tg3_readphy(tp, MII_BMSR, &phy_status);
1899 if (err != 0)
1900 return -EBUSY;
1901
Michael Chanc8e1e822006-04-29 18:55:17 -07001902 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
1903 netif_carrier_off(tp->dev);
1904 tg3_link_report(tp);
1905 }
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1908 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
1909 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
1910 err = tg3_phy_reset_5703_4_5(tp);
1911 if (err)
1912 return err;
1913 goto out;
1914 }
1915
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001916 cpmuctrl = 0;
1917 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
1918 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
1919 cpmuctrl = tr32(TG3_CPMU_CTRL);
1920 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
1921 tw32(TG3_CPMU_CTRL,
1922 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
1923 }
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 err = tg3_bmcr_reset(tp);
1926 if (err)
1927 return err;
1928
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001929 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
1930 u32 phy;
1931
1932 phy = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
1933 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, phy);
1934
1935 tw32(TG3_CPMU_CTRL, cpmuctrl);
1936 }
1937
Matt Carlsonbcb37f62008-11-03 16:52:09 -08001938 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
1939 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08001940 u32 val;
1941
1942 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
1943 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
1944 CPMU_LSPD_1000MB_MACCLK_12_5) {
1945 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
1946 udelay(40);
1947 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
1948 }
1949 }
1950
Matt Carlsonecf14102010-01-20 16:58:05 +00001951 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
1952 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES))
1953 return 0;
1954
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001955 tg3_phy_apply_otp(tp);
1956
Matt Carlson6833c042008-11-21 17:18:59 -08001957 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
1958 tg3_phy_toggle_apd(tp, true);
1959 else
1960 tg3_phy_toggle_apd(tp, false);
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962out:
1963 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADC_BUG) {
1964 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1965 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1966 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x2aaa);
1967 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
1968 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0323);
1969 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1970 }
1971 if (tp->tg3_flags2 & TG3_FLG2_PHY_5704_A0_BUG) {
1972 tg3_writephy(tp, 0x1c, 0x8d68);
1973 tg3_writephy(tp, 0x1c, 0x8d68);
1974 }
1975 if (tp->tg3_flags2 & TG3_FLG2_PHY_BER_BUG) {
1976 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1977 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
1978 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x310b);
1979 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1980 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x9506);
1981 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x401f);
1982 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x14e2);
1983 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1984 }
Michael Chanc424cb22006-04-29 18:56:34 -07001985 else if (tp->tg3_flags2 & TG3_FLG2_PHY_JITTER_BUG) {
1986 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1987 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
Michael Chanc1d2a192007-01-08 19:57:20 -08001988 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADJUST_TRIM) {
1989 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
1990 tg3_writephy(tp, MII_TG3_TEST1,
1991 MII_TG3_TEST1_TRIM_EN | 0x4);
1992 } else
1993 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
Michael Chanc424cb22006-04-29 18:56:34 -07001994 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 /* Set Extended packet length bit (bit 14) on all chips that */
1997 /* support jumbo frames */
1998 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
1999 /* Cannot do read-modify-write on 5401 */
2000 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
Matt Carlson8f666b02009-08-28 13:58:24 +00002001 } else if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 u32 phy_reg;
2003
2004 /* Set bit 14 with read-modify-write to preserve other bits */
2005 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0007) &&
2006 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy_reg))
2007 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy_reg | 0x4000);
2008 }
2009
2010 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2011 * jumbo frames transmission.
2012 */
Matt Carlson8f666b02009-08-28 13:58:24 +00002013 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 u32 phy_reg;
2015
2016 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &phy_reg))
2017 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2018 phy_reg | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
2019 }
2020
Michael Chan715116a2006-09-27 16:09:25 -07002021 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002022 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002023 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002024 }
2025
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002026 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 tg3_phy_set_wirespeed(tp);
2028 return 0;
2029}
2030
2031static void tg3_frob_aux_power(struct tg3 *tp)
2032{
2033 struct tg3 *tp_peer = tp;
2034
Matt Carlson334355a2010-01-20 16:58:10 +00002035 /* The GPIOs do something completely different on 57765. */
2036 if ((tp->tg3_flags2 & TG3_FLG2_IS_NIC) == 0 ||
2037 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 return;
2039
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00002040 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2041 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
2042 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002043 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002045 dev_peer = pci_get_drvdata(tp->pdev_peer);
Michael Chanbc1c7562006-03-20 17:48:03 -08002046 /* remove_one() may have been run on the peer. */
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002047 if (!dev_peer)
Michael Chanbc1c7562006-03-20 17:48:03 -08002048 tp_peer = tp;
2049 else
2050 tp_peer = netdev_priv(dev_peer);
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 if ((tp->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
Michael Chan6921d202005-12-13 21:15:53 -08002054 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0 ||
2055 (tp_peer->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
2056 (tp_peer->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2058 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08002059 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2060 (GRC_LCLCTRL_GPIO_OE0 |
2061 GRC_LCLCTRL_GPIO_OE1 |
2062 GRC_LCLCTRL_GPIO_OE2 |
2063 GRC_LCLCTRL_GPIO_OUTPUT0 |
2064 GRC_LCLCTRL_GPIO_OUTPUT1),
2065 100);
Matt Carlson8d519ab2009-04-20 06:58:01 +00002066 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2067 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -07002068 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2069 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2070 GRC_LCLCTRL_GPIO_OE1 |
2071 GRC_LCLCTRL_GPIO_OE2 |
2072 GRC_LCLCTRL_GPIO_OUTPUT0 |
2073 GRC_LCLCTRL_GPIO_OUTPUT1 |
2074 tp->grc_local_ctrl;
2075 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2076
2077 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2078 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2079
2080 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2081 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 } else {
2083 u32 no_gpio2;
Michael Chandc56b7d2005-12-19 16:26:28 -08002084 u32 grc_local_ctrl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086 if (tp_peer != tp &&
2087 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
2088 return;
2089
Michael Chandc56b7d2005-12-19 16:26:28 -08002090 /* Workaround to prevent overdrawing Amps. */
2091 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2092 ASIC_REV_5714) {
2093 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chanb401e9e2005-12-19 16:27:04 -08002094 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2095 grc_local_ctrl, 100);
Michael Chandc56b7d2005-12-19 16:26:28 -08002096 }
2097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 /* On 5753 and variants, GPIO2 cannot be used. */
2099 no_gpio2 = tp->nic_sram_data_cfg &
2100 NIC_SRAM_DATA_CFG_NO_GPIO2;
2101
Michael Chandc56b7d2005-12-19 16:26:28 -08002102 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 GRC_LCLCTRL_GPIO_OE1 |
2104 GRC_LCLCTRL_GPIO_OE2 |
2105 GRC_LCLCTRL_GPIO_OUTPUT1 |
2106 GRC_LCLCTRL_GPIO_OUTPUT2;
2107 if (no_gpio2) {
2108 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2109 GRC_LCLCTRL_GPIO_OUTPUT2);
2110 }
Michael Chanb401e9e2005-12-19 16:27:04 -08002111 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2112 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2115
Michael Chanb401e9e2005-12-19 16:27:04 -08002116 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2117 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119 if (!no_gpio2) {
2120 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chanb401e9e2005-12-19 16:27:04 -08002121 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2122 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
2124 }
2125 } else {
2126 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
2127 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
2128 if (tp_peer != tp &&
2129 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
2130 return;
2131
Michael Chanb401e9e2005-12-19 16:27:04 -08002132 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2133 (GRC_LCLCTRL_GPIO_OE1 |
2134 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Michael Chanb401e9e2005-12-19 16:27:04 -08002136 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2137 GRC_LCLCTRL_GPIO_OE1, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Michael Chanb401e9e2005-12-19 16:27:04 -08002139 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2140 (GRC_LCLCTRL_GPIO_OE1 |
2141 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 }
2143 }
2144}
2145
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002146static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2147{
2148 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2149 return 1;
2150 else if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411) {
2151 if (speed != SPEED_10)
2152 return 1;
2153 } else if (speed == SPEED_10)
2154 return 1;
2155
2156 return 0;
2157}
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159static int tg3_setup_phy(struct tg3 *, int);
2160
2161#define RESET_KIND_SHUTDOWN 0
2162#define RESET_KIND_INIT 1
2163#define RESET_KIND_SUSPEND 2
2164
2165static void tg3_write_sig_post_reset(struct tg3 *, int);
2166static int tg3_halt_cpu(struct tg3 *, u32);
2167
Matt Carlson0a459aa2008-11-03 16:54:15 -08002168static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002169{
Matt Carlsonce057f02007-11-12 21:08:03 -08002170 u32 val;
2171
Michael Chan51297242007-02-13 12:17:57 -08002172 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
2173 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2174 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2175 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2176
2177 sg_dig_ctrl |=
2178 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2179 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2180 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2181 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002182 return;
Michael Chan51297242007-02-13 12:17:57 -08002183 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002184
Michael Chan60189dd2006-12-17 17:08:07 -08002185 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002186 tg3_bmcr_reset(tp);
2187 val = tr32(GRC_MISC_CFG);
2188 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2189 udelay(40);
2190 return;
Matt Carlson0e5f7842009-11-02 14:26:38 +00002191 } else if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
2192 u32 phytest;
2193 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2194 u32 phy;
2195
2196 tg3_writephy(tp, MII_ADVERTISE, 0);
2197 tg3_writephy(tp, MII_BMCR,
2198 BMCR_ANENABLE | BMCR_ANRESTART);
2199
2200 tg3_writephy(tp, MII_TG3_FET_TEST,
2201 phytest | MII_TG3_FET_SHADOW_EN);
2202 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2203 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2204 tg3_writephy(tp,
2205 MII_TG3_FET_SHDW_AUXMODE4,
2206 phy);
2207 }
2208 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2209 }
2210 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002211 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002212 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2213 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002214
2215 tg3_writephy(tp, MII_TG3_AUX_CTRL,
2216 MII_TG3_AUXCTL_SHDWSEL_PWRCTL |
2217 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2218 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2219 MII_TG3_AUXCTL_PCTL_VREG_11V);
Michael Chan715116a2006-09-27 16:09:25 -07002220 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002221
Michael Chan15c3b692006-03-22 01:06:52 -08002222 /* The PHY should not be powered down on some chips because
2223 * of bugs.
2224 */
2225 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2226 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2227 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
2228 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)))
2229 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002230
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002231 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2232 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002233 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2234 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2235 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2236 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2237 }
2238
Michael Chan15c3b692006-03-22 01:06:52 -08002239 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2240}
2241
Matt Carlson3f007892008-11-03 16:51:36 -08002242/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002243static int tg3_nvram_lock(struct tg3 *tp)
2244{
2245 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
2246 int i;
2247
2248 if (tp->nvram_lock_cnt == 0) {
2249 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2250 for (i = 0; i < 8000; i++) {
2251 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2252 break;
2253 udelay(20);
2254 }
2255 if (i == 8000) {
2256 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2257 return -ENODEV;
2258 }
2259 }
2260 tp->nvram_lock_cnt++;
2261 }
2262 return 0;
2263}
2264
2265/* tp->lock is held. */
2266static void tg3_nvram_unlock(struct tg3 *tp)
2267{
2268 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
2269 if (tp->nvram_lock_cnt > 0)
2270 tp->nvram_lock_cnt--;
2271 if (tp->nvram_lock_cnt == 0)
2272 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2273 }
2274}
2275
2276/* tp->lock is held. */
2277static void tg3_enable_nvram_access(struct tg3 *tp)
2278{
2279 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Matt Carlsonf66a29b2009-11-13 13:03:36 +00002280 !(tp->tg3_flags3 & TG3_FLG3_PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002281 u32 nvaccess = tr32(NVRAM_ACCESS);
2282
2283 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2284 }
2285}
2286
2287/* tp->lock is held. */
2288static void tg3_disable_nvram_access(struct tg3 *tp)
2289{
2290 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Matt Carlsonf66a29b2009-11-13 13:03:36 +00002291 !(tp->tg3_flags3 & TG3_FLG3_PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002292 u32 nvaccess = tr32(NVRAM_ACCESS);
2293
2294 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2295 }
2296}
2297
2298static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2299 u32 offset, u32 *val)
2300{
2301 u32 tmp;
2302 int i;
2303
2304 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2305 return -EINVAL;
2306
2307 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2308 EEPROM_ADDR_DEVID_MASK |
2309 EEPROM_ADDR_READ);
2310 tw32(GRC_EEPROM_ADDR,
2311 tmp |
2312 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2313 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2314 EEPROM_ADDR_ADDR_MASK) |
2315 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2316
2317 for (i = 0; i < 1000; i++) {
2318 tmp = tr32(GRC_EEPROM_ADDR);
2319
2320 if (tmp & EEPROM_ADDR_COMPLETE)
2321 break;
2322 msleep(1);
2323 }
2324 if (!(tmp & EEPROM_ADDR_COMPLETE))
2325 return -EBUSY;
2326
Matt Carlson62cedd12009-04-20 14:52:29 -07002327 tmp = tr32(GRC_EEPROM_DATA);
2328
2329 /*
2330 * The data will always be opposite the native endian
2331 * format. Perform a blind byteswap to compensate.
2332 */
2333 *val = swab32(tmp);
2334
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002335 return 0;
2336}
2337
2338#define NVRAM_CMD_TIMEOUT 10000
2339
2340static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2341{
2342 int i;
2343
2344 tw32(NVRAM_CMD, nvram_cmd);
2345 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2346 udelay(10);
2347 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2348 udelay(10);
2349 break;
2350 }
2351 }
2352
2353 if (i == NVRAM_CMD_TIMEOUT)
2354 return -EBUSY;
2355
2356 return 0;
2357}
2358
2359static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2360{
2361 if ((tp->tg3_flags & TG3_FLAG_NVRAM) &&
2362 (tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) &&
2363 (tp->tg3_flags2 & TG3_FLG2_FLASH) &&
2364 !(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM_ADDR_TRANS) &&
2365 (tp->nvram_jedecnum == JEDEC_ATMEL))
2366
2367 addr = ((addr / tp->nvram_pagesize) <<
2368 ATMEL_AT45DB0X1B_PAGE_POS) +
2369 (addr % tp->nvram_pagesize);
2370
2371 return addr;
2372}
2373
2374static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2375{
2376 if ((tp->tg3_flags & TG3_FLAG_NVRAM) &&
2377 (tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) &&
2378 (tp->tg3_flags2 & TG3_FLG2_FLASH) &&
2379 !(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM_ADDR_TRANS) &&
2380 (tp->nvram_jedecnum == JEDEC_ATMEL))
2381
2382 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2383 tp->nvram_pagesize) +
2384 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2385
2386 return addr;
2387}
2388
Matt Carlsone4f34112009-02-25 14:25:00 +00002389/* NOTE: Data read in from NVRAM is byteswapped according to
2390 * the byteswapping settings for all other register accesses.
2391 * tg3 devices are BE devices, so on a BE machine, the data
2392 * returned will be exactly as it is seen in NVRAM. On a LE
2393 * machine, the 32-bit value will be byteswapped.
2394 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002395static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2396{
2397 int ret;
2398
2399 if (!(tp->tg3_flags & TG3_FLAG_NVRAM))
2400 return tg3_nvram_read_using_eeprom(tp, offset, val);
2401
2402 offset = tg3_nvram_phys_addr(tp, offset);
2403
2404 if (offset > NVRAM_ADDR_MSK)
2405 return -EINVAL;
2406
2407 ret = tg3_nvram_lock(tp);
2408 if (ret)
2409 return ret;
2410
2411 tg3_enable_nvram_access(tp);
2412
2413 tw32(NVRAM_ADDR, offset);
2414 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2415 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2416
2417 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002418 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002419
2420 tg3_disable_nvram_access(tp);
2421
2422 tg3_nvram_unlock(tp);
2423
2424 return ret;
2425}
2426
Matt Carlsona9dc5292009-02-25 14:25:30 +00002427/* Ensures NVRAM data is in bytestream format. */
2428static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002429{
2430 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002431 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002432 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002433 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002434 return res;
2435}
2436
2437/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08002438static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
2439{
2440 u32 addr_high, addr_low;
2441 int i;
2442
2443 addr_high = ((tp->dev->dev_addr[0] << 8) |
2444 tp->dev->dev_addr[1]);
2445 addr_low = ((tp->dev->dev_addr[2] << 24) |
2446 (tp->dev->dev_addr[3] << 16) |
2447 (tp->dev->dev_addr[4] << 8) |
2448 (tp->dev->dev_addr[5] << 0));
2449 for (i = 0; i < 4; i++) {
2450 if (i == 1 && skip_mac_1)
2451 continue;
2452 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
2453 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
2454 }
2455
2456 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2457 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2458 for (i = 0; i < 12; i++) {
2459 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
2460 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
2461 }
2462 }
2463
2464 addr_high = (tp->dev->dev_addr[0] +
2465 tp->dev->dev_addr[1] +
2466 tp->dev->dev_addr[2] +
2467 tp->dev->dev_addr[3] +
2468 tp->dev->dev_addr[4] +
2469 tp->dev->dev_addr[5]) &
2470 TX_BACKOFF_SEED_MASK;
2471 tw32(MAC_TX_BACKOFF_SEED, addr_high);
2472}
2473
Michael Chanbc1c7562006-03-20 17:48:03 -08002474static int tg3_set_power_state(struct tg3 *tp, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
2476 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002477 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479 /* Make sure register accesses (indirect or otherwise)
2480 * will function correctly.
2481 */
2482 pci_write_config_dword(tp->pdev,
2483 TG3PCI_MISC_HOST_CTRL,
2484 tp->misc_host_ctrl);
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 switch (state) {
Michael Chanbc1c7562006-03-20 17:48:03 -08002487 case PCI_D0:
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002488 pci_enable_wake(tp->pdev, state, false);
2489 pci_set_power_state(tp->pdev, PCI_D0);
Michael Chan8c6bda12005-04-21 17:09:08 -07002490
Michael Chan9d26e212006-12-07 00:21:14 -08002491 /* Switch out of Vaux if it is a NIC */
2492 if (tp->tg3_flags2 & TG3_FLG2_IS_NIC)
Michael Chanb401e9e2005-12-19 16:27:04 -08002493 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
2495 return 0;
2496
Michael Chanbc1c7562006-03-20 17:48:03 -08002497 case PCI_D1:
Michael Chanbc1c7562006-03-20 17:48:03 -08002498 case PCI_D2:
Michael Chanbc1c7562006-03-20 17:48:03 -08002499 case PCI_D3hot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 break;
2501
2502 default:
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002503 printk(KERN_ERR PFX "%s: Invalid power state (D%d) requested\n",
2504 tp->dev->name, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002506 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002507
2508 /* Restore the CLKREQ setting. */
2509 if (tp->tg3_flags3 & TG3_FLG3_CLKREQ_BUG) {
2510 u16 lnkctl;
2511
2512 pci_read_config_word(tp->pdev,
2513 tp->pcie_cap + PCI_EXP_LNKCTL,
2514 &lnkctl);
2515 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
2516 pci_write_config_word(tp->pdev,
2517 tp->pcie_cap + PCI_EXP_LNKCTL,
2518 lnkctl);
2519 }
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
2522 tw32(TG3PCI_MISC_HOST_CTRL,
2523 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
2524
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002525 device_should_wake = pci_pme_capable(tp->pdev, state) &&
2526 device_may_wakeup(&tp->pdev->dev) &&
2527 (tp->tg3_flags & TG3_FLAG_WOL_ENABLE);
2528
Matt Carlsondd477002008-05-25 23:45:58 -07002529 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002530 do_low_power = false;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002531 if ((tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) &&
2532 !tp->link_config.phy_is_low_power) {
2533 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002534 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002535
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002536 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002537
2538 tp->link_config.phy_is_low_power = 1;
2539
2540 tp->link_config.orig_speed = phydev->speed;
2541 tp->link_config.orig_duplex = phydev->duplex;
2542 tp->link_config.orig_autoneg = phydev->autoneg;
2543 tp->link_config.orig_advertising = phydev->advertising;
2544
2545 advertising = ADVERTISED_TP |
2546 ADVERTISED_Pause |
2547 ADVERTISED_Autoneg |
2548 ADVERTISED_10baseT_Half;
2549
2550 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002551 device_should_wake) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002552 if (tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB)
2553 advertising |=
2554 ADVERTISED_100baseT_Half |
2555 ADVERTISED_100baseT_Full |
2556 ADVERTISED_10baseT_Full;
2557 else
2558 advertising |= ADVERTISED_10baseT_Full;
2559 }
2560
2561 phydev->advertising = advertising;
2562
2563 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002564
2565 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
2566 if (phyid != TG3_PHY_ID_BCMAC131) {
2567 phyid &= TG3_PHY_OUI_MASK;
Roel Kluinf72b5342009-02-18 17:42:42 -08002568 if (phyid == TG3_PHY_OUI_1 ||
2569 phyid == TG3_PHY_OUI_2 ||
Matt Carlson0a459aa2008-11-03 16:54:15 -08002570 phyid == TG3_PHY_OUI_3)
2571 do_low_power = true;
2572 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002573 }
Matt Carlsondd477002008-05-25 23:45:58 -07002574 } else {
Matt Carlson20232762008-12-21 20:18:56 -08002575 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002576
Matt Carlsondd477002008-05-25 23:45:58 -07002577 if (tp->link_config.phy_is_low_power == 0) {
2578 tp->link_config.phy_is_low_power = 1;
2579 tp->link_config.orig_speed = tp->link_config.speed;
2580 tp->link_config.orig_duplex = tp->link_config.duplex;
2581 tp->link_config.orig_autoneg = tp->link_config.autoneg;
2582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Matt Carlsondd477002008-05-25 23:45:58 -07002584 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
2585 tp->link_config.speed = SPEED_10;
2586 tp->link_config.duplex = DUPLEX_HALF;
2587 tp->link_config.autoneg = AUTONEG_ENABLE;
2588 tg3_setup_phy(tp, 0);
2589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 }
2591
Michael Chanb5d37722006-09-27 16:06:21 -07002592 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2593 u32 val;
2594
2595 val = tr32(GRC_VCPU_EXT_CTRL);
2596 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
2597 } else if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08002598 int i;
2599 u32 val;
2600
2601 for (i = 0; i < 200; i++) {
2602 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
2603 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
2604 break;
2605 msleep(1);
2606 }
2607 }
Gary Zambranoa85feb82007-05-05 11:52:19 -07002608 if (tp->tg3_flags & TG3_FLAG_WOL_CAP)
2609 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
2610 WOL_DRV_STATE_SHUTDOWN |
2611 WOL_DRV_WOL |
2612 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08002613
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002614 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 u32 mac_mode;
2616
2617 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002618 if (do_low_power) {
Matt Carlsondd477002008-05-25 23:45:58 -07002619 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x5a);
2620 udelay(40);
2621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Michael Chan3f7045c2006-09-27 16:02:29 -07002623 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
2624 mac_mode = MAC_MODE_PORT_MODE_GMII;
2625 else
2626 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002628 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
2629 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2630 ASIC_REV_5700) {
2631 u32 speed = (tp->tg3_flags &
2632 TG3_FLAG_WOL_SPEED_100MB) ?
2633 SPEED_100 : SPEED_10;
2634 if (tg3_5700_link_polarity(tp, speed))
2635 mac_mode |= MAC_MODE_LINK_POLARITY;
2636 else
2637 mac_mode &= ~MAC_MODE_LINK_POLARITY;
2638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 } else {
2640 mac_mode = MAC_MODE_PORT_MODE_TBI;
2641 }
2642
John W. Linvillecbf46852005-04-21 17:01:29 -07002643 if (!(tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 tw32(MAC_LED_CTRL, tp->led_ctrl);
2645
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002646 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
2647 if (((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
2648 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) &&
2649 ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
2650 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)))
2651 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
Matt Carlson3bda1252008-08-15 14:08:22 -07002653 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
2654 mac_mode |= tp->mac_mode &
2655 (MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN);
2656 if (mac_mode & MAC_MODE_APE_TX_EN)
2657 mac_mode |= MAC_MODE_TDE_ENABLE;
2658 }
2659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 tw32_f(MAC_MODE, mac_mode);
2661 udelay(100);
2662
2663 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
2664 udelay(10);
2665 }
2666
2667 if (!(tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB) &&
2668 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2669 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
2670 u32 base_val;
2671
2672 base_val = tp->pci_clock_ctrl;
2673 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
2674 CLOCK_CTRL_TXCLK_DISABLE);
2675
Michael Chanb401e9e2005-12-19 16:27:04 -08002676 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
2677 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Michael Chand7b0a852007-02-13 12:17:38 -08002678 } else if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
Matt Carlson795d01c2007-10-07 23:28:17 -07002679 (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
Michael Chand7b0a852007-02-13 12:17:38 -08002680 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)) {
Michael Chan4cf78e42005-07-25 12:29:19 -07002681 /* do nothing */
Michael Chan85e94ce2005-04-21 17:05:28 -07002682 } else if (!((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF))) {
2684 u32 newbits1, newbits2;
2685
2686 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2687 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2688 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
2689 CLOCK_CTRL_TXCLK_DISABLE |
2690 CLOCK_CTRL_ALTCLK);
2691 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2692 } else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
2693 newbits1 = CLOCK_CTRL_625_CORE;
2694 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
2695 } else {
2696 newbits1 = CLOCK_CTRL_ALTCLK;
2697 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2698 }
2699
Michael Chanb401e9e2005-12-19 16:27:04 -08002700 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
2701 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
Michael Chanb401e9e2005-12-19 16:27:04 -08002703 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
2704 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
2706 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
2707 u32 newbits3;
2708
2709 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2710 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2711 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
2712 CLOCK_CTRL_TXCLK_DISABLE |
2713 CLOCK_CTRL_44MHZ_CORE);
2714 } else {
2715 newbits3 = CLOCK_CTRL_44MHZ_CORE;
2716 }
2717
Michael Chanb401e9e2005-12-19 16:27:04 -08002718 tw32_wait_f(TG3PCI_CLOCK_CTRL,
2719 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 }
2721 }
2722
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002723 if (!(device_should_wake) &&
Matt Carlson22435842008-11-21 17:21:13 -08002724 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08002725 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08002726
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 tg3_frob_aux_power(tp);
2728
2729 /* Workaround for unstable PLL clock */
2730 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
2731 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
2732 u32 val = tr32(0x7d00);
2733
2734 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
2735 tw32(0x7d00, val);
Michael Chan6921d202005-12-13 21:15:53 -08002736 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08002737 int err;
2738
2739 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08002741 if (!err)
2742 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08002743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 }
2745
Michael Chanbbadf502006-04-06 21:46:34 -07002746 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
2747
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002748 if (device_should_wake)
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002749 pci_enable_wake(tp->pdev, state, true);
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 /* Finally, set the new power state. */
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002752 pci_set_power_state(tp->pdev, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 return 0;
2755}
2756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
2758{
2759 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
2760 case MII_TG3_AUX_STAT_10HALF:
2761 *speed = SPEED_10;
2762 *duplex = DUPLEX_HALF;
2763 break;
2764
2765 case MII_TG3_AUX_STAT_10FULL:
2766 *speed = SPEED_10;
2767 *duplex = DUPLEX_FULL;
2768 break;
2769
2770 case MII_TG3_AUX_STAT_100HALF:
2771 *speed = SPEED_100;
2772 *duplex = DUPLEX_HALF;
2773 break;
2774
2775 case MII_TG3_AUX_STAT_100FULL:
2776 *speed = SPEED_100;
2777 *duplex = DUPLEX_FULL;
2778 break;
2779
2780 case MII_TG3_AUX_STAT_1000HALF:
2781 *speed = SPEED_1000;
2782 *duplex = DUPLEX_HALF;
2783 break;
2784
2785 case MII_TG3_AUX_STAT_1000FULL:
2786 *speed = SPEED_1000;
2787 *duplex = DUPLEX_FULL;
2788 break;
2789
2790 default:
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002791 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07002792 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
2793 SPEED_10;
2794 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
2795 DUPLEX_HALF;
2796 break;
2797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 *speed = SPEED_INVALID;
2799 *duplex = DUPLEX_INVALID;
2800 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802}
2803
2804static void tg3_phy_copper_begin(struct tg3 *tp)
2805{
2806 u32 new_adv;
2807 int i;
2808
2809 if (tp->link_config.phy_is_low_power) {
2810 /* Entering low power mode. Disable gigabit and
2811 * 100baseT advertisements.
2812 */
2813 tg3_writephy(tp, MII_TG3_CTRL, 0);
2814
2815 new_adv = (ADVERTISE_10HALF | ADVERTISE_10FULL |
2816 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
2817 if (tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB)
2818 new_adv |= (ADVERTISE_100HALF | ADVERTISE_100FULL);
2819
2820 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2821 } else if (tp->link_config.speed == SPEED_INVALID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
2823 tp->link_config.advertising &=
2824 ~(ADVERTISED_1000baseT_Half |
2825 ADVERTISED_1000baseT_Full);
2826
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002827 new_adv = ADVERTISE_CSMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 if (tp->link_config.advertising & ADVERTISED_10baseT_Half)
2829 new_adv |= ADVERTISE_10HALF;
2830 if (tp->link_config.advertising & ADVERTISED_10baseT_Full)
2831 new_adv |= ADVERTISE_10FULL;
2832 if (tp->link_config.advertising & ADVERTISED_100baseT_Half)
2833 new_adv |= ADVERTISE_100HALF;
2834 if (tp->link_config.advertising & ADVERTISED_100baseT_Full)
2835 new_adv |= ADVERTISE_100FULL;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002836
2837 new_adv |= tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2840
2841 if (tp->link_config.advertising &
2842 (ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full)) {
2843 new_adv = 0;
2844 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
2845 new_adv |= MII_TG3_CTRL_ADV_1000_HALF;
2846 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
2847 new_adv |= MII_TG3_CTRL_ADV_1000_FULL;
2848 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY) &&
2849 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2850 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0))
2851 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2852 MII_TG3_CTRL_ENABLE_AS_MASTER);
2853 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
2854 } else {
2855 tg3_writephy(tp, MII_TG3_CTRL, 0);
2856 }
2857 } else {
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002858 new_adv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2859 new_adv |= ADVERTISE_CSMA;
2860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 /* Asking for a specific link mode. */
2862 if (tp->link_config.speed == SPEED_1000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2864
2865 if (tp->link_config.duplex == DUPLEX_FULL)
2866 new_adv = MII_TG3_CTRL_ADV_1000_FULL;
2867 else
2868 new_adv = MII_TG3_CTRL_ADV_1000_HALF;
2869 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2870 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
2871 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2872 MII_TG3_CTRL_ENABLE_AS_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 if (tp->link_config.speed == SPEED_100) {
2875 if (tp->link_config.duplex == DUPLEX_FULL)
2876 new_adv |= ADVERTISE_100FULL;
2877 else
2878 new_adv |= ADVERTISE_100HALF;
2879 } else {
2880 if (tp->link_config.duplex == DUPLEX_FULL)
2881 new_adv |= ADVERTISE_10FULL;
2882 else
2883 new_adv |= ADVERTISE_10HALF;
2884 }
2885 tg3_writephy(tp, MII_ADVERTISE, new_adv);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002886
2887 new_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002889
2890 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 }
2892
2893 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
2894 tp->link_config.speed != SPEED_INVALID) {
2895 u32 bmcr, orig_bmcr;
2896
2897 tp->link_config.active_speed = tp->link_config.speed;
2898 tp->link_config.active_duplex = tp->link_config.duplex;
2899
2900 bmcr = 0;
2901 switch (tp->link_config.speed) {
2902 default:
2903 case SPEED_10:
2904 break;
2905
2906 case SPEED_100:
2907 bmcr |= BMCR_SPEED100;
2908 break;
2909
2910 case SPEED_1000:
2911 bmcr |= TG3_BMCR_SPEED1000;
2912 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
2915 if (tp->link_config.duplex == DUPLEX_FULL)
2916 bmcr |= BMCR_FULLDPLX;
2917
2918 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
2919 (bmcr != orig_bmcr)) {
2920 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
2921 for (i = 0; i < 1500; i++) {
2922 u32 tmp;
2923
2924 udelay(10);
2925 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
2926 tg3_readphy(tp, MII_BMSR, &tmp))
2927 continue;
2928 if (!(tmp & BMSR_LSTATUS)) {
2929 udelay(40);
2930 break;
2931 }
2932 }
2933 tg3_writephy(tp, MII_BMCR, bmcr);
2934 udelay(40);
2935 }
2936 } else {
2937 tg3_writephy(tp, MII_BMCR,
2938 BMCR_ANENABLE | BMCR_ANRESTART);
2939 }
2940}
2941
2942static int tg3_init_5401phy_dsp(struct tg3 *tp)
2943{
2944 int err;
2945
2946 /* Turn off tap power management. */
2947 /* Set Extended packet length bit */
2948 err = tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
2949
2950 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0012);
2951 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1804);
2952
2953 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0013);
2954 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1204);
2955
2956 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
2957 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0132);
2958
2959 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
2960 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0232);
2961
2962 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
2963 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0a20);
2964
2965 udelay(40);
2966
2967 return err;
2968}
2969
Michael Chan3600d912006-12-07 00:21:48 -08002970static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
Michael Chan3600d912006-12-07 00:21:48 -08002972 u32 adv_reg, all_mask = 0;
2973
2974 if (mask & ADVERTISED_10baseT_Half)
2975 all_mask |= ADVERTISE_10HALF;
2976 if (mask & ADVERTISED_10baseT_Full)
2977 all_mask |= ADVERTISE_10FULL;
2978 if (mask & ADVERTISED_100baseT_Half)
2979 all_mask |= ADVERTISE_100HALF;
2980 if (mask & ADVERTISED_100baseT_Full)
2981 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
2983 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
2984 return 0;
2985
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 if ((adv_reg & all_mask) != all_mask)
2987 return 0;
2988 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
2989 u32 tg3_ctrl;
2990
Michael Chan3600d912006-12-07 00:21:48 -08002991 all_mask = 0;
2992 if (mask & ADVERTISED_1000baseT_Half)
2993 all_mask |= ADVERTISE_1000HALF;
2994 if (mask & ADVERTISED_1000baseT_Full)
2995 all_mask |= ADVERTISE_1000FULL;
2996
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 if (tg3_readphy(tp, MII_TG3_CTRL, &tg3_ctrl))
2998 return 0;
2999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 if ((tg3_ctrl & all_mask) != all_mask)
3001 return 0;
3002 }
3003 return 1;
3004}
3005
Matt Carlsonef167e22007-12-20 20:10:01 -08003006static int tg3_adv_1000T_flowctrl_ok(struct tg3 *tp, u32 *lcladv, u32 *rmtadv)
3007{
3008 u32 curadv, reqadv;
3009
3010 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
3011 return 1;
3012
3013 curadv = *lcladv & (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
3014 reqadv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
3015
3016 if (tp->link_config.active_duplex == DUPLEX_FULL) {
3017 if (curadv != reqadv)
3018 return 0;
3019
3020 if (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG)
3021 tg3_readphy(tp, MII_LPA, rmtadv);
3022 } else {
3023 /* Reprogram the advertisement register, even if it
3024 * does not affect the current link. If the link
3025 * gets renegotiated in the future, we can save an
3026 * additional renegotiation cycle by advertising
3027 * it correctly in the first place.
3028 */
3029 if (curadv != reqadv) {
3030 *lcladv &= ~(ADVERTISE_PAUSE_CAP |
3031 ADVERTISE_PAUSE_ASYM);
3032 tg3_writephy(tp, MII_ADVERTISE, *lcladv | reqadv);
3033 }
3034 }
3035
3036 return 1;
3037}
3038
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
3040{
3041 int current_link_up;
3042 u32 bmsr, dummy;
Matt Carlsonef167e22007-12-20 20:10:01 -08003043 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 u16 current_speed;
3045 u8 current_duplex;
3046 int i, err;
3047
3048 tw32(MAC_EVENT, 0);
3049
3050 tw32_f(MAC_STATUS,
3051 (MAC_STATUS_SYNC_CHANGED |
3052 MAC_STATUS_CFG_CHANGED |
3053 MAC_STATUS_MI_COMPLETION |
3054 MAC_STATUS_LNKSTATE_CHANGED));
3055 udelay(40);
3056
Matt Carlson8ef21422008-05-02 16:47:53 -07003057 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
3058 tw32_f(MAC_MI_MODE,
3059 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
3060 udelay(80);
3061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
3063 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x02);
3064
3065 /* Some third-party PHYs need to be reset on link going
3066 * down.
3067 */
3068 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3069 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
3070 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
3071 netif_carrier_ok(tp->dev)) {
3072 tg3_readphy(tp, MII_BMSR, &bmsr);
3073 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3074 !(bmsr & BMSR_LSTATUS))
3075 force_reset = 1;
3076 }
3077 if (force_reset)
3078 tg3_phy_reset(tp);
3079
3080 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
3081 tg3_readphy(tp, MII_BMSR, &bmsr);
3082 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
3083 !(tp->tg3_flags & TG3_FLAG_INIT_COMPLETE))
3084 bmsr = 0;
3085
3086 if (!(bmsr & BMSR_LSTATUS)) {
3087 err = tg3_init_5401phy_dsp(tp);
3088 if (err)
3089 return err;
3090
3091 tg3_readphy(tp, MII_BMSR, &bmsr);
3092 for (i = 0; i < 1000; i++) {
3093 udelay(10);
3094 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3095 (bmsr & BMSR_LSTATUS)) {
3096 udelay(40);
3097 break;
3098 }
3099 }
3100
3101 if ((tp->phy_id & PHY_ID_REV_MASK) == PHY_REV_BCM5401_B0 &&
3102 !(bmsr & BMSR_LSTATUS) &&
3103 tp->link_config.active_speed == SPEED_1000) {
3104 err = tg3_phy_reset(tp);
3105 if (!err)
3106 err = tg3_init_5401phy_dsp(tp);
3107 if (err)
3108 return err;
3109 }
3110 }
3111 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3112 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
3113 /* 5701 {A0,B0} CRC bug workaround */
3114 tg3_writephy(tp, 0x15, 0x0a75);
3115 tg3_writephy(tp, 0x1c, 0x8c68);
3116 tg3_writephy(tp, 0x1c, 0x8d68);
3117 tg3_writephy(tp, 0x1c, 0x8c68);
3118 }
3119
3120 /* Clear pending interrupts... */
3121 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
3122 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
3123
3124 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT)
3125 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlson7f97a4b2009-08-25 10:10:03 +00003126 else if (!(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 tg3_writephy(tp, MII_TG3_IMASK, ~0);
3128
3129 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3130 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3131 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
3132 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3133 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
3134 else
3135 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
3136 }
3137
3138 current_link_up = 0;
3139 current_speed = SPEED_INVALID;
3140 current_duplex = DUPLEX_INVALID;
3141
3142 if (tp->tg3_flags2 & TG3_FLG2_CAPACITIVE_COUPLING) {
3143 u32 val;
3144
3145 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4007);
3146 tg3_readphy(tp, MII_TG3_AUX_CTRL, &val);
3147 if (!(val & (1 << 10))) {
3148 val |= (1 << 10);
3149 tg3_writephy(tp, MII_TG3_AUX_CTRL, val);
3150 goto relink;
3151 }
3152 }
3153
3154 bmsr = 0;
3155 for (i = 0; i < 100; i++) {
3156 tg3_readphy(tp, MII_BMSR, &bmsr);
3157 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3158 (bmsr & BMSR_LSTATUS))
3159 break;
3160 udelay(40);
3161 }
3162
3163 if (bmsr & BMSR_LSTATUS) {
3164 u32 aux_stat, bmcr;
3165
3166 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
3167 for (i = 0; i < 2000; i++) {
3168 udelay(10);
3169 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
3170 aux_stat)
3171 break;
3172 }
3173
3174 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
3175 &current_speed,
3176 &current_duplex);
3177
3178 bmcr = 0;
3179 for (i = 0; i < 200; i++) {
3180 tg3_readphy(tp, MII_BMCR, &bmcr);
3181 if (tg3_readphy(tp, MII_BMCR, &bmcr))
3182 continue;
3183 if (bmcr && bmcr != 0x7fff)
3184 break;
3185 udelay(10);
3186 }
3187
Matt Carlsonef167e22007-12-20 20:10:01 -08003188 lcl_adv = 0;
3189 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
Matt Carlsonef167e22007-12-20 20:10:01 -08003191 tp->link_config.active_speed = current_speed;
3192 tp->link_config.active_duplex = current_duplex;
3193
3194 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3195 if ((bmcr & BMCR_ANENABLE) &&
3196 tg3_copper_is_advertising_all(tp,
3197 tp->link_config.advertising)) {
3198 if (tg3_adv_1000T_flowctrl_ok(tp, &lcl_adv,
3199 &rmt_adv))
3200 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 }
3202 } else {
3203 if (!(bmcr & BMCR_ANENABLE) &&
3204 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08003205 tp->link_config.duplex == current_duplex &&
3206 tp->link_config.flowctrl ==
3207 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 }
3210 }
3211
Matt Carlsonef167e22007-12-20 20:10:01 -08003212 if (current_link_up == 1 &&
3213 tp->link_config.active_duplex == DUPLEX_FULL)
3214 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 }
3216
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217relink:
Michael Chan6921d202005-12-13 21:15:53 -08003218 if (current_link_up == 0 || tp->link_config.phy_is_low_power) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 u32 tmp;
3220
3221 tg3_phy_copper_begin(tp);
3222
3223 tg3_readphy(tp, MII_BMSR, &tmp);
3224 if (!tg3_readphy(tp, MII_BMSR, &tmp) &&
3225 (tmp & BMSR_LSTATUS))
3226 current_link_up = 1;
3227 }
3228
3229 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
3230 if (current_link_up == 1) {
3231 if (tp->link_config.active_speed == SPEED_100 ||
3232 tp->link_config.active_speed == SPEED_10)
3233 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3234 else
3235 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlson7f97a4b2009-08-25 10:10:03 +00003236 } else if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET)
3237 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3238 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
3240
3241 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
3242 if (tp->link_config.active_duplex == DUPLEX_HALF)
3243 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
3244
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003246 if (current_link_up == 1 &&
3247 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003249 else
3250 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 }
3252
3253 /* ??? Without this setting Netgear GA302T PHY does not
3254 * ??? send/receive packets...
3255 */
3256 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411 &&
3257 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
3258 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
3259 tw32_f(MAC_MI_MODE, tp->mi_mode);
3260 udelay(80);
3261 }
3262
3263 tw32_f(MAC_MODE, tp->mac_mode);
3264 udelay(40);
3265
3266 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
3267 /* Polled via timer. */
3268 tw32_f(MAC_EVENT, 0);
3269 } else {
3270 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3271 }
3272 udelay(40);
3273
3274 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
3275 current_link_up == 1 &&
3276 tp->link_config.active_speed == SPEED_1000 &&
3277 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) ||
3278 (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED))) {
3279 udelay(120);
3280 tw32_f(MAC_STATUS,
3281 (MAC_STATUS_SYNC_CHANGED |
3282 MAC_STATUS_CFG_CHANGED));
3283 udelay(40);
3284 tg3_write_mem(tp,
3285 NIC_SRAM_FIRMWARE_MBOX,
3286 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
3287 }
3288
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003289 /* Prevent send BD corruption. */
3290 if (tp->tg3_flags3 & TG3_FLG3_CLKREQ_BUG) {
3291 u16 oldlnkctl, newlnkctl;
3292
3293 pci_read_config_word(tp->pdev,
3294 tp->pcie_cap + PCI_EXP_LNKCTL,
3295 &oldlnkctl);
3296 if (tp->link_config.active_speed == SPEED_100 ||
3297 tp->link_config.active_speed == SPEED_10)
3298 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
3299 else
3300 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
3301 if (newlnkctl != oldlnkctl)
3302 pci_write_config_word(tp->pdev,
3303 tp->pcie_cap + PCI_EXP_LNKCTL,
3304 newlnkctl);
3305 }
3306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 if (current_link_up != netif_carrier_ok(tp->dev)) {
3308 if (current_link_up)
3309 netif_carrier_on(tp->dev);
3310 else
3311 netif_carrier_off(tp->dev);
3312 tg3_link_report(tp);
3313 }
3314
3315 return 0;
3316}
3317
3318struct tg3_fiber_aneginfo {
3319 int state;
3320#define ANEG_STATE_UNKNOWN 0
3321#define ANEG_STATE_AN_ENABLE 1
3322#define ANEG_STATE_RESTART_INIT 2
3323#define ANEG_STATE_RESTART 3
3324#define ANEG_STATE_DISABLE_LINK_OK 4
3325#define ANEG_STATE_ABILITY_DETECT_INIT 5
3326#define ANEG_STATE_ABILITY_DETECT 6
3327#define ANEG_STATE_ACK_DETECT_INIT 7
3328#define ANEG_STATE_ACK_DETECT 8
3329#define ANEG_STATE_COMPLETE_ACK_INIT 9
3330#define ANEG_STATE_COMPLETE_ACK 10
3331#define ANEG_STATE_IDLE_DETECT_INIT 11
3332#define ANEG_STATE_IDLE_DETECT 12
3333#define ANEG_STATE_LINK_OK 13
3334#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
3335#define ANEG_STATE_NEXT_PAGE_WAIT 15
3336
3337 u32 flags;
3338#define MR_AN_ENABLE 0x00000001
3339#define MR_RESTART_AN 0x00000002
3340#define MR_AN_COMPLETE 0x00000004
3341#define MR_PAGE_RX 0x00000008
3342#define MR_NP_LOADED 0x00000010
3343#define MR_TOGGLE_TX 0x00000020
3344#define MR_LP_ADV_FULL_DUPLEX 0x00000040
3345#define MR_LP_ADV_HALF_DUPLEX 0x00000080
3346#define MR_LP_ADV_SYM_PAUSE 0x00000100
3347#define MR_LP_ADV_ASYM_PAUSE 0x00000200
3348#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
3349#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
3350#define MR_LP_ADV_NEXT_PAGE 0x00001000
3351#define MR_TOGGLE_RX 0x00002000
3352#define MR_NP_RX 0x00004000
3353
3354#define MR_LINK_OK 0x80000000
3355
3356 unsigned long link_time, cur_time;
3357
3358 u32 ability_match_cfg;
3359 int ability_match_count;
3360
3361 char ability_match, idle_match, ack_match;
3362
3363 u32 txconfig, rxconfig;
3364#define ANEG_CFG_NP 0x00000080
3365#define ANEG_CFG_ACK 0x00000040
3366#define ANEG_CFG_RF2 0x00000020
3367#define ANEG_CFG_RF1 0x00000010
3368#define ANEG_CFG_PS2 0x00000001
3369#define ANEG_CFG_PS1 0x00008000
3370#define ANEG_CFG_HD 0x00004000
3371#define ANEG_CFG_FD 0x00002000
3372#define ANEG_CFG_INVAL 0x00001f06
3373
3374};
3375#define ANEG_OK 0
3376#define ANEG_DONE 1
3377#define ANEG_TIMER_ENAB 2
3378#define ANEG_FAILED -1
3379
3380#define ANEG_STATE_SETTLE_TIME 10000
3381
3382static int tg3_fiber_aneg_smachine(struct tg3 *tp,
3383 struct tg3_fiber_aneginfo *ap)
3384{
Matt Carlson5be73b42007-12-20 20:09:29 -08003385 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 unsigned long delta;
3387 u32 rx_cfg_reg;
3388 int ret;
3389
3390 if (ap->state == ANEG_STATE_UNKNOWN) {
3391 ap->rxconfig = 0;
3392 ap->link_time = 0;
3393 ap->cur_time = 0;
3394 ap->ability_match_cfg = 0;
3395 ap->ability_match_count = 0;
3396 ap->ability_match = 0;
3397 ap->idle_match = 0;
3398 ap->ack_match = 0;
3399 }
3400 ap->cur_time++;
3401
3402 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
3403 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
3404
3405 if (rx_cfg_reg != ap->ability_match_cfg) {
3406 ap->ability_match_cfg = rx_cfg_reg;
3407 ap->ability_match = 0;
3408 ap->ability_match_count = 0;
3409 } else {
3410 if (++ap->ability_match_count > 1) {
3411 ap->ability_match = 1;
3412 ap->ability_match_cfg = rx_cfg_reg;
3413 }
3414 }
3415 if (rx_cfg_reg & ANEG_CFG_ACK)
3416 ap->ack_match = 1;
3417 else
3418 ap->ack_match = 0;
3419
3420 ap->idle_match = 0;
3421 } else {
3422 ap->idle_match = 1;
3423 ap->ability_match_cfg = 0;
3424 ap->ability_match_count = 0;
3425 ap->ability_match = 0;
3426 ap->ack_match = 0;
3427
3428 rx_cfg_reg = 0;
3429 }
3430
3431 ap->rxconfig = rx_cfg_reg;
3432 ret = ANEG_OK;
3433
3434 switch(ap->state) {
3435 case ANEG_STATE_UNKNOWN:
3436 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
3437 ap->state = ANEG_STATE_AN_ENABLE;
3438
3439 /* fallthru */
3440 case ANEG_STATE_AN_ENABLE:
3441 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
3442 if (ap->flags & MR_AN_ENABLE) {
3443 ap->link_time = 0;
3444 ap->cur_time = 0;
3445 ap->ability_match_cfg = 0;
3446 ap->ability_match_count = 0;
3447 ap->ability_match = 0;
3448 ap->idle_match = 0;
3449 ap->ack_match = 0;
3450
3451 ap->state = ANEG_STATE_RESTART_INIT;
3452 } else {
3453 ap->state = ANEG_STATE_DISABLE_LINK_OK;
3454 }
3455 break;
3456
3457 case ANEG_STATE_RESTART_INIT:
3458 ap->link_time = ap->cur_time;
3459 ap->flags &= ~(MR_NP_LOADED);
3460 ap->txconfig = 0;
3461 tw32(MAC_TX_AUTO_NEG, 0);
3462 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3463 tw32_f(MAC_MODE, tp->mac_mode);
3464 udelay(40);
3465
3466 ret = ANEG_TIMER_ENAB;
3467 ap->state = ANEG_STATE_RESTART;
3468
3469 /* fallthru */
3470 case ANEG_STATE_RESTART:
3471 delta = ap->cur_time - ap->link_time;
3472 if (delta > ANEG_STATE_SETTLE_TIME) {
3473 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
3474 } else {
3475 ret = ANEG_TIMER_ENAB;
3476 }
3477 break;
3478
3479 case ANEG_STATE_DISABLE_LINK_OK:
3480 ret = ANEG_DONE;
3481 break;
3482
3483 case ANEG_STATE_ABILITY_DETECT_INIT:
3484 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08003485 ap->txconfig = ANEG_CFG_FD;
3486 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3487 if (flowctrl & ADVERTISE_1000XPAUSE)
3488 ap->txconfig |= ANEG_CFG_PS1;
3489 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3490 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3492 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3493 tw32_f(MAC_MODE, tp->mac_mode);
3494 udelay(40);
3495
3496 ap->state = ANEG_STATE_ABILITY_DETECT;
3497 break;
3498
3499 case ANEG_STATE_ABILITY_DETECT:
3500 if (ap->ability_match != 0 && ap->rxconfig != 0) {
3501 ap->state = ANEG_STATE_ACK_DETECT_INIT;
3502 }
3503 break;
3504
3505 case ANEG_STATE_ACK_DETECT_INIT:
3506 ap->txconfig |= ANEG_CFG_ACK;
3507 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3508 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3509 tw32_f(MAC_MODE, tp->mac_mode);
3510 udelay(40);
3511
3512 ap->state = ANEG_STATE_ACK_DETECT;
3513
3514 /* fallthru */
3515 case ANEG_STATE_ACK_DETECT:
3516 if (ap->ack_match != 0) {
3517 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
3518 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
3519 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
3520 } else {
3521 ap->state = ANEG_STATE_AN_ENABLE;
3522 }
3523 } else if (ap->ability_match != 0 &&
3524 ap->rxconfig == 0) {
3525 ap->state = ANEG_STATE_AN_ENABLE;
3526 }
3527 break;
3528
3529 case ANEG_STATE_COMPLETE_ACK_INIT:
3530 if (ap->rxconfig & ANEG_CFG_INVAL) {
3531 ret = ANEG_FAILED;
3532 break;
3533 }
3534 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
3535 MR_LP_ADV_HALF_DUPLEX |
3536 MR_LP_ADV_SYM_PAUSE |
3537 MR_LP_ADV_ASYM_PAUSE |
3538 MR_LP_ADV_REMOTE_FAULT1 |
3539 MR_LP_ADV_REMOTE_FAULT2 |
3540 MR_LP_ADV_NEXT_PAGE |
3541 MR_TOGGLE_RX |
3542 MR_NP_RX);
3543 if (ap->rxconfig & ANEG_CFG_FD)
3544 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
3545 if (ap->rxconfig & ANEG_CFG_HD)
3546 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
3547 if (ap->rxconfig & ANEG_CFG_PS1)
3548 ap->flags |= MR_LP_ADV_SYM_PAUSE;
3549 if (ap->rxconfig & ANEG_CFG_PS2)
3550 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
3551 if (ap->rxconfig & ANEG_CFG_RF1)
3552 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
3553 if (ap->rxconfig & ANEG_CFG_RF2)
3554 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
3555 if (ap->rxconfig & ANEG_CFG_NP)
3556 ap->flags |= MR_LP_ADV_NEXT_PAGE;
3557
3558 ap->link_time = ap->cur_time;
3559
3560 ap->flags ^= (MR_TOGGLE_TX);
3561 if (ap->rxconfig & 0x0008)
3562 ap->flags |= MR_TOGGLE_RX;
3563 if (ap->rxconfig & ANEG_CFG_NP)
3564 ap->flags |= MR_NP_RX;
3565 ap->flags |= MR_PAGE_RX;
3566
3567 ap->state = ANEG_STATE_COMPLETE_ACK;
3568 ret = ANEG_TIMER_ENAB;
3569 break;
3570
3571 case ANEG_STATE_COMPLETE_ACK:
3572 if (ap->ability_match != 0 &&
3573 ap->rxconfig == 0) {
3574 ap->state = ANEG_STATE_AN_ENABLE;
3575 break;
3576 }
3577 delta = ap->cur_time - ap->link_time;
3578 if (delta > ANEG_STATE_SETTLE_TIME) {
3579 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
3580 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3581 } else {
3582 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
3583 !(ap->flags & MR_NP_RX)) {
3584 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3585 } else {
3586 ret = ANEG_FAILED;
3587 }
3588 }
3589 }
3590 break;
3591
3592 case ANEG_STATE_IDLE_DETECT_INIT:
3593 ap->link_time = ap->cur_time;
3594 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3595 tw32_f(MAC_MODE, tp->mac_mode);
3596 udelay(40);
3597
3598 ap->state = ANEG_STATE_IDLE_DETECT;
3599 ret = ANEG_TIMER_ENAB;
3600 break;
3601
3602 case ANEG_STATE_IDLE_DETECT:
3603 if (ap->ability_match != 0 &&
3604 ap->rxconfig == 0) {
3605 ap->state = ANEG_STATE_AN_ENABLE;
3606 break;
3607 }
3608 delta = ap->cur_time - ap->link_time;
3609 if (delta > ANEG_STATE_SETTLE_TIME) {
3610 /* XXX another gem from the Broadcom driver :( */
3611 ap->state = ANEG_STATE_LINK_OK;
3612 }
3613 break;
3614
3615 case ANEG_STATE_LINK_OK:
3616 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
3617 ret = ANEG_DONE;
3618 break;
3619
3620 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
3621 /* ??? unimplemented */
3622 break;
3623
3624 case ANEG_STATE_NEXT_PAGE_WAIT:
3625 /* ??? unimplemented */
3626 break;
3627
3628 default:
3629 ret = ANEG_FAILED;
3630 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
3633 return ret;
3634}
3635
Matt Carlson5be73b42007-12-20 20:09:29 -08003636static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637{
3638 int res = 0;
3639 struct tg3_fiber_aneginfo aninfo;
3640 int status = ANEG_FAILED;
3641 unsigned int tick;
3642 u32 tmp;
3643
3644 tw32_f(MAC_TX_AUTO_NEG, 0);
3645
3646 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
3647 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
3648 udelay(40);
3649
3650 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
3651 udelay(40);
3652
3653 memset(&aninfo, 0, sizeof(aninfo));
3654 aninfo.flags |= MR_AN_ENABLE;
3655 aninfo.state = ANEG_STATE_UNKNOWN;
3656 aninfo.cur_time = 0;
3657 tick = 0;
3658 while (++tick < 195000) {
3659 status = tg3_fiber_aneg_smachine(tp, &aninfo);
3660 if (status == ANEG_DONE || status == ANEG_FAILED)
3661 break;
3662
3663 udelay(1);
3664 }
3665
3666 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3667 tw32_f(MAC_MODE, tp->mac_mode);
3668 udelay(40);
3669
Matt Carlson5be73b42007-12-20 20:09:29 -08003670 *txflags = aninfo.txconfig;
3671 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
3673 if (status == ANEG_DONE &&
3674 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
3675 MR_LP_ADV_FULL_DUPLEX)))
3676 res = 1;
3677
3678 return res;
3679}
3680
3681static void tg3_init_bcm8002(struct tg3 *tp)
3682{
3683 u32 mac_status = tr32(MAC_STATUS);
3684 int i;
3685
3686 /* Reset when initting first time or we have a link. */
3687 if ((tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) &&
3688 !(mac_status & MAC_STATUS_PCS_SYNCED))
3689 return;
3690
3691 /* Set PLL lock range. */
3692 tg3_writephy(tp, 0x16, 0x8007);
3693
3694 /* SW reset */
3695 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
3696
3697 /* Wait for reset to complete. */
3698 /* XXX schedule_timeout() ... */
3699 for (i = 0; i < 500; i++)
3700 udelay(10);
3701
3702 /* Config mode; select PMA/Ch 1 regs. */
3703 tg3_writephy(tp, 0x10, 0x8411);
3704
3705 /* Enable auto-lock and comdet, select txclk for tx. */
3706 tg3_writephy(tp, 0x11, 0x0a10);
3707
3708 tg3_writephy(tp, 0x18, 0x00a0);
3709 tg3_writephy(tp, 0x16, 0x41ff);
3710
3711 /* Assert and deassert POR. */
3712 tg3_writephy(tp, 0x13, 0x0400);
3713 udelay(40);
3714 tg3_writephy(tp, 0x13, 0x0000);
3715
3716 tg3_writephy(tp, 0x11, 0x0a50);
3717 udelay(40);
3718 tg3_writephy(tp, 0x11, 0x0a10);
3719
3720 /* Wait for signal to stabilize */
3721 /* XXX schedule_timeout() ... */
3722 for (i = 0; i < 15000; i++)
3723 udelay(10);
3724
3725 /* Deselect the channel register so we can read the PHYID
3726 * later.
3727 */
3728 tg3_writephy(tp, 0x10, 0x8011);
3729}
3730
3731static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
3732{
Matt Carlson82cd3d12007-12-20 20:09:00 -08003733 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 u32 sg_dig_ctrl, sg_dig_status;
3735 u32 serdes_cfg, expected_sg_dig_ctrl;
3736 int workaround, port_a;
3737 int current_link_up;
3738
3739 serdes_cfg = 0;
3740 expected_sg_dig_ctrl = 0;
3741 workaround = 0;
3742 port_a = 1;
3743 current_link_up = 0;
3744
3745 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
3746 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
3747 workaround = 1;
3748 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
3749 port_a = 0;
3750
3751 /* preserve bits 0-11,13,14 for signal pre-emphasis */
3752 /* preserve bits 20-23 for voltage regulator */
3753 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
3754 }
3755
3756 sg_dig_ctrl = tr32(SG_DIG_CTRL);
3757
3758 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003759 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 if (workaround) {
3761 u32 val = serdes_cfg;
3762
3763 if (port_a)
3764 val |= 0xc010000;
3765 else
3766 val |= 0x4010000;
3767 tw32_f(MAC_SERDES_CFG, val);
3768 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003769
3770 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 }
3772 if (mac_status & MAC_STATUS_PCS_SYNCED) {
3773 tg3_setup_flow_control(tp, 0, 0);
3774 current_link_up = 1;
3775 }
3776 goto out;
3777 }
3778
3779 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003780 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781
Matt Carlson82cd3d12007-12-20 20:09:00 -08003782 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3783 if (flowctrl & ADVERTISE_1000XPAUSE)
3784 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
3785 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3786 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
3788 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003789 if ((tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT) &&
3790 tp->serdes_counter &&
3791 ((mac_status & (MAC_STATUS_PCS_SYNCED |
3792 MAC_STATUS_RCVD_CFG)) ==
3793 MAC_STATUS_PCS_SYNCED)) {
3794 tp->serdes_counter--;
3795 current_link_up = 1;
3796 goto out;
3797 }
3798restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 if (workaround)
3800 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003801 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 udelay(5);
3803 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
3804
Michael Chan3d3ebe72006-09-27 15:59:15 -07003805 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
3806 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
3808 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003809 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 mac_status = tr32(MAC_STATUS);
3811
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003812 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08003814 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
Matt Carlson82cd3d12007-12-20 20:09:00 -08003816 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
3817 local_adv |= ADVERTISE_1000XPAUSE;
3818 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
3819 local_adv |= ADVERTISE_1000XPSE_ASYM;
3820
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003821 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003822 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003823 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003824 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
3826 tg3_setup_flow_control(tp, local_adv, remote_adv);
3827 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003828 tp->serdes_counter = 0;
3829 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003830 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003831 if (tp->serdes_counter)
3832 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 else {
3834 if (workaround) {
3835 u32 val = serdes_cfg;
3836
3837 if (port_a)
3838 val |= 0xc010000;
3839 else
3840 val |= 0x4010000;
3841
3842 tw32_f(MAC_SERDES_CFG, val);
3843 }
3844
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003845 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 udelay(40);
3847
3848 /* Link parallel detection - link is up */
3849 /* only if we have PCS_SYNC and not */
3850 /* receiving config code words */
3851 mac_status = tr32(MAC_STATUS);
3852 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
3853 !(mac_status & MAC_STATUS_RCVD_CFG)) {
3854 tg3_setup_flow_control(tp, 0, 0);
3855 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003856 tp->tg3_flags2 |=
3857 TG3_FLG2_PARALLEL_DETECT;
3858 tp->serdes_counter =
3859 SERDES_PARALLEL_DET_TIMEOUT;
3860 } else
3861 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 }
3863 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07003864 } else {
3865 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
3866 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 }
3868
3869out:
3870 return current_link_up;
3871}
3872
3873static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
3874{
3875 int current_link_up = 0;
3876
Michael Chan5cf64b8a2007-05-05 12:11:21 -07003877 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
3880 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08003881 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003883
Matt Carlson5be73b42007-12-20 20:09:29 -08003884 if (fiber_autoneg(tp, &txflags, &rxflags)) {
3885 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
Matt Carlson5be73b42007-12-20 20:09:29 -08003887 if (txflags & ANEG_CFG_PS1)
3888 local_adv |= ADVERTISE_1000XPAUSE;
3889 if (txflags & ANEG_CFG_PS2)
3890 local_adv |= ADVERTISE_1000XPSE_ASYM;
3891
3892 if (rxflags & MR_LP_ADV_SYM_PAUSE)
3893 remote_adv |= LPA_1000XPAUSE;
3894 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
3895 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896
3897 tg3_setup_flow_control(tp, local_adv, remote_adv);
3898
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 current_link_up = 1;
3900 }
3901 for (i = 0; i < 30; i++) {
3902 udelay(20);
3903 tw32_f(MAC_STATUS,
3904 (MAC_STATUS_SYNC_CHANGED |
3905 MAC_STATUS_CFG_CHANGED));
3906 udelay(40);
3907 if ((tr32(MAC_STATUS) &
3908 (MAC_STATUS_SYNC_CHANGED |
3909 MAC_STATUS_CFG_CHANGED)) == 0)
3910 break;
3911 }
3912
3913 mac_status = tr32(MAC_STATUS);
3914 if (current_link_up == 0 &&
3915 (mac_status & MAC_STATUS_PCS_SYNCED) &&
3916 !(mac_status & MAC_STATUS_RCVD_CFG))
3917 current_link_up = 1;
3918 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08003919 tg3_setup_flow_control(tp, 0, 0);
3920
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 /* Forcing 1000FD link up. */
3922 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
3924 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
3925 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003926
3927 tw32_f(MAC_MODE, tp->mac_mode);
3928 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 }
3930
3931out:
3932 return current_link_up;
3933}
3934
3935static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
3936{
3937 u32 orig_pause_cfg;
3938 u16 orig_active_speed;
3939 u8 orig_active_duplex;
3940 u32 mac_status;
3941 int current_link_up;
3942 int i;
3943
Matt Carlson8d018622007-12-20 20:05:44 -08003944 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 orig_active_speed = tp->link_config.active_speed;
3946 orig_active_duplex = tp->link_config.active_duplex;
3947
3948 if (!(tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG) &&
3949 netif_carrier_ok(tp->dev) &&
3950 (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE)) {
3951 mac_status = tr32(MAC_STATUS);
3952 mac_status &= (MAC_STATUS_PCS_SYNCED |
3953 MAC_STATUS_SIGNAL_DET |
3954 MAC_STATUS_CFG_CHANGED |
3955 MAC_STATUS_RCVD_CFG);
3956 if (mac_status == (MAC_STATUS_PCS_SYNCED |
3957 MAC_STATUS_SIGNAL_DET)) {
3958 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
3959 MAC_STATUS_CFG_CHANGED));
3960 return 0;
3961 }
3962 }
3963
3964 tw32_f(MAC_TX_AUTO_NEG, 0);
3965
3966 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
3967 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
3968 tw32_f(MAC_MODE, tp->mac_mode);
3969 udelay(40);
3970
3971 if (tp->phy_id == PHY_ID_BCM8002)
3972 tg3_init_bcm8002(tp);
3973
3974 /* Enable link change event even when serdes polling. */
3975 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3976 udelay(40);
3977
3978 current_link_up = 0;
3979 mac_status = tr32(MAC_STATUS);
3980
3981 if (tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG)
3982 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
3983 else
3984 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
3985
Matt Carlson898a56f2009-08-28 14:02:40 +00003986 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00003988 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989
3990 for (i = 0; i < 100; i++) {
3991 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
3992 MAC_STATUS_CFG_CHANGED));
3993 udelay(5);
3994 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07003995 MAC_STATUS_CFG_CHANGED |
3996 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 break;
3998 }
3999
4000 mac_status = tr32(MAC_STATUS);
4001 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
4002 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004003 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
4004 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 tw32_f(MAC_MODE, (tp->mac_mode |
4006 MAC_MODE_SEND_CONFIGS));
4007 udelay(1);
4008 tw32_f(MAC_MODE, tp->mac_mode);
4009 }
4010 }
4011
4012 if (current_link_up == 1) {
4013 tp->link_config.active_speed = SPEED_1000;
4014 tp->link_config.active_duplex = DUPLEX_FULL;
4015 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4016 LED_CTRL_LNKLED_OVERRIDE |
4017 LED_CTRL_1000MBPS_ON));
4018 } else {
4019 tp->link_config.active_speed = SPEED_INVALID;
4020 tp->link_config.active_duplex = DUPLEX_INVALID;
4021 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4022 LED_CTRL_LNKLED_OVERRIDE |
4023 LED_CTRL_TRAFFIC_OVERRIDE));
4024 }
4025
4026 if (current_link_up != netif_carrier_ok(tp->dev)) {
4027 if (current_link_up)
4028 netif_carrier_on(tp->dev);
4029 else
4030 netif_carrier_off(tp->dev);
4031 tg3_link_report(tp);
4032 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08004033 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 if (orig_pause_cfg != now_pause_cfg ||
4035 orig_active_speed != tp->link_config.active_speed ||
4036 orig_active_duplex != tp->link_config.active_duplex)
4037 tg3_link_report(tp);
4038 }
4039
4040 return 0;
4041}
4042
Michael Chan747e8f82005-07-25 12:33:22 -07004043static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
4044{
4045 int current_link_up, err = 0;
4046 u32 bmsr, bmcr;
4047 u16 current_speed;
4048 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08004049 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07004050
4051 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4052 tw32_f(MAC_MODE, tp->mac_mode);
4053 udelay(40);
4054
4055 tw32(MAC_EVENT, 0);
4056
4057 tw32_f(MAC_STATUS,
4058 (MAC_STATUS_SYNC_CHANGED |
4059 MAC_STATUS_CFG_CHANGED |
4060 MAC_STATUS_MI_COMPLETION |
4061 MAC_STATUS_LNKSTATE_CHANGED));
4062 udelay(40);
4063
4064 if (force_reset)
4065 tg3_phy_reset(tp);
4066
4067 current_link_up = 0;
4068 current_speed = SPEED_INVALID;
4069 current_duplex = DUPLEX_INVALID;
4070
4071 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4072 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004073 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
4074 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4075 bmsr |= BMSR_LSTATUS;
4076 else
4077 bmsr &= ~BMSR_LSTATUS;
4078 }
Michael Chan747e8f82005-07-25 12:33:22 -07004079
4080 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
4081
4082 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlson2bd3ed02008-06-09 15:39:55 -07004083 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004084 /* do nothing, just check for link up at the end */
4085 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4086 u32 adv, new_adv;
4087
4088 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4089 new_adv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
4090 ADVERTISE_1000XPAUSE |
4091 ADVERTISE_1000XPSE_ASYM |
4092 ADVERTISE_SLCT);
4093
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004094 new_adv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Michael Chan747e8f82005-07-25 12:33:22 -07004095
4096 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
4097 new_adv |= ADVERTISE_1000XHALF;
4098 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
4099 new_adv |= ADVERTISE_1000XFULL;
4100
4101 if ((new_adv != adv) || !(bmcr & BMCR_ANENABLE)) {
4102 tg3_writephy(tp, MII_ADVERTISE, new_adv);
4103 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
4104 tg3_writephy(tp, MII_BMCR, bmcr);
4105
4106 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07004107 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Michael Chan747e8f82005-07-25 12:33:22 -07004108 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4109
4110 return err;
4111 }
4112 } else {
4113 u32 new_bmcr;
4114
4115 bmcr &= ~BMCR_SPEED1000;
4116 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
4117
4118 if (tp->link_config.duplex == DUPLEX_FULL)
4119 new_bmcr |= BMCR_FULLDPLX;
4120
4121 if (new_bmcr != bmcr) {
4122 /* BMCR_SPEED1000 is a reserved bit that needs
4123 * to be set on write.
4124 */
4125 new_bmcr |= BMCR_SPEED1000;
4126
4127 /* Force a linkdown */
4128 if (netif_carrier_ok(tp->dev)) {
4129 u32 adv;
4130
4131 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4132 adv &= ~(ADVERTISE_1000XFULL |
4133 ADVERTISE_1000XHALF |
4134 ADVERTISE_SLCT);
4135 tg3_writephy(tp, MII_ADVERTISE, adv);
4136 tg3_writephy(tp, MII_BMCR, bmcr |
4137 BMCR_ANRESTART |
4138 BMCR_ANENABLE);
4139 udelay(10);
4140 netif_carrier_off(tp->dev);
4141 }
4142 tg3_writephy(tp, MII_BMCR, new_bmcr);
4143 bmcr = new_bmcr;
4144 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4145 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004146 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
4147 ASIC_REV_5714) {
4148 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4149 bmsr |= BMSR_LSTATUS;
4150 else
4151 bmsr &= ~BMSR_LSTATUS;
4152 }
Michael Chan747e8f82005-07-25 12:33:22 -07004153 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4154 }
4155 }
4156
4157 if (bmsr & BMSR_LSTATUS) {
4158 current_speed = SPEED_1000;
4159 current_link_up = 1;
4160 if (bmcr & BMCR_FULLDPLX)
4161 current_duplex = DUPLEX_FULL;
4162 else
4163 current_duplex = DUPLEX_HALF;
4164
Matt Carlsonef167e22007-12-20 20:10:01 -08004165 local_adv = 0;
4166 remote_adv = 0;
4167
Michael Chan747e8f82005-07-25 12:33:22 -07004168 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08004169 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07004170
4171 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
4172 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
4173 common = local_adv & remote_adv;
4174 if (common & (ADVERTISE_1000XHALF |
4175 ADVERTISE_1000XFULL)) {
4176 if (common & ADVERTISE_1000XFULL)
4177 current_duplex = DUPLEX_FULL;
4178 else
4179 current_duplex = DUPLEX_HALF;
Michael Chan747e8f82005-07-25 12:33:22 -07004180 }
4181 else
4182 current_link_up = 0;
4183 }
4184 }
4185
Matt Carlsonef167e22007-12-20 20:10:01 -08004186 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
4187 tg3_setup_flow_control(tp, local_adv, remote_adv);
4188
Michael Chan747e8f82005-07-25 12:33:22 -07004189 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4190 if (tp->link_config.active_duplex == DUPLEX_HALF)
4191 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4192
4193 tw32_f(MAC_MODE, tp->mac_mode);
4194 udelay(40);
4195
4196 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4197
4198 tp->link_config.active_speed = current_speed;
4199 tp->link_config.active_duplex = current_duplex;
4200
4201 if (current_link_up != netif_carrier_ok(tp->dev)) {
4202 if (current_link_up)
4203 netif_carrier_on(tp->dev);
4204 else {
4205 netif_carrier_off(tp->dev);
4206 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4207 }
4208 tg3_link_report(tp);
4209 }
4210 return err;
4211}
4212
4213static void tg3_serdes_parallel_detect(struct tg3 *tp)
4214{
Michael Chan3d3ebe72006-09-27 15:59:15 -07004215 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07004216 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07004217 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07004218 return;
4219 }
4220 if (!netif_carrier_ok(tp->dev) &&
4221 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
4222 u32 bmcr;
4223
4224 tg3_readphy(tp, MII_BMCR, &bmcr);
4225 if (bmcr & BMCR_ANENABLE) {
4226 u32 phy1, phy2;
4227
4228 /* Select shadow register 0x1f */
4229 tg3_writephy(tp, 0x1c, 0x7c00);
4230 tg3_readphy(tp, 0x1c, &phy1);
4231
4232 /* Select expansion interrupt status register */
4233 tg3_writephy(tp, 0x17, 0x0f01);
4234 tg3_readphy(tp, 0x15, &phy2);
4235 tg3_readphy(tp, 0x15, &phy2);
4236
4237 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
4238 /* We have signal detect and not receiving
4239 * config code words, link is up by parallel
4240 * detection.
4241 */
4242
4243 bmcr &= ~BMCR_ANENABLE;
4244 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
4245 tg3_writephy(tp, MII_BMCR, bmcr);
4246 tp->tg3_flags2 |= TG3_FLG2_PARALLEL_DETECT;
4247 }
4248 }
4249 }
4250 else if (netif_carrier_ok(tp->dev) &&
4251 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
4252 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT)) {
4253 u32 phy2;
4254
4255 /* Select expansion interrupt status register */
4256 tg3_writephy(tp, 0x17, 0x0f01);
4257 tg3_readphy(tp, 0x15, &phy2);
4258 if (phy2 & 0x20) {
4259 u32 bmcr;
4260
4261 /* Config code words received, turn on autoneg. */
4262 tg3_readphy(tp, MII_BMCR, &bmcr);
4263 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
4264
4265 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
4266
4267 }
4268 }
4269}
4270
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271static int tg3_setup_phy(struct tg3 *tp, int force_reset)
4272{
4273 int err;
4274
4275 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
4276 err = tg3_setup_fiber_phy(tp, force_reset);
Michael Chan747e8f82005-07-25 12:33:22 -07004277 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
4278 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 } else {
4280 err = tg3_setup_copper_phy(tp, force_reset);
4281 }
4282
Matt Carlsonbcb37f62008-11-03 16:52:09 -08004283 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08004284 u32 val, scale;
4285
4286 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
4287 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
4288 scale = 65;
4289 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
4290 scale = 6;
4291 else
4292 scale = 12;
4293
4294 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
4295 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
4296 tw32(GRC_MISC_CFG, val);
4297 }
4298
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 if (tp->link_config.active_speed == SPEED_1000 &&
4300 tp->link_config.active_duplex == DUPLEX_HALF)
4301 tw32(MAC_TX_LENGTHS,
4302 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
4303 (6 << TX_LENGTHS_IPG_SHIFT) |
4304 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
4305 else
4306 tw32(MAC_TX_LENGTHS,
4307 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
4308 (6 << TX_LENGTHS_IPG_SHIFT) |
4309 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
4310
4311 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
4312 if (netif_carrier_ok(tp->dev)) {
4313 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07004314 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 } else {
4316 tw32(HOSTCC_STAT_COAL_TICKS, 0);
4317 }
4318 }
4319
Matt Carlson8ed5d972007-05-07 00:25:49 -07004320 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND) {
4321 u32 val = tr32(PCIE_PWR_MGMT_THRESH);
4322 if (!netif_carrier_ok(tp->dev))
4323 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
4324 tp->pwrmgmt_thresh;
4325 else
4326 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
4327 tw32(PCIE_PWR_MGMT_THRESH, val);
4328 }
4329
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 return err;
4331}
4332
Michael Chandf3e6542006-05-26 17:48:07 -07004333/* This is called whenever we suspect that the system chipset is re-
4334 * ordering the sequence of MMIO to the tx send mailbox. The symptom
4335 * is bogus tx completions. We try to recover by setting the
4336 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
4337 * in the workqueue.
4338 */
4339static void tg3_tx_recover(struct tg3 *tp)
4340{
4341 BUG_ON((tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER) ||
4342 tp->write32_tx_mbox == tg3_write_indirect_mbox);
4343
4344 printk(KERN_WARNING PFX "%s: The system may be re-ordering memory-"
4345 "mapped I/O cycles to the network device, attempting to "
4346 "recover. Please report the problem to the driver maintainer "
4347 "and include system chipset information.\n", tp->dev->name);
4348
4349 spin_lock(&tp->lock);
Michael Chandf3e6542006-05-26 17:48:07 -07004350 tp->tg3_flags |= TG3_FLAG_TX_RECOVERY_PENDING;
Michael Chandf3e6542006-05-26 17:48:07 -07004351 spin_unlock(&tp->lock);
4352}
4353
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004354static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07004355{
4356 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004357 return tnapi->tx_pending -
4358 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07004359}
4360
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361/* Tigon3 never reports partial packet sends. So we do not
4362 * need special logic to handle SKBs that have not had all
4363 * of their frags sent yet, like SunGEM does.
4364 */
Matt Carlson17375d22009-08-28 14:02:18 +00004365static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366{
Matt Carlson17375d22009-08-28 14:02:18 +00004367 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00004368 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004369 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004370 struct netdev_queue *txq;
4371 int index = tnapi - tp->napi;
4372
Matt Carlson19cfaec2009-12-03 08:36:20 +00004373 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004374 index--;
4375
4376 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377
4378 while (sw_idx != hw_idx) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00004379 struct ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07004381 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382
Michael Chandf3e6542006-05-26 17:48:07 -07004383 if (unlikely(skb == NULL)) {
4384 tg3_tx_recover(tp);
4385 return;
4386 }
4387
Alexander Duyckf4188d82009-12-02 16:48:38 +00004388 pci_unmap_single(tp->pdev,
4389 pci_unmap_addr(ri, mapping),
4390 skb_headlen(skb),
4391 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
4393 ri->skb = NULL;
4394
4395 sw_idx = NEXT_TX(sw_idx);
4396
4397 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004398 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07004399 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
4400 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00004401
4402 pci_unmap_page(tp->pdev,
4403 pci_unmap_addr(ri, mapping),
4404 skb_shinfo(skb)->frags[i].size,
4405 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 sw_idx = NEXT_TX(sw_idx);
4407 }
4408
David S. Millerf47c11e2005-06-24 20:18:35 -07004409 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07004410
4411 if (unlikely(tx_bug)) {
4412 tg3_tx_recover(tp);
4413 return;
4414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415 }
4416
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004417 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418
Michael Chan1b2a7202006-08-07 21:46:02 -07004419 /* Need to make the tx_cons update visible to tg3_start_xmit()
4420 * before checking for netif_queue_stopped(). Without the
4421 * memory barrier, there is a small possibility that tg3_start_xmit()
4422 * will miss it and cause the queue to be stopped forever.
4423 */
4424 smp_mb();
4425
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004426 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004427 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004428 __netif_tx_lock(txq, smp_processor_id());
4429 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004430 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004431 netif_tx_wake_queue(txq);
4432 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07004433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434}
4435
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004436static void tg3_rx_skb_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
4437{
4438 if (!ri->skb)
4439 return;
4440
4441 pci_unmap_single(tp->pdev, pci_unmap_addr(ri, mapping),
4442 map_sz, PCI_DMA_FROMDEVICE);
4443 dev_kfree_skb_any(ri->skb);
4444 ri->skb = NULL;
4445}
4446
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447/* Returns size of skb allocated or < 0 on error.
4448 *
4449 * We only need to fill in the address because the other members
4450 * of the RX descriptor are invariant, see tg3_init_rings.
4451 *
4452 * Note the purposeful assymetry of cpu vs. chip accesses. For
4453 * posting buffers we only dirty the first cache line of the RX
4454 * descriptor (containing the address). Whereas for the RX status
4455 * buffers the cpu only reads the last cacheline of the RX descriptor
4456 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
4457 */
Matt Carlson86b21e52009-11-13 13:03:45 +00004458static int tg3_alloc_rx_skb(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Matt Carlsona3896162009-11-13 13:03:44 +00004459 u32 opaque_key, u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460{
4461 struct tg3_rx_buffer_desc *desc;
4462 struct ring_info *map, *src_map;
4463 struct sk_buff *skb;
4464 dma_addr_t mapping;
4465 int skb_size, dest_idx;
4466
4467 src_map = NULL;
4468 switch (opaque_key) {
4469 case RXD_OPAQUE_RING_STD:
4470 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
Matt Carlson21f581a2009-08-28 14:00:25 +00004471 desc = &tpr->rx_std[dest_idx];
4472 map = &tpr->rx_std_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004473 skb_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 break;
4475
4476 case RXD_OPAQUE_RING_JUMBO:
4477 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00004478 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00004479 map = &tpr->rx_jmb_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004480 skb_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 break;
4482
4483 default:
4484 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
4487 /* Do not overwrite any of the map or rp information
4488 * until we are sure we can commit to a new buffer.
4489 *
4490 * Callers depend upon this behavior and assume that
4491 * we leave everything unchanged if we fail.
4492 */
Matt Carlson287be122009-08-28 13:58:46 +00004493 skb = netdev_alloc_skb(tp->dev, skb_size + tp->rx_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 if (skb == NULL)
4495 return -ENOMEM;
4496
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 skb_reserve(skb, tp->rx_offset);
4498
Matt Carlson287be122009-08-28 13:58:46 +00004499 mapping = pci_map_single(tp->pdev, skb->data, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 PCI_DMA_FROMDEVICE);
Matt Carlsona21771d2009-11-02 14:25:31 +00004501 if (pci_dma_mapping_error(tp->pdev, mapping)) {
4502 dev_kfree_skb(skb);
4503 return -EIO;
4504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
4506 map->skb = skb;
4507 pci_unmap_addr_set(map, mapping, mapping);
4508
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 desc->addr_hi = ((u64)mapping >> 32);
4510 desc->addr_lo = ((u64)mapping & 0xffffffff);
4511
4512 return skb_size;
4513}
4514
4515/* We only need to move over in the address because the other
4516 * members of the RX descriptor are invariant. See notes above
4517 * tg3_alloc_rx_skb for full details.
4518 */
Matt Carlsona3896162009-11-13 13:03:44 +00004519static void tg3_recycle_rx(struct tg3_napi *tnapi,
4520 struct tg3_rx_prodring_set *dpr,
4521 u32 opaque_key, int src_idx,
4522 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523{
Matt Carlson17375d22009-08-28 14:02:18 +00004524 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
4526 struct ring_info *src_map, *dest_map;
4527 int dest_idx;
Matt Carlsona3896162009-11-13 13:03:44 +00004528 struct tg3_rx_prodring_set *spr = &tp->prodring[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529
4530 switch (opaque_key) {
4531 case RXD_OPAQUE_RING_STD:
4532 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
Matt Carlsona3896162009-11-13 13:03:44 +00004533 dest_desc = &dpr->rx_std[dest_idx];
4534 dest_map = &dpr->rx_std_buffers[dest_idx];
4535 src_desc = &spr->rx_std[src_idx];
4536 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 break;
4538
4539 case RXD_OPAQUE_RING_JUMBO:
4540 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
Matt Carlsona3896162009-11-13 13:03:44 +00004541 dest_desc = &dpr->rx_jmb[dest_idx].std;
4542 dest_map = &dpr->rx_jmb_buffers[dest_idx];
4543 src_desc = &spr->rx_jmb[src_idx].std;
4544 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 break;
4546
4547 default:
4548 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
4551 dest_map->skb = src_map->skb;
4552 pci_unmap_addr_set(dest_map, mapping,
4553 pci_unmap_addr(src_map, mapping));
4554 dest_desc->addr_hi = src_desc->addr_hi;
4555 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00004556
4557 /* Ensure that the update to the skb happens after the physical
4558 * addresses have been transferred to the new BD location.
4559 */
4560 smp_wmb();
4561
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 src_map->skb = NULL;
4563}
4564
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565/* The RX ring scheme is composed of multiple rings which post fresh
4566 * buffers to the chip, and one special ring the chip uses to report
4567 * status back to the host.
4568 *
4569 * The special ring reports the status of received packets to the
4570 * host. The chip does not write into the original descriptor the
4571 * RX buffer was obtained from. The chip simply takes the original
4572 * descriptor as provided by the host, updates the status and length
4573 * field, then writes this into the next status ring entry.
4574 *
4575 * Each ring the host uses to post buffers to the chip is described
4576 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
4577 * it is first placed into the on-chip ram. When the packet's length
4578 * is known, it walks down the TG3_BDINFO entries to select the ring.
4579 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
4580 * which is within the range of the new packet's length is chosen.
4581 *
4582 * The "separate ring for rx status" scheme may sound queer, but it makes
4583 * sense from a cache coherency perspective. If only the host writes
4584 * to the buffer post rings, and only the chip writes to the rx status
4585 * rings, then cache lines never move beyond shared-modified state.
4586 * If both the host and chip were to write into the same ring, cache line
4587 * eviction could occur since both entities want it in an exclusive state.
4588 */
Matt Carlson17375d22009-08-28 14:02:18 +00004589static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590{
Matt Carlson17375d22009-08-28 14:02:18 +00004591 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07004592 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00004593 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00004594 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07004595 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 int received;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004597 struct tg3_rx_prodring_set *tpr = tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004599 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 /*
4601 * We need to order the read of hw_idx and the read of
4602 * the opaque cookie.
4603 */
4604 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 work_mask = 0;
4606 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00004607 std_prod_idx = tpr->rx_std_prod_idx;
4608 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00004610 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00004611 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 unsigned int len;
4613 struct sk_buff *skb;
4614 dma_addr_t dma_addr;
4615 u32 opaque_key, desc_idx, *post_ptr;
4616
4617 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
4618 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
4619 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004620 ri = &tp->prodring[0].rx_std_buffers[desc_idx];
Matt Carlson21f581a2009-08-28 14:00:25 +00004621 dma_addr = pci_unmap_addr(ri, mapping);
4622 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00004623 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07004624 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004626 ri = &tp->prodring[0].rx_jmb_buffers[desc_idx];
Matt Carlson21f581a2009-08-28 14:00:25 +00004627 dma_addr = pci_unmap_addr(ri, mapping);
4628 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00004629 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00004630 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
4633 work_mask |= opaque_key;
4634
4635 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
4636 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
4637 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00004638 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 desc_idx, *post_ptr);
4640 drop_it_no_recycle:
4641 /* Other statistics kept track of by card. */
4642 tp->net_stats.rx_dropped++;
4643 goto next_pkt;
4644 }
4645
Matt Carlsonad829262008-11-21 17:16:16 -08004646 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
4647 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
Joe Perches8e95a202009-12-03 07:58:21 +00004649 if (len > RX_COPY_THRESHOLD &&
4650 tp->rx_offset == NET_IP_ALIGN) {
4651 /* rx_offset will likely not equal NET_IP_ALIGN
4652 * if this is a 5701 card running in PCI-X mode
4653 * [see tg3_get_invariants()]
4654 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 int skb_size;
4656
Matt Carlson86b21e52009-11-13 13:03:45 +00004657 skb_size = tg3_alloc_rx_skb(tp, tpr, opaque_key,
Matt Carlsonafc081f2009-11-13 13:03:43 +00004658 *post_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 if (skb_size < 0)
4660 goto drop_it;
4661
Matt Carlson287be122009-08-28 13:58:46 +00004662 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 PCI_DMA_FROMDEVICE);
4664
Matt Carlson61e800c2010-02-17 15:16:54 +00004665 /* Ensure that the update to the skb happens
4666 * after the usage of the old DMA mapping.
4667 */
4668 smp_wmb();
4669
4670 ri->skb = NULL;
4671
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 skb_put(skb, len);
4673 } else {
4674 struct sk_buff *copy_skb;
4675
Matt Carlsona3896162009-11-13 13:03:44 +00004676 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 desc_idx, *post_ptr);
4678
Matt Carlsonad829262008-11-21 17:16:16 -08004679 copy_skb = netdev_alloc_skb(tp->dev,
4680 len + TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 if (copy_skb == NULL)
4682 goto drop_it_no_recycle;
4683
Matt Carlsonad829262008-11-21 17:16:16 -08004684 skb_reserve(copy_skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 skb_put(copy_skb, len);
4686 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03004687 skb_copy_from_linear_data(skb, copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
4689
4690 /* We'll reuse the original ring buffer. */
4691 skb = copy_skb;
4692 }
4693
4694 if ((tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) &&
4695 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
4696 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
4697 >> RXD_TCPCSUM_SHIFT) == 0xffff))
4698 skb->ip_summed = CHECKSUM_UNNECESSARY;
4699 else
4700 skb->ip_summed = CHECKSUM_NONE;
4701
4702 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00004703
4704 if (len > (tp->dev->mtu + ETH_HLEN) &&
4705 skb->protocol != htons(ETH_P_8021Q)) {
4706 dev_kfree_skb(skb);
4707 goto next_pkt;
4708 }
4709
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710#if TG3_VLAN_TAG_USED
4711 if (tp->vlgrp != NULL &&
4712 desc->type_flags & RXD_FLAG_VLAN) {
Matt Carlson17375d22009-08-28 14:02:18 +00004713 vlan_gro_receive(&tnapi->napi, tp->vlgrp,
Matt Carlson8ef04422009-08-28 14:01:37 +00004714 desc->err_vlan & RXD_VLAN_MASK, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 } else
4716#endif
Matt Carlson17375d22009-08-28 14:02:18 +00004717 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 received++;
4720 budget--;
4721
4722next_pkt:
4723 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07004724
4725 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson86cfe4f2010-01-12 10:11:37 +00004726 tpr->rx_std_prod_idx = std_prod_idx % TG3_RX_RING_SIZE;
4727 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
4728 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07004729 work_mask &= ~RXD_OPAQUE_RING_STD;
4730 rx_std_posted = 0;
4731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07004733 sw_idx++;
Eric Dumazet6b31a512007-02-06 13:29:21 -08004734 sw_idx &= (TG3_RX_RCB_RING_SIZE(tp) - 1);
Michael Chan52f6d692005-04-25 15:14:32 -07004735
4736 /* Refresh hw_idx to see if there is new work */
4737 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004738 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07004739 rmb();
4740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 }
4742
4743 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00004744 tnapi->rx_rcb_ptr = sw_idx;
4745 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746
4747 /* Refill RX ring(s). */
Matt Carlsone4af1af2010-02-12 14:47:05 +00004748 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004749 if (work_mask & RXD_OPAQUE_RING_STD) {
4750 tpr->rx_std_prod_idx = std_prod_idx % TG3_RX_RING_SIZE;
4751 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
4752 tpr->rx_std_prod_idx);
4753 }
4754 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
4755 tpr->rx_jmb_prod_idx = jmb_prod_idx %
4756 TG3_RX_JUMBO_RING_SIZE;
4757 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
4758 tpr->rx_jmb_prod_idx);
4759 }
4760 mmiowb();
4761 } else if (work_mask) {
4762 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
4763 * updated before the producer indices can be updated.
4764 */
4765 smp_wmb();
4766
Matt Carlson43619352009-11-13 13:03:47 +00004767 tpr->rx_std_prod_idx = std_prod_idx % TG3_RX_RING_SIZE;
Matt Carlson43619352009-11-13 13:03:47 +00004768 tpr->rx_jmb_prod_idx = jmb_prod_idx % TG3_RX_JUMBO_RING_SIZE;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004769
Matt Carlsone4af1af2010-02-12 14:47:05 +00004770 if (tnapi != &tp->napi[1])
4771 napi_schedule(&tp->napi[1].napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
4774 return received;
4775}
4776
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004777static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 /* handle link change and other phy events */
4780 if (!(tp->tg3_flags &
4781 (TG3_FLAG_USE_LINKCHG_REG |
4782 TG3_FLAG_POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004783 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
4784
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 if (sblk->status & SD_STATUS_LINK_CHG) {
4786 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004787 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07004788 spin_lock(&tp->lock);
Matt Carlsondd477002008-05-25 23:45:58 -07004789 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
4790 tw32_f(MAC_STATUS,
4791 (MAC_STATUS_SYNC_CHANGED |
4792 MAC_STATUS_CFG_CHANGED |
4793 MAC_STATUS_MI_COMPLETION |
4794 MAC_STATUS_LNKSTATE_CHANGED));
4795 udelay(40);
4796 } else
4797 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07004798 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 }
4800 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004801}
4802
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004803static int tg3_rx_prodring_xfer(struct tg3 *tp,
4804 struct tg3_rx_prodring_set *dpr,
4805 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004806{
4807 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004808 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004809
4810 while (1) {
4811 src_prod_idx = spr->rx_std_prod_idx;
4812
4813 /* Make sure updates to the rx_std_buffers[] entries and the
4814 * standard producer index are seen in the correct order.
4815 */
4816 smp_rmb();
4817
4818 if (spr->rx_std_cons_idx == src_prod_idx)
4819 break;
4820
4821 if (spr->rx_std_cons_idx < src_prod_idx)
4822 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
4823 else
4824 cpycnt = TG3_RX_RING_SIZE - spr->rx_std_cons_idx;
4825
4826 cpycnt = min(cpycnt, TG3_RX_RING_SIZE - dpr->rx_std_prod_idx);
4827
4828 si = spr->rx_std_cons_idx;
4829 di = dpr->rx_std_prod_idx;
4830
Matt Carlsone92967b2010-02-12 14:47:06 +00004831 for (i = di; i < di + cpycnt; i++) {
4832 if (dpr->rx_std_buffers[i].skb) {
4833 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004834 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00004835 break;
4836 }
4837 }
4838
4839 if (!cpycnt)
4840 break;
4841
4842 /* Ensure that updates to the rx_std_buffers ring and the
4843 * shadowed hardware producer ring from tg3_recycle_skb() are
4844 * ordered correctly WRT the skb check above.
4845 */
4846 smp_rmb();
4847
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004848 memcpy(&dpr->rx_std_buffers[di],
4849 &spr->rx_std_buffers[si],
4850 cpycnt * sizeof(struct ring_info));
4851
4852 for (i = 0; i < cpycnt; i++, di++, si++) {
4853 struct tg3_rx_buffer_desc *sbd, *dbd;
4854 sbd = &spr->rx_std[si];
4855 dbd = &dpr->rx_std[di];
4856 dbd->addr_hi = sbd->addr_hi;
4857 dbd->addr_lo = sbd->addr_lo;
4858 }
4859
4860 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) %
4861 TG3_RX_RING_SIZE;
4862 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) %
4863 TG3_RX_RING_SIZE;
4864 }
4865
4866 while (1) {
4867 src_prod_idx = spr->rx_jmb_prod_idx;
4868
4869 /* Make sure updates to the rx_jmb_buffers[] entries and
4870 * the jumbo producer index are seen in the correct order.
4871 */
4872 smp_rmb();
4873
4874 if (spr->rx_jmb_cons_idx == src_prod_idx)
4875 break;
4876
4877 if (spr->rx_jmb_cons_idx < src_prod_idx)
4878 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
4879 else
4880 cpycnt = TG3_RX_JUMBO_RING_SIZE - spr->rx_jmb_cons_idx;
4881
4882 cpycnt = min(cpycnt,
4883 TG3_RX_JUMBO_RING_SIZE - dpr->rx_jmb_prod_idx);
4884
4885 si = spr->rx_jmb_cons_idx;
4886 di = dpr->rx_jmb_prod_idx;
4887
Matt Carlsone92967b2010-02-12 14:47:06 +00004888 for (i = di; i < di + cpycnt; i++) {
4889 if (dpr->rx_jmb_buffers[i].skb) {
4890 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004891 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00004892 break;
4893 }
4894 }
4895
4896 if (!cpycnt)
4897 break;
4898
4899 /* Ensure that updates to the rx_jmb_buffers ring and the
4900 * shadowed hardware producer ring from tg3_recycle_skb() are
4901 * ordered correctly WRT the skb check above.
4902 */
4903 smp_rmb();
4904
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004905 memcpy(&dpr->rx_jmb_buffers[di],
4906 &spr->rx_jmb_buffers[si],
4907 cpycnt * sizeof(struct ring_info));
4908
4909 for (i = 0; i < cpycnt; i++, di++, si++) {
4910 struct tg3_rx_buffer_desc *sbd, *dbd;
4911 sbd = &spr->rx_jmb[si].std;
4912 dbd = &dpr->rx_jmb[di].std;
4913 dbd->addr_hi = sbd->addr_hi;
4914 dbd->addr_lo = sbd->addr_lo;
4915 }
4916
4917 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) %
4918 TG3_RX_JUMBO_RING_SIZE;
4919 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) %
4920 TG3_RX_JUMBO_RING_SIZE;
4921 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004922
4923 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004924}
4925
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004926static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
4927{
4928 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929
4930 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004931 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00004932 tg3_tx(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07004933 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
Michael Chan4fd7ab52007-10-12 01:39:50 -07004934 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 }
4936
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 /* run RX thread, within the bounds set by NAPI.
4938 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004939 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004941 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00004942 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004944 if ((tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00004945 struct tg3_rx_prodring_set *dpr = &tp->prodring[0];
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004946 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00004947 u32 std_prod_idx = dpr->rx_std_prod_idx;
4948 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004949
Matt Carlsone4af1af2010-02-12 14:47:05 +00004950 for (i = 1; i < tp->irq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004951 err |= tg3_rx_prodring_xfer(tp, dpr,
4952 tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004953
4954 wmb();
4955
Matt Carlsone4af1af2010-02-12 14:47:05 +00004956 if (std_prod_idx != dpr->rx_std_prod_idx)
4957 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
4958 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004959
Matt Carlsone4af1af2010-02-12 14:47:05 +00004960 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
4961 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
4962 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004963
4964 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00004965
4966 if (err)
4967 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00004968 }
4969
David S. Miller6f535762007-10-11 18:08:29 -07004970 return work_done;
4971}
David S. Millerf7383c22005-05-18 22:50:53 -07004972
Matt Carlson35f2d7d2009-11-13 13:03:41 +00004973static int tg3_poll_msix(struct napi_struct *napi, int budget)
4974{
4975 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
4976 struct tg3 *tp = tnapi->tp;
4977 int work_done = 0;
4978 struct tg3_hw_status *sblk = tnapi->hw_status;
4979
4980 while (1) {
4981 work_done = tg3_poll_work(tnapi, work_done, budget);
4982
4983 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
4984 goto tx_recovery;
4985
4986 if (unlikely(work_done >= budget))
4987 break;
4988
4989 /* tp->last_tag is used in tg3_restart_ints() below
4990 * to tell the hw how much work has been processed,
4991 * so we must read it before checking for more work.
4992 */
4993 tnapi->last_tag = sblk->status_tag;
4994 tnapi->last_irq_tag = tnapi->last_tag;
4995 rmb();
4996
4997 /* check for RX/TX work to do */
4998 if (sblk->idx[0].tx_consumer == tnapi->tx_cons &&
4999 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr) {
5000 napi_complete(napi);
5001 /* Reenable interrupts. */
5002 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
5003 mmiowb();
5004 break;
5005 }
5006 }
5007
5008 return work_done;
5009
5010tx_recovery:
5011 /* work_done is guaranteed to be less than budget. */
5012 napi_complete(napi);
5013 schedule_work(&tp->reset_task);
5014 return work_done;
5015}
5016
David S. Miller6f535762007-10-11 18:08:29 -07005017static int tg3_poll(struct napi_struct *napi, int budget)
5018{
Matt Carlson8ef04422009-08-28 14:01:37 +00005019 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5020 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07005021 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00005022 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07005023
5024 while (1) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005025 tg3_poll_link(tp);
5026
Matt Carlson17375d22009-08-28 14:02:18 +00005027 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07005028
5029 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
5030 goto tx_recovery;
5031
5032 if (unlikely(work_done >= budget))
5033 break;
5034
Michael Chan4fd7ab52007-10-12 01:39:50 -07005035 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
Matt Carlson17375d22009-08-28 14:02:18 +00005036 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07005037 * to tell the hw how much work has been processed,
5038 * so we must read it before checking for more work.
5039 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005040 tnapi->last_tag = sblk->status_tag;
5041 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07005042 rmb();
5043 } else
5044 sblk->status &= ~SD_STATUS_UPDATED;
5045
Matt Carlson17375d22009-08-28 14:02:18 +00005046 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005047 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00005048 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07005049 break;
5050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051 }
5052
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005053 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07005054
5055tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07005056 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08005057 napi_complete(napi);
David S. Miller6f535762007-10-11 18:08:29 -07005058 schedule_work(&tp->reset_task);
Michael Chan4fd7ab52007-10-12 01:39:50 -07005059 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060}
5061
David S. Millerf47c11e2005-06-24 20:18:35 -07005062static void tg3_irq_quiesce(struct tg3 *tp)
5063{
Matt Carlson4f125f42009-09-01 12:55:02 +00005064 int i;
5065
David S. Millerf47c11e2005-06-24 20:18:35 -07005066 BUG_ON(tp->irq_sync);
5067
5068 tp->irq_sync = 1;
5069 smp_mb();
5070
Matt Carlson4f125f42009-09-01 12:55:02 +00005071 for (i = 0; i < tp->irq_cnt; i++)
5072 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07005073}
5074
5075static inline int tg3_irq_sync(struct tg3 *tp)
5076{
5077 return tp->irq_sync;
5078}
5079
5080/* Fully shutdown all tg3 driver activity elsewhere in the system.
5081 * If irq_sync is non-zero, then the IRQ handler must be synchronized
5082 * with as well. Most of the time, this is not necessary except when
5083 * shutting down the device.
5084 */
5085static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
5086{
Michael Chan46966542007-07-11 19:47:19 -07005087 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07005088 if (irq_sync)
5089 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005090}
5091
5092static inline void tg3_full_unlock(struct tg3 *tp)
5093{
David S. Millerf47c11e2005-06-24 20:18:35 -07005094 spin_unlock_bh(&tp->lock);
5095}
5096
Michael Chanfcfa0a32006-03-20 22:28:41 -08005097/* One-shot MSI handler - Chip automatically disables interrupt
5098 * after sending MSI so driver doesn't have to do it.
5099 */
David Howells7d12e782006-10-05 14:55:46 +01005100static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08005101{
Matt Carlson09943a12009-08-28 14:01:57 +00005102 struct tg3_napi *tnapi = dev_id;
5103 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08005104
Matt Carlson898a56f2009-08-28 14:02:40 +00005105 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005106 if (tnapi->rx_rcb)
5107 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005108
5109 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005110 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005111
5112 return IRQ_HANDLED;
5113}
5114
Michael Chan88b06bc22005-04-21 17:13:25 -07005115/* MSI ISR - No need to check for interrupt sharing and no need to
5116 * flush status block and interrupt mailbox. PCI ordering rules
5117 * guarantee that MSI will arrive after the status block.
5118 */
David Howells7d12e782006-10-05 14:55:46 +01005119static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07005120{
Matt Carlson09943a12009-08-28 14:01:57 +00005121 struct tg3_napi *tnapi = dev_id;
5122 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07005123
Matt Carlson898a56f2009-08-28 14:02:40 +00005124 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005125 if (tnapi->rx_rcb)
5126 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07005127 /*
David S. Millerfac9b832005-05-18 22:46:34 -07005128 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07005129 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07005130 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07005131 * NIC to stop sending us irqs, engaging "in-intr-handler"
5132 * event coalescing.
5133 */
5134 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07005135 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005136 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07005137
Michael Chan88b06bc22005-04-21 17:13:25 -07005138 return IRQ_RETVAL(1);
5139}
5140
David Howells7d12e782006-10-05 14:55:46 +01005141static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142{
Matt Carlson09943a12009-08-28 14:01:57 +00005143 struct tg3_napi *tnapi = dev_id;
5144 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005145 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 unsigned int handled = 1;
5147
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 /* In INTx mode, it is possible for the interrupt to arrive at
5149 * the CPU before the status block posted prior to the interrupt.
5150 * Reading the PCI State register will confirm whether the
5151 * interrupt is ours and will flush the status block.
5152 */
Michael Chand18edcb2007-03-24 20:57:11 -07005153 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
5154 if ((tp->tg3_flags & TG3_FLAG_CHIP_RESETTING) ||
5155 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5156 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005157 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07005158 }
Michael Chand18edcb2007-03-24 20:57:11 -07005159 }
5160
5161 /*
5162 * Writing any value to intr-mbox-0 clears PCI INTA# and
5163 * chip-internal interrupt pending events.
5164 * Writing non-zero to intr-mbox-0 additional tells the
5165 * NIC to stop sending us irqs, engaging "in-intr-handler"
5166 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005167 *
5168 * Flush the mailbox to de-assert the IRQ immediately to prevent
5169 * spurious interrupts. The flush impacts performance but
5170 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005171 */
Michael Chanc04cb342007-05-07 00:26:15 -07005172 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07005173 if (tg3_irq_sync(tp))
5174 goto out;
5175 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00005176 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00005177 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00005178 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07005179 } else {
5180 /* No work, shared interrupt perhaps? re-enable
5181 * interrupts, and flush that PCI write
5182 */
5183 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
5184 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07005185 }
David S. Millerf47c11e2005-06-24 20:18:35 -07005186out:
David S. Millerfac9b832005-05-18 22:46:34 -07005187 return IRQ_RETVAL(handled);
5188}
5189
David Howells7d12e782006-10-05 14:55:46 +01005190static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07005191{
Matt Carlson09943a12009-08-28 14:01:57 +00005192 struct tg3_napi *tnapi = dev_id;
5193 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005194 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07005195 unsigned int handled = 1;
5196
David S. Millerfac9b832005-05-18 22:46:34 -07005197 /* In INTx mode, it is possible for the interrupt to arrive at
5198 * the CPU before the status block posted prior to the interrupt.
5199 * Reading the PCI State register will confirm whether the
5200 * interrupt is ours and will flush the status block.
5201 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005202 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Michael Chand18edcb2007-03-24 20:57:11 -07005203 if ((tp->tg3_flags & TG3_FLAG_CHIP_RESETTING) ||
5204 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5205 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005206 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 }
Michael Chand18edcb2007-03-24 20:57:11 -07005208 }
5209
5210 /*
5211 * writing any value to intr-mbox-0 clears PCI INTA# and
5212 * chip-internal interrupt pending events.
5213 * writing non-zero to intr-mbox-0 additional tells the
5214 * NIC to stop sending us irqs, engaging "in-intr-handler"
5215 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005216 *
5217 * Flush the mailbox to de-assert the IRQ immediately to prevent
5218 * spurious interrupts. The flush impacts performance but
5219 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005220 */
Michael Chanc04cb342007-05-07 00:26:15 -07005221 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00005222
5223 /*
5224 * In a shared interrupt configuration, sometimes other devices'
5225 * interrupts will scream. We record the current status tag here
5226 * so that the above check can report that the screaming interrupts
5227 * are unhandled. Eventually they will be silenced.
5228 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005229 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00005230
Michael Chand18edcb2007-03-24 20:57:11 -07005231 if (tg3_irq_sync(tp))
5232 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00005233
Matt Carlson72334482009-08-28 14:03:01 +00005234 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00005235
Matt Carlson09943a12009-08-28 14:01:57 +00005236 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00005237
David S. Millerf47c11e2005-06-24 20:18:35 -07005238out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 return IRQ_RETVAL(handled);
5240}
5241
Michael Chan79381092005-04-21 17:13:59 -07005242/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01005243static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07005244{
Matt Carlson09943a12009-08-28 14:01:57 +00005245 struct tg3_napi *tnapi = dev_id;
5246 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005247 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07005248
Michael Chanf9804dd2005-09-27 12:13:10 -07005249 if ((sblk->status & SD_STATUS_UPDATED) ||
5250 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07005251 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07005252 return IRQ_RETVAL(1);
5253 }
5254 return IRQ_RETVAL(0);
5255}
5256
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07005257static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07005258static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Michael Chanb9ec6c12006-07-25 16:37:27 -07005260/* Restart hardware after configuration changes, self-test, etc.
5261 * Invoked with tp->lock held.
5262 */
5263static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07005264 __releases(tp->lock)
5265 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005266{
5267 int err;
5268
5269 err = tg3_init_hw(tp, reset_phy);
5270 if (err) {
5271 printk(KERN_ERR PFX "%s: Failed to re-initialize device, "
5272 "aborting.\n", tp->dev->name);
5273 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
5274 tg3_full_unlock(tp);
5275 del_timer_sync(&tp->timer);
5276 tp->irq_sync = 0;
Matt Carlsonfed97812009-09-01 13:10:19 +00005277 tg3_napi_enable(tp);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005278 dev_close(tp->dev);
5279 tg3_full_lock(tp, 0);
5280 }
5281 return err;
5282}
5283
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284#ifdef CONFIG_NET_POLL_CONTROLLER
5285static void tg3_poll_controller(struct net_device *dev)
5286{
Matt Carlson4f125f42009-09-01 12:55:02 +00005287 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07005288 struct tg3 *tp = netdev_priv(dev);
5289
Matt Carlson4f125f42009-09-01 12:55:02 +00005290 for (i = 0; i < tp->irq_cnt; i++)
5291 tg3_interrupt(tp->napi[i].irq_vec, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292}
5293#endif
5294
David Howellsc4028952006-11-22 14:57:56 +00005295static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296{
David Howellsc4028952006-11-22 14:57:56 +00005297 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005298 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 unsigned int restart_timer;
5300
Michael Chan7faa0062006-02-02 17:29:28 -08005301 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08005302
5303 if (!netif_running(tp->dev)) {
Michael Chan7faa0062006-02-02 17:29:28 -08005304 tg3_full_unlock(tp);
5305 return;
5306 }
5307
5308 tg3_full_unlock(tp);
5309
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005310 tg3_phy_stop(tp);
5311
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 tg3_netif_stop(tp);
5313
David S. Millerf47c11e2005-06-24 20:18:35 -07005314 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315
5316 restart_timer = tp->tg3_flags2 & TG3_FLG2_RESTART_TIMER;
5317 tp->tg3_flags2 &= ~TG3_FLG2_RESTART_TIMER;
5318
Michael Chandf3e6542006-05-26 17:48:07 -07005319 if (tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING) {
5320 tp->write32_tx_mbox = tg3_write32_tx_mbox;
5321 tp->write32_rx_mbox = tg3_write_flush_reg32;
5322 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
5323 tp->tg3_flags &= ~TG3_FLAG_TX_RECOVERY_PENDING;
5324 }
5325
Michael Chan944d9802005-05-29 14:57:48 -07005326 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005327 err = tg3_init_hw(tp, 1);
5328 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005329 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330
5331 tg3_netif_start(tp);
5332
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 if (restart_timer)
5334 mod_timer(&tp->timer, jiffies + 1);
Michael Chan7faa0062006-02-02 17:29:28 -08005335
Michael Chanb9ec6c12006-07-25 16:37:27 -07005336out:
Michael Chan7faa0062006-02-02 17:29:28 -08005337 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005338
5339 if (!err)
5340 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341}
5342
Michael Chanb0408752007-02-13 12:18:30 -08005343static void tg3_dump_short_state(struct tg3 *tp)
5344{
5345 printk(KERN_ERR PFX "DEBUG: MAC_TX_STATUS[%08x] MAC_RX_STATUS[%08x]\n",
5346 tr32(MAC_TX_STATUS), tr32(MAC_RX_STATUS));
5347 printk(KERN_ERR PFX "DEBUG: RDMAC_STATUS[%08x] WDMAC_STATUS[%08x]\n",
5348 tr32(RDMAC_STATUS), tr32(WDMAC_STATUS));
5349}
5350
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351static void tg3_tx_timeout(struct net_device *dev)
5352{
5353 struct tg3 *tp = netdev_priv(dev);
5354
Michael Chanb0408752007-02-13 12:18:30 -08005355 if (netif_msg_tx_err(tp)) {
Michael Chan9f88f292006-12-07 00:22:54 -08005356 printk(KERN_ERR PFX "%s: transmit timed out, resetting\n",
5357 dev->name);
Michael Chanb0408752007-02-13 12:18:30 -08005358 tg3_dump_short_state(tp);
5359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360
5361 schedule_work(&tp->reset_task);
5362}
5363
Michael Chanc58ec932005-09-17 00:46:27 -07005364/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
5365static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
5366{
5367 u32 base = (u32) mapping & 0xffffffff;
5368
5369 return ((base > 0xffffdcc0) &&
5370 (base + len + 8 < base));
5371}
5372
Michael Chan72f2afb2006-03-06 19:28:35 -08005373/* Test for DMA addresses > 40-bit */
5374static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
5375 int len)
5376{
5377#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Michael Chan6728a8e2006-03-27 23:16:49 -08005378 if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG)
Yang Hongyang50cf1562009-04-06 19:01:14 -07005379 return (((u64) mapping + len) > DMA_BIT_MASK(40));
Michael Chan72f2afb2006-03-06 19:28:35 -08005380 return 0;
5381#else
5382 return 0;
5383#endif
5384}
5385
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005386static void tg3_set_txd(struct tg3_napi *, int, dma_addr_t, int, u32, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387
Michael Chan72f2afb2006-03-06 19:28:35 -08005388/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005389static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
5390 struct sk_buff *skb, u32 last_plus_one,
5391 u32 *start, u32 base_flags, u32 mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392{
Matt Carlson24f4efd2009-11-13 13:03:35 +00005393 struct tg3 *tp = tnapi->tp;
Matt Carlson41588ba2008-04-19 18:12:33 -07005394 struct sk_buff *new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07005395 dma_addr_t new_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 u32 entry = *start;
Michael Chanc58ec932005-09-17 00:46:27 -07005397 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398
Matt Carlson41588ba2008-04-19 18:12:33 -07005399 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
5400 new_skb = skb_copy(skb, GFP_ATOMIC);
5401 else {
5402 int more_headroom = 4 - ((unsigned long)skb->data & 3);
5403
5404 new_skb = skb_copy_expand(skb,
5405 skb_headroom(skb) + more_headroom,
5406 skb_tailroom(skb), GFP_ATOMIC);
5407 }
5408
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07005410 ret = -1;
5411 } else {
5412 /* New SKB is guaranteed to be linear. */
5413 entry = *start;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005414 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
5415 PCI_DMA_TODEVICE);
5416 /* Make sure the mapping succeeded */
5417 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
5418 ret = -1;
5419 dev_kfree_skb(new_skb);
5420 new_skb = NULL;
David S. Miller90079ce2008-09-11 04:52:51 -07005421
Michael Chanc58ec932005-09-17 00:46:27 -07005422 /* Make sure new skb does not cross any 4G boundaries.
5423 * Drop the packet if it does.
5424 */
Alexander Duyckf4188d82009-12-02 16:48:38 +00005425 } else if ((tp->tg3_flags3 & TG3_FLG3_4G_DMA_BNDRY_BUG) &&
5426 tg3_4g_overflow_test(new_addr, new_skb->len)) {
5427 pci_unmap_single(tp->pdev, new_addr, new_skb->len,
5428 PCI_DMA_TODEVICE);
Michael Chanc58ec932005-09-17 00:46:27 -07005429 ret = -1;
5430 dev_kfree_skb(new_skb);
5431 new_skb = NULL;
5432 } else {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005433 tg3_set_txd(tnapi, entry, new_addr, new_skb->len,
Michael Chanc58ec932005-09-17 00:46:27 -07005434 base_flags, 1 | (mss << 1));
5435 *start = NEXT_TX(entry);
5436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437 }
5438
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 /* Now clean up the sw ring entries. */
5440 i = 0;
5441 while (entry != last_plus_one) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00005442 int len;
5443
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005444 if (i == 0)
Alexander Duyckf4188d82009-12-02 16:48:38 +00005445 len = skb_headlen(skb);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005446 else
Alexander Duyckf4188d82009-12-02 16:48:38 +00005447 len = skb_shinfo(skb)->frags[i-1].size;
5448
5449 pci_unmap_single(tp->pdev,
5450 pci_unmap_addr(&tnapi->tx_buffers[entry],
5451 mapping),
5452 len, PCI_DMA_TODEVICE);
5453 if (i == 0) {
5454 tnapi->tx_buffers[entry].skb = new_skb;
5455 pci_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
5456 new_addr);
5457 } else {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005458 tnapi->tx_buffers[entry].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 entry = NEXT_TX(entry);
5461 i++;
5462 }
5463
5464 dev_kfree_skb(skb);
5465
Michael Chanc58ec932005-09-17 00:46:27 -07005466 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467}
5468
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005469static void tg3_set_txd(struct tg3_napi *tnapi, int entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470 dma_addr_t mapping, int len, u32 flags,
5471 u32 mss_and_is_end)
5472{
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005473 struct tg3_tx_buffer_desc *txd = &tnapi->tx_ring[entry];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474 int is_end = (mss_and_is_end & 0x1);
5475 u32 mss = (mss_and_is_end >> 1);
5476 u32 vlan_tag = 0;
5477
5478 if (is_end)
5479 flags |= TXD_FLAG_END;
5480 if (flags & TXD_FLAG_VLAN) {
5481 vlan_tag = flags >> 16;
5482 flags &= 0xffff;
5483 }
5484 vlan_tag |= (mss << TXD_MSS_SHIFT);
5485
5486 txd->addr_hi = ((u64) mapping >> 32);
5487 txd->addr_lo = ((u64) mapping & 0xffffffff);
5488 txd->len_flags = (len << TXD_LEN_SHIFT) | flags;
5489 txd->vlan_tag = vlan_tag << TXD_VLAN_TAG_SHIFT;
5490}
5491
Michael Chan5a6f3072006-03-20 22:28:05 -08005492/* hard_start_xmit for devices that don't have any bugs and
Matt Carlsone849cdc2009-11-13 13:03:38 +00005493 * support TG3_FLG2_HW_TSO_2 and TG3_FLG2_HW_TSO_3 only.
Michael Chan5a6f3072006-03-20 22:28:05 -08005494 */
Stephen Hemminger613573252009-08-31 19:50:58 +00005495static netdev_tx_t tg3_start_xmit(struct sk_buff *skb,
5496 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497{
5498 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 u32 len, entry, base_flags, mss;
David S. Miller90079ce2008-09-11 04:52:51 -07005500 dma_addr_t mapping;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005501 struct tg3_napi *tnapi;
5502 struct netdev_queue *txq;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005503 unsigned int i, last;
5504
Michael Chan5a6f3072006-03-20 22:28:05 -08005505
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005506 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
5507 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Matt Carlson19cfaec2009-12-03 08:36:20 +00005508 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005509 tnapi++;
Michael Chan5a6f3072006-03-20 22:28:05 -08005510
Michael Chan00b70502006-06-17 21:58:45 -07005511 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005512 * and TX reclaim runs via tp->napi.poll inside of a software
Michael Chan5a6f3072006-03-20 22:28:05 -08005513 * interrupt. Furthermore, IRQ processing runs lockless so we have
5514 * no IRQ context deadlocks to worry about either. Rejoice!
5515 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005516 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005517 if (!netif_tx_queue_stopped(txq)) {
5518 netif_tx_stop_queue(txq);
Michael Chan5a6f3072006-03-20 22:28:05 -08005519
5520 /* This is a hard error, log it. */
5521 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when "
5522 "queue awake!\n", dev->name);
5523 }
Michael Chan5a6f3072006-03-20 22:28:05 -08005524 return NETDEV_TX_BUSY;
5525 }
5526
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005527 entry = tnapi->tx_prod;
Michael Chan5a6f3072006-03-20 22:28:05 -08005528 base_flags = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08005529 mss = 0;
Matt Carlsonc13e3712007-05-05 11:50:04 -07005530 if ((mss = skb_shinfo(skb)->gso_size) != 0) {
Michael Chan5a6f3072006-03-20 22:28:05 -08005531 int tcp_opt_len, ip_tcp_len;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005532 u32 hdrlen;
Michael Chan5a6f3072006-03-20 22:28:05 -08005533
5534 if (skb_header_cloned(skb) &&
5535 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
5536 dev_kfree_skb(skb);
5537 goto out_unlock;
5538 }
5539
Michael Chanb0026622006-07-03 19:42:14 -07005540 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005541 hdrlen = skb_headlen(skb) - ETH_HLEN;
Michael Chanb0026622006-07-03 19:42:14 -07005542 else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005543 struct iphdr *iph = ip_hdr(skb);
5544
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07005545 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03005546 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Michael Chanb0026622006-07-03 19:42:14 -07005547
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005548 iph->check = 0;
5549 iph->tot_len = htons(mss + ip_tcp_len + tcp_opt_len);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005550 hdrlen = ip_tcp_len + tcp_opt_len;
Michael Chanb0026622006-07-03 19:42:14 -07005551 }
Michael Chan5a6f3072006-03-20 22:28:05 -08005552
Matt Carlsone849cdc2009-11-13 13:03:38 +00005553 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005554 mss |= (hdrlen & 0xc) << 12;
5555 if (hdrlen & 0x10)
5556 base_flags |= 0x00000010;
5557 base_flags |= (hdrlen & 0x3e0) << 5;
5558 } else
5559 mss |= hdrlen << 9;
5560
Michael Chan5a6f3072006-03-20 22:28:05 -08005561 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
5562 TXD_FLAG_CPU_POST_DMA);
5563
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005564 tcp_hdr(skb)->check = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08005565
Michael Chan5a6f3072006-03-20 22:28:05 -08005566 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07005567 else if (skb->ip_summed == CHECKSUM_PARTIAL)
Michael Chan5a6f3072006-03-20 22:28:05 -08005568 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Michael Chan5a6f3072006-03-20 22:28:05 -08005569#if TG3_VLAN_TAG_USED
5570 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
5571 base_flags |= (TXD_FLAG_VLAN |
5572 (vlan_tx_tag_get(skb) << 16));
5573#endif
5574
Alexander Duyckf4188d82009-12-02 16:48:38 +00005575 len = skb_headlen(skb);
5576
5577 /* Queue skb data, a.k.a. the main skb fragment. */
5578 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
5579 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07005580 dev_kfree_skb(skb);
5581 goto out_unlock;
5582 }
5583
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005584 tnapi->tx_buffers[entry].skb = skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005585 pci_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005586
Matt Carlsonb703df62009-12-03 08:36:21 +00005587 if ((tp->tg3_flags3 & TG3_FLG3_USE_JUMBO_BDFLAG) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005588 !mss && skb->len > ETH_DATA_LEN)
5589 base_flags |= TXD_FLAG_JMB_PKT;
5590
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005591 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Michael Chan5a6f3072006-03-20 22:28:05 -08005592 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
5593
5594 entry = NEXT_TX(entry);
5595
5596 /* Now loop through additional data fragments, and queue them. */
5597 if (skb_shinfo(skb)->nr_frags > 0) {
Michael Chan5a6f3072006-03-20 22:28:05 -08005598 last = skb_shinfo(skb)->nr_frags - 1;
5599 for (i = 0; i <= last; i++) {
5600 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5601
5602 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005603 mapping = pci_map_page(tp->pdev,
5604 frag->page,
5605 frag->page_offset,
5606 len, PCI_DMA_TODEVICE);
5607 if (pci_dma_mapping_error(tp->pdev, mapping))
5608 goto dma_error;
5609
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005610 tnapi->tx_buffers[entry].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005611 pci_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
5612 mapping);
Michael Chan5a6f3072006-03-20 22:28:05 -08005613
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005614 tg3_set_txd(tnapi, entry, mapping, len,
Michael Chan5a6f3072006-03-20 22:28:05 -08005615 base_flags, (i == last) | (mss << 1));
5616
5617 entry = NEXT_TX(entry);
5618 }
5619 }
5620
5621 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005622 tw32_tx_mbox(tnapi->prodmbox, entry);
Michael Chan5a6f3072006-03-20 22:28:05 -08005623
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005624 tnapi->tx_prod = entry;
5625 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005626 netif_tx_stop_queue(txq);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005627 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005628 netif_tx_wake_queue(txq);
Michael Chan5a6f3072006-03-20 22:28:05 -08005629 }
5630
5631out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00005632 mmiowb();
Michael Chan5a6f3072006-03-20 22:28:05 -08005633
5634 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005635
5636dma_error:
5637 last = i;
5638 entry = tnapi->tx_prod;
5639 tnapi->tx_buffers[entry].skb = NULL;
5640 pci_unmap_single(tp->pdev,
5641 pci_unmap_addr(&tnapi->tx_buffers[entry], mapping),
5642 skb_headlen(skb),
5643 PCI_DMA_TODEVICE);
5644 for (i = 0; i <= last; i++) {
5645 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5646 entry = NEXT_TX(entry);
5647
5648 pci_unmap_page(tp->pdev,
5649 pci_unmap_addr(&tnapi->tx_buffers[entry],
5650 mapping),
5651 frag->size, PCI_DMA_TODEVICE);
5652 }
5653
5654 dev_kfree_skb(skb);
5655 return NETDEV_TX_OK;
Michael Chan5a6f3072006-03-20 22:28:05 -08005656}
5657
Stephen Hemminger613573252009-08-31 19:50:58 +00005658static netdev_tx_t tg3_start_xmit_dma_bug(struct sk_buff *,
5659 struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07005660
5661/* Use GSO to workaround a rare TSO bug that may be triggered when the
5662 * TSO header is greater than 80 bytes.
5663 */
5664static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
5665{
5666 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005667 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07005668
5669 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005670 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07005671 netif_stop_queue(tp->dev);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005672 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08005673 return NETDEV_TX_BUSY;
5674
5675 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07005676 }
5677
5678 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07005679 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07005680 goto tg3_tso_bug_end;
5681
5682 do {
5683 nskb = segs;
5684 segs = segs->next;
5685 nskb->next = NULL;
5686 tg3_start_xmit_dma_bug(nskb, tp->dev);
5687 } while (segs);
5688
5689tg3_tso_bug_end:
5690 dev_kfree_skb(skb);
5691
5692 return NETDEV_TX_OK;
5693}
Michael Chan52c0fd82006-06-29 20:15:54 -07005694
Michael Chan5a6f3072006-03-20 22:28:05 -08005695/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
5696 * support TG3_FLG2_HW_TSO_1 or firmware TSO only.
5697 */
Stephen Hemminger613573252009-08-31 19:50:58 +00005698static netdev_tx_t tg3_start_xmit_dma_bug(struct sk_buff *skb,
5699 struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08005700{
5701 struct tg3 *tp = netdev_priv(dev);
Michael Chan5a6f3072006-03-20 22:28:05 -08005702 u32 len, entry, base_flags, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 int would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07005704 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005705 struct tg3_napi *tnapi;
5706 struct netdev_queue *txq;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005707 unsigned int i, last;
5708
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709
Matt Carlson24f4efd2009-11-13 13:03:35 +00005710 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
5711 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Matt Carlson19cfaec2009-12-03 08:36:20 +00005712 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
Matt Carlson24f4efd2009-11-13 13:03:35 +00005713 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714
Michael Chan00b70502006-06-17 21:58:45 -07005715 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005716 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07005717 * interrupt. Furthermore, IRQ processing runs lockless so we have
5718 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005720 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00005721 if (!netif_tx_queue_stopped(txq)) {
5722 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08005723
5724 /* This is a hard error, log it. */
5725 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when "
5726 "queue awake!\n", dev->name);
5727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728 return NETDEV_TX_BUSY;
5729 }
5730
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005731 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07005733 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005735
Matt Carlsonc13e3712007-05-05 11:50:04 -07005736 if ((mss = skb_shinfo(skb)->gso_size) != 0) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005737 struct iphdr *iph;
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005738 u32 tcp_opt_len, ip_tcp_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
5740 if (skb_header_cloned(skb) &&
5741 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
5742 dev_kfree_skb(skb);
5743 goto out_unlock;
5744 }
5745
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07005746 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03005747 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748
Michael Chan52c0fd82006-06-29 20:15:54 -07005749 hdr_len = ip_tcp_len + tcp_opt_len;
5750 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Michael Chan7f62ad52007-02-20 23:25:40 -08005751 (tp->tg3_flags2 & TG3_FLG2_TSO_BUG))
Michael Chan52c0fd82006-06-29 20:15:54 -07005752 return (tg3_tso_bug(tp, skb));
5753
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
5755 TXD_FLAG_CPU_POST_DMA);
5756
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005757 iph = ip_hdr(skb);
5758 iph->check = 0;
5759 iph->tot_len = htons(mss + hdr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005761 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005763 } else
5764 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5765 iph->daddr, 0,
5766 IPPROTO_TCP,
5767 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768
Matt Carlson615774f2009-11-13 13:03:39 +00005769 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) {
5770 mss |= (hdr_len & 0xc) << 12;
5771 if (hdr_len & 0x10)
5772 base_flags |= 0x00000010;
5773 base_flags |= (hdr_len & 0x3e0) << 5;
5774 } else if (tp->tg3_flags2 & TG3_FLG2_HW_TSO_2)
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005775 mss |= hdr_len << 9;
5776 else if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_1) ||
5777 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005778 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779 int tsflags;
5780
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005781 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 mss |= (tsflags << 11);
5783 }
5784 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005785 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786 int tsflags;
5787
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005788 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789 base_flags |= tsflags << 12;
5790 }
5791 }
5792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793#if TG3_VLAN_TAG_USED
5794 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
5795 base_flags |= (TXD_FLAG_VLAN |
5796 (vlan_tx_tag_get(skb) << 16));
5797#endif
5798
Matt Carlsonb703df62009-12-03 08:36:21 +00005799 if ((tp->tg3_flags3 & TG3_FLG3_USE_JUMBO_BDFLAG) &&
Matt Carlson615774f2009-11-13 13:03:39 +00005800 !mss && skb->len > ETH_DATA_LEN)
5801 base_flags |= TXD_FLAG_JMB_PKT;
5802
Alexander Duyckf4188d82009-12-02 16:48:38 +00005803 len = skb_headlen(skb);
5804
5805 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
5806 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07005807 dev_kfree_skb(skb);
5808 goto out_unlock;
5809 }
5810
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005811 tnapi->tx_buffers[entry].skb = skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005812 pci_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813
5814 would_hit_hwbug = 0;
5815
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005816 if ((tp->tg3_flags3 & TG3_FLG3_SHORT_DMA_BUG) && len <= 8)
5817 would_hit_hwbug = 1;
5818
Matt Carlson0e1406d2009-11-02 12:33:33 +00005819 if ((tp->tg3_flags3 & TG3_FLG3_4G_DMA_BNDRY_BUG) &&
5820 tg3_4g_overflow_test(mapping, len))
Matt Carlson41588ba2008-04-19 18:12:33 -07005821 would_hit_hwbug = 1;
Matt Carlson0e1406d2009-11-02 12:33:33 +00005822
5823 if ((tp->tg3_flags3 & TG3_FLG3_40BIT_DMA_LIMIT_BUG) &&
5824 tg3_40bit_overflow_test(tp, mapping, len))
5825 would_hit_hwbug = 1;
5826
5827 if (tp->tg3_flags3 & TG3_FLG3_5701_DMA_BUG)
Michael Chanc58ec932005-09-17 00:46:27 -07005828 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005830 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
5832
5833 entry = NEXT_TX(entry);
5834
5835 /* Now loop through additional data fragments, and queue them. */
5836 if (skb_shinfo(skb)->nr_frags > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837 last = skb_shinfo(skb)->nr_frags - 1;
5838 for (i = 0; i <= last; i++) {
5839 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5840
5841 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005842 mapping = pci_map_page(tp->pdev,
5843 frag->page,
5844 frag->page_offset,
5845 len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005847 tnapi->tx_buffers[entry].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005848 pci_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
5849 mapping);
5850 if (pci_dma_mapping_error(tp->pdev, mapping))
5851 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005853 if ((tp->tg3_flags3 & TG3_FLG3_SHORT_DMA_BUG) &&
5854 len <= 8)
5855 would_hit_hwbug = 1;
5856
Matt Carlson0e1406d2009-11-02 12:33:33 +00005857 if ((tp->tg3_flags3 & TG3_FLG3_4G_DMA_BNDRY_BUG) &&
5858 tg3_4g_overflow_test(mapping, len))
Michael Chanc58ec932005-09-17 00:46:27 -07005859 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860
Matt Carlson0e1406d2009-11-02 12:33:33 +00005861 if ((tp->tg3_flags3 & TG3_FLG3_40BIT_DMA_LIMIT_BUG) &&
5862 tg3_40bit_overflow_test(tp, mapping, len))
Michael Chan72f2afb2006-03-06 19:28:35 -08005863 would_hit_hwbug = 1;
5864
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005866 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867 base_flags, (i == last)|(mss << 1));
5868 else
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005869 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870 base_flags, (i == last));
5871
5872 entry = NEXT_TX(entry);
5873 }
5874 }
5875
5876 if (would_hit_hwbug) {
5877 u32 last_plus_one = entry;
5878 u32 start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879
Michael Chanc58ec932005-09-17 00:46:27 -07005880 start = entry - 1 - skb_shinfo(skb)->nr_frags;
5881 start &= (TG3_TX_RING_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882
5883 /* If the workaround fails due to memory/mapping
5884 * failure, silently drop this packet.
5885 */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005886 if (tigon3_dma_hwbug_workaround(tnapi, skb, last_plus_one,
Michael Chanc58ec932005-09-17 00:46:27 -07005887 &start, base_flags, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 goto out_unlock;
5889
5890 entry = start;
5891 }
5892
5893 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005894 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005896 tnapi->tx_prod = entry;
5897 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00005898 netif_tx_stop_queue(txq);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005899 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00005900 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07005901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902
5903out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00005904 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905
5906 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005907
5908dma_error:
5909 last = i;
5910 entry = tnapi->tx_prod;
5911 tnapi->tx_buffers[entry].skb = NULL;
5912 pci_unmap_single(tp->pdev,
5913 pci_unmap_addr(&tnapi->tx_buffers[entry], mapping),
5914 skb_headlen(skb),
5915 PCI_DMA_TODEVICE);
5916 for (i = 0; i <= last; i++) {
5917 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5918 entry = NEXT_TX(entry);
5919
5920 pci_unmap_page(tp->pdev,
5921 pci_unmap_addr(&tnapi->tx_buffers[entry],
5922 mapping),
5923 frag->size, PCI_DMA_TODEVICE);
5924 }
5925
5926 dev_kfree_skb(skb);
5927 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928}
5929
5930static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
5931 int new_mtu)
5932{
5933 dev->mtu = new_mtu;
5934
Michael Chanef7f5ec2005-07-25 12:32:25 -07005935 if (new_mtu > ETH_DATA_LEN) {
Michael Chana4e2b342005-10-26 15:46:52 -07005936 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanef7f5ec2005-07-25 12:32:25 -07005937 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
5938 ethtool_op_set_tso(dev, 0);
5939 }
5940 else
5941 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
5942 } else {
Michael Chana4e2b342005-10-26 15:46:52 -07005943 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chanef7f5ec2005-07-25 12:32:25 -07005944 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
Michael Chan0f893dc2005-07-25 12:30:38 -07005945 tp->tg3_flags &= ~TG3_FLAG_JUMBO_RING_ENABLE;
Michael Chanef7f5ec2005-07-25 12:32:25 -07005946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947}
5948
5949static int tg3_change_mtu(struct net_device *dev, int new_mtu)
5950{
5951 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005952 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953
5954 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
5955 return -EINVAL;
5956
5957 if (!netif_running(dev)) {
5958 /* We'll just catch it later when the
5959 * device is up'd.
5960 */
5961 tg3_set_mtu(dev, tp, new_mtu);
5962 return 0;
5963 }
5964
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005965 tg3_phy_stop(tp);
5966
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005968
5969 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970
Michael Chan944d9802005-05-29 14:57:48 -07005971 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
5973 tg3_set_mtu(dev, tp, new_mtu);
5974
Michael Chanb9ec6c12006-07-25 16:37:27 -07005975 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976
Michael Chanb9ec6c12006-07-25 16:37:27 -07005977 if (!err)
5978 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979
David S. Millerf47c11e2005-06-24 20:18:35 -07005980 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005982 if (!err)
5983 tg3_phy_start(tp);
5984
Michael Chanb9ec6c12006-07-25 16:37:27 -07005985 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986}
5987
Matt Carlson21f581a2009-08-28 14:00:25 +00005988static void tg3_rx_prodring_free(struct tg3 *tp,
5989 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991 int i;
5992
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005993 if (tpr != &tp->prodring[0]) {
5994 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
5995 i = (i + 1) % TG3_RX_RING_SIZE)
5996 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
5997 tp->rx_pkt_map_sz);
5998
5999 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
6000 for (i = tpr->rx_jmb_cons_idx;
6001 i != tpr->rx_jmb_prod_idx;
6002 i = (i + 1) % TG3_RX_JUMBO_RING_SIZE) {
6003 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6004 TG3_RX_JMB_MAP_SZ);
6005 }
6006 }
6007
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006008 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006011 for (i = 0; i < TG3_RX_RING_SIZE; i++)
6012 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6013 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006015 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006016 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++)
6017 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6018 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019 }
6020}
6021
6022/* Initialize tx/rx rings for packet processing.
6023 *
6024 * The chip has been shut down and the driver detached from
6025 * the networking, so no interrupts or new tx packets will
6026 * end up in the driver. tp->{tx,}lock are held and thus
6027 * we may not sleep.
6028 */
Matt Carlson21f581a2009-08-28 14:00:25 +00006029static int tg3_rx_prodring_alloc(struct tg3 *tp,
6030 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031{
Matt Carlson287be122009-08-28 13:58:46 +00006032 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006034 tpr->rx_std_cons_idx = 0;
6035 tpr->rx_std_prod_idx = 0;
6036 tpr->rx_jmb_cons_idx = 0;
6037 tpr->rx_jmb_prod_idx = 0;
6038
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006039 if (tpr != &tp->prodring[0]) {
6040 memset(&tpr->rx_std_buffers[0], 0, TG3_RX_STD_BUFF_RING_SIZE);
6041 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE)
6042 memset(&tpr->rx_jmb_buffers[0], 0,
6043 TG3_RX_JMB_BUFF_RING_SIZE);
6044 goto done;
6045 }
6046
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047 /* Zero out all descriptors. */
Matt Carlson21f581a2009-08-28 14:00:25 +00006048 memset(tpr->rx_std, 0, TG3_RX_RING_BYTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049
Matt Carlson287be122009-08-28 13:58:46 +00006050 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Michael Chana4e2b342005-10-26 15:46:52 -07006051 if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00006052 tp->dev->mtu > ETH_DATA_LEN)
6053 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
6054 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07006055
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056 /* Initialize invariants of the rings, we only set this
6057 * stuff once. This works because the card does not
6058 * write into the rx buffer posting rings.
6059 */
6060 for (i = 0; i < TG3_RX_RING_SIZE; i++) {
6061 struct tg3_rx_buffer_desc *rxd;
6062
Matt Carlson21f581a2009-08-28 14:00:25 +00006063 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00006064 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
6066 rxd->opaque = (RXD_OPAQUE_RING_STD |
6067 (i << RXD_OPAQUE_INDEX_SHIFT));
6068 }
6069
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006070 /* Now allocate fresh SKBs for each rx ring. */
6071 for (i = 0; i < tp->rx_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00006072 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006073 printk(KERN_WARNING PFX
6074 "%s: Using a smaller RX standard ring, "
6075 "only %d out of %d buffers were allocated "
6076 "successfully.\n",
6077 tp->dev->name, i, tp->rx_pending);
6078 if (i == 0)
6079 goto initfail;
6080 tp->rx_pending = i;
6081 break;
6082 }
6083 }
6084
6085 if (!(tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE))
6086 goto done;
6087
Matt Carlson21f581a2009-08-28 14:00:25 +00006088 memset(tpr->rx_jmb, 0, TG3_RX_JUMBO_RING_BYTES);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006089
Matt Carlson0d86df82010-02-17 15:17:00 +00006090 if (!(tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE))
6091 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092
Matt Carlson0d86df82010-02-17 15:17:00 +00006093 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++) {
6094 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095
Matt Carlson0d86df82010-02-17 15:17:00 +00006096 rxd = &tpr->rx_jmb[i].std;
6097 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
6098 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
6099 RXD_FLAG_JUMBO;
6100 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
6101 (i << RXD_OPAQUE_INDEX_SHIFT));
6102 }
6103
6104 for (i = 0; i < tp->rx_jumbo_pending; i++) {
6105 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
6106 printk(KERN_WARNING PFX
6107 "%s: Using a smaller RX jumbo ring, "
6108 "only %d out of %d buffers were "
6109 "allocated successfully.\n",
6110 tp->dev->name, i, tp->rx_jumbo_pending);
6111 if (i == 0)
6112 goto initfail;
6113 tp->rx_jumbo_pending = i;
6114 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115 }
6116 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006117
6118done:
Michael Chan32d8c572006-07-25 16:38:29 -07006119 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006120
6121initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00006122 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006123 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124}
6125
Matt Carlson21f581a2009-08-28 14:00:25 +00006126static void tg3_rx_prodring_fini(struct tg3 *tp,
6127 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128{
Matt Carlson21f581a2009-08-28 14:00:25 +00006129 kfree(tpr->rx_std_buffers);
6130 tpr->rx_std_buffers = NULL;
6131 kfree(tpr->rx_jmb_buffers);
6132 tpr->rx_jmb_buffers = NULL;
6133 if (tpr->rx_std) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134 pci_free_consistent(tp->pdev, TG3_RX_RING_BYTES,
Matt Carlson21f581a2009-08-28 14:00:25 +00006135 tpr->rx_std, tpr->rx_std_mapping);
6136 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137 }
Matt Carlson21f581a2009-08-28 14:00:25 +00006138 if (tpr->rx_jmb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139 pci_free_consistent(tp->pdev, TG3_RX_JUMBO_RING_BYTES,
Matt Carlson21f581a2009-08-28 14:00:25 +00006140 tpr->rx_jmb, tpr->rx_jmb_mapping);
6141 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006143}
6144
Matt Carlson21f581a2009-08-28 14:00:25 +00006145static int tg3_rx_prodring_init(struct tg3 *tp,
6146 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006147{
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006148 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE, GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006149 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006150 return -ENOMEM;
6151
Matt Carlson21f581a2009-08-28 14:00:25 +00006152 tpr->rx_std = pci_alloc_consistent(tp->pdev, TG3_RX_RING_BYTES,
6153 &tpr->rx_std_mapping);
6154 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006155 goto err_out;
6156
6157 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006158 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE,
Matt Carlson21f581a2009-08-28 14:00:25 +00006159 GFP_KERNEL);
6160 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006161 goto err_out;
6162
Matt Carlson21f581a2009-08-28 14:00:25 +00006163 tpr->rx_jmb = pci_alloc_consistent(tp->pdev,
6164 TG3_RX_JUMBO_RING_BYTES,
6165 &tpr->rx_jmb_mapping);
6166 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006167 goto err_out;
6168 }
6169
6170 return 0;
6171
6172err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00006173 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006174 return -ENOMEM;
6175}
6176
6177/* Free up pending packets in all rx/tx rings.
6178 *
6179 * The chip has been shut down and the driver detached from
6180 * the networking, so no interrupts or new tx packets will
6181 * end up in the driver. tp->{tx,}lock is not held and we are not
6182 * in an interrupt context and thus may sleep.
6183 */
6184static void tg3_free_rings(struct tg3 *tp)
6185{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006186 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006187
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006188 for (j = 0; j < tp->irq_cnt; j++) {
6189 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006190
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006191 if (!tnapi->tx_buffers)
6192 continue;
6193
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006194 for (i = 0; i < TG3_TX_RING_SIZE; ) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006195 struct ring_info *txp;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006196 struct sk_buff *skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006197 unsigned int k;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006198
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006199 txp = &tnapi->tx_buffers[i];
6200 skb = txp->skb;
6201
6202 if (skb == NULL) {
6203 i++;
6204 continue;
6205 }
6206
Alexander Duyckf4188d82009-12-02 16:48:38 +00006207 pci_unmap_single(tp->pdev,
6208 pci_unmap_addr(txp, mapping),
6209 skb_headlen(skb),
6210 PCI_DMA_TODEVICE);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006211 txp->skb = NULL;
6212
Alexander Duyckf4188d82009-12-02 16:48:38 +00006213 i++;
6214
6215 for (k = 0; k < skb_shinfo(skb)->nr_frags; k++) {
6216 txp = &tnapi->tx_buffers[i & (TG3_TX_RING_SIZE - 1)];
6217 pci_unmap_page(tp->pdev,
6218 pci_unmap_addr(txp, mapping),
6219 skb_shinfo(skb)->frags[k].size,
6220 PCI_DMA_TODEVICE);
6221 i++;
6222 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006223
6224 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006225 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006226
Matt Carlsone4af1af2010-02-12 14:47:05 +00006227 tg3_rx_prodring_free(tp, &tp->prodring[j]);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006228 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006229}
6230
6231/* Initialize tx/rx rings for packet processing.
6232 *
6233 * The chip has been shut down and the driver detached from
6234 * the networking, so no interrupts or new tx packets will
6235 * end up in the driver. tp->{tx,}lock are held and thus
6236 * we may not sleep.
6237 */
6238static int tg3_init_rings(struct tg3 *tp)
6239{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006240 int i;
Matt Carlson72334482009-08-28 14:03:01 +00006241
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006242 /* Free up all the SKBs. */
6243 tg3_free_rings(tp);
6244
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006245 for (i = 0; i < tp->irq_cnt; i++) {
6246 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006247
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006248 tnapi->last_tag = 0;
6249 tnapi->last_irq_tag = 0;
6250 tnapi->hw_status->status = 0;
6251 tnapi->hw_status->status_tag = 0;
6252 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6253
6254 tnapi->tx_prod = 0;
6255 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006256 if (tnapi->tx_ring)
6257 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006258
6259 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006260 if (tnapi->rx_rcb)
6261 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006262
Matt Carlsone4af1af2010-02-12 14:47:05 +00006263 if (tg3_rx_prodring_alloc(tp, &tp->prodring[i])) {
6264 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006265 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006266 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006267 }
Matt Carlson72334482009-08-28 14:03:01 +00006268
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006269 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006270}
6271
6272/*
6273 * Must not be invoked with interrupt sources disabled and
6274 * the hardware shutdown down.
6275 */
6276static void tg3_free_consistent(struct tg3 *tp)
6277{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006278 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006279
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006280 for (i = 0; i < tp->irq_cnt; i++) {
6281 struct tg3_napi *tnapi = &tp->napi[i];
6282
6283 if (tnapi->tx_ring) {
6284 pci_free_consistent(tp->pdev, TG3_TX_RING_BYTES,
6285 tnapi->tx_ring, tnapi->tx_desc_mapping);
6286 tnapi->tx_ring = NULL;
6287 }
6288
6289 kfree(tnapi->tx_buffers);
6290 tnapi->tx_buffers = NULL;
6291
6292 if (tnapi->rx_rcb) {
6293 pci_free_consistent(tp->pdev, TG3_RX_RCB_RING_BYTES(tp),
6294 tnapi->rx_rcb,
6295 tnapi->rx_rcb_mapping);
6296 tnapi->rx_rcb = NULL;
6297 }
6298
6299 if (tnapi->hw_status) {
6300 pci_free_consistent(tp->pdev, TG3_HW_STATUS_SIZE,
6301 tnapi->hw_status,
6302 tnapi->status_mapping);
6303 tnapi->hw_status = NULL;
6304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006306
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307 if (tp->hw_stats) {
6308 pci_free_consistent(tp->pdev, sizeof(struct tg3_hw_stats),
6309 tp->hw_stats, tp->stats_mapping);
6310 tp->hw_stats = NULL;
6311 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006312
Matt Carlsone4af1af2010-02-12 14:47:05 +00006313 for (i = 0; i < tp->irq_cnt; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006314 tg3_rx_prodring_fini(tp, &tp->prodring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315}
6316
6317/*
6318 * Must not be invoked with interrupt sources disabled and
6319 * the hardware shutdown down. Can sleep.
6320 */
6321static int tg3_alloc_consistent(struct tg3 *tp)
6322{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006323 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006324
Matt Carlsone4af1af2010-02-12 14:47:05 +00006325 for (i = 0; i < tp->irq_cnt; i++) {
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006326 if (tg3_rx_prodring_init(tp, &tp->prodring[i]))
6327 goto err_out;
6328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330 tp->hw_stats = pci_alloc_consistent(tp->pdev,
6331 sizeof(struct tg3_hw_stats),
6332 &tp->stats_mapping);
6333 if (!tp->hw_stats)
6334 goto err_out;
6335
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6337
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006338 for (i = 0; i < tp->irq_cnt; i++) {
6339 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006340 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006341
6342 tnapi->hw_status = pci_alloc_consistent(tp->pdev,
6343 TG3_HW_STATUS_SIZE,
6344 &tnapi->status_mapping);
6345 if (!tnapi->hw_status)
6346 goto err_out;
6347
6348 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006349 sblk = tnapi->hw_status;
6350
Matt Carlson19cfaec2009-12-03 08:36:20 +00006351 /* If multivector TSS is enabled, vector 0 does not handle
6352 * tx interrupts. Don't allocate any resources for it.
6353 */
6354 if ((!i && !(tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)) ||
6355 (i && (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS))) {
6356 tnapi->tx_buffers = kzalloc(sizeof(struct ring_info) *
6357 TG3_TX_RING_SIZE,
6358 GFP_KERNEL);
6359 if (!tnapi->tx_buffers)
6360 goto err_out;
6361
6362 tnapi->tx_ring = pci_alloc_consistent(tp->pdev,
6363 TG3_TX_RING_BYTES,
6364 &tnapi->tx_desc_mapping);
6365 if (!tnapi->tx_ring)
6366 goto err_out;
6367 }
6368
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006369 /*
6370 * When RSS is enabled, the status block format changes
6371 * slightly. The "rx_jumbo_consumer", "reserved",
6372 * and "rx_mini_consumer" members get mapped to the
6373 * other three rx return ring producer indexes.
6374 */
6375 switch (i) {
6376 default:
6377 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
6378 break;
6379 case 2:
6380 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
6381 break;
6382 case 3:
6383 tnapi->rx_rcb_prod_idx = &sblk->reserved;
6384 break;
6385 case 4:
6386 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
6387 break;
6388 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006389
Matt Carlsone4af1af2010-02-12 14:47:05 +00006390 tnapi->prodring = &tp->prodring[i];
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006391
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006392 /*
6393 * If multivector RSS is enabled, vector 0 does not handle
6394 * rx or tx interrupts. Don't allocate any resources for it.
6395 */
6396 if (!i && (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS))
6397 continue;
6398
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006399 tnapi->rx_rcb = pci_alloc_consistent(tp->pdev,
6400 TG3_RX_RCB_RING_BYTES(tp),
6401 &tnapi->rx_rcb_mapping);
6402 if (!tnapi->rx_rcb)
6403 goto err_out;
6404
6405 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006406 }
6407
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408 return 0;
6409
6410err_out:
6411 tg3_free_consistent(tp);
6412 return -ENOMEM;
6413}
6414
6415#define MAX_WAIT_CNT 1000
6416
6417/* To stop a block, clear the enable bit and poll till it
6418 * clears. tp->lock is held.
6419 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006420static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421{
6422 unsigned int i;
6423 u32 val;
6424
6425 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
6426 switch (ofs) {
6427 case RCVLSC_MODE:
6428 case DMAC_MODE:
6429 case MBFREE_MODE:
6430 case BUFMGR_MODE:
6431 case MEMARB_MODE:
6432 /* We can't enable/disable these bits of the
6433 * 5705/5750, just say success.
6434 */
6435 return 0;
6436
6437 default:
6438 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440 }
6441
6442 val = tr32(ofs);
6443 val &= ~enable_bit;
6444 tw32_f(ofs, val);
6445
6446 for (i = 0; i < MAX_WAIT_CNT; i++) {
6447 udelay(100);
6448 val = tr32(ofs);
6449 if ((val & enable_bit) == 0)
6450 break;
6451 }
6452
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006453 if (i == MAX_WAIT_CNT && !silent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006454 printk(KERN_ERR PFX "tg3_stop_block timed out, "
6455 "ofs=%lx enable_bit=%x\n",
6456 ofs, enable_bit);
6457 return -ENODEV;
6458 }
6459
6460 return 0;
6461}
6462
6463/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006464static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465{
6466 int i, err;
6467
6468 tg3_disable_ints(tp);
6469
6470 tp->rx_mode &= ~RX_MODE_ENABLE;
6471 tw32_f(MAC_RX_MODE, tp->rx_mode);
6472 udelay(10);
6473
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006474 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
6475 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
6476 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
6477 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
6478 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
6479 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006481 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
6482 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
6483 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
6484 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
6485 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
6486 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
6487 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488
6489 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
6490 tw32_f(MAC_MODE, tp->mac_mode);
6491 udelay(40);
6492
6493 tp->tx_mode &= ~TX_MODE_ENABLE;
6494 tw32_f(MAC_TX_MODE, tp->tx_mode);
6495
6496 for (i = 0; i < MAX_WAIT_CNT; i++) {
6497 udelay(100);
6498 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
6499 break;
6500 }
6501 if (i >= MAX_WAIT_CNT) {
6502 printk(KERN_ERR PFX "tg3_abort_hw timed out for %s, "
6503 "TX_MODE_ENABLE will not clear MAC_TX_MODE=%08x\n",
6504 tp->dev->name, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07006505 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506 }
6507
Michael Chane6de8ad2005-05-05 14:42:41 -07006508 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006509 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
6510 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511
6512 tw32(FTQ_RESET, 0xffffffff);
6513 tw32(FTQ_RESET, 0x00000000);
6514
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006515 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
6516 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006518 for (i = 0; i < tp->irq_cnt; i++) {
6519 struct tg3_napi *tnapi = &tp->napi[i];
6520 if (tnapi->hw_status)
6521 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523 if (tp->hw_stats)
6524 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6525
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526 return err;
6527}
6528
Matt Carlson0d3031d2007-10-10 18:02:43 -07006529static void tg3_ape_send_event(struct tg3 *tp, u32 event)
6530{
6531 int i;
6532 u32 apedata;
6533
6534 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
6535 if (apedata != APE_SEG_SIG_MAGIC)
6536 return;
6537
6538 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
Matt Carlson731fd792008-08-15 14:07:51 -07006539 if (!(apedata & APE_FW_STATUS_READY))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006540 return;
6541
6542 /* Wait for up to 1 millisecond for APE to service previous event. */
6543 for (i = 0; i < 10; i++) {
6544 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
6545 return;
6546
6547 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
6548
6549 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6550 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
6551 event | APE_EVENT_STATUS_EVENT_PENDING);
6552
6553 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
6554
6555 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6556 break;
6557
6558 udelay(100);
6559 }
6560
6561 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6562 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
6563}
6564
6565static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
6566{
6567 u32 event;
6568 u32 apedata;
6569
6570 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
6571 return;
6572
6573 switch (kind) {
6574 case RESET_KIND_INIT:
6575 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
6576 APE_HOST_SEG_SIG_MAGIC);
6577 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
6578 APE_HOST_SEG_LEN_MAGIC);
6579 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
6580 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
6581 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
6582 APE_HOST_DRIVER_ID_MAGIC);
6583 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
6584 APE_HOST_BEHAV_NO_PHYLOCK);
6585
6586 event = APE_EVENT_STATUS_STATE_START;
6587 break;
6588 case RESET_KIND_SHUTDOWN:
Matt Carlsonb2aee152008-11-03 16:51:11 -08006589 /* With the interface we are currently using,
6590 * APE does not track driver state. Wiping
6591 * out the HOST SEGMENT SIGNATURE forces
6592 * the APE to assume OS absent status.
6593 */
6594 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
6595
Matt Carlson0d3031d2007-10-10 18:02:43 -07006596 event = APE_EVENT_STATUS_STATE_UNLOAD;
6597 break;
6598 case RESET_KIND_SUSPEND:
6599 event = APE_EVENT_STATUS_STATE_SUSPEND;
6600 break;
6601 default:
6602 return;
6603 }
6604
6605 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
6606
6607 tg3_ape_send_event(tp, event);
6608}
6609
Michael Chane6af3012005-04-21 17:12:05 -07006610/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
6612{
David S. Millerf49639e2006-06-09 11:58:36 -07006613 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
6614 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615
6616 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
6617 switch (kind) {
6618 case RESET_KIND_INIT:
6619 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6620 DRV_STATE_START);
6621 break;
6622
6623 case RESET_KIND_SHUTDOWN:
6624 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6625 DRV_STATE_UNLOAD);
6626 break;
6627
6628 case RESET_KIND_SUSPEND:
6629 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6630 DRV_STATE_SUSPEND);
6631 break;
6632
6633 default:
6634 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006637
6638 if (kind == RESET_KIND_INIT ||
6639 kind == RESET_KIND_SUSPEND)
6640 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641}
6642
6643/* tp->lock is held. */
6644static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
6645{
6646 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
6647 switch (kind) {
6648 case RESET_KIND_INIT:
6649 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6650 DRV_STATE_START_DONE);
6651 break;
6652
6653 case RESET_KIND_SHUTDOWN:
6654 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6655 DRV_STATE_UNLOAD_DONE);
6656 break;
6657
6658 default:
6659 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006662
6663 if (kind == RESET_KIND_SHUTDOWN)
6664 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665}
6666
6667/* tp->lock is held. */
6668static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
6669{
6670 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
6671 switch (kind) {
6672 case RESET_KIND_INIT:
6673 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6674 DRV_STATE_START);
6675 break;
6676
6677 case RESET_KIND_SHUTDOWN:
6678 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6679 DRV_STATE_UNLOAD);
6680 break;
6681
6682 case RESET_KIND_SUSPEND:
6683 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6684 DRV_STATE_SUSPEND);
6685 break;
6686
6687 default:
6688 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690 }
6691}
6692
Michael Chan7a6f4362006-09-27 16:03:31 -07006693static int tg3_poll_fw(struct tg3 *tp)
6694{
6695 int i;
6696 u32 val;
6697
Michael Chanb5d37722006-09-27 16:06:21 -07006698 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08006699 /* Wait up to 20ms for init done. */
6700 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07006701 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
6702 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08006703 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07006704 }
6705 return -ENODEV;
6706 }
6707
Michael Chan7a6f4362006-09-27 16:03:31 -07006708 /* Wait for firmware initialization to complete. */
6709 for (i = 0; i < 100000; i++) {
6710 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
6711 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
6712 break;
6713 udelay(10);
6714 }
6715
6716 /* Chip might not be fitted with firmware. Some Sun onboard
6717 * parts are configured like that. So don't signal the timeout
6718 * of the above loop as an error, but do report the lack of
6719 * running firmware once.
6720 */
6721 if (i >= 100000 &&
6722 !(tp->tg3_flags2 & TG3_FLG2_NO_FWARE_REPORTED)) {
6723 tp->tg3_flags2 |= TG3_FLG2_NO_FWARE_REPORTED;
6724
6725 printk(KERN_INFO PFX "%s: No firmware running.\n",
6726 tp->dev->name);
6727 }
6728
Matt Carlson6b10c162010-02-12 14:47:08 +00006729 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
6730 /* The 57765 A0 needs a little more
6731 * time to do some important work.
6732 */
6733 mdelay(10);
6734 }
6735
Michael Chan7a6f4362006-09-27 16:03:31 -07006736 return 0;
6737}
6738
Michael Chanee6a99b2007-07-18 21:49:10 -07006739/* Save PCI command register before chip reset */
6740static void tg3_save_pci_state(struct tg3 *tp)
6741{
Matt Carlson8a6eac92007-10-21 16:17:55 -07006742 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07006743}
6744
6745/* Restore PCI state after chip reset */
6746static void tg3_restore_pci_state(struct tg3 *tp)
6747{
6748 u32 val;
6749
6750 /* Re-enable indirect register accesses. */
6751 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
6752 tp->misc_host_ctrl);
6753
6754 /* Set MAX PCI retry to zero. */
6755 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
6756 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
6757 (tp->tg3_flags & TG3_FLAG_PCIX_MODE))
6758 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07006759 /* Allow reads and writes to the APE register and memory space. */
6760 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
6761 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
6762 PCISTATE_ALLOW_APE_SHMEM_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07006763 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
6764
Matt Carlson8a6eac92007-10-21 16:17:55 -07006765 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07006766
Matt Carlsonfcb389d2008-11-03 16:55:44 -08006767 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
6768 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
6769 pcie_set_readrq(tp->pdev, 4096);
6770 else {
6771 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
6772 tp->pci_cacheline_sz);
6773 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
6774 tp->pci_lat_timer);
6775 }
Michael Chan114342f2007-10-15 02:12:26 -07006776 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08006777
Michael Chanee6a99b2007-07-18 21:49:10 -07006778 /* Make sure PCI-X relaxed ordering bit is clear. */
Matt Carlson52f44902008-11-21 17:17:04 -08006779 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
Matt Carlson9974a352007-10-07 23:27:28 -07006780 u16 pcix_cmd;
6781
6782 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
6783 &pcix_cmd);
6784 pcix_cmd &= ~PCI_X_CMD_ERO;
6785 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
6786 pcix_cmd);
6787 }
Michael Chanee6a99b2007-07-18 21:49:10 -07006788
6789 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanee6a99b2007-07-18 21:49:10 -07006790
6791 /* Chip reset on 5780 will reset MSI enable bit,
6792 * so need to restore it.
6793 */
6794 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
6795 u16 ctrl;
6796
6797 pci_read_config_word(tp->pdev,
6798 tp->msi_cap + PCI_MSI_FLAGS,
6799 &ctrl);
6800 pci_write_config_word(tp->pdev,
6801 tp->msi_cap + PCI_MSI_FLAGS,
6802 ctrl | PCI_MSI_FLAGS_ENABLE);
6803 val = tr32(MSGINT_MODE);
6804 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
6805 }
6806 }
6807}
6808
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809static void tg3_stop_fw(struct tg3 *);
6810
6811/* tp->lock is held. */
6812static int tg3_chip_reset(struct tg3 *tp)
6813{
6814 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07006815 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00006816 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006817
David S. Millerf49639e2006-06-09 11:58:36 -07006818 tg3_nvram_lock(tp);
6819
Matt Carlson77b483f2008-08-15 14:07:24 -07006820 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
6821
David S. Millerf49639e2006-06-09 11:58:36 -07006822 /* No matching tg3_nvram_unlock() after this because
6823 * chip reset below will undo the nvram lock.
6824 */
6825 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826
Michael Chanee6a99b2007-07-18 21:49:10 -07006827 /* GRC_MISC_CFG core clock reset will clear the memory
6828 * enable bit in PCI register 4 and the MSI enable bit
6829 * on some chips, so we save relevant registers here.
6830 */
6831 tg3_save_pci_state(tp);
6832
Michael Chand9ab5ad2006-03-20 22:27:35 -08006833 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08006834 (tp->tg3_flags3 & TG3_FLG3_5755_PLUS))
Michael Chand9ab5ad2006-03-20 22:27:35 -08006835 tw32(GRC_FASTBOOT_PC, 0);
6836
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837 /*
6838 * We must avoid the readl() that normally takes place.
6839 * It locks machines, causes machine checks, and other
6840 * fun things. So, temporarily disable the 5701
6841 * hardware workaround, while we do the reset.
6842 */
Michael Chan1ee582d2005-08-09 20:16:46 -07006843 write_op = tp->write32;
6844 if (write_op == tg3_write_flush_reg32)
6845 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846
Michael Chand18edcb2007-03-24 20:57:11 -07006847 /* Prevent the irq handler from reading or writing PCI registers
6848 * during chip reset when the memory enable bit in the PCI command
6849 * register may be cleared. The chip does not generate interrupt
6850 * at this time, but the irq handler may still be called due to irq
6851 * sharing or irqpoll.
6852 */
6853 tp->tg3_flags |= TG3_FLAG_CHIP_RESETTING;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006854 for (i = 0; i < tp->irq_cnt; i++) {
6855 struct tg3_napi *tnapi = &tp->napi[i];
6856 if (tnapi->hw_status) {
6857 tnapi->hw_status->status = 0;
6858 tnapi->hw_status->status_tag = 0;
6859 }
6860 tnapi->last_tag = 0;
6861 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07006862 }
Michael Chand18edcb2007-03-24 20:57:11 -07006863 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00006864
6865 for (i = 0; i < tp->irq_cnt; i++)
6866 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07006867
Matt Carlson255ca312009-08-25 10:07:27 +00006868 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
6869 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
6870 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
6871 }
6872
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873 /* do the reset */
6874 val = GRC_MISC_CFG_CORECLK_RESET;
6875
6876 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
6877 if (tr32(0x7e2c) == 0x60) {
6878 tw32(0x7e2c, 0x20);
6879 }
6880 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
6881 tw32(GRC_MISC_CFG, (1 << 29));
6882 val |= (1 << 29);
6883 }
6884 }
6885
Michael Chanb5d37722006-09-27 16:06:21 -07006886 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
6887 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
6888 tw32(GRC_VCPU_EXT_CTRL,
6889 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
6890 }
6891
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
6893 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
6894 tw32(GRC_MISC_CFG, val);
6895
Michael Chan1ee582d2005-08-09 20:16:46 -07006896 /* restore 5701 hardware bug workaround write method */
6897 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898
6899 /* Unfortunately, we have to delay before the PCI read back.
6900 * Some 575X chips even will not respond to a PCI cfg access
6901 * when the reset command is given to the chip.
6902 *
6903 * How do these hardware designers expect things to work
6904 * properly if the PCI write is posted for a long period
6905 * of time? It is always necessary to have some method by
6906 * which a register read back can occur to push the write
6907 * out which does the reset.
6908 *
6909 * For most tg3 variants the trick below was working.
6910 * Ho hum...
6911 */
6912 udelay(120);
6913
6914 /* Flush PCI posted writes. The normal MMIO registers
6915 * are inaccessible at this time so this is the only
6916 * way to make this reliably (actually, this is no longer
6917 * the case, see above). I tried to use indirect
6918 * register read/write but this upset some 5701 variants.
6919 */
6920 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
6921
6922 udelay(120);
6923
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006924 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) && tp->pcie_cap) {
Matt Carlsone7126992009-08-25 10:08:16 +00006925 u16 val16;
6926
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
6928 int i;
6929 u32 cfg_val;
6930
6931 /* Wait for link training to complete. */
6932 for (i = 0; i < 5000; i++)
6933 udelay(100);
6934
6935 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
6936 pci_write_config_dword(tp->pdev, 0xc4,
6937 cfg_val | (1 << 15));
6938 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006939
Matt Carlsone7126992009-08-25 10:08:16 +00006940 /* Clear the "no snoop" and "relaxed ordering" bits. */
6941 pci_read_config_word(tp->pdev,
6942 tp->pcie_cap + PCI_EXP_DEVCTL,
6943 &val16);
6944 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
6945 PCI_EXP_DEVCTL_NOSNOOP_EN);
6946 /*
6947 * Older PCIe devices only support the 128 byte
6948 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006949 */
Matt Carlsone7126992009-08-25 10:08:16 +00006950 if (!(tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
6951 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784))
6952 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006953 pci_write_config_word(tp->pdev,
6954 tp->pcie_cap + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00006955 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08006956
6957 pcie_set_readrq(tp->pdev, 4096);
6958
6959 /* Clear error status */
6960 pci_write_config_word(tp->pdev,
6961 tp->pcie_cap + PCI_EXP_DEVSTA,
6962 PCI_EXP_DEVSTA_CED |
6963 PCI_EXP_DEVSTA_NFED |
6964 PCI_EXP_DEVSTA_FED |
6965 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966 }
6967
Michael Chanee6a99b2007-07-18 21:49:10 -07006968 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006969
Michael Chand18edcb2007-03-24 20:57:11 -07006970 tp->tg3_flags &= ~TG3_FLAG_CHIP_RESETTING;
6971
Michael Chanee6a99b2007-07-18 21:49:10 -07006972 val = 0;
6973 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chan4cf78e42005-07-25 12:29:19 -07006974 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07006975 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006976
6977 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
6978 tg3_stop_fw(tp);
6979 tw32(0x5000, 0x400);
6980 }
6981
6982 tw32(GRC_MODE, tp->grc_mode);
6983
6984 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01006985 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006986
6987 tw32(0xc4, val | (1 << 15));
6988 }
6989
6990 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
6991 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
6992 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
6993 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
6994 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
6995 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
6996 }
6997
6998 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
6999 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
7000 tw32_f(MAC_MODE, tp->mac_mode);
Michael Chan747e8f82005-07-25 12:33:22 -07007001 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
7002 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
7003 tw32_f(MAC_MODE, tp->mac_mode);
Matt Carlson3bda1252008-08-15 14:08:22 -07007004 } else if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
7005 tp->mac_mode &= (MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN);
7006 if (tp->mac_mode & MAC_MODE_APE_TX_EN)
7007 tp->mac_mode |= MAC_MODE_TDE_ENABLE;
7008 tw32_f(MAC_MODE, tp->mac_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009 } else
7010 tw32_f(MAC_MODE, 0);
7011 udelay(40);
7012
Matt Carlson77b483f2008-08-15 14:07:24 -07007013 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
7014
Michael Chan7a6f4362006-09-27 16:03:31 -07007015 err = tg3_poll_fw(tp);
7016 if (err)
7017 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018
Matt Carlson0a9140c2009-08-28 12:27:50 +00007019 tg3_mdio_start(tp);
7020
Matt Carlson52cdf852009-11-02 14:25:06 +00007021 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7022 u8 phy_addr;
7023
7024 phy_addr = tp->phy_addr;
7025 tp->phy_addr = TG3_PHY_PCIE_ADDR;
7026
7027 tg3_writephy(tp, TG3_PCIEPHY_BLOCK_ADDR,
7028 TG3_PCIEPHY_TXB_BLK << TG3_PCIEPHY_BLOCK_SHIFT);
7029 val = TG3_PCIEPHY_TX0CTRL1_TXOCM | TG3_PCIEPHY_TX0CTRL1_RDCTL |
7030 TG3_PCIEPHY_TX0CTRL1_TXCMV | TG3_PCIEPHY_TX0CTRL1_TKSEL |
7031 TG3_PCIEPHY_TX0CTRL1_NB_EN;
7032 tg3_writephy(tp, TG3_PCIEPHY_TX0CTRL1, val);
7033 udelay(10);
7034
7035 tg3_writephy(tp, TG3_PCIEPHY_BLOCK_ADDR,
7036 TG3_PCIEPHY_XGXS_BLK1 << TG3_PCIEPHY_BLOCK_SHIFT);
7037 val = TG3_PCIEPHY_PWRMGMT4_LOWPWR_EN |
7038 TG3_PCIEPHY_PWRMGMT4_L1PLLPD_EN;
7039 tg3_writephy(tp, TG3_PCIEPHY_PWRMGMT4, val);
7040 udelay(10);
7041
7042 tp->phy_addr = phy_addr;
7043 }
7044
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007046 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7047 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonb703df62009-12-03 08:36:21 +00007048 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
7049 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007050 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051
7052 tw32(0x7c00, val | (1 << 25));
7053 }
7054
7055 /* Reprobe ASF enable state. */
7056 tp->tg3_flags &= ~TG3_FLAG_ENABLE_ASF;
7057 tp->tg3_flags2 &= ~TG3_FLG2_ASF_NEW_HANDSHAKE;
7058 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7059 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7060 u32 nic_cfg;
7061
7062 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7063 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
7064 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
Matt Carlson4ba526c2008-08-15 14:10:04 -07007065 tp->last_event_jiffies = jiffies;
John W. Linvillecbf46852005-04-21 17:01:29 -07007066 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
7068 }
7069 }
7070
7071 return 0;
7072}
7073
7074/* tp->lock is held. */
7075static void tg3_stop_fw(struct tg3 *tp)
7076{
Matt Carlson0d3031d2007-10-10 18:02:43 -07007077 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
7078 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07007079 /* Wait for RX cpu to ACK the previous event. */
7080 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081
7082 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007083
7084 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085
Matt Carlson7c5026a2008-05-02 16:49:29 -07007086 /* Wait for RX cpu to ACK this event. */
7087 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088 }
7089}
7090
7091/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007092static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007093{
7094 int err;
7095
7096 tg3_stop_fw(tp);
7097
Michael Chan944d9802005-05-29 14:57:48 -07007098 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007100 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101 err = tg3_chip_reset(tp);
7102
Matt Carlsondaba2a62009-04-20 06:58:52 +00007103 __tg3_set_mac_addr(tp, 0);
7104
Michael Chan944d9802005-05-29 14:57:48 -07007105 tg3_write_sig_legacy(tp, kind);
7106 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107
7108 if (err)
7109 return err;
7110
7111 return 0;
7112}
7113
Linus Torvalds1da177e2005-04-16 15:20:36 -07007114#define RX_CPU_SCRATCH_BASE 0x30000
7115#define RX_CPU_SCRATCH_SIZE 0x04000
7116#define TX_CPU_SCRATCH_BASE 0x34000
7117#define TX_CPU_SCRATCH_SIZE 0x04000
7118
7119/* tp->lock is held. */
7120static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
7121{
7122 int i;
7123
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02007124 BUG_ON(offset == TX_CPU_BASE &&
7125 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007126
Michael Chanb5d37722006-09-27 16:06:21 -07007127 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7128 u32 val = tr32(GRC_VCPU_EXT_CTRL);
7129
7130 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
7131 return 0;
7132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133 if (offset == RX_CPU_BASE) {
7134 for (i = 0; i < 10000; i++) {
7135 tw32(offset + CPU_STATE, 0xffffffff);
7136 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7137 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7138 break;
7139 }
7140
7141 tw32(offset + CPU_STATE, 0xffffffff);
7142 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
7143 udelay(10);
7144 } else {
7145 for (i = 0; i < 10000; i++) {
7146 tw32(offset + CPU_STATE, 0xffffffff);
7147 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7148 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7149 break;
7150 }
7151 }
7152
7153 if (i >= 10000) {
7154 printk(KERN_ERR PFX "tg3_reset_cpu timed out for %s, "
7155 "and %s CPU\n",
7156 tp->dev->name,
7157 (offset == RX_CPU_BASE ? "RX" : "TX"));
7158 return -ENODEV;
7159 }
Michael Chanec41c7d2006-01-17 02:40:55 -08007160
7161 /* Clear firmware's nvram arbitration. */
7162 if (tp->tg3_flags & TG3_FLAG_NVRAM)
7163 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007164 return 0;
7165}
7166
7167struct fw_info {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007168 unsigned int fw_base;
7169 unsigned int fw_len;
7170 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007171};
7172
7173/* tp->lock is held. */
7174static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
7175 int cpu_scratch_size, struct fw_info *info)
7176{
Michael Chanec41c7d2006-01-17 02:40:55 -08007177 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007178 void (*write_op)(struct tg3 *, u32, u32);
7179
7180 if (cpu_base == TX_CPU_BASE &&
7181 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7182 printk(KERN_ERR PFX "tg3_load_firmware_cpu: Trying to load "
7183 "TX cpu firmware on %s which is 5705.\n",
7184 tp->dev->name);
7185 return -EINVAL;
7186 }
7187
7188 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
7189 write_op = tg3_write_mem;
7190 else
7191 write_op = tg3_write_indirect_reg32;
7192
Michael Chan1b628152005-05-29 14:59:49 -07007193 /* It is possible that bootcode is still loading at this point.
7194 * Get the nvram lock first before halting the cpu.
7195 */
Michael Chanec41c7d2006-01-17 02:40:55 -08007196 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08007198 if (!lock_err)
7199 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200 if (err)
7201 goto out;
7202
7203 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
7204 write_op(tp, cpu_scratch_base + i, 0);
7205 tw32(cpu_base + CPU_STATE, 0xffffffff);
7206 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007207 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208 write_op(tp, (cpu_scratch_base +
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007209 (info->fw_base & 0xffff) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210 (i * sizeof(u32))),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007211 be32_to_cpu(info->fw_data[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212
7213 err = 0;
7214
7215out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216 return err;
7217}
7218
7219/* tp->lock is held. */
7220static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
7221{
7222 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007223 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007224 int err, i;
7225
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007226 fw_data = (void *)tp->fw->data;
7227
7228 /* Firmware blob starts with version numbers, followed by
7229 start address and length. We are setting complete length.
7230 length = end_address_of_bss - start_address_of_text.
7231 Remainder is the blob to be loaded contiguously
7232 from start address. */
7233
7234 info.fw_base = be32_to_cpu(fw_data[1]);
7235 info.fw_len = tp->fw->size - 12;
7236 info.fw_data = &fw_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237
7238 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
7239 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
7240 &info);
7241 if (err)
7242 return err;
7243
7244 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
7245 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
7246 &info);
7247 if (err)
7248 return err;
7249
7250 /* Now startup only the RX cpu. */
7251 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007252 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007253
7254 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007255 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007256 break;
7257 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7258 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007259 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260 udelay(1000);
7261 }
7262 if (i >= 5) {
7263 printk(KERN_ERR PFX "tg3_load_firmware fails for %s "
7264 "to set RX CPU PC, is %08x should be %08x\n",
7265 tp->dev->name, tr32(RX_CPU_BASE + CPU_PC),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007266 info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007267 return -ENODEV;
7268 }
7269 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7270 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
7271
7272 return 0;
7273}
7274
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275/* 5705 needs a special version of the TSO firmware. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007276
7277/* tp->lock is held. */
7278static int tg3_load_tso_firmware(struct tg3 *tp)
7279{
7280 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007281 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
7283 int err, i;
7284
7285 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
7286 return 0;
7287
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007288 fw_data = (void *)tp->fw->data;
7289
7290 /* Firmware blob starts with version numbers, followed by
7291 start address and length. We are setting complete length.
7292 length = end_address_of_bss - start_address_of_text.
7293 Remainder is the blob to be loaded contiguously
7294 from start address. */
7295
7296 info.fw_base = be32_to_cpu(fw_data[1]);
7297 cpu_scratch_size = tp->fw_len;
7298 info.fw_len = tp->fw->size - 12;
7299 info.fw_data = &fw_data[3];
7300
Linus Torvalds1da177e2005-04-16 15:20:36 -07007301 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302 cpu_base = RX_CPU_BASE;
7303 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305 cpu_base = TX_CPU_BASE;
7306 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
7307 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
7308 }
7309
7310 err = tg3_load_firmware_cpu(tp, cpu_base,
7311 cpu_scratch_base, cpu_scratch_size,
7312 &info);
7313 if (err)
7314 return err;
7315
7316 /* Now startup the cpu. */
7317 tw32(cpu_base + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007318 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319
7320 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007321 if (tr32(cpu_base + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007322 break;
7323 tw32(cpu_base + CPU_STATE, 0xffffffff);
7324 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007325 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007326 udelay(1000);
7327 }
7328 if (i >= 5) {
7329 printk(KERN_ERR PFX "tg3_load_tso_firmware fails for %s "
7330 "to set CPU PC, is %08x should be %08x\n",
7331 tp->dev->name, tr32(cpu_base + CPU_PC),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007332 info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333 return -ENODEV;
7334 }
7335 tw32(cpu_base + CPU_STATE, 0xffffffff);
7336 tw32_f(cpu_base + CPU_MODE, 0x00000000);
7337 return 0;
7338}
7339
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341static int tg3_set_mac_addr(struct net_device *dev, void *p)
7342{
7343 struct tg3 *tp = netdev_priv(dev);
7344 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007345 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346
Michael Chanf9804dd2005-09-27 12:13:10 -07007347 if (!is_valid_ether_addr(addr->sa_data))
7348 return -EINVAL;
7349
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7351
Michael Chane75f7c92006-03-20 21:33:26 -08007352 if (!netif_running(dev))
7353 return 0;
7354
Michael Chan58712ef2006-04-29 18:58:01 -07007355 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007356 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007357
Michael Chan986e0ae2007-05-05 12:10:20 -07007358 addr0_high = tr32(MAC_ADDR_0_HIGH);
7359 addr0_low = tr32(MAC_ADDR_0_LOW);
7360 addr1_high = tr32(MAC_ADDR_1_HIGH);
7361 addr1_low = tr32(MAC_ADDR_1_LOW);
7362
7363 /* Skip MAC addr 1 if ASF is using it. */
7364 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7365 !(addr1_high == 0 && addr1_low == 0))
7366 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007367 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007368 spin_lock_bh(&tp->lock);
7369 __tg3_set_mac_addr(tp, skip_mac_1);
7370 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371
Michael Chanb9ec6c12006-07-25 16:37:27 -07007372 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373}
7374
7375/* tp->lock is held. */
7376static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7377 dma_addr_t mapping, u32 maxlen_flags,
7378 u32 nic_addr)
7379{
7380 tg3_write_mem(tp,
7381 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7382 ((u64) mapping >> 32));
7383 tg3_write_mem(tp,
7384 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7385 ((u64) mapping & 0xffffffff));
7386 tg3_write_mem(tp,
7387 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7388 maxlen_flags);
7389
7390 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7391 tg3_write_mem(tp,
7392 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7393 nic_addr);
7394}
7395
7396static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007397static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007398{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007399 int i;
7400
Matt Carlson19cfaec2009-12-03 08:36:20 +00007401 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007402 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7403 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7404 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007405 } else {
7406 tw32(HOSTCC_TXCOL_TICKS, 0);
7407 tw32(HOSTCC_TXMAX_FRAMES, 0);
7408 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007409 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007410
Matt Carlson19cfaec2009-12-03 08:36:20 +00007411 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSIX)) {
7412 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7413 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7414 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7415 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007416 tw32(HOSTCC_RXCOL_TICKS, 0);
7417 tw32(HOSTCC_RXMAX_FRAMES, 0);
7418 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07007419 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007420
David S. Miller15f98502005-05-18 22:49:26 -07007421 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7422 u32 val = ec->stats_block_coalesce_usecs;
7423
Matt Carlsonb6080e12009-09-01 13:12:00 +00007424 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
7425 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
7426
David S. Miller15f98502005-05-18 22:49:26 -07007427 if (!netif_carrier_ok(tp->dev))
7428 val = 0;
7429
7430 tw32(HOSTCC_STAT_COAL_TICKS, val);
7431 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007432
7433 for (i = 0; i < tp->irq_cnt - 1; i++) {
7434 u32 reg;
7435
7436 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
7437 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007438 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
7439 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007440 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
7441 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007442
7443 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS) {
7444 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
7445 tw32(reg, ec->tx_coalesce_usecs);
7446 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
7447 tw32(reg, ec->tx_max_coalesced_frames);
7448 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
7449 tw32(reg, ec->tx_max_coalesced_frames_irq);
7450 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007451 }
7452
7453 for (; i < tp->irq_max - 1; i++) {
7454 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007455 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007456 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007457
7458 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS) {
7459 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
7460 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
7461 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7462 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007463 }
David S. Miller15f98502005-05-18 22:49:26 -07007464}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465
7466/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00007467static void tg3_rings_reset(struct tg3 *tp)
7468{
7469 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007470 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007471 struct tg3_napi *tnapi = &tp->napi[0];
7472
7473 /* Disable all transmit rings but the first. */
7474 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7475 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007476 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
7477 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007478 else
7479 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7480
7481 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7482 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
7483 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
7484 BDINFO_FLAGS_DISABLED);
7485
7486
7487 /* Disable all receive return rings but the first. */
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007488 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
7489 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
7490 else if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007491 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007492 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7493 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson2d31eca2009-09-01 12:53:31 +00007494 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
7495 else
7496 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7497
7498 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7499 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
7500 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
7501 BDINFO_FLAGS_DISABLED);
7502
7503 /* Disable interrupts */
7504 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
7505
7506 /* Zero mailbox registers. */
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007507 if (tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX) {
7508 for (i = 1; i < TG3_IRQ_MAX_VECS; i++) {
7509 tp->napi[i].tx_prod = 0;
7510 tp->napi[i].tx_cons = 0;
Matt Carlsonc2353a32010-01-20 16:58:08 +00007511 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
7512 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007513 tw32_rx_mbox(tp->napi[i].consmbox, 0);
7514 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
7515 }
Matt Carlsonc2353a32010-01-20 16:58:08 +00007516 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS))
7517 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007518 } else {
7519 tp->napi[0].tx_prod = 0;
7520 tp->napi[0].tx_cons = 0;
7521 tw32_mailbox(tp->napi[0].prodmbox, 0);
7522 tw32_rx_mbox(tp->napi[0].consmbox, 0);
7523 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007524
7525 /* Make sure the NIC-based send BD rings are disabled. */
7526 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7527 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
7528 for (i = 0; i < 16; i++)
7529 tw32_tx_mbox(mbox + i * 8, 0);
7530 }
7531
7532 txrcb = NIC_SRAM_SEND_RCB;
7533 rxrcb = NIC_SRAM_RCV_RET_RCB;
7534
7535 /* Clear status block in ram. */
7536 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7537
7538 /* Set status block DMA address */
7539 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7540 ((u64) tnapi->status_mapping >> 32));
7541 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7542 ((u64) tnapi->status_mapping & 0xffffffff));
7543
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007544 if (tnapi->tx_ring) {
7545 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7546 (TG3_TX_RING_SIZE <<
7547 BDINFO_FLAGS_MAXLEN_SHIFT),
7548 NIC_SRAM_TX_BUFFER_DESC);
7549 txrcb += TG3_BDINFO_SIZE;
7550 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007551
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007552 if (tnapi->rx_rcb) {
7553 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
7554 (TG3_RX_RCB_RING_SIZE(tp) <<
7555 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7556 rxrcb += TG3_BDINFO_SIZE;
7557 }
7558
7559 stblk = HOSTCC_STATBLCK_RING1;
7560
7561 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
7562 u64 mapping = (u64)tnapi->status_mapping;
7563 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
7564 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
7565
7566 /* Clear status block in ram. */
7567 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7568
Matt Carlson19cfaec2009-12-03 08:36:20 +00007569 if (tnapi->tx_ring) {
7570 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7571 (TG3_TX_RING_SIZE <<
7572 BDINFO_FLAGS_MAXLEN_SHIFT),
7573 NIC_SRAM_TX_BUFFER_DESC);
7574 txrcb += TG3_BDINFO_SIZE;
7575 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007576
7577 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
7578 (TG3_RX_RCB_RING_SIZE(tp) <<
7579 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7580
7581 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007582 rxrcb += TG3_BDINFO_SIZE;
7583 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007584}
7585
7586/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007587static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007588{
7589 u32 val, rdmac_mode;
7590 int i, err, limit;
Matt Carlson21f581a2009-08-28 14:00:25 +00007591 struct tg3_rx_prodring_set *tpr = &tp->prodring[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007592
7593 tg3_disable_ints(tp);
7594
7595 tg3_stop_fw(tp);
7596
7597 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
7598
7599 if (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) {
Michael Chane6de8ad2005-05-05 14:42:41 -07007600 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007601 }
7602
Matt Carlson603f1172010-02-12 14:47:10 +00007603 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08007604 tg3_phy_reset(tp);
7605
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606 err = tg3_chip_reset(tp);
7607 if (err)
7608 return err;
7609
7610 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
7611
Matt Carlsonbcb37f62008-11-03 16:52:09 -08007612 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007613 val = tr32(TG3_CPMU_CTRL);
7614 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
7615 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08007616
7617 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
7618 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
7619 val |= CPMU_LSPD_10MB_MACCLK_6_25;
7620 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
7621
7622 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
7623 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
7624 val |= CPMU_LNK_AWARE_MACCLK_6_25;
7625 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
7626
7627 val = tr32(TG3_CPMU_HST_ACC);
7628 val &= ~CPMU_HST_ACC_MACCLK_MASK;
7629 val |= CPMU_HST_ACC_MACCLK_6_25;
7630 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07007631 }
7632
Matt Carlson33466d92009-04-20 06:57:41 +00007633 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7634 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
7635 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
7636 PCIE_PWR_MGMT_L1_THRESH_4MS;
7637 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00007638
7639 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
7640 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
7641
7642 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00007643
Matt Carlsonf40386c2009-11-02 14:24:02 +00007644 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7645 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00007646 }
7647
Matt Carlson614b0592010-01-20 16:58:02 +00007648 if (tp->tg3_flags3 & TG3_FLG3_L1PLLPD_EN) {
7649 u32 grc_mode = tr32(GRC_MODE);
7650
7651 /* Access the lower 1K of PL PCIE block registers. */
7652 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
7653 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
7654
7655 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
7656 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
7657 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
7658
7659 tw32(GRC_MODE, grc_mode);
7660 }
7661
Linus Torvalds1da177e2005-04-16 15:20:36 -07007662 /* This works around an issue with Athlon chipsets on
7663 * B3 tigon3 silicon. This bit has no effect on any
7664 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07007665 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666 */
Matt Carlson795d01c2007-10-07 23:28:17 -07007667 if (!(tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)) {
7668 if (!(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
7669 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
7670 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672
7673 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
7674 (tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
7675 val = tr32(TG3PCI_PCISTATE);
7676 val |= PCISTATE_RETRY_SAME_DMA;
7677 tw32(TG3PCI_PCISTATE, val);
7678 }
7679
Matt Carlson0d3031d2007-10-10 18:02:43 -07007680 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
7681 /* Allow reads and writes to the
7682 * APE register and memory space.
7683 */
7684 val = tr32(TG3PCI_PCISTATE);
7685 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
7686 PCISTATE_ALLOW_APE_SHMEM_WR;
7687 tw32(TG3PCI_PCISTATE, val);
7688 }
7689
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
7691 /* Enable some hw fixes. */
7692 val = tr32(TG3PCI_MSI_DATA);
7693 val |= (1 << 26) | (1 << 28) | (1 << 29);
7694 tw32(TG3PCI_MSI_DATA, val);
7695 }
7696
7697 /* Descriptor ring init may make accesses to the
7698 * NIC SRAM area to setup the TX descriptors, so we
7699 * can only do this after the hardware has been
7700 * successfully reset.
7701 */
Michael Chan32d8c572006-07-25 16:38:29 -07007702 err = tg3_init_rings(tp);
7703 if (err)
7704 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007705
Matt Carlsonb703df62009-12-03 08:36:21 +00007706 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
7707 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00007708 val = tr32(TG3PCI_DMA_RW_CTRL) &
7709 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
7710 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
7711 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
7712 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007713 /* This value is determined during the probe time DMA
7714 * engine test, tg3_test_dma.
7715 */
7716 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
7717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718
7719 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
7720 GRC_MODE_4X_NIC_SEND_RINGS |
7721 GRC_MODE_NO_TX_PHDR_CSUM |
7722 GRC_MODE_NO_RX_PHDR_CSUM);
7723 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07007724
7725 /* Pseudo-header checksum is done by hardware logic and not
7726 * the offload processers, so make the chip do the pseudo-
7727 * header checksums on receive. For transmit it is more
7728 * convenient to do the pseudo-header checksum in software
7729 * as Linux does that on transmit for us in all cases.
7730 */
7731 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732
7733 tw32(GRC_MODE,
7734 tp->grc_mode |
7735 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
7736
7737 /* Setup the timer prescalar register. Clock is always 66Mhz. */
7738 val = tr32(GRC_MISC_CFG);
7739 val &= ~0xff;
7740 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
7741 tw32(GRC_MISC_CFG, val);
7742
7743 /* Initialize MBUF/DESC pool. */
John W. Linvillecbf46852005-04-21 17:01:29 -07007744 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007745 /* Do nothing. */
7746 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
7747 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
7748 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
7749 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
7750 else
7751 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
7752 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
7753 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
7754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755 else if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
7756 int fw_len;
7757
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007758 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007759 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
7760 tw32(BUFMGR_MB_POOL_ADDR,
7761 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
7762 tw32(BUFMGR_MB_POOL_SIZE,
7763 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
7764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007765
Michael Chan0f893dc2005-07-25 12:30:38 -07007766 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767 tw32(BUFMGR_MB_RDMA_LOW_WATER,
7768 tp->bufmgr_config.mbuf_read_dma_low_water);
7769 tw32(BUFMGR_MB_MACRX_LOW_WATER,
7770 tp->bufmgr_config.mbuf_mac_rx_low_water);
7771 tw32(BUFMGR_MB_HIGH_WATER,
7772 tp->bufmgr_config.mbuf_high_water);
7773 } else {
7774 tw32(BUFMGR_MB_RDMA_LOW_WATER,
7775 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
7776 tw32(BUFMGR_MB_MACRX_LOW_WATER,
7777 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
7778 tw32(BUFMGR_MB_HIGH_WATER,
7779 tp->bufmgr_config.mbuf_high_water_jumbo);
7780 }
7781 tw32(BUFMGR_DMA_LOW_WATER,
7782 tp->bufmgr_config.dma_low_water);
7783 tw32(BUFMGR_DMA_HIGH_WATER,
7784 tp->bufmgr_config.dma_high_water);
7785
7786 tw32(BUFMGR_MODE, BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE);
7787 for (i = 0; i < 2000; i++) {
7788 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
7789 break;
7790 udelay(10);
7791 }
7792 if (i >= 2000) {
7793 printk(KERN_ERR PFX "tg3_reset_hw cannot enable BUFMGR for %s.\n",
7794 tp->dev->name);
7795 return -ENODEV;
7796 }
7797
7798 /* Setup replenish threshold. */
Michael Chanf92905d2006-06-29 20:14:29 -07007799 val = tp->rx_pending / 8;
7800 if (val == 0)
7801 val = 1;
7802 else if (val > tp->rx_std_max_post)
7803 val = tp->rx_std_max_post;
Michael Chanb5d37722006-09-27 16:06:21 -07007804 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7805 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
7806 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
7807
7808 if (val > (TG3_RX_INTERNAL_RING_SZ_5906 / 2))
7809 val = TG3_RX_INTERNAL_RING_SZ_5906 / 2;
7810 }
Michael Chanf92905d2006-06-29 20:14:29 -07007811
7812 tw32(RCVBDI_STD_THRESH, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813
7814 /* Initialize TG3_BDINFO's at:
7815 * RCVDBDI_STD_BD: standard eth size rx ring
7816 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
7817 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
7818 *
7819 * like so:
7820 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
7821 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
7822 * ring attribute flags
7823 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
7824 *
7825 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
7826 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
7827 *
7828 * The size of each ring is fixed in the firmware, but the location is
7829 * configurable.
7830 */
7831 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00007832 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007833 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00007834 ((u64) tpr->rx_std_mapping & 0xffffffff));
Matt Carlson13fa95b02010-01-12 10:11:36 +00007835 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
Matt Carlson87668d32009-11-13 13:03:34 +00007836 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
7837 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007838
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007839 /* Disable the mini ring */
7840 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007841 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
7842 BDINFO_FLAGS_DISABLED);
7843
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007844 /* Program the jumbo buffer descriptor ring control
7845 * blocks on those devices that have them.
7846 */
Matt Carlson8f666b02009-08-28 13:58:24 +00007847 if ((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) &&
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007848 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849 /* Setup replenish threshold. */
7850 tw32(RCVBDI_JUMBO_THRESH, tp->rx_jumbo_pending / 8);
7851
Michael Chan0f893dc2005-07-25 12:30:38 -07007852 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00007854 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00007856 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlson79ed5ac2009-08-28 14:00:55 +00007858 (RX_JUMBO_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT) |
7859 BDINFO_FLAGS_USE_EXT_RECV);
Matt Carlson5fd68fb2010-01-20 16:58:07 +00007860 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
Matt Carlson87668d32009-11-13 13:03:34 +00007861 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
7862 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863 } else {
7864 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
7865 BDINFO_FLAGS_DISABLED);
7866 }
7867
Matt Carlsonb703df62009-12-03 08:36:21 +00007868 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
7869 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007870 val = (RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT) |
7871 (RX_STD_MAX_SIZE << 2);
7872 else
7873 val = RX_STD_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00007874 } else
7875 val = RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT;
7876
7877 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007878
Matt Carlson411da642009-11-13 13:03:46 +00007879 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00007880 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881
Matt Carlson411da642009-11-13 13:03:46 +00007882 tpr->rx_jmb_prod_idx = (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) ?
Matt Carlson21f581a2009-08-28 14:00:25 +00007883 tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00007884 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885
Matt Carlsonb703df62009-12-03 08:36:21 +00007886 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
7887 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007888 tw32(STD_REPLENISH_LWM, 32);
7889 tw32(JMB_REPLENISH_LWM, 16);
7890 }
7891
Matt Carlson2d31eca2009-09-01 12:53:31 +00007892 tg3_rings_reset(tp);
7893
Linus Torvalds1da177e2005-04-16 15:20:36 -07007894 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07007895 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007896
7897 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00007898 tw32(MAC_RX_MTU_SIZE,
7899 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007900
7901 /* The slot time is changed by tg3_setup_phy if we
7902 * run at gigabit with half duplex.
7903 */
7904 tw32(MAC_TX_LENGTHS,
7905 (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
7906 (6 << TX_LENGTHS_IPG_SHIFT) |
7907 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
7908
7909 /* Receive rules. */
7910 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
7911 tw32(RCVLPC_CONFIG, 0x0181);
7912
7913 /* Calculate RDMAC_MODE setting early, we need it to determine
7914 * the RCVLPC_STATE_ENABLE mask.
7915 */
7916 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
7917 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
7918 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
7919 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
7920 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07007921
Matt Carlson0339e4e2010-02-12 14:47:09 +00007922 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
7923 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
7924
Matt Carlson57e69832008-05-25 23:48:31 -07007925 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08007926 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
7927 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07007928 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
7929 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
7930 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
7931
Michael Chan85e94ce2005-04-21 17:05:28 -07007932 /* If statement applies to 5705 and 5750 PCI devices only */
7933 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
7934 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
7935 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007936 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07007937 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007938 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
7939 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
7940 !(tp->tg3_flags2 & TG3_FLG2_IS_5788)) {
7941 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
7942 }
7943 }
7944
Michael Chan85e94ce2005-04-21 17:05:28 -07007945 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
7946 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
7947
Linus Torvalds1da177e2005-04-16 15:20:36 -07007948 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
Matt Carlson027455a2008-12-21 20:19:30 -08007949 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
7950
Matt Carlsone849cdc2009-11-13 13:03:38 +00007951 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
7952 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08007953 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
7954 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007955
7956 /* Receive/send statistics. */
Michael Chan16613942006-06-29 20:15:13 -07007957 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
7958 val = tr32(RCVLPC_STATS_ENABLE);
7959 val &= ~RCVLPC_STATSENAB_DACK_FIX;
7960 tw32(RCVLPC_STATS_ENABLE, val);
7961 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
7962 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007963 val = tr32(RCVLPC_STATS_ENABLE);
7964 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
7965 tw32(RCVLPC_STATS_ENABLE, val);
7966 } else {
7967 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
7968 }
7969 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
7970 tw32(SNDDATAI_STATSENAB, 0xffffff);
7971 tw32(SNDDATAI_STATSCTRL,
7972 (SNDDATAI_SCTRL_ENABLE |
7973 SNDDATAI_SCTRL_FASTUPD));
7974
7975 /* Setup host coalescing engine. */
7976 tw32(HOSTCC_MODE, 0);
7977 for (i = 0; i < 2000; i++) {
7978 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
7979 break;
7980 udelay(10);
7981 }
7982
Michael Chand244c892005-07-05 14:42:33 -07007983 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984
Linus Torvalds1da177e2005-04-16 15:20:36 -07007985 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7986 /* Status/statistics block address. See tg3_timer,
7987 * the tg3_periodic_fetch_stats call there, and
7988 * tg3_get_stats to see how this works for 5705/5750 chips.
7989 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007990 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7991 ((u64) tp->stats_mapping >> 32));
7992 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7993 ((u64) tp->stats_mapping & 0xffffffff));
7994 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00007995
Linus Torvalds1da177e2005-04-16 15:20:36 -07007996 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00007997
7998 /* Clear statistics and status block memory areas */
7999 for (i = NIC_SRAM_STATS_BLK;
8000 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
8001 i += sizeof(u32)) {
8002 tg3_write_mem(tp, i, 0);
8003 udelay(40);
8004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005 }
8006
8007 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
8008
8009 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
8010 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
8011 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
8012 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
8013
Michael Chanc94e3942005-09-27 12:12:42 -07008014 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
8015 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
8016 /* reset to prevent losing 1st rx packet intermittently */
8017 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8018 udelay(10);
8019 }
8020
Matt Carlson3bda1252008-08-15 14:08:22 -07008021 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
8022 tp->mac_mode &= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
8023 else
8024 tp->mac_mode = 0;
8025 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07008027 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
8028 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
8029 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8030 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8032 udelay(40);
8033
Michael Chan314fba32005-04-21 17:07:04 -07008034 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Michael Chan9d26e212006-12-07 00:21:14 -08008035 * If TG3_FLG2_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008036 * register to preserve the GPIO settings for LOMs. The GPIOs,
8037 * whether used as inputs or outputs, are set by boot code after
8038 * reset.
8039 */
Michael Chan9d26e212006-12-07 00:21:14 -08008040 if (!(tp->tg3_flags2 & TG3_FLG2_IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008041 u32 gpio_mask;
8042
Michael Chan9d26e212006-12-07 00:21:14 -08008043 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8044 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8045 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008046
8047 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8048 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8049 GRC_LCLCTRL_GPIO_OUTPUT3;
8050
Michael Chanaf36e6b2006-03-23 01:28:06 -08008051 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8052 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8053
Gary Zambranoaaf84462007-05-05 11:51:45 -07008054 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008055 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8056
8057 /* GPIO1 must be driven high for eeprom write protect */
Michael Chan9d26e212006-12-07 00:21:14 -08008058 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT)
8059 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8060 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008062 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8063 udelay(100);
8064
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008065 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX) {
8066 val = tr32(MSGINT_MODE);
8067 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
8068 tw32(MSGINT_MODE, val);
8069 }
8070
Linus Torvalds1da177e2005-04-16 15:20:36 -07008071 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
8072 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8073 udelay(40);
8074 }
8075
8076 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8077 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8078 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8079 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8080 WDMAC_MODE_LNGREAD_ENAB);
8081
Michael Chan85e94ce2005-04-21 17:05:28 -07008082 /* If statement applies to 5705 and 5750 PCI devices only */
8083 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8084 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
8085 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) {
Matt Carlson29ea0952009-08-25 10:07:54 +00008086 if ((tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8088 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8089 /* nothing */
8090 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
8091 !(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
8092 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
8093 val |= WDMAC_MODE_RX_ACCEL;
8094 }
8095 }
8096
Michael Chand9ab5ad2006-03-20 22:27:35 -08008097 /* Enable host coalescing bug fix */
Matt Carlson321d32a2008-11-21 17:22:19 -08008098 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Matt Carlsonf51f3562008-05-25 23:45:08 -07008099 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad2006-03-20 22:27:35 -08008100
Matt Carlson788a0352009-11-02 14:26:03 +00008101 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8102 val |= WDMAC_MODE_BURST_ALL_DATA;
8103
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104 tw32_f(WDMAC_MODE, val);
8105 udelay(40);
8106
Matt Carlson9974a352007-10-07 23:27:28 -07008107 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
8108 u16 pcix_cmd;
8109
8110 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8111 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008112 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008113 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8114 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008115 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008116 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8117 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008118 }
Matt Carlson9974a352007-10-07 23:27:28 -07008119 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8120 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008121 }
8122
8123 tw32_f(RDMAC_MODE, rdmac_mode);
8124 udelay(40);
8125
8126 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
8127 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
8128 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008129
8130 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8131 tw32(SNDDATAC_MODE,
8132 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8133 else
8134 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8135
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8137 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
8138 tw32(RCVDBDI_MODE, RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ);
8139 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008140 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
8141 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008142 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Matt Carlson19cfaec2009-12-03 08:36:20 +00008143 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008144 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8145 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008146 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8147
8148 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8149 err = tg3_load_5701_a0_firmware_fix(tp);
8150 if (err)
8151 return err;
8152 }
8153
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
8155 err = tg3_load_tso_firmware(tp);
8156 if (err)
8157 return err;
8158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008159
8160 tp->tx_mode = TX_MODE_ENABLE;
8161 tw32_f(MAC_TX_MODE, tp->tx_mode);
8162 udelay(100);
8163
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008164 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS) {
8165 u32 reg = MAC_RSS_INDIR_TBL_0;
8166 u8 *ent = (u8 *)&val;
8167
8168 /* Setup the indirection table */
8169 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8170 int idx = i % sizeof(val);
8171
8172 ent[idx] = i % (tp->irq_cnt - 1);
8173 if (idx == sizeof(val) - 1) {
8174 tw32(reg, val);
8175 reg += 4;
8176 }
8177 }
8178
8179 /* Setup the "secret" hash key. */
8180 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8181 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8182 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8183 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8184 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8185 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8186 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8187 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8188 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8189 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8190 }
8191
Linus Torvalds1da177e2005-04-16 15:20:36 -07008192 tp->rx_mode = RX_MODE_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08008193 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Michael Chanaf36e6b2006-03-23 01:28:06 -08008194 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8195
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008196 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_RSS)
8197 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8198 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8199 RX_MODE_RSS_IPV6_HASH_EN |
8200 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8201 RX_MODE_RSS_IPV4_HASH_EN |
8202 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8203
Linus Torvalds1da177e2005-04-16 15:20:36 -07008204 tw32_f(MAC_RX_MODE, tp->rx_mode);
8205 udelay(10);
8206
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207 tw32(MAC_LED_CTRL, tp->led_ctrl);
8208
8209 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Michael Chanc94e3942005-09-27 12:12:42 -07008210 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8212 udelay(10);
8213 }
8214 tw32_f(MAC_RX_MODE, tp->rx_mode);
8215 udelay(10);
8216
8217 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
8218 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
8219 !(tp->tg3_flags2 & TG3_FLG2_SERDES_PREEMPHASIS)) {
8220 /* Set drive transmission level to 1.2V */
8221 /* only if the signal pre-emphasis bit is not set */
8222 val = tr32(MAC_SERDES_CFG);
8223 val &= 0xfffff000;
8224 val |= 0x880;
8225 tw32(MAC_SERDES_CFG, val);
8226 }
8227 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8228 tw32(MAC_SERDES_CFG, 0x616000);
8229 }
8230
8231 /* Prevent chip from dropping frames when flow control
8232 * is enabled.
8233 */
Matt Carlson666bc832010-01-20 16:58:03 +00008234 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8235 val = 1;
8236 else
8237 val = 2;
8238 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008239
8240 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
8241 (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
8242 /* Use hardware link auto-negotiation */
8243 tp->tg3_flags2 |= TG3_FLG2_HW_AUTONEG;
8244 }
8245
Michael Chand4d2c552006-03-20 17:47:20 -08008246 if ((tp->tg3_flags2 & TG3_FLG2_MII_SERDES) &&
8247 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
8248 u32 tmp;
8249
8250 tmp = tr32(SERDES_RX_CTRL);
8251 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
8252 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
8253 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
8254 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8255 }
8256
Matt Carlsondd477002008-05-25 23:45:58 -07008257 if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
8258 if (tp->link_config.phy_is_low_power) {
8259 tp->link_config.phy_is_low_power = 0;
8260 tp->link_config.speed = tp->link_config.orig_speed;
8261 tp->link_config.duplex = tp->link_config.orig_duplex;
8262 tp->link_config.autoneg = tp->link_config.orig_autoneg;
8263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008264
Matt Carlsondd477002008-05-25 23:45:58 -07008265 err = tg3_setup_phy(tp, 0);
8266 if (err)
8267 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008268
Matt Carlsondd477002008-05-25 23:45:58 -07008269 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
Matt Carlson7f97a4b2009-08-25 10:10:03 +00008270 !(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07008271 u32 tmp;
8272
8273 /* Clear CRC stats. */
8274 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
8275 tg3_writephy(tp, MII_TG3_TEST1,
8276 tmp | MII_TG3_TEST1_CRC_EN);
8277 tg3_readphy(tp, 0x14, &tmp);
8278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279 }
8280 }
8281
8282 __tg3_set_rx_mode(tp->dev);
8283
8284 /* Initialize receive rules. */
8285 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
8286 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
8287 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
8288 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
8289
Michael Chan4cf78e42005-07-25 12:29:19 -07008290 if ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
Michael Chana4e2b342005-10-26 15:46:52 -07008291 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008292 limit = 8;
8293 else
8294 limit = 16;
8295 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
8296 limit -= 4;
8297 switch (limit) {
8298 case 16:
8299 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
8300 case 15:
8301 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
8302 case 14:
8303 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
8304 case 13:
8305 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
8306 case 12:
8307 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
8308 case 11:
8309 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
8310 case 10:
8311 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
8312 case 9:
8313 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
8314 case 8:
8315 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
8316 case 7:
8317 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
8318 case 6:
8319 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
8320 case 5:
8321 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
8322 case 4:
8323 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
8324 case 3:
8325 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
8326 case 2:
8327 case 1:
8328
8329 default:
8330 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008332
Matt Carlson9ce768e2007-10-11 19:49:11 -07008333 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
8334 /* Write our heartbeat update interval to APE. */
8335 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
8336 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07008337
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
8339
Linus Torvalds1da177e2005-04-16 15:20:36 -07008340 return 0;
8341}
8342
8343/* Called at device open time to get the chip ready for
8344 * packet processing. Invoked with tp->lock held.
8345 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008346static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008348 tg3_switch_clocks(tp);
8349
8350 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
8351
Matt Carlson2f751b62008-08-04 23:17:34 -07008352 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008353}
8354
8355#define TG3_STAT_ADD32(PSTAT, REG) \
8356do { u32 __val = tr32(REG); \
8357 (PSTAT)->low += __val; \
8358 if ((PSTAT)->low < __val) \
8359 (PSTAT)->high += 1; \
8360} while (0)
8361
8362static void tg3_periodic_fetch_stats(struct tg3 *tp)
8363{
8364 struct tg3_hw_stats *sp = tp->hw_stats;
8365
8366 if (!netif_carrier_ok(tp->dev))
8367 return;
8368
8369 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
8370 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
8371 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
8372 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
8373 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
8374 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
8375 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
8376 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
8377 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
8378 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
8379 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
8380 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
8381 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
8382
8383 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
8384 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
8385 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
8386 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
8387 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
8388 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
8389 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
8390 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
8391 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
8392 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
8393 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
8394 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
8395 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
8396 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07008397
8398 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
8399 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
8400 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008401}
8402
8403static void tg3_timer(unsigned long __opaque)
8404{
8405 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008406
Michael Chanf475f162006-03-27 23:20:14 -08008407 if (tp->irq_sync)
8408 goto restart_timer;
8409
David S. Millerf47c11e2005-06-24 20:18:35 -07008410 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008411
David S. Millerfac9b832005-05-18 22:46:34 -07008412 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
8413 /* All of this garbage is because when using non-tagged
8414 * IRQ status the mailbox/status_block protocol the chip
8415 * uses with the cpu is race prone.
8416 */
Matt Carlson898a56f2009-08-28 14:02:40 +00008417 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07008418 tw32(GRC_LOCAL_CTRL,
8419 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
8420 } else {
8421 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008422 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07008423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424
David S. Millerfac9b832005-05-18 22:46:34 -07008425 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
8426 tp->tg3_flags2 |= TG3_FLG2_RESTART_TIMER;
David S. Millerf47c11e2005-06-24 20:18:35 -07008427 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07008428 schedule_work(&tp->reset_task);
8429 return;
8430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431 }
8432
Linus Torvalds1da177e2005-04-16 15:20:36 -07008433 /* This part only runs once per second. */
8434 if (!--tp->timer_counter) {
David S. Millerfac9b832005-05-18 22:46:34 -07008435 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
8436 tg3_periodic_fetch_stats(tp);
8437
Linus Torvalds1da177e2005-04-16 15:20:36 -07008438 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
8439 u32 mac_stat;
8440 int phy_event;
8441
8442 mac_stat = tr32(MAC_STATUS);
8443
8444 phy_event = 0;
8445 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) {
8446 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
8447 phy_event = 1;
8448 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
8449 phy_event = 1;
8450
8451 if (phy_event)
8452 tg3_setup_phy(tp, 0);
8453 } else if (tp->tg3_flags & TG3_FLAG_POLL_SERDES) {
8454 u32 mac_stat = tr32(MAC_STATUS);
8455 int need_setup = 0;
8456
8457 if (netif_carrier_ok(tp->dev) &&
8458 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
8459 need_setup = 1;
8460 }
8461 if (! netif_carrier_ok(tp->dev) &&
8462 (mac_stat & (MAC_STATUS_PCS_SYNCED |
8463 MAC_STATUS_SIGNAL_DET))) {
8464 need_setup = 1;
8465 }
8466 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07008467 if (!tp->serdes_counter) {
8468 tw32_f(MAC_MODE,
8469 (tp->mac_mode &
8470 ~MAC_MODE_PORT_MODE_MASK));
8471 udelay(40);
8472 tw32_f(MAC_MODE, tp->mac_mode);
8473 udelay(40);
8474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008475 tg3_setup_phy(tp, 0);
8476 }
Michael Chan747e8f82005-07-25 12:33:22 -07008477 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
8478 tg3_serdes_parallel_detect(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479
8480 tp->timer_counter = tp->timer_multiplier;
8481 }
8482
Michael Chan130b8e42006-09-27 16:00:40 -07008483 /* Heartbeat is only sent once every 2 seconds.
8484 *
8485 * The heartbeat is to tell the ASF firmware that the host
8486 * driver is still alive. In the event that the OS crashes,
8487 * ASF needs to reset the hardware to free up the FIFO space
8488 * that may be filled with rx packets destined for the host.
8489 * If the FIFO is full, ASF will no longer function properly.
8490 *
8491 * Unintended resets have been reported on real time kernels
8492 * where the timer doesn't run on time. Netpoll will also have
8493 * same problem.
8494 *
8495 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
8496 * to check the ring condition when the heartbeat is expiring
8497 * before doing the reset. This will prevent most unintended
8498 * resets.
8499 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500 if (!--tp->asf_counter) {
Matt Carlsonbc7959b2008-08-15 14:08:55 -07008501 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
8502 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07008503 tg3_wait_for_event_ack(tp);
8504
Michael Chanbbadf502006-04-06 21:46:34 -07008505 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07008506 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07008507 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Michael Chan28fbef72005-10-26 15:48:35 -07008508 /* 5 seconds timeout */
Michael Chanbbadf502006-04-06 21:46:34 -07008509 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, 5);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008510
8511 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008512 }
8513 tp->asf_counter = tp->asf_multiplier;
8514 }
8515
David S. Millerf47c11e2005-06-24 20:18:35 -07008516 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008517
Michael Chanf475f162006-03-27 23:20:14 -08008518restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07008519 tp->timer.expires = jiffies + tp->timer_offset;
8520 add_timer(&tp->timer);
8521}
8522
Matt Carlson4f125f42009-09-01 12:55:02 +00008523static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08008524{
David Howells7d12e782006-10-05 14:55:46 +01008525 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008526 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00008527 char *name;
8528 struct tg3_napi *tnapi = &tp->napi[irq_num];
8529
8530 if (tp->irq_cnt == 1)
8531 name = tp->dev->name;
8532 else {
8533 name = &tnapi->irq_lbl[0];
8534 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
8535 name[IFNAMSIZ-1] = 0;
8536 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008537
Matt Carlson679563f2009-09-01 12:55:46 +00008538 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI_OR_MSIX) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08008539 fn = tg3_msi;
8540 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
8541 fn = tg3_msi_1shot;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07008542 flags = IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008543 } else {
8544 fn = tg3_interrupt;
8545 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
8546 fn = tg3_interrupt_tagged;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07008547 flags = IRQF_SHARED | IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008548 }
Matt Carlson4f125f42009-09-01 12:55:02 +00008549
8550 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008551}
8552
Michael Chan79381092005-04-21 17:13:59 -07008553static int tg3_test_interrupt(struct tg3 *tp)
8554{
Matt Carlson09943a12009-08-28 14:01:57 +00008555 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07008556 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07008557 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008558 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07008559
Michael Chand4bc3922005-05-29 14:59:20 -07008560 if (!netif_running(dev))
8561 return -ENODEV;
8562
Michael Chan79381092005-04-21 17:13:59 -07008563 tg3_disable_ints(tp);
8564
Matt Carlson4f125f42009-09-01 12:55:02 +00008565 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008566
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008567 /*
8568 * Turn off MSI one shot mode. Otherwise this test has no
8569 * observable way to know whether the interrupt was delivered.
8570 */
Matt Carlsonb703df62009-12-03 08:36:21 +00008571 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8572 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008573 (tp->tg3_flags2 & TG3_FLG2_USING_MSI)) {
8574 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
8575 tw32(MSGINT_MODE, val);
8576 }
8577
Matt Carlson4f125f42009-09-01 12:55:02 +00008578 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00008579 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008580 if (err)
8581 return err;
8582
Matt Carlson898a56f2009-08-28 14:02:40 +00008583 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07008584 tg3_enable_ints(tp);
8585
8586 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008587 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07008588
8589 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07008590 u32 int_mbox, misc_host_ctrl;
8591
Matt Carlson898a56f2009-08-28 14:02:40 +00008592 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07008593 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
8594
8595 if ((int_mbox != 0) ||
8596 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
8597 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07008598 break;
Michael Chanb16250e2006-09-27 16:10:14 -07008599 }
8600
Michael Chan79381092005-04-21 17:13:59 -07008601 msleep(10);
8602 }
8603
8604 tg3_disable_ints(tp);
8605
Matt Carlson4f125f42009-09-01 12:55:02 +00008606 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008607
Matt Carlson4f125f42009-09-01 12:55:02 +00008608 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07008609
8610 if (err)
8611 return err;
8612
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008613 if (intr_ok) {
8614 /* Reenable MSI one shot mode. */
Matt Carlsonb703df62009-12-03 08:36:21 +00008615 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8616 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008617 (tp->tg3_flags2 & TG3_FLG2_USING_MSI)) {
8618 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
8619 tw32(MSGINT_MODE, val);
8620 }
Michael Chan79381092005-04-21 17:13:59 -07008621 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008622 }
Michael Chan79381092005-04-21 17:13:59 -07008623
8624 return -EIO;
8625}
8626
8627/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
8628 * successfully restored
8629 */
8630static int tg3_test_msi(struct tg3 *tp)
8631{
Michael Chan79381092005-04-21 17:13:59 -07008632 int err;
8633 u16 pci_cmd;
8634
8635 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSI))
8636 return 0;
8637
8638 /* Turn off SERR reporting in case MSI terminates with Master
8639 * Abort.
8640 */
8641 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
8642 pci_write_config_word(tp->pdev, PCI_COMMAND,
8643 pci_cmd & ~PCI_COMMAND_SERR);
8644
8645 err = tg3_test_interrupt(tp);
8646
8647 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
8648
8649 if (!err)
8650 return 0;
8651
8652 /* other failures */
8653 if (err != -EIO)
8654 return err;
8655
8656 /* MSI test failed, go back to INTx mode */
8657 printk(KERN_WARNING PFX "%s: No interrupt was generated using MSI, "
8658 "switching to INTx mode. Please report this failure to "
8659 "the PCI maintainer and include system chipset information.\n",
8660 tp->dev->name);
8661
Matt Carlson4f125f42009-09-01 12:55:02 +00008662 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00008663
Michael Chan79381092005-04-21 17:13:59 -07008664 pci_disable_msi(tp->pdev);
8665
8666 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
8667
Matt Carlson4f125f42009-09-01 12:55:02 +00008668 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07008669 if (err)
8670 return err;
8671
8672 /* Need to reset the chip because the MSI cycle may have terminated
8673 * with Master Abort.
8674 */
David S. Millerf47c11e2005-06-24 20:18:35 -07008675 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07008676
Michael Chan944d9802005-05-29 14:57:48 -07008677 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008678 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07008679
David S. Millerf47c11e2005-06-24 20:18:35 -07008680 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07008681
8682 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00008683 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07008684
8685 return err;
8686}
8687
Matt Carlson9e9fd122009-01-19 16:57:45 -08008688static int tg3_request_firmware(struct tg3 *tp)
8689{
8690 const __be32 *fw_data;
8691
8692 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
8693 printk(KERN_ERR "%s: Failed to load firmware \"%s\"\n",
8694 tp->dev->name, tp->fw_needed);
8695 return -ENOENT;
8696 }
8697
8698 fw_data = (void *)tp->fw->data;
8699
8700 /* Firmware blob starts with version numbers, followed by
8701 * start address and _full_ length including BSS sections
8702 * (which must be longer than the actual data, of course
8703 */
8704
8705 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
8706 if (tp->fw_len < (tp->fw->size - 12)) {
8707 printk(KERN_ERR "%s: bogus length %d in \"%s\"\n",
8708 tp->dev->name, tp->fw_len, tp->fw_needed);
8709 release_firmware(tp->fw);
8710 tp->fw = NULL;
8711 return -EINVAL;
8712 }
8713
8714 /* We no longer need firmware; we have it. */
8715 tp->fw_needed = NULL;
8716 return 0;
8717}
8718
Matt Carlson679563f2009-09-01 12:55:46 +00008719static bool tg3_enable_msix(struct tg3 *tp)
8720{
8721 int i, rc, cpus = num_online_cpus();
8722 struct msix_entry msix_ent[tp->irq_max];
8723
8724 if (cpus == 1)
8725 /* Just fallback to the simpler MSI mode. */
8726 return false;
8727
8728 /*
8729 * We want as many rx rings enabled as there are cpus.
8730 * The first MSIX vector only deals with link interrupts, etc,
8731 * so we add one to the number of vectors we are requesting.
8732 */
8733 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
8734
8735 for (i = 0; i < tp->irq_max; i++) {
8736 msix_ent[i].entry = i;
8737 msix_ent[i].vector = 0;
8738 }
8739
8740 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
8741 if (rc != 0) {
8742 if (rc < TG3_RSS_MIN_NUM_MSIX_VECS)
8743 return false;
8744 if (pci_enable_msix(tp->pdev, msix_ent, rc))
8745 return false;
8746 printk(KERN_NOTICE
8747 "%s: Requested %d MSI-X vectors, received %d\n",
8748 tp->dev->name, tp->irq_cnt, rc);
8749 tp->irq_cnt = rc;
8750 }
8751
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008752 tp->tg3_flags3 |= TG3_FLG3_ENABLE_RSS;
8753
Matt Carlson679563f2009-09-01 12:55:46 +00008754 for (i = 0; i < tp->irq_max; i++)
8755 tp->napi[i].irq_vec = msix_ent[i].vector;
8756
Matt Carlson19cfaec2009-12-03 08:36:20 +00008757 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
8758 tp->tg3_flags3 |= TG3_FLG3_ENABLE_TSS;
8759 tp->dev->real_num_tx_queues = tp->irq_cnt - 1;
8760 } else
8761 tp->dev->real_num_tx_queues = 1;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008762
Matt Carlson679563f2009-09-01 12:55:46 +00008763 return true;
8764}
8765
Matt Carlson07b01732009-08-28 14:01:15 +00008766static void tg3_ints_init(struct tg3 *tp)
8767{
Matt Carlson679563f2009-09-01 12:55:46 +00008768 if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSI_OR_MSIX) &&
8769 !(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00008770 /* All MSI supporting chips should support tagged
8771 * status. Assert that this is the case.
8772 */
Matt Carlson679563f2009-09-01 12:55:46 +00008773 printk(KERN_WARNING PFX "%s: MSI without TAGGED? "
8774 "Not using MSI.\n", tp->dev->name);
8775 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00008776 }
Matt Carlson4f125f42009-09-01 12:55:02 +00008777
Matt Carlson679563f2009-09-01 12:55:46 +00008778 if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX) && tg3_enable_msix(tp))
8779 tp->tg3_flags2 |= TG3_FLG2_USING_MSIX;
8780 else if ((tp->tg3_flags & TG3_FLAG_SUPPORT_MSI) &&
8781 pci_enable_msi(tp->pdev) == 0)
8782 tp->tg3_flags2 |= TG3_FLG2_USING_MSI;
8783
8784 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI_OR_MSIX) {
8785 u32 msi_mode = tr32(MSGINT_MODE);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008786 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
8787 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson679563f2009-09-01 12:55:46 +00008788 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
8789 }
8790defcfg:
8791 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSIX)) {
8792 tp->irq_cnt = 1;
8793 tp->napi[0].irq_vec = tp->pdev->irq;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008794 tp->dev->real_num_tx_queues = 1;
Matt Carlson679563f2009-09-01 12:55:46 +00008795 }
Matt Carlson07b01732009-08-28 14:01:15 +00008796}
8797
8798static void tg3_ints_fini(struct tg3 *tp)
8799{
Matt Carlson679563f2009-09-01 12:55:46 +00008800 if (tp->tg3_flags2 & TG3_FLG2_USING_MSIX)
8801 pci_disable_msix(tp->pdev);
8802 else if (tp->tg3_flags2 & TG3_FLG2_USING_MSI)
8803 pci_disable_msi(tp->pdev);
8804 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI_OR_MSIX;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008805 tp->tg3_flags3 &= ~TG3_FLG3_ENABLE_RSS;
Matt Carlson07b01732009-08-28 14:01:15 +00008806}
8807
Linus Torvalds1da177e2005-04-16 15:20:36 -07008808static int tg3_open(struct net_device *dev)
8809{
8810 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00008811 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008812
Matt Carlson9e9fd122009-01-19 16:57:45 -08008813 if (tp->fw_needed) {
8814 err = tg3_request_firmware(tp);
8815 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8816 if (err)
8817 return err;
8818 } else if (err) {
8819 printk(KERN_WARNING "%s: TSO capability disabled.\n",
8820 tp->dev->name);
8821 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
8822 } else if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
8823 printk(KERN_NOTICE "%s: TSO capability restored.\n",
8824 tp->dev->name);
8825 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
8826 }
8827 }
8828
Michael Chanc49a1562006-12-17 17:07:29 -08008829 netif_carrier_off(tp->dev);
8830
Michael Chanbc1c7562006-03-20 17:48:03 -08008831 err = tg3_set_power_state(tp, PCI_D0);
Matt Carlson2f751b62008-08-04 23:17:34 -07008832 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08008833 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07008834
8835 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08008836
Linus Torvalds1da177e2005-04-16 15:20:36 -07008837 tg3_disable_ints(tp);
8838 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
8839
David S. Millerf47c11e2005-06-24 20:18:35 -07008840 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008841
Matt Carlson679563f2009-09-01 12:55:46 +00008842 /*
8843 * Setup interrupts first so we know how
8844 * many NAPI resources to allocate
8845 */
8846 tg3_ints_init(tp);
8847
Linus Torvalds1da177e2005-04-16 15:20:36 -07008848 /* The placement of this call is tied
8849 * to the setup and use of Host TX descriptors.
8850 */
8851 err = tg3_alloc_consistent(tp);
8852 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008853 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008854
Matt Carlsonfed97812009-09-01 13:10:19 +00008855 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07008856
Matt Carlson4f125f42009-09-01 12:55:02 +00008857 for (i = 0; i < tp->irq_cnt; i++) {
8858 struct tg3_napi *tnapi = &tp->napi[i];
8859 err = tg3_request_irq(tp, i);
8860 if (err) {
8861 for (i--; i >= 0; i--)
8862 free_irq(tnapi->irq_vec, tnapi);
8863 break;
8864 }
8865 }
Matt Carlson07b01732009-08-28 14:01:15 +00008866
8867 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008868 goto err_out2;
Matt Carlson07b01732009-08-28 14:01:15 +00008869
David S. Millerf47c11e2005-06-24 20:18:35 -07008870 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008871
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008872 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008873 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07008874 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008875 tg3_free_rings(tp);
8876 } else {
David S. Millerfac9b832005-05-18 22:46:34 -07008877 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
8878 tp->timer_offset = HZ;
8879 else
8880 tp->timer_offset = HZ / 10;
8881
8882 BUG_ON(tp->timer_offset > HZ);
8883 tp->timer_counter = tp->timer_multiplier =
8884 (HZ / tp->timer_offset);
8885 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07008886 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008887
8888 init_timer(&tp->timer);
8889 tp->timer.expires = jiffies + tp->timer_offset;
8890 tp->timer.data = (unsigned long) tp;
8891 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008892 }
8893
David S. Millerf47c11e2005-06-24 20:18:35 -07008894 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008895
Matt Carlson07b01732009-08-28 14:01:15 +00008896 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00008897 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008898
Michael Chan79381092005-04-21 17:13:59 -07008899 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
8900 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07008901
Michael Chan79381092005-04-21 17:13:59 -07008902 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07008903 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07008904 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07008905 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07008906 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07008907
Matt Carlson679563f2009-09-01 12:55:46 +00008908 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07008909 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008910
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008911 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
Matt Carlsonb703df62009-12-03 08:36:21 +00008912 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008913 (tp->tg3_flags2 & TG3_FLG2_USING_MSI) &&
8914 (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)) {
8915 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008916
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008917 tw32(PCIE_TRANSACTION_CFG,
8918 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008919 }
Michael Chan79381092005-04-21 17:13:59 -07008920 }
8921
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07008922 tg3_phy_start(tp);
8923
David S. Millerf47c11e2005-06-24 20:18:35 -07008924 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008925
Michael Chan79381092005-04-21 17:13:59 -07008926 add_timer(&tp->timer);
8927 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008928 tg3_enable_ints(tp);
8929
David S. Millerf47c11e2005-06-24 20:18:35 -07008930 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008931
Matt Carlsonfe5f5782009-09-01 13:09:39 +00008932 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008933
8934 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00008935
Matt Carlson679563f2009-09-01 12:55:46 +00008936err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00008937 for (i = tp->irq_cnt - 1; i >= 0; i--) {
8938 struct tg3_napi *tnapi = &tp->napi[i];
8939 free_irq(tnapi->irq_vec, tnapi);
8940 }
Matt Carlson07b01732009-08-28 14:01:15 +00008941
Matt Carlson679563f2009-09-01 12:55:46 +00008942err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00008943 tg3_napi_disable(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00008944 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00008945
8946err_out1:
8947 tg3_ints_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00008948 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008949}
8950
8951#if 0
8952/*static*/ void tg3_dump_state(struct tg3 *tp)
8953{
8954 u32 val32, val32_2, val32_3, val32_4, val32_5;
8955 u16 val16;
8956 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008957 struct tg3_hw_status *sblk = tp->napi[0]->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008958
8959 pci_read_config_word(tp->pdev, PCI_STATUS, &val16);
8960 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE, &val32);
8961 printk("DEBUG: PCI status [%04x] TG3PCI state[%08x]\n",
8962 val16, val32);
8963
8964 /* MAC block */
8965 printk("DEBUG: MAC_MODE[%08x] MAC_STATUS[%08x]\n",
8966 tr32(MAC_MODE), tr32(MAC_STATUS));
8967 printk(" MAC_EVENT[%08x] MAC_LED_CTRL[%08x]\n",
8968 tr32(MAC_EVENT), tr32(MAC_LED_CTRL));
8969 printk("DEBUG: MAC_TX_MODE[%08x] MAC_TX_STATUS[%08x]\n",
8970 tr32(MAC_TX_MODE), tr32(MAC_TX_STATUS));
8971 printk(" MAC_RX_MODE[%08x] MAC_RX_STATUS[%08x]\n",
8972 tr32(MAC_RX_MODE), tr32(MAC_RX_STATUS));
8973
8974 /* Send data initiator control block */
8975 printk("DEBUG: SNDDATAI_MODE[%08x] SNDDATAI_STATUS[%08x]\n",
8976 tr32(SNDDATAI_MODE), tr32(SNDDATAI_STATUS));
8977 printk(" SNDDATAI_STATSCTRL[%08x]\n",
8978 tr32(SNDDATAI_STATSCTRL));
8979
8980 /* Send data completion control block */
8981 printk("DEBUG: SNDDATAC_MODE[%08x]\n", tr32(SNDDATAC_MODE));
8982
8983 /* Send BD ring selector block */
8984 printk("DEBUG: SNDBDS_MODE[%08x] SNDBDS_STATUS[%08x]\n",
8985 tr32(SNDBDS_MODE), tr32(SNDBDS_STATUS));
8986
8987 /* Send BD initiator control block */
8988 printk("DEBUG: SNDBDI_MODE[%08x] SNDBDI_STATUS[%08x]\n",
8989 tr32(SNDBDI_MODE), tr32(SNDBDI_STATUS));
8990
8991 /* Send BD completion control block */
8992 printk("DEBUG: SNDBDC_MODE[%08x]\n", tr32(SNDBDC_MODE));
8993
8994 /* Receive list placement control block */
8995 printk("DEBUG: RCVLPC_MODE[%08x] RCVLPC_STATUS[%08x]\n",
8996 tr32(RCVLPC_MODE), tr32(RCVLPC_STATUS));
8997 printk(" RCVLPC_STATSCTRL[%08x]\n",
8998 tr32(RCVLPC_STATSCTRL));
8999
9000 /* Receive data and receive BD initiator control block */
9001 printk("DEBUG: RCVDBDI_MODE[%08x] RCVDBDI_STATUS[%08x]\n",
9002 tr32(RCVDBDI_MODE), tr32(RCVDBDI_STATUS));
9003
9004 /* Receive data completion control block */
9005 printk("DEBUG: RCVDCC_MODE[%08x]\n",
9006 tr32(RCVDCC_MODE));
9007
9008 /* Receive BD initiator control block */
9009 printk("DEBUG: RCVBDI_MODE[%08x] RCVBDI_STATUS[%08x]\n",
9010 tr32(RCVBDI_MODE), tr32(RCVBDI_STATUS));
9011
9012 /* Receive BD completion control block */
9013 printk("DEBUG: RCVCC_MODE[%08x] RCVCC_STATUS[%08x]\n",
9014 tr32(RCVCC_MODE), tr32(RCVCC_STATUS));
9015
9016 /* Receive list selector control block */
9017 printk("DEBUG: RCVLSC_MODE[%08x] RCVLSC_STATUS[%08x]\n",
9018 tr32(RCVLSC_MODE), tr32(RCVLSC_STATUS));
9019
9020 /* Mbuf cluster free block */
9021 printk("DEBUG: MBFREE_MODE[%08x] MBFREE_STATUS[%08x]\n",
9022 tr32(MBFREE_MODE), tr32(MBFREE_STATUS));
9023
9024 /* Host coalescing control block */
9025 printk("DEBUG: HOSTCC_MODE[%08x] HOSTCC_STATUS[%08x]\n",
9026 tr32(HOSTCC_MODE), tr32(HOSTCC_STATUS));
9027 printk("DEBUG: HOSTCC_STATS_BLK_HOST_ADDR[%08x%08x]\n",
9028 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
9029 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
9030 printk("DEBUG: HOSTCC_STATUS_BLK_HOST_ADDR[%08x%08x]\n",
9031 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
9032 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
9033 printk("DEBUG: HOSTCC_STATS_BLK_NIC_ADDR[%08x]\n",
9034 tr32(HOSTCC_STATS_BLK_NIC_ADDR));
9035 printk("DEBUG: HOSTCC_STATUS_BLK_NIC_ADDR[%08x]\n",
9036 tr32(HOSTCC_STATUS_BLK_NIC_ADDR));
9037
9038 /* Memory arbiter control block */
9039 printk("DEBUG: MEMARB_MODE[%08x] MEMARB_STATUS[%08x]\n",
9040 tr32(MEMARB_MODE), tr32(MEMARB_STATUS));
9041
9042 /* Buffer manager control block */
9043 printk("DEBUG: BUFMGR_MODE[%08x] BUFMGR_STATUS[%08x]\n",
9044 tr32(BUFMGR_MODE), tr32(BUFMGR_STATUS));
9045 printk("DEBUG: BUFMGR_MB_POOL_ADDR[%08x] BUFMGR_MB_POOL_SIZE[%08x]\n",
9046 tr32(BUFMGR_MB_POOL_ADDR), tr32(BUFMGR_MB_POOL_SIZE));
9047 printk("DEBUG: BUFMGR_DMA_DESC_POOL_ADDR[%08x] "
9048 "BUFMGR_DMA_DESC_POOL_SIZE[%08x]\n",
9049 tr32(BUFMGR_DMA_DESC_POOL_ADDR),
9050 tr32(BUFMGR_DMA_DESC_POOL_SIZE));
9051
9052 /* Read DMA control block */
9053 printk("DEBUG: RDMAC_MODE[%08x] RDMAC_STATUS[%08x]\n",
9054 tr32(RDMAC_MODE), tr32(RDMAC_STATUS));
9055
9056 /* Write DMA control block */
9057 printk("DEBUG: WDMAC_MODE[%08x] WDMAC_STATUS[%08x]\n",
9058 tr32(WDMAC_MODE), tr32(WDMAC_STATUS));
9059
9060 /* DMA completion block */
9061 printk("DEBUG: DMAC_MODE[%08x]\n",
9062 tr32(DMAC_MODE));
9063
9064 /* GRC block */
9065 printk("DEBUG: GRC_MODE[%08x] GRC_MISC_CFG[%08x]\n",
9066 tr32(GRC_MODE), tr32(GRC_MISC_CFG));
9067 printk("DEBUG: GRC_LOCAL_CTRL[%08x]\n",
9068 tr32(GRC_LOCAL_CTRL));
9069
9070 /* TG3_BDINFOs */
9071 printk("DEBUG: RCVDBDI_JUMBO_BD[%08x%08x:%08x:%08x]\n",
9072 tr32(RCVDBDI_JUMBO_BD + 0x0),
9073 tr32(RCVDBDI_JUMBO_BD + 0x4),
9074 tr32(RCVDBDI_JUMBO_BD + 0x8),
9075 tr32(RCVDBDI_JUMBO_BD + 0xc));
9076 printk("DEBUG: RCVDBDI_STD_BD[%08x%08x:%08x:%08x]\n",
9077 tr32(RCVDBDI_STD_BD + 0x0),
9078 tr32(RCVDBDI_STD_BD + 0x4),
9079 tr32(RCVDBDI_STD_BD + 0x8),
9080 tr32(RCVDBDI_STD_BD + 0xc));
9081 printk("DEBUG: RCVDBDI_MINI_BD[%08x%08x:%08x:%08x]\n",
9082 tr32(RCVDBDI_MINI_BD + 0x0),
9083 tr32(RCVDBDI_MINI_BD + 0x4),
9084 tr32(RCVDBDI_MINI_BD + 0x8),
9085 tr32(RCVDBDI_MINI_BD + 0xc));
9086
9087 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x0, &val32);
9088 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x4, &val32_2);
9089 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x8, &val32_3);
9090 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0xc, &val32_4);
9091 printk("DEBUG: SRAM_SEND_RCB_0[%08x%08x:%08x:%08x]\n",
9092 val32, val32_2, val32_3, val32_4);
9093
9094 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x0, &val32);
9095 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x4, &val32_2);
9096 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x8, &val32_3);
9097 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0xc, &val32_4);
9098 printk("DEBUG: SRAM_RCV_RET_RCB_0[%08x%08x:%08x:%08x]\n",
9099 val32, val32_2, val32_3, val32_4);
9100
9101 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x0, &val32);
9102 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x4, &val32_2);
9103 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x8, &val32_3);
9104 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0xc, &val32_4);
9105 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x10, &val32_5);
9106 printk("DEBUG: SRAM_STATUS_BLK[%08x:%08x:%08x:%08x:%08x]\n",
9107 val32, val32_2, val32_3, val32_4, val32_5);
9108
9109 /* SW status block */
Matt Carlson898a56f2009-08-28 14:02:40 +00009110 printk(KERN_DEBUG
9111 "Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
9112 sblk->status,
9113 sblk->status_tag,
9114 sblk->rx_jumbo_consumer,
9115 sblk->rx_consumer,
9116 sblk->rx_mini_consumer,
9117 sblk->idx[0].rx_producer,
9118 sblk->idx[0].tx_consumer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009119
9120 /* SW statistics block */
9121 printk("DEBUG: Host statistics block [%08x:%08x:%08x:%08x]\n",
9122 ((u32 *)tp->hw_stats)[0],
9123 ((u32 *)tp->hw_stats)[1],
9124 ((u32 *)tp->hw_stats)[2],
9125 ((u32 *)tp->hw_stats)[3]);
9126
9127 /* Mailboxes */
9128 printk("DEBUG: SNDHOST_PROD[%08x%08x] SNDNIC_PROD[%08x%08x]\n",
Michael Chan09ee9292005-08-09 20:17:00 -07009129 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x0),
9130 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x4),
9131 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x0),
9132 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x4));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009133
9134 /* NIC side send descriptors. */
9135 for (i = 0; i < 6; i++) {
9136 unsigned long txd;
9137
9138 txd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_TX_BUFFER_DESC
9139 + (i * sizeof(struct tg3_tx_buffer_desc));
9140 printk("DEBUG: NIC TXD(%d)[%08x:%08x:%08x:%08x]\n",
9141 i,
9142 readl(txd + 0x0), readl(txd + 0x4),
9143 readl(txd + 0x8), readl(txd + 0xc));
9144 }
9145
9146 /* NIC side RX descriptors. */
9147 for (i = 0; i < 6; i++) {
9148 unsigned long rxd;
9149
9150 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_BUFFER_DESC
9151 + (i * sizeof(struct tg3_rx_buffer_desc));
9152 printk("DEBUG: NIC RXD_STD(%d)[0][%08x:%08x:%08x:%08x]\n",
9153 i,
9154 readl(rxd + 0x0), readl(rxd + 0x4),
9155 readl(rxd + 0x8), readl(rxd + 0xc));
9156 rxd += (4 * sizeof(u32));
9157 printk("DEBUG: NIC RXD_STD(%d)[1][%08x:%08x:%08x:%08x]\n",
9158 i,
9159 readl(rxd + 0x0), readl(rxd + 0x4),
9160 readl(rxd + 0x8), readl(rxd + 0xc));
9161 }
9162
9163 for (i = 0; i < 6; i++) {
9164 unsigned long rxd;
9165
9166 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_JUMBO_BUFFER_DESC
9167 + (i * sizeof(struct tg3_rx_buffer_desc));
9168 printk("DEBUG: NIC RXD_JUMBO(%d)[0][%08x:%08x:%08x:%08x]\n",
9169 i,
9170 readl(rxd + 0x0), readl(rxd + 0x4),
9171 readl(rxd + 0x8), readl(rxd + 0xc));
9172 rxd += (4 * sizeof(u32));
9173 printk("DEBUG: NIC RXD_JUMBO(%d)[1][%08x:%08x:%08x:%08x]\n",
9174 i,
9175 readl(rxd + 0x0), readl(rxd + 0x4),
9176 readl(rxd + 0x8), readl(rxd + 0xc));
9177 }
9178}
9179#endif
9180
9181static struct net_device_stats *tg3_get_stats(struct net_device *);
9182static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
9183
9184static int tg3_close(struct net_device *dev)
9185{
Matt Carlson4f125f42009-09-01 12:55:02 +00009186 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009187 struct tg3 *tp = netdev_priv(dev);
9188
Matt Carlsonfed97812009-09-01 13:10:19 +00009189 tg3_napi_disable(tp);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07009190 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08009191
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009192 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009193
9194 del_timer_sync(&tp->timer);
9195
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009196 tg3_phy_stop(tp);
9197
David S. Millerf47c11e2005-06-24 20:18:35 -07009198 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009199#if 0
9200 tg3_dump_state(tp);
9201#endif
9202
9203 tg3_disable_ints(tp);
9204
Michael Chan944d9802005-05-29 14:57:48 -07009205 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009206 tg3_free_rings(tp);
Michael Chan5cf64b8a2007-05-05 12:11:21 -07009207 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009208
David S. Millerf47c11e2005-06-24 20:18:35 -07009209 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009210
Matt Carlson4f125f42009-09-01 12:55:02 +00009211 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9212 struct tg3_napi *tnapi = &tp->napi[i];
9213 free_irq(tnapi->irq_vec, tnapi);
9214 }
Matt Carlson07b01732009-08-28 14:01:15 +00009215
9216 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009217
9218 memcpy(&tp->net_stats_prev, tg3_get_stats(tp->dev),
9219 sizeof(tp->net_stats_prev));
9220 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9221 sizeof(tp->estats_prev));
9222
9223 tg3_free_consistent(tp);
9224
Michael Chanbc1c7562006-03-20 17:48:03 -08009225 tg3_set_power_state(tp, PCI_D3hot);
9226
9227 netif_carrier_off(tp->dev);
9228
Linus Torvalds1da177e2005-04-16 15:20:36 -07009229 return 0;
9230}
9231
9232static inline unsigned long get_stat64(tg3_stat64_t *val)
9233{
9234 unsigned long ret;
9235
9236#if (BITS_PER_LONG == 32)
9237 ret = val->low;
9238#else
9239 ret = ((u64)val->high << 32) | ((u64)val->low);
9240#endif
9241 return ret;
9242}
9243
Stefan Buehler816f8b82008-08-15 14:10:54 -07009244static inline u64 get_estat64(tg3_stat64_t *val)
9245{
9246 return ((u64)val->high << 32) | ((u64)val->low);
9247}
9248
Linus Torvalds1da177e2005-04-16 15:20:36 -07009249static unsigned long calc_crc_errors(struct tg3 *tp)
9250{
9251 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9252
9253 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
9254 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9255 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009256 u32 val;
9257
David S. Millerf47c11e2005-06-24 20:18:35 -07009258 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009259 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9260 tg3_writephy(tp, MII_TG3_TEST1,
9261 val | MII_TG3_TEST1_CRC_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009262 tg3_readphy(tp, 0x14, &val);
9263 } else
9264 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009265 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009266
9267 tp->phy_crc_errors += val;
9268
9269 return tp->phy_crc_errors;
9270 }
9271
9272 return get_stat64(&hw_stats->rx_fcs_errors);
9273}
9274
9275#define ESTAT_ADD(member) \
9276 estats->member = old_estats->member + \
Stefan Buehler816f8b82008-08-15 14:10:54 -07009277 get_estat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009278
9279static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9280{
9281 struct tg3_ethtool_stats *estats = &tp->estats;
9282 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9283 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9284
9285 if (!hw_stats)
9286 return old_estats;
9287
9288 ESTAT_ADD(rx_octets);
9289 ESTAT_ADD(rx_fragments);
9290 ESTAT_ADD(rx_ucast_packets);
9291 ESTAT_ADD(rx_mcast_packets);
9292 ESTAT_ADD(rx_bcast_packets);
9293 ESTAT_ADD(rx_fcs_errors);
9294 ESTAT_ADD(rx_align_errors);
9295 ESTAT_ADD(rx_xon_pause_rcvd);
9296 ESTAT_ADD(rx_xoff_pause_rcvd);
9297 ESTAT_ADD(rx_mac_ctrl_rcvd);
9298 ESTAT_ADD(rx_xoff_entered);
9299 ESTAT_ADD(rx_frame_too_long_errors);
9300 ESTAT_ADD(rx_jabbers);
9301 ESTAT_ADD(rx_undersize_packets);
9302 ESTAT_ADD(rx_in_length_errors);
9303 ESTAT_ADD(rx_out_length_errors);
9304 ESTAT_ADD(rx_64_or_less_octet_packets);
9305 ESTAT_ADD(rx_65_to_127_octet_packets);
9306 ESTAT_ADD(rx_128_to_255_octet_packets);
9307 ESTAT_ADD(rx_256_to_511_octet_packets);
9308 ESTAT_ADD(rx_512_to_1023_octet_packets);
9309 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9310 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9311 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9312 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9313 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9314
9315 ESTAT_ADD(tx_octets);
9316 ESTAT_ADD(tx_collisions);
9317 ESTAT_ADD(tx_xon_sent);
9318 ESTAT_ADD(tx_xoff_sent);
9319 ESTAT_ADD(tx_flow_control);
9320 ESTAT_ADD(tx_mac_errors);
9321 ESTAT_ADD(tx_single_collisions);
9322 ESTAT_ADD(tx_mult_collisions);
9323 ESTAT_ADD(tx_deferred);
9324 ESTAT_ADD(tx_excessive_collisions);
9325 ESTAT_ADD(tx_late_collisions);
9326 ESTAT_ADD(tx_collide_2times);
9327 ESTAT_ADD(tx_collide_3times);
9328 ESTAT_ADD(tx_collide_4times);
9329 ESTAT_ADD(tx_collide_5times);
9330 ESTAT_ADD(tx_collide_6times);
9331 ESTAT_ADD(tx_collide_7times);
9332 ESTAT_ADD(tx_collide_8times);
9333 ESTAT_ADD(tx_collide_9times);
9334 ESTAT_ADD(tx_collide_10times);
9335 ESTAT_ADD(tx_collide_11times);
9336 ESTAT_ADD(tx_collide_12times);
9337 ESTAT_ADD(tx_collide_13times);
9338 ESTAT_ADD(tx_collide_14times);
9339 ESTAT_ADD(tx_collide_15times);
9340 ESTAT_ADD(tx_ucast_packets);
9341 ESTAT_ADD(tx_mcast_packets);
9342 ESTAT_ADD(tx_bcast_packets);
9343 ESTAT_ADD(tx_carrier_sense_errors);
9344 ESTAT_ADD(tx_discards);
9345 ESTAT_ADD(tx_errors);
9346
9347 ESTAT_ADD(dma_writeq_full);
9348 ESTAT_ADD(dma_write_prioq_full);
9349 ESTAT_ADD(rxbds_empty);
9350 ESTAT_ADD(rx_discards);
9351 ESTAT_ADD(rx_errors);
9352 ESTAT_ADD(rx_threshold_hit);
9353
9354 ESTAT_ADD(dma_readq_full);
9355 ESTAT_ADD(dma_read_prioq_full);
9356 ESTAT_ADD(tx_comp_queue_full);
9357
9358 ESTAT_ADD(ring_set_send_prod_index);
9359 ESTAT_ADD(ring_status_update);
9360 ESTAT_ADD(nic_irqs);
9361 ESTAT_ADD(nic_avoided_irqs);
9362 ESTAT_ADD(nic_tx_threshold_hit);
9363
9364 return estats;
9365}
9366
9367static struct net_device_stats *tg3_get_stats(struct net_device *dev)
9368{
9369 struct tg3 *tp = netdev_priv(dev);
9370 struct net_device_stats *stats = &tp->net_stats;
9371 struct net_device_stats *old_stats = &tp->net_stats_prev;
9372 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9373
9374 if (!hw_stats)
9375 return old_stats;
9376
9377 stats->rx_packets = old_stats->rx_packets +
9378 get_stat64(&hw_stats->rx_ucast_packets) +
9379 get_stat64(&hw_stats->rx_mcast_packets) +
9380 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009381
Linus Torvalds1da177e2005-04-16 15:20:36 -07009382 stats->tx_packets = old_stats->tx_packets +
9383 get_stat64(&hw_stats->tx_ucast_packets) +
9384 get_stat64(&hw_stats->tx_mcast_packets) +
9385 get_stat64(&hw_stats->tx_bcast_packets);
9386
9387 stats->rx_bytes = old_stats->rx_bytes +
9388 get_stat64(&hw_stats->rx_octets);
9389 stats->tx_bytes = old_stats->tx_bytes +
9390 get_stat64(&hw_stats->tx_octets);
9391
9392 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009393 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009394 stats->tx_errors = old_stats->tx_errors +
9395 get_stat64(&hw_stats->tx_errors) +
9396 get_stat64(&hw_stats->tx_mac_errors) +
9397 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9398 get_stat64(&hw_stats->tx_discards);
9399
9400 stats->multicast = old_stats->multicast +
9401 get_stat64(&hw_stats->rx_mcast_packets);
9402 stats->collisions = old_stats->collisions +
9403 get_stat64(&hw_stats->tx_collisions);
9404
9405 stats->rx_length_errors = old_stats->rx_length_errors +
9406 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9407 get_stat64(&hw_stats->rx_undersize_packets);
9408
9409 stats->rx_over_errors = old_stats->rx_over_errors +
9410 get_stat64(&hw_stats->rxbds_empty);
9411 stats->rx_frame_errors = old_stats->rx_frame_errors +
9412 get_stat64(&hw_stats->rx_align_errors);
9413 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
9414 get_stat64(&hw_stats->tx_discards);
9415 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
9416 get_stat64(&hw_stats->tx_carrier_sense_errors);
9417
9418 stats->rx_crc_errors = old_stats->rx_crc_errors +
9419 calc_crc_errors(tp);
9420
John W. Linville4f63b872005-09-12 14:43:18 -07009421 stats->rx_missed_errors = old_stats->rx_missed_errors +
9422 get_stat64(&hw_stats->rx_discards);
9423
Linus Torvalds1da177e2005-04-16 15:20:36 -07009424 return stats;
9425}
9426
9427static inline u32 calc_crc(unsigned char *buf, int len)
9428{
9429 u32 reg;
9430 u32 tmp;
9431 int j, k;
9432
9433 reg = 0xffffffff;
9434
9435 for (j = 0; j < len; j++) {
9436 reg ^= buf[j];
9437
9438 for (k = 0; k < 8; k++) {
9439 tmp = reg & 0x01;
9440
9441 reg >>= 1;
9442
9443 if (tmp) {
9444 reg ^= 0xedb88320;
9445 }
9446 }
9447 }
9448
9449 return ~reg;
9450}
9451
9452static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9453{
9454 /* accept or reject all multicast frames */
9455 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9456 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9457 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9458 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9459}
9460
9461static void __tg3_set_rx_mode(struct net_device *dev)
9462{
9463 struct tg3 *tp = netdev_priv(dev);
9464 u32 rx_mode;
9465
9466 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9467 RX_MODE_KEEP_VLAN_TAG);
9468
9469 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9470 * flag clear.
9471 */
9472#if TG3_VLAN_TAG_USED
9473 if (!tp->vlgrp &&
9474 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
9475 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9476#else
9477 /* By definition, VLAN is disabled always in this
9478 * case.
9479 */
9480 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
9481 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9482#endif
9483
9484 if (dev->flags & IFF_PROMISC) {
9485 /* Promiscuous mode. */
9486 rx_mode |= RX_MODE_PROMISC;
9487 } else if (dev->flags & IFF_ALLMULTI) {
9488 /* Accept all multicast. */
9489 tg3_set_multi (tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00009490 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009491 /* Reject all multicast. */
9492 tg3_set_multi (tp, 0);
9493 } else {
9494 /* Accept one or more multicast(s). */
9495 struct dev_mc_list *mclist;
9496 unsigned int i;
9497 u32 mc_filter[4] = { 0, };
9498 u32 regidx;
9499 u32 bit;
9500 u32 crc;
9501
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00009502 for (i = 0, mclist = dev->mc_list; mclist && i < netdev_mc_count(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009503 i++, mclist = mclist->next) {
9504
9505 crc = calc_crc (mclist->dmi_addr, ETH_ALEN);
9506 bit = ~crc & 0x7f;
9507 regidx = (bit & 0x60) >> 5;
9508 bit &= 0x1f;
9509 mc_filter[regidx] |= (1 << bit);
9510 }
9511
9512 tw32(MAC_HASH_REG_0, mc_filter[0]);
9513 tw32(MAC_HASH_REG_1, mc_filter[1]);
9514 tw32(MAC_HASH_REG_2, mc_filter[2]);
9515 tw32(MAC_HASH_REG_3, mc_filter[3]);
9516 }
9517
9518 if (rx_mode != tp->rx_mode) {
9519 tp->rx_mode = rx_mode;
9520 tw32_f(MAC_RX_MODE, rx_mode);
9521 udelay(10);
9522 }
9523}
9524
9525static void tg3_set_rx_mode(struct net_device *dev)
9526{
9527 struct tg3 *tp = netdev_priv(dev);
9528
Michael Chane75f7c92006-03-20 21:33:26 -08009529 if (!netif_running(dev))
9530 return;
9531
David S. Millerf47c11e2005-06-24 20:18:35 -07009532 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009533 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07009534 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009535}
9536
9537#define TG3_REGDUMP_LEN (32 * 1024)
9538
9539static int tg3_get_regs_len(struct net_device *dev)
9540{
9541 return TG3_REGDUMP_LEN;
9542}
9543
9544static void tg3_get_regs(struct net_device *dev,
9545 struct ethtool_regs *regs, void *_p)
9546{
9547 u32 *p = _p;
9548 struct tg3 *tp = netdev_priv(dev);
9549 u8 *orig_p = _p;
9550 int i;
9551
9552 regs->version = 0;
9553
9554 memset(p, 0, TG3_REGDUMP_LEN);
9555
Michael Chanbc1c7562006-03-20 17:48:03 -08009556 if (tp->link_config.phy_is_low_power)
9557 return;
9558
David S. Millerf47c11e2005-06-24 20:18:35 -07009559 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009560
9561#define __GET_REG32(reg) (*(p)++ = tr32(reg))
9562#define GET_REG32_LOOP(base,len) \
9563do { p = (u32 *)(orig_p + (base)); \
9564 for (i = 0; i < len; i += 4) \
9565 __GET_REG32((base) + i); \
9566} while (0)
9567#define GET_REG32_1(reg) \
9568do { p = (u32 *)(orig_p + (reg)); \
9569 __GET_REG32((reg)); \
9570} while (0)
9571
9572 GET_REG32_LOOP(TG3PCI_VENDOR, 0xb0);
9573 GET_REG32_LOOP(MAILBOX_INTERRUPT_0, 0x200);
9574 GET_REG32_LOOP(MAC_MODE, 0x4f0);
9575 GET_REG32_LOOP(SNDDATAI_MODE, 0xe0);
9576 GET_REG32_1(SNDDATAC_MODE);
9577 GET_REG32_LOOP(SNDBDS_MODE, 0x80);
9578 GET_REG32_LOOP(SNDBDI_MODE, 0x48);
9579 GET_REG32_1(SNDBDC_MODE);
9580 GET_REG32_LOOP(RCVLPC_MODE, 0x20);
9581 GET_REG32_LOOP(RCVLPC_SELLST_BASE, 0x15c);
9582 GET_REG32_LOOP(RCVDBDI_MODE, 0x0c);
9583 GET_REG32_LOOP(RCVDBDI_JUMBO_BD, 0x3c);
9584 GET_REG32_LOOP(RCVDBDI_BD_PROD_IDX_0, 0x44);
9585 GET_REG32_1(RCVDCC_MODE);
9586 GET_REG32_LOOP(RCVBDI_MODE, 0x20);
9587 GET_REG32_LOOP(RCVCC_MODE, 0x14);
9588 GET_REG32_LOOP(RCVLSC_MODE, 0x08);
9589 GET_REG32_1(MBFREE_MODE);
9590 GET_REG32_LOOP(HOSTCC_MODE, 0x100);
9591 GET_REG32_LOOP(MEMARB_MODE, 0x10);
9592 GET_REG32_LOOP(BUFMGR_MODE, 0x58);
9593 GET_REG32_LOOP(RDMAC_MODE, 0x08);
9594 GET_REG32_LOOP(WDMAC_MODE, 0x08);
Chris Elmquist091465d2005-12-20 13:25:19 -08009595 GET_REG32_1(RX_CPU_MODE);
9596 GET_REG32_1(RX_CPU_STATE);
9597 GET_REG32_1(RX_CPU_PGMCTR);
9598 GET_REG32_1(RX_CPU_HWBKPT);
9599 GET_REG32_1(TX_CPU_MODE);
9600 GET_REG32_1(TX_CPU_STATE);
9601 GET_REG32_1(TX_CPU_PGMCTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009602 GET_REG32_LOOP(GRCMBOX_INTERRUPT_0, 0x110);
9603 GET_REG32_LOOP(FTQ_RESET, 0x120);
9604 GET_REG32_LOOP(MSGINT_MODE, 0x0c);
9605 GET_REG32_1(DMAC_MODE);
9606 GET_REG32_LOOP(GRC_MODE, 0x4c);
9607 if (tp->tg3_flags & TG3_FLAG_NVRAM)
9608 GET_REG32_LOOP(NVRAM_CMD, 0x24);
9609
9610#undef __GET_REG32
9611#undef GET_REG32_LOOP
9612#undef GET_REG32_1
9613
David S. Millerf47c11e2005-06-24 20:18:35 -07009614 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009615}
9616
9617static int tg3_get_eeprom_len(struct net_device *dev)
9618{
9619 struct tg3 *tp = netdev_priv(dev);
9620
9621 return tp->nvram_size;
9622}
9623
Linus Torvalds1da177e2005-04-16 15:20:36 -07009624static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9625{
9626 struct tg3 *tp = netdev_priv(dev);
9627 int ret;
9628 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -08009629 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009630 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009631
Matt Carlsondf259d82009-04-20 06:57:14 +00009632 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM)
9633 return -EINVAL;
9634
Michael Chanbc1c7562006-03-20 17:48:03 -08009635 if (tp->link_config.phy_is_low_power)
9636 return -EAGAIN;
9637
Linus Torvalds1da177e2005-04-16 15:20:36 -07009638 offset = eeprom->offset;
9639 len = eeprom->len;
9640 eeprom->len = 0;
9641
9642 eeprom->magic = TG3_EEPROM_MAGIC;
9643
9644 if (offset & 3) {
9645 /* adjustments to start on required 4 byte boundary */
9646 b_offset = offset & 3;
9647 b_count = 4 - b_offset;
9648 if (b_count > len) {
9649 /* i.e. offset=1 len=2 */
9650 b_count = len;
9651 }
Matt Carlsona9dc5292009-02-25 14:25:30 +00009652 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009653 if (ret)
9654 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009655 memcpy(data, ((char*)&val) + b_offset, b_count);
9656 len -= b_count;
9657 offset += b_count;
9658 eeprom->len += b_count;
9659 }
9660
9661 /* read bytes upto the last 4 byte boundary */
9662 pd = &data[eeprom->len];
9663 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +00009664 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009665 if (ret) {
9666 eeprom->len += i;
9667 return ret;
9668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009669 memcpy(pd + i, &val, 4);
9670 }
9671 eeprom->len += i;
9672
9673 if (len & 3) {
9674 /* read last bytes not ending on 4 byte boundary */
9675 pd = &data[eeprom->len];
9676 b_count = len & 3;
9677 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009678 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009679 if (ret)
9680 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009681 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009682 eeprom->len += b_count;
9683 }
9684 return 0;
9685}
9686
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009687static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009688
9689static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9690{
9691 struct tg3 *tp = netdev_priv(dev);
9692 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009693 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009694 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009695 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009696
Michael Chanbc1c7562006-03-20 17:48:03 -08009697 if (tp->link_config.phy_is_low_power)
9698 return -EAGAIN;
9699
Matt Carlsondf259d82009-04-20 06:57:14 +00009700 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
9701 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009702 return -EINVAL;
9703
9704 offset = eeprom->offset;
9705 len = eeprom->len;
9706
9707 if ((b_offset = (offset & 3))) {
9708 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +00009709 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009710 if (ret)
9711 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009712 len += b_offset;
9713 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -07009714 if (len < 4)
9715 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009716 }
9717
9718 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -07009719 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009720 /* adjustments to end on required 4 byte boundary */
9721 odd_len = 1;
9722 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009723 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009724 if (ret)
9725 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009726 }
9727
9728 buf = data;
9729 if (b_offset || odd_len) {
9730 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009731 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009732 return -ENOMEM;
9733 if (b_offset)
9734 memcpy(buf, &start, 4);
9735 if (odd_len)
9736 memcpy(buf+len-4, &end, 4);
9737 memcpy(buf + b_offset, data, eeprom->len);
9738 }
9739
9740 ret = tg3_nvram_write_block(tp, offset, len, buf);
9741
9742 if (buf != data)
9743 kfree(buf);
9744
9745 return ret;
9746}
9747
9748static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9749{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009750 struct tg3 *tp = netdev_priv(dev);
9751
9752 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009753 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009754 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9755 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009756 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9757 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009758 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009759
Linus Torvalds1da177e2005-04-16 15:20:36 -07009760 cmd->supported = (SUPPORTED_Autoneg);
9761
9762 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
9763 cmd->supported |= (SUPPORTED_1000baseT_Half |
9764 SUPPORTED_1000baseT_Full);
9765
Karsten Keilef348142006-05-12 12:49:08 -07009766 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009767 cmd->supported |= (SUPPORTED_100baseT_Half |
9768 SUPPORTED_100baseT_Full |
9769 SUPPORTED_10baseT_Half |
9770 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -08009771 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -07009772 cmd->port = PORT_TP;
9773 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009774 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -07009775 cmd->port = PORT_FIBRE;
9776 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009777
Linus Torvalds1da177e2005-04-16 15:20:36 -07009778 cmd->advertising = tp->link_config.advertising;
9779 if (netif_running(dev)) {
9780 cmd->speed = tp->link_config.active_speed;
9781 cmd->duplex = tp->link_config.active_duplex;
9782 }
Matt Carlson882e9792009-09-01 13:21:36 +00009783 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009784 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009785 cmd->autoneg = tp->link_config.autoneg;
9786 cmd->maxtxpkt = 0;
9787 cmd->maxrxpkt = 0;
9788 return 0;
9789}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009790
Linus Torvalds1da177e2005-04-16 15:20:36 -07009791static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9792{
9793 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009794
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009795 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009796 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009797 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9798 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009799 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9800 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009801 }
9802
Matt Carlson7e5856b2009-02-25 14:23:01 +00009803 if (cmd->autoneg != AUTONEG_ENABLE &&
9804 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -07009805 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009806
9807 if (cmd->autoneg == AUTONEG_DISABLE &&
9808 cmd->duplex != DUPLEX_FULL &&
9809 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -07009810 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009811
Matt Carlson7e5856b2009-02-25 14:23:01 +00009812 if (cmd->autoneg == AUTONEG_ENABLE) {
9813 u32 mask = ADVERTISED_Autoneg |
9814 ADVERTISED_Pause |
9815 ADVERTISED_Asym_Pause;
9816
9817 if (!(tp->tg3_flags2 & TG3_FLAG_10_100_ONLY))
9818 mask |= ADVERTISED_1000baseT_Half |
9819 ADVERTISED_1000baseT_Full;
9820
9821 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
9822 mask |= ADVERTISED_100baseT_Half |
9823 ADVERTISED_100baseT_Full |
9824 ADVERTISED_10baseT_Half |
9825 ADVERTISED_10baseT_Full |
9826 ADVERTISED_TP;
9827 else
9828 mask |= ADVERTISED_FIBRE;
9829
9830 if (cmd->advertising & ~mask)
9831 return -EINVAL;
9832
9833 mask &= (ADVERTISED_1000baseT_Half |
9834 ADVERTISED_1000baseT_Full |
9835 ADVERTISED_100baseT_Half |
9836 ADVERTISED_100baseT_Full |
9837 ADVERTISED_10baseT_Half |
9838 ADVERTISED_10baseT_Full);
9839
9840 cmd->advertising &= mask;
9841 } else {
9842 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) {
9843 if (cmd->speed != SPEED_1000)
9844 return -EINVAL;
9845
9846 if (cmd->duplex != DUPLEX_FULL)
9847 return -EINVAL;
9848 } else {
9849 if (cmd->speed != SPEED_100 &&
9850 cmd->speed != SPEED_10)
9851 return -EINVAL;
9852 }
9853 }
9854
David S. Millerf47c11e2005-06-24 20:18:35 -07009855 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009856
9857 tp->link_config.autoneg = cmd->autoneg;
9858 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -07009859 tp->link_config.advertising = (cmd->advertising |
9860 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009861 tp->link_config.speed = SPEED_INVALID;
9862 tp->link_config.duplex = DUPLEX_INVALID;
9863 } else {
9864 tp->link_config.advertising = 0;
9865 tp->link_config.speed = cmd->speed;
9866 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009867 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009868
Michael Chan24fcad62006-12-17 17:06:46 -08009869 tp->link_config.orig_speed = tp->link_config.speed;
9870 tp->link_config.orig_duplex = tp->link_config.duplex;
9871 tp->link_config.orig_autoneg = tp->link_config.autoneg;
9872
Linus Torvalds1da177e2005-04-16 15:20:36 -07009873 if (netif_running(dev))
9874 tg3_setup_phy(tp, 1);
9875
David S. Millerf47c11e2005-06-24 20:18:35 -07009876 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009877
Linus Torvalds1da177e2005-04-16 15:20:36 -07009878 return 0;
9879}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009880
Linus Torvalds1da177e2005-04-16 15:20:36 -07009881static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
9882{
9883 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009884
Linus Torvalds1da177e2005-04-16 15:20:36 -07009885 strcpy(info->driver, DRV_MODULE_NAME);
9886 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -08009887 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009888 strcpy(info->bus_info, pci_name(tp->pdev));
9889}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009890
Linus Torvalds1da177e2005-04-16 15:20:36 -07009891static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
9892{
9893 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009894
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009895 if ((tp->tg3_flags & TG3_FLAG_WOL_CAP) &&
9896 device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -07009897 wol->supported = WAKE_MAGIC;
9898 else
9899 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009900 wol->wolopts = 0;
Matt Carlson05ac4cb2008-11-03 16:53:46 -08009901 if ((tp->tg3_flags & TG3_FLAG_WOL_ENABLE) &&
9902 device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009903 wol->wolopts = WAKE_MAGIC;
9904 memset(&wol->sopass, 0, sizeof(wol->sopass));
9905}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009906
Linus Torvalds1da177e2005-04-16 15:20:36 -07009907static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
9908{
9909 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009910 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009911
Linus Torvalds1da177e2005-04-16 15:20:36 -07009912 if (wol->wolopts & ~WAKE_MAGIC)
9913 return -EINVAL;
9914 if ((wol->wolopts & WAKE_MAGIC) &&
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009915 !((tp->tg3_flags & TG3_FLAG_WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009916 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009917
David S. Millerf47c11e2005-06-24 20:18:35 -07009918 spin_lock_bh(&tp->lock);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009919 if (wol->wolopts & WAKE_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009920 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009921 device_set_wakeup_enable(dp, true);
9922 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009923 tp->tg3_flags &= ~TG3_FLAG_WOL_ENABLE;
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009924 device_set_wakeup_enable(dp, false);
9925 }
David S. Millerf47c11e2005-06-24 20:18:35 -07009926 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009927
Linus Torvalds1da177e2005-04-16 15:20:36 -07009928 return 0;
9929}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009930
Linus Torvalds1da177e2005-04-16 15:20:36 -07009931static u32 tg3_get_msglevel(struct net_device *dev)
9932{
9933 struct tg3 *tp = netdev_priv(dev);
9934 return tp->msg_enable;
9935}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009936
Linus Torvalds1da177e2005-04-16 15:20:36 -07009937static void tg3_set_msglevel(struct net_device *dev, u32 value)
9938{
9939 struct tg3 *tp = netdev_priv(dev);
9940 tp->msg_enable = value;
9941}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009942
Linus Torvalds1da177e2005-04-16 15:20:36 -07009943static int tg3_set_tso(struct net_device *dev, u32 value)
9944{
9945 struct tg3 *tp = netdev_priv(dev);
9946
9947 if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
9948 if (value)
9949 return -EINVAL;
9950 return 0;
9951 }
Matt Carlson027455a2008-12-21 20:19:30 -08009952 if ((dev->features & NETIF_F_IPV6_CSUM) &&
Matt Carlsone849cdc2009-11-13 13:03:38 +00009953 ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) ||
9954 (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3))) {
Matt Carlson9936bcf2007-10-10 18:03:07 -07009955 if (value) {
Michael Chanb0026622006-07-03 19:42:14 -07009956 dev->features |= NETIF_F_TSO6;
Matt Carlsone849cdc2009-11-13 13:03:38 +00009957 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
9958 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -07009959 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
9960 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Matt Carlson321d32a2008-11-21 17:22:19 -08009961 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00009962 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson9936bcf2007-10-10 18:03:07 -07009963 dev->features |= NETIF_F_TSO_ECN;
9964 } else
9965 dev->features &= ~(NETIF_F_TSO6 | NETIF_F_TSO_ECN);
Michael Chanb0026622006-07-03 19:42:14 -07009966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009967 return ethtool_op_set_tso(dev, value);
9968}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009969
Linus Torvalds1da177e2005-04-16 15:20:36 -07009970static int tg3_nway_reset(struct net_device *dev)
9971{
9972 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009973 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009974
Linus Torvalds1da177e2005-04-16 15:20:36 -07009975 if (!netif_running(dev))
9976 return -EAGAIN;
9977
Michael Chanc94e3942005-09-27 12:12:42 -07009978 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
9979 return -EINVAL;
9980
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009981 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
9982 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9983 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009984 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009985 } else {
9986 u32 bmcr;
9987
9988 spin_lock_bh(&tp->lock);
9989 r = -EINVAL;
9990 tg3_readphy(tp, MII_BMCR, &bmcr);
9991 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
9992 ((bmcr & BMCR_ANENABLE) ||
9993 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT))) {
9994 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
9995 BMCR_ANENABLE);
9996 r = 0;
9997 }
9998 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009999 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010000
Linus Torvalds1da177e2005-04-16 15:20:36 -070010001 return r;
10002}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010003
Linus Torvalds1da177e2005-04-16 15:20:36 -070010004static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10005{
10006 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010007
Linus Torvalds1da177e2005-04-16 15:20:36 -070010008 ering->rx_max_pending = TG3_RX_RING_SIZE - 1;
10009 ering->rx_mini_max_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -080010010 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
10011 ering->rx_jumbo_max_pending = TG3_RX_JUMBO_RING_SIZE - 1;
10012 else
10013 ering->rx_jumbo_max_pending = 0;
10014
10015 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010016
10017 ering->rx_pending = tp->rx_pending;
10018 ering->rx_mini_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -080010019 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
10020 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10021 else
10022 ering->rx_jumbo_pending = 0;
10023
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010024 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010025}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010026
Linus Torvalds1da177e2005-04-16 15:20:36 -070010027static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10028{
10029 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010030 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010031
Linus Torvalds1da177e2005-04-16 15:20:36 -070010032 if ((ering->rx_pending > TG3_RX_RING_SIZE - 1) ||
10033 (ering->rx_jumbo_pending > TG3_RX_JUMBO_RING_SIZE - 1) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010034 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10035 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Michael Chan7f62ad52007-02-20 23:25:40 -080010036 ((tp->tg3_flags2 & TG3_FLG2_TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010037 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010038 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010039
Michael Chanbbe832c2005-06-24 20:20:04 -070010040 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010041 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010042 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010043 irq_sync = 1;
10044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010045
Michael Chanbbe832c2005-06-24 20:20:04 -070010046 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010047
Linus Torvalds1da177e2005-04-16 15:20:36 -070010048 tp->rx_pending = ering->rx_pending;
10049
10050 if ((tp->tg3_flags2 & TG3_FLG2_MAX_RXPEND_64) &&
10051 tp->rx_pending > 63)
10052 tp->rx_pending = 63;
10053 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010054
10055 for (i = 0; i < TG3_IRQ_MAX_VECS; i++)
10056 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010057
10058 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010059 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010060 err = tg3_restart_hw(tp, 1);
10061 if (!err)
10062 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010063 }
10064
David S. Millerf47c11e2005-06-24 20:18:35 -070010065 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010066
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010067 if (irq_sync && !err)
10068 tg3_phy_start(tp);
10069
Michael Chanb9ec6c12006-07-25 16:37:27 -070010070 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010071}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010072
Linus Torvalds1da177e2005-04-16 15:20:36 -070010073static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10074{
10075 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010076
Linus Torvalds1da177e2005-04-16 15:20:36 -070010077 epause->autoneg = (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG) != 0;
Matt Carlson8d018622007-12-20 20:05:44 -080010078
Steve Glendinninge18ce342008-12-16 02:00:00 -080010079 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010080 epause->rx_pause = 1;
10081 else
10082 epause->rx_pause = 0;
10083
Steve Glendinninge18ce342008-12-16 02:00:00 -080010084 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010085 epause->tx_pause = 1;
10086 else
10087 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010088}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010089
Linus Torvalds1da177e2005-04-16 15:20:36 -070010090static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10091{
10092 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010093 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010094
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010095 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson27121682010-02-17 15:16:57 +000010096 u32 newadv;
10097 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010098
Matt Carlson27121682010-02-17 15:16:57 +000010099 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010100
Matt Carlson27121682010-02-17 15:16:57 +000010101 if (!(phydev->supported & SUPPORTED_Pause) ||
10102 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
10103 ((epause->rx_pause && !epause->tx_pause) ||
10104 (!epause->rx_pause && epause->tx_pause))))
10105 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010106
Matt Carlson27121682010-02-17 15:16:57 +000010107 tp->link_config.flowctrl = 0;
10108 if (epause->rx_pause) {
10109 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010110
Matt Carlson27121682010-02-17 15:16:57 +000010111 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010112 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010113 newadv = ADVERTISED_Pause;
10114 } else
10115 newadv = ADVERTISED_Pause |
10116 ADVERTISED_Asym_Pause;
10117 } else if (epause->tx_pause) {
10118 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10119 newadv = ADVERTISED_Asym_Pause;
10120 } else
10121 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010122
Matt Carlson27121682010-02-17 15:16:57 +000010123 if (epause->autoneg)
10124 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
10125 else
10126 tp->tg3_flags &= ~TG3_FLAG_PAUSE_AUTONEG;
10127
10128 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
10129 u32 oldadv = phydev->advertising &
10130 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10131 if (oldadv != newadv) {
10132 phydev->advertising &=
10133 ~(ADVERTISED_Pause |
10134 ADVERTISED_Asym_Pause);
10135 phydev->advertising |= newadv;
10136 if (phydev->autoneg) {
10137 /*
10138 * Always renegotiate the link to
10139 * inform our link partner of our
10140 * flow control settings, even if the
10141 * flow control is forced. Let
10142 * tg3_adjust_link() do the final
10143 * flow control setup.
10144 */
10145 return phy_start_aneg(phydev);
10146 }
10147 }
10148
10149 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010150 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010151 } else {
10152 tp->link_config.orig_advertising &=
10153 ~(ADVERTISED_Pause |
10154 ADVERTISED_Asym_Pause);
10155 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010156 }
10157 } else {
10158 int irq_sync = 0;
10159
10160 if (netif_running(dev)) {
10161 tg3_netif_stop(tp);
10162 irq_sync = 1;
10163 }
10164
10165 tg3_full_lock(tp, irq_sync);
10166
10167 if (epause->autoneg)
10168 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
10169 else
10170 tp->tg3_flags &= ~TG3_FLAG_PAUSE_AUTONEG;
10171 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010172 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010173 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010174 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010175 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010176 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010177 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010178 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010179
10180 if (netif_running(dev)) {
10181 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10182 err = tg3_restart_hw(tp, 1);
10183 if (!err)
10184 tg3_netif_start(tp);
10185 }
10186
10187 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010189
Michael Chanb9ec6c12006-07-25 16:37:27 -070010190 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010192
Linus Torvalds1da177e2005-04-16 15:20:36 -070010193static u32 tg3_get_rx_csum(struct net_device *dev)
10194{
10195 struct tg3 *tp = netdev_priv(dev);
10196 return (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0;
10197}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010198
Linus Torvalds1da177e2005-04-16 15:20:36 -070010199static int tg3_set_rx_csum(struct net_device *dev, u32 data)
10200{
10201 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010202
Linus Torvalds1da177e2005-04-16 15:20:36 -070010203 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
10204 if (data != 0)
10205 return -EINVAL;
10206 return 0;
10207 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010208
David S. Millerf47c11e2005-06-24 20:18:35 -070010209 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010210 if (data)
10211 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
10212 else
10213 tp->tg3_flags &= ~TG3_FLAG_RX_CHECKSUMS;
David S. Millerf47c11e2005-06-24 20:18:35 -070010214 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010215
Linus Torvalds1da177e2005-04-16 15:20:36 -070010216 return 0;
10217}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010218
Linus Torvalds1da177e2005-04-16 15:20:36 -070010219static int tg3_set_tx_csum(struct net_device *dev, u32 data)
10220{
10221 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010222
Linus Torvalds1da177e2005-04-16 15:20:36 -070010223 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
10224 if (data != 0)
10225 return -EINVAL;
10226 return 0;
10227 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010228
Matt Carlson321d32a2008-11-21 17:22:19 -080010229 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Michael Chan6460d942007-07-14 19:07:52 -070010230 ethtool_op_set_tx_ipv6_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010231 else
Michael Chan9c27dbd2006-03-20 22:28:27 -080010232 ethtool_op_set_tx_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010233
10234 return 0;
10235}
10236
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010237static int tg3_get_sset_count (struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010238{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010239 switch (sset) {
10240 case ETH_SS_TEST:
10241 return TG3_NUM_TEST;
10242 case ETH_SS_STATS:
10243 return TG3_NUM_STATS;
10244 default:
10245 return -EOPNOTSUPP;
10246 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010247}
10248
Linus Torvalds1da177e2005-04-16 15:20:36 -070010249static void tg3_get_strings (struct net_device *dev, u32 stringset, u8 *buf)
10250{
10251 switch (stringset) {
10252 case ETH_SS_STATS:
10253 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10254 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010255 case ETH_SS_TEST:
10256 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10257 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010258 default:
10259 WARN_ON(1); /* we need a WARN() */
10260 break;
10261 }
10262}
10263
Michael Chan4009a932005-09-05 17:52:54 -070010264static int tg3_phys_id(struct net_device *dev, u32 data)
10265{
10266 struct tg3 *tp = netdev_priv(dev);
10267 int i;
10268
10269 if (!netif_running(tp->dev))
10270 return -EAGAIN;
10271
10272 if (data == 0)
Stephen Hemminger759afc32008-02-23 19:51:59 -080010273 data = UINT_MAX / 2;
Michael Chan4009a932005-09-05 17:52:54 -070010274
10275 for (i = 0; i < (data * 2); i++) {
10276 if ((i % 2) == 0)
10277 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10278 LED_CTRL_1000MBPS_ON |
10279 LED_CTRL_100MBPS_ON |
10280 LED_CTRL_10MBPS_ON |
10281 LED_CTRL_TRAFFIC_OVERRIDE |
10282 LED_CTRL_TRAFFIC_BLINK |
10283 LED_CTRL_TRAFFIC_LED);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010284
Michael Chan4009a932005-09-05 17:52:54 -070010285 else
10286 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10287 LED_CTRL_TRAFFIC_OVERRIDE);
10288
10289 if (msleep_interruptible(500))
10290 break;
10291 }
10292 tw32(MAC_LED_CTRL, tp->led_ctrl);
10293 return 0;
10294}
10295
Linus Torvalds1da177e2005-04-16 15:20:36 -070010296static void tg3_get_ethtool_stats (struct net_device *dev,
10297 struct ethtool_stats *estats, u64 *tmp_stats)
10298{
10299 struct tg3 *tp = netdev_priv(dev);
10300 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10301}
10302
Michael Chan566f86a2005-05-29 14:56:58 -070010303#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010304#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10305#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10306#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Michael Chanb16250e2006-09-27 16:10:14 -070010307#define NVRAM_SELFBOOT_HW_SIZE 0x20
10308#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010309
10310static int tg3_test_nvram(struct tg3 *tp)
10311{
Al Virob9fc7dc2007-12-17 22:59:57 -080010312 u32 csum, magic;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010313 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010314 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010315
Matt Carlsondf259d82009-04-20 06:57:14 +000010316 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM)
10317 return 0;
10318
Matt Carlsone4f34112009-02-25 14:25:00 +000010319 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010320 return -EIO;
10321
Michael Chan1b277772006-03-20 22:27:48 -080010322 if (magic == TG3_EEPROM_MAGIC)
10323 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010324 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010325 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10326 TG3_EEPROM_SB_FORMAT_1) {
10327 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10328 case TG3_EEPROM_SB_REVISION_0:
10329 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10330 break;
10331 case TG3_EEPROM_SB_REVISION_2:
10332 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10333 break;
10334 case TG3_EEPROM_SB_REVISION_3:
10335 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10336 break;
10337 default:
10338 return 0;
10339 }
10340 } else
Michael Chan1b277772006-03-20 22:27:48 -080010341 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010342 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10343 size = NVRAM_SELFBOOT_HW_SIZE;
10344 else
Michael Chan1b277772006-03-20 22:27:48 -080010345 return -EIO;
10346
10347 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010348 if (buf == NULL)
10349 return -ENOMEM;
10350
Michael Chan1b277772006-03-20 22:27:48 -080010351 err = -EIO;
10352 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010353 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10354 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010355 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010356 }
Michael Chan1b277772006-03-20 22:27:48 -080010357 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010358 goto out;
10359
Michael Chan1b277772006-03-20 22:27:48 -080010360 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010361 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010362 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010363 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010364 u8 *buf8 = (u8 *) buf, csum8 = 0;
10365
Al Virob9fc7dc2007-12-17 22:59:57 -080010366 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010367 TG3_EEPROM_SB_REVISION_2) {
10368 /* For rev 2, the csum doesn't include the MBA. */
10369 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10370 csum8 += buf8[i];
10371 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10372 csum8 += buf8[i];
10373 } else {
10374 for (i = 0; i < size; i++)
10375 csum8 += buf8[i];
10376 }
Michael Chan1b277772006-03-20 22:27:48 -080010377
Adrian Bunkad96b482006-04-05 22:21:04 -070010378 if (csum8 == 0) {
10379 err = 0;
10380 goto out;
10381 }
10382
10383 err = -EIO;
10384 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010385 }
Michael Chan566f86a2005-05-29 14:56:58 -070010386
Al Virob9fc7dc2007-12-17 22:59:57 -080010387 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010388 TG3_EEPROM_MAGIC_HW) {
10389 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010390 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010391 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010392
10393 /* Separate the parity bits and the data bytes. */
10394 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10395 if ((i == 0) || (i == 8)) {
10396 int l;
10397 u8 msk;
10398
10399 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10400 parity[k++] = buf8[i] & msk;
10401 i++;
10402 }
10403 else if (i == 16) {
10404 int l;
10405 u8 msk;
10406
10407 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10408 parity[k++] = buf8[i] & msk;
10409 i++;
10410
10411 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10412 parity[k++] = buf8[i] & msk;
10413 i++;
10414 }
10415 data[j++] = buf8[i];
10416 }
10417
10418 err = -EIO;
10419 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10420 u8 hw8 = hweight8(data[i]);
10421
10422 if ((hw8 & 0x1) && parity[i])
10423 goto out;
10424 else if (!(hw8 & 0x1) && !parity[i])
10425 goto out;
10426 }
10427 err = 0;
10428 goto out;
10429 }
10430
Michael Chan566f86a2005-05-29 14:56:58 -070010431 /* Bootstrap checksum at offset 0x10 */
10432 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlsona9dc5292009-02-25 14:25:30 +000010433 if (csum != be32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010434 goto out;
10435
10436 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10437 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlsona9dc5292009-02-25 14:25:30 +000010438 if (csum != be32_to_cpu(buf[0xfc/4]))
10439 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070010440
10441 err = 0;
10442
10443out:
10444 kfree(buf);
10445 return err;
10446}
10447
Michael Chanca430072005-05-29 14:57:23 -070010448#define TG3_SERDES_TIMEOUT_SEC 2
10449#define TG3_COPPER_TIMEOUT_SEC 6
10450
10451static int tg3_test_link(struct tg3 *tp)
10452{
10453 int i, max;
10454
10455 if (!netif_running(tp->dev))
10456 return -ENODEV;
10457
Michael Chan4c987482005-09-05 17:52:38 -070010458 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070010459 max = TG3_SERDES_TIMEOUT_SEC;
10460 else
10461 max = TG3_COPPER_TIMEOUT_SEC;
10462
10463 for (i = 0; i < max; i++) {
10464 if (netif_carrier_ok(tp->dev))
10465 return 0;
10466
10467 if (msleep_interruptible(1000))
10468 break;
10469 }
10470
10471 return -EIO;
10472}
10473
Michael Chana71116d2005-05-29 14:58:11 -070010474/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080010475static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070010476{
Michael Chanb16250e2006-09-27 16:10:14 -070010477 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070010478 u32 offset, read_mask, write_mask, val, save_val, read_val;
10479 static struct {
10480 u16 offset;
10481 u16 flags;
10482#define TG3_FL_5705 0x1
10483#define TG3_FL_NOT_5705 0x2
10484#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070010485#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070010486 u32 read_mask;
10487 u32 write_mask;
10488 } reg_tbl[] = {
10489 /* MAC Control Registers */
10490 { MAC_MODE, TG3_FL_NOT_5705,
10491 0x00000000, 0x00ef6f8c },
10492 { MAC_MODE, TG3_FL_5705,
10493 0x00000000, 0x01ef6b8c },
10494 { MAC_STATUS, TG3_FL_NOT_5705,
10495 0x03800107, 0x00000000 },
10496 { MAC_STATUS, TG3_FL_5705,
10497 0x03800100, 0x00000000 },
10498 { MAC_ADDR_0_HIGH, 0x0000,
10499 0x00000000, 0x0000ffff },
10500 { MAC_ADDR_0_LOW, 0x0000,
10501 0x00000000, 0xffffffff },
10502 { MAC_RX_MTU_SIZE, 0x0000,
10503 0x00000000, 0x0000ffff },
10504 { MAC_TX_MODE, 0x0000,
10505 0x00000000, 0x00000070 },
10506 { MAC_TX_LENGTHS, 0x0000,
10507 0x00000000, 0x00003fff },
10508 { MAC_RX_MODE, TG3_FL_NOT_5705,
10509 0x00000000, 0x000007fc },
10510 { MAC_RX_MODE, TG3_FL_5705,
10511 0x00000000, 0x000007dc },
10512 { MAC_HASH_REG_0, 0x0000,
10513 0x00000000, 0xffffffff },
10514 { MAC_HASH_REG_1, 0x0000,
10515 0x00000000, 0xffffffff },
10516 { MAC_HASH_REG_2, 0x0000,
10517 0x00000000, 0xffffffff },
10518 { MAC_HASH_REG_3, 0x0000,
10519 0x00000000, 0xffffffff },
10520
10521 /* Receive Data and Receive BD Initiator Control Registers. */
10522 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
10523 0x00000000, 0xffffffff },
10524 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
10525 0x00000000, 0xffffffff },
10526 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
10527 0x00000000, 0x00000003 },
10528 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
10529 0x00000000, 0xffffffff },
10530 { RCVDBDI_STD_BD+0, 0x0000,
10531 0x00000000, 0xffffffff },
10532 { RCVDBDI_STD_BD+4, 0x0000,
10533 0x00000000, 0xffffffff },
10534 { RCVDBDI_STD_BD+8, 0x0000,
10535 0x00000000, 0xffff0002 },
10536 { RCVDBDI_STD_BD+0xc, 0x0000,
10537 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010538
Michael Chana71116d2005-05-29 14:58:11 -070010539 /* Receive BD Initiator Control Registers. */
10540 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
10541 0x00000000, 0xffffffff },
10542 { RCVBDI_STD_THRESH, TG3_FL_5705,
10543 0x00000000, 0x000003ff },
10544 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
10545 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010546
Michael Chana71116d2005-05-29 14:58:11 -070010547 /* Host Coalescing Control Registers. */
10548 { HOSTCC_MODE, TG3_FL_NOT_5705,
10549 0x00000000, 0x00000004 },
10550 { HOSTCC_MODE, TG3_FL_5705,
10551 0x00000000, 0x000000f6 },
10552 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
10553 0x00000000, 0xffffffff },
10554 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
10555 0x00000000, 0x000003ff },
10556 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
10557 0x00000000, 0xffffffff },
10558 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
10559 0x00000000, 0x000003ff },
10560 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
10561 0x00000000, 0xffffffff },
10562 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10563 0x00000000, 0x000000ff },
10564 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
10565 0x00000000, 0xffffffff },
10566 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10567 0x00000000, 0x000000ff },
10568 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
10569 0x00000000, 0xffffffff },
10570 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
10571 0x00000000, 0xffffffff },
10572 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10573 0x00000000, 0xffffffff },
10574 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10575 0x00000000, 0x000000ff },
10576 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10577 0x00000000, 0xffffffff },
10578 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10579 0x00000000, 0x000000ff },
10580 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
10581 0x00000000, 0xffffffff },
10582 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
10583 0x00000000, 0xffffffff },
10584 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
10585 0x00000000, 0xffffffff },
10586 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
10587 0x00000000, 0xffffffff },
10588 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
10589 0x00000000, 0xffffffff },
10590 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
10591 0xffffffff, 0x00000000 },
10592 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
10593 0xffffffff, 0x00000000 },
10594
10595 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070010596 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010597 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070010598 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010599 0x00000000, 0x007fffff },
10600 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
10601 0x00000000, 0x0000003f },
10602 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
10603 0x00000000, 0x000001ff },
10604 { BUFMGR_MB_HIGH_WATER, 0x0000,
10605 0x00000000, 0x000001ff },
10606 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
10607 0xffffffff, 0x00000000 },
10608 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
10609 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010610
Michael Chana71116d2005-05-29 14:58:11 -070010611 /* Mailbox Registers */
10612 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
10613 0x00000000, 0x000001ff },
10614 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
10615 0x00000000, 0x000001ff },
10616 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
10617 0x00000000, 0x000007ff },
10618 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
10619 0x00000000, 0x000001ff },
10620
10621 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
10622 };
10623
Michael Chanb16250e2006-09-27 16:10:14 -070010624 is_5705 = is_5750 = 0;
10625 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chana71116d2005-05-29 14:58:11 -070010626 is_5705 = 1;
Michael Chanb16250e2006-09-27 16:10:14 -070010627 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
10628 is_5750 = 1;
10629 }
Michael Chana71116d2005-05-29 14:58:11 -070010630
10631 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
10632 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
10633 continue;
10634
10635 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
10636 continue;
10637
10638 if ((tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
10639 (reg_tbl[i].flags & TG3_FL_NOT_5788))
10640 continue;
10641
Michael Chanb16250e2006-09-27 16:10:14 -070010642 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
10643 continue;
10644
Michael Chana71116d2005-05-29 14:58:11 -070010645 offset = (u32) reg_tbl[i].offset;
10646 read_mask = reg_tbl[i].read_mask;
10647 write_mask = reg_tbl[i].write_mask;
10648
10649 /* Save the original register content */
10650 save_val = tr32(offset);
10651
10652 /* Determine the read-only value. */
10653 read_val = save_val & read_mask;
10654
10655 /* Write zero to the register, then make sure the read-only bits
10656 * are not changed and the read/write bits are all zeros.
10657 */
10658 tw32(offset, 0);
10659
10660 val = tr32(offset);
10661
10662 /* Test the read-only and read/write bits. */
10663 if (((val & read_mask) != read_val) || (val & write_mask))
10664 goto out;
10665
10666 /* Write ones to all the bits defined by RdMask and WrMask, then
10667 * make sure the read-only bits are not changed and the
10668 * read/write bits are all ones.
10669 */
10670 tw32(offset, read_mask | write_mask);
10671
10672 val = tr32(offset);
10673
10674 /* Test the read-only bits. */
10675 if ((val & read_mask) != read_val)
10676 goto out;
10677
10678 /* Test the read/write bits. */
10679 if ((val & write_mask) != write_mask)
10680 goto out;
10681
10682 tw32(offset, save_val);
10683 }
10684
10685 return 0;
10686
10687out:
Michael Chan9f88f292006-12-07 00:22:54 -080010688 if (netif_msg_hw(tp))
10689 printk(KERN_ERR PFX "Register test failed at offset %x\n",
10690 offset);
Michael Chana71116d2005-05-29 14:58:11 -070010691 tw32(offset, save_val);
10692 return -EIO;
10693}
10694
Michael Chan7942e1d2005-05-29 14:58:36 -070010695static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
10696{
Arjan van de Venf71e1302006-03-03 21:33:57 -050010697 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070010698 int i;
10699 u32 j;
10700
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020010701 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070010702 for (j = 0; j < len; j += 4) {
10703 u32 val;
10704
10705 tg3_write_mem(tp, offset + j, test_pattern[i]);
10706 tg3_read_mem(tp, offset + j, &val);
10707 if (val != test_pattern[i])
10708 return -EIO;
10709 }
10710 }
10711 return 0;
10712}
10713
10714static int tg3_test_memory(struct tg3 *tp)
10715{
10716 static struct mem_entry {
10717 u32 offset;
10718 u32 len;
10719 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080010720 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070010721 { 0x00002000, 0x1c000},
10722 { 0xffffffff, 0x00000}
10723 }, mem_tbl_5705[] = {
10724 { 0x00000100, 0x0000c},
10725 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070010726 { 0x00004000, 0x00800},
10727 { 0x00006000, 0x01000},
10728 { 0x00008000, 0x02000},
10729 { 0x00010000, 0x0e000},
10730 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080010731 }, mem_tbl_5755[] = {
10732 { 0x00000200, 0x00008},
10733 { 0x00004000, 0x00800},
10734 { 0x00006000, 0x00800},
10735 { 0x00008000, 0x02000},
10736 { 0x00010000, 0x0c000},
10737 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070010738 }, mem_tbl_5906[] = {
10739 { 0x00000200, 0x00008},
10740 { 0x00004000, 0x00400},
10741 { 0x00006000, 0x00400},
10742 { 0x00008000, 0x01000},
10743 { 0x00010000, 0x01000},
10744 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010745 }, mem_tbl_5717[] = {
10746 { 0x00000200, 0x00008},
10747 { 0x00010000, 0x0a000},
10748 { 0x00020000, 0x13c00},
10749 { 0xffffffff, 0x00000}
10750 }, mem_tbl_57765[] = {
10751 { 0x00000200, 0x00008},
10752 { 0x00004000, 0x00800},
10753 { 0x00006000, 0x09800},
10754 { 0x00010000, 0x0a000},
10755 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070010756 };
10757 struct mem_entry *mem_tbl;
10758 int err = 0;
10759 int i;
10760
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010761 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
10762 mem_tbl = mem_tbl_5717;
10763 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
10764 mem_tbl = mem_tbl_57765;
10765 else if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
Matt Carlson321d32a2008-11-21 17:22:19 -080010766 mem_tbl = mem_tbl_5755;
10767 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10768 mem_tbl = mem_tbl_5906;
10769 else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
10770 mem_tbl = mem_tbl_5705;
10771 else
Michael Chan7942e1d2005-05-29 14:58:36 -070010772 mem_tbl = mem_tbl_570x;
10773
10774 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
10775 if ((err = tg3_do_mem_test(tp, mem_tbl[i].offset,
10776 mem_tbl[i].len)) != 0)
10777 break;
10778 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010779
Michael Chan7942e1d2005-05-29 14:58:36 -070010780 return err;
10781}
10782
Michael Chan9f40dea2005-09-05 17:53:06 -070010783#define TG3_MAC_LOOPBACK 0
10784#define TG3_PHY_LOOPBACK 1
10785
10786static int tg3_run_loopback(struct tg3 *tp, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -070010787{
Michael Chan9f40dea2005-09-05 17:53:06 -070010788 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010789 u32 desc_idx, coal_now;
Michael Chanc76949a2005-05-29 14:58:59 -070010790 struct sk_buff *skb, *rx_skb;
10791 u8 *tx_data;
10792 dma_addr_t map;
10793 int num_pkts, tx_len, rx_len, i, err;
10794 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000010795 struct tg3_napi *tnapi, *rnapi;
Matt Carlson21f581a2009-08-28 14:00:25 +000010796 struct tg3_rx_prodring_set *tpr = &tp->prodring[0];
Michael Chanc76949a2005-05-29 14:58:59 -070010797
Matt Carlsonc8873402010-02-12 14:47:11 +000010798 tnapi = &tp->napi[0];
10799 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010800 if (tp->irq_cnt > 1) {
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010801 rnapi = &tp->napi[1];
Matt Carlsonc8873402010-02-12 14:47:11 +000010802 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_TSS)
10803 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010804 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010805 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000010806
Michael Chan9f40dea2005-09-05 17:53:06 -070010807 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -070010808 /* HW errata - mac loopback fails in some cases on 5780.
10809 * Normal traffic and PHY loopback are not affected by
10810 * errata.
10811 */
10812 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780)
10813 return 0;
10814
Michael Chan9f40dea2005-09-05 17:53:06 -070010815 mac_mode = (tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK) |
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010816 MAC_MODE_PORT_INT_LPBACK;
10817 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
10818 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chan3f7045c2006-09-27 16:02:29 -070010819 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
10820 mac_mode |= MAC_MODE_PORT_MODE_MII;
10821 else
10822 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -070010823 tw32(MAC_MODE, mac_mode);
10824 } else if (loopback_mode == TG3_PHY_LOOPBACK) {
Michael Chan3f7045c2006-09-27 16:02:29 -070010825 u32 val;
10826
Matt Carlson7f97a4b2009-08-25 10:10:03 +000010827 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
10828 tg3_phy_fet_toggle_apd(tp, false);
Michael Chan5d64ad32006-12-07 00:19:40 -080010829 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
10830 } else
10831 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -070010832
Matt Carlson9ef8ca92007-07-11 19:48:29 -070010833 tg3_phy_toggle_automdix(tp, 0);
10834
Michael Chan3f7045c2006-09-27 16:02:29 -070010835 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -070010836 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -080010837
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010838 mac_mode = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000010839 if (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) {
Matt Carlson1061b7c2010-02-12 14:47:12 +000010840 tg3_writephy(tp, MII_TG3_FET_PTEST,
10841 MII_TG3_FET_PTEST_FRC_TX_LINK |
10842 MII_TG3_FET_PTEST_FRC_TX_LOCK);
10843 /* The write needs to be flushed for the AC131 */
10844 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
10845 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
Michael Chan5d64ad32006-12-07 00:19:40 -080010846 mac_mode |= MAC_MODE_PORT_MODE_MII;
10847 } else
10848 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -070010849
Michael Chanc94e3942005-09-27 12:12:42 -070010850 /* reset to prevent losing 1st rx packet intermittently */
10851 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
10852 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10853 udelay(10);
10854 tw32_f(MAC_RX_MODE, tp->rx_mode);
10855 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010856 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
10857 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401)
10858 mac_mode &= ~MAC_MODE_LINK_POLARITY;
10859 else if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411)
10860 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -080010861 tg3_writephy(tp, MII_TG3_EXT_CTRL,
10862 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
10863 }
Michael Chan9f40dea2005-09-05 17:53:06 -070010864 tw32(MAC_MODE, mac_mode);
Michael Chan9f40dea2005-09-05 17:53:06 -070010865 }
10866 else
10867 return -EINVAL;
Michael Chanc76949a2005-05-29 14:58:59 -070010868
10869 err = -EIO;
10870
Michael Chanc76949a2005-05-29 14:58:59 -070010871 tx_len = 1514;
David S. Millera20e9c62006-07-31 22:38:16 -070010872 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070010873 if (!skb)
10874 return -ENOMEM;
10875
Michael Chanc76949a2005-05-29 14:58:59 -070010876 tx_data = skb_put(skb, tx_len);
10877 memcpy(tx_data, tp->dev->dev_addr, 6);
10878 memset(tx_data + 6, 0x0, 8);
10879
10880 tw32(MAC_RX_MTU_SIZE, tx_len + 4);
10881
10882 for (i = 14; i < tx_len; i++)
10883 tx_data[i] = (u8) (i & 0xff);
10884
Alexander Duyckf4188d82009-12-02 16:48:38 +000010885 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
10886 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000010887 dev_kfree_skb(skb);
10888 return -EIO;
10889 }
Michael Chanc76949a2005-05-29 14:58:59 -070010890
10891 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010892 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070010893
10894 udelay(10);
10895
Matt Carlson898a56f2009-08-28 14:02:40 +000010896 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070010897
Michael Chanc76949a2005-05-29 14:58:59 -070010898 num_pkts = 0;
10899
Alexander Duyckf4188d82009-12-02 16:48:38 +000010900 tg3_set_txd(tnapi, tnapi->tx_prod, map, tx_len, 0, 1);
Michael Chanc76949a2005-05-29 14:58:59 -070010901
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010902 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070010903 num_pkts++;
10904
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010905 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
10906 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070010907
10908 udelay(10);
10909
Matt Carlson303fc922009-11-02 14:27:34 +000010910 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
10911 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070010912 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010913 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070010914
10915 udelay(10);
10916
Matt Carlson898a56f2009-08-28 14:02:40 +000010917 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
10918 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010919 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070010920 (rx_idx == (rx_start_idx + num_pkts)))
10921 break;
10922 }
10923
Alexander Duyckf4188d82009-12-02 16:48:38 +000010924 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
Michael Chanc76949a2005-05-29 14:58:59 -070010925 dev_kfree_skb(skb);
10926
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010927 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070010928 goto out;
10929
10930 if (rx_idx != rx_start_idx + num_pkts)
10931 goto out;
10932
Matt Carlson72334482009-08-28 14:03:01 +000010933 desc = &rnapi->rx_rcb[rx_start_idx];
Michael Chanc76949a2005-05-29 14:58:59 -070010934 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
10935 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
10936 if (opaque_key != RXD_OPAQUE_RING_STD)
10937 goto out;
10938
10939 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
10940 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
10941 goto out;
10942
10943 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) - 4;
10944 if (rx_len != tx_len)
10945 goto out;
10946
Matt Carlson21f581a2009-08-28 14:00:25 +000010947 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
Michael Chanc76949a2005-05-29 14:58:59 -070010948
Matt Carlson21f581a2009-08-28 14:00:25 +000010949 map = pci_unmap_addr(&tpr->rx_std_buffers[desc_idx], mapping);
Michael Chanc76949a2005-05-29 14:58:59 -070010950 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len, PCI_DMA_FROMDEVICE);
10951
10952 for (i = 14; i < tx_len; i++) {
10953 if (*(rx_skb->data + i) != (u8) (i & 0xff))
10954 goto out;
10955 }
10956 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010957
Michael Chanc76949a2005-05-29 14:58:59 -070010958 /* tg3_free_rings will unmap and free the rx_skb */
10959out:
10960 return err;
10961}
10962
Michael Chan9f40dea2005-09-05 17:53:06 -070010963#define TG3_MAC_LOOPBACK_FAILED 1
10964#define TG3_PHY_LOOPBACK_FAILED 2
10965#define TG3_LOOPBACK_FAILED (TG3_MAC_LOOPBACK_FAILED | \
10966 TG3_PHY_LOOPBACK_FAILED)
10967
10968static int tg3_test_loopback(struct tg3 *tp)
10969{
10970 int err = 0;
Matt Carlson9936bcf2007-10-10 18:03:07 -070010971 u32 cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070010972
10973 if (!netif_running(tp->dev))
10974 return TG3_LOOPBACK_FAILED;
10975
Michael Chanb9ec6c12006-07-25 16:37:27 -070010976 err = tg3_reset_hw(tp, 1);
10977 if (err)
10978 return TG3_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070010979
Matt Carlson6833c042008-11-21 17:18:59 -080010980 /* Turn off gphy autopowerdown. */
10981 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
10982 tg3_phy_toggle_apd(tp, false);
10983
Matt Carlson321d32a2008-11-21 17:22:19 -080010984 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070010985 int i;
10986 u32 status;
10987
10988 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
10989
10990 /* Wait for up to 40 microseconds to acquire lock. */
10991 for (i = 0; i < 4; i++) {
10992 status = tr32(TG3_CPMU_MUTEX_GNT);
10993 if (status == CPMU_MUTEX_GNT_DRIVER)
10994 break;
10995 udelay(10);
10996 }
10997
10998 if (status != CPMU_MUTEX_GNT_DRIVER)
10999 return TG3_LOOPBACK_FAILED;
11000
Matt Carlsonb2a5c192008-04-03 21:44:44 -070011001 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080011002 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070011003 tw32(TG3_CPMU_CTRL,
11004 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
11005 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070011006 }
11007
Michael Chan9f40dea2005-09-05 17:53:06 -070011008 if (tg3_run_loopback(tp, TG3_MAC_LOOPBACK))
11009 err |= TG3_MAC_LOOPBACK_FAILED;
Matt Carlson9936bcf2007-10-10 18:03:07 -070011010
Matt Carlson321d32a2008-11-21 17:22:19 -080011011 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011012 tw32(TG3_CPMU_CTRL, cpmuctrl);
11013
11014 /* Release the mutex */
11015 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
11016 }
11017
Matt Carlsondd477002008-05-25 23:45:58 -070011018 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
11019 !(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
Michael Chan9f40dea2005-09-05 17:53:06 -070011020 if (tg3_run_loopback(tp, TG3_PHY_LOOPBACK))
11021 err |= TG3_PHY_LOOPBACK_FAILED;
11022 }
11023
Matt Carlson6833c042008-11-21 17:18:59 -080011024 /* Re-enable gphy autopowerdown. */
11025 if (tp->tg3_flags3 & TG3_FLG3_PHY_ENABLE_APD)
11026 tg3_phy_toggle_apd(tp, true);
11027
Michael Chan9f40dea2005-09-05 17:53:06 -070011028 return err;
11029}
11030
Michael Chan4cafd3f2005-05-29 14:56:34 -070011031static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
11032 u64 *data)
11033{
Michael Chan566f86a2005-05-29 14:56:58 -070011034 struct tg3 *tp = netdev_priv(dev);
11035
Michael Chanbc1c7562006-03-20 17:48:03 -080011036 if (tp->link_config.phy_is_low_power)
11037 tg3_set_power_state(tp, PCI_D0);
11038
Michael Chan566f86a2005-05-29 14:56:58 -070011039 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11040
11041 if (tg3_test_nvram(tp) != 0) {
11042 etest->flags |= ETH_TEST_FL_FAILED;
11043 data[0] = 1;
11044 }
Michael Chanca430072005-05-29 14:57:23 -070011045 if (tg3_test_link(tp) != 0) {
11046 etest->flags |= ETH_TEST_FL_FAILED;
11047 data[1] = 1;
11048 }
Michael Chana71116d2005-05-29 14:58:11 -070011049 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011050 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011051
Michael Chanbbe832c2005-06-24 20:20:04 -070011052 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011053 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011054 tg3_netif_stop(tp);
11055 irq_sync = 1;
11056 }
11057
11058 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011059
11060 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011061 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011062 tg3_halt_cpu(tp, RX_CPU_BASE);
11063 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
11064 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011065 if (!err)
11066 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011067
Michael Chand9ab5ad2006-03-20 22:27:35 -080011068 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
11069 tg3_phy_reset(tp);
11070
Michael Chana71116d2005-05-29 14:58:11 -070011071 if (tg3_test_registers(tp) != 0) {
11072 etest->flags |= ETH_TEST_FL_FAILED;
11073 data[2] = 1;
11074 }
Michael Chan7942e1d2005-05-29 14:58:36 -070011075 if (tg3_test_memory(tp) != 0) {
11076 etest->flags |= ETH_TEST_FL_FAILED;
11077 data[3] = 1;
11078 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011079 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070011080 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011081
David S. Millerf47c11e2005-06-24 20:18:35 -070011082 tg3_full_unlock(tp);
11083
Michael Chand4bc3922005-05-29 14:59:20 -070011084 if (tg3_test_interrupt(tp) != 0) {
11085 etest->flags |= ETH_TEST_FL_FAILED;
11086 data[5] = 1;
11087 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011088
11089 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011090
Michael Chana71116d2005-05-29 14:58:11 -070011091 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11092 if (netif_running(dev)) {
11093 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011094 err2 = tg3_restart_hw(tp, 1);
11095 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011096 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011097 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011098
11099 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011100
11101 if (irq_sync && !err2)
11102 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011103 }
Michael Chanbc1c7562006-03-20 17:48:03 -080011104 if (tp->link_config.phy_is_low_power)
11105 tg3_set_power_state(tp, PCI_D3hot);
11106
Michael Chan4cafd3f2005-05-29 14:56:34 -070011107}
11108
Linus Torvalds1da177e2005-04-16 15:20:36 -070011109static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11110{
11111 struct mii_ioctl_data *data = if_mii(ifr);
11112 struct tg3 *tp = netdev_priv(dev);
11113 int err;
11114
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011115 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011116 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011117 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
11118 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011119 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11120 return phy_mii_ioctl(phydev, data, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011121 }
11122
Linus Torvalds1da177e2005-04-16 15:20:36 -070011123 switch(cmd) {
11124 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011125 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011126
11127 /* fallthru */
11128 case SIOCGMIIREG: {
11129 u32 mii_regval;
11130
11131 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
11132 break; /* We have no PHY */
11133
Michael Chanbc1c7562006-03-20 17:48:03 -080011134 if (tp->link_config.phy_is_low_power)
11135 return -EAGAIN;
11136
David S. Millerf47c11e2005-06-24 20:18:35 -070011137 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011138 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011139 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011140
11141 data->val_out = mii_regval;
11142
11143 return err;
11144 }
11145
11146 case SIOCSMIIREG:
11147 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
11148 break; /* We have no PHY */
11149
Michael Chanbc1c7562006-03-20 17:48:03 -080011150 if (tp->link_config.phy_is_low_power)
11151 return -EAGAIN;
11152
David S. Millerf47c11e2005-06-24 20:18:35 -070011153 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011154 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011155 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011156
11157 return err;
11158
11159 default:
11160 /* do nothing */
11161 break;
11162 }
11163 return -EOPNOTSUPP;
11164}
11165
11166#if TG3_VLAN_TAG_USED
11167static void tg3_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
11168{
11169 struct tg3 *tp = netdev_priv(dev);
11170
Matt Carlson844b3ee2009-02-25 14:23:56 +000011171 if (!netif_running(dev)) {
11172 tp->vlgrp = grp;
11173 return;
11174 }
11175
11176 tg3_netif_stop(tp);
Michael Chan29315e82006-06-29 20:12:30 -070011177
David S. Millerf47c11e2005-06-24 20:18:35 -070011178 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011179
11180 tp->vlgrp = grp;
11181
11182 /* Update RX_MODE_KEEP_VLAN_TAG bit in RX_MODE register. */
11183 __tg3_set_rx_mode(dev);
11184
Matt Carlson844b3ee2009-02-25 14:23:56 +000011185 tg3_netif_start(tp);
Michael Chan46966542007-07-11 19:47:19 -070011186
11187 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011188}
Linus Torvalds1da177e2005-04-16 15:20:36 -070011189#endif
11190
David S. Miller15f98502005-05-18 22:49:26 -070011191static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11192{
11193 struct tg3 *tp = netdev_priv(dev);
11194
11195 memcpy(ec, &tp->coal, sizeof(*ec));
11196 return 0;
11197}
11198
Michael Chand244c892005-07-05 14:42:33 -070011199static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11200{
11201 struct tg3 *tp = netdev_priv(dev);
11202 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11203 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11204
11205 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
11206 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11207 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11208 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11209 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11210 }
11211
11212 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11213 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11214 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11215 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11216 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11217 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11218 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11219 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11220 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11221 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11222 return -EINVAL;
11223
11224 /* No rx interrupts will be generated if both are zero */
11225 if ((ec->rx_coalesce_usecs == 0) &&
11226 (ec->rx_max_coalesced_frames == 0))
11227 return -EINVAL;
11228
11229 /* No tx interrupts will be generated if both are zero */
11230 if ((ec->tx_coalesce_usecs == 0) &&
11231 (ec->tx_max_coalesced_frames == 0))
11232 return -EINVAL;
11233
11234 /* Only copy relevant parameters, ignore all others. */
11235 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11236 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11237 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11238 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11239 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11240 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11241 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11242 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11243 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11244
11245 if (netif_running(dev)) {
11246 tg3_full_lock(tp, 0);
11247 __tg3_set_coalesce(tp, &tp->coal);
11248 tg3_full_unlock(tp);
11249 }
11250 return 0;
11251}
11252
Jeff Garzik7282d492006-09-13 14:30:00 -040011253static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011254 .get_settings = tg3_get_settings,
11255 .set_settings = tg3_set_settings,
11256 .get_drvinfo = tg3_get_drvinfo,
11257 .get_regs_len = tg3_get_regs_len,
11258 .get_regs = tg3_get_regs,
11259 .get_wol = tg3_get_wol,
11260 .set_wol = tg3_set_wol,
11261 .get_msglevel = tg3_get_msglevel,
11262 .set_msglevel = tg3_set_msglevel,
11263 .nway_reset = tg3_nway_reset,
11264 .get_link = ethtool_op_get_link,
11265 .get_eeprom_len = tg3_get_eeprom_len,
11266 .get_eeprom = tg3_get_eeprom,
11267 .set_eeprom = tg3_set_eeprom,
11268 .get_ringparam = tg3_get_ringparam,
11269 .set_ringparam = tg3_set_ringparam,
11270 .get_pauseparam = tg3_get_pauseparam,
11271 .set_pauseparam = tg3_set_pauseparam,
11272 .get_rx_csum = tg3_get_rx_csum,
11273 .set_rx_csum = tg3_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011274 .set_tx_csum = tg3_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011275 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011276 .set_tso = tg3_set_tso,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011277 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011278 .get_strings = tg3_get_strings,
Michael Chan4009a932005-09-05 17:52:54 -070011279 .phys_id = tg3_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011280 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011281 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011282 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011283 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011284};
11285
11286static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11287{
Michael Chan1b277772006-03-20 22:27:48 -080011288 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011289
11290 tp->nvram_size = EEPROM_CHIP_SIZE;
11291
Matt Carlsone4f34112009-02-25 14:25:00 +000011292 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011293 return;
11294
Michael Chanb16250e2006-09-27 16:10:14 -070011295 if ((magic != TG3_EEPROM_MAGIC) &&
11296 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11297 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011298 return;
11299
11300 /*
11301 * Size the chip by reading offsets at increasing powers of two.
11302 * When we encounter our validation signature, we know the addressing
11303 * has wrapped around, and thus have our chip size.
11304 */
Michael Chan1b277772006-03-20 22:27:48 -080011305 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011306
11307 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011308 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011309 return;
11310
Michael Chan18201802006-03-20 22:29:15 -080011311 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011312 break;
11313
11314 cursize <<= 1;
11315 }
11316
11317 tp->nvram_size = cursize;
11318}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011319
Linus Torvalds1da177e2005-04-16 15:20:36 -070011320static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11321{
11322 u32 val;
11323
Matt Carlsondf259d82009-04-20 06:57:14 +000011324 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
11325 tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011326 return;
11327
11328 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011329 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011330 tg3_get_eeprom_size(tp);
11331 return;
11332 }
11333
Matt Carlson6d348f22009-02-25 14:25:52 +000011334 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011335 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011336 /* This is confusing. We want to operate on the
11337 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11338 * call will read from NVRAM and byteswap the data
11339 * according to the byteswapping settings for all
11340 * other register accesses. This ensures the data we
11341 * want will always reside in the lower 16-bits.
11342 * However, the data in NVRAM is in LE format, which
11343 * means the data from the NVRAM read will always be
11344 * opposite the endianness of the CPU. The 16-bit
11345 * byteswap then brings the data to CPU endianness.
11346 */
11347 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011348 return;
11349 }
11350 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070011351 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011352}
11353
11354static void __devinit tg3_get_nvram_info(struct tg3 *tp)
11355{
11356 u32 nvcfg1;
11357
11358 nvcfg1 = tr32(NVRAM_CFG1);
11359 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
11360 tp->tg3_flags2 |= TG3_FLG2_FLASH;
Matt Carlson8590a602009-08-28 12:29:16 +000011361 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011362 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11363 tw32(NVRAM_CFG1, nvcfg1);
11364 }
11365
Michael Chan4c987482005-09-05 17:52:38 -070011366 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) ||
Michael Chana4e2b342005-10-26 15:46:52 -070011367 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011368 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011369 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
11370 tp->nvram_jedecnum = JEDEC_ATMEL;
11371 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
11372 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11373 break;
11374 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
11375 tp->nvram_jedecnum = JEDEC_ATMEL;
11376 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
11377 break;
11378 case FLASH_VENDOR_ATMEL_EEPROM:
11379 tp->nvram_jedecnum = JEDEC_ATMEL;
11380 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11381 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11382 break;
11383 case FLASH_VENDOR_ST:
11384 tp->nvram_jedecnum = JEDEC_ST;
11385 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
11386 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11387 break;
11388 case FLASH_VENDOR_SAIFUN:
11389 tp->nvram_jedecnum = JEDEC_SAIFUN;
11390 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
11391 break;
11392 case FLASH_VENDOR_SST_SMALL:
11393 case FLASH_VENDOR_SST_LARGE:
11394 tp->nvram_jedecnum = JEDEC_SST;
11395 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
11396 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011397 }
Matt Carlson8590a602009-08-28 12:29:16 +000011398 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011399 tp->nvram_jedecnum = JEDEC_ATMEL;
11400 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
11401 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11402 }
11403}
11404
Matt Carlsona1b950d2009-09-01 13:20:17 +000011405static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
11406{
11407 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
11408 case FLASH_5752PAGE_SIZE_256:
11409 tp->nvram_pagesize = 256;
11410 break;
11411 case FLASH_5752PAGE_SIZE_512:
11412 tp->nvram_pagesize = 512;
11413 break;
11414 case FLASH_5752PAGE_SIZE_1K:
11415 tp->nvram_pagesize = 1024;
11416 break;
11417 case FLASH_5752PAGE_SIZE_2K:
11418 tp->nvram_pagesize = 2048;
11419 break;
11420 case FLASH_5752PAGE_SIZE_4K:
11421 tp->nvram_pagesize = 4096;
11422 break;
11423 case FLASH_5752PAGE_SIZE_264:
11424 tp->nvram_pagesize = 264;
11425 break;
11426 case FLASH_5752PAGE_SIZE_528:
11427 tp->nvram_pagesize = 528;
11428 break;
11429 }
11430}
11431
Michael Chan361b4ac2005-04-21 17:11:21 -070011432static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
11433{
11434 u32 nvcfg1;
11435
11436 nvcfg1 = tr32(NVRAM_CFG1);
11437
Michael Chane6af3012005-04-21 17:12:05 -070011438 /* NVRAM protection for TPM */
11439 if (nvcfg1 & (1 << 27))
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011440 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Michael Chane6af3012005-04-21 17:12:05 -070011441
Michael Chan361b4ac2005-04-21 17:11:21 -070011442 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011443 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
11444 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
11445 tp->nvram_jedecnum = JEDEC_ATMEL;
11446 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11447 break;
11448 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11449 tp->nvram_jedecnum = JEDEC_ATMEL;
11450 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11451 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11452 break;
11453 case FLASH_5752VENDOR_ST_M45PE10:
11454 case FLASH_5752VENDOR_ST_M45PE20:
11455 case FLASH_5752VENDOR_ST_M45PE40:
11456 tp->nvram_jedecnum = JEDEC_ST;
11457 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11458 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11459 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070011460 }
11461
11462 if (tp->tg3_flags2 & TG3_FLG2_FLASH) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000011463 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000011464 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070011465 /* For eeprom, set pagesize to maximum eeprom size */
11466 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11467
11468 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11469 tw32(NVRAM_CFG1, nvcfg1);
11470 }
11471}
11472
Michael Chand3c7b882006-03-23 01:28:25 -080011473static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
11474{
Matt Carlson989a9d22007-05-05 11:51:05 -070011475 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080011476
11477 nvcfg1 = tr32(NVRAM_CFG1);
11478
11479 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070011480 if (nvcfg1 & (1 << 27)) {
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011481 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Matt Carlson989a9d22007-05-05 11:51:05 -070011482 protect = 1;
11483 }
Michael Chand3c7b882006-03-23 01:28:25 -080011484
Matt Carlson989a9d22007-05-05 11:51:05 -070011485 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11486 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011487 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11488 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11489 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11490 case FLASH_5755VENDOR_ATMEL_FLASH_5:
11491 tp->nvram_jedecnum = JEDEC_ATMEL;
11492 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11493 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11494 tp->nvram_pagesize = 264;
11495 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
11496 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
11497 tp->nvram_size = (protect ? 0x3e200 :
11498 TG3_NVRAM_SIZE_512KB);
11499 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
11500 tp->nvram_size = (protect ? 0x1f200 :
11501 TG3_NVRAM_SIZE_256KB);
11502 else
11503 tp->nvram_size = (protect ? 0x1f200 :
11504 TG3_NVRAM_SIZE_128KB);
11505 break;
11506 case FLASH_5752VENDOR_ST_M45PE10:
11507 case FLASH_5752VENDOR_ST_M45PE20:
11508 case FLASH_5752VENDOR_ST_M45PE40:
11509 tp->nvram_jedecnum = JEDEC_ST;
11510 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11511 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11512 tp->nvram_pagesize = 256;
11513 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
11514 tp->nvram_size = (protect ?
11515 TG3_NVRAM_SIZE_64KB :
11516 TG3_NVRAM_SIZE_128KB);
11517 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
11518 tp->nvram_size = (protect ?
11519 TG3_NVRAM_SIZE_64KB :
11520 TG3_NVRAM_SIZE_256KB);
11521 else
11522 tp->nvram_size = (protect ?
11523 TG3_NVRAM_SIZE_128KB :
11524 TG3_NVRAM_SIZE_512KB);
11525 break;
Michael Chand3c7b882006-03-23 01:28:25 -080011526 }
11527}
11528
Michael Chan1b277772006-03-20 22:27:48 -080011529static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
11530{
11531 u32 nvcfg1;
11532
11533 nvcfg1 = tr32(NVRAM_CFG1);
11534
11535 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011536 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
11537 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11538 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
11539 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11540 tp->nvram_jedecnum = JEDEC_ATMEL;
11541 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11542 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080011543
Matt Carlson8590a602009-08-28 12:29:16 +000011544 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11545 tw32(NVRAM_CFG1, nvcfg1);
11546 break;
11547 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11548 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11549 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11550 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11551 tp->nvram_jedecnum = JEDEC_ATMEL;
11552 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11553 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11554 tp->nvram_pagesize = 264;
11555 break;
11556 case FLASH_5752VENDOR_ST_M45PE10:
11557 case FLASH_5752VENDOR_ST_M45PE20:
11558 case FLASH_5752VENDOR_ST_M45PE40:
11559 tp->nvram_jedecnum = JEDEC_ST;
11560 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11561 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11562 tp->nvram_pagesize = 256;
11563 break;
Michael Chan1b277772006-03-20 22:27:48 -080011564 }
11565}
11566
Matt Carlson6b91fa02007-10-10 18:01:09 -070011567static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
11568{
11569 u32 nvcfg1, protect = 0;
11570
11571 nvcfg1 = tr32(NVRAM_CFG1);
11572
11573 /* NVRAM protection for TPM */
11574 if (nvcfg1 & (1 << 27)) {
Matt Carlsonf66a29b2009-11-13 13:03:36 +000011575 tp->tg3_flags3 |= TG3_FLG3_PROTECTED_NVRAM;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011576 protect = 1;
11577 }
11578
11579 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11580 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011581 case FLASH_5761VENDOR_ATMEL_ADB021D:
11582 case FLASH_5761VENDOR_ATMEL_ADB041D:
11583 case FLASH_5761VENDOR_ATMEL_ADB081D:
11584 case FLASH_5761VENDOR_ATMEL_ADB161D:
11585 case FLASH_5761VENDOR_ATMEL_MDB021D:
11586 case FLASH_5761VENDOR_ATMEL_MDB041D:
11587 case FLASH_5761VENDOR_ATMEL_MDB081D:
11588 case FLASH_5761VENDOR_ATMEL_MDB161D:
11589 tp->nvram_jedecnum = JEDEC_ATMEL;
11590 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11591 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11592 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
11593 tp->nvram_pagesize = 256;
11594 break;
11595 case FLASH_5761VENDOR_ST_A_M45PE20:
11596 case FLASH_5761VENDOR_ST_A_M45PE40:
11597 case FLASH_5761VENDOR_ST_A_M45PE80:
11598 case FLASH_5761VENDOR_ST_A_M45PE16:
11599 case FLASH_5761VENDOR_ST_M_M45PE20:
11600 case FLASH_5761VENDOR_ST_M_M45PE40:
11601 case FLASH_5761VENDOR_ST_M_M45PE80:
11602 case FLASH_5761VENDOR_ST_M_M45PE16:
11603 tp->nvram_jedecnum = JEDEC_ST;
11604 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11605 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11606 tp->nvram_pagesize = 256;
11607 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011608 }
11609
11610 if (protect) {
11611 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
11612 } else {
11613 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011614 case FLASH_5761VENDOR_ATMEL_ADB161D:
11615 case FLASH_5761VENDOR_ATMEL_MDB161D:
11616 case FLASH_5761VENDOR_ST_A_M45PE16:
11617 case FLASH_5761VENDOR_ST_M_M45PE16:
11618 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
11619 break;
11620 case FLASH_5761VENDOR_ATMEL_ADB081D:
11621 case FLASH_5761VENDOR_ATMEL_MDB081D:
11622 case FLASH_5761VENDOR_ST_A_M45PE80:
11623 case FLASH_5761VENDOR_ST_M_M45PE80:
11624 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
11625 break;
11626 case FLASH_5761VENDOR_ATMEL_ADB041D:
11627 case FLASH_5761VENDOR_ATMEL_MDB041D:
11628 case FLASH_5761VENDOR_ST_A_M45PE40:
11629 case FLASH_5761VENDOR_ST_M_M45PE40:
11630 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11631 break;
11632 case FLASH_5761VENDOR_ATMEL_ADB021D:
11633 case FLASH_5761VENDOR_ATMEL_MDB021D:
11634 case FLASH_5761VENDOR_ST_A_M45PE20:
11635 case FLASH_5761VENDOR_ST_M_M45PE20:
11636 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11637 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011638 }
11639 }
11640}
11641
Michael Chanb5d37722006-09-27 16:06:21 -070011642static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
11643{
11644 tp->nvram_jedecnum = JEDEC_ATMEL;
11645 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11646 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11647}
11648
Matt Carlson321d32a2008-11-21 17:22:19 -080011649static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
11650{
11651 u32 nvcfg1;
11652
11653 nvcfg1 = tr32(NVRAM_CFG1);
11654
11655 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11656 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11657 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11658 tp->nvram_jedecnum = JEDEC_ATMEL;
11659 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11660 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11661
11662 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11663 tw32(NVRAM_CFG1, nvcfg1);
11664 return;
11665 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11666 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11667 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11668 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11669 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11670 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11671 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11672 tp->nvram_jedecnum = JEDEC_ATMEL;
11673 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11674 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11675
11676 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11677 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11678 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11679 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11680 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11681 break;
11682 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11683 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11684 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11685 break;
11686 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11687 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11688 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11689 break;
11690 }
11691 break;
11692 case FLASH_5752VENDOR_ST_M45PE10:
11693 case FLASH_5752VENDOR_ST_M45PE20:
11694 case FLASH_5752VENDOR_ST_M45PE40:
11695 tp->nvram_jedecnum = JEDEC_ST;
11696 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11697 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11698
11699 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11700 case FLASH_5752VENDOR_ST_M45PE10:
11701 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11702 break;
11703 case FLASH_5752VENDOR_ST_M45PE20:
11704 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11705 break;
11706 case FLASH_5752VENDOR_ST_M45PE40:
11707 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11708 break;
11709 }
11710 break;
11711 default:
Matt Carlsondf259d82009-04-20 06:57:14 +000011712 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM;
Matt Carlson321d32a2008-11-21 17:22:19 -080011713 return;
11714 }
11715
Matt Carlsona1b950d2009-09-01 13:20:17 +000011716 tg3_nvram_get_pagesize(tp, nvcfg1);
11717 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Matt Carlson321d32a2008-11-21 17:22:19 -080011718 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011719}
11720
11721
11722static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
11723{
11724 u32 nvcfg1;
11725
11726 nvcfg1 = tr32(NVRAM_CFG1);
11727
11728 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11729 case FLASH_5717VENDOR_ATMEL_EEPROM:
11730 case FLASH_5717VENDOR_MICRO_EEPROM:
11731 tp->nvram_jedecnum = JEDEC_ATMEL;
11732 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11733 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11734
11735 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11736 tw32(NVRAM_CFG1, nvcfg1);
11737 return;
11738 case FLASH_5717VENDOR_ATMEL_MDB011D:
11739 case FLASH_5717VENDOR_ATMEL_ADB011B:
11740 case FLASH_5717VENDOR_ATMEL_ADB011D:
11741 case FLASH_5717VENDOR_ATMEL_MDB021D:
11742 case FLASH_5717VENDOR_ATMEL_ADB021B:
11743 case FLASH_5717VENDOR_ATMEL_ADB021D:
11744 case FLASH_5717VENDOR_ATMEL_45USPT:
11745 tp->nvram_jedecnum = JEDEC_ATMEL;
11746 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11747 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11748
11749 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11750 case FLASH_5717VENDOR_ATMEL_MDB021D:
11751 case FLASH_5717VENDOR_ATMEL_ADB021B:
11752 case FLASH_5717VENDOR_ATMEL_ADB021D:
11753 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11754 break;
11755 default:
11756 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11757 break;
11758 }
Matt Carlson321d32a2008-11-21 17:22:19 -080011759 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011760 case FLASH_5717VENDOR_ST_M_M25PE10:
11761 case FLASH_5717VENDOR_ST_A_M25PE10:
11762 case FLASH_5717VENDOR_ST_M_M45PE10:
11763 case FLASH_5717VENDOR_ST_A_M45PE10:
11764 case FLASH_5717VENDOR_ST_M_M25PE20:
11765 case FLASH_5717VENDOR_ST_A_M25PE20:
11766 case FLASH_5717VENDOR_ST_M_M45PE20:
11767 case FLASH_5717VENDOR_ST_A_M45PE20:
11768 case FLASH_5717VENDOR_ST_25USPT:
11769 case FLASH_5717VENDOR_ST_45USPT:
11770 tp->nvram_jedecnum = JEDEC_ST;
11771 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
11772 tp->tg3_flags2 |= TG3_FLG2_FLASH;
11773
11774 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11775 case FLASH_5717VENDOR_ST_M_M25PE20:
11776 case FLASH_5717VENDOR_ST_A_M25PE20:
11777 case FLASH_5717VENDOR_ST_M_M45PE20:
11778 case FLASH_5717VENDOR_ST_A_M45PE20:
11779 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11780 break;
11781 default:
11782 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11783 break;
11784 }
Matt Carlson321d32a2008-11-21 17:22:19 -080011785 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000011786 default:
11787 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM;
11788 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080011789 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000011790
11791 tg3_nvram_get_pagesize(tp, nvcfg1);
11792 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
11793 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
Matt Carlson321d32a2008-11-21 17:22:19 -080011794}
11795
Linus Torvalds1da177e2005-04-16 15:20:36 -070011796/* Chips other than 5700/5701 use the NVRAM for fetching info. */
11797static void __devinit tg3_nvram_init(struct tg3 *tp)
11798{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011799 tw32_f(GRC_EEPROM_ADDR,
11800 (EEPROM_ADDR_FSM_RESET |
11801 (EEPROM_DEFAULT_CLOCK_PERIOD <<
11802 EEPROM_ADDR_CLKPERD_SHIFT)));
11803
Michael Chan9d57f012006-12-07 00:23:25 -080011804 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011805
11806 /* Enable seeprom accesses. */
11807 tw32_f(GRC_LOCAL_CTRL,
11808 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
11809 udelay(100);
11810
11811 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
11812 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
11813 tp->tg3_flags |= TG3_FLAG_NVRAM;
11814
Michael Chanec41c7d2006-01-17 02:40:55 -080011815 if (tg3_nvram_lock(tp)) {
11816 printk(KERN_WARNING PFX "%s: Cannot get nvarm lock, "
11817 "tg3_nvram_init failed.\n", tp->dev->name);
11818 return;
11819 }
Michael Chane6af3012005-04-21 17:12:05 -070011820 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011821
Matt Carlson989a9d22007-05-05 11:51:05 -070011822 tp->nvram_size = 0;
11823
Michael Chan361b4ac2005-04-21 17:11:21 -070011824 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
11825 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080011826 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
11827 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070011828 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070011829 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
11830 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080011831 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070011832 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
11833 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070011834 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11835 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000011836 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
11837 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080011838 tg3_get_57780_nvram_info(tp);
Matt Carlsona1b950d2009-09-01 13:20:17 +000011839 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
11840 tg3_get_5717_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070011841 else
11842 tg3_get_nvram_info(tp);
11843
Matt Carlson989a9d22007-05-05 11:51:05 -070011844 if (tp->nvram_size == 0)
11845 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011846
Michael Chane6af3012005-04-21 17:12:05 -070011847 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080011848 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011849
11850 } else {
11851 tp->tg3_flags &= ~(TG3_FLAG_NVRAM | TG3_FLAG_NVRAM_BUFFERED);
11852
11853 tg3_get_eeprom_size(tp);
11854 }
11855}
11856
Linus Torvalds1da177e2005-04-16 15:20:36 -070011857static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
11858 u32 offset, u32 len, u8 *buf)
11859{
11860 int i, j, rc = 0;
11861 u32 val;
11862
11863 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011864 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011865 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011866
11867 addr = offset + i;
11868
11869 memcpy(&data, buf + i, 4);
11870
Matt Carlson62cedd12009-04-20 14:52:29 -070011871 /*
11872 * The SEEPROM interface expects the data to always be opposite
11873 * the native endian format. We accomplish this by reversing
11874 * all the operations that would have been performed on the
11875 * data from a call to tg3_nvram_read_be32().
11876 */
11877 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011878
11879 val = tr32(GRC_EEPROM_ADDR);
11880 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
11881
11882 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
11883 EEPROM_ADDR_READ);
11884 tw32(GRC_EEPROM_ADDR, val |
11885 (0 << EEPROM_ADDR_DEVID_SHIFT) |
11886 (addr & EEPROM_ADDR_ADDR_MASK) |
11887 EEPROM_ADDR_START |
11888 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011889
Michael Chan9d57f012006-12-07 00:23:25 -080011890 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011891 val = tr32(GRC_EEPROM_ADDR);
11892
11893 if (val & EEPROM_ADDR_COMPLETE)
11894 break;
Michael Chan9d57f012006-12-07 00:23:25 -080011895 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011896 }
11897 if (!(val & EEPROM_ADDR_COMPLETE)) {
11898 rc = -EBUSY;
11899 break;
11900 }
11901 }
11902
11903 return rc;
11904}
11905
11906/* offset and length are dword aligned */
11907static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
11908 u8 *buf)
11909{
11910 int ret = 0;
11911 u32 pagesize = tp->nvram_pagesize;
11912 u32 pagemask = pagesize - 1;
11913 u32 nvram_cmd;
11914 u8 *tmp;
11915
11916 tmp = kmalloc(pagesize, GFP_KERNEL);
11917 if (tmp == NULL)
11918 return -ENOMEM;
11919
11920 while (len) {
11921 int j;
Michael Chane6af3012005-04-21 17:12:05 -070011922 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011923
11924 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011925
Linus Torvalds1da177e2005-04-16 15:20:36 -070011926 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011927 ret = tg3_nvram_read_be32(tp, phy_addr + j,
11928 (__be32 *) (tmp + j));
11929 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011930 break;
11931 }
11932 if (ret)
11933 break;
11934
11935 page_off = offset & pagemask;
11936 size = pagesize;
11937 if (len < size)
11938 size = len;
11939
11940 len -= size;
11941
11942 memcpy(tmp + page_off, buf, size);
11943
11944 offset = offset + (pagesize - page_off);
11945
Michael Chane6af3012005-04-21 17:12:05 -070011946 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011947
11948 /*
11949 * Before we can erase the flash page, we need
11950 * to issue a special "write enable" command.
11951 */
11952 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11953
11954 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11955 break;
11956
11957 /* Erase the target page */
11958 tw32(NVRAM_ADDR, phy_addr);
11959
11960 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
11961 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
11962
11963 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11964 break;
11965
11966 /* Issue another write enable to start the write. */
11967 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11968
11969 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11970 break;
11971
11972 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011973 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011974
Al Virob9fc7dc2007-12-17 22:59:57 -080011975 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000011976
Al Virob9fc7dc2007-12-17 22:59:57 -080011977 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011978
11979 tw32(NVRAM_ADDR, phy_addr + j);
11980
11981 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
11982 NVRAM_CMD_WR;
11983
11984 if (j == 0)
11985 nvram_cmd |= NVRAM_CMD_FIRST;
11986 else if (j == (pagesize - 4))
11987 nvram_cmd |= NVRAM_CMD_LAST;
11988
11989 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
11990 break;
11991 }
11992 if (ret)
11993 break;
11994 }
11995
11996 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11997 tg3_nvram_exec_cmd(tp, nvram_cmd);
11998
11999 kfree(tmp);
12000
12001 return ret;
12002}
12003
12004/* offset and length are dword aligned */
12005static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
12006 u8 *buf)
12007{
12008 int i, ret = 0;
12009
12010 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012011 u32 page_off, phy_addr, nvram_cmd;
12012 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012013
12014 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080012015 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012016
12017 page_off = offset % tp->nvram_pagesize;
12018
Michael Chan18201802006-03-20 22:29:15 -080012019 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012020
12021 tw32(NVRAM_ADDR, phy_addr);
12022
12023 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
12024
12025 if ((page_off == 0) || (i == 0))
12026 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070012027 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012028 nvram_cmd |= NVRAM_CMD_LAST;
12029
12030 if (i == (len - 4))
12031 nvram_cmd |= NVRAM_CMD_LAST;
12032
Matt Carlson321d32a2008-11-21 17:22:19 -080012033 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
12034 !(tp->tg3_flags3 & TG3_FLG3_5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070012035 (tp->nvram_jedecnum == JEDEC_ST) &&
12036 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012037
12038 if ((ret = tg3_nvram_exec_cmd(tp,
12039 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12040 NVRAM_CMD_DONE)))
12041
12042 break;
12043 }
12044 if (!(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
12045 /* We always do complete word writes to eeprom. */
12046 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12047 }
12048
12049 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12050 break;
12051 }
12052 return ret;
12053}
12054
12055/* offset and length are dword aligned */
12056static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12057{
12058 int ret;
12059
Linus Torvalds1da177e2005-04-16 15:20:36 -070012060 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070012061 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12062 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012063 udelay(40);
12064 }
12065
12066 if (!(tp->tg3_flags & TG3_FLAG_NVRAM)) {
12067 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
12068 }
12069 else {
12070 u32 grc_mode;
12071
Michael Chanec41c7d2006-01-17 02:40:55 -080012072 ret = tg3_nvram_lock(tp);
12073 if (ret)
12074 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012075
Michael Chane6af3012005-04-21 17:12:05 -070012076 tg3_enable_nvram_access(tp);
12077 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Matt Carlsonf66a29b2009-11-13 13:03:36 +000012078 !(tp->tg3_flags3 & TG3_FLG3_PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012079 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012080
12081 grc_mode = tr32(GRC_MODE);
12082 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12083
12084 if ((tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) ||
12085 !(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
12086
12087 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12088 buf);
12089 }
12090 else {
12091 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12092 buf);
12093 }
12094
12095 grc_mode = tr32(GRC_MODE);
12096 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12097
Michael Chane6af3012005-04-21 17:12:05 -070012098 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012099 tg3_nvram_unlock(tp);
12100 }
12101
12102 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070012103 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012104 udelay(40);
12105 }
12106
12107 return ret;
12108}
12109
12110struct subsys_tbl_ent {
12111 u16 subsys_vendor, subsys_devid;
12112 u32 phy_id;
12113};
12114
12115static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
12116 /* Broadcom boards. */
12117 { PCI_VENDOR_ID_BROADCOM, 0x1644, PHY_ID_BCM5401 }, /* BCM95700A6 */
12118 { PCI_VENDOR_ID_BROADCOM, 0x0001, PHY_ID_BCM5701 }, /* BCM95701A5 */
12119 { PCI_VENDOR_ID_BROADCOM, 0x0002, PHY_ID_BCM8002 }, /* BCM95700T6 */
12120 { PCI_VENDOR_ID_BROADCOM, 0x0003, 0 }, /* BCM95700A9 */
12121 { PCI_VENDOR_ID_BROADCOM, 0x0005, PHY_ID_BCM5701 }, /* BCM95701T1 */
12122 { PCI_VENDOR_ID_BROADCOM, 0x0006, PHY_ID_BCM5701 }, /* BCM95701T8 */
12123 { PCI_VENDOR_ID_BROADCOM, 0x0007, 0 }, /* BCM95701A7 */
12124 { PCI_VENDOR_ID_BROADCOM, 0x0008, PHY_ID_BCM5701 }, /* BCM95701A10 */
12125 { PCI_VENDOR_ID_BROADCOM, 0x8008, PHY_ID_BCM5701 }, /* BCM95701A12 */
12126 { PCI_VENDOR_ID_BROADCOM, 0x0009, PHY_ID_BCM5703 }, /* BCM95703Ax1 */
12127 { PCI_VENDOR_ID_BROADCOM, 0x8009, PHY_ID_BCM5703 }, /* BCM95703Ax2 */
12128
12129 /* 3com boards. */
12130 { PCI_VENDOR_ID_3COM, 0x1000, PHY_ID_BCM5401 }, /* 3C996T */
12131 { PCI_VENDOR_ID_3COM, 0x1006, PHY_ID_BCM5701 }, /* 3C996BT */
12132 { PCI_VENDOR_ID_3COM, 0x1004, 0 }, /* 3C996SX */
12133 { PCI_VENDOR_ID_3COM, 0x1007, PHY_ID_BCM5701 }, /* 3C1000T */
12134 { PCI_VENDOR_ID_3COM, 0x1008, PHY_ID_BCM5701 }, /* 3C940BR01 */
12135
12136 /* DELL boards. */
12137 { PCI_VENDOR_ID_DELL, 0x00d1, PHY_ID_BCM5401 }, /* VIPER */
12138 { PCI_VENDOR_ID_DELL, 0x0106, PHY_ID_BCM5401 }, /* JAGUAR */
12139 { PCI_VENDOR_ID_DELL, 0x0109, PHY_ID_BCM5411 }, /* MERLOT */
12140 { PCI_VENDOR_ID_DELL, 0x010a, PHY_ID_BCM5411 }, /* SLIM_MERLOT */
12141
12142 /* Compaq boards. */
12143 { PCI_VENDOR_ID_COMPAQ, 0x007c, PHY_ID_BCM5701 }, /* BANSHEE */
12144 { PCI_VENDOR_ID_COMPAQ, 0x009a, PHY_ID_BCM5701 }, /* BANSHEE_2 */
12145 { PCI_VENDOR_ID_COMPAQ, 0x007d, 0 }, /* CHANGELING */
12146 { PCI_VENDOR_ID_COMPAQ, 0x0085, PHY_ID_BCM5701 }, /* NC7780 */
12147 { PCI_VENDOR_ID_COMPAQ, 0x0099, PHY_ID_BCM5701 }, /* NC7780_2 */
12148
12149 /* IBM boards. */
12150 { PCI_VENDOR_ID_IBM, 0x0281, 0 } /* IBM??? */
12151};
12152
12153static inline struct subsys_tbl_ent *lookup_by_subsys(struct tg3 *tp)
12154{
12155 int i;
12156
12157 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
12158 if ((subsys_id_to_phy_id[i].subsys_vendor ==
12159 tp->pdev->subsystem_vendor) &&
12160 (subsys_id_to_phy_id[i].subsys_devid ==
12161 tp->pdev->subsystem_device))
12162 return &subsys_id_to_phy_id[i];
12163 }
12164 return NULL;
12165}
12166
Michael Chan7d0c41e2005-04-21 17:06:20 -070012167static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012168{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012169 u32 val;
Michael Chancaf636c72006-03-22 01:05:31 -080012170 u16 pmcsr;
12171
12172 /* On some early chips the SRAM cannot be accessed in D3hot state,
12173 * so need make sure we're in D0.
12174 */
12175 pci_read_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, &pmcsr);
12176 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
12177 pci_write_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, pmcsr);
12178 msleep(1);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012179
12180 /* Make sure register accesses (indirect or otherwise)
12181 * will function correctly.
12182 */
12183 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12184 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012185
David S. Millerf49639e2006-06-09 11:58:36 -070012186 /* The memory arbiter has to be enabled in order for SRAM accesses
12187 * to succeed. Normally on powerup the tg3 chip firmware will make
12188 * sure it is enabled, but other entities such as system netboot
12189 * code might disable it.
12190 */
12191 val = tr32(MEMARB_MODE);
12192 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
12193
Linus Torvalds1da177e2005-04-16 15:20:36 -070012194 tp->phy_id = PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012195 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12196
Gary Zambranoa85feb82007-05-05 11:52:19 -070012197 /* Assume an onboard device and WOL capable by default. */
12198 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT | TG3_FLAG_WOL_CAP;
David S. Miller72b845e2006-03-14 14:11:48 -080012199
Michael Chanb5d37722006-09-27 16:06:21 -070012200 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080012201 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Michael Chanb5d37722006-09-27 16:06:21 -070012202 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012203 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
12204 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012205 val = tr32(VCPU_CFGSHDW);
12206 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Matt Carlson8ed5d972007-05-07 00:25:49 -070012207 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
Matt Carlson0527ba32007-10-10 18:03:30 -070012208 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Matt Carlson20232762008-12-21 20:18:56 -080012209 (val & VCPU_CFGSHDW_WOL_MAGPKT))
Matt Carlson0527ba32007-10-10 18:03:30 -070012210 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012211 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070012212 }
12213
Linus Torvalds1da177e2005-04-16 15:20:36 -070012214 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
12215 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
12216 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070012217 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012218 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012219
12220 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
12221 tp->nic_sram_data_cfg = nic_cfg;
12222
12223 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
12224 ver >>= NIC_SRAM_DATA_VER_SHIFT;
12225 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
12226 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
12227 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703) &&
12228 (ver > 0) && (ver < 0x100))
12229 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
12230
Matt Carlsona9daf362008-05-25 23:49:44 -070012231 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
12232 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
12233
Linus Torvalds1da177e2005-04-16 15:20:36 -070012234 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
12235 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
12236 eeprom_phy_serdes = 1;
12237
12238 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
12239 if (nic_phy_id != 0) {
12240 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
12241 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
12242
12243 eeprom_phy_id = (id1 >> 16) << 10;
12244 eeprom_phy_id |= (id2 & 0xfc00) << 16;
12245 eeprom_phy_id |= (id2 & 0x03ff) << 0;
12246 } else
12247 eeprom_phy_id = 0;
12248
Michael Chan7d0c41e2005-04-21 17:06:20 -070012249 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070012250 if (eeprom_phy_serdes) {
Matt Carlsond1ec96a2010-01-12 10:11:38 +000012251 if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
12252 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Michael Chan747e8f82005-07-25 12:33:22 -070012253 tp->tg3_flags2 |= TG3_FLG2_MII_SERDES;
12254 else
12255 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
12256 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070012257
John W. Linvillecbf46852005-04-21 17:01:29 -070012258 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012259 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
12260 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070012261 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070012262 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
12263
12264 switch (led_cfg) {
12265 default:
12266 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
12267 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12268 break;
12269
12270 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
12271 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12272 break;
12273
12274 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
12275 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070012276
12277 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
12278 * read on some older 5700/5701 bootcode.
12279 */
12280 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12281 ASIC_REV_5700 ||
12282 GET_ASIC_REV(tp->pci_chip_rev_id) ==
12283 ASIC_REV_5701)
12284 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12285
Linus Torvalds1da177e2005-04-16 15:20:36 -070012286 break;
12287
12288 case SHASTA_EXT_LED_SHARED:
12289 tp->led_ctrl = LED_CTRL_MODE_SHARED;
12290 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
12291 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
12292 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12293 LED_CTRL_MODE_PHY_2);
12294 break;
12295
12296 case SHASTA_EXT_LED_MAC:
12297 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
12298 break;
12299
12300 case SHASTA_EXT_LED_COMBO:
12301 tp->led_ctrl = LED_CTRL_MODE_COMBO;
12302 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
12303 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12304 LED_CTRL_MODE_PHY_2);
12305 break;
12306
Stephen Hemminger855e1112008-04-16 16:37:28 -070012307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012308
12309 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12310 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
12311 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
12312 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12313
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012314 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
12315 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080012316
Michael Chan9d26e212006-12-07 00:21:14 -080012317 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012318 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012319 if ((tp->pdev->subsystem_vendor ==
12320 PCI_VENDOR_ID_ARIMA) &&
12321 (tp->pdev->subsystem_device == 0x205a ||
12322 tp->pdev->subsystem_device == 0x2063))
12323 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
12324 } else {
David S. Millerf49639e2006-06-09 11:58:36 -070012325 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080012326 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
12327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012328
12329 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
12330 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
John W. Linvillecbf46852005-04-21 17:01:29 -070012331 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012332 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
12333 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012334
12335 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
12336 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
Matt Carlson0d3031d2007-10-10 18:02:43 -070012337 tp->tg3_flags3 |= TG3_FLG3_ENABLE_APE;
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012338
Gary Zambranoa85feb82007-05-05 11:52:19 -070012339 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES &&
12340 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
12341 tp->tg3_flags &= ~TG3_FLAG_WOL_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012342
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070012343 if ((tp->tg3_flags & TG3_FLAG_WOL_CAP) &&
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012344 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE))
Matt Carlson0527ba32007-10-10 18:03:30 -070012345 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
12346
Linus Torvalds1da177e2005-04-16 15:20:36 -070012347 if (cfg2 & (1 << 17))
12348 tp->tg3_flags2 |= TG3_FLG2_CAPACITIVE_COUPLING;
12349
12350 /* serdes signal pre-emphasis in register 0x590 set by */
12351 /* bootcode if bit 18 is set */
12352 if (cfg2 & (1 << 18))
12353 tp->tg3_flags2 |= TG3_FLG2_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070012354
Matt Carlson321d32a2008-11-21 17:22:19 -080012355 if (((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
12356 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080012357 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
12358 tp->tg3_flags3 |= TG3_FLG3_PHY_ENABLE_APD;
12359
Matt Carlson8ed5d972007-05-07 00:25:49 -070012360 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
12361 u32 cfg3;
12362
12363 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
12364 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
12365 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
12366 }
Matt Carlsona9daf362008-05-25 23:49:44 -070012367
Matt Carlson14417062010-02-17 15:16:59 +000012368 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
12369 tp->tg3_flags3 |= TG3_FLG3_RGMII_INBAND_DISABLE;
Matt Carlsona9daf362008-05-25 23:49:44 -070012370 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
12371 tp->tg3_flags3 |= TG3_FLG3_RGMII_EXT_IBND_RX_EN;
12372 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
12373 tp->tg3_flags3 |= TG3_FLG3_RGMII_EXT_IBND_TX_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012374 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012375done:
12376 device_init_wakeup(&tp->pdev->dev, tp->tg3_flags & TG3_FLAG_WOL_CAP);
12377 device_set_wakeup_enable(&tp->pdev->dev,
12378 tp->tg3_flags & TG3_FLAG_WOL_ENABLE);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012379}
12380
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012381static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
12382{
12383 int i;
12384 u32 val;
12385
12386 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
12387 tw32(OTP_CTRL, cmd);
12388
12389 /* Wait for up to 1 ms for command to execute. */
12390 for (i = 0; i < 100; i++) {
12391 val = tr32(OTP_STATUS);
12392 if (val & OTP_STATUS_CMD_DONE)
12393 break;
12394 udelay(10);
12395 }
12396
12397 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
12398}
12399
12400/* Read the gphy configuration from the OTP region of the chip. The gphy
12401 * configuration is a 32-bit value that straddles the alignment boundary.
12402 * We do two 32-bit reads and then shift and merge the results.
12403 */
12404static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
12405{
12406 u32 bhalf_otp, thalf_otp;
12407
12408 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
12409
12410 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
12411 return 0;
12412
12413 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
12414
12415 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12416 return 0;
12417
12418 thalf_otp = tr32(OTP_READ_DATA);
12419
12420 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
12421
12422 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12423 return 0;
12424
12425 bhalf_otp = tr32(OTP_READ_DATA);
12426
12427 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
12428}
12429
Michael Chan7d0c41e2005-04-21 17:06:20 -070012430static int __devinit tg3_phy_probe(struct tg3 *tp)
12431{
12432 u32 hw_phy_id_1, hw_phy_id_2;
12433 u32 hw_phy_id, hw_phy_id_masked;
12434 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012435
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012436 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)
12437 return tg3_phy_init(tp);
12438
Linus Torvalds1da177e2005-04-16 15:20:36 -070012439 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010012440 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012441 */
12442 err = 0;
Matt Carlson0d3031d2007-10-10 18:02:43 -070012443 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
12444 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012445 hw_phy_id = hw_phy_id_masked = PHY_ID_INVALID;
12446 } else {
12447 /* Now read the physical PHY_ID from the chip and verify
12448 * that it is sane. If it doesn't look good, we fall back
12449 * to either the hard-coded table based PHY_ID and failing
12450 * that the value found in the eeprom area.
12451 */
12452 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
12453 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
12454
12455 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
12456 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
12457 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
12458
12459 hw_phy_id_masked = hw_phy_id & PHY_ID_MASK;
12460 }
12461
12462 if (!err && KNOWN_PHY_ID(hw_phy_id_masked)) {
12463 tp->phy_id = hw_phy_id;
12464 if (hw_phy_id_masked == PHY_ID_BCM8002)
12465 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070012466 else
12467 tp->tg3_flags2 &= ~TG3_FLG2_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012468 } else {
Michael Chan7d0c41e2005-04-21 17:06:20 -070012469 if (tp->phy_id != PHY_ID_INVALID) {
12470 /* Do nothing, phy ID already set up in
12471 * tg3_get_eeprom_hw_cfg().
12472 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012473 } else {
12474 struct subsys_tbl_ent *p;
12475
12476 /* No eeprom signature? Try the hardcoded
12477 * subsys device table.
12478 */
12479 p = lookup_by_subsys(tp);
12480 if (!p)
12481 return -ENODEV;
12482
12483 tp->phy_id = p->phy_id;
12484 if (!tp->phy_id ||
12485 tp->phy_id == PHY_ID_BCM8002)
12486 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
12487 }
12488 }
12489
Michael Chan747e8f82005-07-25 12:33:22 -070012490 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) &&
Matt Carlson0d3031d2007-10-10 18:02:43 -070012491 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012492 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan3600d912006-12-07 00:21:48 -080012493 u32 bmsr, adv_reg, tg3_ctrl, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012494
12495 tg3_readphy(tp, MII_BMSR, &bmsr);
12496 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
12497 (bmsr & BMSR_LSTATUS))
12498 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012499
Linus Torvalds1da177e2005-04-16 15:20:36 -070012500 err = tg3_phy_reset(tp);
12501 if (err)
12502 return err;
12503
12504 adv_reg = (ADVERTISE_10HALF | ADVERTISE_10FULL |
12505 ADVERTISE_100HALF | ADVERTISE_100FULL |
12506 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
12507 tg3_ctrl = 0;
12508 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
12509 tg3_ctrl = (MII_TG3_CTRL_ADV_1000_HALF |
12510 MII_TG3_CTRL_ADV_1000_FULL);
12511 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
12512 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
12513 tg3_ctrl |= (MII_TG3_CTRL_AS_MASTER |
12514 MII_TG3_CTRL_ENABLE_AS_MASTER);
12515 }
12516
Michael Chan3600d912006-12-07 00:21:48 -080012517 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
12518 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
12519 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
12520 if (!tg3_copper_is_advertising_all(tp, mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012521 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
12522
12523 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
12524 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12525
12526 tg3_writephy(tp, MII_BMCR,
12527 BMCR_ANENABLE | BMCR_ANRESTART);
12528 }
12529 tg3_phy_set_wirespeed(tp);
12530
12531 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
12532 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
12533 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12534 }
12535
12536skip_phy_reset:
12537 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
12538 err = tg3_init_5401phy_dsp(tp);
12539 if (err)
12540 return err;
12541 }
12542
12543 if (!err && ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401)) {
12544 err = tg3_init_5401phy_dsp(tp);
12545 }
12546
Michael Chan747e8f82005-07-25 12:33:22 -070012547 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012548 tp->link_config.advertising =
12549 (ADVERTISED_1000baseT_Half |
12550 ADVERTISED_1000baseT_Full |
12551 ADVERTISED_Autoneg |
12552 ADVERTISED_FIBRE);
12553 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
12554 tp->link_config.advertising &=
12555 ~(ADVERTISED_1000baseT_Half |
12556 ADVERTISED_1000baseT_Full);
12557
12558 return err;
12559}
12560
12561static void __devinit tg3_read_partno(struct tg3 *tp)
12562{
Matt Carlson141518c2009-12-03 08:36:22 +000012563 unsigned char vpd_data[TG3_NVM_VPD_LEN]; /* in little-endian format */
Michael Chanaf2c6a42006-11-07 14:57:51 -080012564 unsigned int i;
Michael Chan1b277772006-03-20 22:27:48 -080012565 u32 magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012566
Matt Carlsondf259d82009-04-20 06:57:14 +000012567 if ((tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) ||
12568 tg3_nvram_read(tp, 0x0, &magic))
David S. Millerf49639e2006-06-09 11:58:36 -070012569 goto out_not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012570
Michael Chan18201802006-03-20 22:29:15 -080012571 if (magic == TG3_EEPROM_MAGIC) {
Matt Carlson141518c2009-12-03 08:36:22 +000012572 for (i = 0; i < TG3_NVM_VPD_LEN; i += 4) {
Michael Chan1b277772006-03-20 22:27:48 -080012573 u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012574
Matt Carlson6d348f22009-02-25 14:25:52 +000012575 /* The data is in little-endian format in NVRAM.
12576 * Use the big-endian read routines to preserve
12577 * the byte order as it exists in NVRAM.
12578 */
Matt Carlson141518c2009-12-03 08:36:22 +000012579 if (tg3_nvram_read_be32(tp, TG3_NVM_VPD_OFF + i, &tmp))
Michael Chan1b277772006-03-20 22:27:48 -080012580 goto out_not_found;
12581
Matt Carlson6d348f22009-02-25 14:25:52 +000012582 memcpy(&vpd_data[i], &tmp, sizeof(tmp));
Michael Chan1b277772006-03-20 22:27:48 -080012583 }
12584 } else {
Matt Carlson94c982b2009-12-03 08:36:23 +000012585 ssize_t cnt;
12586 unsigned int pos = 0, i = 0;
Michael Chan1b277772006-03-20 22:27:48 -080012587
Matt Carlson94c982b2009-12-03 08:36:23 +000012588 for (; pos < TG3_NVM_VPD_LEN && i < 3; i++, pos += cnt) {
12589 cnt = pci_read_vpd(tp->pdev, pos,
12590 TG3_NVM_VPD_LEN - pos,
12591 &vpd_data[pos]);
12592 if (cnt == -ETIMEDOUT || -EINTR)
12593 cnt = 0;
12594 else if (cnt < 0)
David S. Millerf49639e2006-06-09 11:58:36 -070012595 goto out_not_found;
Michael Chan1b277772006-03-20 22:27:48 -080012596 }
Matt Carlson94c982b2009-12-03 08:36:23 +000012597 if (pos != TG3_NVM_VPD_LEN)
12598 goto out_not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012599 }
12600
12601 /* Now parse and find the part number. */
Matt Carlson141518c2009-12-03 08:36:22 +000012602 for (i = 0; i < TG3_NVM_VPD_LEN - 2; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012603 unsigned char val = vpd_data[i];
Michael Chanaf2c6a42006-11-07 14:57:51 -080012604 unsigned int block_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012605
12606 if (val == 0x82 || val == 0x91) {
12607 i = (i + 3 +
12608 (vpd_data[i + 1] +
12609 (vpd_data[i + 2] << 8)));
12610 continue;
12611 }
12612
12613 if (val != 0x90)
12614 goto out_not_found;
12615
12616 block_end = (i + 3 +
12617 (vpd_data[i + 1] +
12618 (vpd_data[i + 2] << 8)));
12619 i += 3;
Michael Chanaf2c6a42006-11-07 14:57:51 -080012620
Matt Carlson141518c2009-12-03 08:36:22 +000012621 if (block_end > TG3_NVM_VPD_LEN)
Michael Chanaf2c6a42006-11-07 14:57:51 -080012622 goto out_not_found;
12623
12624 while (i < (block_end - 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012625 if (vpd_data[i + 0] == 'P' &&
12626 vpd_data[i + 1] == 'N') {
12627 int partno_len = vpd_data[i + 2];
12628
Michael Chanaf2c6a42006-11-07 14:57:51 -080012629 i += 3;
Matt Carlson141518c2009-12-03 08:36:22 +000012630 if (partno_len > TG3_BPN_SIZE ||
12631 (partno_len + i) > TG3_NVM_VPD_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012632 goto out_not_found;
12633
12634 memcpy(tp->board_part_number,
Michael Chanaf2c6a42006-11-07 14:57:51 -080012635 &vpd_data[i], partno_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012636
12637 /* Success. */
12638 return;
12639 }
Michael Chanaf2c6a42006-11-07 14:57:51 -080012640 i += 3 + vpd_data[i + 2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070012641 }
12642
12643 /* Part number not found. */
12644 goto out_not_found;
12645 }
12646
12647out_not_found:
Michael Chanb5d37722006-09-27 16:06:21 -070012648 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12649 strcpy(tp->board_part_number, "BCM95906");
Matt Carlsondf259d82009-04-20 06:57:14 +000012650 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12651 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
12652 strcpy(tp->board_part_number, "BCM57780");
12653 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12654 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
12655 strcpy(tp->board_part_number, "BCM57760");
12656 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12657 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
12658 strcpy(tp->board_part_number, "BCM57790");
Matt Carlson5e7ccf22009-08-25 10:08:42 +000012659 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
12660 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
12661 strcpy(tp->board_part_number, "BCM57788");
Matt Carlsonb474eca2010-02-17 15:16:58 +000012662 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12663 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
12664 strcpy(tp->board_part_number, "BCM57761");
12665 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12666 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
Matt Carlsonb703df62009-12-03 08:36:21 +000012667 strcpy(tp->board_part_number, "BCM57765");
Matt Carlsonb474eca2010-02-17 15:16:58 +000012668 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12669 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
12670 strcpy(tp->board_part_number, "BCM57781");
12671 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12672 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
12673 strcpy(tp->board_part_number, "BCM57785");
12674 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12675 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
12676 strcpy(tp->board_part_number, "BCM57791");
12677 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12678 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
12679 strcpy(tp->board_part_number, "BCM57795");
Michael Chanb5d37722006-09-27 16:06:21 -070012680 else
12681 strcpy(tp->board_part_number, "none");
Linus Torvalds1da177e2005-04-16 15:20:36 -070012682}
12683
Matt Carlson9c8a6202007-10-21 16:16:08 -070012684static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
12685{
12686 u32 val;
12687
Matt Carlsone4f34112009-02-25 14:25:00 +000012688 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012689 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000012690 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012691 val != 0)
12692 return 0;
12693
12694 return 1;
12695}
12696
Matt Carlsonacd9c112009-02-25 14:26:33 +000012697static void __devinit tg3_read_bc_ver(struct tg3 *tp)
12698{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012699 u32 val, offset, start, ver_offset;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012700 int i;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012701 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012702
12703 if (tg3_nvram_read(tp, 0xc, &offset) ||
12704 tg3_nvram_read(tp, 0x4, &start))
12705 return;
12706
12707 offset = tg3_nvram_logical_addr(tp, offset);
12708
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012709 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000012710 return;
12711
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012712 if ((val & 0xfc000000) == 0x0c000000) {
12713 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000012714 return;
12715
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000012716 if (val == 0)
12717 newver = true;
12718 }
12719
12720 if (newver) {
12721 if (tg3_nvram_read(tp, offset + 8, &ver_offset))
12722 return;
12723
12724 offset = offset + ver_offset - start;
12725 for (i = 0; i < 16; i += 4) {
12726 __be32 v;
12727 if (tg3_nvram_read_be32(tp, offset + i, &v))
12728 return;
12729
12730 memcpy(tp->fw_ver + i, &v, sizeof(v));
12731 }
12732 } else {
12733 u32 major, minor;
12734
12735 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
12736 return;
12737
12738 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
12739 TG3_NVM_BCVER_MAJSFT;
12740 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
12741 snprintf(&tp->fw_ver[0], 32, "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000012742 }
12743}
12744
Matt Carlsona6f6cb12009-02-25 14:27:43 +000012745static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
12746{
12747 u32 val, major, minor;
12748
12749 /* Use native endian representation */
12750 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
12751 return;
12752
12753 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
12754 TG3_NVM_HWSB_CFG1_MAJSFT;
12755 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
12756 TG3_NVM_HWSB_CFG1_MINSFT;
12757
12758 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
12759}
12760
Matt Carlsondfe00d72008-11-21 17:19:41 -080012761static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
12762{
12763 u32 offset, major, minor, build;
12764
12765 tp->fw_ver[0] = 's';
12766 tp->fw_ver[1] = 'b';
12767 tp->fw_ver[2] = '\0';
12768
12769 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
12770 return;
12771
12772 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
12773 case TG3_EEPROM_SB_REVISION_0:
12774 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
12775 break;
12776 case TG3_EEPROM_SB_REVISION_2:
12777 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
12778 break;
12779 case TG3_EEPROM_SB_REVISION_3:
12780 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
12781 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000012782 case TG3_EEPROM_SB_REVISION_4:
12783 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
12784 break;
12785 case TG3_EEPROM_SB_REVISION_5:
12786 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
12787 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080012788 default:
12789 return;
12790 }
12791
Matt Carlsone4f34112009-02-25 14:25:00 +000012792 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080012793 return;
12794
12795 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
12796 TG3_EEPROM_SB_EDH_BLD_SHFT;
12797 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
12798 TG3_EEPROM_SB_EDH_MAJ_SHFT;
12799 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
12800
12801 if (minor > 99 || build > 26)
12802 return;
12803
12804 snprintf(&tp->fw_ver[2], 30, " v%d.%02d", major, minor);
12805
12806 if (build > 0) {
12807 tp->fw_ver[8] = 'a' + build - 1;
12808 tp->fw_ver[9] = '\0';
12809 }
12810}
12811
Matt Carlsonacd9c112009-02-25 14:26:33 +000012812static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080012813{
12814 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000012815 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070012816
12817 for (offset = TG3_NVM_DIR_START;
12818 offset < TG3_NVM_DIR_END;
12819 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000012820 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012821 return;
12822
12823 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
12824 break;
12825 }
12826
12827 if (offset == TG3_NVM_DIR_END)
12828 return;
12829
12830 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
12831 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000012832 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012833 return;
12834
Matt Carlsone4f34112009-02-25 14:25:00 +000012835 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070012836 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000012837 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012838 return;
12839
12840 offset += val - start;
12841
Matt Carlsonacd9c112009-02-25 14:26:33 +000012842 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012843
Matt Carlsonacd9c112009-02-25 14:26:33 +000012844 tp->fw_ver[vlen++] = ',';
12845 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070012846
12847 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012848 __be32 v;
12849 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070012850 return;
12851
Al Virob9fc7dc2007-12-17 22:59:57 -080012852 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012853
Matt Carlsonacd9c112009-02-25 14:26:33 +000012854 if (vlen > TG3_VER_SIZE - sizeof(v)) {
12855 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012856 break;
12857 }
12858
Matt Carlsonacd9c112009-02-25 14:26:33 +000012859 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
12860 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012861 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000012862}
12863
Matt Carlson7fd76442009-02-25 14:27:20 +000012864static void __devinit tg3_read_dash_ver(struct tg3 *tp)
12865{
12866 int vlen;
12867 u32 apedata;
12868
12869 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) ||
12870 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
12871 return;
12872
12873 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
12874 if (apedata != APE_SEG_SIG_MAGIC)
12875 return;
12876
12877 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
12878 if (!(apedata & APE_FW_STATUS_READY))
12879 return;
12880
12881 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
12882
12883 vlen = strlen(tp->fw_ver);
12884
12885 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " DASH v%d.%d.%d.%d",
12886 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
12887 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
12888 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
12889 (apedata & APE_FW_VERSION_BLDMSK));
12890}
12891
Matt Carlsonacd9c112009-02-25 14:26:33 +000012892static void __devinit tg3_read_fw_ver(struct tg3 *tp)
12893{
12894 u32 val;
12895
Matt Carlsondf259d82009-04-20 06:57:14 +000012896 if (tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) {
12897 tp->fw_ver[0] = 's';
12898 tp->fw_ver[1] = 'b';
12899 tp->fw_ver[2] = '\0';
12900
12901 return;
12902 }
12903
Matt Carlsonacd9c112009-02-25 14:26:33 +000012904 if (tg3_nvram_read(tp, 0, &val))
12905 return;
12906
12907 if (val == TG3_EEPROM_MAGIC)
12908 tg3_read_bc_ver(tp);
12909 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
12910 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000012911 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
12912 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000012913 else
12914 return;
12915
12916 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
12917 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
12918 return;
12919
12920 tg3_read_mgmtfw_ver(tp);
Matt Carlson9c8a6202007-10-21 16:16:08 -070012921
12922 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080012923}
12924
Michael Chan7544b092007-05-05 13:08:32 -070012925static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
12926
Linus Torvalds1da177e2005-04-16 15:20:36 -070012927static int __devinit tg3_get_invariants(struct tg3 *tp)
12928{
12929 static struct pci_device_id write_reorder_chipsets[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012930 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
12931 PCI_DEVICE_ID_AMD_FE_GATE_700C) },
John W. Linvillec165b002006-07-08 13:28:53 -070012932 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
12933 PCI_DEVICE_ID_AMD_8131_BRIDGE) },
Michael Chan399de502005-10-03 14:02:39 -070012934 { PCI_DEVICE(PCI_VENDOR_ID_VIA,
12935 PCI_DEVICE_ID_VIA_8385_0) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012936 { },
12937 };
12938 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012939 u32 pci_state_reg, grc_misc_cfg;
12940 u32 val;
12941 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080012942 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012943
Linus Torvalds1da177e2005-04-16 15:20:36 -070012944 /* Force memory write invalidate off. If we leave it on,
12945 * then on 5700_BX chips we have to enable a workaround.
12946 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
12947 * to match the cacheline size. The Broadcom driver have this
12948 * workaround but turns MWI off all the times so never uses
12949 * it. This seems to suggest that the workaround is insufficient.
12950 */
12951 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
12952 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
12953 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
12954
12955 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
12956 * has the register indirect write enable bit set before
12957 * we try to access any of the MMIO registers. It is also
12958 * critical that the PCI-X hw workaround situation is decided
12959 * before that as well.
12960 */
12961 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12962 &misc_ctrl_reg);
12963
12964 tp->pci_chip_rev_id = (misc_ctrl_reg >>
12965 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070012966 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
12967 u32 prod_id_asic_rev;
12968
Matt Carlson5001e2f2009-11-13 13:03:51 +000012969 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
12970 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
12971 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5724)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012972 pci_read_config_dword(tp->pdev,
12973 TG3PCI_GEN2_PRODID_ASICREV,
12974 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000012975 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
12976 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
12977 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
12978 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
12979 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
12980 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
12981 pci_read_config_dword(tp->pdev,
12982 TG3PCI_GEN15_PRODID_ASICREV,
12983 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000012984 else
12985 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
12986 &prod_id_asic_rev);
12987
Matt Carlson321d32a2008-11-21 17:22:19 -080012988 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070012989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012990
Michael Chanff645be2005-04-21 17:09:53 -070012991 /* Wrong chip ID in 5752 A0. This code can be removed later
12992 * as A0 is not in production.
12993 */
12994 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
12995 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
12996
Michael Chan68929142005-08-09 20:17:14 -070012997 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
12998 * we need to disable memory and use config. cycles
12999 * only to access all registers. The 5702/03 chips
13000 * can mistakenly decode the special cycles from the
13001 * ICH chipsets as memory write cycles, causing corruption
13002 * of register and memory space. Only certain ICH bridges
13003 * will drive special cycles with non-zero data during the
13004 * address phase which can fall within the 5703's address
13005 * range. This is not an ICH bug as the PCI spec allows
13006 * non-zero address during special cycles. However, only
13007 * these ICH bridges are known to drive non-zero addresses
13008 * during special cycles.
13009 *
13010 * Since special cycles do not cross PCI bridges, we only
13011 * enable this workaround if the 5703 is on the secondary
13012 * bus of these ICH bridges.
13013 */
13014 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
13015 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
13016 static struct tg3_dev_id {
13017 u32 vendor;
13018 u32 device;
13019 u32 rev;
13020 } ich_chipsets[] = {
13021 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
13022 PCI_ANY_ID },
13023 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
13024 PCI_ANY_ID },
13025 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
13026 0xa },
13027 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
13028 PCI_ANY_ID },
13029 { },
13030 };
13031 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13032 struct pci_dev *bridge = NULL;
13033
13034 while (pci_id->vendor != 0) {
13035 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13036 bridge);
13037 if (!bridge) {
13038 pci_id++;
13039 continue;
13040 }
13041 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013042 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013043 continue;
13044 }
13045 if (bridge->subordinate &&
13046 (bridge->subordinate->number ==
13047 tp->pdev->bus->number)) {
13048
13049 tp->tg3_flags2 |= TG3_FLG2_ICH_WORKAROUND;
13050 pci_dev_put(bridge);
13051 break;
13052 }
13053 }
13054 }
13055
Matt Carlson41588ba2008-04-19 18:12:33 -070013056 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
13057 static struct tg3_dev_id {
13058 u32 vendor;
13059 u32 device;
13060 } bridge_chipsets[] = {
13061 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13062 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13063 { },
13064 };
13065 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13066 struct pci_dev *bridge = NULL;
13067
13068 while (pci_id->vendor != 0) {
13069 bridge = pci_get_device(pci_id->vendor,
13070 pci_id->device,
13071 bridge);
13072 if (!bridge) {
13073 pci_id++;
13074 continue;
13075 }
13076 if (bridge->subordinate &&
13077 (bridge->subordinate->number <=
13078 tp->pdev->bus->number) &&
13079 (bridge->subordinate->subordinate >=
13080 tp->pdev->bus->number)) {
13081 tp->tg3_flags3 |= TG3_FLG3_5701_DMA_BUG;
13082 pci_dev_put(bridge);
13083 break;
13084 }
13085 }
13086 }
13087
Michael Chan4a29cc22006-03-19 13:21:12 -080013088 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
13089 * DMA addresses > 40-bit. This bridge may have other additional
13090 * 57xx devices behind it in some 4-port NIC designs for example.
13091 * Any tg3 device found behind the bridge will also need the 40-bit
13092 * DMA workaround.
13093 */
Michael Chana4e2b342005-10-26 15:46:52 -070013094 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
13095 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
13096 tp->tg3_flags2 |= TG3_FLG2_5780_CLASS;
Michael Chan4a29cc22006-03-19 13:21:12 -080013097 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
Michael Chan4cf78e42005-07-25 12:29:19 -070013098 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Michael Chana4e2b342005-10-26 15:46:52 -070013099 }
Michael Chan4a29cc22006-03-19 13:21:12 -080013100 else {
13101 struct pci_dev *bridge = NULL;
13102
13103 do {
13104 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
13105 PCI_DEVICE_ID_SERVERWORKS_EPB,
13106 bridge);
13107 if (bridge && bridge->subordinate &&
13108 (bridge->subordinate->number <=
13109 tp->pdev->bus->number) &&
13110 (bridge->subordinate->subordinate >=
13111 tp->pdev->bus->number)) {
13112 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
13113 pci_dev_put(bridge);
13114 break;
13115 }
13116 } while (bridge);
13117 }
Michael Chan4cf78e42005-07-25 12:29:19 -070013118
Linus Torvalds1da177e2005-04-16 15:20:36 -070013119 /* Initialize misc host control in PCI block. */
13120 tp->misc_host_ctrl |= (misc_ctrl_reg &
13121 MISC_HOST_CTRL_CHIPREV);
13122 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13123 tp->misc_host_ctrl);
13124
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013125 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
13126 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
13127 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Michael Chan7544b092007-05-05 13:08:32 -070013128 tp->pdev_peer = tg3_find_peer(tp);
13129
Matt Carlson321d32a2008-11-21 17:22:19 -080013130 /* Intentionally exclude ASIC_REV_5906 */
13131 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad2006-03-20 22:27:35 -080013132 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013133 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013134 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013135 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 ||
Matt Carlsonb703df62009-12-03 08:36:21 +000013137 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13138 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080013139 tp->tg3_flags3 |= TG3_FLG3_5755_PLUS;
13140
13141 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13142 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070013143 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013144 (tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
Michael Chana4e2b342005-10-26 15:46:52 -070013145 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
John W. Linville6708e5c2005-04-21 17:00:52 -070013146 tp->tg3_flags2 |= TG3_FLG2_5750_PLUS;
13147
John W. Linville1b440c562005-04-21 17:03:18 -070013148 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) ||
13149 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
13150 tp->tg3_flags2 |= TG3_FLG2_5705_PLUS;
13151
Matt Carlson027455a2008-12-21 20:19:30 -080013152 /* 5700 B0 chips do not support checksumming correctly due
13153 * to hardware bugs.
13154 */
13155 if (tp->pci_chip_rev_id == CHIPREV_ID_5700_B0)
13156 tp->tg3_flags |= TG3_FLAG_BROKEN_CHECKSUMS;
13157 else {
13158 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
13159 tp->dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
13160 if (tp->tg3_flags3 & TG3_FLG3_5755_PLUS)
13161 tp->dev->features |= NETIF_F_IPV6_CSUM;
13162 }
13163
Matt Carlson507399f2009-11-13 13:03:37 +000013164 /* Determine TSO capabilities */
Matt Carlsonb703df62009-12-03 08:36:21 +000013165 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13166 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsone849cdc2009-11-13 13:03:38 +000013167 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_3;
13168 else if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
13169 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlson507399f2009-11-13 13:03:37 +000013170 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_2;
13171 else if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
13172 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_1 | TG3_FLG2_TSO_BUG;
13173 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
13174 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
13175 tp->tg3_flags2 &= ~TG3_FLG2_TSO_BUG;
13176 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13177 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13178 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
13179 tp->tg3_flags2 |= TG3_FLG2_TSO_BUG;
13180 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
13181 tp->fw_needed = FIRMWARE_TG3TSO5;
13182 else
13183 tp->fw_needed = FIRMWARE_TG3TSO;
13184 }
13185
13186 tp->irq_max = 1;
13187
Michael Chan5a6f3072006-03-20 22:28:05 -080013188 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Michael Chan7544b092007-05-05 13:08:32 -070013189 tp->tg3_flags |= TG3_FLAG_SUPPORT_MSI;
13190 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
13191 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
13192 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
13193 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
13194 tp->pdev_peer == tp->pdev))
13195 tp->tg3_flags &= ~TG3_FLAG_SUPPORT_MSI;
13196
Matt Carlson321d32a2008-11-21 17:22:19 -080013197 if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070013198 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080013199 tp->tg3_flags2 |= TG3_FLG2_1SHOT_MSI;
Michael Chan52c0fd82006-06-29 20:15:54 -070013200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013201
Matt Carlsonb703df62009-12-03 08:36:21 +000013202 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13203 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlson507399f2009-11-13 13:03:37 +000013204 tp->tg3_flags |= TG3_FLAG_SUPPORT_MSIX;
13205 tp->irq_max = TG3_IRQ_MAX_VECS;
13206 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013207 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000013208
Matt Carlson615774f2009-11-13 13:03:39 +000013209 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13210 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13211 tp->tg3_flags3 |= TG3_FLG3_SHORT_DMA_BUG;
13212 else if (!(tp->tg3_flags3 & TG3_FLG3_5755_PLUS)) {
13213 tp->tg3_flags3 |= TG3_FLG3_4G_DMA_BNDRY_BUG;
13214 tp->tg3_flags3 |= TG3_FLG3_40BIT_DMA_LIMIT_BUG;
Matt Carlson0e1406d2009-11-02 12:33:33 +000013215 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013216
Matt Carlsonb703df62009-12-03 08:36:21 +000013217 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13218 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
13219 tp->tg3_flags3 |= TG3_FLG3_USE_JUMBO_BDFLAG;
13220
Matt Carlsonf51f3562008-05-25 23:45:08 -070013221 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013222 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
Matt Carlsonb703df62009-12-03 08:36:21 +000013223 (tp->tg3_flags3 & TG3_FLG3_USE_JUMBO_BDFLAG))
Matt Carlson8f666b02009-08-28 13:58:24 +000013224 tp->tg3_flags |= TG3_FLAG_JUMBO_CAPABLE;
Michael Chan0f893dc2005-07-25 12:30:38 -070013225
Matt Carlson52f44902008-11-21 17:17:04 -080013226 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13227 &pci_state_reg);
13228
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013229 tp->pcie_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_EXP);
13230 if (tp->pcie_cap != 0) {
13231 u16 lnkctl;
13232
Linus Torvalds1da177e2005-04-16 15:20:36 -070013233 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013234
13235 pcie_set_readrq(tp->pdev, 4096);
13236
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013237 pci_read_config_word(tp->pdev,
13238 tp->pcie_cap + PCI_EXP_LNKCTL,
13239 &lnkctl);
13240 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
13241 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanc7835a72006-11-15 21:14:42 -080013242 tp->tg3_flags2 &= ~TG3_FLG2_HW_TSO_2;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013243 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013244 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000013245 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
13246 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013247 tp->tg3_flags3 |= TG3_FLG3_CLKREQ_BUG;
Matt Carlson614b0592010-01-20 16:58:02 +000013248 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
13249 tp->tg3_flags3 |= TG3_FLG3_L1PLLPD_EN;
Michael Chanc7835a72006-11-15 21:14:42 -080013250 }
Matt Carlson52f44902008-11-21 17:17:04 -080013251 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlsonfcb389d2008-11-03 16:55:44 -080013252 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
Matt Carlson52f44902008-11-21 17:17:04 -080013253 } else if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
13254 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
13255 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
13256 if (!tp->pcix_cap) {
13257 printk(KERN_ERR PFX "Cannot find PCI-X "
13258 "capability, aborting.\n");
13259 return -EIO;
13260 }
13261
13262 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
13263 tp->tg3_flags |= TG3_FLAG_PCIX_MODE;
13264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013265
Michael Chan399de502005-10-03 14:02:39 -070013266 /* If we have an AMD 762 or VIA K8T800 chipset, write
13267 * reordering to the mailbox registers done by the host
13268 * controller can cause major troubles. We read back from
13269 * every mailbox register write to force the writes to be
13270 * posted to the chip in order.
13271 */
13272 if (pci_dev_present(write_reorder_chipsets) &&
13273 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
13274 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
13275
Matt Carlson69fc4052008-12-21 20:19:57 -080013276 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
13277 &tp->pci_cacheline_sz);
13278 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13279 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013280 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13281 tp->pci_lat_timer < 64) {
13282 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080013283 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13284 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013285 }
13286
Matt Carlson52f44902008-11-21 17:17:04 -080013287 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
13288 /* 5700 BX chips need to have their TX producer index
13289 * mailboxes written twice to workaround a bug.
13290 */
13291 tp->tg3_flags |= TG3_FLAG_TXD_MBOX_HWBUG;
Matt Carlson9974a352007-10-07 23:27:28 -070013292
Matt Carlson52f44902008-11-21 17:17:04 -080013293 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013294 *
13295 * The workaround is to use indirect register accesses
13296 * for all chip writes not to mailbox registers.
13297 */
Matt Carlson52f44902008-11-21 17:17:04 -080013298 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013299 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013300
13301 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
13302
13303 /* The chip can have it's power management PCI config
13304 * space registers clobbered due to this bug.
13305 * So explicitly force the chip into D0 here.
13306 */
Matt Carlson9974a352007-10-07 23:27:28 -070013307 pci_read_config_dword(tp->pdev,
13308 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013309 &pm_reg);
13310 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
13311 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070013312 pci_write_config_dword(tp->pdev,
13313 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013314 pm_reg);
13315
13316 /* Also, force SERR#/PERR# in PCI command. */
13317 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13318 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
13319 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13320 }
13321 }
13322
Linus Torvalds1da177e2005-04-16 15:20:36 -070013323 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
13324 tp->tg3_flags |= TG3_FLAG_PCI_HIGH_SPEED;
13325 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
13326 tp->tg3_flags |= TG3_FLAG_PCI_32BIT;
13327
13328 /* Chip-specific fixup from Broadcom driver */
13329 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
13330 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
13331 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
13332 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
13333 }
13334
Michael Chan1ee582d2005-08-09 20:16:46 -070013335 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070013336 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013337 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070013338 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070013339 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013340 tp->write32_tx_mbox = tg3_write32;
13341 tp->write32_rx_mbox = tg3_write32;
13342
13343 /* Various workaround register access methods */
13344 if (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG)
13345 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013346 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
13347 ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
13348 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
13349 /*
13350 * Back to back register writes can cause problems on these
13351 * chips, the workaround is to read back all reg writes
13352 * except those to mailbox regs.
13353 *
13354 * See tg3_write_indirect_reg32().
13355 */
Michael Chan1ee582d2005-08-09 20:16:46 -070013356 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013357 }
13358
Michael Chan1ee582d2005-08-09 20:16:46 -070013359 if ((tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG) ||
13360 (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)) {
13361 tp->write32_tx_mbox = tg3_write32_tx_mbox;
13362 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
13363 tp->write32_rx_mbox = tg3_write_flush_reg32;
13364 }
Michael Chan20094932005-08-09 20:16:32 -070013365
Michael Chan68929142005-08-09 20:17:14 -070013366 if (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND) {
13367 tp->read32 = tg3_read_indirect_reg32;
13368 tp->write32 = tg3_write_indirect_reg32;
13369 tp->read32_mbox = tg3_read_indirect_mbox;
13370 tp->write32_mbox = tg3_write_indirect_mbox;
13371 tp->write32_tx_mbox = tg3_write_indirect_mbox;
13372 tp->write32_rx_mbox = tg3_write_indirect_mbox;
13373
13374 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070013375 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070013376
13377 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13378 pci_cmd &= ~PCI_COMMAND_MEMORY;
13379 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13380 }
Michael Chanb5d37722006-09-27 16:06:21 -070013381 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
13382 tp->read32_mbox = tg3_read32_mbox_5906;
13383 tp->write32_mbox = tg3_write32_mbox_5906;
13384 tp->write32_tx_mbox = tg3_write32_mbox_5906;
13385 tp->write32_rx_mbox = tg3_write32_mbox_5906;
13386 }
Michael Chan68929142005-08-09 20:17:14 -070013387
Michael Chanbbadf502006-04-06 21:46:34 -070013388 if (tp->write32 == tg3_write_indirect_reg32 ||
13389 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
13390 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070013391 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Michael Chanbbadf502006-04-06 21:46:34 -070013392 tp->tg3_flags |= TG3_FLAG_SRAM_USE_CONFIG;
13393
Michael Chan7d0c41e2005-04-21 17:06:20 -070013394 /* Get eeprom hw config before calling tg3_set_power_state().
Michael Chan9d26e212006-12-07 00:21:14 -080013395 * In particular, the TG3_FLG2_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070013396 * determined before calling tg3_set_power_state() so that
13397 * we know whether or not to switch out of Vaux power.
13398 * When the flag is set, it means that GPIO1 is used for eeprom
13399 * write protect and also implies that it is a LOM where GPIOs
13400 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013401 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070013402 tg3_get_eeprom_hw_cfg(tp);
13403
Matt Carlson0d3031d2007-10-10 18:02:43 -070013404 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
13405 /* Allow reads and writes to the
13406 * APE register and memory space.
13407 */
13408 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
13409 PCISTATE_ALLOW_APE_SHMEM_WR;
13410 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
13411 pci_state_reg);
13412 }
13413
Matt Carlson9936bcf2007-10-10 18:03:07 -070013414 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013415 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013416 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013417 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlsonb703df62009-12-03 08:36:21 +000013418 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13419 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsond30cdd22007-10-07 23:28:35 -070013420 tp->tg3_flags |= TG3_FLAG_CPMU_PRESENT;
13421
Michael Chan314fba32005-04-21 17:07:04 -070013422 /* Set up tp->grc_local_ctrl before calling tg3_set_power_state().
13423 * GPIO1 driven high will bring 5700's external PHY out of reset.
13424 * It is also used as eeprom write protect on LOMs.
13425 */
13426 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
13427 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
13428 (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT))
13429 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
13430 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070013431 /* Unused GPIO3 must be driven as output on 5752 because there
13432 * are no pull-up resistors on unused GPIO pins.
13433 */
13434 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13435 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070013436
Matt Carlson321d32a2008-11-21 17:22:19 -080013437 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000013438 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
13439 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Michael Chanaf36e6b2006-03-23 01:28:06 -080013440 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13441
Matt Carlson8d519ab2009-04-20 06:58:01 +000013442 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
13443 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070013444 /* Turn off the debug UART. */
13445 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13446 if (tp->tg3_flags2 & TG3_FLG2_IS_NIC)
13447 /* Keep VMain power. */
13448 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
13449 GRC_LCLCTRL_GPIO_OUTPUT0;
13450 }
13451
Linus Torvalds1da177e2005-04-16 15:20:36 -070013452 /* Force the chip into D0. */
Michael Chanbc1c7562006-03-20 17:48:03 -080013453 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013454 if (err) {
13455 printk(KERN_ERR PFX "(%s) transition to D0 failed\n",
13456 pci_name(tp->pdev));
13457 return err;
13458 }
13459
Linus Torvalds1da177e2005-04-16 15:20:36 -070013460 /* Derive initial jumbo mode from MTU assigned in
13461 * ether_setup() via the alloc_etherdev() call
13462 */
Michael Chan0f893dc2005-07-25 12:30:38 -070013463 if (tp->dev->mtu > ETH_DATA_LEN &&
Michael Chana4e2b342005-10-26 15:46:52 -070013464 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan0f893dc2005-07-25 12:30:38 -070013465 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013466
13467 /* Determine WakeOnLan speed to use. */
13468 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13469 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
13470 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
13471 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
13472 tp->tg3_flags &= ~(TG3_FLAG_WOL_SPEED_100MB);
13473 } else {
13474 tp->tg3_flags |= TG3_FLAG_WOL_SPEED_100MB;
13475 }
13476
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013477 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13478 tp->tg3_flags3 |= TG3_FLG3_PHY_IS_FET;
13479
Linus Torvalds1da177e2005-04-16 15:20:36 -070013480 /* A few boards don't want Ethernet@WireSpeed phy feature */
13481 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
13482 ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
13483 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070013484 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013485 (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) ||
Michael Chan747e8f82005-07-25 12:33:22 -070013486 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013487 tp->tg3_flags2 |= TG3_FLG2_NO_ETH_WIRE_SPEED;
13488
13489 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
13490 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
13491 tp->tg3_flags2 |= TG3_FLG2_PHY_ADC_BUG;
13492 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
13493 tp->tg3_flags2 |= TG3_FLG2_PHY_5704_A0_BUG;
13494
Matt Carlson321d32a2008-11-21 17:22:19 -080013495 if ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013496 !(tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080013497 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013498 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Matt Carlsonb703df62009-12-03 08:36:21 +000013499 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
13500 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765) {
Michael Chanc424cb22006-04-29 18:56:34 -070013501 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013502 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013503 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
13504 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080013505 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
13506 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
13507 tp->tg3_flags2 |= TG3_FLG2_PHY_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080013508 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
13509 tp->tg3_flags2 |= TG3_FLG2_PHY_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080013510 } else
Michael Chanc424cb22006-04-29 18:56:34 -070013511 tp->tg3_flags2 |= TG3_FLG2_PHY_BER_BUG;
13512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013513
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013514 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13515 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
13516 tp->phy_otp = tg3_read_otp_phycfg(tp);
13517 if (tp->phy_otp == 0)
13518 tp->phy_otp = TG3_OTP_DEFAULT;
13519 }
13520
Matt Carlsonf51f3562008-05-25 23:45:08 -070013521 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)
Matt Carlson8ef21422008-05-02 16:47:53 -070013522 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
13523 else
13524 tp->mi_mode = MAC_MI_MODE_BASE;
13525
Linus Torvalds1da177e2005-04-16 15:20:36 -070013526 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013527 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
13528 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
13529 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
13530
Matt Carlson321d32a2008-11-21 17:22:19 -080013531 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
13532 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson57e69832008-05-25 23:48:31 -070013533 tp->tg3_flags3 |= TG3_FLG3_USE_PHYLIB;
13534
Matt Carlson158d7ab2008-05-29 01:37:54 -070013535 err = tg3_mdio_init(tp);
13536 if (err)
13537 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013538
Matt Carlson55dffe72010-01-12 10:11:39 +000013539 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
13540 (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0 ||
13541 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)))
13542 return -ENOTSUPP;
13543
Linus Torvalds1da177e2005-04-16 15:20:36 -070013544 /* Initialize data/descriptor byte/word swapping. */
13545 val = tr32(GRC_MODE);
13546 val &= GRC_MODE_HOST_STACKUP;
13547 tw32(GRC_MODE, val | tp->grc_mode);
13548
13549 tg3_switch_clocks(tp);
13550
13551 /* Clear this out for sanity. */
13552 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
13553
13554 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13555 &pci_state_reg);
13556 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
13557 (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) == 0) {
13558 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
13559
13560 if (chiprevid == CHIPREV_ID_5701_A0 ||
13561 chiprevid == CHIPREV_ID_5701_B0 ||
13562 chiprevid == CHIPREV_ID_5701_B2 ||
13563 chiprevid == CHIPREV_ID_5701_B5) {
13564 void __iomem *sram_base;
13565
13566 /* Write some dummy words into the SRAM status block
13567 * area, see if it reads back correctly. If the return
13568 * value is bad, force enable the PCIX workaround.
13569 */
13570 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
13571
13572 writel(0x00000000, sram_base);
13573 writel(0x00000000, sram_base + 4);
13574 writel(0xffffffff, sram_base + 4);
13575 if (readl(sram_base) != 0x00000000)
13576 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
13577 }
13578 }
13579
13580 udelay(50);
13581 tg3_nvram_init(tp);
13582
13583 grc_misc_cfg = tr32(GRC_MISC_CFG);
13584 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
13585
Linus Torvalds1da177e2005-04-16 15:20:36 -070013586 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
13587 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
13588 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
13589 tp->tg3_flags2 |= TG3_FLG2_IS_5788;
13590
David S. Millerfac9b832005-05-18 22:46:34 -070013591 if (!(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
13592 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700))
13593 tp->tg3_flags |= TG3_FLAG_TAGGED_STATUS;
13594 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
13595 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
13596 HOSTCC_MODE_CLRTICK_TXBD);
13597
13598 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
13599 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13600 tp->misc_host_ctrl);
13601 }
13602
Matt Carlson3bda1252008-08-15 14:08:22 -070013603 /* Preserve the APE MAC_MODE bits */
13604 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
13605 tp->mac_mode = tr32(MAC_MODE) |
13606 MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
13607 else
13608 tp->mac_mode = TG3_DEF_MAC_MODE;
13609
Linus Torvalds1da177e2005-04-16 15:20:36 -070013610 /* these are limited to 10/100 only */
13611 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13612 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
13613 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
13614 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
13615 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
13616 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
13617 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
13618 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
13619 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080013620 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
13621 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013622 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000013623 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13624 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013625 (tp->tg3_flags3 & TG3_FLG3_PHY_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013626 tp->tg3_flags |= TG3_FLAG_10_100_ONLY;
13627
13628 err = tg3_phy_probe(tp);
13629 if (err) {
13630 printk(KERN_ERR PFX "(%s) phy probe failed, err %d\n",
13631 pci_name(tp->pdev), err);
13632 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013633 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013634 }
13635
13636 tg3_read_partno(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080013637 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013638
13639 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
13640 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
13641 } else {
13642 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
13643 tp->tg3_flags |= TG3_FLAG_USE_MI_INTERRUPT;
13644 else
13645 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
13646 }
13647
13648 /* 5700 {AX,BX} chips have a broken status block link
13649 * change bit implementation, so we must use the
13650 * status register in those cases.
13651 */
13652 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
13653 tp->tg3_flags |= TG3_FLAG_USE_LINKCHG_REG;
13654 else
13655 tp->tg3_flags &= ~TG3_FLAG_USE_LINKCHG_REG;
13656
13657 /* The led_ctrl is set during tg3_phy_probe, here we might
13658 * have to force the link status polling mechanism based
13659 * upon subsystem IDs.
13660 */
13661 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070013662 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070013663 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
13664 tp->tg3_flags |= (TG3_FLAG_USE_MI_INTERRUPT |
13665 TG3_FLAG_USE_LINKCHG_REG);
13666 }
13667
13668 /* For all SERDES we poll the MAC status register. */
13669 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
13670 tp->tg3_flags |= TG3_FLAG_POLL_SERDES;
13671 else
13672 tp->tg3_flags &= ~TG3_FLAG_POLL_SERDES;
13673
Matt Carlsonad829262008-11-21 17:16:16 -080013674 tp->rx_offset = NET_IP_ALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013675 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
13676 (tp->tg3_flags & TG3_FLAG_PCIX_MODE) != 0)
13677 tp->rx_offset = 0;
13678
Michael Chanf92905d2006-06-29 20:14:29 -070013679 tp->rx_std_max_post = TG3_RX_RING_SIZE;
13680
13681 /* Increment the rx prod index on the rx std ring by at most
13682 * 8 for these chips to workaround hw errata.
13683 */
13684 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13685 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
13686 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
13687 tp->rx_std_max_post = 8;
13688
Matt Carlson8ed5d972007-05-07 00:25:49 -070013689 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND)
13690 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
13691 PCIE_PWR_MGMT_L1_THRESH_MSK;
13692
Linus Torvalds1da177e2005-04-16 15:20:36 -070013693 return err;
13694}
13695
David S. Miller49b6e95f2007-03-29 01:38:42 -070013696#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013697static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
13698{
13699 struct net_device *dev = tp->dev;
13700 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070013701 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070013702 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070013703 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013704
David S. Miller49b6e95f2007-03-29 01:38:42 -070013705 addr = of_get_property(dp, "local-mac-address", &len);
13706 if (addr && len == 6) {
13707 memcpy(dev->dev_addr, addr, 6);
13708 memcpy(dev->perm_addr, dev->dev_addr, 6);
13709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013710 }
13711 return -ENODEV;
13712}
13713
13714static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
13715{
13716 struct net_device *dev = tp->dev;
13717
13718 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070013719 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013720 return 0;
13721}
13722#endif
13723
13724static int __devinit tg3_get_device_address(struct tg3 *tp)
13725{
13726 struct net_device *dev = tp->dev;
13727 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080013728 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013729
David S. Miller49b6e95f2007-03-29 01:38:42 -070013730#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013731 if (!tg3_get_macaddr_sparc(tp))
13732 return 0;
13733#endif
13734
13735 mac_offset = 0x7c;
David S. Millerf49639e2006-06-09 11:58:36 -070013736 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
Michael Chana4e2b342005-10-26 15:46:52 -070013737 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013738 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
13739 mac_offset = 0xcc;
13740 if (tg3_nvram_lock(tp))
13741 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
13742 else
13743 tg3_nvram_unlock(tp);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013744 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13745 if (tr32(TG3_CPMU_STATUS) & TG3_CPMU_STATUS_PCIE_FUNC)
13746 mac_offset = 0xcc;
13747 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070013748 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013749
13750 /* First try to get it from MAC address mailbox. */
13751 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
13752 if ((hi >> 16) == 0x484b) {
13753 dev->dev_addr[0] = (hi >> 8) & 0xff;
13754 dev->dev_addr[1] = (hi >> 0) & 0xff;
13755
13756 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
13757 dev->dev_addr[2] = (lo >> 24) & 0xff;
13758 dev->dev_addr[3] = (lo >> 16) & 0xff;
13759 dev->dev_addr[4] = (lo >> 8) & 0xff;
13760 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013761
Michael Chan008652b2006-03-27 23:14:53 -080013762 /* Some old bootcode may report a 0 MAC address in SRAM */
13763 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
13764 }
13765 if (!addr_ok) {
13766 /* Next, try NVRAM. */
Matt Carlsondf259d82009-04-20 06:57:14 +000013767 if (!(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM) &&
13768 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000013769 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070013770 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
13771 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080013772 }
13773 /* Finally just fetch it out of the MAC control regs. */
13774 else {
13775 hi = tr32(MAC_ADDR_0_HIGH);
13776 lo = tr32(MAC_ADDR_0_LOW);
13777
13778 dev->dev_addr[5] = lo & 0xff;
13779 dev->dev_addr[4] = (lo >> 8) & 0xff;
13780 dev->dev_addr[3] = (lo >> 16) & 0xff;
13781 dev->dev_addr[2] = (lo >> 24) & 0xff;
13782 dev->dev_addr[1] = hi & 0xff;
13783 dev->dev_addr[0] = (hi >> 8) & 0xff;
13784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013785 }
13786
13787 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070013788#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070013789 if (!tg3_get_default_macaddr_sparc(tp))
13790 return 0;
13791#endif
13792 return -EINVAL;
13793 }
John W. Linville2ff43692005-09-12 14:44:20 -070013794 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013795 return 0;
13796}
13797
David S. Miller59e6b432005-05-18 22:50:10 -070013798#define BOUNDARY_SINGLE_CACHELINE 1
13799#define BOUNDARY_MULTI_CACHELINE 2
13800
13801static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
13802{
13803 int cacheline_size;
13804 u8 byte;
13805 int goal;
13806
13807 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
13808 if (byte == 0)
13809 cacheline_size = 1024;
13810 else
13811 cacheline_size = (int) byte * 4;
13812
13813 /* On 5703 and later chips, the boundary bits have no
13814 * effect.
13815 */
13816 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13817 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13818 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
13819 goto out;
13820
13821#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
13822 goal = BOUNDARY_MULTI_CACHELINE;
13823#else
13824#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
13825 goal = BOUNDARY_SINGLE_CACHELINE;
13826#else
13827 goal = 0;
13828#endif
13829#endif
13830
Matt Carlsonb703df62009-12-03 08:36:21 +000013831 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13832 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000013833 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
13834 goto out;
13835 }
13836
David S. Miller59e6b432005-05-18 22:50:10 -070013837 if (!goal)
13838 goto out;
13839
13840 /* PCI controllers on most RISC systems tend to disconnect
13841 * when a device tries to burst across a cache-line boundary.
13842 * Therefore, letting tg3 do so just wastes PCI bandwidth.
13843 *
13844 * Unfortunately, for PCI-E there are only limited
13845 * write-side controls for this, and thus for reads
13846 * we will still get the disconnects. We'll also waste
13847 * these PCI cycles for both read and write for chips
13848 * other than 5700 and 5701 which do not implement the
13849 * boundary bits.
13850 */
13851 if ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
13852 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
13853 switch (cacheline_size) {
13854 case 16:
13855 case 32:
13856 case 64:
13857 case 128:
13858 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13859 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
13860 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
13861 } else {
13862 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
13863 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
13864 }
13865 break;
13866
13867 case 256:
13868 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
13869 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
13870 break;
13871
13872 default:
13873 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
13874 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
13875 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013876 }
David S. Miller59e6b432005-05-18 22:50:10 -070013877 } else if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
13878 switch (cacheline_size) {
13879 case 16:
13880 case 32:
13881 case 64:
13882 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13883 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
13884 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
13885 break;
13886 }
13887 /* fallthrough */
13888 case 128:
13889 default:
13890 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
13891 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
13892 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013893 }
David S. Miller59e6b432005-05-18 22:50:10 -070013894 } else {
13895 switch (cacheline_size) {
13896 case 16:
13897 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13898 val |= (DMA_RWCTRL_READ_BNDRY_16 |
13899 DMA_RWCTRL_WRITE_BNDRY_16);
13900 break;
13901 }
13902 /* fallthrough */
13903 case 32:
13904 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13905 val |= (DMA_RWCTRL_READ_BNDRY_32 |
13906 DMA_RWCTRL_WRITE_BNDRY_32);
13907 break;
13908 }
13909 /* fallthrough */
13910 case 64:
13911 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13912 val |= (DMA_RWCTRL_READ_BNDRY_64 |
13913 DMA_RWCTRL_WRITE_BNDRY_64);
13914 break;
13915 }
13916 /* fallthrough */
13917 case 128:
13918 if (goal == BOUNDARY_SINGLE_CACHELINE) {
13919 val |= (DMA_RWCTRL_READ_BNDRY_128 |
13920 DMA_RWCTRL_WRITE_BNDRY_128);
13921 break;
13922 }
13923 /* fallthrough */
13924 case 256:
13925 val |= (DMA_RWCTRL_READ_BNDRY_256 |
13926 DMA_RWCTRL_WRITE_BNDRY_256);
13927 break;
13928 case 512:
13929 val |= (DMA_RWCTRL_READ_BNDRY_512 |
13930 DMA_RWCTRL_WRITE_BNDRY_512);
13931 break;
13932 case 1024:
13933 default:
13934 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
13935 DMA_RWCTRL_WRITE_BNDRY_1024);
13936 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070013937 }
David S. Miller59e6b432005-05-18 22:50:10 -070013938 }
13939
13940out:
13941 return val;
13942}
13943
Linus Torvalds1da177e2005-04-16 15:20:36 -070013944static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
13945{
13946 struct tg3_internal_buffer_desc test_desc;
13947 u32 sram_dma_descs;
13948 int i, ret;
13949
13950 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
13951
13952 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
13953 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
13954 tw32(RDMAC_STATUS, 0);
13955 tw32(WDMAC_STATUS, 0);
13956
13957 tw32(BUFMGR_MODE, 0);
13958 tw32(FTQ_RESET, 0);
13959
13960 test_desc.addr_hi = ((u64) buf_dma) >> 32;
13961 test_desc.addr_lo = buf_dma & 0xffffffff;
13962 test_desc.nic_mbuf = 0x00002100;
13963 test_desc.len = size;
13964
13965 /*
13966 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
13967 * the *second* time the tg3 driver was getting loaded after an
13968 * initial scan.
13969 *
13970 * Broadcom tells me:
13971 * ...the DMA engine is connected to the GRC block and a DMA
13972 * reset may affect the GRC block in some unpredictable way...
13973 * The behavior of resets to individual blocks has not been tested.
13974 *
13975 * Broadcom noted the GRC reset will also reset all sub-components.
13976 */
13977 if (to_device) {
13978 test_desc.cqid_sqid = (13 << 8) | 2;
13979
13980 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
13981 udelay(40);
13982 } else {
13983 test_desc.cqid_sqid = (16 << 8) | 7;
13984
13985 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
13986 udelay(40);
13987 }
13988 test_desc.flags = 0x00000005;
13989
13990 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
13991 u32 val;
13992
13993 val = *(((u32 *)&test_desc) + i);
13994 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
13995 sram_dma_descs + (i * sizeof(u32)));
13996 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
13997 }
13998 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
13999
14000 if (to_device) {
14001 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
14002 } else {
14003 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
14004 }
14005
14006 ret = -ENODEV;
14007 for (i = 0; i < 40; i++) {
14008 u32 val;
14009
14010 if (to_device)
14011 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
14012 else
14013 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
14014 if ((val & 0xffff) == sram_dma_descs) {
14015 ret = 0;
14016 break;
14017 }
14018
14019 udelay(100);
14020 }
14021
14022 return ret;
14023}
14024
David S. Millerded73402005-05-23 13:59:47 -070014025#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070014026
14027static int __devinit tg3_test_dma(struct tg3 *tp)
14028{
14029 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070014030 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014031 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014032
14033 buf = pci_alloc_consistent(tp->pdev, TEST_BUFFER_SIZE, &buf_dma);
14034 if (!buf) {
14035 ret = -ENOMEM;
14036 goto out_nofree;
14037 }
14038
14039 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
14040 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
14041
David S. Miller59e6b432005-05-18 22:50:10 -070014042 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014043
Matt Carlsonb703df62009-12-03 08:36:21 +000014044 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14045 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014046 goto out;
14047
Linus Torvalds1da177e2005-04-16 15:20:36 -070014048 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
14049 /* DMA read watermark not used on PCIE */
14050 tp->dma_rwctrl |= 0x00180000;
14051 } else if (!(tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070014052 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14053 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014054 tp->dma_rwctrl |= 0x003f0000;
14055 else
14056 tp->dma_rwctrl |= 0x003f000f;
14057 } else {
14058 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14059 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
14060 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080014061 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014062
Michael Chan4a29cc22006-03-19 13:21:12 -080014063 /* If the 5704 is behind the EPB bridge, we can
14064 * do the less restrictive ONE_DMA workaround for
14065 * better performance.
14066 */
14067 if ((tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) &&
14068 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14069 tp->dma_rwctrl |= 0x8000;
14070 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014071 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
14072
Michael Chan49afdeb2007-02-13 12:17:03 -080014073 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
14074 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070014075 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080014076 tp->dma_rwctrl |=
14077 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
14078 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
14079 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070014080 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
14081 /* 5780 always in PCIX mode */
14082 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070014083 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
14084 /* 5714 always in PCIX mode */
14085 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014086 } else {
14087 tp->dma_rwctrl |= 0x001b000f;
14088 }
14089 }
14090
14091 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14092 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14093 tp->dma_rwctrl &= 0xfffffff0;
14094
14095 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14096 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
14097 /* Remove this if it causes problems for some boards. */
14098 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
14099
14100 /* On 5700/5701 chips, we need to set this bit.
14101 * Otherwise the chip will issue cacheline transactions
14102 * to streamable DMA memory with not all the byte
14103 * enables turned on. This is an error on several
14104 * RISC PCI controllers, in particular sparc64.
14105 *
14106 * On 5703/5704 chips, this bit has been reassigned
14107 * a different meaning. In particular, it is used
14108 * on those chips to enable a PCI-X workaround.
14109 */
14110 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
14111 }
14112
14113 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14114
14115#if 0
14116 /* Unneeded, already done by tg3_get_invariants. */
14117 tg3_switch_clocks(tp);
14118#endif
14119
Linus Torvalds1da177e2005-04-16 15:20:36 -070014120 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14121 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
14122 goto out;
14123
David S. Miller59e6b432005-05-18 22:50:10 -070014124 /* It is best to perform DMA test with maximum write burst size
14125 * to expose the 5700/5701 write DMA bug.
14126 */
14127 saved_dma_rwctrl = tp->dma_rwctrl;
14128 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14129 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14130
Linus Torvalds1da177e2005-04-16 15:20:36 -070014131 while (1) {
14132 u32 *p = buf, i;
14133
14134 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
14135 p[i] = i;
14136
14137 /* Send the buffer to the chip. */
14138 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
14139 if (ret) {
14140 printk(KERN_ERR "tg3_test_dma() Write the buffer failed %d\n", ret);
14141 break;
14142 }
14143
14144#if 0
14145 /* validate data reached card RAM correctly. */
14146 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14147 u32 val;
14148 tg3_read_mem(tp, 0x2100 + (i*4), &val);
14149 if (le32_to_cpu(val) != p[i]) {
14150 printk(KERN_ERR " tg3_test_dma() Card buffer corrupted on write! (%d != %d)\n", val, i);
14151 /* ret = -ENODEV here? */
14152 }
14153 p[i] = 0;
14154 }
14155#endif
14156 /* Now read it back. */
14157 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
14158 if (ret) {
14159 printk(KERN_ERR "tg3_test_dma() Read the buffer failed %d\n", ret);
14160
14161 break;
14162 }
14163
14164 /* Verify it. */
14165 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14166 if (p[i] == i)
14167 continue;
14168
David S. Miller59e6b432005-05-18 22:50:10 -070014169 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14170 DMA_RWCTRL_WRITE_BNDRY_16) {
14171 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014172 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14173 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14174 break;
14175 } else {
14176 printk(KERN_ERR "tg3_test_dma() buffer corrupted on read back! (%d != %d)\n", p[i], i);
14177 ret = -ENODEV;
14178 goto out;
14179 }
14180 }
14181
14182 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
14183 /* Success. */
14184 ret = 0;
14185 break;
14186 }
14187 }
David S. Miller59e6b432005-05-18 22:50:10 -070014188 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14189 DMA_RWCTRL_WRITE_BNDRY_16) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014190 static struct pci_device_id dma_wait_state_chipsets[] = {
14191 { PCI_DEVICE(PCI_VENDOR_ID_APPLE,
14192 PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
14193 { },
14194 };
14195
David S. Miller59e6b432005-05-18 22:50:10 -070014196 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070014197 * now look for chipsets that are known to expose the
14198 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070014199 */
Michael Chan6d1cfba2005-06-08 14:13:14 -070014200 if (pci_dev_present(dma_wait_state_chipsets)) {
14201 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14202 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14203 }
14204 else
14205 /* Safe to use the calculated DMA boundary. */
14206 tp->dma_rwctrl = saved_dma_rwctrl;
14207
David S. Miller59e6b432005-05-18 22:50:10 -070014208 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014210
14211out:
14212 pci_free_consistent(tp->pdev, TEST_BUFFER_SIZE, buf, buf_dma);
14213out_nofree:
14214 return ret;
14215}
14216
14217static void __devinit tg3_init_link_config(struct tg3 *tp)
14218{
14219 tp->link_config.advertising =
14220 (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
14221 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
14222 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full |
14223 ADVERTISED_Autoneg | ADVERTISED_MII);
14224 tp->link_config.speed = SPEED_INVALID;
14225 tp->link_config.duplex = DUPLEX_INVALID;
14226 tp->link_config.autoneg = AUTONEG_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014227 tp->link_config.active_speed = SPEED_INVALID;
14228 tp->link_config.active_duplex = DUPLEX_INVALID;
14229 tp->link_config.phy_is_low_power = 0;
14230 tp->link_config.orig_speed = SPEED_INVALID;
14231 tp->link_config.orig_duplex = DUPLEX_INVALID;
14232 tp->link_config.orig_autoneg = AUTONEG_INVALID;
14233}
14234
14235static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
14236{
Matt Carlson666bc832010-01-20 16:58:03 +000014237 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14238 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
14239 tp->bufmgr_config.mbuf_read_dma_low_water =
14240 DEFAULT_MB_RDMA_LOW_WATER_5705;
14241 tp->bufmgr_config.mbuf_mac_rx_low_water =
14242 DEFAULT_MB_MACRX_LOW_WATER_57765;
14243 tp->bufmgr_config.mbuf_high_water =
14244 DEFAULT_MB_HIGH_WATER_57765;
14245
14246 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14247 DEFAULT_MB_RDMA_LOW_WATER_5705;
14248 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14249 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
14250 tp->bufmgr_config.mbuf_high_water_jumbo =
14251 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
14252 } else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chanfdfec1722005-07-25 12:31:48 -070014253 tp->bufmgr_config.mbuf_read_dma_low_water =
14254 DEFAULT_MB_RDMA_LOW_WATER_5705;
14255 tp->bufmgr_config.mbuf_mac_rx_low_water =
14256 DEFAULT_MB_MACRX_LOW_WATER_5705;
14257 tp->bufmgr_config.mbuf_high_water =
14258 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070014259 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14260 tp->bufmgr_config.mbuf_mac_rx_low_water =
14261 DEFAULT_MB_MACRX_LOW_WATER_5906;
14262 tp->bufmgr_config.mbuf_high_water =
14263 DEFAULT_MB_HIGH_WATER_5906;
14264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014265
Michael Chanfdfec1722005-07-25 12:31:48 -070014266 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14267 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
14268 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14269 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
14270 tp->bufmgr_config.mbuf_high_water_jumbo =
14271 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
14272 } else {
14273 tp->bufmgr_config.mbuf_read_dma_low_water =
14274 DEFAULT_MB_RDMA_LOW_WATER;
14275 tp->bufmgr_config.mbuf_mac_rx_low_water =
14276 DEFAULT_MB_MACRX_LOW_WATER;
14277 tp->bufmgr_config.mbuf_high_water =
14278 DEFAULT_MB_HIGH_WATER;
14279
14280 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14281 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
14282 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14283 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
14284 tp->bufmgr_config.mbuf_high_water_jumbo =
14285 DEFAULT_MB_HIGH_WATER_JUMBO;
14286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014287
14288 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
14289 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
14290}
14291
14292static char * __devinit tg3_phy_string(struct tg3 *tp)
14293{
14294 switch (tp->phy_id & PHY_ID_MASK) {
14295 case PHY_ID_BCM5400: return "5400";
14296 case PHY_ID_BCM5401: return "5401";
14297 case PHY_ID_BCM5411: return "5411";
14298 case PHY_ID_BCM5701: return "5701";
14299 case PHY_ID_BCM5703: return "5703";
14300 case PHY_ID_BCM5704: return "5704";
14301 case PHY_ID_BCM5705: return "5705";
14302 case PHY_ID_BCM5750: return "5750";
Michael Chan85e94ce2005-04-21 17:05:28 -070014303 case PHY_ID_BCM5752: return "5752";
Michael Chana4e2b342005-10-26 15:46:52 -070014304 case PHY_ID_BCM5714: return "5714";
Michael Chan4cf78e42005-07-25 12:29:19 -070014305 case PHY_ID_BCM5780: return "5780";
Michael Chanaf36e6b2006-03-23 01:28:06 -080014306 case PHY_ID_BCM5755: return "5755";
Michael Chand9ab5ad2006-03-20 22:27:35 -080014307 case PHY_ID_BCM5787: return "5787";
Matt Carlsond30cdd22007-10-07 23:28:35 -070014308 case PHY_ID_BCM5784: return "5784";
Michael Chan126a3362006-09-27 16:03:07 -070014309 case PHY_ID_BCM5756: return "5722/5756";
Michael Chanb5d37722006-09-27 16:06:21 -070014310 case PHY_ID_BCM5906: return "5906";
Matt Carlson9936bcf2007-10-10 18:03:07 -070014311 case PHY_ID_BCM5761: return "5761";
Matt Carlson9b952f52010-01-20 16:58:04 +000014312 case PHY_ID_BCM5718C: return "5718C";
14313 case PHY_ID_BCM5718S: return "5718S";
Matt Carlsonb0f75222010-01-20 16:58:11 +000014314 case PHY_ID_BCM57765: return "57765";
Linus Torvalds1da177e2005-04-16 15:20:36 -070014315 case PHY_ID_BCM8002: return "8002/serdes";
14316 case 0: return "serdes";
14317 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070014318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014319}
14320
Michael Chanf9804dd2005-09-27 12:13:10 -070014321static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
14322{
14323 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
14324 strcpy(str, "PCI Express");
14325 return str;
14326 } else if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
14327 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
14328
14329 strcpy(str, "PCIX:");
14330
14331 if ((clock_ctrl == 7) ||
14332 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
14333 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
14334 strcat(str, "133MHz");
14335 else if (clock_ctrl == 0)
14336 strcat(str, "33MHz");
14337 else if (clock_ctrl == 2)
14338 strcat(str, "50MHz");
14339 else if (clock_ctrl == 4)
14340 strcat(str, "66MHz");
14341 else if (clock_ctrl == 6)
14342 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070014343 } else {
14344 strcpy(str, "PCI:");
14345 if (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED)
14346 strcat(str, "66MHz");
14347 else
14348 strcat(str, "33MHz");
14349 }
14350 if (tp->tg3_flags & TG3_FLAG_PCI_32BIT)
14351 strcat(str, ":32-bit");
14352 else
14353 strcat(str, ":64-bit");
14354 return str;
14355}
14356
Michael Chan8c2dc7e2005-12-19 16:26:02 -080014357static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014358{
14359 struct pci_dev *peer;
14360 unsigned int func, devnr = tp->pdev->devfn & ~7;
14361
14362 for (func = 0; func < 8; func++) {
14363 peer = pci_get_slot(tp->pdev->bus, devnr | func);
14364 if (peer && peer != tp->pdev)
14365 break;
14366 pci_dev_put(peer);
14367 }
Michael Chan16fe9d72005-12-13 21:09:54 -080014368 /* 5704 can be configured in single-port mode, set peer to
14369 * tp->pdev in that case.
14370 */
14371 if (!peer) {
14372 peer = tp->pdev;
14373 return peer;
14374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014375
14376 /*
14377 * We don't need to keep the refcount elevated; there's no way
14378 * to remove one half of this device without removing the other
14379 */
14380 pci_dev_put(peer);
14381
14382 return peer;
14383}
14384
David S. Miller15f98502005-05-18 22:49:26 -070014385static void __devinit tg3_init_coal(struct tg3 *tp)
14386{
14387 struct ethtool_coalesce *ec = &tp->coal;
14388
14389 memset(ec, 0, sizeof(*ec));
14390 ec->cmd = ETHTOOL_GCOALESCE;
14391 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
14392 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
14393 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
14394 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
14395 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
14396 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
14397 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
14398 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
14399 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
14400
14401 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
14402 HOSTCC_MODE_CLRTICK_TXBD)) {
14403 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
14404 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
14405 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
14406 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
14407 }
Michael Chand244c892005-07-05 14:42:33 -070014408
14409 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
14410 ec->rx_coalesce_usecs_irq = 0;
14411 ec->tx_coalesce_usecs_irq = 0;
14412 ec->stats_block_coalesce_usecs = 0;
14413 }
David S. Miller15f98502005-05-18 22:49:26 -070014414}
14415
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014416static const struct net_device_ops tg3_netdev_ops = {
14417 .ndo_open = tg3_open,
14418 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080014419 .ndo_start_xmit = tg3_start_xmit,
14420 .ndo_get_stats = tg3_get_stats,
14421 .ndo_validate_addr = eth_validate_addr,
14422 .ndo_set_multicast_list = tg3_set_rx_mode,
14423 .ndo_set_mac_address = tg3_set_mac_addr,
14424 .ndo_do_ioctl = tg3_ioctl,
14425 .ndo_tx_timeout = tg3_tx_timeout,
14426 .ndo_change_mtu = tg3_change_mtu,
14427#if TG3_VLAN_TAG_USED
14428 .ndo_vlan_rx_register = tg3_vlan_rx_register,
14429#endif
14430#ifdef CONFIG_NET_POLL_CONTROLLER
14431 .ndo_poll_controller = tg3_poll_controller,
14432#endif
14433};
14434
14435static const struct net_device_ops tg3_netdev_ops_dma_bug = {
14436 .ndo_open = tg3_open,
14437 .ndo_stop = tg3_close,
14438 .ndo_start_xmit = tg3_start_xmit_dma_bug,
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014439 .ndo_get_stats = tg3_get_stats,
14440 .ndo_validate_addr = eth_validate_addr,
14441 .ndo_set_multicast_list = tg3_set_rx_mode,
14442 .ndo_set_mac_address = tg3_set_mac_addr,
14443 .ndo_do_ioctl = tg3_ioctl,
14444 .ndo_tx_timeout = tg3_tx_timeout,
14445 .ndo_change_mtu = tg3_change_mtu,
14446#if TG3_VLAN_TAG_USED
14447 .ndo_vlan_rx_register = tg3_vlan_rx_register,
14448#endif
14449#ifdef CONFIG_NET_POLL_CONTROLLER
14450 .ndo_poll_controller = tg3_poll_controller,
14451#endif
14452};
14453
Linus Torvalds1da177e2005-04-16 15:20:36 -070014454static int __devinit tg3_init_one(struct pci_dev *pdev,
14455 const struct pci_device_id *ent)
14456{
14457 static int tg3_version_printed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014458 struct net_device *dev;
14459 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000014460 int i, err, pm_cap;
14461 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070014462 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080014463 u64 dma_mask, persist_dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014464
14465 if (tg3_version_printed++ == 0)
14466 printk(KERN_INFO "%s", version);
14467
14468 err = pci_enable_device(pdev);
14469 if (err) {
14470 printk(KERN_ERR PFX "Cannot enable PCI device, "
14471 "aborting.\n");
14472 return err;
14473 }
14474
Linus Torvalds1da177e2005-04-16 15:20:36 -070014475 err = pci_request_regions(pdev, DRV_MODULE_NAME);
14476 if (err) {
14477 printk(KERN_ERR PFX "Cannot obtain PCI resources, "
14478 "aborting.\n");
14479 goto err_out_disable_pdev;
14480 }
14481
14482 pci_set_master(pdev);
14483
14484 /* Find power-management capability. */
14485 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
14486 if (pm_cap == 0) {
14487 printk(KERN_ERR PFX "Cannot find PowerManagement capability, "
14488 "aborting.\n");
14489 err = -EIO;
14490 goto err_out_free_res;
14491 }
14492
Matt Carlsonfe5f5782009-09-01 13:09:39 +000014493 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014494 if (!dev) {
14495 printk(KERN_ERR PFX "Etherdev alloc failed, aborting.\n");
14496 err = -ENOMEM;
14497 goto err_out_free_res;
14498 }
14499
Linus Torvalds1da177e2005-04-16 15:20:36 -070014500 SET_NETDEV_DEV(dev, &pdev->dev);
14501
Linus Torvalds1da177e2005-04-16 15:20:36 -070014502#if TG3_VLAN_TAG_USED
14503 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014504#endif
14505
14506 tp = netdev_priv(dev);
14507 tp->pdev = pdev;
14508 tp->dev = dev;
14509 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014510 tp->rx_mode = TG3_DEF_RX_MODE;
14511 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070014512
Linus Torvalds1da177e2005-04-16 15:20:36 -070014513 if (tg3_debug > 0)
14514 tp->msg_enable = tg3_debug;
14515 else
14516 tp->msg_enable = TG3_DEF_MSG_ENABLE;
14517
14518 /* The word/byte swap controls here control register access byte
14519 * swapping. DMA data byte swapping is controlled in the GRC_MODE
14520 * setting below.
14521 */
14522 tp->misc_host_ctrl =
14523 MISC_HOST_CTRL_MASK_PCI_INT |
14524 MISC_HOST_CTRL_WORD_SWAP |
14525 MISC_HOST_CTRL_INDIR_ACCESS |
14526 MISC_HOST_CTRL_PCISTATE_RW;
14527
14528 /* The NONFRM (non-frame) byte/word swap controls take effect
14529 * on descriptor entries, anything which isn't packet data.
14530 *
14531 * The StrongARM chips on the board (one for tx, one for rx)
14532 * are running in big-endian mode.
14533 */
14534 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
14535 GRC_MODE_WSWAP_NONFRM_DATA);
14536#ifdef __BIG_ENDIAN
14537 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
14538#endif
14539 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014540 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000014541 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014542
Matt Carlsond5fe4882008-11-21 17:20:32 -080014543 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010014544 if (!tp->regs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014545 printk(KERN_ERR PFX "Cannot map device registers, "
14546 "aborting.\n");
14547 err = -ENOMEM;
14548 goto err_out_free_dev;
14549 }
14550
14551 tg3_init_link_config(tp);
14552
Linus Torvalds1da177e2005-04-16 15:20:36 -070014553 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
14554 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014555
Linus Torvalds1da177e2005-04-16 15:20:36 -070014556 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014557 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014558 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014559
14560 err = tg3_get_invariants(tp);
14561 if (err) {
14562 printk(KERN_ERR PFX "Problem fetching invariants of chip, "
14563 "aborting.\n");
14564 goto err_out_iounmap;
14565 }
14566
Matt Carlson615774f2009-11-13 13:03:39 +000014567 if ((tp->tg3_flags3 & TG3_FLG3_5755_PLUS) &&
14568 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
Stephen Hemminger00829822008-11-20 20:14:53 -080014569 dev->netdev_ops = &tg3_netdev_ops;
14570 else
14571 dev->netdev_ops = &tg3_netdev_ops_dma_bug;
14572
14573
Michael Chan4a29cc22006-03-19 13:21:12 -080014574 /* The EPB bridge inside 5714, 5715, and 5780 and any
14575 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080014576 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
14577 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
14578 * do DMA address check in tg3_start_xmit().
14579 */
Michael Chan4a29cc22006-03-19 13:21:12 -080014580 if (tp->tg3_flags2 & TG3_FLG2_IS_5788)
Yang Hongyang284901a2009-04-06 19:01:15 -070014581 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Michael Chan4a29cc22006-03-19 13:21:12 -080014582 else if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070014583 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080014584#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070014585 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080014586#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080014587 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070014588 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080014589
14590 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070014591 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080014592 err = pci_set_dma_mask(pdev, dma_mask);
14593 if (!err) {
14594 dev->features |= NETIF_F_HIGHDMA;
14595 err = pci_set_consistent_dma_mask(pdev,
14596 persist_dma_mask);
14597 if (err < 0) {
14598 printk(KERN_ERR PFX "Unable to obtain 64 bit "
14599 "DMA for consistent allocations\n");
14600 goto err_out_iounmap;
14601 }
14602 }
14603 }
Yang Hongyang284901a2009-04-06 19:01:15 -070014604 if (err || dma_mask == DMA_BIT_MASK(32)) {
14605 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080014606 if (err) {
14607 printk(KERN_ERR PFX "No usable DMA configuration, "
14608 "aborting.\n");
14609 goto err_out_iounmap;
14610 }
14611 }
14612
Michael Chanfdfec1722005-07-25 12:31:48 -070014613 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014614
Matt Carlson507399f2009-11-13 13:03:37 +000014615 /* Selectively allow TSO based on operating conditions */
14616 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) ||
14617 (tp->fw_needed && !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)))
14618 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
14619 else {
14620 tp->tg3_flags2 &= ~(TG3_FLG2_TSO_CAPABLE | TG3_FLG2_TSO_BUG);
14621 tp->fw_needed = NULL;
14622 }
14623
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014624 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
Matt Carlson9e9fd122009-01-19 16:57:45 -080014625 tp->fw_needed = FIRMWARE_TG3;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014626
Michael Chan4e3a7aa2006-03-20 17:47:44 -080014627 /* TSO is on by default on chips that support hardware TSO.
14628 * Firmware TSO on older chips gives lower performance, so it
14629 * is off by default, but can be enabled using ethtool.
14630 */
Matt Carlsone849cdc2009-11-13 13:03:38 +000014631 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) &&
14632 (dev->features & NETIF_F_IP_CSUM))
14633 dev->features |= NETIF_F_TSO;
14634
14635 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) ||
14636 (tp->tg3_flags2 & TG3_FLG2_HW_TSO_3)) {
14637 if (dev->features & NETIF_F_IPV6_CSUM)
Michael Chanb0026622006-07-03 19:42:14 -070014638 dev->features |= NETIF_F_TSO6;
Matt Carlsone849cdc2009-11-13 13:03:38 +000014639 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_3) ||
14640 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070014641 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14642 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014643 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000014644 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson9936bcf2007-10-10 18:03:07 -070014645 dev->features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070014646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014647
Linus Torvalds1da177e2005-04-16 15:20:36 -070014648 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
14649 !(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
14650 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
14651 tp->tg3_flags2 |= TG3_FLG2_MAX_RXPEND_64;
14652 tp->rx_pending = 63;
14653 }
14654
Linus Torvalds1da177e2005-04-16 15:20:36 -070014655 err = tg3_get_device_address(tp);
14656 if (err) {
14657 printk(KERN_ERR PFX "Could not obtain valid ethernet address, "
14658 "aborting.\n");
Matt Carlson026a6c22009-12-03 08:36:24 +000014659 goto err_out_iounmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014660 }
14661
Matt Carlson0d3031d2007-10-10 18:02:43 -070014662 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
Matt Carlson63532392008-11-03 16:49:57 -080014663 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
Al Viro79ea13c2008-01-24 02:06:46 -080014664 if (!tp->aperegs) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014665 printk(KERN_ERR PFX "Cannot map APE registers, "
14666 "aborting.\n");
14667 err = -ENOMEM;
Matt Carlson026a6c22009-12-03 08:36:24 +000014668 goto err_out_iounmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014669 }
14670
14671 tg3_ape_lock_init(tp);
Matt Carlson7fd76442009-02-25 14:27:20 +000014672
14673 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
14674 tg3_read_dash_ver(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014675 }
14676
Matt Carlsonc88864d2007-11-12 21:07:01 -080014677 /*
14678 * Reset chip in case UNDI or EFI driver did not shutdown
14679 * DMA self test will enable WDMAC and we'll see (spurious)
14680 * pending DMA on the PCI bus at that point.
14681 */
14682 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
14683 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
14684 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
14685 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
14686 }
14687
14688 err = tg3_test_dma(tp);
14689 if (err) {
14690 printk(KERN_ERR PFX "DMA engine test failed, aborting.\n");
14691 goto err_out_apeunmap;
14692 }
14693
Matt Carlsonc88864d2007-11-12 21:07:01 -080014694 /* flow control autonegotiation is default behavior */
14695 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
Steve Glendinninge18ce342008-12-16 02:00:00 -080014696 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlsonc88864d2007-11-12 21:07:01 -080014697
Matt Carlson78f90dc2009-11-13 13:03:42 +000014698 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
14699 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
14700 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
14701 for (i = 0; i < TG3_IRQ_MAX_VECS; i++) {
14702 struct tg3_napi *tnapi = &tp->napi[i];
14703
14704 tnapi->tp = tp;
14705 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
14706
14707 tnapi->int_mbox = intmbx;
14708 if (i < 4)
14709 intmbx += 0x8;
14710 else
14711 intmbx += 0x4;
14712
14713 tnapi->consmbox = rcvmbx;
14714 tnapi->prodmbox = sndmbx;
14715
14716 if (i) {
14717 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
14718 netif_napi_add(dev, &tnapi->napi, tg3_poll_msix, 64);
14719 } else {
14720 tnapi->coal_now = HOSTCC_MODE_NOW;
14721 netif_napi_add(dev, &tnapi->napi, tg3_poll, 64);
14722 }
14723
14724 if (!(tp->tg3_flags & TG3_FLAG_SUPPORT_MSIX))
14725 break;
14726
14727 /*
14728 * If we support MSIX, we'll be using RSS. If we're using
14729 * RSS, the first vector only handles link interrupts and the
14730 * remaining vectors handle rx and tx interrupts. Reuse the
14731 * mailbox values for the next iteration. The values we setup
14732 * above are still useful for the single vectored mode.
14733 */
14734 if (!i)
14735 continue;
14736
14737 rcvmbx += 0x8;
14738
14739 if (sndmbx & 0x4)
14740 sndmbx -= 0x4;
14741 else
14742 sndmbx += 0xc;
14743 }
14744
Matt Carlsonc88864d2007-11-12 21:07:01 -080014745 tg3_init_coal(tp);
14746
Michael Chanc49a1562006-12-17 17:07:29 -080014747 pci_set_drvdata(pdev, dev);
14748
Linus Torvalds1da177e2005-04-16 15:20:36 -070014749 err = register_netdev(dev);
14750 if (err) {
14751 printk(KERN_ERR PFX "Cannot register net device, "
14752 "aborting.\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070014753 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014754 }
14755
Matt Carlsondf59c942008-11-03 16:52:56 -080014756 printk(KERN_INFO "%s: Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070014757 dev->name,
14758 tp->board_part_number,
14759 tp->pci_chip_rev_id,
Michael Chanf9804dd2005-09-27 12:13:10 -070014760 tg3_bus_string(tp, str),
Johannes Berge1749612008-10-27 15:59:26 -070014761 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014762
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000014763 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
14764 struct phy_device *phydev;
14765 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsondf59c942008-11-03 16:52:56 -080014766 printk(KERN_INFO
14767 "%s: attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000014768 tp->dev->name, phydev->drv->name,
14769 dev_name(&phydev->dev));
14770 } else
Matt Carlsondf59c942008-11-03 16:52:56 -080014771 printk(KERN_INFO
14772 "%s: attached PHY is %s (%s Ethernet) (WireSpeed[%d])\n",
14773 tp->dev->name, tg3_phy_string(tp),
14774 ((tp->tg3_flags & TG3_FLAG_10_100_ONLY) ? "10/100Base-TX" :
14775 ((tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) ? "1000Base-SX" :
14776 "10/100/1000Base-T")),
14777 (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED) == 0);
14778
14779 printk(KERN_INFO "%s: RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070014780 dev->name,
14781 (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0,
14782 (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) != 0,
14783 (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) != 0,
14784 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014785 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) != 0);
Michael Chan4a29cc22006-03-19 13:21:12 -080014786 printk(KERN_INFO "%s: dma_rwctrl[%08x] dma_mask[%d-bit]\n",
14787 dev->name, tp->dma_rwctrl,
Yang Hongyang284901a2009-04-06 19:01:15 -070014788 (pdev->dma_mask == DMA_BIT_MASK(32)) ? 32 :
Yang Hongyang50cf1562009-04-06 19:01:14 -070014789 (((u64) pdev->dma_mask == DMA_BIT_MASK(40)) ? 40 : 64));
Linus Torvalds1da177e2005-04-16 15:20:36 -070014790
14791 return 0;
14792
Matt Carlson0d3031d2007-10-10 18:02:43 -070014793err_out_apeunmap:
14794 if (tp->aperegs) {
14795 iounmap(tp->aperegs);
14796 tp->aperegs = NULL;
14797 }
14798
Linus Torvalds1da177e2005-04-16 15:20:36 -070014799err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070014800 if (tp->regs) {
14801 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014802 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014804
14805err_out_free_dev:
14806 free_netdev(dev);
14807
14808err_out_free_res:
14809 pci_release_regions(pdev);
14810
14811err_out_disable_pdev:
14812 pci_disable_device(pdev);
14813 pci_set_drvdata(pdev, NULL);
14814 return err;
14815}
14816
14817static void __devexit tg3_remove_one(struct pci_dev *pdev)
14818{
14819 struct net_device *dev = pci_get_drvdata(pdev);
14820
14821 if (dev) {
14822 struct tg3 *tp = netdev_priv(dev);
14823
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080014824 if (tp->fw)
14825 release_firmware(tp->fw);
14826
Michael Chan7faa0062006-02-02 17:29:28 -080014827 flush_scheduled_work();
Matt Carlson158d7ab2008-05-29 01:37:54 -070014828
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014829 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
14830 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070014831 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014832 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070014833
Linus Torvalds1da177e2005-04-16 15:20:36 -070014834 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014835 if (tp->aperegs) {
14836 iounmap(tp->aperegs);
14837 tp->aperegs = NULL;
14838 }
Michael Chan68929142005-08-09 20:17:14 -070014839 if (tp->regs) {
14840 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014841 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014843 free_netdev(dev);
14844 pci_release_regions(pdev);
14845 pci_disable_device(pdev);
14846 pci_set_drvdata(pdev, NULL);
14847 }
14848}
14849
14850static int tg3_suspend(struct pci_dev *pdev, pm_message_t state)
14851{
14852 struct net_device *dev = pci_get_drvdata(pdev);
14853 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070014854 pci_power_t target_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014855 int err;
14856
Michael Chan3e0c95f2007-08-03 20:56:54 -070014857 /* PCI register 4 needs to be saved whether netif_running() or not.
14858 * MSI address and data need to be saved if using MSI and
14859 * netif_running().
14860 */
14861 pci_save_state(pdev);
14862
Linus Torvalds1da177e2005-04-16 15:20:36 -070014863 if (!netif_running(dev))
14864 return 0;
14865
Michael Chan7faa0062006-02-02 17:29:28 -080014866 flush_scheduled_work();
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014867 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014868 tg3_netif_stop(tp);
14869
14870 del_timer_sync(&tp->timer);
14871
David S. Millerf47c11e2005-06-24 20:18:35 -070014872 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014873 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070014874 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014875
14876 netif_device_detach(dev);
14877
David S. Millerf47c11e2005-06-24 20:18:35 -070014878 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070014879 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan6a9eba12005-12-13 21:08:58 -080014880 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
David S. Millerf47c11e2005-06-24 20:18:35 -070014881 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014882
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070014883 target_state = pdev->pm_cap ? pci_target_state(pdev) : PCI_D3hot;
14884
14885 err = tg3_set_power_state(tp, target_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014886 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014887 int err2;
14888
David S. Millerf47c11e2005-06-24 20:18:35 -070014889 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014890
Michael Chan6a9eba12005-12-13 21:08:58 -080014891 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014892 err2 = tg3_restart_hw(tp, 1);
14893 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070014894 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014895
14896 tp->timer.expires = jiffies + tp->timer_offset;
14897 add_timer(&tp->timer);
14898
14899 netif_device_attach(dev);
14900 tg3_netif_start(tp);
14901
Michael Chanb9ec6c12006-07-25 16:37:27 -070014902out:
David S. Millerf47c11e2005-06-24 20:18:35 -070014903 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014904
14905 if (!err2)
14906 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014907 }
14908
14909 return err;
14910}
14911
14912static int tg3_resume(struct pci_dev *pdev)
14913{
14914 struct net_device *dev = pci_get_drvdata(pdev);
14915 struct tg3 *tp = netdev_priv(dev);
14916 int err;
14917
Michael Chan3e0c95f2007-08-03 20:56:54 -070014918 pci_restore_state(tp->pdev);
14919
Linus Torvalds1da177e2005-04-16 15:20:36 -070014920 if (!netif_running(dev))
14921 return 0;
14922
Michael Chanbc1c7562006-03-20 17:48:03 -080014923 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014924 if (err)
14925 return err;
14926
14927 netif_device_attach(dev);
14928
David S. Millerf47c11e2005-06-24 20:18:35 -070014929 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014930
Michael Chan6a9eba12005-12-13 21:08:58 -080014931 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Michael Chanb9ec6c12006-07-25 16:37:27 -070014932 err = tg3_restart_hw(tp, 1);
14933 if (err)
14934 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014935
14936 tp->timer.expires = jiffies + tp->timer_offset;
14937 add_timer(&tp->timer);
14938
Linus Torvalds1da177e2005-04-16 15:20:36 -070014939 tg3_netif_start(tp);
14940
Michael Chanb9ec6c12006-07-25 16:37:27 -070014941out:
David S. Millerf47c11e2005-06-24 20:18:35 -070014942 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014943
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014944 if (!err)
14945 tg3_phy_start(tp);
14946
Michael Chanb9ec6c12006-07-25 16:37:27 -070014947 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014948}
14949
14950static struct pci_driver tg3_driver = {
14951 .name = DRV_MODULE_NAME,
14952 .id_table = tg3_pci_tbl,
14953 .probe = tg3_init_one,
14954 .remove = __devexit_p(tg3_remove_one),
14955 .suspend = tg3_suspend,
14956 .resume = tg3_resume
14957};
14958
14959static int __init tg3_init(void)
14960{
Jeff Garzik29917622006-08-19 17:48:59 -040014961 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014962}
14963
14964static void __exit tg3_cleanup(void)
14965{
14966 pci_unregister_driver(&tg3_driver);
14967}
14968
14969module_init(tg3_init);
14970module_exit(tg3_cleanup);