blob: ecd64a224e95219d926cc57f6fe923ee0539e16b [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.
Michael Chan65610fb2007-02-13 12:18:46 -08007 * Copyright (C) 2005-2007 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>
35#include <linux/if_vlan.h>
36#include <linux/ip.h>
37#include <linux/tcp.h>
38#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070039#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020040#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030043#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/system.h>
46#include <asm/io.h>
47#include <asm/byteorder.h>
48#include <asm/uaccess.h>
49
David S. Miller49b6e95f2007-03-29 01:38:42 -070050#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070052#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#endif
54
55#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
56#define TG3_VLAN_TAG_USED 1
57#else
58#define TG3_VLAN_TAG_USED 0
59#endif
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define TG3_TSO_SUPPORT 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#include "tg3.h"
64
65#define DRV_MODULE_NAME "tg3"
66#define PFX DRV_MODULE_NAME ": "
Matt Carlson33b0c4f2007-10-21 16:22:38 -070067#define DRV_MODULE_VERSION "3.85"
68#define DRV_MODULE_RELDATE "October 18, 2007"
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#define TG3_DEF_MAC_MODE 0
71#define TG3_DEF_RX_MODE 0
72#define TG3_DEF_TX_MODE 0
73#define TG3_DEF_MSG_ENABLE \
74 (NETIF_MSG_DRV | \
75 NETIF_MSG_PROBE | \
76 NETIF_MSG_LINK | \
77 NETIF_MSG_TIMER | \
78 NETIF_MSG_IFDOWN | \
79 NETIF_MSG_IFUP | \
80 NETIF_MSG_RX_ERR | \
81 NETIF_MSG_TX_ERR)
82
83/* length of time before we decide the hardware is borked,
84 * and dev->tx_timeout() should be called to fix the problem
85 */
86#define TG3_TX_TIMEOUT (5 * HZ)
87
88/* hardware minimum and maximum for a single frame's data payload */
89#define TG3_MIN_MTU 60
90#define TG3_MAX_MTU(tp) \
Michael Chan0f893dc2005-07-25 12:30:38 -070091 ((tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/* These numbers seem to be hard coded in the NIC firmware somehow.
94 * You can't change the ring sizes, but you can change where you place
95 * them in the NIC onboard memory.
96 */
97#define TG3_RX_RING_SIZE 512
98#define TG3_DEF_RX_RING_PENDING 200
99#define TG3_RX_JUMBO_RING_SIZE 256
100#define TG3_DEF_RX_JUMBO_RING_PENDING 100
101
102/* Do not place this n-ring entries value into the tp struct itself,
103 * we really want to expose these constants to GCC so that modulo et
104 * al. operations are done with shifts and masks instead of with
105 * hw multiply/modulo instructions. Another solution would be to
106 * replace things like '% foo' with '& (foo - 1)'.
107 */
108#define TG3_RX_RCB_RING_SIZE(tp) \
109 ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ? 512 : 1024)
110
111#define TG3_TX_RING_SIZE 512
112#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
113
114#define TG3_RX_RING_BYTES (sizeof(struct tg3_rx_buffer_desc) * \
115 TG3_RX_RING_SIZE)
116#define TG3_RX_JUMBO_RING_BYTES (sizeof(struct tg3_rx_buffer_desc) * \
117 TG3_RX_JUMBO_RING_SIZE)
118#define TG3_RX_RCB_RING_BYTES(tp) (sizeof(struct tg3_rx_buffer_desc) * \
119 TG3_RX_RCB_RING_SIZE(tp))
120#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
121 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
123
124#define RX_PKT_BUF_SZ (1536 + tp->rx_offset + 64)
125#define RX_JUMBO_PKT_BUF_SZ (9046 + tp->rx_offset + 64)
126
127/* minimum number of free TX descriptors required to wake up TX process */
Ranjit Manomohan42952232006-10-18 20:54:26 -0700128#define TG3_TX_WAKEUP_THRESH(tp) ((tp)->tx_pending / 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/* number of ETHTOOL_GSTATS u64's */
131#define TG3_NUM_STATS (sizeof(struct tg3_ethtool_stats)/sizeof(u64))
132
Michael Chan4cafd3f2005-05-29 14:56:34 -0700133#define TG3_NUM_TEST 6
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static char version[] __devinitdata =
136 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
137
138MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
139MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
140MODULE_LICENSE("GPL");
141MODULE_VERSION(DRV_MODULE_VERSION);
142
143static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
144module_param(tg3_debug, int, 0);
145MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
146
147static struct pci_device_id tg3_pci_tbl[] = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700148 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
149 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
150 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
151 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
152 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
153 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
154 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
155 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
156 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
157 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
158 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
159 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
160 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
161 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
162 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
163 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
164 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
165 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
166 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
167 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
168 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
169 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
170 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5720)},
171 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700172 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700173 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750)},
174 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
175 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750M)},
176 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
177 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
178 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
179 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
180 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
181 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
182 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
183 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
184 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
185 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
186 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700187 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700188 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
189 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
190 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800191 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700192 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
193 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
194 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
195 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
196 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
197 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
198 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700199 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
200 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700201 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
202 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700203 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700204 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
205 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700206 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
207 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
208 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
209 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
210 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
211 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
212 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
213 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
216MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
217
Andreas Mohr50da8592006-08-14 23:54:30 -0700218static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 const char string[ETH_GSTRING_LEN];
220} ethtool_stats_keys[TG3_NUM_STATS] = {
221 { "rx_octets" },
222 { "rx_fragments" },
223 { "rx_ucast_packets" },
224 { "rx_mcast_packets" },
225 { "rx_bcast_packets" },
226 { "rx_fcs_errors" },
227 { "rx_align_errors" },
228 { "rx_xon_pause_rcvd" },
229 { "rx_xoff_pause_rcvd" },
230 { "rx_mac_ctrl_rcvd" },
231 { "rx_xoff_entered" },
232 { "rx_frame_too_long_errors" },
233 { "rx_jabbers" },
234 { "rx_undersize_packets" },
235 { "rx_in_length_errors" },
236 { "rx_out_length_errors" },
237 { "rx_64_or_less_octet_packets" },
238 { "rx_65_to_127_octet_packets" },
239 { "rx_128_to_255_octet_packets" },
240 { "rx_256_to_511_octet_packets" },
241 { "rx_512_to_1023_octet_packets" },
242 { "rx_1024_to_1522_octet_packets" },
243 { "rx_1523_to_2047_octet_packets" },
244 { "rx_2048_to_4095_octet_packets" },
245 { "rx_4096_to_8191_octet_packets" },
246 { "rx_8192_to_9022_octet_packets" },
247
248 { "tx_octets" },
249 { "tx_collisions" },
250
251 { "tx_xon_sent" },
252 { "tx_xoff_sent" },
253 { "tx_flow_control" },
254 { "tx_mac_errors" },
255 { "tx_single_collisions" },
256 { "tx_mult_collisions" },
257 { "tx_deferred" },
258 { "tx_excessive_collisions" },
259 { "tx_late_collisions" },
260 { "tx_collide_2times" },
261 { "tx_collide_3times" },
262 { "tx_collide_4times" },
263 { "tx_collide_5times" },
264 { "tx_collide_6times" },
265 { "tx_collide_7times" },
266 { "tx_collide_8times" },
267 { "tx_collide_9times" },
268 { "tx_collide_10times" },
269 { "tx_collide_11times" },
270 { "tx_collide_12times" },
271 { "tx_collide_13times" },
272 { "tx_collide_14times" },
273 { "tx_collide_15times" },
274 { "tx_ucast_packets" },
275 { "tx_mcast_packets" },
276 { "tx_bcast_packets" },
277 { "tx_carrier_sense_errors" },
278 { "tx_discards" },
279 { "tx_errors" },
280
281 { "dma_writeq_full" },
282 { "dma_write_prioq_full" },
283 { "rxbds_empty" },
284 { "rx_discards" },
285 { "rx_errors" },
286 { "rx_threshold_hit" },
287
288 { "dma_readq_full" },
289 { "dma_read_prioq_full" },
290 { "tx_comp_queue_full" },
291
292 { "ring_set_send_prod_index" },
293 { "ring_status_update" },
294 { "nic_irqs" },
295 { "nic_avoided_irqs" },
296 { "nic_tx_threshold_hit" }
297};
298
Andreas Mohr50da8592006-08-14 23:54:30 -0700299static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700300 const char string[ETH_GSTRING_LEN];
301} ethtool_test_keys[TG3_NUM_TEST] = {
302 { "nvram test (online) " },
303 { "link test (online) " },
304 { "register test (offline)" },
305 { "memory test (offline)" },
306 { "loopback test (offline)" },
307 { "interrupt test (offline)" },
308};
309
Michael Chanb401e9e2005-12-19 16:27:04 -0800310static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
311{
312 writel(val, tp->regs + off);
313}
314
315static u32 tg3_read32(struct tg3 *tp, u32 off)
316{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400317 return (readl(tp->regs + off));
Michael Chanb401e9e2005-12-19 16:27:04 -0800318}
319
Matt Carlson0d3031d2007-10-10 18:02:43 -0700320static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
321{
322 writel(val, tp->aperegs + off);
323}
324
325static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
326{
327 return (readl(tp->aperegs + off));
328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
331{
Michael Chan68929142005-08-09 20:17:14 -0700332 unsigned long flags;
333
334 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700335 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
336 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700337 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700338}
339
340static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
341{
342 writel(val, tp->regs + off);
343 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
Michael Chan68929142005-08-09 20:17:14 -0700346static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
347{
348 unsigned long flags;
349 u32 val;
350
351 spin_lock_irqsave(&tp->indirect_lock, flags);
352 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
353 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
354 spin_unlock_irqrestore(&tp->indirect_lock, flags);
355 return val;
356}
357
358static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
359{
360 unsigned long flags;
361
362 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
363 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
364 TG3_64BIT_REG_LOW, val);
365 return;
366 }
367 if (off == (MAILBOX_RCV_STD_PROD_IDX + TG3_64BIT_REG_LOW)) {
368 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
369 TG3_64BIT_REG_LOW, val);
370 return;
371 }
372
373 spin_lock_irqsave(&tp->indirect_lock, flags);
374 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
375 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
376 spin_unlock_irqrestore(&tp->indirect_lock, flags);
377
378 /* In indirect mode when disabling interrupts, we also need
379 * to clear the interrupt bit in the GRC local ctrl register.
380 */
381 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
382 (val == 0x1)) {
383 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
384 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
385 }
386}
387
388static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
389{
390 unsigned long flags;
391 u32 val;
392
393 spin_lock_irqsave(&tp->indirect_lock, flags);
394 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
395 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
396 spin_unlock_irqrestore(&tp->indirect_lock, flags);
397 return val;
398}
399
Michael Chanb401e9e2005-12-19 16:27:04 -0800400/* usec_wait specifies the wait time in usec when writing to certain registers
401 * where it is unsafe to read back the register without some delay.
402 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
403 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
404 */
405static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Michael Chanb401e9e2005-12-19 16:27:04 -0800407 if ((tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) ||
408 (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND))
409 /* Non-posted methods */
410 tp->write32(tp, off, val);
411 else {
412 /* Posted method */
413 tg3_write32(tp, off, val);
414 if (usec_wait)
415 udelay(usec_wait);
416 tp->read32(tp, off);
417 }
418 /* Wait again after the read for the posted method to guarantee that
419 * the wait time is met.
420 */
421 if (usec_wait)
422 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Michael Chan09ee9292005-08-09 20:17:00 -0700425static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
426{
427 tp->write32_mbox(tp, off, val);
Michael Chan68929142005-08-09 20:17:14 -0700428 if (!(tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER) &&
429 !(tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND))
430 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700431}
432
Michael Chan20094932005-08-09 20:16:32 -0700433static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 void __iomem *mbox = tp->regs + off;
436 writel(val, mbox);
437 if (tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG)
438 writel(val, mbox);
439 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
440 readl(mbox);
441}
442
Michael Chanb5d37722006-09-27 16:06:21 -0700443static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
444{
445 return (readl(tp->regs + off + GRCMBOX_BASE));
446}
447
448static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
449{
450 writel(val, tp->regs + off + GRCMBOX_BASE);
451}
452
Michael Chan20094932005-08-09 20:16:32 -0700453#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700454#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Michael Chan20094932005-08-09 20:16:32 -0700455#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
456#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700457#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700458
459#define tw32(reg,val) tp->write32(tp, reg, val)
Michael Chanb401e9e2005-12-19 16:27:04 -0800460#define tw32_f(reg,val) _tw32_flush(tp,(reg),(val), 0)
461#define tw32_wait_f(reg,val,us) _tw32_flush(tp,(reg),(val), (us))
Michael Chan20094932005-08-09 20:16:32 -0700462#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
465{
Michael Chan68929142005-08-09 20:17:14 -0700466 unsigned long flags;
467
Michael Chanb5d37722006-09-27 16:06:21 -0700468 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
469 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
470 return;
471
Michael Chan68929142005-08-09 20:17:14 -0700472 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chanbbadf502006-04-06 21:46:34 -0700473 if (tp->tg3_flags & TG3_FLAG_SRAM_USE_CONFIG) {
474 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
475 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Michael Chanbbadf502006-04-06 21:46:34 -0700477 /* Always leave this as zero. */
478 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
479 } else {
480 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
481 tw32_f(TG3PCI_MEM_WIN_DATA, val);
482
483 /* Always leave this as zero. */
484 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
485 }
Michael Chan68929142005-08-09 20:17:14 -0700486 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
490{
Michael Chan68929142005-08-09 20:17:14 -0700491 unsigned long flags;
492
Michael Chanb5d37722006-09-27 16:06:21 -0700493 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
494 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
495 *val = 0;
496 return;
497 }
498
Michael Chan68929142005-08-09 20:17:14 -0700499 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chanbbadf502006-04-06 21:46:34 -0700500 if (tp->tg3_flags & TG3_FLAG_SRAM_USE_CONFIG) {
501 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
502 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Michael Chanbbadf502006-04-06 21:46:34 -0700504 /* Always leave this as zero. */
505 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
506 } else {
507 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
508 *val = tr32(TG3PCI_MEM_WIN_DATA);
509
510 /* Always leave this as zero. */
511 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
512 }
Michael Chan68929142005-08-09 20:17:14 -0700513 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
Matt Carlson0d3031d2007-10-10 18:02:43 -0700516static void tg3_ape_lock_init(struct tg3 *tp)
517{
518 int i;
519
520 /* Make sure the driver hasn't any stale locks. */
521 for (i = 0; i < 8; i++)
522 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + 4 * i,
523 APE_LOCK_GRANT_DRIVER);
524}
525
526static int tg3_ape_lock(struct tg3 *tp, int locknum)
527{
528 int i, off;
529 int ret = 0;
530 u32 status;
531
532 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
533 return 0;
534
535 switch (locknum) {
536 case TG3_APE_LOCK_MEM:
537 break;
538 default:
539 return -EINVAL;
540 }
541
542 off = 4 * locknum;
543
544 tg3_ape_write32(tp, TG3_APE_LOCK_REQ + off, APE_LOCK_REQ_DRIVER);
545
546 /* Wait for up to 1 millisecond to acquire lock. */
547 for (i = 0; i < 100; i++) {
548 status = tg3_ape_read32(tp, TG3_APE_LOCK_GRANT + off);
549 if (status == APE_LOCK_GRANT_DRIVER)
550 break;
551 udelay(10);
552 }
553
554 if (status != APE_LOCK_GRANT_DRIVER) {
555 /* Revoke the lock request. */
556 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + off,
557 APE_LOCK_GRANT_DRIVER);
558
559 ret = -EBUSY;
560 }
561
562 return ret;
563}
564
565static void tg3_ape_unlock(struct tg3 *tp, int locknum)
566{
567 int off;
568
569 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
570 return;
571
572 switch (locknum) {
573 case TG3_APE_LOCK_MEM:
574 break;
575 default:
576 return;
577 }
578
579 off = 4 * locknum;
580 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + off, APE_LOCK_GRANT_DRIVER);
581}
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583static void tg3_disable_ints(struct tg3 *tp)
584{
585 tw32(TG3PCI_MISC_HOST_CTRL,
586 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Michael Chan09ee9292005-08-09 20:17:00 -0700587 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590static inline void tg3_cond_int(struct tg3 *tp)
591{
Michael Chan38f38432005-09-05 17:53:32 -0700592 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
593 (tp->hw_status->status & SD_STATUS_UPDATED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
Michael Chanb5d37722006-09-27 16:06:21 -0700595 else
596 tw32(HOSTCC_MODE, tp->coalesce_mode |
597 (HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600static void tg3_enable_ints(struct tg3 *tp)
601{
Michael Chanbbe832c2005-06-24 20:20:04 -0700602 tp->irq_sync = 0;
603 wmb();
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 tw32(TG3PCI_MISC_HOST_CTRL,
606 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Michael Chan09ee9292005-08-09 20:17:00 -0700607 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
608 (tp->last_tag << 24));
Michael Chanfcfa0a32006-03-20 22:28:41 -0800609 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
610 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
611 (tp->last_tag << 24));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 tg3_cond_int(tp);
613}
614
Michael Chan04237dd2005-04-25 15:17:17 -0700615static inline unsigned int tg3_has_work(struct tg3 *tp)
616{
617 struct tg3_hw_status *sblk = tp->hw_status;
618 unsigned int work_exists = 0;
619
620 /* check for phy events */
621 if (!(tp->tg3_flags &
622 (TG3_FLAG_USE_LINKCHG_REG |
623 TG3_FLAG_POLL_SERDES))) {
624 if (sblk->status & SD_STATUS_LINK_CHG)
625 work_exists = 1;
626 }
627 /* check for RX/TX work to do */
628 if (sblk->idx[0].tx_consumer != tp->tx_cons ||
629 sblk->idx[0].rx_producer != tp->rx_rcb_ptr)
630 work_exists = 1;
631
632 return work_exists;
633}
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635/* tg3_restart_ints
Michael Chan04237dd2005-04-25 15:17:17 -0700636 * similar to tg3_enable_ints, but it accurately determines whether there
637 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400638 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 */
640static void tg3_restart_ints(struct tg3 *tp)
641{
David S. Millerfac9b832005-05-18 22:46:34 -0700642 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
643 tp->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 mmiowb();
645
David S. Millerfac9b832005-05-18 22:46:34 -0700646 /* When doing tagged status, this work check is unnecessary.
647 * The last_tag we write above tells the chip which piece of
648 * work we've completed.
649 */
650 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
651 tg3_has_work(tp))
Michael Chan04237dd2005-04-25 15:17:17 -0700652 tw32(HOSTCC_MODE, tp->coalesce_mode |
653 (HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
656static inline void tg3_netif_stop(struct tg3 *tp)
657{
Michael Chanbbe832c2005-06-24 20:20:04 -0700658 tp->dev->trans_start = jiffies; /* prevent tx timeout */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700659 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 netif_tx_disable(tp->dev);
661}
662
663static inline void tg3_netif_start(struct tg3 *tp)
664{
665 netif_wake_queue(tp->dev);
666 /* NOTE: unconditional netif_wake_queue is only appropriate
667 * so long as all callers are assured to have free tx slots
668 * (such as after tg3_init_hw)
669 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700670 napi_enable(&tp->napi);
David S. Millerf47c11e2005-06-24 20:18:35 -0700671 tp->hw_status->status |= SD_STATUS_UPDATED;
672 tg3_enable_ints(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
675static void tg3_switch_clocks(struct tg3 *tp)
676{
677 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
678 u32 orig_clock_ctrl;
679
Matt Carlson795d01c2007-10-07 23:28:17 -0700680 if ((tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
681 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700682 return;
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 orig_clock_ctrl = clock_ctrl;
685 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
686 CLOCK_CTRL_CLKRUN_OENABLE |
687 0x1f);
688 tp->pci_clock_ctrl = clock_ctrl;
689
690 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
691 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800692 tw32_wait_f(TG3PCI_CLOCK_CTRL,
693 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
695 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800696 tw32_wait_f(TG3PCI_CLOCK_CTRL,
697 clock_ctrl |
698 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
699 40);
700 tw32_wait_f(TG3PCI_CLOCK_CTRL,
701 clock_ctrl | (CLOCK_CTRL_ALTCLK),
702 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800704 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
707#define PHY_BUSY_LOOPS 5000
708
709static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
710{
711 u32 frame_val;
712 unsigned int loops;
713 int ret;
714
715 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
716 tw32_f(MAC_MI_MODE,
717 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
718 udelay(80);
719 }
720
721 *val = 0x0;
722
723 frame_val = ((PHY_ADDR << MI_COM_PHY_ADDR_SHIFT) &
724 MI_COM_PHY_ADDR_MASK);
725 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
726 MI_COM_REG_ADDR_MASK);
727 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 tw32_f(MAC_MI_COM, frame_val);
730
731 loops = PHY_BUSY_LOOPS;
732 while (loops != 0) {
733 udelay(10);
734 frame_val = tr32(MAC_MI_COM);
735
736 if ((frame_val & MI_COM_BUSY) == 0) {
737 udelay(5);
738 frame_val = tr32(MAC_MI_COM);
739 break;
740 }
741 loops -= 1;
742 }
743
744 ret = -EBUSY;
745 if (loops != 0) {
746 *val = frame_val & MI_COM_DATA_MASK;
747 ret = 0;
748 }
749
750 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
751 tw32_f(MAC_MI_MODE, tp->mi_mode);
752 udelay(80);
753 }
754
755 return ret;
756}
757
758static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
759{
760 u32 frame_val;
761 unsigned int loops;
762 int ret;
763
Michael Chanb5d37722006-09-27 16:06:21 -0700764 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
765 (reg == MII_TG3_CTRL || reg == MII_TG3_AUX_CTRL))
766 return 0;
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
769 tw32_f(MAC_MI_MODE,
770 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
771 udelay(80);
772 }
773
774 frame_val = ((PHY_ADDR << MI_COM_PHY_ADDR_SHIFT) &
775 MI_COM_PHY_ADDR_MASK);
776 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
777 MI_COM_REG_ADDR_MASK);
778 frame_val |= (val & MI_COM_DATA_MASK);
779 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 tw32_f(MAC_MI_COM, frame_val);
782
783 loops = PHY_BUSY_LOOPS;
784 while (loops != 0) {
785 udelay(10);
786 frame_val = tr32(MAC_MI_COM);
787 if ((frame_val & MI_COM_BUSY) == 0) {
788 udelay(5);
789 frame_val = tr32(MAC_MI_COM);
790 break;
791 }
792 loops -= 1;
793 }
794
795 ret = -EBUSY;
796 if (loops != 0)
797 ret = 0;
798
799 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
800 tw32_f(MAC_MI_MODE, tp->mi_mode);
801 udelay(80);
802 }
803
804 return ret;
805}
806
Matt Carlson9ef8ca92007-07-11 19:48:29 -0700807static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
808{
809 u32 phy;
810
811 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
812 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
813 return;
814
815 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
816 u32 ephy;
817
818 if (!tg3_readphy(tp, MII_TG3_EPHY_TEST, &ephy)) {
819 tg3_writephy(tp, MII_TG3_EPHY_TEST,
820 ephy | MII_TG3_EPHY_SHADOW_EN);
821 if (!tg3_readphy(tp, MII_TG3_EPHYTST_MISCCTRL, &phy)) {
822 if (enable)
823 phy |= MII_TG3_EPHYTST_MISCCTRL_MDIX;
824 else
825 phy &= ~MII_TG3_EPHYTST_MISCCTRL_MDIX;
826 tg3_writephy(tp, MII_TG3_EPHYTST_MISCCTRL, phy);
827 }
828 tg3_writephy(tp, MII_TG3_EPHY_TEST, ephy);
829 }
830 } else {
831 phy = MII_TG3_AUXCTL_MISC_RDSEL_MISC |
832 MII_TG3_AUXCTL_SHDWSEL_MISC;
833 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, phy) &&
834 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy)) {
835 if (enable)
836 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
837 else
838 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
839 phy |= MII_TG3_AUXCTL_MISC_WREN;
840 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
841 }
842 }
843}
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845static void tg3_phy_set_wirespeed(struct tg3 *tp)
846{
847 u32 val;
848
849 if (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED)
850 return;
851
852 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x7007) &&
853 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &val))
854 tg3_writephy(tp, MII_TG3_AUX_CTRL,
855 (val | (1 << 15) | (1 << 4)));
856}
857
858static int tg3_bmcr_reset(struct tg3 *tp)
859{
860 u32 phy_control;
861 int limit, err;
862
863 /* OK, reset it, and poll the BMCR_RESET bit until it
864 * clears or we time out.
865 */
866 phy_control = BMCR_RESET;
867 err = tg3_writephy(tp, MII_BMCR, phy_control);
868 if (err != 0)
869 return -EBUSY;
870
871 limit = 5000;
872 while (limit--) {
873 err = tg3_readphy(tp, MII_BMCR, &phy_control);
874 if (err != 0)
875 return -EBUSY;
876
877 if ((phy_control & BMCR_RESET) == 0) {
878 udelay(40);
879 break;
880 }
881 udelay(10);
882 }
883 if (limit <= 0)
884 return -EBUSY;
885
886 return 0;
887}
888
889static int tg3_wait_macro_done(struct tg3 *tp)
890{
891 int limit = 100;
892
893 while (limit--) {
894 u32 tmp32;
895
896 if (!tg3_readphy(tp, 0x16, &tmp32)) {
897 if ((tmp32 & 0x1000) == 0)
898 break;
899 }
900 }
901 if (limit <= 0)
902 return -EBUSY;
903
904 return 0;
905}
906
907static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
908{
909 static const u32 test_pat[4][6] = {
910 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
911 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
912 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
913 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
914 };
915 int chan;
916
917 for (chan = 0; chan < 4; chan++) {
918 int i;
919
920 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
921 (chan * 0x2000) | 0x0200);
922 tg3_writephy(tp, 0x16, 0x0002);
923
924 for (i = 0; i < 6; i++)
925 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
926 test_pat[chan][i]);
927
928 tg3_writephy(tp, 0x16, 0x0202);
929 if (tg3_wait_macro_done(tp)) {
930 *resetp = 1;
931 return -EBUSY;
932 }
933
934 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
935 (chan * 0x2000) | 0x0200);
936 tg3_writephy(tp, 0x16, 0x0082);
937 if (tg3_wait_macro_done(tp)) {
938 *resetp = 1;
939 return -EBUSY;
940 }
941
942 tg3_writephy(tp, 0x16, 0x0802);
943 if (tg3_wait_macro_done(tp)) {
944 *resetp = 1;
945 return -EBUSY;
946 }
947
948 for (i = 0; i < 6; i += 2) {
949 u32 low, high;
950
951 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
952 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
953 tg3_wait_macro_done(tp)) {
954 *resetp = 1;
955 return -EBUSY;
956 }
957 low &= 0x7fff;
958 high &= 0x000f;
959 if (low != test_pat[chan][i] ||
960 high != test_pat[chan][i+1]) {
961 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
962 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
963 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
964
965 return -EBUSY;
966 }
967 }
968 }
969
970 return 0;
971}
972
973static int tg3_phy_reset_chanpat(struct tg3 *tp)
974{
975 int chan;
976
977 for (chan = 0; chan < 4; chan++) {
978 int i;
979
980 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
981 (chan * 0x2000) | 0x0200);
982 tg3_writephy(tp, 0x16, 0x0002);
983 for (i = 0; i < 6; i++)
984 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
985 tg3_writephy(tp, 0x16, 0x0202);
986 if (tg3_wait_macro_done(tp))
987 return -EBUSY;
988 }
989
990 return 0;
991}
992
993static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
994{
995 u32 reg32, phy9_orig;
996 int retries, do_phy_reset, err;
997
998 retries = 10;
999 do_phy_reset = 1;
1000 do {
1001 if (do_phy_reset) {
1002 err = tg3_bmcr_reset(tp);
1003 if (err)
1004 return err;
1005 do_phy_reset = 0;
1006 }
1007
1008 /* Disable transmitter and interrupt. */
1009 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
1010 continue;
1011
1012 reg32 |= 0x3000;
1013 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1014
1015 /* Set full-duplex, 1000 mbps. */
1016 tg3_writephy(tp, MII_BMCR,
1017 BMCR_FULLDPLX | TG3_BMCR_SPEED1000);
1018
1019 /* Set to master mode. */
1020 if (tg3_readphy(tp, MII_TG3_CTRL, &phy9_orig))
1021 continue;
1022
1023 tg3_writephy(tp, MII_TG3_CTRL,
1024 (MII_TG3_CTRL_AS_MASTER |
1025 MII_TG3_CTRL_ENABLE_AS_MASTER));
1026
1027 /* Enable SM_DSP_CLOCK and 6dB. */
1028 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1029
1030 /* Block the PHY control access. */
1031 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
1032 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0800);
1033
1034 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
1035 if (!err)
1036 break;
1037 } while (--retries);
1038
1039 err = tg3_phy_reset_chanpat(tp);
1040 if (err)
1041 return err;
1042
1043 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
1044 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0000);
1045
1046 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
1047 tg3_writephy(tp, 0x16, 0x0000);
1048
1049 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1050 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
1051 /* Set Extended packet length bit for jumbo frames */
1052 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4400);
1053 }
1054 else {
1055 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1056 }
1057
1058 tg3_writephy(tp, MII_TG3_CTRL, phy9_orig);
1059
1060 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
1061 reg32 &= ~0x3000;
1062 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1063 } else if (!err)
1064 err = -EBUSY;
1065
1066 return err;
1067}
1068
Michael Chanc8e1e822006-04-29 18:55:17 -07001069static void tg3_link_report(struct tg3 *);
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071/* This will reset the tigon3 PHY if there is no valid
1072 * link unless the FORCE argument is non-zero.
1073 */
1074static int tg3_phy_reset(struct tg3 *tp)
1075{
1076 u32 phy_status;
1077 int err;
1078
Michael Chan60189dd2006-12-17 17:08:07 -08001079 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1080 u32 val;
1081
1082 val = tr32(GRC_MISC_CFG);
1083 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
1084 udelay(40);
1085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 err = tg3_readphy(tp, MII_BMSR, &phy_status);
1087 err |= tg3_readphy(tp, MII_BMSR, &phy_status);
1088 if (err != 0)
1089 return -EBUSY;
1090
Michael Chanc8e1e822006-04-29 18:55:17 -07001091 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
1092 netif_carrier_off(tp->dev);
1093 tg3_link_report(tp);
1094 }
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1097 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
1098 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
1099 err = tg3_phy_reset_5703_4_5(tp);
1100 if (err)
1101 return err;
1102 goto out;
1103 }
1104
1105 err = tg3_bmcr_reset(tp);
1106 if (err)
1107 return err;
1108
Matt Carlsonce057f02007-11-12 21:08:03 -08001109 if (tp->pci_chip_rev_id == CHIPREV_ID_5784_A0 ||
1110 tp->pci_chip_rev_id == CHIPREV_ID_5761_A0) {
1111 u32 val;
1112
1113 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
1114 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
1115 CPMU_LSPD_1000MB_MACCLK_12_5) {
1116 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
1117 udelay(40);
1118 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
1119 }
Matt Carlson662f38d2007-11-12 21:16:17 -08001120
1121 /* Disable GPHY autopowerdown. */
1122 tg3_writephy(tp, MII_TG3_MISC_SHDW,
1123 MII_TG3_MISC_SHDW_WREN |
1124 MII_TG3_MISC_SHDW_APD_SEL |
1125 MII_TG3_MISC_SHDW_APD_WKTM_84MS);
Matt Carlsonce057f02007-11-12 21:08:03 -08001126 }
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128out:
1129 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADC_BUG) {
1130 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1131 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1132 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x2aaa);
1133 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
1134 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0323);
1135 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1136 }
1137 if (tp->tg3_flags2 & TG3_FLG2_PHY_5704_A0_BUG) {
1138 tg3_writephy(tp, 0x1c, 0x8d68);
1139 tg3_writephy(tp, 0x1c, 0x8d68);
1140 }
1141 if (tp->tg3_flags2 & TG3_FLG2_PHY_BER_BUG) {
1142 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1143 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
1144 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x310b);
1145 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1146 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x9506);
1147 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x401f);
1148 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x14e2);
1149 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1150 }
Michael Chanc424cb22006-04-29 18:56:34 -07001151 else if (tp->tg3_flags2 & TG3_FLG2_PHY_JITTER_BUG) {
1152 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1153 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
Michael Chanc1d2a192007-01-08 19:57:20 -08001154 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADJUST_TRIM) {
1155 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
1156 tg3_writephy(tp, MII_TG3_TEST1,
1157 MII_TG3_TEST1_TRIM_EN | 0x4);
1158 } else
1159 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
Michael Chanc424cb22006-04-29 18:56:34 -07001160 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 /* Set Extended packet length bit (bit 14) on all chips that */
1163 /* support jumbo frames */
1164 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
1165 /* Cannot do read-modify-write on 5401 */
1166 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
Michael Chan0f893dc2005-07-25 12:30:38 -07001167 } else if (tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 u32 phy_reg;
1169
1170 /* Set bit 14 with read-modify-write to preserve other bits */
1171 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0007) &&
1172 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy_reg))
1173 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy_reg | 0x4000);
1174 }
1175
1176 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
1177 * jumbo frames transmission.
1178 */
Michael Chan0f893dc2005-07-25 12:30:38 -07001179 if (tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 u32 phy_reg;
1181
1182 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &phy_reg))
1183 tg3_writephy(tp, MII_TG3_EXT_CTRL,
1184 phy_reg | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
1185 }
1186
Michael Chan715116a2006-09-27 16:09:25 -07001187 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07001188 /* adjust output voltage */
1189 tg3_writephy(tp, MII_TG3_EPHY_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07001190 }
1191
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001192 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 tg3_phy_set_wirespeed(tp);
1194 return 0;
1195}
1196
1197static void tg3_frob_aux_power(struct tg3 *tp)
1198{
1199 struct tg3 *tp_peer = tp;
1200
Michael Chan9d26e212006-12-07 00:21:14 -08001201 if ((tp->tg3_flags2 & TG3_FLG2_IS_NIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return;
1203
Michael Chan8c2dc7e2005-12-19 16:26:02 -08001204 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
1205 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
1206 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Michael Chan8c2dc7e2005-12-19 16:26:02 -08001208 dev_peer = pci_get_drvdata(tp->pdev_peer);
Michael Chanbc1c7562006-03-20 17:48:03 -08001209 /* remove_one() may have been run on the peer. */
Michael Chan8c2dc7e2005-12-19 16:26:02 -08001210 if (!dev_peer)
Michael Chanbc1c7562006-03-20 17:48:03 -08001211 tp_peer = tp;
1212 else
1213 tp_peer = netdev_priv(dev_peer);
Michael Chan8c2dc7e2005-12-19 16:26:02 -08001214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 if ((tp->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
Michael Chan6921d202005-12-13 21:15:53 -08001217 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0 ||
1218 (tp_peer->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
1219 (tp_peer->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1221 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08001222 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1223 (GRC_LCLCTRL_GPIO_OE0 |
1224 GRC_LCLCTRL_GPIO_OE1 |
1225 GRC_LCLCTRL_GPIO_OE2 |
1226 GRC_LCLCTRL_GPIO_OUTPUT0 |
1227 GRC_LCLCTRL_GPIO_OUTPUT1),
1228 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 } else {
1230 u32 no_gpio2;
Michael Chandc56b7d2005-12-19 16:26:28 -08001231 u32 grc_local_ctrl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 if (tp_peer != tp &&
1234 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
1235 return;
1236
Michael Chandc56b7d2005-12-19 16:26:28 -08001237 /* Workaround to prevent overdrawing Amps. */
1238 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
1239 ASIC_REV_5714) {
1240 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chanb401e9e2005-12-19 16:27:04 -08001241 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1242 grc_local_ctrl, 100);
Michael Chandc56b7d2005-12-19 16:26:28 -08001243 }
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /* On 5753 and variants, GPIO2 cannot be used. */
1246 no_gpio2 = tp->nic_sram_data_cfg &
1247 NIC_SRAM_DATA_CFG_NO_GPIO2;
1248
Michael Chandc56b7d2005-12-19 16:26:28 -08001249 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 GRC_LCLCTRL_GPIO_OE1 |
1251 GRC_LCLCTRL_GPIO_OE2 |
1252 GRC_LCLCTRL_GPIO_OUTPUT1 |
1253 GRC_LCLCTRL_GPIO_OUTPUT2;
1254 if (no_gpio2) {
1255 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
1256 GRC_LCLCTRL_GPIO_OUTPUT2);
1257 }
Michael Chanb401e9e2005-12-19 16:27:04 -08001258 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1259 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
1262
Michael Chanb401e9e2005-12-19 16:27:04 -08001263 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1264 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 if (!no_gpio2) {
1267 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chanb401e9e2005-12-19 16:27:04 -08001268 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1269 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271 }
1272 } else {
1273 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
1274 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
1275 if (tp_peer != tp &&
1276 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
1277 return;
1278
Michael Chanb401e9e2005-12-19 16:27:04 -08001279 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1280 (GRC_LCLCTRL_GPIO_OE1 |
1281 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Michael Chanb401e9e2005-12-19 16:27:04 -08001283 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1284 GRC_LCLCTRL_GPIO_OE1, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Michael Chanb401e9e2005-12-19 16:27:04 -08001286 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1287 (GRC_LCLCTRL_GPIO_OE1 |
1288 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
1290 }
1291}
1292
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07001293static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
1294{
1295 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
1296 return 1;
1297 else if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411) {
1298 if (speed != SPEED_10)
1299 return 1;
1300 } else if (speed == SPEED_10)
1301 return 1;
1302
1303 return 0;
1304}
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306static int tg3_setup_phy(struct tg3 *, int);
1307
1308#define RESET_KIND_SHUTDOWN 0
1309#define RESET_KIND_INIT 1
1310#define RESET_KIND_SUSPEND 2
1311
1312static void tg3_write_sig_post_reset(struct tg3 *, int);
1313static int tg3_halt_cpu(struct tg3 *, u32);
Michael Chan6921d202005-12-13 21:15:53 -08001314static int tg3_nvram_lock(struct tg3 *);
1315static void tg3_nvram_unlock(struct tg3 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Michael Chan15c3b692006-03-22 01:06:52 -08001317static void tg3_power_down_phy(struct tg3 *tp)
1318{
Matt Carlsonce057f02007-11-12 21:08:03 -08001319 u32 val;
1320
Michael Chan51297242007-02-13 12:17:57 -08001321 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
1322 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
1323 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
1324 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
1325
1326 sg_dig_ctrl |=
1327 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
1328 tw32(SG_DIG_CTRL, sg_dig_ctrl);
1329 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
1330 }
Michael Chan3f7045c2006-09-27 16:02:29 -07001331 return;
Michael Chan51297242007-02-13 12:17:57 -08001332 }
Michael Chan3f7045c2006-09-27 16:02:29 -07001333
Michael Chan60189dd2006-12-17 17:08:07 -08001334 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08001335 tg3_bmcr_reset(tp);
1336 val = tr32(GRC_MISC_CFG);
1337 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
1338 udelay(40);
1339 return;
1340 } else {
Michael Chan715116a2006-09-27 16:09:25 -07001341 tg3_writephy(tp, MII_TG3_EXT_CTRL,
1342 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
1343 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x01b2);
1344 }
Michael Chan3f7045c2006-09-27 16:02:29 -07001345
Michael Chan15c3b692006-03-22 01:06:52 -08001346 /* The PHY should not be powered down on some chips because
1347 * of bugs.
1348 */
1349 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1350 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
1351 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
1352 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)))
1353 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08001354
1355 if (tp->pci_chip_rev_id == CHIPREV_ID_5784_A0 ||
1356 tp->pci_chip_rev_id == CHIPREV_ID_5761_A0) {
1357 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
1358 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
1359 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
1360 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
1361 }
1362
Michael Chan15c3b692006-03-22 01:06:52 -08001363 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
1364}
1365
Michael Chanbc1c7562006-03-20 17:48:03 -08001366static int tg3_set_power_state(struct tg3 *tp, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
1368 u32 misc_host_ctrl;
1369 u16 power_control, power_caps;
1370 int pm = tp->pm_cap;
1371
1372 /* Make sure register accesses (indirect or otherwise)
1373 * will function correctly.
1374 */
1375 pci_write_config_dword(tp->pdev,
1376 TG3PCI_MISC_HOST_CTRL,
1377 tp->misc_host_ctrl);
1378
1379 pci_read_config_word(tp->pdev,
1380 pm + PCI_PM_CTRL,
1381 &power_control);
1382 power_control |= PCI_PM_CTRL_PME_STATUS;
1383 power_control &= ~(PCI_PM_CTRL_STATE_MASK);
1384 switch (state) {
Michael Chanbc1c7562006-03-20 17:48:03 -08001385 case PCI_D0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 power_control |= 0;
1387 pci_write_config_word(tp->pdev,
1388 pm + PCI_PM_CTRL,
1389 power_control);
Michael Chan8c6bda12005-04-21 17:09:08 -07001390 udelay(100); /* Delay after power state change */
1391
Michael Chan9d26e212006-12-07 00:21:14 -08001392 /* Switch out of Vaux if it is a NIC */
1393 if (tp->tg3_flags2 & TG3_FLG2_IS_NIC)
Michael Chanb401e9e2005-12-19 16:27:04 -08001394 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 return 0;
1397
Michael Chanbc1c7562006-03-20 17:48:03 -08001398 case PCI_D1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 power_control |= 1;
1400 break;
1401
Michael Chanbc1c7562006-03-20 17:48:03 -08001402 case PCI_D2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 power_control |= 2;
1404 break;
1405
Michael Chanbc1c7562006-03-20 17:48:03 -08001406 case PCI_D3hot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 power_control |= 3;
1408 break;
1409
1410 default:
1411 printk(KERN_WARNING PFX "%s: Invalid power state (%d) "
1412 "requested.\n",
1413 tp->dev->name, state);
1414 return -EINVAL;
1415 };
1416
1417 power_control |= PCI_PM_CTRL_PME_ENABLE;
1418
1419 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
1420 tw32(TG3PCI_MISC_HOST_CTRL,
1421 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
1422
1423 if (tp->link_config.phy_is_low_power == 0) {
1424 tp->link_config.phy_is_low_power = 1;
1425 tp->link_config.orig_speed = tp->link_config.speed;
1426 tp->link_config.orig_duplex = tp->link_config.duplex;
1427 tp->link_config.orig_autoneg = tp->link_config.autoneg;
1428 }
1429
Michael Chan747e8f82005-07-25 12:33:22 -07001430 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 tp->link_config.speed = SPEED_10;
1432 tp->link_config.duplex = DUPLEX_HALF;
1433 tp->link_config.autoneg = AUTONEG_ENABLE;
1434 tg3_setup_phy(tp, 0);
1435 }
1436
Michael Chanb5d37722006-09-27 16:06:21 -07001437 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1438 u32 val;
1439
1440 val = tr32(GRC_VCPU_EXT_CTRL);
1441 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
1442 } else if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08001443 int i;
1444 u32 val;
1445
1446 for (i = 0; i < 200; i++) {
1447 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
1448 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
1449 break;
1450 msleep(1);
1451 }
1452 }
Gary Zambranoa85feb82007-05-05 11:52:19 -07001453 if (tp->tg3_flags & TG3_FLAG_WOL_CAP)
1454 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
1455 WOL_DRV_STATE_SHUTDOWN |
1456 WOL_DRV_WOL |
1457 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08001458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 pci_read_config_word(tp->pdev, pm + PCI_PM_PMC, &power_caps);
1460
1461 if (tp->tg3_flags & TG3_FLAG_WOL_ENABLE) {
1462 u32 mac_mode;
1463
1464 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
1465 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x5a);
1466 udelay(40);
1467
Michael Chan3f7045c2006-09-27 16:02:29 -07001468 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
1469 mac_mode = MAC_MODE_PORT_MODE_GMII;
1470 else
1471 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07001473 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
1474 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
1475 ASIC_REV_5700) {
1476 u32 speed = (tp->tg3_flags &
1477 TG3_FLAG_WOL_SPEED_100MB) ?
1478 SPEED_100 : SPEED_10;
1479 if (tg3_5700_link_polarity(tp, speed))
1480 mac_mode |= MAC_MODE_LINK_POLARITY;
1481 else
1482 mac_mode &= ~MAC_MODE_LINK_POLARITY;
1483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 } else {
1485 mac_mode = MAC_MODE_PORT_MODE_TBI;
1486 }
1487
John W. Linvillecbf46852005-04-21 17:01:29 -07001488 if (!(tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 tw32(MAC_LED_CTRL, tp->led_ctrl);
1490
1491 if (((power_caps & PCI_PM_CAP_PME_D3cold) &&
1492 (tp->tg3_flags & TG3_FLAG_WOL_ENABLE)))
1493 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
1494
1495 tw32_f(MAC_MODE, mac_mode);
1496 udelay(100);
1497
1498 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
1499 udelay(10);
1500 }
1501
1502 if (!(tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB) &&
1503 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1504 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
1505 u32 base_val;
1506
1507 base_val = tp->pci_clock_ctrl;
1508 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
1509 CLOCK_CTRL_TXCLK_DISABLE);
1510
Michael Chanb401e9e2005-12-19 16:27:04 -08001511 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
1512 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Michael Chand7b0a852007-02-13 12:17:38 -08001513 } else if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
Matt Carlson795d01c2007-10-07 23:28:17 -07001514 (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
Michael Chand7b0a852007-02-13 12:17:38 -08001515 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)) {
Michael Chan4cf78e42005-07-25 12:29:19 -07001516 /* do nothing */
Michael Chan85e94ce2005-04-21 17:05:28 -07001517 } else if (!((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF))) {
1519 u32 newbits1, newbits2;
1520
1521 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1522 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
1523 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
1524 CLOCK_CTRL_TXCLK_DISABLE |
1525 CLOCK_CTRL_ALTCLK);
1526 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
1527 } else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
1528 newbits1 = CLOCK_CTRL_625_CORE;
1529 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
1530 } else {
1531 newbits1 = CLOCK_CTRL_ALTCLK;
1532 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
1533 }
1534
Michael Chanb401e9e2005-12-19 16:27:04 -08001535 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
1536 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Michael Chanb401e9e2005-12-19 16:27:04 -08001538 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
1539 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
1542 u32 newbits3;
1543
1544 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1545 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
1546 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
1547 CLOCK_CTRL_TXCLK_DISABLE |
1548 CLOCK_CTRL_44MHZ_CORE);
1549 } else {
1550 newbits3 = CLOCK_CTRL_44MHZ_CORE;
1551 }
1552
Michael Chanb401e9e2005-12-19 16:27:04 -08001553 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1554 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
1556 }
1557
Michael Chan6921d202005-12-13 21:15:53 -08001558 if (!(tp->tg3_flags & TG3_FLAG_WOL_ENABLE) &&
Matt Carlson0d3031d2007-10-10 18:02:43 -07001559 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
1560 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
Michael Chan3f7045c2006-09-27 16:02:29 -07001561 tg3_power_down_phy(tp);
Michael Chan6921d202005-12-13 21:15:53 -08001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 tg3_frob_aux_power(tp);
1564
1565 /* Workaround for unstable PLL clock */
1566 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
1567 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
1568 u32 val = tr32(0x7d00);
1569
1570 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
1571 tw32(0x7d00, val);
Michael Chan6921d202005-12-13 21:15:53 -08001572 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08001573 int err;
1574
1575 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08001577 if (!err)
1578 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08001579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 }
1581
Michael Chanbbadf502006-04-06 21:46:34 -07001582 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 /* Finally, set the new power state. */
1585 pci_write_config_word(tp->pdev, pm + PCI_PM_CTRL, power_control);
Michael Chan8c6bda12005-04-21 17:09:08 -07001586 udelay(100); /* Delay after power state change */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return 0;
1589}
1590
1591static void tg3_link_report(struct tg3 *tp)
1592{
1593 if (!netif_carrier_ok(tp->dev)) {
Michael Chan9f88f292006-12-07 00:22:54 -08001594 if (netif_msg_link(tp))
1595 printk(KERN_INFO PFX "%s: Link is down.\n",
1596 tp->dev->name);
1597 } else if (netif_msg_link(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 printk(KERN_INFO PFX "%s: Link is up at %d Mbps, %s duplex.\n",
1599 tp->dev->name,
1600 (tp->link_config.active_speed == SPEED_1000 ?
1601 1000 :
1602 (tp->link_config.active_speed == SPEED_100 ?
1603 100 : 10)),
1604 (tp->link_config.active_duplex == DUPLEX_FULL ?
1605 "full" : "half"));
1606
1607 printk(KERN_INFO PFX "%s: Flow control is %s for TX and "
1608 "%s for RX.\n",
1609 tp->dev->name,
1610 (tp->tg3_flags & TG3_FLAG_TX_PAUSE) ? "on" : "off",
1611 (tp->tg3_flags & TG3_FLAG_RX_PAUSE) ? "on" : "off");
1612 }
1613}
1614
1615static void tg3_setup_flow_control(struct tg3 *tp, u32 local_adv, u32 remote_adv)
1616{
1617 u32 new_tg3_flags = 0;
1618 u32 old_rx_mode = tp->rx_mode;
1619 u32 old_tx_mode = tp->tx_mode;
1620
1621 if (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG) {
Michael Chan747e8f82005-07-25 12:33:22 -07001622
1623 /* Convert 1000BaseX flow control bits to 1000BaseT
1624 * bits before resolving flow control.
1625 */
1626 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
1627 local_adv &= ~(ADVERTISE_PAUSE_CAP |
1628 ADVERTISE_PAUSE_ASYM);
1629 remote_adv &= ~(LPA_PAUSE_CAP | LPA_PAUSE_ASYM);
1630
1631 if (local_adv & ADVERTISE_1000XPAUSE)
1632 local_adv |= ADVERTISE_PAUSE_CAP;
1633 if (local_adv & ADVERTISE_1000XPSE_ASYM)
1634 local_adv |= ADVERTISE_PAUSE_ASYM;
1635 if (remote_adv & LPA_1000XPAUSE)
1636 remote_adv |= LPA_PAUSE_CAP;
1637 if (remote_adv & LPA_1000XPAUSE_ASYM)
1638 remote_adv |= LPA_PAUSE_ASYM;
1639 }
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (local_adv & ADVERTISE_PAUSE_CAP) {
1642 if (local_adv & ADVERTISE_PAUSE_ASYM) {
1643 if (remote_adv & LPA_PAUSE_CAP)
1644 new_tg3_flags |=
1645 (TG3_FLAG_RX_PAUSE |
1646 TG3_FLAG_TX_PAUSE);
1647 else if (remote_adv & LPA_PAUSE_ASYM)
1648 new_tg3_flags |=
1649 (TG3_FLAG_RX_PAUSE);
1650 } else {
1651 if (remote_adv & LPA_PAUSE_CAP)
1652 new_tg3_flags |=
1653 (TG3_FLAG_RX_PAUSE |
1654 TG3_FLAG_TX_PAUSE);
1655 }
1656 } else if (local_adv & ADVERTISE_PAUSE_ASYM) {
1657 if ((remote_adv & LPA_PAUSE_CAP) &&
1658 (remote_adv & LPA_PAUSE_ASYM))
1659 new_tg3_flags |= TG3_FLAG_TX_PAUSE;
1660 }
1661
1662 tp->tg3_flags &= ~(TG3_FLAG_RX_PAUSE | TG3_FLAG_TX_PAUSE);
1663 tp->tg3_flags |= new_tg3_flags;
1664 } else {
1665 new_tg3_flags = tp->tg3_flags;
1666 }
1667
1668 if (new_tg3_flags & TG3_FLAG_RX_PAUSE)
1669 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1670 else
1671 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1672
1673 if (old_rx_mode != tp->rx_mode) {
1674 tw32_f(MAC_RX_MODE, tp->rx_mode);
1675 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 if (new_tg3_flags & TG3_FLAG_TX_PAUSE)
1678 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1679 else
1680 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1681
1682 if (old_tx_mode != tp->tx_mode) {
1683 tw32_f(MAC_TX_MODE, tp->tx_mode);
1684 }
1685}
1686
1687static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
1688{
1689 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
1690 case MII_TG3_AUX_STAT_10HALF:
1691 *speed = SPEED_10;
1692 *duplex = DUPLEX_HALF;
1693 break;
1694
1695 case MII_TG3_AUX_STAT_10FULL:
1696 *speed = SPEED_10;
1697 *duplex = DUPLEX_FULL;
1698 break;
1699
1700 case MII_TG3_AUX_STAT_100HALF:
1701 *speed = SPEED_100;
1702 *duplex = DUPLEX_HALF;
1703 break;
1704
1705 case MII_TG3_AUX_STAT_100FULL:
1706 *speed = SPEED_100;
1707 *duplex = DUPLEX_FULL;
1708 break;
1709
1710 case MII_TG3_AUX_STAT_1000HALF:
1711 *speed = SPEED_1000;
1712 *duplex = DUPLEX_HALF;
1713 break;
1714
1715 case MII_TG3_AUX_STAT_1000FULL:
1716 *speed = SPEED_1000;
1717 *duplex = DUPLEX_FULL;
1718 break;
1719
1720 default:
Michael Chan715116a2006-09-27 16:09:25 -07001721 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1722 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
1723 SPEED_10;
1724 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
1725 DUPLEX_HALF;
1726 break;
1727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 *speed = SPEED_INVALID;
1729 *duplex = DUPLEX_INVALID;
1730 break;
1731 };
1732}
1733
1734static void tg3_phy_copper_begin(struct tg3 *tp)
1735{
1736 u32 new_adv;
1737 int i;
1738
1739 if (tp->link_config.phy_is_low_power) {
1740 /* Entering low power mode. Disable gigabit and
1741 * 100baseT advertisements.
1742 */
1743 tg3_writephy(tp, MII_TG3_CTRL, 0);
1744
1745 new_adv = (ADVERTISE_10HALF | ADVERTISE_10FULL |
1746 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1747 if (tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB)
1748 new_adv |= (ADVERTISE_100HALF | ADVERTISE_100FULL);
1749
1750 tg3_writephy(tp, MII_ADVERTISE, new_adv);
1751 } else if (tp->link_config.speed == SPEED_INVALID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
1753 tp->link_config.advertising &=
1754 ~(ADVERTISED_1000baseT_Half |
1755 ADVERTISED_1000baseT_Full);
1756
1757 new_adv = (ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1758 if (tp->link_config.advertising & ADVERTISED_10baseT_Half)
1759 new_adv |= ADVERTISE_10HALF;
1760 if (tp->link_config.advertising & ADVERTISED_10baseT_Full)
1761 new_adv |= ADVERTISE_10FULL;
1762 if (tp->link_config.advertising & ADVERTISED_100baseT_Half)
1763 new_adv |= ADVERTISE_100HALF;
1764 if (tp->link_config.advertising & ADVERTISED_100baseT_Full)
1765 new_adv |= ADVERTISE_100FULL;
1766 tg3_writephy(tp, MII_ADVERTISE, new_adv);
1767
1768 if (tp->link_config.advertising &
1769 (ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full)) {
1770 new_adv = 0;
1771 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
1772 new_adv |= MII_TG3_CTRL_ADV_1000_HALF;
1773 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
1774 new_adv |= MII_TG3_CTRL_ADV_1000_FULL;
1775 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY) &&
1776 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
1777 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0))
1778 new_adv |= (MII_TG3_CTRL_AS_MASTER |
1779 MII_TG3_CTRL_ENABLE_AS_MASTER);
1780 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
1781 } else {
1782 tg3_writephy(tp, MII_TG3_CTRL, 0);
1783 }
1784 } else {
1785 /* Asking for a specific link mode. */
1786 if (tp->link_config.speed == SPEED_1000) {
1787 new_adv = ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP;
1788 tg3_writephy(tp, MII_ADVERTISE, new_adv);
1789
1790 if (tp->link_config.duplex == DUPLEX_FULL)
1791 new_adv = MII_TG3_CTRL_ADV_1000_FULL;
1792 else
1793 new_adv = MII_TG3_CTRL_ADV_1000_HALF;
1794 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
1795 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
1796 new_adv |= (MII_TG3_CTRL_AS_MASTER |
1797 MII_TG3_CTRL_ENABLE_AS_MASTER);
1798 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
1799 } else {
1800 tg3_writephy(tp, MII_TG3_CTRL, 0);
1801
1802 new_adv = ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP;
1803 if (tp->link_config.speed == SPEED_100) {
1804 if (tp->link_config.duplex == DUPLEX_FULL)
1805 new_adv |= ADVERTISE_100FULL;
1806 else
1807 new_adv |= ADVERTISE_100HALF;
1808 } else {
1809 if (tp->link_config.duplex == DUPLEX_FULL)
1810 new_adv |= ADVERTISE_10FULL;
1811 else
1812 new_adv |= ADVERTISE_10HALF;
1813 }
1814 tg3_writephy(tp, MII_ADVERTISE, new_adv);
1815 }
1816 }
1817
1818 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
1819 tp->link_config.speed != SPEED_INVALID) {
1820 u32 bmcr, orig_bmcr;
1821
1822 tp->link_config.active_speed = tp->link_config.speed;
1823 tp->link_config.active_duplex = tp->link_config.duplex;
1824
1825 bmcr = 0;
1826 switch (tp->link_config.speed) {
1827 default:
1828 case SPEED_10:
1829 break;
1830
1831 case SPEED_100:
1832 bmcr |= BMCR_SPEED100;
1833 break;
1834
1835 case SPEED_1000:
1836 bmcr |= TG3_BMCR_SPEED1000;
1837 break;
1838 };
1839
1840 if (tp->link_config.duplex == DUPLEX_FULL)
1841 bmcr |= BMCR_FULLDPLX;
1842
1843 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
1844 (bmcr != orig_bmcr)) {
1845 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
1846 for (i = 0; i < 1500; i++) {
1847 u32 tmp;
1848
1849 udelay(10);
1850 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
1851 tg3_readphy(tp, MII_BMSR, &tmp))
1852 continue;
1853 if (!(tmp & BMSR_LSTATUS)) {
1854 udelay(40);
1855 break;
1856 }
1857 }
1858 tg3_writephy(tp, MII_BMCR, bmcr);
1859 udelay(40);
1860 }
1861 } else {
1862 tg3_writephy(tp, MII_BMCR,
1863 BMCR_ANENABLE | BMCR_ANRESTART);
1864 }
1865}
1866
1867static int tg3_init_5401phy_dsp(struct tg3 *tp)
1868{
1869 int err;
1870
1871 /* Turn off tap power management. */
1872 /* Set Extended packet length bit */
1873 err = tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
1874
1875 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0012);
1876 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1804);
1877
1878 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0013);
1879 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1204);
1880
1881 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
1882 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0132);
1883
1884 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
1885 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0232);
1886
1887 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1888 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0a20);
1889
1890 udelay(40);
1891
1892 return err;
1893}
1894
Michael Chan3600d912006-12-07 00:21:48 -08001895static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
Michael Chan3600d912006-12-07 00:21:48 -08001897 u32 adv_reg, all_mask = 0;
1898
1899 if (mask & ADVERTISED_10baseT_Half)
1900 all_mask |= ADVERTISE_10HALF;
1901 if (mask & ADVERTISED_10baseT_Full)
1902 all_mask |= ADVERTISE_10FULL;
1903 if (mask & ADVERTISED_100baseT_Half)
1904 all_mask |= ADVERTISE_100HALF;
1905 if (mask & ADVERTISED_100baseT_Full)
1906 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
1909 return 0;
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if ((adv_reg & all_mask) != all_mask)
1912 return 0;
1913 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
1914 u32 tg3_ctrl;
1915
Michael Chan3600d912006-12-07 00:21:48 -08001916 all_mask = 0;
1917 if (mask & ADVERTISED_1000baseT_Half)
1918 all_mask |= ADVERTISE_1000HALF;
1919 if (mask & ADVERTISED_1000baseT_Full)
1920 all_mask |= ADVERTISE_1000FULL;
1921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (tg3_readphy(tp, MII_TG3_CTRL, &tg3_ctrl))
1923 return 0;
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 if ((tg3_ctrl & all_mask) != all_mask)
1926 return 0;
1927 }
1928 return 1;
1929}
1930
1931static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
1932{
1933 int current_link_up;
1934 u32 bmsr, dummy;
1935 u16 current_speed;
1936 u8 current_duplex;
1937 int i, err;
1938
1939 tw32(MAC_EVENT, 0);
1940
1941 tw32_f(MAC_STATUS,
1942 (MAC_STATUS_SYNC_CHANGED |
1943 MAC_STATUS_CFG_CHANGED |
1944 MAC_STATUS_MI_COMPLETION |
1945 MAC_STATUS_LNKSTATE_CHANGED));
1946 udelay(40);
1947
1948 tp->mi_mode = MAC_MI_MODE_BASE;
1949 tw32_f(MAC_MI_MODE, tp->mi_mode);
1950 udelay(80);
1951
1952 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x02);
1953
1954 /* Some third-party PHYs need to be reset on link going
1955 * down.
1956 */
1957 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1958 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
1959 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
1960 netif_carrier_ok(tp->dev)) {
1961 tg3_readphy(tp, MII_BMSR, &bmsr);
1962 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
1963 !(bmsr & BMSR_LSTATUS))
1964 force_reset = 1;
1965 }
1966 if (force_reset)
1967 tg3_phy_reset(tp);
1968
1969 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
1970 tg3_readphy(tp, MII_BMSR, &bmsr);
1971 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
1972 !(tp->tg3_flags & TG3_FLAG_INIT_COMPLETE))
1973 bmsr = 0;
1974
1975 if (!(bmsr & BMSR_LSTATUS)) {
1976 err = tg3_init_5401phy_dsp(tp);
1977 if (err)
1978 return err;
1979
1980 tg3_readphy(tp, MII_BMSR, &bmsr);
1981 for (i = 0; i < 1000; i++) {
1982 udelay(10);
1983 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
1984 (bmsr & BMSR_LSTATUS)) {
1985 udelay(40);
1986 break;
1987 }
1988 }
1989
1990 if ((tp->phy_id & PHY_ID_REV_MASK) == PHY_REV_BCM5401_B0 &&
1991 !(bmsr & BMSR_LSTATUS) &&
1992 tp->link_config.active_speed == SPEED_1000) {
1993 err = tg3_phy_reset(tp);
1994 if (!err)
1995 err = tg3_init_5401phy_dsp(tp);
1996 if (err)
1997 return err;
1998 }
1999 }
2000 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2001 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
2002 /* 5701 {A0,B0} CRC bug workaround */
2003 tg3_writephy(tp, 0x15, 0x0a75);
2004 tg3_writephy(tp, 0x1c, 0x8c68);
2005 tg3_writephy(tp, 0x1c, 0x8d68);
2006 tg3_writephy(tp, 0x1c, 0x8c68);
2007 }
2008
2009 /* Clear pending interrupts... */
2010 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
2011 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
2012
2013 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT)
2014 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Michael Chan715116a2006-09-27 16:09:25 -07002015 else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 tg3_writephy(tp, MII_TG3_IMASK, ~0);
2017
2018 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2019 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2020 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
2021 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2022 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
2023 else
2024 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
2025 }
2026
2027 current_link_up = 0;
2028 current_speed = SPEED_INVALID;
2029 current_duplex = DUPLEX_INVALID;
2030
2031 if (tp->tg3_flags2 & TG3_FLG2_CAPACITIVE_COUPLING) {
2032 u32 val;
2033
2034 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4007);
2035 tg3_readphy(tp, MII_TG3_AUX_CTRL, &val);
2036 if (!(val & (1 << 10))) {
2037 val |= (1 << 10);
2038 tg3_writephy(tp, MII_TG3_AUX_CTRL, val);
2039 goto relink;
2040 }
2041 }
2042
2043 bmsr = 0;
2044 for (i = 0; i < 100; i++) {
2045 tg3_readphy(tp, MII_BMSR, &bmsr);
2046 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
2047 (bmsr & BMSR_LSTATUS))
2048 break;
2049 udelay(40);
2050 }
2051
2052 if (bmsr & BMSR_LSTATUS) {
2053 u32 aux_stat, bmcr;
2054
2055 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
2056 for (i = 0; i < 2000; i++) {
2057 udelay(10);
2058 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
2059 aux_stat)
2060 break;
2061 }
2062
2063 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
2064 &current_speed,
2065 &current_duplex);
2066
2067 bmcr = 0;
2068 for (i = 0; i < 200; i++) {
2069 tg3_readphy(tp, MII_BMCR, &bmcr);
2070 if (tg3_readphy(tp, MII_BMCR, &bmcr))
2071 continue;
2072 if (bmcr && bmcr != 0x7fff)
2073 break;
2074 udelay(10);
2075 }
2076
2077 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
2078 if (bmcr & BMCR_ANENABLE) {
2079 current_link_up = 1;
2080
2081 /* Force autoneg restart if we are exiting
2082 * low power mode.
2083 */
Michael Chan3600d912006-12-07 00:21:48 -08002084 if (!tg3_copper_is_advertising_all(tp,
2085 tp->link_config.advertising))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 current_link_up = 0;
2087 } else {
2088 current_link_up = 0;
2089 }
2090 } else {
2091 if (!(bmcr & BMCR_ANENABLE) &&
2092 tp->link_config.speed == current_speed &&
2093 tp->link_config.duplex == current_duplex) {
2094 current_link_up = 1;
2095 } else {
2096 current_link_up = 0;
2097 }
2098 }
2099
2100 tp->link_config.active_speed = current_speed;
2101 tp->link_config.active_duplex = current_duplex;
2102 }
2103
2104 if (current_link_up == 1 &&
2105 (tp->link_config.active_duplex == DUPLEX_FULL) &&
2106 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
2107 u32 local_adv, remote_adv;
2108
2109 if (tg3_readphy(tp, MII_ADVERTISE, &local_adv))
2110 local_adv = 0;
2111 local_adv &= (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
2112
2113 if (tg3_readphy(tp, MII_LPA, &remote_adv))
2114 remote_adv = 0;
2115
2116 remote_adv &= (LPA_PAUSE_CAP | LPA_PAUSE_ASYM);
2117
2118 /* If we are not advertising full pause capability,
2119 * something is wrong. Bring the link down and reconfigure.
2120 */
2121 if (local_adv != ADVERTISE_PAUSE_CAP) {
2122 current_link_up = 0;
2123 } else {
2124 tg3_setup_flow_control(tp, local_adv, remote_adv);
2125 }
2126 }
2127relink:
Michael Chan6921d202005-12-13 21:15:53 -08002128 if (current_link_up == 0 || tp->link_config.phy_is_low_power) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 u32 tmp;
2130
2131 tg3_phy_copper_begin(tp);
2132
2133 tg3_readphy(tp, MII_BMSR, &tmp);
2134 if (!tg3_readphy(tp, MII_BMSR, &tmp) &&
2135 (tmp & BMSR_LSTATUS))
2136 current_link_up = 1;
2137 }
2138
2139 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
2140 if (current_link_up == 1) {
2141 if (tp->link_config.active_speed == SPEED_100 ||
2142 tp->link_config.active_speed == SPEED_10)
2143 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
2144 else
2145 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
2146 } else
2147 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
2148
2149 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
2150 if (tp->link_config.active_duplex == DUPLEX_HALF)
2151 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
2152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002154 if (current_link_up == 1 &&
2155 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002157 else
2158 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 }
2160
2161 /* ??? Without this setting Netgear GA302T PHY does not
2162 * ??? send/receive packets...
2163 */
2164 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411 &&
2165 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
2166 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
2167 tw32_f(MAC_MI_MODE, tp->mi_mode);
2168 udelay(80);
2169 }
2170
2171 tw32_f(MAC_MODE, tp->mac_mode);
2172 udelay(40);
2173
2174 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
2175 /* Polled via timer. */
2176 tw32_f(MAC_EVENT, 0);
2177 } else {
2178 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
2179 }
2180 udelay(40);
2181
2182 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
2183 current_link_up == 1 &&
2184 tp->link_config.active_speed == SPEED_1000 &&
2185 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) ||
2186 (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED))) {
2187 udelay(120);
2188 tw32_f(MAC_STATUS,
2189 (MAC_STATUS_SYNC_CHANGED |
2190 MAC_STATUS_CFG_CHANGED));
2191 udelay(40);
2192 tg3_write_mem(tp,
2193 NIC_SRAM_FIRMWARE_MBOX,
2194 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
2195 }
2196
2197 if (current_link_up != netif_carrier_ok(tp->dev)) {
2198 if (current_link_up)
2199 netif_carrier_on(tp->dev);
2200 else
2201 netif_carrier_off(tp->dev);
2202 tg3_link_report(tp);
2203 }
2204
2205 return 0;
2206}
2207
2208struct tg3_fiber_aneginfo {
2209 int state;
2210#define ANEG_STATE_UNKNOWN 0
2211#define ANEG_STATE_AN_ENABLE 1
2212#define ANEG_STATE_RESTART_INIT 2
2213#define ANEG_STATE_RESTART 3
2214#define ANEG_STATE_DISABLE_LINK_OK 4
2215#define ANEG_STATE_ABILITY_DETECT_INIT 5
2216#define ANEG_STATE_ABILITY_DETECT 6
2217#define ANEG_STATE_ACK_DETECT_INIT 7
2218#define ANEG_STATE_ACK_DETECT 8
2219#define ANEG_STATE_COMPLETE_ACK_INIT 9
2220#define ANEG_STATE_COMPLETE_ACK 10
2221#define ANEG_STATE_IDLE_DETECT_INIT 11
2222#define ANEG_STATE_IDLE_DETECT 12
2223#define ANEG_STATE_LINK_OK 13
2224#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
2225#define ANEG_STATE_NEXT_PAGE_WAIT 15
2226
2227 u32 flags;
2228#define MR_AN_ENABLE 0x00000001
2229#define MR_RESTART_AN 0x00000002
2230#define MR_AN_COMPLETE 0x00000004
2231#define MR_PAGE_RX 0x00000008
2232#define MR_NP_LOADED 0x00000010
2233#define MR_TOGGLE_TX 0x00000020
2234#define MR_LP_ADV_FULL_DUPLEX 0x00000040
2235#define MR_LP_ADV_HALF_DUPLEX 0x00000080
2236#define MR_LP_ADV_SYM_PAUSE 0x00000100
2237#define MR_LP_ADV_ASYM_PAUSE 0x00000200
2238#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
2239#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
2240#define MR_LP_ADV_NEXT_PAGE 0x00001000
2241#define MR_TOGGLE_RX 0x00002000
2242#define MR_NP_RX 0x00004000
2243
2244#define MR_LINK_OK 0x80000000
2245
2246 unsigned long link_time, cur_time;
2247
2248 u32 ability_match_cfg;
2249 int ability_match_count;
2250
2251 char ability_match, idle_match, ack_match;
2252
2253 u32 txconfig, rxconfig;
2254#define ANEG_CFG_NP 0x00000080
2255#define ANEG_CFG_ACK 0x00000040
2256#define ANEG_CFG_RF2 0x00000020
2257#define ANEG_CFG_RF1 0x00000010
2258#define ANEG_CFG_PS2 0x00000001
2259#define ANEG_CFG_PS1 0x00008000
2260#define ANEG_CFG_HD 0x00004000
2261#define ANEG_CFG_FD 0x00002000
2262#define ANEG_CFG_INVAL 0x00001f06
2263
2264};
2265#define ANEG_OK 0
2266#define ANEG_DONE 1
2267#define ANEG_TIMER_ENAB 2
2268#define ANEG_FAILED -1
2269
2270#define ANEG_STATE_SETTLE_TIME 10000
2271
2272static int tg3_fiber_aneg_smachine(struct tg3 *tp,
2273 struct tg3_fiber_aneginfo *ap)
2274{
2275 unsigned long delta;
2276 u32 rx_cfg_reg;
2277 int ret;
2278
2279 if (ap->state == ANEG_STATE_UNKNOWN) {
2280 ap->rxconfig = 0;
2281 ap->link_time = 0;
2282 ap->cur_time = 0;
2283 ap->ability_match_cfg = 0;
2284 ap->ability_match_count = 0;
2285 ap->ability_match = 0;
2286 ap->idle_match = 0;
2287 ap->ack_match = 0;
2288 }
2289 ap->cur_time++;
2290
2291 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
2292 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
2293
2294 if (rx_cfg_reg != ap->ability_match_cfg) {
2295 ap->ability_match_cfg = rx_cfg_reg;
2296 ap->ability_match = 0;
2297 ap->ability_match_count = 0;
2298 } else {
2299 if (++ap->ability_match_count > 1) {
2300 ap->ability_match = 1;
2301 ap->ability_match_cfg = rx_cfg_reg;
2302 }
2303 }
2304 if (rx_cfg_reg & ANEG_CFG_ACK)
2305 ap->ack_match = 1;
2306 else
2307 ap->ack_match = 0;
2308
2309 ap->idle_match = 0;
2310 } else {
2311 ap->idle_match = 1;
2312 ap->ability_match_cfg = 0;
2313 ap->ability_match_count = 0;
2314 ap->ability_match = 0;
2315 ap->ack_match = 0;
2316
2317 rx_cfg_reg = 0;
2318 }
2319
2320 ap->rxconfig = rx_cfg_reg;
2321 ret = ANEG_OK;
2322
2323 switch(ap->state) {
2324 case ANEG_STATE_UNKNOWN:
2325 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
2326 ap->state = ANEG_STATE_AN_ENABLE;
2327
2328 /* fallthru */
2329 case ANEG_STATE_AN_ENABLE:
2330 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
2331 if (ap->flags & MR_AN_ENABLE) {
2332 ap->link_time = 0;
2333 ap->cur_time = 0;
2334 ap->ability_match_cfg = 0;
2335 ap->ability_match_count = 0;
2336 ap->ability_match = 0;
2337 ap->idle_match = 0;
2338 ap->ack_match = 0;
2339
2340 ap->state = ANEG_STATE_RESTART_INIT;
2341 } else {
2342 ap->state = ANEG_STATE_DISABLE_LINK_OK;
2343 }
2344 break;
2345
2346 case ANEG_STATE_RESTART_INIT:
2347 ap->link_time = ap->cur_time;
2348 ap->flags &= ~(MR_NP_LOADED);
2349 ap->txconfig = 0;
2350 tw32(MAC_TX_AUTO_NEG, 0);
2351 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
2352 tw32_f(MAC_MODE, tp->mac_mode);
2353 udelay(40);
2354
2355 ret = ANEG_TIMER_ENAB;
2356 ap->state = ANEG_STATE_RESTART;
2357
2358 /* fallthru */
2359 case ANEG_STATE_RESTART:
2360 delta = ap->cur_time - ap->link_time;
2361 if (delta > ANEG_STATE_SETTLE_TIME) {
2362 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
2363 } else {
2364 ret = ANEG_TIMER_ENAB;
2365 }
2366 break;
2367
2368 case ANEG_STATE_DISABLE_LINK_OK:
2369 ret = ANEG_DONE;
2370 break;
2371
2372 case ANEG_STATE_ABILITY_DETECT_INIT:
2373 ap->flags &= ~(MR_TOGGLE_TX);
2374 ap->txconfig = (ANEG_CFG_FD | ANEG_CFG_PS1);
2375 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
2376 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
2377 tw32_f(MAC_MODE, tp->mac_mode);
2378 udelay(40);
2379
2380 ap->state = ANEG_STATE_ABILITY_DETECT;
2381 break;
2382
2383 case ANEG_STATE_ABILITY_DETECT:
2384 if (ap->ability_match != 0 && ap->rxconfig != 0) {
2385 ap->state = ANEG_STATE_ACK_DETECT_INIT;
2386 }
2387 break;
2388
2389 case ANEG_STATE_ACK_DETECT_INIT:
2390 ap->txconfig |= ANEG_CFG_ACK;
2391 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
2392 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
2393 tw32_f(MAC_MODE, tp->mac_mode);
2394 udelay(40);
2395
2396 ap->state = ANEG_STATE_ACK_DETECT;
2397
2398 /* fallthru */
2399 case ANEG_STATE_ACK_DETECT:
2400 if (ap->ack_match != 0) {
2401 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
2402 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
2403 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
2404 } else {
2405 ap->state = ANEG_STATE_AN_ENABLE;
2406 }
2407 } else if (ap->ability_match != 0 &&
2408 ap->rxconfig == 0) {
2409 ap->state = ANEG_STATE_AN_ENABLE;
2410 }
2411 break;
2412
2413 case ANEG_STATE_COMPLETE_ACK_INIT:
2414 if (ap->rxconfig & ANEG_CFG_INVAL) {
2415 ret = ANEG_FAILED;
2416 break;
2417 }
2418 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
2419 MR_LP_ADV_HALF_DUPLEX |
2420 MR_LP_ADV_SYM_PAUSE |
2421 MR_LP_ADV_ASYM_PAUSE |
2422 MR_LP_ADV_REMOTE_FAULT1 |
2423 MR_LP_ADV_REMOTE_FAULT2 |
2424 MR_LP_ADV_NEXT_PAGE |
2425 MR_TOGGLE_RX |
2426 MR_NP_RX);
2427 if (ap->rxconfig & ANEG_CFG_FD)
2428 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
2429 if (ap->rxconfig & ANEG_CFG_HD)
2430 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
2431 if (ap->rxconfig & ANEG_CFG_PS1)
2432 ap->flags |= MR_LP_ADV_SYM_PAUSE;
2433 if (ap->rxconfig & ANEG_CFG_PS2)
2434 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
2435 if (ap->rxconfig & ANEG_CFG_RF1)
2436 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
2437 if (ap->rxconfig & ANEG_CFG_RF2)
2438 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
2439 if (ap->rxconfig & ANEG_CFG_NP)
2440 ap->flags |= MR_LP_ADV_NEXT_PAGE;
2441
2442 ap->link_time = ap->cur_time;
2443
2444 ap->flags ^= (MR_TOGGLE_TX);
2445 if (ap->rxconfig & 0x0008)
2446 ap->flags |= MR_TOGGLE_RX;
2447 if (ap->rxconfig & ANEG_CFG_NP)
2448 ap->flags |= MR_NP_RX;
2449 ap->flags |= MR_PAGE_RX;
2450
2451 ap->state = ANEG_STATE_COMPLETE_ACK;
2452 ret = ANEG_TIMER_ENAB;
2453 break;
2454
2455 case ANEG_STATE_COMPLETE_ACK:
2456 if (ap->ability_match != 0 &&
2457 ap->rxconfig == 0) {
2458 ap->state = ANEG_STATE_AN_ENABLE;
2459 break;
2460 }
2461 delta = ap->cur_time - ap->link_time;
2462 if (delta > ANEG_STATE_SETTLE_TIME) {
2463 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
2464 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
2465 } else {
2466 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
2467 !(ap->flags & MR_NP_RX)) {
2468 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
2469 } else {
2470 ret = ANEG_FAILED;
2471 }
2472 }
2473 }
2474 break;
2475
2476 case ANEG_STATE_IDLE_DETECT_INIT:
2477 ap->link_time = ap->cur_time;
2478 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
2479 tw32_f(MAC_MODE, tp->mac_mode);
2480 udelay(40);
2481
2482 ap->state = ANEG_STATE_IDLE_DETECT;
2483 ret = ANEG_TIMER_ENAB;
2484 break;
2485
2486 case ANEG_STATE_IDLE_DETECT:
2487 if (ap->ability_match != 0 &&
2488 ap->rxconfig == 0) {
2489 ap->state = ANEG_STATE_AN_ENABLE;
2490 break;
2491 }
2492 delta = ap->cur_time - ap->link_time;
2493 if (delta > ANEG_STATE_SETTLE_TIME) {
2494 /* XXX another gem from the Broadcom driver :( */
2495 ap->state = ANEG_STATE_LINK_OK;
2496 }
2497 break;
2498
2499 case ANEG_STATE_LINK_OK:
2500 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
2501 ret = ANEG_DONE;
2502 break;
2503
2504 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
2505 /* ??? unimplemented */
2506 break;
2507
2508 case ANEG_STATE_NEXT_PAGE_WAIT:
2509 /* ??? unimplemented */
2510 break;
2511
2512 default:
2513 ret = ANEG_FAILED;
2514 break;
2515 };
2516
2517 return ret;
2518}
2519
2520static int fiber_autoneg(struct tg3 *tp, u32 *flags)
2521{
2522 int res = 0;
2523 struct tg3_fiber_aneginfo aninfo;
2524 int status = ANEG_FAILED;
2525 unsigned int tick;
2526 u32 tmp;
2527
2528 tw32_f(MAC_TX_AUTO_NEG, 0);
2529
2530 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
2531 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
2532 udelay(40);
2533
2534 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
2535 udelay(40);
2536
2537 memset(&aninfo, 0, sizeof(aninfo));
2538 aninfo.flags |= MR_AN_ENABLE;
2539 aninfo.state = ANEG_STATE_UNKNOWN;
2540 aninfo.cur_time = 0;
2541 tick = 0;
2542 while (++tick < 195000) {
2543 status = tg3_fiber_aneg_smachine(tp, &aninfo);
2544 if (status == ANEG_DONE || status == ANEG_FAILED)
2545 break;
2546
2547 udelay(1);
2548 }
2549
2550 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
2551 tw32_f(MAC_MODE, tp->mac_mode);
2552 udelay(40);
2553
2554 *flags = aninfo.flags;
2555
2556 if (status == ANEG_DONE &&
2557 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
2558 MR_LP_ADV_FULL_DUPLEX)))
2559 res = 1;
2560
2561 return res;
2562}
2563
2564static void tg3_init_bcm8002(struct tg3 *tp)
2565{
2566 u32 mac_status = tr32(MAC_STATUS);
2567 int i;
2568
2569 /* Reset when initting first time or we have a link. */
2570 if ((tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) &&
2571 !(mac_status & MAC_STATUS_PCS_SYNCED))
2572 return;
2573
2574 /* Set PLL lock range. */
2575 tg3_writephy(tp, 0x16, 0x8007);
2576
2577 /* SW reset */
2578 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
2579
2580 /* Wait for reset to complete. */
2581 /* XXX schedule_timeout() ... */
2582 for (i = 0; i < 500; i++)
2583 udelay(10);
2584
2585 /* Config mode; select PMA/Ch 1 regs. */
2586 tg3_writephy(tp, 0x10, 0x8411);
2587
2588 /* Enable auto-lock and comdet, select txclk for tx. */
2589 tg3_writephy(tp, 0x11, 0x0a10);
2590
2591 tg3_writephy(tp, 0x18, 0x00a0);
2592 tg3_writephy(tp, 0x16, 0x41ff);
2593
2594 /* Assert and deassert POR. */
2595 tg3_writephy(tp, 0x13, 0x0400);
2596 udelay(40);
2597 tg3_writephy(tp, 0x13, 0x0000);
2598
2599 tg3_writephy(tp, 0x11, 0x0a50);
2600 udelay(40);
2601 tg3_writephy(tp, 0x11, 0x0a10);
2602
2603 /* Wait for signal to stabilize */
2604 /* XXX schedule_timeout() ... */
2605 for (i = 0; i < 15000; i++)
2606 udelay(10);
2607
2608 /* Deselect the channel register so we can read the PHYID
2609 * later.
2610 */
2611 tg3_writephy(tp, 0x10, 0x8011);
2612}
2613
2614static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
2615{
2616 u32 sg_dig_ctrl, sg_dig_status;
2617 u32 serdes_cfg, expected_sg_dig_ctrl;
2618 int workaround, port_a;
2619 int current_link_up;
2620
2621 serdes_cfg = 0;
2622 expected_sg_dig_ctrl = 0;
2623 workaround = 0;
2624 port_a = 1;
2625 current_link_up = 0;
2626
2627 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
2628 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
2629 workaround = 1;
2630 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
2631 port_a = 0;
2632
2633 /* preserve bits 0-11,13,14 for signal pre-emphasis */
2634 /* preserve bits 20-23 for voltage regulator */
2635 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
2636 }
2637
2638 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2639
2640 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
2641 if (sg_dig_ctrl & (1 << 31)) {
2642 if (workaround) {
2643 u32 val = serdes_cfg;
2644
2645 if (port_a)
2646 val |= 0xc010000;
2647 else
2648 val |= 0x4010000;
2649 tw32_f(MAC_SERDES_CFG, val);
2650 }
2651 tw32_f(SG_DIG_CTRL, 0x01388400);
2652 }
2653 if (mac_status & MAC_STATUS_PCS_SYNCED) {
2654 tg3_setup_flow_control(tp, 0, 0);
2655 current_link_up = 1;
2656 }
2657 goto out;
2658 }
2659
2660 /* Want auto-negotiation. */
2661 expected_sg_dig_ctrl = 0x81388400;
2662
2663 /* Pause capability */
2664 expected_sg_dig_ctrl |= (1 << 11);
2665
2666 /* Asymettric pause */
2667 expected_sg_dig_ctrl |= (1 << 12);
2668
2669 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07002670 if ((tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT) &&
2671 tp->serdes_counter &&
2672 ((mac_status & (MAC_STATUS_PCS_SYNCED |
2673 MAC_STATUS_RCVD_CFG)) ==
2674 MAC_STATUS_PCS_SYNCED)) {
2675 tp->serdes_counter--;
2676 current_link_up = 1;
2677 goto out;
2678 }
2679restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 if (workaround)
2681 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
2682 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | (1 << 30));
2683 udelay(5);
2684 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
2685
Michael Chan3d3ebe72006-09-27 15:59:15 -07002686 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
2687 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
2689 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07002690 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 mac_status = tr32(MAC_STATUS);
2692
2693 if ((sg_dig_status & (1 << 1)) &&
2694 (mac_status & MAC_STATUS_PCS_SYNCED)) {
2695 u32 local_adv, remote_adv;
2696
2697 local_adv = ADVERTISE_PAUSE_CAP;
2698 remote_adv = 0;
2699 if (sg_dig_status & (1 << 19))
2700 remote_adv |= LPA_PAUSE_CAP;
2701 if (sg_dig_status & (1 << 20))
2702 remote_adv |= LPA_PAUSE_ASYM;
2703
2704 tg3_setup_flow_control(tp, local_adv, remote_adv);
2705 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07002706 tp->serdes_counter = 0;
2707 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 } else if (!(sg_dig_status & (1 << 1))) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07002709 if (tp->serdes_counter)
2710 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 else {
2712 if (workaround) {
2713 u32 val = serdes_cfg;
2714
2715 if (port_a)
2716 val |= 0xc010000;
2717 else
2718 val |= 0x4010000;
2719
2720 tw32_f(MAC_SERDES_CFG, val);
2721 }
2722
2723 tw32_f(SG_DIG_CTRL, 0x01388400);
2724 udelay(40);
2725
2726 /* Link parallel detection - link is up */
2727 /* only if we have PCS_SYNC and not */
2728 /* receiving config code words */
2729 mac_status = tr32(MAC_STATUS);
2730 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
2731 !(mac_status & MAC_STATUS_RCVD_CFG)) {
2732 tg3_setup_flow_control(tp, 0, 0);
2733 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07002734 tp->tg3_flags2 |=
2735 TG3_FLG2_PARALLEL_DETECT;
2736 tp->serdes_counter =
2737 SERDES_PARALLEL_DET_TIMEOUT;
2738 } else
2739 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 }
2741 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07002742 } else {
2743 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
2744 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 }
2746
2747out:
2748 return current_link_up;
2749}
2750
2751static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
2752{
2753 int current_link_up = 0;
2754
Michael Chan5cf64b82007-05-05 12:11:21 -07002755 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
2758 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
2759 u32 flags;
2760 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 if (fiber_autoneg(tp, &flags)) {
2763 u32 local_adv, remote_adv;
2764
2765 local_adv = ADVERTISE_PAUSE_CAP;
2766 remote_adv = 0;
2767 if (flags & MR_LP_ADV_SYM_PAUSE)
2768 remote_adv |= LPA_PAUSE_CAP;
2769 if (flags & MR_LP_ADV_ASYM_PAUSE)
2770 remote_adv |= LPA_PAUSE_ASYM;
2771
2772 tg3_setup_flow_control(tp, local_adv, remote_adv);
2773
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 current_link_up = 1;
2775 }
2776 for (i = 0; i < 30; i++) {
2777 udelay(20);
2778 tw32_f(MAC_STATUS,
2779 (MAC_STATUS_SYNC_CHANGED |
2780 MAC_STATUS_CFG_CHANGED));
2781 udelay(40);
2782 if ((tr32(MAC_STATUS) &
2783 (MAC_STATUS_SYNC_CHANGED |
2784 MAC_STATUS_CFG_CHANGED)) == 0)
2785 break;
2786 }
2787
2788 mac_status = tr32(MAC_STATUS);
2789 if (current_link_up == 0 &&
2790 (mac_status & MAC_STATUS_PCS_SYNCED) &&
2791 !(mac_status & MAC_STATUS_RCVD_CFG))
2792 current_link_up = 1;
2793 } else {
2794 /* Forcing 1000FD link up. */
2795 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
2797 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
2798 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002799
2800 tw32_f(MAC_MODE, tp->mac_mode);
2801 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 }
2803
2804out:
2805 return current_link_up;
2806}
2807
2808static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
2809{
2810 u32 orig_pause_cfg;
2811 u16 orig_active_speed;
2812 u8 orig_active_duplex;
2813 u32 mac_status;
2814 int current_link_up;
2815 int i;
2816
2817 orig_pause_cfg =
2818 (tp->tg3_flags & (TG3_FLAG_RX_PAUSE |
2819 TG3_FLAG_TX_PAUSE));
2820 orig_active_speed = tp->link_config.active_speed;
2821 orig_active_duplex = tp->link_config.active_duplex;
2822
2823 if (!(tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG) &&
2824 netif_carrier_ok(tp->dev) &&
2825 (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE)) {
2826 mac_status = tr32(MAC_STATUS);
2827 mac_status &= (MAC_STATUS_PCS_SYNCED |
2828 MAC_STATUS_SIGNAL_DET |
2829 MAC_STATUS_CFG_CHANGED |
2830 MAC_STATUS_RCVD_CFG);
2831 if (mac_status == (MAC_STATUS_PCS_SYNCED |
2832 MAC_STATUS_SIGNAL_DET)) {
2833 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
2834 MAC_STATUS_CFG_CHANGED));
2835 return 0;
2836 }
2837 }
2838
2839 tw32_f(MAC_TX_AUTO_NEG, 0);
2840
2841 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
2842 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
2843 tw32_f(MAC_MODE, tp->mac_mode);
2844 udelay(40);
2845
2846 if (tp->phy_id == PHY_ID_BCM8002)
2847 tg3_init_bcm8002(tp);
2848
2849 /* Enable link change event even when serdes polling. */
2850 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
2851 udelay(40);
2852
2853 current_link_up = 0;
2854 mac_status = tr32(MAC_STATUS);
2855
2856 if (tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG)
2857 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
2858 else
2859 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
2860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 tp->hw_status->status =
2862 (SD_STATUS_UPDATED |
2863 (tp->hw_status->status & ~SD_STATUS_LINK_CHG));
2864
2865 for (i = 0; i < 100; i++) {
2866 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
2867 MAC_STATUS_CFG_CHANGED));
2868 udelay(5);
2869 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07002870 MAC_STATUS_CFG_CHANGED |
2871 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 break;
2873 }
2874
2875 mac_status = tr32(MAC_STATUS);
2876 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
2877 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07002878 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
2879 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 tw32_f(MAC_MODE, (tp->mac_mode |
2881 MAC_MODE_SEND_CONFIGS));
2882 udelay(1);
2883 tw32_f(MAC_MODE, tp->mac_mode);
2884 }
2885 }
2886
2887 if (current_link_up == 1) {
2888 tp->link_config.active_speed = SPEED_1000;
2889 tp->link_config.active_duplex = DUPLEX_FULL;
2890 tw32(MAC_LED_CTRL, (tp->led_ctrl |
2891 LED_CTRL_LNKLED_OVERRIDE |
2892 LED_CTRL_1000MBPS_ON));
2893 } else {
2894 tp->link_config.active_speed = SPEED_INVALID;
2895 tp->link_config.active_duplex = DUPLEX_INVALID;
2896 tw32(MAC_LED_CTRL, (tp->led_ctrl |
2897 LED_CTRL_LNKLED_OVERRIDE |
2898 LED_CTRL_TRAFFIC_OVERRIDE));
2899 }
2900
2901 if (current_link_up != netif_carrier_ok(tp->dev)) {
2902 if (current_link_up)
2903 netif_carrier_on(tp->dev);
2904 else
2905 netif_carrier_off(tp->dev);
2906 tg3_link_report(tp);
2907 } else {
2908 u32 now_pause_cfg =
2909 tp->tg3_flags & (TG3_FLAG_RX_PAUSE |
2910 TG3_FLAG_TX_PAUSE);
2911 if (orig_pause_cfg != now_pause_cfg ||
2912 orig_active_speed != tp->link_config.active_speed ||
2913 orig_active_duplex != tp->link_config.active_duplex)
2914 tg3_link_report(tp);
2915 }
2916
2917 return 0;
2918}
2919
Michael Chan747e8f82005-07-25 12:33:22 -07002920static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
2921{
2922 int current_link_up, err = 0;
2923 u32 bmsr, bmcr;
2924 u16 current_speed;
2925 u8 current_duplex;
2926
2927 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
2928 tw32_f(MAC_MODE, tp->mac_mode);
2929 udelay(40);
2930
2931 tw32(MAC_EVENT, 0);
2932
2933 tw32_f(MAC_STATUS,
2934 (MAC_STATUS_SYNC_CHANGED |
2935 MAC_STATUS_CFG_CHANGED |
2936 MAC_STATUS_MI_COMPLETION |
2937 MAC_STATUS_LNKSTATE_CHANGED));
2938 udelay(40);
2939
2940 if (force_reset)
2941 tg3_phy_reset(tp);
2942
2943 current_link_up = 0;
2944 current_speed = SPEED_INVALID;
2945 current_duplex = DUPLEX_INVALID;
2946
2947 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
2948 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08002949 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
2950 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
2951 bmsr |= BMSR_LSTATUS;
2952 else
2953 bmsr &= ~BMSR_LSTATUS;
2954 }
Michael Chan747e8f82005-07-25 12:33:22 -07002955
2956 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
2957
2958 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
2959 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT)) {
2960 /* do nothing, just check for link up at the end */
2961 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
2962 u32 adv, new_adv;
2963
2964 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
2965 new_adv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
2966 ADVERTISE_1000XPAUSE |
2967 ADVERTISE_1000XPSE_ASYM |
2968 ADVERTISE_SLCT);
2969
2970 /* Always advertise symmetric PAUSE just like copper */
2971 new_adv |= ADVERTISE_1000XPAUSE;
2972
2973 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
2974 new_adv |= ADVERTISE_1000XHALF;
2975 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
2976 new_adv |= ADVERTISE_1000XFULL;
2977
2978 if ((new_adv != adv) || !(bmcr & BMCR_ANENABLE)) {
2979 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2980 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
2981 tg3_writephy(tp, MII_BMCR, bmcr);
2982
2983 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07002984 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Michael Chan747e8f82005-07-25 12:33:22 -07002985 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
2986
2987 return err;
2988 }
2989 } else {
2990 u32 new_bmcr;
2991
2992 bmcr &= ~BMCR_SPEED1000;
2993 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
2994
2995 if (tp->link_config.duplex == DUPLEX_FULL)
2996 new_bmcr |= BMCR_FULLDPLX;
2997
2998 if (new_bmcr != bmcr) {
2999 /* BMCR_SPEED1000 is a reserved bit that needs
3000 * to be set on write.
3001 */
3002 new_bmcr |= BMCR_SPEED1000;
3003
3004 /* Force a linkdown */
3005 if (netif_carrier_ok(tp->dev)) {
3006 u32 adv;
3007
3008 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
3009 adv &= ~(ADVERTISE_1000XFULL |
3010 ADVERTISE_1000XHALF |
3011 ADVERTISE_SLCT);
3012 tg3_writephy(tp, MII_ADVERTISE, adv);
3013 tg3_writephy(tp, MII_BMCR, bmcr |
3014 BMCR_ANRESTART |
3015 BMCR_ANENABLE);
3016 udelay(10);
3017 netif_carrier_off(tp->dev);
3018 }
3019 tg3_writephy(tp, MII_BMCR, new_bmcr);
3020 bmcr = new_bmcr;
3021 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
3022 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08003023 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
3024 ASIC_REV_5714) {
3025 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
3026 bmsr |= BMSR_LSTATUS;
3027 else
3028 bmsr &= ~BMSR_LSTATUS;
3029 }
Michael Chan747e8f82005-07-25 12:33:22 -07003030 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
3031 }
3032 }
3033
3034 if (bmsr & BMSR_LSTATUS) {
3035 current_speed = SPEED_1000;
3036 current_link_up = 1;
3037 if (bmcr & BMCR_FULLDPLX)
3038 current_duplex = DUPLEX_FULL;
3039 else
3040 current_duplex = DUPLEX_HALF;
3041
3042 if (bmcr & BMCR_ANENABLE) {
3043 u32 local_adv, remote_adv, common;
3044
3045 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
3046 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
3047 common = local_adv & remote_adv;
3048 if (common & (ADVERTISE_1000XHALF |
3049 ADVERTISE_1000XFULL)) {
3050 if (common & ADVERTISE_1000XFULL)
3051 current_duplex = DUPLEX_FULL;
3052 else
3053 current_duplex = DUPLEX_HALF;
3054
3055 tg3_setup_flow_control(tp, local_adv,
3056 remote_adv);
3057 }
3058 else
3059 current_link_up = 0;
3060 }
3061 }
3062
3063 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
3064 if (tp->link_config.active_duplex == DUPLEX_HALF)
3065 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
3066
3067 tw32_f(MAC_MODE, tp->mac_mode);
3068 udelay(40);
3069
3070 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3071
3072 tp->link_config.active_speed = current_speed;
3073 tp->link_config.active_duplex = current_duplex;
3074
3075 if (current_link_up != netif_carrier_ok(tp->dev)) {
3076 if (current_link_up)
3077 netif_carrier_on(tp->dev);
3078 else {
3079 netif_carrier_off(tp->dev);
3080 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
3081 }
3082 tg3_link_report(tp);
3083 }
3084 return err;
3085}
3086
3087static void tg3_serdes_parallel_detect(struct tg3 *tp)
3088{
Michael Chan3d3ebe72006-09-27 15:59:15 -07003089 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07003090 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07003091 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07003092 return;
3093 }
3094 if (!netif_carrier_ok(tp->dev) &&
3095 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
3096 u32 bmcr;
3097
3098 tg3_readphy(tp, MII_BMCR, &bmcr);
3099 if (bmcr & BMCR_ANENABLE) {
3100 u32 phy1, phy2;
3101
3102 /* Select shadow register 0x1f */
3103 tg3_writephy(tp, 0x1c, 0x7c00);
3104 tg3_readphy(tp, 0x1c, &phy1);
3105
3106 /* Select expansion interrupt status register */
3107 tg3_writephy(tp, 0x17, 0x0f01);
3108 tg3_readphy(tp, 0x15, &phy2);
3109 tg3_readphy(tp, 0x15, &phy2);
3110
3111 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
3112 /* We have signal detect and not receiving
3113 * config code words, link is up by parallel
3114 * detection.
3115 */
3116
3117 bmcr &= ~BMCR_ANENABLE;
3118 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
3119 tg3_writephy(tp, MII_BMCR, bmcr);
3120 tp->tg3_flags2 |= TG3_FLG2_PARALLEL_DETECT;
3121 }
3122 }
3123 }
3124 else if (netif_carrier_ok(tp->dev) &&
3125 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
3126 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT)) {
3127 u32 phy2;
3128
3129 /* Select expansion interrupt status register */
3130 tg3_writephy(tp, 0x17, 0x0f01);
3131 tg3_readphy(tp, 0x15, &phy2);
3132 if (phy2 & 0x20) {
3133 u32 bmcr;
3134
3135 /* Config code words received, turn on autoneg. */
3136 tg3_readphy(tp, MII_BMCR, &bmcr);
3137 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
3138
3139 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
3140
3141 }
3142 }
3143}
3144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145static int tg3_setup_phy(struct tg3 *tp, int force_reset)
3146{
3147 int err;
3148
3149 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
3150 err = tg3_setup_fiber_phy(tp, force_reset);
Michael Chan747e8f82005-07-25 12:33:22 -07003151 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
3152 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 } else {
3154 err = tg3_setup_copper_phy(tp, force_reset);
3155 }
3156
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08003157 if (tp->pci_chip_rev_id == CHIPREV_ID_5784_A0) {
3158 u32 val, scale;
3159
3160 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
3161 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
3162 scale = 65;
3163 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
3164 scale = 6;
3165 else
3166 scale = 12;
3167
3168 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
3169 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
3170 tw32(GRC_MISC_CFG, val);
3171 }
3172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 if (tp->link_config.active_speed == SPEED_1000 &&
3174 tp->link_config.active_duplex == DUPLEX_HALF)
3175 tw32(MAC_TX_LENGTHS,
3176 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
3177 (6 << TX_LENGTHS_IPG_SHIFT) |
3178 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
3179 else
3180 tw32(MAC_TX_LENGTHS,
3181 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
3182 (6 << TX_LENGTHS_IPG_SHIFT) |
3183 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
3184
3185 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
3186 if (netif_carrier_ok(tp->dev)) {
3187 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07003188 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 } else {
3190 tw32(HOSTCC_STAT_COAL_TICKS, 0);
3191 }
3192 }
3193
Matt Carlson8ed5d972007-05-07 00:25:49 -07003194 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND) {
3195 u32 val = tr32(PCIE_PWR_MGMT_THRESH);
3196 if (!netif_carrier_ok(tp->dev))
3197 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
3198 tp->pwrmgmt_thresh;
3199 else
3200 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
3201 tw32(PCIE_PWR_MGMT_THRESH, val);
3202 }
3203
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 return err;
3205}
3206
Michael Chandf3e6542006-05-26 17:48:07 -07003207/* This is called whenever we suspect that the system chipset is re-
3208 * ordering the sequence of MMIO to the tx send mailbox. The symptom
3209 * is bogus tx completions. We try to recover by setting the
3210 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
3211 * in the workqueue.
3212 */
3213static void tg3_tx_recover(struct tg3 *tp)
3214{
3215 BUG_ON((tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER) ||
3216 tp->write32_tx_mbox == tg3_write_indirect_mbox);
3217
3218 printk(KERN_WARNING PFX "%s: The system may be re-ordering memory-"
3219 "mapped I/O cycles to the network device, attempting to "
3220 "recover. Please report the problem to the driver maintainer "
3221 "and include system chipset information.\n", tp->dev->name);
3222
3223 spin_lock(&tp->lock);
Michael Chandf3e6542006-05-26 17:48:07 -07003224 tp->tg3_flags |= TG3_FLAG_TX_RECOVERY_PENDING;
Michael Chandf3e6542006-05-26 17:48:07 -07003225 spin_unlock(&tp->lock);
3226}
3227
Michael Chan1b2a7202006-08-07 21:46:02 -07003228static inline u32 tg3_tx_avail(struct tg3 *tp)
3229{
3230 smp_mb();
3231 return (tp->tx_pending -
3232 ((tp->tx_prod - tp->tx_cons) & (TG3_TX_RING_SIZE - 1)));
3233}
3234
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235/* Tigon3 never reports partial packet sends. So we do not
3236 * need special logic to handle SKBs that have not had all
3237 * of their frags sent yet, like SunGEM does.
3238 */
3239static void tg3_tx(struct tg3 *tp)
3240{
3241 u32 hw_idx = tp->hw_status->idx[0].tx_consumer;
3242 u32 sw_idx = tp->tx_cons;
3243
3244 while (sw_idx != hw_idx) {
3245 struct tx_ring_info *ri = &tp->tx_buffers[sw_idx];
3246 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07003247 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Michael Chandf3e6542006-05-26 17:48:07 -07003249 if (unlikely(skb == NULL)) {
3250 tg3_tx_recover(tp);
3251 return;
3252 }
3253
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 pci_unmap_single(tp->pdev,
3255 pci_unmap_addr(ri, mapping),
3256 skb_headlen(skb),
3257 PCI_DMA_TODEVICE);
3258
3259 ri->skb = NULL;
3260
3261 sw_idx = NEXT_TX(sw_idx);
3262
3263 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 ri = &tp->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07003265 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
3266 tx_bug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 pci_unmap_page(tp->pdev,
3269 pci_unmap_addr(ri, mapping),
3270 skb_shinfo(skb)->frags[i].size,
3271 PCI_DMA_TODEVICE);
3272
3273 sw_idx = NEXT_TX(sw_idx);
3274 }
3275
David S. Millerf47c11e2005-06-24 20:18:35 -07003276 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07003277
3278 if (unlikely(tx_bug)) {
3279 tg3_tx_recover(tp);
3280 return;
3281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 }
3283
3284 tp->tx_cons = sw_idx;
3285
Michael Chan1b2a7202006-08-07 21:46:02 -07003286 /* Need to make the tx_cons update visible to tg3_start_xmit()
3287 * before checking for netif_queue_stopped(). Without the
3288 * memory barrier, there is a small possibility that tg3_start_xmit()
3289 * will miss it and cause the queue to be stopped forever.
3290 */
3291 smp_mb();
3292
3293 if (unlikely(netif_queue_stopped(tp->dev) &&
Ranjit Manomohan42952232006-10-18 20:54:26 -07003294 (tg3_tx_avail(tp) > TG3_TX_WAKEUP_THRESH(tp)))) {
Michael Chan1b2a7202006-08-07 21:46:02 -07003295 netif_tx_lock(tp->dev);
Michael Chan51b91462005-09-01 17:41:28 -07003296 if (netif_queue_stopped(tp->dev) &&
Ranjit Manomohan42952232006-10-18 20:54:26 -07003297 (tg3_tx_avail(tp) > TG3_TX_WAKEUP_THRESH(tp)))
Michael Chan51b91462005-09-01 17:41:28 -07003298 netif_wake_queue(tp->dev);
Michael Chan1b2a7202006-08-07 21:46:02 -07003299 netif_tx_unlock(tp->dev);
Michael Chan51b91462005-09-01 17:41:28 -07003300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301}
3302
3303/* Returns size of skb allocated or < 0 on error.
3304 *
3305 * We only need to fill in the address because the other members
3306 * of the RX descriptor are invariant, see tg3_init_rings.
3307 *
3308 * Note the purposeful assymetry of cpu vs. chip accesses. For
3309 * posting buffers we only dirty the first cache line of the RX
3310 * descriptor (containing the address). Whereas for the RX status
3311 * buffers the cpu only reads the last cacheline of the RX descriptor
3312 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
3313 */
3314static int tg3_alloc_rx_skb(struct tg3 *tp, u32 opaque_key,
3315 int src_idx, u32 dest_idx_unmasked)
3316{
3317 struct tg3_rx_buffer_desc *desc;
3318 struct ring_info *map, *src_map;
3319 struct sk_buff *skb;
3320 dma_addr_t mapping;
3321 int skb_size, dest_idx;
3322
3323 src_map = NULL;
3324 switch (opaque_key) {
3325 case RXD_OPAQUE_RING_STD:
3326 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
3327 desc = &tp->rx_std[dest_idx];
3328 map = &tp->rx_std_buffers[dest_idx];
3329 if (src_idx >= 0)
3330 src_map = &tp->rx_std_buffers[src_idx];
Michael Chan7e72aad2005-07-25 12:31:17 -07003331 skb_size = tp->rx_pkt_buf_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 break;
3333
3334 case RXD_OPAQUE_RING_JUMBO:
3335 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
3336 desc = &tp->rx_jumbo[dest_idx];
3337 map = &tp->rx_jumbo_buffers[dest_idx];
3338 if (src_idx >= 0)
3339 src_map = &tp->rx_jumbo_buffers[src_idx];
3340 skb_size = RX_JUMBO_PKT_BUF_SZ;
3341 break;
3342
3343 default:
3344 return -EINVAL;
3345 };
3346
3347 /* Do not overwrite any of the map or rp information
3348 * until we are sure we can commit to a new buffer.
3349 *
3350 * Callers depend upon this behavior and assume that
3351 * we leave everything unchanged if we fail.
3352 */
David S. Millera20e9c62006-07-31 22:38:16 -07003353 skb = netdev_alloc_skb(tp->dev, skb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 if (skb == NULL)
3355 return -ENOMEM;
3356
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 skb_reserve(skb, tp->rx_offset);
3358
3359 mapping = pci_map_single(tp->pdev, skb->data,
3360 skb_size - tp->rx_offset,
3361 PCI_DMA_FROMDEVICE);
3362
3363 map->skb = skb;
3364 pci_unmap_addr_set(map, mapping, mapping);
3365
3366 if (src_map != NULL)
3367 src_map->skb = NULL;
3368
3369 desc->addr_hi = ((u64)mapping >> 32);
3370 desc->addr_lo = ((u64)mapping & 0xffffffff);
3371
3372 return skb_size;
3373}
3374
3375/* We only need to move over in the address because the other
3376 * members of the RX descriptor are invariant. See notes above
3377 * tg3_alloc_rx_skb for full details.
3378 */
3379static void tg3_recycle_rx(struct tg3 *tp, u32 opaque_key,
3380 int src_idx, u32 dest_idx_unmasked)
3381{
3382 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
3383 struct ring_info *src_map, *dest_map;
3384 int dest_idx;
3385
3386 switch (opaque_key) {
3387 case RXD_OPAQUE_RING_STD:
3388 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
3389 dest_desc = &tp->rx_std[dest_idx];
3390 dest_map = &tp->rx_std_buffers[dest_idx];
3391 src_desc = &tp->rx_std[src_idx];
3392 src_map = &tp->rx_std_buffers[src_idx];
3393 break;
3394
3395 case RXD_OPAQUE_RING_JUMBO:
3396 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
3397 dest_desc = &tp->rx_jumbo[dest_idx];
3398 dest_map = &tp->rx_jumbo_buffers[dest_idx];
3399 src_desc = &tp->rx_jumbo[src_idx];
3400 src_map = &tp->rx_jumbo_buffers[src_idx];
3401 break;
3402
3403 default:
3404 return;
3405 };
3406
3407 dest_map->skb = src_map->skb;
3408 pci_unmap_addr_set(dest_map, mapping,
3409 pci_unmap_addr(src_map, mapping));
3410 dest_desc->addr_hi = src_desc->addr_hi;
3411 dest_desc->addr_lo = src_desc->addr_lo;
3412
3413 src_map->skb = NULL;
3414}
3415
3416#if TG3_VLAN_TAG_USED
3417static int tg3_vlan_rx(struct tg3 *tp, struct sk_buff *skb, u16 vlan_tag)
3418{
3419 return vlan_hwaccel_receive_skb(skb, tp->vlgrp, vlan_tag);
3420}
3421#endif
3422
3423/* The RX ring scheme is composed of multiple rings which post fresh
3424 * buffers to the chip, and one special ring the chip uses to report
3425 * status back to the host.
3426 *
3427 * The special ring reports the status of received packets to the
3428 * host. The chip does not write into the original descriptor the
3429 * RX buffer was obtained from. The chip simply takes the original
3430 * descriptor as provided by the host, updates the status and length
3431 * field, then writes this into the next status ring entry.
3432 *
3433 * Each ring the host uses to post buffers to the chip is described
3434 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
3435 * it is first placed into the on-chip ram. When the packet's length
3436 * is known, it walks down the TG3_BDINFO entries to select the ring.
3437 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
3438 * which is within the range of the new packet's length is chosen.
3439 *
3440 * The "separate ring for rx status" scheme may sound queer, but it makes
3441 * sense from a cache coherency perspective. If only the host writes
3442 * to the buffer post rings, and only the chip writes to the rx status
3443 * rings, then cache lines never move beyond shared-modified state.
3444 * If both the host and chip were to write into the same ring, cache line
3445 * eviction could occur since both entities want it in an exclusive state.
3446 */
3447static int tg3_rx(struct tg3 *tp, int budget)
3448{
Michael Chanf92905d2006-06-29 20:14:29 -07003449 u32 work_mask, rx_std_posted = 0;
Michael Chan483ba502005-04-25 15:14:03 -07003450 u32 sw_idx = tp->rx_rcb_ptr;
3451 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 int received;
3453
3454 hw_idx = tp->hw_status->idx[0].rx_producer;
3455 /*
3456 * We need to order the read of hw_idx and the read of
3457 * the opaque cookie.
3458 */
3459 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 work_mask = 0;
3461 received = 0;
3462 while (sw_idx != hw_idx && budget > 0) {
3463 struct tg3_rx_buffer_desc *desc = &tp->rx_rcb[sw_idx];
3464 unsigned int len;
3465 struct sk_buff *skb;
3466 dma_addr_t dma_addr;
3467 u32 opaque_key, desc_idx, *post_ptr;
3468
3469 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
3470 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
3471 if (opaque_key == RXD_OPAQUE_RING_STD) {
3472 dma_addr = pci_unmap_addr(&tp->rx_std_buffers[desc_idx],
3473 mapping);
3474 skb = tp->rx_std_buffers[desc_idx].skb;
3475 post_ptr = &tp->rx_std_ptr;
Michael Chanf92905d2006-06-29 20:14:29 -07003476 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
3478 dma_addr = pci_unmap_addr(&tp->rx_jumbo_buffers[desc_idx],
3479 mapping);
3480 skb = tp->rx_jumbo_buffers[desc_idx].skb;
3481 post_ptr = &tp->rx_jumbo_ptr;
3482 }
3483 else {
3484 goto next_pkt_nopost;
3485 }
3486
3487 work_mask |= opaque_key;
3488
3489 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
3490 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
3491 drop_it:
3492 tg3_recycle_rx(tp, opaque_key,
3493 desc_idx, *post_ptr);
3494 drop_it_no_recycle:
3495 /* Other statistics kept track of by card. */
3496 tp->net_stats.rx_dropped++;
3497 goto next_pkt;
3498 }
3499
3500 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) - 4; /* omit crc */
3501
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003502 if (len > RX_COPY_THRESHOLD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 && tp->rx_offset == 2
3504 /* rx_offset != 2 iff this is a 5701 card running
3505 * in PCI-X mode [see tg3_get_invariants()] */
3506 ) {
3507 int skb_size;
3508
3509 skb_size = tg3_alloc_rx_skb(tp, opaque_key,
3510 desc_idx, *post_ptr);
3511 if (skb_size < 0)
3512 goto drop_it;
3513
3514 pci_unmap_single(tp->pdev, dma_addr,
3515 skb_size - tp->rx_offset,
3516 PCI_DMA_FROMDEVICE);
3517
3518 skb_put(skb, len);
3519 } else {
3520 struct sk_buff *copy_skb;
3521
3522 tg3_recycle_rx(tp, opaque_key,
3523 desc_idx, *post_ptr);
3524
David S. Millera20e9c62006-07-31 22:38:16 -07003525 copy_skb = netdev_alloc_skb(tp->dev, len + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 if (copy_skb == NULL)
3527 goto drop_it_no_recycle;
3528
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 skb_reserve(copy_skb, 2);
3530 skb_put(copy_skb, len);
3531 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003532 skb_copy_from_linear_data(skb, copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
3534
3535 /* We'll reuse the original ring buffer. */
3536 skb = copy_skb;
3537 }
3538
3539 if ((tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) &&
3540 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
3541 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
3542 >> RXD_TCPCSUM_SHIFT) == 0xffff))
3543 skb->ip_summed = CHECKSUM_UNNECESSARY;
3544 else
3545 skb->ip_summed = CHECKSUM_NONE;
3546
3547 skb->protocol = eth_type_trans(skb, tp->dev);
3548#if TG3_VLAN_TAG_USED
3549 if (tp->vlgrp != NULL &&
3550 desc->type_flags & RXD_FLAG_VLAN) {
3551 tg3_vlan_rx(tp, skb,
3552 desc->err_vlan & RXD_VLAN_MASK);
3553 } else
3554#endif
3555 netif_receive_skb(skb);
3556
3557 tp->dev->last_rx = jiffies;
3558 received++;
3559 budget--;
3560
3561next_pkt:
3562 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07003563
3564 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
3565 u32 idx = *post_ptr % TG3_RX_RING_SIZE;
3566
3567 tw32_rx_mbox(MAILBOX_RCV_STD_PROD_IDX +
3568 TG3_64BIT_REG_LOW, idx);
3569 work_mask &= ~RXD_OPAQUE_RING_STD;
3570 rx_std_posted = 0;
3571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07003573 sw_idx++;
Eric Dumazet6b31a512007-02-06 13:29:21 -08003574 sw_idx &= (TG3_RX_RCB_RING_SIZE(tp) - 1);
Michael Chan52f6d692005-04-25 15:14:32 -07003575
3576 /* Refresh hw_idx to see if there is new work */
3577 if (sw_idx == hw_idx) {
3578 hw_idx = tp->hw_status->idx[0].rx_producer;
3579 rmb();
3580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 }
3582
3583 /* ACK the status ring. */
Michael Chan483ba502005-04-25 15:14:03 -07003584 tp->rx_rcb_ptr = sw_idx;
3585 tw32_rx_mbox(MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
3587 /* Refill RX ring(s). */
3588 if (work_mask & RXD_OPAQUE_RING_STD) {
3589 sw_idx = tp->rx_std_ptr % TG3_RX_RING_SIZE;
3590 tw32_rx_mbox(MAILBOX_RCV_STD_PROD_IDX + TG3_64BIT_REG_LOW,
3591 sw_idx);
3592 }
3593 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
3594 sw_idx = tp->rx_jumbo_ptr % TG3_RX_JUMBO_RING_SIZE;
3595 tw32_rx_mbox(MAILBOX_RCV_JUMBO_PROD_IDX + TG3_64BIT_REG_LOW,
3596 sw_idx);
3597 }
3598 mmiowb();
3599
3600 return received;
3601}
3602
David S. Miller6f535762007-10-11 18:08:29 -07003603static int tg3_poll_work(struct tg3 *tp, int work_done, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 struct tg3_hw_status *sblk = tp->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 /* handle link change and other phy events */
3608 if (!(tp->tg3_flags &
3609 (TG3_FLAG_USE_LINKCHG_REG |
3610 TG3_FLAG_POLL_SERDES))) {
3611 if (sblk->status & SD_STATUS_LINK_CHG) {
3612 sblk->status = SD_STATUS_UPDATED |
3613 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07003614 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07003616 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 }
3618 }
3619
3620 /* run TX completion thread */
3621 if (sblk->idx[0].tx_consumer != tp->tx_cons) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 tg3_tx(tp);
David S. Miller6f535762007-10-11 18:08:29 -07003623 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
Michael Chan4fd7ab52007-10-12 01:39:50 -07003624 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 }
3626
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 /* run RX thread, within the bounds set by NAPI.
3628 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003629 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003631 if (sblk->idx[0].rx_producer != tp->rx_rcb_ptr)
David S. Miller6f535762007-10-11 18:08:29 -07003632 work_done += tg3_rx(tp, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
David S. Miller6f535762007-10-11 18:08:29 -07003634 return work_done;
3635}
David S. Millerf7383c22005-05-18 22:50:53 -07003636
David S. Miller6f535762007-10-11 18:08:29 -07003637static int tg3_poll(struct napi_struct *napi, int budget)
3638{
3639 struct tg3 *tp = container_of(napi, struct tg3, napi);
3640 int work_done = 0;
Michael Chan4fd7ab52007-10-12 01:39:50 -07003641 struct tg3_hw_status *sblk = tp->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07003642
3643 while (1) {
3644 work_done = tg3_poll_work(tp, work_done, budget);
3645
3646 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
3647 goto tx_recovery;
3648
3649 if (unlikely(work_done >= budget))
3650 break;
3651
Michael Chan4fd7ab52007-10-12 01:39:50 -07003652 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
3653 /* tp->last_tag is used in tg3_restart_ints() below
3654 * to tell the hw how much work has been processed,
3655 * so we must read it before checking for more work.
3656 */
3657 tp->last_tag = sblk->status_tag;
3658 rmb();
3659 } else
3660 sblk->status &= ~SD_STATUS_UPDATED;
3661
David S. Miller6f535762007-10-11 18:08:29 -07003662 if (likely(!tg3_has_work(tp))) {
David S. Miller6f535762007-10-11 18:08:29 -07003663 netif_rx_complete(tp->dev, napi);
3664 tg3_restart_ints(tp);
3665 break;
3666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 }
3668
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003669 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07003670
3671tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07003672 /* work_done is guaranteed to be less than budget. */
David S. Miller6f535762007-10-11 18:08:29 -07003673 netif_rx_complete(tp->dev, napi);
3674 schedule_work(&tp->reset_task);
Michael Chan4fd7ab52007-10-12 01:39:50 -07003675 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676}
3677
David S. Millerf47c11e2005-06-24 20:18:35 -07003678static void tg3_irq_quiesce(struct tg3 *tp)
3679{
3680 BUG_ON(tp->irq_sync);
3681
3682 tp->irq_sync = 1;
3683 smp_mb();
3684
3685 synchronize_irq(tp->pdev->irq);
3686}
3687
3688static inline int tg3_irq_sync(struct tg3 *tp)
3689{
3690 return tp->irq_sync;
3691}
3692
3693/* Fully shutdown all tg3 driver activity elsewhere in the system.
3694 * If irq_sync is non-zero, then the IRQ handler must be synchronized
3695 * with as well. Most of the time, this is not necessary except when
3696 * shutting down the device.
3697 */
3698static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
3699{
Michael Chan46966542007-07-11 19:47:19 -07003700 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07003701 if (irq_sync)
3702 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07003703}
3704
3705static inline void tg3_full_unlock(struct tg3 *tp)
3706{
David S. Millerf47c11e2005-06-24 20:18:35 -07003707 spin_unlock_bh(&tp->lock);
3708}
3709
Michael Chanfcfa0a32006-03-20 22:28:41 -08003710/* One-shot MSI handler - Chip automatically disables interrupt
3711 * after sending MSI so driver doesn't have to do it.
3712 */
David Howells7d12e782006-10-05 14:55:46 +01003713static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08003714{
3715 struct net_device *dev = dev_id;
3716 struct tg3 *tp = netdev_priv(dev);
3717
3718 prefetch(tp->hw_status);
3719 prefetch(&tp->rx_rcb[tp->rx_rcb_ptr]);
3720
3721 if (likely(!tg3_irq_sync(tp)))
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003722 netif_rx_schedule(dev, &tp->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08003723
3724 return IRQ_HANDLED;
3725}
3726
Michael Chan88b06bc2005-04-21 17:13:25 -07003727/* MSI ISR - No need to check for interrupt sharing and no need to
3728 * flush status block and interrupt mailbox. PCI ordering rules
3729 * guarantee that MSI will arrive after the status block.
3730 */
David Howells7d12e782006-10-05 14:55:46 +01003731static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc2005-04-21 17:13:25 -07003732{
3733 struct net_device *dev = dev_id;
3734 struct tg3 *tp = netdev_priv(dev);
Michael Chan88b06bc2005-04-21 17:13:25 -07003735
Michael Chan61487482005-09-05 17:53:19 -07003736 prefetch(tp->hw_status);
3737 prefetch(&tp->rx_rcb[tp->rx_rcb_ptr]);
Michael Chan88b06bc2005-04-21 17:13:25 -07003738 /*
David S. Millerfac9b832005-05-18 22:46:34 -07003739 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc2005-04-21 17:13:25 -07003740 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07003741 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc2005-04-21 17:13:25 -07003742 * NIC to stop sending us irqs, engaging "in-intr-handler"
3743 * event coalescing.
3744 */
3745 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07003746 if (likely(!tg3_irq_sync(tp)))
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003747 netif_rx_schedule(dev, &tp->napi);
Michael Chan61487482005-09-05 17:53:19 -07003748
Michael Chan88b06bc2005-04-21 17:13:25 -07003749 return IRQ_RETVAL(1);
3750}
3751
David Howells7d12e782006-10-05 14:55:46 +01003752static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753{
3754 struct net_device *dev = dev_id;
3755 struct tg3 *tp = netdev_priv(dev);
3756 struct tg3_hw_status *sblk = tp->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 unsigned int handled = 1;
3758
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 /* In INTx mode, it is possible for the interrupt to arrive at
3760 * the CPU before the status block posted prior to the interrupt.
3761 * Reading the PCI State register will confirm whether the
3762 * interrupt is ours and will flush the status block.
3763 */
Michael Chand18edcb2007-03-24 20:57:11 -07003764 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
3765 if ((tp->tg3_flags & TG3_FLAG_CHIP_RESETTING) ||
3766 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
3767 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07003768 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07003769 }
Michael Chand18edcb2007-03-24 20:57:11 -07003770 }
3771
3772 /*
3773 * Writing any value to intr-mbox-0 clears PCI INTA# and
3774 * chip-internal interrupt pending events.
3775 * Writing non-zero to intr-mbox-0 additional tells the
3776 * NIC to stop sending us irqs, engaging "in-intr-handler"
3777 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07003778 *
3779 * Flush the mailbox to de-assert the IRQ immediately to prevent
3780 * spurious interrupts. The flush impacts performance but
3781 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07003782 */
Michael Chanc04cb342007-05-07 00:26:15 -07003783 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07003784 if (tg3_irq_sync(tp))
3785 goto out;
3786 sblk->status &= ~SD_STATUS_UPDATED;
3787 if (likely(tg3_has_work(tp))) {
3788 prefetch(&tp->rx_rcb[tp->rx_rcb_ptr]);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003789 netif_rx_schedule(dev, &tp->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07003790 } else {
3791 /* No work, shared interrupt perhaps? re-enable
3792 * interrupts, and flush that PCI write
3793 */
3794 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
3795 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07003796 }
David S. Millerf47c11e2005-06-24 20:18:35 -07003797out:
David S. Millerfac9b832005-05-18 22:46:34 -07003798 return IRQ_RETVAL(handled);
3799}
3800
David Howells7d12e782006-10-05 14:55:46 +01003801static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07003802{
3803 struct net_device *dev = dev_id;
3804 struct tg3 *tp = netdev_priv(dev);
3805 struct tg3_hw_status *sblk = tp->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07003806 unsigned int handled = 1;
3807
David S. Millerfac9b832005-05-18 22:46:34 -07003808 /* In INTx mode, it is possible for the interrupt to arrive at
3809 * the CPU before the status block posted prior to the interrupt.
3810 * Reading the PCI State register will confirm whether the
3811 * interrupt is ours and will flush the status block.
3812 */
Michael Chand18edcb2007-03-24 20:57:11 -07003813 if (unlikely(sblk->status_tag == tp->last_tag)) {
3814 if ((tp->tg3_flags & TG3_FLAG_CHIP_RESETTING) ||
3815 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
3816 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07003817 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 }
Michael Chand18edcb2007-03-24 20:57:11 -07003819 }
3820
3821 /*
3822 * writing any value to intr-mbox-0 clears PCI INTA# and
3823 * chip-internal interrupt pending events.
3824 * writing non-zero to intr-mbox-0 additional tells the
3825 * NIC to stop sending us irqs, engaging "in-intr-handler"
3826 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07003827 *
3828 * Flush the mailbox to de-assert the IRQ immediately to prevent
3829 * spurious interrupts. The flush impacts performance but
3830 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07003831 */
Michael Chanc04cb342007-05-07 00:26:15 -07003832 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07003833 if (tg3_irq_sync(tp))
3834 goto out;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003835 if (netif_rx_schedule_prep(dev, &tp->napi)) {
Michael Chand18edcb2007-03-24 20:57:11 -07003836 prefetch(&tp->rx_rcb[tp->rx_rcb_ptr]);
3837 /* Update last_tag to mark that this status has been
3838 * seen. Because interrupt may be shared, we may be
3839 * racing with tg3_poll(), so only update last_tag
3840 * if tg3_poll() is not scheduled.
3841 */
3842 tp->last_tag = sblk->status_tag;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003843 __netif_rx_schedule(dev, &tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 }
David S. Millerf47c11e2005-06-24 20:18:35 -07003845out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 return IRQ_RETVAL(handled);
3847}
3848
Michael Chan79381092005-04-21 17:13:59 -07003849/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01003850static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07003851{
3852 struct net_device *dev = dev_id;
3853 struct tg3 *tp = netdev_priv(dev);
3854 struct tg3_hw_status *sblk = tp->hw_status;
3855
Michael Chanf9804dd2005-09-27 12:13:10 -07003856 if ((sblk->status & SD_STATUS_UPDATED) ||
3857 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07003858 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07003859 return IRQ_RETVAL(1);
3860 }
3861 return IRQ_RETVAL(0);
3862}
3863
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07003864static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07003865static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
Michael Chanb9ec6c12006-07-25 16:37:27 -07003867/* Restart hardware after configuration changes, self-test, etc.
3868 * Invoked with tp->lock held.
3869 */
3870static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
3871{
3872 int err;
3873
3874 err = tg3_init_hw(tp, reset_phy);
3875 if (err) {
3876 printk(KERN_ERR PFX "%s: Failed to re-initialize device, "
3877 "aborting.\n", tp->dev->name);
3878 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
3879 tg3_full_unlock(tp);
3880 del_timer_sync(&tp->timer);
3881 tp->irq_sync = 0;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003882 napi_enable(&tp->napi);
Michael Chanb9ec6c12006-07-25 16:37:27 -07003883 dev_close(tp->dev);
3884 tg3_full_lock(tp, 0);
3885 }
3886 return err;
3887}
3888
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889#ifdef CONFIG_NET_POLL_CONTROLLER
3890static void tg3_poll_controller(struct net_device *dev)
3891{
Michael Chan88b06bc2005-04-21 17:13:25 -07003892 struct tg3 *tp = netdev_priv(dev);
3893
David Howells7d12e782006-10-05 14:55:46 +01003894 tg3_interrupt(tp->pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895}
3896#endif
3897
David Howellsc4028952006-11-22 14:57:56 +00003898static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899{
David Howellsc4028952006-11-22 14:57:56 +00003900 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 unsigned int restart_timer;
3902
Michael Chan7faa0062006-02-02 17:29:28 -08003903 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08003904
3905 if (!netif_running(tp->dev)) {
Michael Chan7faa0062006-02-02 17:29:28 -08003906 tg3_full_unlock(tp);
3907 return;
3908 }
3909
3910 tg3_full_unlock(tp);
3911
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 tg3_netif_stop(tp);
3913
David S. Millerf47c11e2005-06-24 20:18:35 -07003914 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
3916 restart_timer = tp->tg3_flags2 & TG3_FLG2_RESTART_TIMER;
3917 tp->tg3_flags2 &= ~TG3_FLG2_RESTART_TIMER;
3918
Michael Chandf3e6542006-05-26 17:48:07 -07003919 if (tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING) {
3920 tp->write32_tx_mbox = tg3_write32_tx_mbox;
3921 tp->write32_rx_mbox = tg3_write_flush_reg32;
3922 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
3923 tp->tg3_flags &= ~TG3_FLAG_TX_RECOVERY_PENDING;
3924 }
3925
Michael Chan944d9802005-05-29 14:57:48 -07003926 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Michael Chanb9ec6c12006-07-25 16:37:27 -07003927 if (tg3_init_hw(tp, 1))
3928 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
3930 tg3_netif_start(tp);
3931
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 if (restart_timer)
3933 mod_timer(&tp->timer, jiffies + 1);
Michael Chan7faa0062006-02-02 17:29:28 -08003934
Michael Chanb9ec6c12006-07-25 16:37:27 -07003935out:
Michael Chan7faa0062006-02-02 17:29:28 -08003936 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937}
3938
Michael Chanb0408752007-02-13 12:18:30 -08003939static void tg3_dump_short_state(struct tg3 *tp)
3940{
3941 printk(KERN_ERR PFX "DEBUG: MAC_TX_STATUS[%08x] MAC_RX_STATUS[%08x]\n",
3942 tr32(MAC_TX_STATUS), tr32(MAC_RX_STATUS));
3943 printk(KERN_ERR PFX "DEBUG: RDMAC_STATUS[%08x] WDMAC_STATUS[%08x]\n",
3944 tr32(RDMAC_STATUS), tr32(WDMAC_STATUS));
3945}
3946
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947static void tg3_tx_timeout(struct net_device *dev)
3948{
3949 struct tg3 *tp = netdev_priv(dev);
3950
Michael Chanb0408752007-02-13 12:18:30 -08003951 if (netif_msg_tx_err(tp)) {
Michael Chan9f88f292006-12-07 00:22:54 -08003952 printk(KERN_ERR PFX "%s: transmit timed out, resetting\n",
3953 dev->name);
Michael Chanb0408752007-02-13 12:18:30 -08003954 tg3_dump_short_state(tp);
3955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
3957 schedule_work(&tp->reset_task);
3958}
3959
Michael Chanc58ec932005-09-17 00:46:27 -07003960/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
3961static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
3962{
3963 u32 base = (u32) mapping & 0xffffffff;
3964
3965 return ((base > 0xffffdcc0) &&
3966 (base + len + 8 < base));
3967}
3968
Michael Chan72f2afb2006-03-06 19:28:35 -08003969/* Test for DMA addresses > 40-bit */
3970static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
3971 int len)
3972{
3973#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Michael Chan6728a8e2006-03-27 23:16:49 -08003974 if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG)
Michael Chan72f2afb2006-03-06 19:28:35 -08003975 return (((u64) mapping + len) > DMA_40BIT_MASK);
3976 return 0;
3977#else
3978 return 0;
3979#endif
3980}
3981
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982static void tg3_set_txd(struct tg3 *, int, dma_addr_t, int, u32, u32);
3983
Michael Chan72f2afb2006-03-06 19:28:35 -08003984/* Workaround 4GB and 40-bit hardware DMA bugs. */
3985static int tigon3_dma_hwbug_workaround(struct tg3 *tp, struct sk_buff *skb,
Michael Chanc58ec932005-09-17 00:46:27 -07003986 u32 last_plus_one, u32 *start,
3987 u32 base_flags, u32 mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988{
3989 struct sk_buff *new_skb = skb_copy(skb, GFP_ATOMIC);
Michael Chanc58ec932005-09-17 00:46:27 -07003990 dma_addr_t new_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 u32 entry = *start;
Michael Chanc58ec932005-09-17 00:46:27 -07003992 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
3994 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07003995 ret = -1;
3996 } else {
3997 /* New SKB is guaranteed to be linear. */
3998 entry = *start;
3999 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
4000 PCI_DMA_TODEVICE);
4001 /* Make sure new skb does not cross any 4G boundaries.
4002 * Drop the packet if it does.
4003 */
4004 if (tg3_4g_overflow_test(new_addr, new_skb->len)) {
4005 ret = -1;
4006 dev_kfree_skb(new_skb);
4007 new_skb = NULL;
4008 } else {
4009 tg3_set_txd(tp, entry, new_addr, new_skb->len,
4010 base_flags, 1 | (mss << 1));
4011 *start = NEXT_TX(entry);
4012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 }
4014
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 /* Now clean up the sw ring entries. */
4016 i = 0;
4017 while (entry != last_plus_one) {
4018 int len;
4019
4020 if (i == 0)
4021 len = skb_headlen(skb);
4022 else
4023 len = skb_shinfo(skb)->frags[i-1].size;
4024 pci_unmap_single(tp->pdev,
4025 pci_unmap_addr(&tp->tx_buffers[entry], mapping),
4026 len, PCI_DMA_TODEVICE);
4027 if (i == 0) {
4028 tp->tx_buffers[entry].skb = new_skb;
4029 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, new_addr);
4030 } else {
4031 tp->tx_buffers[entry].skb = NULL;
4032 }
4033 entry = NEXT_TX(entry);
4034 i++;
4035 }
4036
4037 dev_kfree_skb(skb);
4038
Michael Chanc58ec932005-09-17 00:46:27 -07004039 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040}
4041
4042static void tg3_set_txd(struct tg3 *tp, int entry,
4043 dma_addr_t mapping, int len, u32 flags,
4044 u32 mss_and_is_end)
4045{
4046 struct tg3_tx_buffer_desc *txd = &tp->tx_ring[entry];
4047 int is_end = (mss_and_is_end & 0x1);
4048 u32 mss = (mss_and_is_end >> 1);
4049 u32 vlan_tag = 0;
4050
4051 if (is_end)
4052 flags |= TXD_FLAG_END;
4053 if (flags & TXD_FLAG_VLAN) {
4054 vlan_tag = flags >> 16;
4055 flags &= 0xffff;
4056 }
4057 vlan_tag |= (mss << TXD_MSS_SHIFT);
4058
4059 txd->addr_hi = ((u64) mapping >> 32);
4060 txd->addr_lo = ((u64) mapping & 0xffffffff);
4061 txd->len_flags = (len << TXD_LEN_SHIFT) | flags;
4062 txd->vlan_tag = vlan_tag << TXD_VLAN_TAG_SHIFT;
4063}
4064
Michael Chan5a6f3072006-03-20 22:28:05 -08004065/* hard_start_xmit for devices that don't have any bugs and
4066 * support TG3_FLG2_HW_TSO_2 only.
4067 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068static int tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
4069{
4070 struct tg3 *tp = netdev_priv(dev);
4071 dma_addr_t mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 u32 len, entry, base_flags, mss;
Michael Chan5a6f3072006-03-20 22:28:05 -08004073
4074 len = skb_headlen(skb);
4075
Michael Chan00b70502006-06-17 21:58:45 -07004076 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004077 * and TX reclaim runs via tp->napi.poll inside of a software
Michael Chan5a6f3072006-03-20 22:28:05 -08004078 * interrupt. Furthermore, IRQ processing runs lockless so we have
4079 * no IRQ context deadlocks to worry about either. Rejoice!
4080 */
Michael Chan1b2a7202006-08-07 21:46:02 -07004081 if (unlikely(tg3_tx_avail(tp) <= (skb_shinfo(skb)->nr_frags + 1))) {
Michael Chan5a6f3072006-03-20 22:28:05 -08004082 if (!netif_queue_stopped(dev)) {
4083 netif_stop_queue(dev);
4084
4085 /* This is a hard error, log it. */
4086 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when "
4087 "queue awake!\n", dev->name);
4088 }
Michael Chan5a6f3072006-03-20 22:28:05 -08004089 return NETDEV_TX_BUSY;
4090 }
4091
4092 entry = tp->tx_prod;
4093 base_flags = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08004094 mss = 0;
Matt Carlsonc13e3712007-05-05 11:50:04 -07004095 if ((mss = skb_shinfo(skb)->gso_size) != 0) {
Michael Chan5a6f3072006-03-20 22:28:05 -08004096 int tcp_opt_len, ip_tcp_len;
4097
4098 if (skb_header_cloned(skb) &&
4099 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
4100 dev_kfree_skb(skb);
4101 goto out_unlock;
4102 }
4103
Michael Chanb0026622006-07-03 19:42:14 -07004104 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
4105 mss |= (skb_headlen(skb) - ETH_HLEN) << 9;
4106 else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004107 struct iphdr *iph = ip_hdr(skb);
4108
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07004109 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03004110 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Michael Chanb0026622006-07-03 19:42:14 -07004111
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004112 iph->check = 0;
4113 iph->tot_len = htons(mss + ip_tcp_len + tcp_opt_len);
Michael Chanb0026622006-07-03 19:42:14 -07004114 mss |= (ip_tcp_len + tcp_opt_len) << 9;
4115 }
Michael Chan5a6f3072006-03-20 22:28:05 -08004116
4117 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
4118 TXD_FLAG_CPU_POST_DMA);
4119
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07004120 tcp_hdr(skb)->check = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08004121
Michael Chan5a6f3072006-03-20 22:28:05 -08004122 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07004123 else if (skb->ip_summed == CHECKSUM_PARTIAL)
Michael Chan5a6f3072006-03-20 22:28:05 -08004124 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Michael Chan5a6f3072006-03-20 22:28:05 -08004125#if TG3_VLAN_TAG_USED
4126 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
4127 base_flags |= (TXD_FLAG_VLAN |
4128 (vlan_tx_tag_get(skb) << 16));
4129#endif
4130
4131 /* Queue skb data, a.k.a. the main skb fragment. */
4132 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
4133
4134 tp->tx_buffers[entry].skb = skb;
4135 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, mapping);
4136
4137 tg3_set_txd(tp, entry, mapping, len, base_flags,
4138 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
4139
4140 entry = NEXT_TX(entry);
4141
4142 /* Now loop through additional data fragments, and queue them. */
4143 if (skb_shinfo(skb)->nr_frags > 0) {
4144 unsigned int i, last;
4145
4146 last = skb_shinfo(skb)->nr_frags - 1;
4147 for (i = 0; i <= last; i++) {
4148 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
4149
4150 len = frag->size;
4151 mapping = pci_map_page(tp->pdev,
4152 frag->page,
4153 frag->page_offset,
4154 len, PCI_DMA_TODEVICE);
4155
4156 tp->tx_buffers[entry].skb = NULL;
4157 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, mapping);
4158
4159 tg3_set_txd(tp, entry, mapping, len,
4160 base_flags, (i == last) | (mss << 1));
4161
4162 entry = NEXT_TX(entry);
4163 }
4164 }
4165
4166 /* Packets are ready, update Tx producer idx local and on card. */
4167 tw32_tx_mbox((MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW), entry);
4168
4169 tp->tx_prod = entry;
Michael Chan1b2a7202006-08-07 21:46:02 -07004170 if (unlikely(tg3_tx_avail(tp) <= (MAX_SKB_FRAGS + 1))) {
Michael Chan5a6f3072006-03-20 22:28:05 -08004171 netif_stop_queue(dev);
Ranjit Manomohan42952232006-10-18 20:54:26 -07004172 if (tg3_tx_avail(tp) > TG3_TX_WAKEUP_THRESH(tp))
Michael Chan5a6f3072006-03-20 22:28:05 -08004173 netif_wake_queue(tp->dev);
4174 }
4175
4176out_unlock:
4177 mmiowb();
Michael Chan5a6f3072006-03-20 22:28:05 -08004178
4179 dev->trans_start = jiffies;
4180
4181 return NETDEV_TX_OK;
4182}
4183
Michael Chan52c0fd82006-06-29 20:15:54 -07004184static int tg3_start_xmit_dma_bug(struct sk_buff *, struct net_device *);
4185
4186/* Use GSO to workaround a rare TSO bug that may be triggered when the
4187 * TSO header is greater than 80 bytes.
4188 */
4189static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
4190{
4191 struct sk_buff *segs, *nskb;
4192
4193 /* Estimate the number of fragments in the worst case */
Michael Chan1b2a7202006-08-07 21:46:02 -07004194 if (unlikely(tg3_tx_avail(tp) <= (skb_shinfo(skb)->gso_segs * 3))) {
Michael Chan52c0fd82006-06-29 20:15:54 -07004195 netif_stop_queue(tp->dev);
Michael Chan7f62ad52007-02-20 23:25:40 -08004196 if (tg3_tx_avail(tp) <= (skb_shinfo(skb)->gso_segs * 3))
4197 return NETDEV_TX_BUSY;
4198
4199 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07004200 }
4201
4202 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
4203 if (unlikely(IS_ERR(segs)))
4204 goto tg3_tso_bug_end;
4205
4206 do {
4207 nskb = segs;
4208 segs = segs->next;
4209 nskb->next = NULL;
4210 tg3_start_xmit_dma_bug(nskb, tp->dev);
4211 } while (segs);
4212
4213tg3_tso_bug_end:
4214 dev_kfree_skb(skb);
4215
4216 return NETDEV_TX_OK;
4217}
Michael Chan52c0fd82006-06-29 20:15:54 -07004218
Michael Chan5a6f3072006-03-20 22:28:05 -08004219/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
4220 * support TG3_FLG2_HW_TSO_1 or firmware TSO only.
4221 */
4222static int tg3_start_xmit_dma_bug(struct sk_buff *skb, struct net_device *dev)
4223{
4224 struct tg3 *tp = netdev_priv(dev);
4225 dma_addr_t mapping;
4226 u32 len, entry, base_flags, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 int would_hit_hwbug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
4229 len = skb_headlen(skb);
4230
Michael Chan00b70502006-06-17 21:58:45 -07004231 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004232 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07004233 * interrupt. Furthermore, IRQ processing runs lockless so we have
4234 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 */
Michael Chan1b2a7202006-08-07 21:46:02 -07004236 if (unlikely(tg3_tx_avail(tp) <= (skb_shinfo(skb)->nr_frags + 1))) {
Stephen Hemminger1f064a82005-12-06 17:36:44 -08004237 if (!netif_queue_stopped(dev)) {
4238 netif_stop_queue(dev);
4239
4240 /* This is a hard error, log it. */
4241 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when "
4242 "queue awake!\n", dev->name);
4243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 return NETDEV_TX_BUSY;
4245 }
4246
4247 entry = tp->tx_prod;
4248 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07004249 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 mss = 0;
Matt Carlsonc13e3712007-05-05 11:50:04 -07004252 if ((mss = skb_shinfo(skb)->gso_size) != 0) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004253 struct iphdr *iph;
Michael Chan52c0fd82006-06-29 20:15:54 -07004254 int tcp_opt_len, ip_tcp_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
4256 if (skb_header_cloned(skb) &&
4257 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
4258 dev_kfree_skb(skb);
4259 goto out_unlock;
4260 }
4261
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07004262 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03004263 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Michael Chan52c0fd82006-06-29 20:15:54 -07004265 hdr_len = ip_tcp_len + tcp_opt_len;
4266 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Michael Chan7f62ad52007-02-20 23:25:40 -08004267 (tp->tg3_flags2 & TG3_FLG2_TSO_BUG))
Michael Chan52c0fd82006-06-29 20:15:54 -07004268 return (tg3_tso_bug(tp, skb));
4269
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
4271 TXD_FLAG_CPU_POST_DMA);
4272
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004273 iph = ip_hdr(skb);
4274 iph->check = 0;
4275 iph->tot_len = htons(mss + hdr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07004277 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07004279 } else
4280 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
4281 iph->daddr, 0,
4282 IPPROTO_TCP,
4283 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
4285 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) ||
4286 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004287 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 int tsflags;
4289
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004290 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 mss |= (tsflags << 11);
4292 }
4293 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004294 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 int tsflags;
4296
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004297 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 base_flags |= tsflags << 12;
4299 }
4300 }
4301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302#if TG3_VLAN_TAG_USED
4303 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
4304 base_flags |= (TXD_FLAG_VLAN |
4305 (vlan_tx_tag_get(skb) << 16));
4306#endif
4307
4308 /* Queue skb data, a.k.a. the main skb fragment. */
4309 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
4310
4311 tp->tx_buffers[entry].skb = skb;
4312 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, mapping);
4313
4314 would_hit_hwbug = 0;
4315
4316 if (tg3_4g_overflow_test(mapping, len))
Michael Chanc58ec932005-09-17 00:46:27 -07004317 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318
4319 tg3_set_txd(tp, entry, mapping, len, base_flags,
4320 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
4321
4322 entry = NEXT_TX(entry);
4323
4324 /* Now loop through additional data fragments, and queue them. */
4325 if (skb_shinfo(skb)->nr_frags > 0) {
4326 unsigned int i, last;
4327
4328 last = skb_shinfo(skb)->nr_frags - 1;
4329 for (i = 0; i <= last; i++) {
4330 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
4331
4332 len = frag->size;
4333 mapping = pci_map_page(tp->pdev,
4334 frag->page,
4335 frag->page_offset,
4336 len, PCI_DMA_TODEVICE);
4337
4338 tp->tx_buffers[entry].skb = NULL;
4339 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, mapping);
4340
Michael Chanc58ec932005-09-17 00:46:27 -07004341 if (tg3_4g_overflow_test(mapping, len))
4342 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343
Michael Chan72f2afb2006-03-06 19:28:35 -08004344 if (tg3_40bit_overflow_test(tp, mapping, len))
4345 would_hit_hwbug = 1;
4346
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
4348 tg3_set_txd(tp, entry, mapping, len,
4349 base_flags, (i == last)|(mss << 1));
4350 else
4351 tg3_set_txd(tp, entry, mapping, len,
4352 base_flags, (i == last));
4353
4354 entry = NEXT_TX(entry);
4355 }
4356 }
4357
4358 if (would_hit_hwbug) {
4359 u32 last_plus_one = entry;
4360 u32 start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361
Michael Chanc58ec932005-09-17 00:46:27 -07004362 start = entry - 1 - skb_shinfo(skb)->nr_frags;
4363 start &= (TG3_TX_RING_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364
4365 /* If the workaround fails due to memory/mapping
4366 * failure, silently drop this packet.
4367 */
Michael Chan72f2afb2006-03-06 19:28:35 -08004368 if (tigon3_dma_hwbug_workaround(tp, skb, last_plus_one,
Michael Chanc58ec932005-09-17 00:46:27 -07004369 &start, base_flags, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 goto out_unlock;
4371
4372 entry = start;
4373 }
4374
4375 /* Packets are ready, update Tx producer idx local and on card. */
4376 tw32_tx_mbox((MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW), entry);
4377
4378 tp->tx_prod = entry;
Michael Chan1b2a7202006-08-07 21:46:02 -07004379 if (unlikely(tg3_tx_avail(tp) <= (MAX_SKB_FRAGS + 1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 netif_stop_queue(dev);
Ranjit Manomohan42952232006-10-18 20:54:26 -07004381 if (tg3_tx_avail(tp) > TG3_TX_WAKEUP_THRESH(tp))
Michael Chan51b91462005-09-01 17:41:28 -07004382 netif_wake_queue(tp->dev);
4383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
4385out_unlock:
4386 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387
4388 dev->trans_start = jiffies;
4389
4390 return NETDEV_TX_OK;
4391}
4392
4393static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
4394 int new_mtu)
4395{
4396 dev->mtu = new_mtu;
4397
Michael Chanef7f5ec2005-07-25 12:32:25 -07004398 if (new_mtu > ETH_DATA_LEN) {
Michael Chana4e2b342005-10-26 15:46:52 -07004399 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanef7f5ec2005-07-25 12:32:25 -07004400 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
4401 ethtool_op_set_tso(dev, 0);
4402 }
4403 else
4404 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
4405 } else {
Michael Chana4e2b342005-10-26 15:46:52 -07004406 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chanef7f5ec2005-07-25 12:32:25 -07004407 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
Michael Chan0f893dc2005-07-25 12:30:38 -07004408 tp->tg3_flags &= ~TG3_FLAG_JUMBO_RING_ENABLE;
Michael Chanef7f5ec2005-07-25 12:32:25 -07004409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410}
4411
4412static int tg3_change_mtu(struct net_device *dev, int new_mtu)
4413{
4414 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07004415 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416
4417 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
4418 return -EINVAL;
4419
4420 if (!netif_running(dev)) {
4421 /* We'll just catch it later when the
4422 * device is up'd.
4423 */
4424 tg3_set_mtu(dev, tp, new_mtu);
4425 return 0;
4426 }
4427
4428 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07004429
4430 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
Michael Chan944d9802005-05-29 14:57:48 -07004432 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
4434 tg3_set_mtu(dev, tp, new_mtu);
4435
Michael Chanb9ec6c12006-07-25 16:37:27 -07004436 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
Michael Chanb9ec6c12006-07-25 16:37:27 -07004438 if (!err)
4439 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440
David S. Millerf47c11e2005-06-24 20:18:35 -07004441 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
Michael Chanb9ec6c12006-07-25 16:37:27 -07004443 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444}
4445
4446/* Free up pending packets in all rx/tx rings.
4447 *
4448 * The chip has been shut down and the driver detached from
4449 * the networking, so no interrupts or new tx packets will
4450 * end up in the driver. tp->{tx,}lock is not held and we are not
4451 * in an interrupt context and thus may sleep.
4452 */
4453static void tg3_free_rings(struct tg3 *tp)
4454{
4455 struct ring_info *rxp;
4456 int i;
4457
4458 for (i = 0; i < TG3_RX_RING_SIZE; i++) {
4459 rxp = &tp->rx_std_buffers[i];
4460
4461 if (rxp->skb == NULL)
4462 continue;
4463 pci_unmap_single(tp->pdev,
4464 pci_unmap_addr(rxp, mapping),
Michael Chan7e72aad2005-07-25 12:31:17 -07004465 tp->rx_pkt_buf_sz - tp->rx_offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 PCI_DMA_FROMDEVICE);
4467 dev_kfree_skb_any(rxp->skb);
4468 rxp->skb = NULL;
4469 }
4470
4471 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++) {
4472 rxp = &tp->rx_jumbo_buffers[i];
4473
4474 if (rxp->skb == NULL)
4475 continue;
4476 pci_unmap_single(tp->pdev,
4477 pci_unmap_addr(rxp, mapping),
4478 RX_JUMBO_PKT_BUF_SZ - tp->rx_offset,
4479 PCI_DMA_FROMDEVICE);
4480 dev_kfree_skb_any(rxp->skb);
4481 rxp->skb = NULL;
4482 }
4483
4484 for (i = 0; i < TG3_TX_RING_SIZE; ) {
4485 struct tx_ring_info *txp;
4486 struct sk_buff *skb;
4487 int j;
4488
4489 txp = &tp->tx_buffers[i];
4490 skb = txp->skb;
4491
4492 if (skb == NULL) {
4493 i++;
4494 continue;
4495 }
4496
4497 pci_unmap_single(tp->pdev,
4498 pci_unmap_addr(txp, mapping),
4499 skb_headlen(skb),
4500 PCI_DMA_TODEVICE);
4501 txp->skb = NULL;
4502
4503 i++;
4504
4505 for (j = 0; j < skb_shinfo(skb)->nr_frags; j++) {
4506 txp = &tp->tx_buffers[i & (TG3_TX_RING_SIZE - 1)];
4507 pci_unmap_page(tp->pdev,
4508 pci_unmap_addr(txp, mapping),
4509 skb_shinfo(skb)->frags[j].size,
4510 PCI_DMA_TODEVICE);
4511 i++;
4512 }
4513
4514 dev_kfree_skb_any(skb);
4515 }
4516}
4517
4518/* Initialize tx/rx rings for packet processing.
4519 *
4520 * The chip has been shut down and the driver detached from
4521 * the networking, so no interrupts or new tx packets will
4522 * end up in the driver. tp->{tx,}lock are held and thus
4523 * we may not sleep.
4524 */
Michael Chan32d8c572006-07-25 16:38:29 -07004525static int tg3_init_rings(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526{
4527 u32 i;
4528
4529 /* Free up all the SKBs. */
4530 tg3_free_rings(tp);
4531
4532 /* Zero out all descriptors. */
4533 memset(tp->rx_std, 0, TG3_RX_RING_BYTES);
4534 memset(tp->rx_jumbo, 0, TG3_RX_JUMBO_RING_BYTES);
4535 memset(tp->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
4536 memset(tp->tx_ring, 0, TG3_TX_RING_BYTES);
4537
Michael Chan7e72aad2005-07-25 12:31:17 -07004538 tp->rx_pkt_buf_sz = RX_PKT_BUF_SZ;
Michael Chana4e2b342005-10-26 15:46:52 -07004539 if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) &&
Michael Chan7e72aad2005-07-25 12:31:17 -07004540 (tp->dev->mtu > ETH_DATA_LEN))
4541 tp->rx_pkt_buf_sz = RX_JUMBO_PKT_BUF_SZ;
4542
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 /* Initialize invariants of the rings, we only set this
4544 * stuff once. This works because the card does not
4545 * write into the rx buffer posting rings.
4546 */
4547 for (i = 0; i < TG3_RX_RING_SIZE; i++) {
4548 struct tg3_rx_buffer_desc *rxd;
4549
4550 rxd = &tp->rx_std[i];
Michael Chan7e72aad2005-07-25 12:31:17 -07004551 rxd->idx_len = (tp->rx_pkt_buf_sz - tp->rx_offset - 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 << RXD_LEN_SHIFT;
4553 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
4554 rxd->opaque = (RXD_OPAQUE_RING_STD |
4555 (i << RXD_OPAQUE_INDEX_SHIFT));
4556 }
4557
Michael Chan0f893dc2005-07-25 12:30:38 -07004558 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++) {
4560 struct tg3_rx_buffer_desc *rxd;
4561
4562 rxd = &tp->rx_jumbo[i];
4563 rxd->idx_len = (RX_JUMBO_PKT_BUF_SZ - tp->rx_offset - 64)
4564 << RXD_LEN_SHIFT;
4565 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
4566 RXD_FLAG_JUMBO;
4567 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
4568 (i << RXD_OPAQUE_INDEX_SHIFT));
4569 }
4570 }
4571
4572 /* Now allocate fresh SKBs for each rx ring. */
4573 for (i = 0; i < tp->rx_pending; i++) {
Michael Chan32d8c572006-07-25 16:38:29 -07004574 if (tg3_alloc_rx_skb(tp, RXD_OPAQUE_RING_STD, -1, i) < 0) {
4575 printk(KERN_WARNING PFX
4576 "%s: Using a smaller RX standard ring, "
4577 "only %d out of %d buffers were allocated "
4578 "successfully.\n",
4579 tp->dev->name, i, tp->rx_pending);
4580 if (i == 0)
4581 return -ENOMEM;
4582 tp->rx_pending = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 break;
Michael Chan32d8c572006-07-25 16:38:29 -07004584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 }
4586
Michael Chan0f893dc2005-07-25 12:30:38 -07004587 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 for (i = 0; i < tp->rx_jumbo_pending; i++) {
4589 if (tg3_alloc_rx_skb(tp, RXD_OPAQUE_RING_JUMBO,
Michael Chan32d8c572006-07-25 16:38:29 -07004590 -1, i) < 0) {
4591 printk(KERN_WARNING PFX
4592 "%s: Using a smaller RX jumbo ring, "
4593 "only %d out of %d buffers were "
4594 "allocated successfully.\n",
4595 tp->dev->name, i, tp->rx_jumbo_pending);
4596 if (i == 0) {
4597 tg3_free_rings(tp);
4598 return -ENOMEM;
4599 }
4600 tp->rx_jumbo_pending = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 break;
Michael Chan32d8c572006-07-25 16:38:29 -07004602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 }
4604 }
Michael Chan32d8c572006-07-25 16:38:29 -07004605 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606}
4607
4608/*
4609 * Must not be invoked with interrupt sources disabled and
4610 * the hardware shutdown down.
4611 */
4612static void tg3_free_consistent(struct tg3 *tp)
4613{
Jesper Juhlb4558ea2005-10-28 16:53:13 -04004614 kfree(tp->rx_std_buffers);
4615 tp->rx_std_buffers = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 if (tp->rx_std) {
4617 pci_free_consistent(tp->pdev, TG3_RX_RING_BYTES,
4618 tp->rx_std, tp->rx_std_mapping);
4619 tp->rx_std = NULL;
4620 }
4621 if (tp->rx_jumbo) {
4622 pci_free_consistent(tp->pdev, TG3_RX_JUMBO_RING_BYTES,
4623 tp->rx_jumbo, tp->rx_jumbo_mapping);
4624 tp->rx_jumbo = NULL;
4625 }
4626 if (tp->rx_rcb) {
4627 pci_free_consistent(tp->pdev, TG3_RX_RCB_RING_BYTES(tp),
4628 tp->rx_rcb, tp->rx_rcb_mapping);
4629 tp->rx_rcb = NULL;
4630 }
4631 if (tp->tx_ring) {
4632 pci_free_consistent(tp->pdev, TG3_TX_RING_BYTES,
4633 tp->tx_ring, tp->tx_desc_mapping);
4634 tp->tx_ring = NULL;
4635 }
4636 if (tp->hw_status) {
4637 pci_free_consistent(tp->pdev, TG3_HW_STATUS_SIZE,
4638 tp->hw_status, tp->status_mapping);
4639 tp->hw_status = NULL;
4640 }
4641 if (tp->hw_stats) {
4642 pci_free_consistent(tp->pdev, sizeof(struct tg3_hw_stats),
4643 tp->hw_stats, tp->stats_mapping);
4644 tp->hw_stats = NULL;
4645 }
4646}
4647
4648/*
4649 * Must not be invoked with interrupt sources disabled and
4650 * the hardware shutdown down. Can sleep.
4651 */
4652static int tg3_alloc_consistent(struct tg3 *tp)
4653{
Yan Burmanbd2b3342006-12-14 15:25:00 -08004654 tp->rx_std_buffers = kzalloc((sizeof(struct ring_info) *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 (TG3_RX_RING_SIZE +
4656 TG3_RX_JUMBO_RING_SIZE)) +
4657 (sizeof(struct tx_ring_info) *
4658 TG3_TX_RING_SIZE),
4659 GFP_KERNEL);
4660 if (!tp->rx_std_buffers)
4661 return -ENOMEM;
4662
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 tp->rx_jumbo_buffers = &tp->rx_std_buffers[TG3_RX_RING_SIZE];
4664 tp->tx_buffers = (struct tx_ring_info *)
4665 &tp->rx_jumbo_buffers[TG3_RX_JUMBO_RING_SIZE];
4666
4667 tp->rx_std = pci_alloc_consistent(tp->pdev, TG3_RX_RING_BYTES,
4668 &tp->rx_std_mapping);
4669 if (!tp->rx_std)
4670 goto err_out;
4671
4672 tp->rx_jumbo = pci_alloc_consistent(tp->pdev, TG3_RX_JUMBO_RING_BYTES,
4673 &tp->rx_jumbo_mapping);
4674
4675 if (!tp->rx_jumbo)
4676 goto err_out;
4677
4678 tp->rx_rcb = pci_alloc_consistent(tp->pdev, TG3_RX_RCB_RING_BYTES(tp),
4679 &tp->rx_rcb_mapping);
4680 if (!tp->rx_rcb)
4681 goto err_out;
4682
4683 tp->tx_ring = pci_alloc_consistent(tp->pdev, TG3_TX_RING_BYTES,
4684 &tp->tx_desc_mapping);
4685 if (!tp->tx_ring)
4686 goto err_out;
4687
4688 tp->hw_status = pci_alloc_consistent(tp->pdev,
4689 TG3_HW_STATUS_SIZE,
4690 &tp->status_mapping);
4691 if (!tp->hw_status)
4692 goto err_out;
4693
4694 tp->hw_stats = pci_alloc_consistent(tp->pdev,
4695 sizeof(struct tg3_hw_stats),
4696 &tp->stats_mapping);
4697 if (!tp->hw_stats)
4698 goto err_out;
4699
4700 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
4701 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
4702
4703 return 0;
4704
4705err_out:
4706 tg3_free_consistent(tp);
4707 return -ENOMEM;
4708}
4709
4710#define MAX_WAIT_CNT 1000
4711
4712/* To stop a block, clear the enable bit and poll till it
4713 * clears. tp->lock is held.
4714 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07004715static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716{
4717 unsigned int i;
4718 u32 val;
4719
4720 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
4721 switch (ofs) {
4722 case RCVLSC_MODE:
4723 case DMAC_MODE:
4724 case MBFREE_MODE:
4725 case BUFMGR_MODE:
4726 case MEMARB_MODE:
4727 /* We can't enable/disable these bits of the
4728 * 5705/5750, just say success.
4729 */
4730 return 0;
4731
4732 default:
4733 break;
4734 };
4735 }
4736
4737 val = tr32(ofs);
4738 val &= ~enable_bit;
4739 tw32_f(ofs, val);
4740
4741 for (i = 0; i < MAX_WAIT_CNT; i++) {
4742 udelay(100);
4743 val = tr32(ofs);
4744 if ((val & enable_bit) == 0)
4745 break;
4746 }
4747
David S. Millerb3b7d6b2005-05-05 14:40:20 -07004748 if (i == MAX_WAIT_CNT && !silent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 printk(KERN_ERR PFX "tg3_stop_block timed out, "
4750 "ofs=%lx enable_bit=%x\n",
4751 ofs, enable_bit);
4752 return -ENODEV;
4753 }
4754
4755 return 0;
4756}
4757
4758/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07004759static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760{
4761 int i, err;
4762
4763 tg3_disable_ints(tp);
4764
4765 tp->rx_mode &= ~RX_MODE_ENABLE;
4766 tw32_f(MAC_RX_MODE, tp->rx_mode);
4767 udelay(10);
4768
David S. Millerb3b7d6b2005-05-05 14:40:20 -07004769 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
4770 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
4771 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
4772 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
4773 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
4774 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775
David S. Millerb3b7d6b2005-05-05 14:40:20 -07004776 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
4777 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
4778 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
4779 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
4780 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
4781 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
4782 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
4784 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
4785 tw32_f(MAC_MODE, tp->mac_mode);
4786 udelay(40);
4787
4788 tp->tx_mode &= ~TX_MODE_ENABLE;
4789 tw32_f(MAC_TX_MODE, tp->tx_mode);
4790
4791 for (i = 0; i < MAX_WAIT_CNT; i++) {
4792 udelay(100);
4793 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
4794 break;
4795 }
4796 if (i >= MAX_WAIT_CNT) {
4797 printk(KERN_ERR PFX "tg3_abort_hw timed out for %s, "
4798 "TX_MODE_ENABLE will not clear MAC_TX_MODE=%08x\n",
4799 tp->dev->name, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07004800 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 }
4802
Michael Chane6de8ad2005-05-05 14:42:41 -07004803 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07004804 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
4805 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806
4807 tw32(FTQ_RESET, 0xffffffff);
4808 tw32(FTQ_RESET, 0x00000000);
4809
David S. Millerb3b7d6b2005-05-05 14:40:20 -07004810 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
4811 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812
4813 if (tp->hw_status)
4814 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
4815 if (tp->hw_stats)
4816 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
4817
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 return err;
4819}
4820
4821/* tp->lock is held. */
4822static int tg3_nvram_lock(struct tg3 *tp)
4823{
4824 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
4825 int i;
4826
Michael Chanec41c7d2006-01-17 02:40:55 -08004827 if (tp->nvram_lock_cnt == 0) {
4828 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
4829 for (i = 0; i < 8000; i++) {
4830 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
4831 break;
4832 udelay(20);
4833 }
4834 if (i == 8000) {
4835 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
4836 return -ENODEV;
4837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 }
Michael Chanec41c7d2006-01-17 02:40:55 -08004839 tp->nvram_lock_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 }
4841 return 0;
4842}
4843
4844/* tp->lock is held. */
4845static void tg3_nvram_unlock(struct tg3 *tp)
4846{
Michael Chanec41c7d2006-01-17 02:40:55 -08004847 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
4848 if (tp->nvram_lock_cnt > 0)
4849 tp->nvram_lock_cnt--;
4850 if (tp->nvram_lock_cnt == 0)
4851 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
4852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853}
4854
4855/* tp->lock is held. */
Michael Chane6af3012005-04-21 17:12:05 -07004856static void tg3_enable_nvram_access(struct tg3 *tp)
4857{
4858 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
4859 !(tp->tg3_flags2 & TG3_FLG2_PROTECTED_NVRAM)) {
4860 u32 nvaccess = tr32(NVRAM_ACCESS);
4861
4862 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
4863 }
4864}
4865
4866/* tp->lock is held. */
4867static void tg3_disable_nvram_access(struct tg3 *tp)
4868{
4869 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
4870 !(tp->tg3_flags2 & TG3_FLG2_PROTECTED_NVRAM)) {
4871 u32 nvaccess = tr32(NVRAM_ACCESS);
4872
4873 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
4874 }
4875}
4876
Matt Carlson0d3031d2007-10-10 18:02:43 -07004877static void tg3_ape_send_event(struct tg3 *tp, u32 event)
4878{
4879 int i;
4880 u32 apedata;
4881
4882 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
4883 if (apedata != APE_SEG_SIG_MAGIC)
4884 return;
4885
4886 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
4887 if (apedata != APE_FW_STATUS_READY)
4888 return;
4889
4890 /* Wait for up to 1 millisecond for APE to service previous event. */
4891 for (i = 0; i < 10; i++) {
4892 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
4893 return;
4894
4895 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
4896
4897 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
4898 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
4899 event | APE_EVENT_STATUS_EVENT_PENDING);
4900
4901 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
4902
4903 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
4904 break;
4905
4906 udelay(100);
4907 }
4908
4909 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
4910 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
4911}
4912
4913static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
4914{
4915 u32 event;
4916 u32 apedata;
4917
4918 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
4919 return;
4920
4921 switch (kind) {
4922 case RESET_KIND_INIT:
4923 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
4924 APE_HOST_SEG_SIG_MAGIC);
4925 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
4926 APE_HOST_SEG_LEN_MAGIC);
4927 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
4928 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
4929 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
4930 APE_HOST_DRIVER_ID_MAGIC);
4931 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
4932 APE_HOST_BEHAV_NO_PHYLOCK);
4933
4934 event = APE_EVENT_STATUS_STATE_START;
4935 break;
4936 case RESET_KIND_SHUTDOWN:
4937 event = APE_EVENT_STATUS_STATE_UNLOAD;
4938 break;
4939 case RESET_KIND_SUSPEND:
4940 event = APE_EVENT_STATUS_STATE_SUSPEND;
4941 break;
4942 default:
4943 return;
4944 }
4945
4946 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
4947
4948 tg3_ape_send_event(tp, event);
4949}
4950
Michael Chane6af3012005-04-21 17:12:05 -07004951/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
4953{
David S. Millerf49639e2006-06-09 11:58:36 -07004954 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
4955 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956
4957 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
4958 switch (kind) {
4959 case RESET_KIND_INIT:
4960 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
4961 DRV_STATE_START);
4962 break;
4963
4964 case RESET_KIND_SHUTDOWN:
4965 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
4966 DRV_STATE_UNLOAD);
4967 break;
4968
4969 case RESET_KIND_SUSPEND:
4970 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
4971 DRV_STATE_SUSPEND);
4972 break;
4973
4974 default:
4975 break;
4976 };
4977 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07004978
4979 if (kind == RESET_KIND_INIT ||
4980 kind == RESET_KIND_SUSPEND)
4981 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982}
4983
4984/* tp->lock is held. */
4985static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
4986{
4987 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
4988 switch (kind) {
4989 case RESET_KIND_INIT:
4990 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
4991 DRV_STATE_START_DONE);
4992 break;
4993
4994 case RESET_KIND_SHUTDOWN:
4995 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
4996 DRV_STATE_UNLOAD_DONE);
4997 break;
4998
4999 default:
5000 break;
5001 };
5002 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07005003
5004 if (kind == RESET_KIND_SHUTDOWN)
5005 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006}
5007
5008/* tp->lock is held. */
5009static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
5010{
5011 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
5012 switch (kind) {
5013 case RESET_KIND_INIT:
5014 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5015 DRV_STATE_START);
5016 break;
5017
5018 case RESET_KIND_SHUTDOWN:
5019 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5020 DRV_STATE_UNLOAD);
5021 break;
5022
5023 case RESET_KIND_SUSPEND:
5024 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5025 DRV_STATE_SUSPEND);
5026 break;
5027
5028 default:
5029 break;
5030 };
5031 }
5032}
5033
Michael Chan7a6f4362006-09-27 16:03:31 -07005034static int tg3_poll_fw(struct tg3 *tp)
5035{
5036 int i;
5037 u32 val;
5038
Michael Chanb5d37722006-09-27 16:06:21 -07005039 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08005040 /* Wait up to 20ms for init done. */
5041 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07005042 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
5043 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08005044 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07005045 }
5046 return -ENODEV;
5047 }
5048
Michael Chan7a6f4362006-09-27 16:03:31 -07005049 /* Wait for firmware initialization to complete. */
5050 for (i = 0; i < 100000; i++) {
5051 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
5052 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
5053 break;
5054 udelay(10);
5055 }
5056
5057 /* Chip might not be fitted with firmware. Some Sun onboard
5058 * parts are configured like that. So don't signal the timeout
5059 * of the above loop as an error, but do report the lack of
5060 * running firmware once.
5061 */
5062 if (i >= 100000 &&
5063 !(tp->tg3_flags2 & TG3_FLG2_NO_FWARE_REPORTED)) {
5064 tp->tg3_flags2 |= TG3_FLG2_NO_FWARE_REPORTED;
5065
5066 printk(KERN_INFO PFX "%s: No firmware running.\n",
5067 tp->dev->name);
5068 }
5069
5070 return 0;
5071}
5072
Michael Chanee6a99b2007-07-18 21:49:10 -07005073/* Save PCI command register before chip reset */
5074static void tg3_save_pci_state(struct tg3 *tp)
5075{
Matt Carlson8a6eac92007-10-21 16:17:55 -07005076 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07005077}
5078
5079/* Restore PCI state after chip reset */
5080static void tg3_restore_pci_state(struct tg3 *tp)
5081{
5082 u32 val;
5083
5084 /* Re-enable indirect register accesses. */
5085 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
5086 tp->misc_host_ctrl);
5087
5088 /* Set MAX PCI retry to zero. */
5089 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
5090 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
5091 (tp->tg3_flags & TG3_FLAG_PCIX_MODE))
5092 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07005093 /* Allow reads and writes to the APE register and memory space. */
5094 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
5095 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
5096 PCISTATE_ALLOW_APE_SHMEM_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07005097 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
5098
Matt Carlson8a6eac92007-10-21 16:17:55 -07005099 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07005100
Michael Chan114342f2007-10-15 02:12:26 -07005101 if (!(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
5102 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
5103 tp->pci_cacheline_sz);
5104 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
5105 tp->pci_lat_timer);
5106 }
Michael Chanee6a99b2007-07-18 21:49:10 -07005107 /* Make sure PCI-X relaxed ordering bit is clear. */
Matt Carlson9974a352007-10-07 23:27:28 -07005108 if (tp->pcix_cap) {
5109 u16 pcix_cmd;
5110
5111 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
5112 &pcix_cmd);
5113 pcix_cmd &= ~PCI_X_CMD_ERO;
5114 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
5115 pcix_cmd);
5116 }
Michael Chanee6a99b2007-07-18 21:49:10 -07005117
5118 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanee6a99b2007-07-18 21:49:10 -07005119
5120 /* Chip reset on 5780 will reset MSI enable bit,
5121 * so need to restore it.
5122 */
5123 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
5124 u16 ctrl;
5125
5126 pci_read_config_word(tp->pdev,
5127 tp->msi_cap + PCI_MSI_FLAGS,
5128 &ctrl);
5129 pci_write_config_word(tp->pdev,
5130 tp->msi_cap + PCI_MSI_FLAGS,
5131 ctrl | PCI_MSI_FLAGS_ENABLE);
5132 val = tr32(MSGINT_MODE);
5133 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
5134 }
5135 }
5136}
5137
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138static void tg3_stop_fw(struct tg3 *);
5139
5140/* tp->lock is held. */
5141static int tg3_chip_reset(struct tg3 *tp)
5142{
5143 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07005144 void (*write_op)(struct tg3 *, u32, u32);
Michael Chan7a6f4362006-09-27 16:03:31 -07005145 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146
David S. Millerf49639e2006-06-09 11:58:36 -07005147 tg3_nvram_lock(tp);
5148
5149 /* No matching tg3_nvram_unlock() after this because
5150 * chip reset below will undo the nvram lock.
5151 */
5152 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153
Michael Chanee6a99b2007-07-18 21:49:10 -07005154 /* GRC_MISC_CFG core clock reset will clear the memory
5155 * enable bit in PCI register 4 and the MSI enable bit
5156 * on some chips, so we save relevant registers here.
5157 */
5158 tg3_save_pci_state(tp);
5159
Michael Chand9ab5ad2006-03-20 22:27:35 -08005160 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanaf36e6b2006-03-23 01:28:06 -08005161 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -07005162 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -07005163 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
5164 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
Michael Chand9ab5ad2006-03-20 22:27:35 -08005165 tw32(GRC_FASTBOOT_PC, 0);
5166
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 /*
5168 * We must avoid the readl() that normally takes place.
5169 * It locks machines, causes machine checks, and other
5170 * fun things. So, temporarily disable the 5701
5171 * hardware workaround, while we do the reset.
5172 */
Michael Chan1ee582d2005-08-09 20:16:46 -07005173 write_op = tp->write32;
5174 if (write_op == tg3_write_flush_reg32)
5175 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176
Michael Chand18edcb2007-03-24 20:57:11 -07005177 /* Prevent the irq handler from reading or writing PCI registers
5178 * during chip reset when the memory enable bit in the PCI command
5179 * register may be cleared. The chip does not generate interrupt
5180 * at this time, but the irq handler may still be called due to irq
5181 * sharing or irqpoll.
5182 */
5183 tp->tg3_flags |= TG3_FLAG_CHIP_RESETTING;
Michael Chanb8fa2f32007-04-06 17:35:37 -07005184 if (tp->hw_status) {
5185 tp->hw_status->status = 0;
5186 tp->hw_status->status_tag = 0;
5187 }
Michael Chand18edcb2007-03-24 20:57:11 -07005188 tp->last_tag = 0;
5189 smp_mb();
5190 synchronize_irq(tp->pdev->irq);
5191
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 /* do the reset */
5193 val = GRC_MISC_CFG_CORECLK_RESET;
5194
5195 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
5196 if (tr32(0x7e2c) == 0x60) {
5197 tw32(0x7e2c, 0x20);
5198 }
5199 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
5200 tw32(GRC_MISC_CFG, (1 << 29));
5201 val |= (1 << 29);
5202 }
5203 }
5204
Michael Chanb5d37722006-09-27 16:06:21 -07005205 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
5206 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
5207 tw32(GRC_VCPU_EXT_CTRL,
5208 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
5209 }
5210
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
5212 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
5213 tw32(GRC_MISC_CFG, val);
5214
Michael Chan1ee582d2005-08-09 20:16:46 -07005215 /* restore 5701 hardware bug workaround write method */
5216 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217
5218 /* Unfortunately, we have to delay before the PCI read back.
5219 * Some 575X chips even will not respond to a PCI cfg access
5220 * when the reset command is given to the chip.
5221 *
5222 * How do these hardware designers expect things to work
5223 * properly if the PCI write is posted for a long period
5224 * of time? It is always necessary to have some method by
5225 * which a register read back can occur to push the write
5226 * out which does the reset.
5227 *
5228 * For most tg3 variants the trick below was working.
5229 * Ho hum...
5230 */
5231 udelay(120);
5232
5233 /* Flush PCI posted writes. The normal MMIO registers
5234 * are inaccessible at this time so this is the only
5235 * way to make this reliably (actually, this is no longer
5236 * the case, see above). I tried to use indirect
5237 * register read/write but this upset some 5701 variants.
5238 */
5239 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
5240
5241 udelay(120);
5242
5243 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
5244 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
5245 int i;
5246 u32 cfg_val;
5247
5248 /* Wait for link training to complete. */
5249 for (i = 0; i < 5000; i++)
5250 udelay(100);
5251
5252 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
5253 pci_write_config_dword(tp->pdev, 0xc4,
5254 cfg_val | (1 << 15));
5255 }
5256 /* Set PCIE max payload size and clear error status. */
5257 pci_write_config_dword(tp->pdev, 0xd8, 0xf5000);
5258 }
5259
Michael Chanee6a99b2007-07-18 21:49:10 -07005260 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261
Michael Chand18edcb2007-03-24 20:57:11 -07005262 tp->tg3_flags &= ~TG3_FLAG_CHIP_RESETTING;
5263
Michael Chanee6a99b2007-07-18 21:49:10 -07005264 val = 0;
5265 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chan4cf78e42005-07-25 12:29:19 -07005266 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07005267 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268
5269 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
5270 tg3_stop_fw(tp);
5271 tw32(0x5000, 0x400);
5272 }
5273
5274 tw32(GRC_MODE, tp->grc_mode);
5275
5276 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01005277 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278
5279 tw32(0xc4, val | (1 << 15));
5280 }
5281
5282 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
5283 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
5284 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
5285 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
5286 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
5287 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
5288 }
5289
5290 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
5291 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
5292 tw32_f(MAC_MODE, tp->mac_mode);
Michael Chan747e8f82005-07-25 12:33:22 -07005293 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
5294 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
5295 tw32_f(MAC_MODE, tp->mac_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 } else
5297 tw32_f(MAC_MODE, 0);
5298 udelay(40);
5299
Michael Chan7a6f4362006-09-27 16:03:31 -07005300 err = tg3_poll_fw(tp);
5301 if (err)
5302 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
5304 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
5305 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01005306 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307
5308 tw32(0x7c00, val | (1 << 25));
5309 }
5310
5311 /* Reprobe ASF enable state. */
5312 tp->tg3_flags &= ~TG3_FLAG_ENABLE_ASF;
5313 tp->tg3_flags2 &= ~TG3_FLG2_ASF_NEW_HANDSHAKE;
5314 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
5315 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
5316 u32 nic_cfg;
5317
5318 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
5319 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
5320 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
John W. Linvillecbf46852005-04-21 17:01:29 -07005321 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
5323 }
5324 }
5325
5326 return 0;
5327}
5328
5329/* tp->lock is held. */
5330static void tg3_stop_fw(struct tg3 *tp)
5331{
Matt Carlson0d3031d2007-10-10 18:02:43 -07005332 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
5333 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 u32 val;
5335 int i;
5336
5337 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
5338 val = tr32(GRC_RX_CPU_EVENT);
5339 val |= (1 << 14);
5340 tw32(GRC_RX_CPU_EVENT, val);
5341
5342 /* Wait for RX cpu to ACK the event. */
5343 for (i = 0; i < 100; i++) {
5344 if (!(tr32(GRC_RX_CPU_EVENT) & (1 << 14)))
5345 break;
5346 udelay(1);
5347 }
5348 }
5349}
5350
5351/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07005352static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353{
5354 int err;
5355
5356 tg3_stop_fw(tp);
5357
Michael Chan944d9802005-05-29 14:57:48 -07005358 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359
David S. Millerb3b7d6b2005-05-05 14:40:20 -07005360 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 err = tg3_chip_reset(tp);
5362
Michael Chan944d9802005-05-29 14:57:48 -07005363 tg3_write_sig_legacy(tp, kind);
5364 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365
5366 if (err)
5367 return err;
5368
5369 return 0;
5370}
5371
5372#define TG3_FW_RELEASE_MAJOR 0x0
5373#define TG3_FW_RELASE_MINOR 0x0
5374#define TG3_FW_RELEASE_FIX 0x0
5375#define TG3_FW_START_ADDR 0x08000000
5376#define TG3_FW_TEXT_ADDR 0x08000000
5377#define TG3_FW_TEXT_LEN 0x9c0
5378#define TG3_FW_RODATA_ADDR 0x080009c0
5379#define TG3_FW_RODATA_LEN 0x60
5380#define TG3_FW_DATA_ADDR 0x08000a40
5381#define TG3_FW_DATA_LEN 0x20
5382#define TG3_FW_SBSS_ADDR 0x08000a60
5383#define TG3_FW_SBSS_LEN 0xc
5384#define TG3_FW_BSS_ADDR 0x08000a70
5385#define TG3_FW_BSS_LEN 0x10
5386
Andreas Mohr50da8592006-08-14 23:54:30 -07005387static const u32 tg3FwText[(TG3_FW_TEXT_LEN / sizeof(u32)) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388 0x00000000, 0x10000003, 0x00000000, 0x0000000d, 0x0000000d, 0x3c1d0800,
5389 0x37bd3ffc, 0x03a0f021, 0x3c100800, 0x26100000, 0x0e000018, 0x00000000,
5390 0x0000000d, 0x3c1d0800, 0x37bd3ffc, 0x03a0f021, 0x3c100800, 0x26100034,
5391 0x0e00021c, 0x00000000, 0x0000000d, 0x00000000, 0x00000000, 0x00000000,
5392 0x27bdffe0, 0x3c1cc000, 0xafbf0018, 0xaf80680c, 0x0e00004c, 0x241b2105,
5393 0x97850000, 0x97870002, 0x9782002c, 0x9783002e, 0x3c040800, 0x248409c0,
5394 0xafa00014, 0x00021400, 0x00621825, 0x00052c00, 0xafa30010, 0x8f860010,
5395 0x00e52825, 0x0e000060, 0x24070102, 0x3c02ac00, 0x34420100, 0x3c03ac01,
5396 0x34630100, 0xaf820490, 0x3c02ffff, 0xaf820494, 0xaf830498, 0xaf82049c,
5397 0x24020001, 0xaf825ce0, 0x0e00003f, 0xaf825d00, 0x0e000140, 0x00000000,
5398 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x2402ffff, 0xaf825404, 0x8f835400,
5399 0x34630400, 0xaf835400, 0xaf825404, 0x3c020800, 0x24420034, 0xaf82541c,
5400 0x03e00008, 0xaf805400, 0x00000000, 0x00000000, 0x3c020800, 0x34423000,
5401 0x3c030800, 0x34633000, 0x3c040800, 0x348437ff, 0x3c010800, 0xac220a64,
5402 0x24020040, 0x3c010800, 0xac220a68, 0x3c010800, 0xac200a60, 0xac600000,
5403 0x24630004, 0x0083102b, 0x5040fffd, 0xac600000, 0x03e00008, 0x00000000,
5404 0x00804821, 0x8faa0010, 0x3c020800, 0x8c420a60, 0x3c040800, 0x8c840a68,
5405 0x8fab0014, 0x24430001, 0x0044102b, 0x3c010800, 0xac230a60, 0x14400003,
5406 0x00004021, 0x3c010800, 0xac200a60, 0x3c020800, 0x8c420a60, 0x3c030800,
5407 0x8c630a64, 0x91240000, 0x00021140, 0x00431021, 0x00481021, 0x25080001,
5408 0xa0440000, 0x29020008, 0x1440fff4, 0x25290001, 0x3c020800, 0x8c420a60,
5409 0x3c030800, 0x8c630a64, 0x8f84680c, 0x00021140, 0x00431021, 0xac440008,
5410 0xac45000c, 0xac460010, 0xac470014, 0xac4a0018, 0x03e00008, 0xac4b001c,
5411 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5412 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5413 0, 0, 0, 0, 0, 0,
5414 0x02000008, 0x00000000, 0x0a0001e3, 0x3c0a0001, 0x0a0001e3, 0x3c0a0002,
5415 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
5416 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
5417 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
5418 0x0a0001e3, 0x3c0a0007, 0x0a0001e3, 0x3c0a0008, 0x0a0001e3, 0x3c0a0009,
5419 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x3c0a000b,
5420 0x0a0001e3, 0x3c0a000c, 0x0a0001e3, 0x3c0a000d, 0x0a0001e3, 0x00000000,
5421 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x3c0a000e, 0x0a0001e3, 0x00000000,
5422 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
5423 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
5424 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x3c0a0013, 0x0a0001e3, 0x3c0a0014,
5425 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5426 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5427 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5428 0x27bdffe0, 0x00001821, 0x00001021, 0xafbf0018, 0xafb10014, 0xafb00010,
5429 0x3c010800, 0x00220821, 0xac200a70, 0x3c010800, 0x00220821, 0xac200a74,
5430 0x3c010800, 0x00220821, 0xac200a78, 0x24630001, 0x1860fff5, 0x2442000c,
5431 0x24110001, 0x8f906810, 0x32020004, 0x14400005, 0x24040001, 0x3c020800,
5432 0x8c420a78, 0x18400003, 0x00002021, 0x0e000182, 0x00000000, 0x32020001,
5433 0x10400003, 0x00000000, 0x0e000169, 0x00000000, 0x0a000153, 0xaf915028,
5434 0x8fbf0018, 0x8fb10014, 0x8fb00010, 0x03e00008, 0x27bd0020, 0x3c050800,
5435 0x8ca50a70, 0x3c060800, 0x8cc60a80, 0x3c070800, 0x8ce70a78, 0x27bdffe0,
5436 0x3c040800, 0x248409d0, 0xafbf0018, 0xafa00010, 0x0e000060, 0xafa00014,
5437 0x0e00017b, 0x00002021, 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x24020001,
5438 0x8f836810, 0x00821004, 0x00021027, 0x00621824, 0x03e00008, 0xaf836810,
5439 0x27bdffd8, 0xafbf0024, 0x1080002e, 0xafb00020, 0x8f825cec, 0xafa20018,
5440 0x8f825cec, 0x3c100800, 0x26100a78, 0xafa2001c, 0x34028000, 0xaf825cec,
5441 0x8e020000, 0x18400016, 0x00000000, 0x3c020800, 0x94420a74, 0x8fa3001c,
5442 0x000221c0, 0xac830004, 0x8fa2001c, 0x3c010800, 0x0e000201, 0xac220a74,
5443 0x10400005, 0x00000000, 0x8e020000, 0x24420001, 0x0a0001df, 0xae020000,
5444 0x3c020800, 0x8c420a70, 0x00021c02, 0x000321c0, 0x0a0001c5, 0xafa2001c,
5445 0x0e000201, 0x00000000, 0x1040001f, 0x00000000, 0x8e020000, 0x8fa3001c,
5446 0x24420001, 0x3c010800, 0xac230a70, 0x3c010800, 0xac230a74, 0x0a0001df,
5447 0xae020000, 0x3c100800, 0x26100a78, 0x8e020000, 0x18400028, 0x00000000,
5448 0x0e000201, 0x00000000, 0x14400024, 0x00000000, 0x8e020000, 0x3c030800,
5449 0x8c630a70, 0x2442ffff, 0xafa3001c, 0x18400006, 0xae020000, 0x00031402,
5450 0x000221c0, 0x8c820004, 0x3c010800, 0xac220a70, 0x97a2001e, 0x2442ff00,
5451 0x2c420300, 0x1440000b, 0x24024000, 0x3c040800, 0x248409dc, 0xafa00010,
5452 0xafa00014, 0x8fa6001c, 0x24050008, 0x0e000060, 0x00003821, 0x0a0001df,
5453 0x00000000, 0xaf825cf8, 0x3c020800, 0x8c420a40, 0x8fa3001c, 0x24420001,
5454 0xaf835cf8, 0x3c010800, 0xac220a40, 0x8fbf0024, 0x8fb00020, 0x03e00008,
5455 0x27bd0028, 0x27bdffe0, 0x3c040800, 0x248409e8, 0x00002821, 0x00003021,
5456 0x00003821, 0xafbf0018, 0xafa00010, 0x0e000060, 0xafa00014, 0x8fbf0018,
5457 0x03e00008, 0x27bd0020, 0x8f82680c, 0x8f85680c, 0x00021827, 0x0003182b,
5458 0x00031823, 0x00431024, 0x00441021, 0x00a2282b, 0x10a00006, 0x00000000,
5459 0x00401821, 0x8f82680c, 0x0043102b, 0x1440fffd, 0x00000000, 0x03e00008,
5460 0x00000000, 0x3c040800, 0x8c840000, 0x3c030800, 0x8c630a40, 0x0064102b,
5461 0x54400002, 0x00831023, 0x00641023, 0x2c420008, 0x03e00008, 0x38420001,
5462 0x27bdffe0, 0x00802821, 0x3c040800, 0x24840a00, 0x00003021, 0x00003821,
5463 0xafbf0018, 0xafa00010, 0x0e000060, 0xafa00014, 0x0a000216, 0x00000000,
5464 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x00000000, 0x27bdffe0, 0x3c1cc000,
5465 0xafbf0018, 0x0e00004c, 0xaf80680c, 0x3c040800, 0x24840a10, 0x03802821,
5466 0x00003021, 0x00003821, 0xafa00010, 0x0e000060, 0xafa00014, 0x2402ffff,
5467 0xaf825404, 0x3c0200aa, 0x0e000234, 0xaf825434, 0x8fbf0018, 0x03e00008,
5468 0x27bd0020, 0x00000000, 0x00000000, 0x00000000, 0x27bdffe8, 0xafb00010,
5469 0x24100001, 0xafbf0014, 0x3c01c003, 0xac200000, 0x8f826810, 0x30422000,
5470 0x10400003, 0x00000000, 0x0e000246, 0x00000000, 0x0a00023a, 0xaf905428,
5471 0x8fbf0014, 0x8fb00010, 0x03e00008, 0x27bd0018, 0x27bdfff8, 0x8f845d0c,
5472 0x3c0200ff, 0x3c030800, 0x8c630a50, 0x3442fff8, 0x00821024, 0x1043001e,
5473 0x3c0500ff, 0x34a5fff8, 0x3c06c003, 0x3c074000, 0x00851824, 0x8c620010,
5474 0x3c010800, 0xac230a50, 0x30420008, 0x10400005, 0x00871025, 0x8cc20000,
5475 0x24420001, 0xacc20000, 0x00871025, 0xaf825d0c, 0x8fa20000, 0x24420001,
5476 0xafa20000, 0x8fa20000, 0x8fa20000, 0x24420001, 0xafa20000, 0x8fa20000,
5477 0x8f845d0c, 0x3c030800, 0x8c630a50, 0x00851024, 0x1443ffe8, 0x00851824,
5478 0x27bd0008, 0x03e00008, 0x00000000, 0x00000000, 0x00000000
5479};
5480
Andreas Mohr50da8592006-08-14 23:54:30 -07005481static const u32 tg3FwRodata[(TG3_FW_RODATA_LEN / sizeof(u32)) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482 0x35373031, 0x726c7341, 0x00000000, 0x00000000, 0x53774576, 0x656e7430,
5483 0x00000000, 0x726c7045, 0x76656e74, 0x31000000, 0x556e6b6e, 0x45766e74,
5484 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x66617461, 0x6c457272,
5485 0x00000000, 0x00000000, 0x4d61696e, 0x43707542, 0x00000000, 0x00000000,
5486 0x00000000
5487};
5488
5489#if 0 /* All zeros, don't eat up space with it. */
5490u32 tg3FwData[(TG3_FW_DATA_LEN / sizeof(u32)) + 1] = {
5491 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
5492 0x00000000, 0x00000000, 0x00000000, 0x00000000
5493};
5494#endif
5495
5496#define RX_CPU_SCRATCH_BASE 0x30000
5497#define RX_CPU_SCRATCH_SIZE 0x04000
5498#define TX_CPU_SCRATCH_BASE 0x34000
5499#define TX_CPU_SCRATCH_SIZE 0x04000
5500
5501/* tp->lock is held. */
5502static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
5503{
5504 int i;
5505
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005506 BUG_ON(offset == TX_CPU_BASE &&
5507 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508
Michael Chanb5d37722006-09-27 16:06:21 -07005509 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
5510 u32 val = tr32(GRC_VCPU_EXT_CTRL);
5511
5512 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
5513 return 0;
5514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515 if (offset == RX_CPU_BASE) {
5516 for (i = 0; i < 10000; i++) {
5517 tw32(offset + CPU_STATE, 0xffffffff);
5518 tw32(offset + CPU_MODE, CPU_MODE_HALT);
5519 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
5520 break;
5521 }
5522
5523 tw32(offset + CPU_STATE, 0xffffffff);
5524 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
5525 udelay(10);
5526 } else {
5527 for (i = 0; i < 10000; i++) {
5528 tw32(offset + CPU_STATE, 0xffffffff);
5529 tw32(offset + CPU_MODE, CPU_MODE_HALT);
5530 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
5531 break;
5532 }
5533 }
5534
5535 if (i >= 10000) {
5536 printk(KERN_ERR PFX "tg3_reset_cpu timed out for %s, "
5537 "and %s CPU\n",
5538 tp->dev->name,
5539 (offset == RX_CPU_BASE ? "RX" : "TX"));
5540 return -ENODEV;
5541 }
Michael Chanec41c7d2006-01-17 02:40:55 -08005542
5543 /* Clear firmware's nvram arbitration. */
5544 if (tp->tg3_flags & TG3_FLAG_NVRAM)
5545 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546 return 0;
5547}
5548
5549struct fw_info {
5550 unsigned int text_base;
5551 unsigned int text_len;
Andreas Mohr50da8592006-08-14 23:54:30 -07005552 const u32 *text_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553 unsigned int rodata_base;
5554 unsigned int rodata_len;
Andreas Mohr50da8592006-08-14 23:54:30 -07005555 const u32 *rodata_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556 unsigned int data_base;
5557 unsigned int data_len;
Andreas Mohr50da8592006-08-14 23:54:30 -07005558 const u32 *data_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559};
5560
5561/* tp->lock is held. */
5562static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
5563 int cpu_scratch_size, struct fw_info *info)
5564{
Michael Chanec41c7d2006-01-17 02:40:55 -08005565 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566 void (*write_op)(struct tg3 *, u32, u32);
5567
5568 if (cpu_base == TX_CPU_BASE &&
5569 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
5570 printk(KERN_ERR PFX "tg3_load_firmware_cpu: Trying to load "
5571 "TX cpu firmware on %s which is 5705.\n",
5572 tp->dev->name);
5573 return -EINVAL;
5574 }
5575
5576 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
5577 write_op = tg3_write_mem;
5578 else
5579 write_op = tg3_write_indirect_reg32;
5580
Michael Chan1b628152005-05-29 14:59:49 -07005581 /* It is possible that bootcode is still loading at this point.
5582 * Get the nvram lock first before halting the cpu.
5583 */
Michael Chanec41c7d2006-01-17 02:40:55 -08005584 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08005586 if (!lock_err)
5587 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 if (err)
5589 goto out;
5590
5591 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
5592 write_op(tp, cpu_scratch_base + i, 0);
5593 tw32(cpu_base + CPU_STATE, 0xffffffff);
5594 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
5595 for (i = 0; i < (info->text_len / sizeof(u32)); i++)
5596 write_op(tp, (cpu_scratch_base +
5597 (info->text_base & 0xffff) +
5598 (i * sizeof(u32))),
5599 (info->text_data ?
5600 info->text_data[i] : 0));
5601 for (i = 0; i < (info->rodata_len / sizeof(u32)); i++)
5602 write_op(tp, (cpu_scratch_base +
5603 (info->rodata_base & 0xffff) +
5604 (i * sizeof(u32))),
5605 (info->rodata_data ?
5606 info->rodata_data[i] : 0));
5607 for (i = 0; i < (info->data_len / sizeof(u32)); i++)
5608 write_op(tp, (cpu_scratch_base +
5609 (info->data_base & 0xffff) +
5610 (i * sizeof(u32))),
5611 (info->data_data ?
5612 info->data_data[i] : 0));
5613
5614 err = 0;
5615
5616out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617 return err;
5618}
5619
5620/* tp->lock is held. */
5621static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
5622{
5623 struct fw_info info;
5624 int err, i;
5625
5626 info.text_base = TG3_FW_TEXT_ADDR;
5627 info.text_len = TG3_FW_TEXT_LEN;
5628 info.text_data = &tg3FwText[0];
5629 info.rodata_base = TG3_FW_RODATA_ADDR;
5630 info.rodata_len = TG3_FW_RODATA_LEN;
5631 info.rodata_data = &tg3FwRodata[0];
5632 info.data_base = TG3_FW_DATA_ADDR;
5633 info.data_len = TG3_FW_DATA_LEN;
5634 info.data_data = NULL;
5635
5636 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
5637 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
5638 &info);
5639 if (err)
5640 return err;
5641
5642 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
5643 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
5644 &info);
5645 if (err)
5646 return err;
5647
5648 /* Now startup only the RX cpu. */
5649 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
5650 tw32_f(RX_CPU_BASE + CPU_PC, TG3_FW_TEXT_ADDR);
5651
5652 for (i = 0; i < 5; i++) {
5653 if (tr32(RX_CPU_BASE + CPU_PC) == TG3_FW_TEXT_ADDR)
5654 break;
5655 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
5656 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
5657 tw32_f(RX_CPU_BASE + CPU_PC, TG3_FW_TEXT_ADDR);
5658 udelay(1000);
5659 }
5660 if (i >= 5) {
5661 printk(KERN_ERR PFX "tg3_load_firmware fails for %s "
5662 "to set RX CPU PC, is %08x should be %08x\n",
5663 tp->dev->name, tr32(RX_CPU_BASE + CPU_PC),
5664 TG3_FW_TEXT_ADDR);
5665 return -ENODEV;
5666 }
5667 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
5668 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
5669
5670 return 0;
5671}
5672
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673
5674#define TG3_TSO_FW_RELEASE_MAJOR 0x1
5675#define TG3_TSO_FW_RELASE_MINOR 0x6
5676#define TG3_TSO_FW_RELEASE_FIX 0x0
5677#define TG3_TSO_FW_START_ADDR 0x08000000
5678#define TG3_TSO_FW_TEXT_ADDR 0x08000000
5679#define TG3_TSO_FW_TEXT_LEN 0x1aa0
5680#define TG3_TSO_FW_RODATA_ADDR 0x08001aa0
5681#define TG3_TSO_FW_RODATA_LEN 0x60
5682#define TG3_TSO_FW_DATA_ADDR 0x08001b20
5683#define TG3_TSO_FW_DATA_LEN 0x30
5684#define TG3_TSO_FW_SBSS_ADDR 0x08001b50
5685#define TG3_TSO_FW_SBSS_LEN 0x2c
5686#define TG3_TSO_FW_BSS_ADDR 0x08001b80
5687#define TG3_TSO_FW_BSS_LEN 0x894
5688
Andreas Mohr50da8592006-08-14 23:54:30 -07005689static const u32 tg3TsoFwText[(TG3_TSO_FW_TEXT_LEN / 4) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690 0x0e000003, 0x00000000, 0x08001b24, 0x00000000, 0x10000003, 0x00000000,
5691 0x0000000d, 0x0000000d, 0x3c1d0800, 0x37bd4000, 0x03a0f021, 0x3c100800,
5692 0x26100000, 0x0e000010, 0x00000000, 0x0000000d, 0x27bdffe0, 0x3c04fefe,
5693 0xafbf0018, 0x0e0005d8, 0x34840002, 0x0e000668, 0x00000000, 0x3c030800,
5694 0x90631b68, 0x24020002, 0x3c040800, 0x24841aac, 0x14620003, 0x24050001,
5695 0x3c040800, 0x24841aa0, 0x24060006, 0x00003821, 0xafa00010, 0x0e00067c,
5696 0xafa00014, 0x8f625c50, 0x34420001, 0xaf625c50, 0x8f625c90, 0x34420001,
5697 0xaf625c90, 0x2402ffff, 0x0e000034, 0xaf625404, 0x8fbf0018, 0x03e00008,
5698 0x27bd0020, 0x00000000, 0x00000000, 0x00000000, 0x27bdffe0, 0xafbf001c,
5699 0xafb20018, 0xafb10014, 0x0e00005b, 0xafb00010, 0x24120002, 0x24110001,
5700 0x8f706820, 0x32020100, 0x10400003, 0x00000000, 0x0e0000bb, 0x00000000,
5701 0x8f706820, 0x32022000, 0x10400004, 0x32020001, 0x0e0001f0, 0x24040001,
5702 0x32020001, 0x10400003, 0x00000000, 0x0e0000a3, 0x00000000, 0x3c020800,
5703 0x90421b98, 0x14520003, 0x00000000, 0x0e0004c0, 0x00000000, 0x0a00003c,
5704 0xaf715028, 0x8fbf001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x03e00008,
5705 0x27bd0020, 0x27bdffe0, 0x3c040800, 0x24841ac0, 0x00002821, 0x00003021,
5706 0x00003821, 0xafbf0018, 0xafa00010, 0x0e00067c, 0xafa00014, 0x3c040800,
5707 0x248423d8, 0xa4800000, 0x3c010800, 0xa0201b98, 0x3c010800, 0xac201b9c,
5708 0x3c010800, 0xac201ba0, 0x3c010800, 0xac201ba4, 0x3c010800, 0xac201bac,
5709 0x3c010800, 0xac201bb8, 0x3c010800, 0xac201bbc, 0x8f624434, 0x3c010800,
5710 0xac221b88, 0x8f624438, 0x3c010800, 0xac221b8c, 0x8f624410, 0xac80f7a8,
5711 0x3c010800, 0xac201b84, 0x3c010800, 0xac2023e0, 0x3c010800, 0xac2023c8,
5712 0x3c010800, 0xac2023cc, 0x3c010800, 0xac202400, 0x3c010800, 0xac221b90,
5713 0x8f620068, 0x24030007, 0x00021702, 0x10430005, 0x00000000, 0x8f620068,
5714 0x00021702, 0x14400004, 0x24020001, 0x3c010800, 0x0a000097, 0xac20240c,
5715 0xac820034, 0x3c040800, 0x24841acc, 0x3c050800, 0x8ca5240c, 0x00003021,
5716 0x00003821, 0xafa00010, 0x0e00067c, 0xafa00014, 0x8fbf0018, 0x03e00008,
5717 0x27bd0020, 0x27bdffe0, 0x3c040800, 0x24841ad8, 0x00002821, 0x00003021,
5718 0x00003821, 0xafbf0018, 0xafa00010, 0x0e00067c, 0xafa00014, 0x0e00005b,
5719 0x00000000, 0x0e0000b4, 0x00002021, 0x8fbf0018, 0x03e00008, 0x27bd0020,
5720 0x24020001, 0x8f636820, 0x00821004, 0x00021027, 0x00621824, 0x03e00008,
5721 0xaf636820, 0x27bdffd0, 0xafbf002c, 0xafb60028, 0xafb50024, 0xafb40020,
5722 0xafb3001c, 0xafb20018, 0xafb10014, 0xafb00010, 0x8f675c5c, 0x3c030800,
5723 0x24631bbc, 0x8c620000, 0x14470005, 0x3c0200ff, 0x3c020800, 0x90421b98,
5724 0x14400119, 0x3c0200ff, 0x3442fff8, 0x00e28824, 0xac670000, 0x00111902,
5725 0x306300ff, 0x30e20003, 0x000211c0, 0x00622825, 0x00a04021, 0x00071602,
5726 0x3c030800, 0x90631b98, 0x3044000f, 0x14600036, 0x00804821, 0x24020001,
5727 0x3c010800, 0xa0221b98, 0x00051100, 0x00821025, 0x3c010800, 0xac201b9c,
5728 0x3c010800, 0xac201ba0, 0x3c010800, 0xac201ba4, 0x3c010800, 0xac201bac,
5729 0x3c010800, 0xac201bb8, 0x3c010800, 0xac201bb0, 0x3c010800, 0xac201bb4,
5730 0x3c010800, 0xa42223d8, 0x9622000c, 0x30437fff, 0x3c010800, 0xa4222410,
5731 0x30428000, 0x3c010800, 0xa4231bc6, 0x10400005, 0x24020001, 0x3c010800,
5732 0xac2223f4, 0x0a000102, 0x2406003e, 0x24060036, 0x3c010800, 0xac2023f4,
5733 0x9622000a, 0x3c030800, 0x94631bc6, 0x3c010800, 0xac2023f0, 0x3c010800,
5734 0xac2023f8, 0x00021302, 0x00021080, 0x00c21021, 0x00621821, 0x3c010800,
5735 0xa42223d0, 0x3c010800, 0x0a000115, 0xa4231b96, 0x9622000c, 0x3c010800,
5736 0xa42223ec, 0x3c040800, 0x24841b9c, 0x8c820000, 0x00021100, 0x3c010800,
5737 0x00220821, 0xac311bc8, 0x8c820000, 0x00021100, 0x3c010800, 0x00220821,
5738 0xac271bcc, 0x8c820000, 0x25030001, 0x306601ff, 0x00021100, 0x3c010800,
5739 0x00220821, 0xac261bd0, 0x8c820000, 0x00021100, 0x3c010800, 0x00220821,
5740 0xac291bd4, 0x96230008, 0x3c020800, 0x8c421bac, 0x00432821, 0x3c010800,
5741 0xac251bac, 0x9622000a, 0x30420004, 0x14400018, 0x00061100, 0x8f630c14,
5742 0x3063000f, 0x2c620002, 0x1440000b, 0x3c02c000, 0x8f630c14, 0x3c020800,
5743 0x8c421b40, 0x3063000f, 0x24420001, 0x3c010800, 0xac221b40, 0x2c620002,
5744 0x1040fff7, 0x3c02c000, 0x00e21825, 0xaf635c5c, 0x8f625c50, 0x30420002,
5745 0x10400014, 0x00000000, 0x0a000147, 0x00000000, 0x3c030800, 0x8c631b80,
5746 0x3c040800, 0x94841b94, 0x01221025, 0x3c010800, 0xa42223da, 0x24020001,
5747 0x3c010800, 0xac221bb8, 0x24630001, 0x0085202a, 0x3c010800, 0x10800003,
5748 0xac231b80, 0x3c010800, 0xa4251b94, 0x3c060800, 0x24c61b9c, 0x8cc20000,
5749 0x24420001, 0xacc20000, 0x28420080, 0x14400005, 0x00000000, 0x0e000656,
5750 0x24040002, 0x0a0001e6, 0x00000000, 0x3c020800, 0x8c421bb8, 0x10400078,
5751 0x24020001, 0x3c050800, 0x90a51b98, 0x14a20072, 0x00000000, 0x3c150800,
5752 0x96b51b96, 0x3c040800, 0x8c841bac, 0x32a3ffff, 0x0083102a, 0x1440006c,
5753 0x00000000, 0x14830003, 0x00000000, 0x3c010800, 0xac2523f0, 0x1060005c,
5754 0x00009021, 0x24d60004, 0x0060a021, 0x24d30014, 0x8ec20000, 0x00028100,
5755 0x3c110800, 0x02308821, 0x0e000625, 0x8e311bc8, 0x00402821, 0x10a00054,
5756 0x00000000, 0x9628000a, 0x31020040, 0x10400005, 0x2407180c, 0x8e22000c,
5757 0x2407188c, 0x00021400, 0xaca20018, 0x3c030800, 0x00701821, 0x8c631bd0,
5758 0x3c020800, 0x00501021, 0x8c421bd4, 0x00031d00, 0x00021400, 0x00621825,
5759 0xaca30014, 0x8ec30004, 0x96220008, 0x00432023, 0x3242ffff, 0x3083ffff,
5760 0x00431021, 0x0282102a, 0x14400002, 0x02b23023, 0x00803021, 0x8e620000,
5761 0x30c4ffff, 0x00441021, 0xae620000, 0x8e220000, 0xaca20000, 0x8e220004,
5762 0x8e63fff4, 0x00431021, 0xaca20004, 0xa4a6000e, 0x8e62fff4, 0x00441021,
5763 0xae62fff4, 0x96230008, 0x0043102a, 0x14400005, 0x02469021, 0x8e62fff0,
5764 0xae60fff4, 0x24420001, 0xae62fff0, 0xaca00008, 0x3242ffff, 0x14540008,
5765 0x24020305, 0x31020080, 0x54400001, 0x34e70010, 0x24020905, 0xa4a2000c,
5766 0x0a0001cb, 0x34e70020, 0xa4a2000c, 0x3c020800, 0x8c4223f0, 0x10400003,
5767 0x3c024b65, 0x0a0001d3, 0x34427654, 0x3c02b49a, 0x344289ab, 0xaca2001c,
5768 0x30e2ffff, 0xaca20010, 0x0e0005a2, 0x00a02021, 0x3242ffff, 0x0054102b,
5769 0x1440ffa9, 0x00000000, 0x24020002, 0x3c010800, 0x0a0001e6, 0xa0221b98,
5770 0x8ec2083c, 0x24420001, 0x0a0001e6, 0xaec2083c, 0x0e0004c0, 0x00000000,
5771 0x8fbf002c, 0x8fb60028, 0x8fb50024, 0x8fb40020, 0x8fb3001c, 0x8fb20018,
5772 0x8fb10014, 0x8fb00010, 0x03e00008, 0x27bd0030, 0x27bdffd0, 0xafbf0028,
5773 0xafb30024, 0xafb20020, 0xafb1001c, 0xafb00018, 0x8f725c9c, 0x3c0200ff,
5774 0x3442fff8, 0x3c070800, 0x24e71bb4, 0x02428824, 0x9623000e, 0x8ce20000,
5775 0x00431021, 0xace20000, 0x8e220010, 0x30420020, 0x14400011, 0x00809821,
5776 0x0e00063b, 0x02202021, 0x3c02c000, 0x02421825, 0xaf635c9c, 0x8f625c90,
5777 0x30420002, 0x1040011e, 0x00000000, 0xaf635c9c, 0x8f625c90, 0x30420002,
5778 0x10400119, 0x00000000, 0x0a00020d, 0x00000000, 0x8e240008, 0x8e230014,
5779 0x00041402, 0x000231c0, 0x00031502, 0x304201ff, 0x2442ffff, 0x3042007f,
5780 0x00031942, 0x30637800, 0x00021100, 0x24424000, 0x00624821, 0x9522000a,
5781 0x3084ffff, 0x30420008, 0x104000b0, 0x000429c0, 0x3c020800, 0x8c422400,
5782 0x14400024, 0x24c50008, 0x94c20014, 0x3c010800, 0xa42223d0, 0x8cc40010,
5783 0x00041402, 0x3c010800, 0xa42223d2, 0x3c010800, 0xa42423d4, 0x94c2000e,
5784 0x3083ffff, 0x00431023, 0x3c010800, 0xac222408, 0x94c2001a, 0x3c010800,
5785 0xac262400, 0x3c010800, 0xac322404, 0x3c010800, 0xac2223fc, 0x3c02c000,
5786 0x02421825, 0xaf635c9c, 0x8f625c90, 0x30420002, 0x104000e5, 0x00000000,
5787 0xaf635c9c, 0x8f625c90, 0x30420002, 0x104000e0, 0x00000000, 0x0a000246,
5788 0x00000000, 0x94c2000e, 0x3c030800, 0x946323d4, 0x00434023, 0x3103ffff,
5789 0x2c620008, 0x1040001c, 0x00000000, 0x94c20014, 0x24420028, 0x00a22821,
5790 0x00031042, 0x1840000b, 0x00002021, 0x24e60848, 0x00403821, 0x94a30000,
5791 0x8cc20000, 0x24840001, 0x00431021, 0xacc20000, 0x0087102a, 0x1440fff9,
5792 0x24a50002, 0x31020001, 0x1040001f, 0x3c024000, 0x3c040800, 0x248423fc,
5793 0xa0a00001, 0x94a30000, 0x8c820000, 0x00431021, 0x0a000285, 0xac820000,
5794 0x8f626800, 0x3c030010, 0x00431024, 0x10400009, 0x00000000, 0x94c2001a,
5795 0x3c030800, 0x8c6323fc, 0x00431021, 0x3c010800, 0xac2223fc, 0x0a000286,
5796 0x3c024000, 0x94c2001a, 0x94c4001c, 0x3c030800, 0x8c6323fc, 0x00441023,
5797 0x00621821, 0x3c010800, 0xac2323fc, 0x3c024000, 0x02421825, 0xaf635c9c,
5798 0x8f625c90, 0x30420002, 0x1440fffc, 0x00000000, 0x9522000a, 0x30420010,
5799 0x1040009b, 0x00000000, 0x3c030800, 0x946323d4, 0x3c070800, 0x24e72400,
5800 0x8ce40000, 0x8f626800, 0x24630030, 0x00832821, 0x3c030010, 0x00431024,
5801 0x1440000a, 0x00000000, 0x94a20004, 0x3c040800, 0x8c842408, 0x3c030800,
5802 0x8c6323fc, 0x00441023, 0x00621821, 0x3c010800, 0xac2323fc, 0x3c040800,
5803 0x8c8423fc, 0x00041c02, 0x3082ffff, 0x00622021, 0x00041402, 0x00822021,
5804 0x00041027, 0xa4a20006, 0x3c030800, 0x8c632404, 0x3c0200ff, 0x3442fff8,
5805 0x00628824, 0x96220008, 0x24050001, 0x24034000, 0x000231c0, 0x00801021,
5806 0xa4c2001a, 0xa4c0001c, 0xace00000, 0x3c010800, 0xac251b60, 0xaf635cb8,
5807 0x8f625cb0, 0x30420002, 0x10400003, 0x00000000, 0x3c010800, 0xac201b60,
5808 0x8e220008, 0xaf625cb8, 0x8f625cb0, 0x30420002, 0x10400003, 0x00000000,
5809 0x3c010800, 0xac201b60, 0x3c020800, 0x8c421b60, 0x1040ffec, 0x00000000,
5810 0x3c040800, 0x0e00063b, 0x8c842404, 0x0a00032a, 0x00000000, 0x3c030800,
5811 0x90631b98, 0x24020002, 0x14620003, 0x3c034b65, 0x0a0002e1, 0x00008021,
5812 0x8e22001c, 0x34637654, 0x10430002, 0x24100002, 0x24100001, 0x00c02021,
5813 0x0e000350, 0x02003021, 0x24020003, 0x3c010800, 0xa0221b98, 0x24020002,
5814 0x1202000a, 0x24020001, 0x3c030800, 0x8c6323f0, 0x10620006, 0x00000000,
5815 0x3c020800, 0x944223d8, 0x00021400, 0x0a00031f, 0xae220014, 0x3c040800,
5816 0x248423da, 0x94820000, 0x00021400, 0xae220014, 0x3c020800, 0x8c421bbc,
5817 0x3c03c000, 0x3c010800, 0xa0201b98, 0x00431025, 0xaf625c5c, 0x8f625c50,
5818 0x30420002, 0x10400009, 0x00000000, 0x2484f7e2, 0x8c820000, 0x00431025,
5819 0xaf625c5c, 0x8f625c50, 0x30420002, 0x1440fffa, 0x00000000, 0x3c020800,
5820 0x24421b84, 0x8c430000, 0x24630001, 0xac430000, 0x8f630c14, 0x3063000f,
5821 0x2c620002, 0x1440000c, 0x3c024000, 0x8f630c14, 0x3c020800, 0x8c421b40,
5822 0x3063000f, 0x24420001, 0x3c010800, 0xac221b40, 0x2c620002, 0x1040fff7,
5823 0x00000000, 0x3c024000, 0x02421825, 0xaf635c9c, 0x8f625c90, 0x30420002,
5824 0x1440fffc, 0x00000000, 0x12600003, 0x00000000, 0x0e0004c0, 0x00000000,
5825 0x8fbf0028, 0x8fb30024, 0x8fb20020, 0x8fb1001c, 0x8fb00018, 0x03e00008,
5826 0x27bd0030, 0x8f634450, 0x3c040800, 0x24841b88, 0x8c820000, 0x00031c02,
5827 0x0043102b, 0x14400007, 0x3c038000, 0x8c840004, 0x8f624450, 0x00021c02,
5828 0x0083102b, 0x1040fffc, 0x3c038000, 0xaf634444, 0x8f624444, 0x00431024,
5829 0x1440fffd, 0x00000000, 0x8f624448, 0x03e00008, 0x3042ffff, 0x3c024000,
5830 0x00822025, 0xaf645c38, 0x8f625c30, 0x30420002, 0x1440fffc, 0x00000000,
5831 0x03e00008, 0x00000000, 0x27bdffe0, 0x00805821, 0x14c00011, 0x256e0008,
5832 0x3c020800, 0x8c4223f4, 0x10400007, 0x24020016, 0x3c010800, 0xa42223d2,
5833 0x2402002a, 0x3c010800, 0x0a000364, 0xa42223d4, 0x8d670010, 0x00071402,
5834 0x3c010800, 0xa42223d2, 0x3c010800, 0xa42723d4, 0x3c040800, 0x948423d4,
5835 0x3c030800, 0x946323d2, 0x95cf0006, 0x3c020800, 0x944223d0, 0x00832023,
5836 0x01e2c023, 0x3065ffff, 0x24a20028, 0x01c24821, 0x3082ffff, 0x14c0001a,
5837 0x01226021, 0x9582000c, 0x3042003f, 0x3c010800, 0xa42223d6, 0x95820004,
5838 0x95830006, 0x3c010800, 0xac2023e4, 0x3c010800, 0xac2023e8, 0x00021400,
5839 0x00431025, 0x3c010800, 0xac221bc0, 0x95220004, 0x3c010800, 0xa4221bc4,
5840 0x95230002, 0x01e51023, 0x0043102a, 0x10400010, 0x24020001, 0x3c010800,
5841 0x0a000398, 0xac2223f8, 0x3c030800, 0x8c6323e8, 0x3c020800, 0x94421bc4,
5842 0x00431021, 0xa5220004, 0x3c020800, 0x94421bc0, 0xa5820004, 0x3c020800,
5843 0x8c421bc0, 0xa5820006, 0x3c020800, 0x8c4223f0, 0x3c0d0800, 0x8dad23e4,
5844 0x3c0a0800, 0x144000e5, 0x8d4a23e8, 0x3c020800, 0x94421bc4, 0x004a1821,
5845 0x3063ffff, 0x0062182b, 0x24020002, 0x10c2000d, 0x01435023, 0x3c020800,
5846 0x944223d6, 0x30420009, 0x10400008, 0x00000000, 0x9582000c, 0x3042fff6,
5847 0xa582000c, 0x3c020800, 0x944223d6, 0x30420009, 0x01a26823, 0x3c020800,
5848 0x8c4223f8, 0x1040004a, 0x01203821, 0x3c020800, 0x944223d2, 0x00004021,
5849 0xa520000a, 0x01e21023, 0xa5220002, 0x3082ffff, 0x00021042, 0x18400008,
5850 0x00003021, 0x00401821, 0x94e20000, 0x25080001, 0x00c23021, 0x0103102a,
5851 0x1440fffb, 0x24e70002, 0x00061c02, 0x30c2ffff, 0x00623021, 0x00061402,
5852 0x00c23021, 0x00c02821, 0x00061027, 0xa522000a, 0x00003021, 0x2527000c,
5853 0x00004021, 0x94e20000, 0x25080001, 0x00c23021, 0x2d020004, 0x1440fffb,
5854 0x24e70002, 0x95220002, 0x00004021, 0x91230009, 0x00442023, 0x01803821,
5855 0x3082ffff, 0xa4e00010, 0x00621821, 0x00021042, 0x18400010, 0x00c33021,
5856 0x00404821, 0x94e20000, 0x24e70002, 0x00c23021, 0x30e2007f, 0x14400006,
5857 0x25080001, 0x8d630000, 0x3c02007f, 0x3442ff80, 0x00625824, 0x25670008,
5858 0x0109102a, 0x1440fff3, 0x00000000, 0x30820001, 0x10400005, 0x00061c02,
5859 0xa0e00001, 0x94e20000, 0x00c23021, 0x00061c02, 0x30c2ffff, 0x00623021,
5860 0x00061402, 0x00c23021, 0x0a00047d, 0x30c6ffff, 0x24020002, 0x14c20081,
5861 0x00000000, 0x3c020800, 0x8c42240c, 0x14400007, 0x00000000, 0x3c020800,
5862 0x944223d2, 0x95230002, 0x01e21023, 0x10620077, 0x00000000, 0x3c020800,
5863 0x944223d2, 0x01e21023, 0xa5220002, 0x3c020800, 0x8c42240c, 0x1040001a,
5864 0x31e3ffff, 0x8dc70010, 0x3c020800, 0x94421b96, 0x00e04021, 0x00072c02,
5865 0x00aa2021, 0x00431023, 0x00823823, 0x00072402, 0x30e2ffff, 0x00823821,
5866 0x00071027, 0xa522000a, 0x3102ffff, 0x3c040800, 0x948423d4, 0x00453023,
5867 0x00e02821, 0x00641823, 0x006d1821, 0x00c33021, 0x00061c02, 0x30c2ffff,
5868 0x0a00047d, 0x00623021, 0x01203821, 0x00004021, 0x3082ffff, 0x00021042,
5869 0x18400008, 0x00003021, 0x00401821, 0x94e20000, 0x25080001, 0x00c23021,
5870 0x0103102a, 0x1440fffb, 0x24e70002, 0x00061c02, 0x30c2ffff, 0x00623021,
5871 0x00061402, 0x00c23021, 0x00c02821, 0x00061027, 0xa522000a, 0x00003021,
5872 0x2527000c, 0x00004021, 0x94e20000, 0x25080001, 0x00c23021, 0x2d020004,
5873 0x1440fffb, 0x24e70002, 0x95220002, 0x00004021, 0x91230009, 0x00442023,
5874 0x01803821, 0x3082ffff, 0xa4e00010, 0x3c040800, 0x948423d4, 0x00621821,
5875 0x00c33021, 0x00061c02, 0x30c2ffff, 0x00623021, 0x00061c02, 0x3c020800,
5876 0x944223d0, 0x00c34821, 0x00441023, 0x00021fc2, 0x00431021, 0x00021043,
5877 0x18400010, 0x00003021, 0x00402021, 0x94e20000, 0x24e70002, 0x00c23021,
5878 0x30e2007f, 0x14400006, 0x25080001, 0x8d630000, 0x3c02007f, 0x3442ff80,
5879 0x00625824, 0x25670008, 0x0104102a, 0x1440fff3, 0x00000000, 0x3c020800,
5880 0x944223ec, 0x00c23021, 0x3122ffff, 0x00c23021, 0x00061c02, 0x30c2ffff,
5881 0x00623021, 0x00061402, 0x00c23021, 0x00c04021, 0x00061027, 0xa5820010,
5882 0xadc00014, 0x0a00049d, 0xadc00000, 0x8dc70010, 0x00e04021, 0x11400007,
5883 0x00072c02, 0x00aa3021, 0x00061402, 0x30c3ffff, 0x00433021, 0x00061402,
5884 0x00c22821, 0x00051027, 0xa522000a, 0x3c030800, 0x946323d4, 0x3102ffff,
5885 0x01e21021, 0x00433023, 0x00cd3021, 0x00061c02, 0x30c2ffff, 0x00623021,
5886 0x00061402, 0x00c23021, 0x00c04021, 0x00061027, 0xa5820010, 0x3102ffff,
5887 0x00051c00, 0x00431025, 0xadc20010, 0x3c020800, 0x8c4223f4, 0x10400005,
5888 0x2de205eb, 0x14400002, 0x25e2fff2, 0x34028870, 0xa5c20034, 0x3c030800,
5889 0x246323e8, 0x8c620000, 0x24420001, 0xac620000, 0x3c040800, 0x8c8423e4,
5890 0x3c020800, 0x8c421bc0, 0x3303ffff, 0x00832021, 0x00431821, 0x0062102b,
5891 0x3c010800, 0xac2423e4, 0x10400003, 0x2482ffff, 0x3c010800, 0xac2223e4,
5892 0x3c010800, 0xac231bc0, 0x03e00008, 0x27bd0020, 0x27bdffb8, 0x3c050800,
5893 0x24a51b96, 0xafbf0044, 0xafbe0040, 0xafb7003c, 0xafb60038, 0xafb50034,
5894 0xafb40030, 0xafb3002c, 0xafb20028, 0xafb10024, 0xafb00020, 0x94a90000,
5895 0x3c020800, 0x944223d0, 0x3c030800, 0x8c631bb0, 0x3c040800, 0x8c841bac,
5896 0x01221023, 0x0064182a, 0xa7a9001e, 0x106000be, 0xa7a20016, 0x24be0022,
5897 0x97b6001e, 0x24b3001a, 0x24b70016, 0x8fc20000, 0x14400008, 0x00000000,
5898 0x8fc2fff8, 0x97a30016, 0x8fc4fff4, 0x00431021, 0x0082202a, 0x148000b0,
5899 0x00000000, 0x97d50818, 0x32a2ffff, 0x104000a3, 0x00009021, 0x0040a021,
5900 0x00008821, 0x0e000625, 0x00000000, 0x00403021, 0x14c00007, 0x00000000,
5901 0x3c020800, 0x8c4223dc, 0x24420001, 0x3c010800, 0x0a000596, 0xac2223dc,
5902 0x3c100800, 0x02118021, 0x8e101bc8, 0x9608000a, 0x31020040, 0x10400005,
5903 0x2407180c, 0x8e02000c, 0x2407188c, 0x00021400, 0xacc20018, 0x31020080,
5904 0x54400001, 0x34e70010, 0x3c020800, 0x00511021, 0x8c421bd0, 0x3c030800,
5905 0x00711821, 0x8c631bd4, 0x00021500, 0x00031c00, 0x00431025, 0xacc20014,
5906 0x96040008, 0x3242ffff, 0x00821021, 0x0282102a, 0x14400002, 0x02b22823,
5907 0x00802821, 0x8e020000, 0x02459021, 0xacc20000, 0x8e020004, 0x00c02021,
5908 0x26310010, 0xac820004, 0x30e2ffff, 0xac800008, 0xa485000e, 0xac820010,
5909 0x24020305, 0x0e0005a2, 0xa482000c, 0x3242ffff, 0x0054102b, 0x1440ffc5,
5910 0x3242ffff, 0x0a00058e, 0x00000000, 0x8e620000, 0x8e63fffc, 0x0043102a,
5911 0x10400067, 0x00000000, 0x8e62fff0, 0x00028900, 0x3c100800, 0x02118021,
5912 0x0e000625, 0x8e101bc8, 0x00403021, 0x14c00005, 0x00000000, 0x8e62082c,
5913 0x24420001, 0x0a000596, 0xae62082c, 0x9608000a, 0x31020040, 0x10400005,
5914 0x2407180c, 0x8e02000c, 0x2407188c, 0x00021400, 0xacc20018, 0x3c020800,
5915 0x00511021, 0x8c421bd0, 0x3c030800, 0x00711821, 0x8c631bd4, 0x00021500,
5916 0x00031c00, 0x00431025, 0xacc20014, 0x8e63fff4, 0x96020008, 0x00432023,
5917 0x3242ffff, 0x3083ffff, 0x00431021, 0x02c2102a, 0x10400003, 0x00802821,
5918 0x97a9001e, 0x01322823, 0x8e620000, 0x30a4ffff, 0x00441021, 0xae620000,
5919 0xa4c5000e, 0x8e020000, 0xacc20000, 0x8e020004, 0x8e63fff4, 0x00431021,
5920 0xacc20004, 0x8e63fff4, 0x96020008, 0x00641821, 0x0062102a, 0x14400006,
5921 0x02459021, 0x8e62fff0, 0xae60fff4, 0x24420001, 0x0a000571, 0xae62fff0,
5922 0xae63fff4, 0xacc00008, 0x3242ffff, 0x10560003, 0x31020004, 0x10400006,
5923 0x24020305, 0x31020080, 0x54400001, 0x34e70010, 0x34e70020, 0x24020905,
5924 0xa4c2000c, 0x8ee30000, 0x8ee20004, 0x14620007, 0x3c02b49a, 0x8ee20860,
5925 0x54400001, 0x34e70400, 0x3c024b65, 0x0a000588, 0x34427654, 0x344289ab,
5926 0xacc2001c, 0x30e2ffff, 0xacc20010, 0x0e0005a2, 0x00c02021, 0x3242ffff,
5927 0x0056102b, 0x1440ff9b, 0x00000000, 0x8e620000, 0x8e63fffc, 0x0043102a,
5928 0x1440ff48, 0x00000000, 0x8fbf0044, 0x8fbe0040, 0x8fb7003c, 0x8fb60038,
5929 0x8fb50034, 0x8fb40030, 0x8fb3002c, 0x8fb20028, 0x8fb10024, 0x8fb00020,
5930 0x03e00008, 0x27bd0048, 0x27bdffe8, 0xafbf0014, 0xafb00010, 0x8f624450,
5931 0x8f634410, 0x0a0005b1, 0x00808021, 0x8f626820, 0x30422000, 0x10400003,
5932 0x00000000, 0x0e0001f0, 0x00002021, 0x8f624450, 0x8f634410, 0x3042ffff,
5933 0x0043102b, 0x1440fff5, 0x00000000, 0x8f630c14, 0x3063000f, 0x2c620002,
5934 0x1440000b, 0x00000000, 0x8f630c14, 0x3c020800, 0x8c421b40, 0x3063000f,
5935 0x24420001, 0x3c010800, 0xac221b40, 0x2c620002, 0x1040fff7, 0x00000000,
5936 0xaf705c18, 0x8f625c10, 0x30420002, 0x10400009, 0x00000000, 0x8f626820,
5937 0x30422000, 0x1040fff8, 0x00000000, 0x0e0001f0, 0x00002021, 0x0a0005c4,
5938 0x00000000, 0x8fbf0014, 0x8fb00010, 0x03e00008, 0x27bd0018, 0x00000000,
5939 0x00000000, 0x00000000, 0x27bdffe8, 0x3c1bc000, 0xafbf0014, 0xafb00010,
5940 0xaf60680c, 0x8f626804, 0x34420082, 0xaf626804, 0x8f634000, 0x24020b50,
5941 0x3c010800, 0xac221b54, 0x24020b78, 0x3c010800, 0xac221b64, 0x34630002,
5942 0xaf634000, 0x0e000605, 0x00808021, 0x3c010800, 0xa0221b68, 0x304200ff,
5943 0x24030002, 0x14430005, 0x00000000, 0x3c020800, 0x8c421b54, 0x0a0005f8,
5944 0xac5000c0, 0x3c020800, 0x8c421b54, 0xac5000bc, 0x8f624434, 0x8f634438,
5945 0x8f644410, 0x3c010800, 0xac221b5c, 0x3c010800, 0xac231b6c, 0x3c010800,
5946 0xac241b58, 0x8fbf0014, 0x8fb00010, 0x03e00008, 0x27bd0018, 0x3c040800,
5947 0x8c870000, 0x3c03aa55, 0x3463aa55, 0x3c06c003, 0xac830000, 0x8cc20000,
5948 0x14430007, 0x24050002, 0x3c0355aa, 0x346355aa, 0xac830000, 0x8cc20000,
5949 0x50430001, 0x24050001, 0x3c020800, 0xac470000, 0x03e00008, 0x00a01021,
5950 0x27bdfff8, 0x18800009, 0x00002821, 0x8f63680c, 0x8f62680c, 0x1043fffe,
5951 0x00000000, 0x24a50001, 0x00a4102a, 0x1440fff9, 0x00000000, 0x03e00008,
5952 0x27bd0008, 0x8f634450, 0x3c020800, 0x8c421b5c, 0x00031c02, 0x0043102b,
5953 0x14400008, 0x3c038000, 0x3c040800, 0x8c841b6c, 0x8f624450, 0x00021c02,
5954 0x0083102b, 0x1040fffc, 0x3c038000, 0xaf634444, 0x8f624444, 0x00431024,
5955 0x1440fffd, 0x00000000, 0x8f624448, 0x03e00008, 0x3042ffff, 0x3082ffff,
5956 0x2442e000, 0x2c422001, 0x14400003, 0x3c024000, 0x0a000648, 0x2402ffff,
5957 0x00822025, 0xaf645c38, 0x8f625c30, 0x30420002, 0x1440fffc, 0x00001021,
5958 0x03e00008, 0x00000000, 0x8f624450, 0x3c030800, 0x8c631b58, 0x0a000651,
5959 0x3042ffff, 0x8f624450, 0x3042ffff, 0x0043102b, 0x1440fffc, 0x00000000,
5960 0x03e00008, 0x00000000, 0x27bdffe0, 0x00802821, 0x3c040800, 0x24841af0,
5961 0x00003021, 0x00003821, 0xafbf0018, 0xafa00010, 0x0e00067c, 0xafa00014,
5962 0x0a000660, 0x00000000, 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x00000000,
5963 0x00000000, 0x00000000, 0x3c020800, 0x34423000, 0x3c030800, 0x34633000,
5964 0x3c040800, 0x348437ff, 0x3c010800, 0xac221b74, 0x24020040, 0x3c010800,
5965 0xac221b78, 0x3c010800, 0xac201b70, 0xac600000, 0x24630004, 0x0083102b,
5966 0x5040fffd, 0xac600000, 0x03e00008, 0x00000000, 0x00804821, 0x8faa0010,
5967 0x3c020800, 0x8c421b70, 0x3c040800, 0x8c841b78, 0x8fab0014, 0x24430001,
5968 0x0044102b, 0x3c010800, 0xac231b70, 0x14400003, 0x00004021, 0x3c010800,
5969 0xac201b70, 0x3c020800, 0x8c421b70, 0x3c030800, 0x8c631b74, 0x91240000,
5970 0x00021140, 0x00431021, 0x00481021, 0x25080001, 0xa0440000, 0x29020008,
5971 0x1440fff4, 0x25290001, 0x3c020800, 0x8c421b70, 0x3c030800, 0x8c631b74,
5972 0x8f64680c, 0x00021140, 0x00431021, 0xac440008, 0xac45000c, 0xac460010,
5973 0xac470014, 0xac4a0018, 0x03e00008, 0xac4b001c, 0x00000000, 0x00000000,
5974};
5975
Andreas Mohr50da8592006-08-14 23:54:30 -07005976static const u32 tg3TsoFwRodata[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977 0x4d61696e, 0x43707542, 0x00000000, 0x4d61696e, 0x43707541, 0x00000000,
5978 0x00000000, 0x00000000, 0x73746b6f, 0x66666c64, 0x496e0000, 0x73746b6f,
5979 0x66662a2a, 0x00000000, 0x53774576, 0x656e7430, 0x00000000, 0x00000000,
5980 0x00000000, 0x00000000, 0x66617461, 0x6c457272, 0x00000000, 0x00000000,
5981 0x00000000,
5982};
5983
Andreas Mohr50da8592006-08-14 23:54:30 -07005984static const u32 tg3TsoFwData[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985 0x00000000, 0x73746b6f, 0x66666c64, 0x5f76312e, 0x362e3000, 0x00000000,
5986 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
5987 0x00000000,
5988};
5989
5990/* 5705 needs a special version of the TSO firmware. */
5991#define TG3_TSO5_FW_RELEASE_MAJOR 0x1
5992#define TG3_TSO5_FW_RELASE_MINOR 0x2
5993#define TG3_TSO5_FW_RELEASE_FIX 0x0
5994#define TG3_TSO5_FW_START_ADDR 0x00010000
5995#define TG3_TSO5_FW_TEXT_ADDR 0x00010000
5996#define TG3_TSO5_FW_TEXT_LEN 0xe90
5997#define TG3_TSO5_FW_RODATA_ADDR 0x00010e90
5998#define TG3_TSO5_FW_RODATA_LEN 0x50
5999#define TG3_TSO5_FW_DATA_ADDR 0x00010f00
6000#define TG3_TSO5_FW_DATA_LEN 0x20
6001#define TG3_TSO5_FW_SBSS_ADDR 0x00010f20
6002#define TG3_TSO5_FW_SBSS_LEN 0x28
6003#define TG3_TSO5_FW_BSS_ADDR 0x00010f50
6004#define TG3_TSO5_FW_BSS_LEN 0x88
6005
Andreas Mohr50da8592006-08-14 23:54:30 -07006006static const u32 tg3Tso5FwText[(TG3_TSO5_FW_TEXT_LEN / 4) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 0x0c004003, 0x00000000, 0x00010f04, 0x00000000, 0x10000003, 0x00000000,
6008 0x0000000d, 0x0000000d, 0x3c1d0001, 0x37bde000, 0x03a0f021, 0x3c100001,
6009 0x26100000, 0x0c004010, 0x00000000, 0x0000000d, 0x27bdffe0, 0x3c04fefe,
6010 0xafbf0018, 0x0c0042e8, 0x34840002, 0x0c004364, 0x00000000, 0x3c030001,
6011 0x90630f34, 0x24020002, 0x3c040001, 0x24840e9c, 0x14620003, 0x24050001,
6012 0x3c040001, 0x24840e90, 0x24060002, 0x00003821, 0xafa00010, 0x0c004378,
6013 0xafa00014, 0x0c00402c, 0x00000000, 0x8fbf0018, 0x03e00008, 0x27bd0020,
6014 0x00000000, 0x00000000, 0x27bdffe0, 0xafbf001c, 0xafb20018, 0xafb10014,
6015 0x0c0042d4, 0xafb00010, 0x3c128000, 0x24110001, 0x8f706810, 0x32020400,
6016 0x10400007, 0x00000000, 0x8f641008, 0x00921024, 0x14400003, 0x00000000,
6017 0x0c004064, 0x00000000, 0x3c020001, 0x90420f56, 0x10510003, 0x32020200,
6018 0x1040fff1, 0x00000000, 0x0c0041b4, 0x00000000, 0x08004034, 0x00000000,
6019 0x8fbf001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x03e00008, 0x27bd0020,
6020 0x27bdffe0, 0x3c040001, 0x24840eb0, 0x00002821, 0x00003021, 0x00003821,
6021 0xafbf0018, 0xafa00010, 0x0c004378, 0xafa00014, 0x0000d021, 0x24020130,
6022 0xaf625000, 0x3c010001, 0xa4200f50, 0x3c010001, 0xa0200f57, 0x8fbf0018,
6023 0x03e00008, 0x27bd0020, 0x00000000, 0x00000000, 0x3c030001, 0x24630f60,
6024 0x90620000, 0x27bdfff0, 0x14400003, 0x0080c021, 0x08004073, 0x00004821,
6025 0x3c022000, 0x03021024, 0x10400003, 0x24090002, 0x08004073, 0xa0600000,
6026 0x24090001, 0x00181040, 0x30431f80, 0x346f8008, 0x1520004b, 0x25eb0028,
6027 0x3c040001, 0x00832021, 0x8c848010, 0x3c050001, 0x24a50f7a, 0x00041402,
6028 0xa0a20000, 0x3c010001, 0xa0240f7b, 0x3c020001, 0x00431021, 0x94428014,
6029 0x3c010001, 0xa0220f7c, 0x3c0c0001, 0x01836021, 0x8d8c8018, 0x304200ff,
6030 0x24420008, 0x000220c3, 0x24020001, 0x3c010001, 0xa0220f60, 0x0124102b,
6031 0x1040000c, 0x00003821, 0x24a6000e, 0x01602821, 0x8ca20000, 0x8ca30004,
6032 0x24a50008, 0x24e70001, 0xacc20000, 0xacc30004, 0x00e4102b, 0x1440fff8,
6033 0x24c60008, 0x00003821, 0x3c080001, 0x25080f7b, 0x91060000, 0x3c020001,
6034 0x90420f7c, 0x2503000d, 0x00c32821, 0x00461023, 0x00021fc2, 0x00431021,
6035 0x00021043, 0x1840000c, 0x00002021, 0x91020001, 0x00461023, 0x00021fc2,
6036 0x00431021, 0x00021843, 0x94a20000, 0x24e70001, 0x00822021, 0x00e3102a,
6037 0x1440fffb, 0x24a50002, 0x00041c02, 0x3082ffff, 0x00622021, 0x00041402,
6038 0x00822021, 0x3c02ffff, 0x01821024, 0x3083ffff, 0x00431025, 0x3c010001,
6039 0x080040fa, 0xac220f80, 0x3c050001, 0x24a50f7c, 0x90a20000, 0x3c0c0001,
6040 0x01836021, 0x8d8c8018, 0x000220c2, 0x1080000e, 0x00003821, 0x01603021,
6041 0x24a5000c, 0x8ca20000, 0x8ca30004, 0x24a50008, 0x24e70001, 0xacc20000,
6042 0xacc30004, 0x00e4102b, 0x1440fff8, 0x24c60008, 0x3c050001, 0x24a50f7c,
6043 0x90a20000, 0x30430007, 0x24020004, 0x10620011, 0x28620005, 0x10400005,
6044 0x24020002, 0x10620008, 0x000710c0, 0x080040fa, 0x00000000, 0x24020006,
6045 0x1062000e, 0x000710c0, 0x080040fa, 0x00000000, 0x00a21821, 0x9463000c,
6046 0x004b1021, 0x080040fa, 0xa4430000, 0x000710c0, 0x00a21821, 0x8c63000c,
6047 0x004b1021, 0x080040fa, 0xac430000, 0x00a21821, 0x8c63000c, 0x004b2021,
6048 0x00a21021, 0xac830000, 0x94420010, 0xa4820004, 0x95e70006, 0x3c020001,
6049 0x90420f7c, 0x3c030001, 0x90630f7a, 0x00e2c823, 0x3c020001, 0x90420f7b,
6050 0x24630028, 0x01e34021, 0x24420028, 0x15200012, 0x01e23021, 0x94c2000c,
6051 0x3c010001, 0xa4220f78, 0x94c20004, 0x94c30006, 0x3c010001, 0xa4200f76,
6052 0x3c010001, 0xa4200f72, 0x00021400, 0x00431025, 0x3c010001, 0xac220f6c,
6053 0x95020004, 0x3c010001, 0x08004124, 0xa4220f70, 0x3c020001, 0x94420f70,
6054 0x3c030001, 0x94630f72, 0x00431021, 0xa5020004, 0x3c020001, 0x94420f6c,
6055 0xa4c20004, 0x3c020001, 0x8c420f6c, 0xa4c20006, 0x3c040001, 0x94840f72,
6056 0x3c020001, 0x94420f70, 0x3c0a0001, 0x954a0f76, 0x00441821, 0x3063ffff,
6057 0x0062182a, 0x24020002, 0x1122000b, 0x00832023, 0x3c030001, 0x94630f78,
6058 0x30620009, 0x10400006, 0x3062fff6, 0xa4c2000c, 0x3c020001, 0x94420f78,
6059 0x30420009, 0x01425023, 0x24020001, 0x1122001b, 0x29220002, 0x50400005,
6060 0x24020002, 0x11200007, 0x31a2ffff, 0x08004197, 0x00000000, 0x1122001d,
6061 0x24020016, 0x08004197, 0x31a2ffff, 0x3c0e0001, 0x95ce0f80, 0x10800005,
6062 0x01806821, 0x01c42021, 0x00041c02, 0x3082ffff, 0x00627021, 0x000e1027,
6063 0xa502000a, 0x3c030001, 0x90630f7b, 0x31a2ffff, 0x00e21021, 0x0800418d,
6064 0x00432023, 0x3c020001, 0x94420f80, 0x00442021, 0x00041c02, 0x3082ffff,
6065 0x00622021, 0x00807021, 0x00041027, 0x08004185, 0xa502000a, 0x3c050001,
6066 0x24a50f7a, 0x90a30000, 0x14620002, 0x24e2fff2, 0xa5e20034, 0x90a20000,
6067 0x00e21023, 0xa5020002, 0x3c030001, 0x94630f80, 0x3c020001, 0x94420f5a,
6068 0x30e5ffff, 0x00641821, 0x00451023, 0x00622023, 0x00041c02, 0x3082ffff,
6069 0x00622021, 0x00041027, 0xa502000a, 0x3c030001, 0x90630f7c, 0x24620001,
6070 0x14a20005, 0x00807021, 0x01631021, 0x90420000, 0x08004185, 0x00026200,
6071 0x24620002, 0x14a20003, 0x306200fe, 0x004b1021, 0x944c0000, 0x3c020001,
6072 0x94420f82, 0x3183ffff, 0x3c040001, 0x90840f7b, 0x00431021, 0x00e21021,
6073 0x00442023, 0x008a2021, 0x00041c02, 0x3082ffff, 0x00622021, 0x00041402,
6074 0x00822021, 0x00806821, 0x00041027, 0xa4c20010, 0x31a2ffff, 0x000e1c00,
6075 0x00431025, 0x3c040001, 0x24840f72, 0xade20010, 0x94820000, 0x3c050001,
6076 0x94a50f76, 0x3c030001, 0x8c630f6c, 0x24420001, 0x00b92821, 0xa4820000,
6077 0x3322ffff, 0x00622021, 0x0083182b, 0x3c010001, 0xa4250f76, 0x10600003,
6078 0x24a2ffff, 0x3c010001, 0xa4220f76, 0x3c024000, 0x03021025, 0x3c010001,
6079 0xac240f6c, 0xaf621008, 0x03e00008, 0x27bd0010, 0x3c030001, 0x90630f56,
6080 0x27bdffe8, 0x24020001, 0xafbf0014, 0x10620026, 0xafb00010, 0x8f620cf4,
6081 0x2442ffff, 0x3042007f, 0x00021100, 0x8c434000, 0x3c010001, 0xac230f64,
6082 0x8c434008, 0x24444000, 0x8c5c4004, 0x30620040, 0x14400002, 0x24020088,
6083 0x24020008, 0x3c010001, 0xa4220f68, 0x30620004, 0x10400005, 0x24020001,
6084 0x3c010001, 0xa0220f57, 0x080041d5, 0x00031402, 0x3c010001, 0xa0200f57,
6085 0x00031402, 0x3c010001, 0xa4220f54, 0x9483000c, 0x24020001, 0x3c010001,
6086 0xa4200f50, 0x3c010001, 0xa0220f56, 0x3c010001, 0xa4230f62, 0x24020001,
6087 0x1342001e, 0x00000000, 0x13400005, 0x24020003, 0x13420067, 0x00000000,
6088 0x080042cf, 0x00000000, 0x3c020001, 0x94420f62, 0x241a0001, 0x3c010001,
6089 0xa4200f5e, 0x3c010001, 0xa4200f52, 0x304407ff, 0x00021bc2, 0x00031823,
6090 0x3063003e, 0x34630036, 0x00021242, 0x3042003c, 0x00621821, 0x3c010001,
6091 0xa4240f58, 0x00832021, 0x24630030, 0x3c010001, 0xa4240f5a, 0x3c010001,
6092 0xa4230f5c, 0x3c060001, 0x24c60f52, 0x94c50000, 0x94c30002, 0x3c040001,
6093 0x94840f5a, 0x00651021, 0x0044102a, 0x10400013, 0x3c108000, 0x00a31021,
6094 0xa4c20000, 0x3c02a000, 0xaf620cf4, 0x3c010001, 0xa0200f56, 0x8f641008,
6095 0x00901024, 0x14400003, 0x00000000, 0x0c004064, 0x00000000, 0x8f620cf4,
6096 0x00501024, 0x104000b7, 0x00000000, 0x0800420f, 0x00000000, 0x3c030001,
6097 0x94630f50, 0x00851023, 0xa4c40000, 0x00621821, 0x3042ffff, 0x3c010001,
6098 0xa4230f50, 0xaf620ce8, 0x3c020001, 0x94420f68, 0x34420024, 0xaf620cec,
6099 0x94c30002, 0x3c020001, 0x94420f50, 0x14620012, 0x3c028000, 0x3c108000,
6100 0x3c02a000, 0xaf620cf4, 0x3c010001, 0xa0200f56, 0x8f641008, 0x00901024,
6101 0x14400003, 0x00000000, 0x0c004064, 0x00000000, 0x8f620cf4, 0x00501024,
6102 0x1440fff7, 0x00000000, 0x080042cf, 0x241a0003, 0xaf620cf4, 0x3c108000,
6103 0x8f641008, 0x00901024, 0x14400003, 0x00000000, 0x0c004064, 0x00000000,
6104 0x8f620cf4, 0x00501024, 0x1440fff7, 0x00000000, 0x080042cf, 0x241a0003,
6105 0x3c070001, 0x24e70f50, 0x94e20000, 0x03821021, 0xaf620ce0, 0x3c020001,
6106 0x8c420f64, 0xaf620ce4, 0x3c050001, 0x94a50f54, 0x94e30000, 0x3c040001,
6107 0x94840f58, 0x3c020001, 0x94420f5e, 0x00a32823, 0x00822023, 0x30a6ffff,
6108 0x3083ffff, 0x00c3102b, 0x14400043, 0x00000000, 0x3c020001, 0x94420f5c,
6109 0x00021400, 0x00621025, 0xaf620ce8, 0x94e20000, 0x3c030001, 0x94630f54,
6110 0x00441021, 0xa4e20000, 0x3042ffff, 0x14430021, 0x3c020008, 0x3c020001,
6111 0x90420f57, 0x10400006, 0x3c03000c, 0x3c020001, 0x94420f68, 0x34630624,
6112 0x0800427c, 0x0000d021, 0x3c020001, 0x94420f68, 0x3c030008, 0x34630624,
6113 0x00431025, 0xaf620cec, 0x3c108000, 0x3c02a000, 0xaf620cf4, 0x3c010001,
6114 0xa0200f56, 0x8f641008, 0x00901024, 0x14400003, 0x00000000, 0x0c004064,
6115 0x00000000, 0x8f620cf4, 0x00501024, 0x10400015, 0x00000000, 0x08004283,
6116 0x00000000, 0x3c030001, 0x94630f68, 0x34420624, 0x3c108000, 0x00621825,
6117 0x3c028000, 0xaf630cec, 0xaf620cf4, 0x8f641008, 0x00901024, 0x14400003,
6118 0x00000000, 0x0c004064, 0x00000000, 0x8f620cf4, 0x00501024, 0x1440fff7,
6119 0x00000000, 0x3c010001, 0x080042cf, 0xa4200f5e, 0x3c020001, 0x94420f5c,
6120 0x00021400, 0x00c21025, 0xaf620ce8, 0x3c020001, 0x90420f57, 0x10400009,
6121 0x3c03000c, 0x3c020001, 0x94420f68, 0x34630624, 0x0000d021, 0x00431025,
6122 0xaf620cec, 0x080042c1, 0x3c108000, 0x3c020001, 0x94420f68, 0x3c030008,
6123 0x34630604, 0x00431025, 0xaf620cec, 0x3c020001, 0x94420f5e, 0x00451021,
6124 0x3c010001, 0xa4220f5e, 0x3c108000, 0x3c02a000, 0xaf620cf4, 0x3c010001,
6125 0xa0200f56, 0x8f641008, 0x00901024, 0x14400003, 0x00000000, 0x0c004064,
6126 0x00000000, 0x8f620cf4, 0x00501024, 0x1440fff7, 0x00000000, 0x8fbf0014,
6127 0x8fb00010, 0x03e00008, 0x27bd0018, 0x00000000, 0x27bdffe0, 0x3c040001,
6128 0x24840ec0, 0x00002821, 0x00003021, 0x00003821, 0xafbf0018, 0xafa00010,
6129 0x0c004378, 0xafa00014, 0x0000d021, 0x24020130, 0xaf625000, 0x3c010001,
6130 0xa4200f50, 0x3c010001, 0xa0200f57, 0x8fbf0018, 0x03e00008, 0x27bd0020,
6131 0x27bdffe8, 0x3c1bc000, 0xafbf0014, 0xafb00010, 0xaf60680c, 0x8f626804,
6132 0x34420082, 0xaf626804, 0x8f634000, 0x24020b50, 0x3c010001, 0xac220f20,
6133 0x24020b78, 0x3c010001, 0xac220f30, 0x34630002, 0xaf634000, 0x0c004315,
6134 0x00808021, 0x3c010001, 0xa0220f34, 0x304200ff, 0x24030002, 0x14430005,
6135 0x00000000, 0x3c020001, 0x8c420f20, 0x08004308, 0xac5000c0, 0x3c020001,
6136 0x8c420f20, 0xac5000bc, 0x8f624434, 0x8f634438, 0x8f644410, 0x3c010001,
6137 0xac220f28, 0x3c010001, 0xac230f38, 0x3c010001, 0xac240f24, 0x8fbf0014,
6138 0x8fb00010, 0x03e00008, 0x27bd0018, 0x03e00008, 0x24020001, 0x27bdfff8,
6139 0x18800009, 0x00002821, 0x8f63680c, 0x8f62680c, 0x1043fffe, 0x00000000,
6140 0x24a50001, 0x00a4102a, 0x1440fff9, 0x00000000, 0x03e00008, 0x27bd0008,
6141 0x8f634450, 0x3c020001, 0x8c420f28, 0x00031c02, 0x0043102b, 0x14400008,
6142 0x3c038000, 0x3c040001, 0x8c840f38, 0x8f624450, 0x00021c02, 0x0083102b,
6143 0x1040fffc, 0x3c038000, 0xaf634444, 0x8f624444, 0x00431024, 0x1440fffd,
6144 0x00000000, 0x8f624448, 0x03e00008, 0x3042ffff, 0x3082ffff, 0x2442e000,
6145 0x2c422001, 0x14400003, 0x3c024000, 0x08004347, 0x2402ffff, 0x00822025,
6146 0xaf645c38, 0x8f625c30, 0x30420002, 0x1440fffc, 0x00001021, 0x03e00008,
6147 0x00000000, 0x8f624450, 0x3c030001, 0x8c630f24, 0x08004350, 0x3042ffff,
6148 0x8f624450, 0x3042ffff, 0x0043102b, 0x1440fffc, 0x00000000, 0x03e00008,
6149 0x00000000, 0x27bdffe0, 0x00802821, 0x3c040001, 0x24840ed0, 0x00003021,
6150 0x00003821, 0xafbf0018, 0xafa00010, 0x0c004378, 0xafa00014, 0x0800435f,
6151 0x00000000, 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x3c020001, 0x3442d600,
6152 0x3c030001, 0x3463d600, 0x3c040001, 0x3484ddff, 0x3c010001, 0xac220f40,
6153 0x24020040, 0x3c010001, 0xac220f44, 0x3c010001, 0xac200f3c, 0xac600000,
6154 0x24630004, 0x0083102b, 0x5040fffd, 0xac600000, 0x03e00008, 0x00000000,
6155 0x00804821, 0x8faa0010, 0x3c020001, 0x8c420f3c, 0x3c040001, 0x8c840f44,
6156 0x8fab0014, 0x24430001, 0x0044102b, 0x3c010001, 0xac230f3c, 0x14400003,
6157 0x00004021, 0x3c010001, 0xac200f3c, 0x3c020001, 0x8c420f3c, 0x3c030001,
6158 0x8c630f40, 0x91240000, 0x00021140, 0x00431021, 0x00481021, 0x25080001,
6159 0xa0440000, 0x29020008, 0x1440fff4, 0x25290001, 0x3c020001, 0x8c420f3c,
6160 0x3c030001, 0x8c630f40, 0x8f64680c, 0x00021140, 0x00431021, 0xac440008,
6161 0xac45000c, 0xac460010, 0xac470014, 0xac4a0018, 0x03e00008, 0xac4b001c,
6162 0x00000000, 0x00000000, 0x00000000,
6163};
6164
Andreas Mohr50da8592006-08-14 23:54:30 -07006165static const u32 tg3Tso5FwRodata[(TG3_TSO5_FW_RODATA_LEN / 4) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166 0x4d61696e, 0x43707542, 0x00000000, 0x4d61696e, 0x43707541, 0x00000000,
6167 0x00000000, 0x00000000, 0x73746b6f, 0x66666c64, 0x00000000, 0x00000000,
6168 0x73746b6f, 0x66666c64, 0x00000000, 0x00000000, 0x66617461, 0x6c457272,
6169 0x00000000, 0x00000000, 0x00000000,
6170};
6171
Andreas Mohr50da8592006-08-14 23:54:30 -07006172static const u32 tg3Tso5FwData[(TG3_TSO5_FW_DATA_LEN / 4) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173 0x00000000, 0x73746b6f, 0x66666c64, 0x5f76312e, 0x322e3000, 0x00000000,
6174 0x00000000, 0x00000000, 0x00000000,
6175};
6176
6177/* tp->lock is held. */
6178static int tg3_load_tso_firmware(struct tg3 *tp)
6179{
6180 struct fw_info info;
6181 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
6182 int err, i;
6183
6184 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
6185 return 0;
6186
6187 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
6188 info.text_base = TG3_TSO5_FW_TEXT_ADDR;
6189 info.text_len = TG3_TSO5_FW_TEXT_LEN;
6190 info.text_data = &tg3Tso5FwText[0];
6191 info.rodata_base = TG3_TSO5_FW_RODATA_ADDR;
6192 info.rodata_len = TG3_TSO5_FW_RODATA_LEN;
6193 info.rodata_data = &tg3Tso5FwRodata[0];
6194 info.data_base = TG3_TSO5_FW_DATA_ADDR;
6195 info.data_len = TG3_TSO5_FW_DATA_LEN;
6196 info.data_data = &tg3Tso5FwData[0];
6197 cpu_base = RX_CPU_BASE;
6198 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
6199 cpu_scratch_size = (info.text_len +
6200 info.rodata_len +
6201 info.data_len +
6202 TG3_TSO5_FW_SBSS_LEN +
6203 TG3_TSO5_FW_BSS_LEN);
6204 } else {
6205 info.text_base = TG3_TSO_FW_TEXT_ADDR;
6206 info.text_len = TG3_TSO_FW_TEXT_LEN;
6207 info.text_data = &tg3TsoFwText[0];
6208 info.rodata_base = TG3_TSO_FW_RODATA_ADDR;
6209 info.rodata_len = TG3_TSO_FW_RODATA_LEN;
6210 info.rodata_data = &tg3TsoFwRodata[0];
6211 info.data_base = TG3_TSO_FW_DATA_ADDR;
6212 info.data_len = TG3_TSO_FW_DATA_LEN;
6213 info.data_data = &tg3TsoFwData[0];
6214 cpu_base = TX_CPU_BASE;
6215 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
6216 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
6217 }
6218
6219 err = tg3_load_firmware_cpu(tp, cpu_base,
6220 cpu_scratch_base, cpu_scratch_size,
6221 &info);
6222 if (err)
6223 return err;
6224
6225 /* Now startup the cpu. */
6226 tw32(cpu_base + CPU_STATE, 0xffffffff);
6227 tw32_f(cpu_base + CPU_PC, info.text_base);
6228
6229 for (i = 0; i < 5; i++) {
6230 if (tr32(cpu_base + CPU_PC) == info.text_base)
6231 break;
6232 tw32(cpu_base + CPU_STATE, 0xffffffff);
6233 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
6234 tw32_f(cpu_base + CPU_PC, info.text_base);
6235 udelay(1000);
6236 }
6237 if (i >= 5) {
6238 printk(KERN_ERR PFX "tg3_load_tso_firmware fails for %s "
6239 "to set CPU PC, is %08x should be %08x\n",
6240 tp->dev->name, tr32(cpu_base + CPU_PC),
6241 info.text_base);
6242 return -ENODEV;
6243 }
6244 tw32(cpu_base + CPU_STATE, 0xffffffff);
6245 tw32_f(cpu_base + CPU_MODE, 0x00000000);
6246 return 0;
6247}
6248
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249
6250/* tp->lock is held. */
Michael Chan986e0ae2007-05-05 12:10:20 -07006251static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252{
6253 u32 addr_high, addr_low;
6254 int i;
6255
6256 addr_high = ((tp->dev->dev_addr[0] << 8) |
6257 tp->dev->dev_addr[1]);
6258 addr_low = ((tp->dev->dev_addr[2] << 24) |
6259 (tp->dev->dev_addr[3] << 16) |
6260 (tp->dev->dev_addr[4] << 8) |
6261 (tp->dev->dev_addr[5] << 0));
6262 for (i = 0; i < 4; i++) {
Michael Chan986e0ae2007-05-05 12:10:20 -07006263 if (i == 1 && skip_mac_1)
6264 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
6266 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
6267 }
6268
6269 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
6270 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
6271 for (i = 0; i < 12; i++) {
6272 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
6273 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
6274 }
6275 }
6276
6277 addr_high = (tp->dev->dev_addr[0] +
6278 tp->dev->dev_addr[1] +
6279 tp->dev->dev_addr[2] +
6280 tp->dev->dev_addr[3] +
6281 tp->dev->dev_addr[4] +
6282 tp->dev->dev_addr[5]) &
6283 TX_BACKOFF_SEED_MASK;
6284 tw32(MAC_TX_BACKOFF_SEED, addr_high);
6285}
6286
6287static int tg3_set_mac_addr(struct net_device *dev, void *p)
6288{
6289 struct tg3 *tp = netdev_priv(dev);
6290 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07006291 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292
Michael Chanf9804dd2005-09-27 12:13:10 -07006293 if (!is_valid_ether_addr(addr->sa_data))
6294 return -EINVAL;
6295
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
6297
Michael Chane75f7c92006-03-20 21:33:26 -08006298 if (!netif_running(dev))
6299 return 0;
6300
Michael Chan58712ef2006-04-29 18:58:01 -07006301 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
Michael Chan986e0ae2007-05-05 12:10:20 -07006302 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07006303
Michael Chan986e0ae2007-05-05 12:10:20 -07006304 addr0_high = tr32(MAC_ADDR_0_HIGH);
6305 addr0_low = tr32(MAC_ADDR_0_LOW);
6306 addr1_high = tr32(MAC_ADDR_1_HIGH);
6307 addr1_low = tr32(MAC_ADDR_1_LOW);
6308
6309 /* Skip MAC addr 1 if ASF is using it. */
6310 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
6311 !(addr1_high == 0 && addr1_low == 0))
6312 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07006313 }
Michael Chan986e0ae2007-05-05 12:10:20 -07006314 spin_lock_bh(&tp->lock);
6315 __tg3_set_mac_addr(tp, skip_mac_1);
6316 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317
Michael Chanb9ec6c12006-07-25 16:37:27 -07006318 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319}
6320
6321/* tp->lock is held. */
6322static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
6323 dma_addr_t mapping, u32 maxlen_flags,
6324 u32 nic_addr)
6325{
6326 tg3_write_mem(tp,
6327 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
6328 ((u64) mapping >> 32));
6329 tg3_write_mem(tp,
6330 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
6331 ((u64) mapping & 0xffffffff));
6332 tg3_write_mem(tp,
6333 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
6334 maxlen_flags);
6335
6336 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
6337 tg3_write_mem(tp,
6338 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
6339 nic_addr);
6340}
6341
6342static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07006343static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07006344{
6345 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
6346 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
6347 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
6348 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
6349 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
6350 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
6351 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
6352 }
6353 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
6354 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
6355 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
6356 u32 val = ec->stats_block_coalesce_usecs;
6357
6358 if (!netif_carrier_ok(tp->dev))
6359 val = 0;
6360
6361 tw32(HOSTCC_STAT_COAL_TICKS, val);
6362 }
6363}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364
6365/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07006366static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367{
6368 u32 val, rdmac_mode;
6369 int i, err, limit;
6370
6371 tg3_disable_ints(tp);
6372
6373 tg3_stop_fw(tp);
6374
6375 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
6376
6377 if (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) {
Michael Chane6de8ad2005-05-05 14:42:41 -07006378 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379 }
6380
Michael Chan36da4d82006-11-03 01:01:03 -08006381 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08006382 tg3_phy_reset(tp);
6383
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384 err = tg3_chip_reset(tp);
6385 if (err)
6386 return err;
6387
6388 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
6389
Matt Carlsond30cdd22007-10-07 23:28:35 -07006390 if (tp->pci_chip_rev_id == CHIPREV_ID_5784_A0) {
6391 val = tr32(TG3_CPMU_CTRL);
6392 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
6393 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08006394
6395 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
6396 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
6397 val |= CPMU_LSPD_10MB_MACCLK_6_25;
6398 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
6399
6400 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
6401 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
6402 val |= CPMU_LNK_AWARE_MACCLK_6_25;
6403 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
6404
6405 val = tr32(TG3_CPMU_HST_ACC);
6406 val &= ~CPMU_HST_ACC_MACCLK_MASK;
6407 val |= CPMU_HST_ACC_MACCLK_6_25;
6408 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07006409 }
6410
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411 /* This works around an issue with Athlon chipsets on
6412 * B3 tigon3 silicon. This bit has no effect on any
6413 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07006414 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415 */
Matt Carlson795d01c2007-10-07 23:28:17 -07006416 if (!(tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)) {
6417 if (!(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
6418 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
6419 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
6420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421
6422 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
6423 (tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
6424 val = tr32(TG3PCI_PCISTATE);
6425 val |= PCISTATE_RETRY_SAME_DMA;
6426 tw32(TG3PCI_PCISTATE, val);
6427 }
6428
Matt Carlson0d3031d2007-10-10 18:02:43 -07006429 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
6430 /* Allow reads and writes to the
6431 * APE register and memory space.
6432 */
6433 val = tr32(TG3PCI_PCISTATE);
6434 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
6435 PCISTATE_ALLOW_APE_SHMEM_WR;
6436 tw32(TG3PCI_PCISTATE, val);
6437 }
6438
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
6440 /* Enable some hw fixes. */
6441 val = tr32(TG3PCI_MSI_DATA);
6442 val |= (1 << 26) | (1 << 28) | (1 << 29);
6443 tw32(TG3PCI_MSI_DATA, val);
6444 }
6445
6446 /* Descriptor ring init may make accesses to the
6447 * NIC SRAM area to setup the TX descriptors, so we
6448 * can only do this after the hardware has been
6449 * successfully reset.
6450 */
Michael Chan32d8c572006-07-25 16:38:29 -07006451 err = tg3_init_rings(tp);
6452 if (err)
6453 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006454
Matt Carlson9936bcf2007-10-10 18:03:07 -07006455 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
6456 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07006457 /* This value is determined during the probe time DMA
6458 * engine test, tg3_test_dma.
6459 */
6460 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
6461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462
6463 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
6464 GRC_MODE_4X_NIC_SEND_RINGS |
6465 GRC_MODE_NO_TX_PHDR_CSUM |
6466 GRC_MODE_NO_RX_PHDR_CSUM);
6467 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07006468
6469 /* Pseudo-header checksum is done by hardware logic and not
6470 * the offload processers, so make the chip do the pseudo-
6471 * header checksums on receive. For transmit it is more
6472 * convenient to do the pseudo-header checksum in software
6473 * as Linux does that on transmit for us in all cases.
6474 */
6475 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476
6477 tw32(GRC_MODE,
6478 tp->grc_mode |
6479 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
6480
6481 /* Setup the timer prescalar register. Clock is always 66Mhz. */
6482 val = tr32(GRC_MISC_CFG);
6483 val &= ~0xff;
6484 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
6485 tw32(GRC_MISC_CFG, val);
6486
6487 /* Initialize MBUF/DESC pool. */
John W. Linvillecbf46852005-04-21 17:01:29 -07006488 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489 /* Do nothing. */
6490 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
6491 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
6492 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
6493 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
6494 else
6495 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
6496 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
6497 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
6498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499 else if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
6500 int fw_len;
6501
6502 fw_len = (TG3_TSO5_FW_TEXT_LEN +
6503 TG3_TSO5_FW_RODATA_LEN +
6504 TG3_TSO5_FW_DATA_LEN +
6505 TG3_TSO5_FW_SBSS_LEN +
6506 TG3_TSO5_FW_BSS_LEN);
6507 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
6508 tw32(BUFMGR_MB_POOL_ADDR,
6509 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
6510 tw32(BUFMGR_MB_POOL_SIZE,
6511 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
6512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513
Michael Chan0f893dc2005-07-25 12:30:38 -07006514 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515 tw32(BUFMGR_MB_RDMA_LOW_WATER,
6516 tp->bufmgr_config.mbuf_read_dma_low_water);
6517 tw32(BUFMGR_MB_MACRX_LOW_WATER,
6518 tp->bufmgr_config.mbuf_mac_rx_low_water);
6519 tw32(BUFMGR_MB_HIGH_WATER,
6520 tp->bufmgr_config.mbuf_high_water);
6521 } else {
6522 tw32(BUFMGR_MB_RDMA_LOW_WATER,
6523 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
6524 tw32(BUFMGR_MB_MACRX_LOW_WATER,
6525 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
6526 tw32(BUFMGR_MB_HIGH_WATER,
6527 tp->bufmgr_config.mbuf_high_water_jumbo);
6528 }
6529 tw32(BUFMGR_DMA_LOW_WATER,
6530 tp->bufmgr_config.dma_low_water);
6531 tw32(BUFMGR_DMA_HIGH_WATER,
6532 tp->bufmgr_config.dma_high_water);
6533
6534 tw32(BUFMGR_MODE, BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE);
6535 for (i = 0; i < 2000; i++) {
6536 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
6537 break;
6538 udelay(10);
6539 }
6540 if (i >= 2000) {
6541 printk(KERN_ERR PFX "tg3_reset_hw cannot enable BUFMGR for %s.\n",
6542 tp->dev->name);
6543 return -ENODEV;
6544 }
6545
6546 /* Setup replenish threshold. */
Michael Chanf92905d2006-06-29 20:14:29 -07006547 val = tp->rx_pending / 8;
6548 if (val == 0)
6549 val = 1;
6550 else if (val > tp->rx_std_max_post)
6551 val = tp->rx_std_max_post;
Michael Chanb5d37722006-09-27 16:06:21 -07006552 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
6553 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
6554 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
6555
6556 if (val > (TG3_RX_INTERNAL_RING_SZ_5906 / 2))
6557 val = TG3_RX_INTERNAL_RING_SZ_5906 / 2;
6558 }
Michael Chanf92905d2006-06-29 20:14:29 -07006559
6560 tw32(RCVBDI_STD_THRESH, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561
6562 /* Initialize TG3_BDINFO's at:
6563 * RCVDBDI_STD_BD: standard eth size rx ring
6564 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
6565 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
6566 *
6567 * like so:
6568 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
6569 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
6570 * ring attribute flags
6571 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
6572 *
6573 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
6574 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
6575 *
6576 * The size of each ring is fixed in the firmware, but the location is
6577 * configurable.
6578 */
6579 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
6580 ((u64) tp->rx_std_mapping >> 32));
6581 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
6582 ((u64) tp->rx_std_mapping & 0xffffffff));
6583 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
6584 NIC_SRAM_RX_BUFFER_DESC);
6585
6586 /* Don't even try to program the JUMBO/MINI buffer descriptor
6587 * configs on 5705.
6588 */
6589 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
6590 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS,
6591 RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT);
6592 } else {
6593 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS,
6594 RX_STD_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT);
6595
6596 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
6597 BDINFO_FLAGS_DISABLED);
6598
6599 /* Setup replenish threshold. */
6600 tw32(RCVBDI_JUMBO_THRESH, tp->rx_jumbo_pending / 8);
6601
Michael Chan0f893dc2005-07-25 12:30:38 -07006602 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
6604 ((u64) tp->rx_jumbo_mapping >> 32));
6605 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
6606 ((u64) tp->rx_jumbo_mapping & 0xffffffff));
6607 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
6608 RX_JUMBO_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT);
6609 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
6610 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
6611 } else {
6612 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
6613 BDINFO_FLAGS_DISABLED);
6614 }
6615
6616 }
6617
6618 /* There is only one send ring on 5705/5750, no need to explicitly
6619 * disable the others.
6620 */
6621 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
6622 /* Clear out send RCB ring in SRAM. */
6623 for (i = NIC_SRAM_SEND_RCB; i < NIC_SRAM_RCV_RET_RCB; i += TG3_BDINFO_SIZE)
6624 tg3_write_mem(tp, i + TG3_BDINFO_MAXLEN_FLAGS,
6625 BDINFO_FLAGS_DISABLED);
6626 }
6627
6628 tp->tx_prod = 0;
6629 tp->tx_cons = 0;
6630 tw32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW, 0);
6631 tw32_tx_mbox(MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW, 0);
6632
6633 tg3_set_bdinfo(tp, NIC_SRAM_SEND_RCB,
6634 tp->tx_desc_mapping,
6635 (TG3_TX_RING_SIZE <<
6636 BDINFO_FLAGS_MAXLEN_SHIFT),
6637 NIC_SRAM_TX_BUFFER_DESC);
6638
6639 /* There is only one receive return ring on 5705/5750, no need
6640 * to explicitly disable the others.
6641 */
6642 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
6643 for (i = NIC_SRAM_RCV_RET_RCB; i < NIC_SRAM_STATS_BLK;
6644 i += TG3_BDINFO_SIZE) {
6645 tg3_write_mem(tp, i + TG3_BDINFO_MAXLEN_FLAGS,
6646 BDINFO_FLAGS_DISABLED);
6647 }
6648 }
6649
6650 tp->rx_rcb_ptr = 0;
6651 tw32_rx_mbox(MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW, 0);
6652
6653 tg3_set_bdinfo(tp, NIC_SRAM_RCV_RET_RCB,
6654 tp->rx_rcb_mapping,
6655 (TG3_RX_RCB_RING_SIZE(tp) <<
6656 BDINFO_FLAGS_MAXLEN_SHIFT),
6657 0);
6658
6659 tp->rx_std_ptr = tp->rx_pending;
6660 tw32_rx_mbox(MAILBOX_RCV_STD_PROD_IDX + TG3_64BIT_REG_LOW,
6661 tp->rx_std_ptr);
6662
Michael Chan0f893dc2005-07-25 12:30:38 -07006663 tp->rx_jumbo_ptr = (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664 tp->rx_jumbo_pending : 0;
6665 tw32_rx_mbox(MAILBOX_RCV_JUMBO_PROD_IDX + TG3_64BIT_REG_LOW,
6666 tp->rx_jumbo_ptr);
6667
6668 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07006669 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670
6671 /* MTU + ethernet header + FCS + optional VLAN tag */
6672 tw32(MAC_RX_MTU_SIZE, tp->dev->mtu + ETH_HLEN + 8);
6673
6674 /* The slot time is changed by tg3_setup_phy if we
6675 * run at gigabit with half duplex.
6676 */
6677 tw32(MAC_TX_LENGTHS,
6678 (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
6679 (6 << TX_LENGTHS_IPG_SHIFT) |
6680 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
6681
6682 /* Receive rules. */
6683 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
6684 tw32(RCVLPC_CONFIG, 0x0181);
6685
6686 /* Calculate RDMAC_MODE setting early, we need it to determine
6687 * the RCVLPC_STATE_ENABLE mask.
6688 */
6689 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
6690 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
6691 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
6692 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
6693 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07006694
Matt Carlsond30cdd22007-10-07 23:28:35 -07006695 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784)
6696 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
6697 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
6698 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
6699
Michael Chan85e94ce2005-04-21 17:05:28 -07006700 /* If statement applies to 5705 and 5750 PCI devices only */
6701 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
6702 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
6703 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07006705 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
6707 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
6708 !(tp->tg3_flags2 & TG3_FLG2_IS_5788)) {
6709 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
6710 }
6711 }
6712
Michael Chan85e94ce2005-04-21 17:05:28 -07006713 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
6714 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
6715
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
6717 rdmac_mode |= (1 << 27);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718
6719 /* Receive/send statistics. */
Michael Chan16613942006-06-29 20:15:13 -07006720 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
6721 val = tr32(RCVLPC_STATS_ENABLE);
6722 val &= ~RCVLPC_STATSENAB_DACK_FIX;
6723 tw32(RCVLPC_STATS_ENABLE, val);
6724 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
6725 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726 val = tr32(RCVLPC_STATS_ENABLE);
6727 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
6728 tw32(RCVLPC_STATS_ENABLE, val);
6729 } else {
6730 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
6731 }
6732 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
6733 tw32(SNDDATAI_STATSENAB, 0xffffff);
6734 tw32(SNDDATAI_STATSCTRL,
6735 (SNDDATAI_SCTRL_ENABLE |
6736 SNDDATAI_SCTRL_FASTUPD));
6737
6738 /* Setup host coalescing engine. */
6739 tw32(HOSTCC_MODE, 0);
6740 for (i = 0; i < 2000; i++) {
6741 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
6742 break;
6743 udelay(10);
6744 }
6745
Michael Chand244c892005-07-05 14:42:33 -07006746 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747
6748 /* set status block DMA address */
6749 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
6750 ((u64) tp->status_mapping >> 32));
6751 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
6752 ((u64) tp->status_mapping & 0xffffffff));
6753
6754 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
6755 /* Status/statistics block address. See tg3_timer,
6756 * the tg3_periodic_fetch_stats call there, and
6757 * tg3_get_stats to see how this works for 5705/5750 chips.
6758 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
6760 ((u64) tp->stats_mapping >> 32));
6761 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
6762 ((u64) tp->stats_mapping & 0xffffffff));
6763 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
6764 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
6765 }
6766
6767 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
6768
6769 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
6770 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
6771 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
6772 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
6773
6774 /* Clear statistics/status block in chip, and status block in ram. */
6775 for (i = NIC_SRAM_STATS_BLK;
6776 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
6777 i += sizeof(u32)) {
6778 tg3_write_mem(tp, i, 0);
6779 udelay(40);
6780 }
6781 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
6782
Michael Chanc94e3942005-09-27 12:12:42 -07006783 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
6784 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
6785 /* reset to prevent losing 1st rx packet intermittently */
6786 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
6787 udelay(10);
6788 }
6789
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790 tp->mac_mode = MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
6791 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07006792 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
6793 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
6794 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
6795 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
6797 udelay(40);
6798
Michael Chan314fba32005-04-21 17:07:04 -07006799 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Michael Chan9d26e212006-12-07 00:21:14 -08006800 * If TG3_FLG2_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07006801 * register to preserve the GPIO settings for LOMs. The GPIOs,
6802 * whether used as inputs or outputs, are set by boot code after
6803 * reset.
6804 */
Michael Chan9d26e212006-12-07 00:21:14 -08006805 if (!(tp->tg3_flags2 & TG3_FLG2_IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07006806 u32 gpio_mask;
6807
Michael Chan9d26e212006-12-07 00:21:14 -08006808 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
6809 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
6810 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07006811
6812 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
6813 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
6814 GRC_LCLCTRL_GPIO_OUTPUT3;
6815
Michael Chanaf36e6b2006-03-23 01:28:06 -08006816 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
6817 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
6818
Gary Zambranoaaf84462007-05-05 11:51:45 -07006819 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07006820 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
6821
6822 /* GPIO1 must be driven high for eeprom write protect */
Michael Chan9d26e212006-12-07 00:21:14 -08006823 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT)
6824 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
6825 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07006826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
6828 udelay(100);
6829
Michael Chan09ee9292005-08-09 20:17:00 -07006830 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0);
David S. Millerfac9b832005-05-18 22:46:34 -07006831 tp->last_tag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006832
6833 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
6834 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
6835 udelay(40);
6836 }
6837
6838 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
6839 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
6840 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
6841 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
6842 WDMAC_MODE_LNGREAD_ENAB);
6843
Michael Chan85e94ce2005-04-21 17:05:28 -07006844 /* If statement applies to 5705 and 5750 PCI devices only */
6845 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
6846 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
6847 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848 if ((tp->tg3_flags & TG3_FLG2_TSO_CAPABLE) &&
6849 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
6850 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
6851 /* nothing */
6852 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
6853 !(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
6854 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
6855 val |= WDMAC_MODE_RX_ACCEL;
6856 }
6857 }
6858
Michael Chand9ab5ad2006-03-20 22:27:35 -08006859 /* Enable host coalescing bug fix */
Michael Chanaf36e6b2006-03-23 01:28:06 -08006860 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755) ||
Matt Carlsond30cdd22007-10-07 23:28:35 -07006861 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787) ||
Matt Carlson9936bcf2007-10-10 18:03:07 -07006862 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784) ||
6863 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761))
Michael Chand9ab5ad2006-03-20 22:27:35 -08006864 val |= (1 << 29);
6865
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866 tw32_f(WDMAC_MODE, val);
6867 udelay(40);
6868
Matt Carlson9974a352007-10-07 23:27:28 -07006869 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
6870 u16 pcix_cmd;
6871
6872 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
6873 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006874 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07006875 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
6876 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07006878 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
6879 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880 }
Matt Carlson9974a352007-10-07 23:27:28 -07006881 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
6882 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883 }
6884
6885 tw32_f(RDMAC_MODE, rdmac_mode);
6886 udelay(40);
6887
6888 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
6889 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
6890 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07006891
6892 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
6893 tw32(SNDDATAC_MODE,
6894 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
6895 else
6896 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
6897
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
6899 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
6900 tw32(RCVDBDI_MODE, RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ);
6901 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
6903 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904 tw32(SNDBDI_MODE, SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE);
6905 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
6906
6907 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
6908 err = tg3_load_5701_a0_firmware_fix(tp);
6909 if (err)
6910 return err;
6911 }
6912
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
6914 err = tg3_load_tso_firmware(tp);
6915 if (err)
6916 return err;
6917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918
6919 tp->tx_mode = TX_MODE_ENABLE;
6920 tw32_f(MAC_TX_MODE, tp->tx_mode);
6921 udelay(100);
6922
6923 tp->rx_mode = RX_MODE_ENABLE;
Matt Carlson9936bcf2007-10-10 18:03:07 -07006924 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
6925 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
Michael Chanaf36e6b2006-03-23 01:28:06 -08006926 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
6927
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928 tw32_f(MAC_RX_MODE, tp->rx_mode);
6929 udelay(10);
6930
6931 if (tp->link_config.phy_is_low_power) {
6932 tp->link_config.phy_is_low_power = 0;
6933 tp->link_config.speed = tp->link_config.orig_speed;
6934 tp->link_config.duplex = tp->link_config.orig_duplex;
6935 tp->link_config.autoneg = tp->link_config.orig_autoneg;
6936 }
6937
6938 tp->mi_mode = MAC_MI_MODE_BASE;
6939 tw32_f(MAC_MI_MODE, tp->mi_mode);
6940 udelay(80);
6941
6942 tw32(MAC_LED_CTRL, tp->led_ctrl);
6943
6944 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Michael Chanc94e3942005-09-27 12:12:42 -07006945 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
6947 udelay(10);
6948 }
6949 tw32_f(MAC_RX_MODE, tp->rx_mode);
6950 udelay(10);
6951
6952 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
6953 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
6954 !(tp->tg3_flags2 & TG3_FLG2_SERDES_PREEMPHASIS)) {
6955 /* Set drive transmission level to 1.2V */
6956 /* only if the signal pre-emphasis bit is not set */
6957 val = tr32(MAC_SERDES_CFG);
6958 val &= 0xfffff000;
6959 val |= 0x880;
6960 tw32(MAC_SERDES_CFG, val);
6961 }
6962 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
6963 tw32(MAC_SERDES_CFG, 0x616000);
6964 }
6965
6966 /* Prevent chip from dropping frames when flow control
6967 * is enabled.
6968 */
6969 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, 2);
6970
6971 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
6972 (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
6973 /* Use hardware link auto-negotiation */
6974 tp->tg3_flags2 |= TG3_FLG2_HW_AUTONEG;
6975 }
6976
Michael Chand4d2c552006-03-20 17:47:20 -08006977 if ((tp->tg3_flags2 & TG3_FLG2_MII_SERDES) &&
6978 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
6979 u32 tmp;
6980
6981 tmp = tr32(SERDES_RX_CTRL);
6982 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
6983 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
6984 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
6985 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
6986 }
6987
Michael Chan36da4d82006-11-03 01:01:03 -08006988 err = tg3_setup_phy(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989 if (err)
6990 return err;
6991
Michael Chan715116a2006-09-27 16:09:25 -07006992 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
6993 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994 u32 tmp;
6995
6996 /* Clear CRC stats. */
Michael Chan569a5df2007-02-13 12:18:15 -08006997 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
6998 tg3_writephy(tp, MII_TG3_TEST1,
6999 tmp | MII_TG3_TEST1_CRC_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000 tg3_readphy(tp, 0x14, &tmp);
7001 }
7002 }
7003
7004 __tg3_set_rx_mode(tp->dev);
7005
7006 /* Initialize receive rules. */
7007 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
7008 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
7009 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
7010 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
7011
Michael Chan4cf78e42005-07-25 12:29:19 -07007012 if ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
Michael Chana4e2b342005-10-26 15:46:52 -07007013 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007014 limit = 8;
7015 else
7016 limit = 16;
7017 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
7018 limit -= 4;
7019 switch (limit) {
7020 case 16:
7021 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
7022 case 15:
7023 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
7024 case 14:
7025 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
7026 case 13:
7027 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
7028 case 12:
7029 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
7030 case 11:
7031 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
7032 case 10:
7033 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
7034 case 9:
7035 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
7036 case 8:
7037 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
7038 case 7:
7039 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
7040 case 6:
7041 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
7042 case 5:
7043 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
7044 case 4:
7045 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
7046 case 3:
7047 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
7048 case 2:
7049 case 1:
7050
7051 default:
7052 break;
7053 };
7054
Matt Carlson9ce768e2007-10-11 19:49:11 -07007055 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
7056 /* Write our heartbeat update interval to APE. */
7057 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
7058 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07007059
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
7061
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062 return 0;
7063}
7064
7065/* Called at device open time to get the chip ready for
7066 * packet processing. Invoked with tp->lock held.
7067 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007068static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069{
7070 int err;
7071
7072 /* Force the chip into D0. */
Michael Chanbc1c7562006-03-20 17:48:03 -08007073 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007074 if (err)
7075 goto out;
7076
7077 tg3_switch_clocks(tp);
7078
7079 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
7080
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007081 err = tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082
7083out:
7084 return err;
7085}
7086
7087#define TG3_STAT_ADD32(PSTAT, REG) \
7088do { u32 __val = tr32(REG); \
7089 (PSTAT)->low += __val; \
7090 if ((PSTAT)->low < __val) \
7091 (PSTAT)->high += 1; \
7092} while (0)
7093
7094static void tg3_periodic_fetch_stats(struct tg3 *tp)
7095{
7096 struct tg3_hw_stats *sp = tp->hw_stats;
7097
7098 if (!netif_carrier_ok(tp->dev))
7099 return;
7100
7101 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
7102 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
7103 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
7104 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
7105 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
7106 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
7107 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
7108 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
7109 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
7110 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
7111 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
7112 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
7113 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
7114
7115 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
7116 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
7117 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
7118 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
7119 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
7120 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
7121 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
7122 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
7123 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
7124 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
7125 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
7126 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
7127 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
7128 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07007129
7130 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
7131 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
7132 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133}
7134
7135static void tg3_timer(unsigned long __opaque)
7136{
7137 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138
Michael Chanf475f162006-03-27 23:20:14 -08007139 if (tp->irq_sync)
7140 goto restart_timer;
7141
David S. Millerf47c11e2005-06-24 20:18:35 -07007142 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007143
David S. Millerfac9b832005-05-18 22:46:34 -07007144 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
7145 /* All of this garbage is because when using non-tagged
7146 * IRQ status the mailbox/status_block protocol the chip
7147 * uses with the cpu is race prone.
7148 */
7149 if (tp->hw_status->status & SD_STATUS_UPDATED) {
7150 tw32(GRC_LOCAL_CTRL,
7151 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
7152 } else {
7153 tw32(HOSTCC_MODE, tp->coalesce_mode |
7154 (HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW));
7155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156
David S. Millerfac9b832005-05-18 22:46:34 -07007157 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
7158 tp->tg3_flags2 |= TG3_FLG2_RESTART_TIMER;
David S. Millerf47c11e2005-06-24 20:18:35 -07007159 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07007160 schedule_work(&tp->reset_task);
7161 return;
7162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163 }
7164
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165 /* This part only runs once per second. */
7166 if (!--tp->timer_counter) {
David S. Millerfac9b832005-05-18 22:46:34 -07007167 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
7168 tg3_periodic_fetch_stats(tp);
7169
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
7171 u32 mac_stat;
7172 int phy_event;
7173
7174 mac_stat = tr32(MAC_STATUS);
7175
7176 phy_event = 0;
7177 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) {
7178 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
7179 phy_event = 1;
7180 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
7181 phy_event = 1;
7182
7183 if (phy_event)
7184 tg3_setup_phy(tp, 0);
7185 } else if (tp->tg3_flags & TG3_FLAG_POLL_SERDES) {
7186 u32 mac_stat = tr32(MAC_STATUS);
7187 int need_setup = 0;
7188
7189 if (netif_carrier_ok(tp->dev) &&
7190 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
7191 need_setup = 1;
7192 }
7193 if (! netif_carrier_ok(tp->dev) &&
7194 (mac_stat & (MAC_STATUS_PCS_SYNCED |
7195 MAC_STATUS_SIGNAL_DET))) {
7196 need_setup = 1;
7197 }
7198 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07007199 if (!tp->serdes_counter) {
7200 tw32_f(MAC_MODE,
7201 (tp->mac_mode &
7202 ~MAC_MODE_PORT_MODE_MASK));
7203 udelay(40);
7204 tw32_f(MAC_MODE, tp->mac_mode);
7205 udelay(40);
7206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207 tg3_setup_phy(tp, 0);
7208 }
Michael Chan747e8f82005-07-25 12:33:22 -07007209 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
7210 tg3_serdes_parallel_detect(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211
7212 tp->timer_counter = tp->timer_multiplier;
7213 }
7214
Michael Chan130b8e42006-09-27 16:00:40 -07007215 /* Heartbeat is only sent once every 2 seconds.
7216 *
7217 * The heartbeat is to tell the ASF firmware that the host
7218 * driver is still alive. In the event that the OS crashes,
7219 * ASF needs to reset the hardware to free up the FIFO space
7220 * that may be filled with rx packets destined for the host.
7221 * If the FIFO is full, ASF will no longer function properly.
7222 *
7223 * Unintended resets have been reported on real time kernels
7224 * where the timer doesn't run on time. Netpoll will also have
7225 * same problem.
7226 *
7227 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
7228 * to check the ring condition when the heartbeat is expiring
7229 * before doing the reset. This will prevent most unintended
7230 * resets.
7231 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007232 if (!--tp->asf_counter) {
7233 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
7234 u32 val;
7235
Michael Chanbbadf502006-04-06 21:46:34 -07007236 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07007237 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07007238 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Michael Chan28fbef72005-10-26 15:48:35 -07007239 /* 5 seconds timeout */
Michael Chanbbadf502006-04-06 21:46:34 -07007240 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007241 val = tr32(GRC_RX_CPU_EVENT);
7242 val |= (1 << 14);
7243 tw32(GRC_RX_CPU_EVENT, val);
7244 }
7245 tp->asf_counter = tp->asf_multiplier;
7246 }
7247
David S. Millerf47c11e2005-06-24 20:18:35 -07007248 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249
Michael Chanf475f162006-03-27 23:20:14 -08007250restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007251 tp->timer.expires = jiffies + tp->timer_offset;
7252 add_timer(&tp->timer);
7253}
7254
Adrian Bunk81789ef2006-03-20 23:00:14 -08007255static int tg3_request_irq(struct tg3 *tp)
Michael Chanfcfa0a32006-03-20 22:28:41 -08007256{
David Howells7d12e782006-10-05 14:55:46 +01007257 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007258 unsigned long flags;
7259 struct net_device *dev = tp->dev;
7260
7261 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
7262 fn = tg3_msi;
7263 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
7264 fn = tg3_msi_1shot;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07007265 flags = IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007266 } else {
7267 fn = tg3_interrupt;
7268 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
7269 fn = tg3_interrupt_tagged;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07007270 flags = IRQF_SHARED | IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007271 }
7272 return (request_irq(tp->pdev->irq, fn, flags, dev->name, dev));
7273}
7274
Michael Chan79381092005-04-21 17:13:59 -07007275static int tg3_test_interrupt(struct tg3 *tp)
7276{
7277 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07007278 int err, i, intr_ok = 0;
Michael Chan79381092005-04-21 17:13:59 -07007279
Michael Chand4bc3922005-05-29 14:59:20 -07007280 if (!netif_running(dev))
7281 return -ENODEV;
7282
Michael Chan79381092005-04-21 17:13:59 -07007283 tg3_disable_ints(tp);
7284
7285 free_irq(tp->pdev->irq, dev);
7286
7287 err = request_irq(tp->pdev->irq, tg3_test_isr,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07007288 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, dev);
Michael Chan79381092005-04-21 17:13:59 -07007289 if (err)
7290 return err;
7291
Michael Chan38f38432005-09-05 17:53:32 -07007292 tp->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07007293 tg3_enable_ints(tp);
7294
7295 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
7296 HOSTCC_MODE_NOW);
7297
7298 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07007299 u32 int_mbox, misc_host_ctrl;
7300
Michael Chan09ee9292005-08-09 20:17:00 -07007301 int_mbox = tr32_mailbox(MAILBOX_INTERRUPT_0 +
7302 TG3_64BIT_REG_LOW);
Michael Chanb16250e2006-09-27 16:10:14 -07007303 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
7304
7305 if ((int_mbox != 0) ||
7306 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
7307 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07007308 break;
Michael Chanb16250e2006-09-27 16:10:14 -07007309 }
7310
Michael Chan79381092005-04-21 17:13:59 -07007311 msleep(10);
7312 }
7313
7314 tg3_disable_ints(tp);
7315
7316 free_irq(tp->pdev->irq, dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007317
Michael Chanfcfa0a32006-03-20 22:28:41 -08007318 err = tg3_request_irq(tp);
Michael Chan79381092005-04-21 17:13:59 -07007319
7320 if (err)
7321 return err;
7322
Michael Chanb16250e2006-09-27 16:10:14 -07007323 if (intr_ok)
Michael Chan79381092005-04-21 17:13:59 -07007324 return 0;
7325
7326 return -EIO;
7327}
7328
7329/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
7330 * successfully restored
7331 */
7332static int tg3_test_msi(struct tg3 *tp)
7333{
7334 struct net_device *dev = tp->dev;
7335 int err;
7336 u16 pci_cmd;
7337
7338 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSI))
7339 return 0;
7340
7341 /* Turn off SERR reporting in case MSI terminates with Master
7342 * Abort.
7343 */
7344 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
7345 pci_write_config_word(tp->pdev, PCI_COMMAND,
7346 pci_cmd & ~PCI_COMMAND_SERR);
7347
7348 err = tg3_test_interrupt(tp);
7349
7350 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
7351
7352 if (!err)
7353 return 0;
7354
7355 /* other failures */
7356 if (err != -EIO)
7357 return err;
7358
7359 /* MSI test failed, go back to INTx mode */
7360 printk(KERN_WARNING PFX "%s: No interrupt was generated using MSI, "
7361 "switching to INTx mode. Please report this failure to "
7362 "the PCI maintainer and include system chipset information.\n",
7363 tp->dev->name);
7364
7365 free_irq(tp->pdev->irq, dev);
7366 pci_disable_msi(tp->pdev);
7367
7368 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
7369
Michael Chanfcfa0a32006-03-20 22:28:41 -08007370 err = tg3_request_irq(tp);
Michael Chan79381092005-04-21 17:13:59 -07007371 if (err)
7372 return err;
7373
7374 /* Need to reset the chip because the MSI cycle may have terminated
7375 * with Master Abort.
7376 */
David S. Millerf47c11e2005-06-24 20:18:35 -07007377 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07007378
Michael Chan944d9802005-05-29 14:57:48 -07007379 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007380 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07007381
David S. Millerf47c11e2005-06-24 20:18:35 -07007382 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07007383
7384 if (err)
7385 free_irq(tp->pdev->irq, dev);
7386
7387 return err;
7388}
7389
Linus Torvalds1da177e2005-04-16 15:20:36 -07007390static int tg3_open(struct net_device *dev)
7391{
7392 struct tg3 *tp = netdev_priv(dev);
7393 int err;
7394
Michael Chanc49a1562006-12-17 17:07:29 -08007395 netif_carrier_off(tp->dev);
7396
David S. Millerf47c11e2005-06-24 20:18:35 -07007397 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007398
Michael Chanbc1c7562006-03-20 17:48:03 -08007399 err = tg3_set_power_state(tp, PCI_D0);
Ira W. Snyder12862082006-11-21 17:44:31 -08007400 if (err) {
7401 tg3_full_unlock(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -08007402 return err;
Ira W. Snyder12862082006-11-21 17:44:31 -08007403 }
Michael Chanbc1c7562006-03-20 17:48:03 -08007404
Linus Torvalds1da177e2005-04-16 15:20:36 -07007405 tg3_disable_ints(tp);
7406 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
7407
David S. Millerf47c11e2005-06-24 20:18:35 -07007408 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007409
7410 /* The placement of this call is tied
7411 * to the setup and use of Host TX descriptors.
7412 */
7413 err = tg3_alloc_consistent(tp);
7414 if (err)
7415 return err;
7416
Michael Chan7544b092007-05-05 13:08:32 -07007417 if (tp->tg3_flags & TG3_FLAG_SUPPORT_MSI) {
David S. Millerfac9b832005-05-18 22:46:34 -07007418 /* All MSI supporting chips should support tagged
7419 * status. Assert that this is the case.
7420 */
7421 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
7422 printk(KERN_WARNING PFX "%s: MSI without TAGGED? "
7423 "Not using MSI.\n", tp->dev->name);
7424 } else if (pci_enable_msi(tp->pdev) == 0) {
Michael Chan88b06bc2005-04-21 17:13:25 -07007425 u32 msi_mode;
7426
7427 msi_mode = tr32(MSGINT_MODE);
7428 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
7429 tp->tg3_flags2 |= TG3_FLG2_USING_MSI;
7430 }
7431 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08007432 err = tg3_request_irq(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433
7434 if (err) {
Michael Chan88b06bc2005-04-21 17:13:25 -07007435 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
7436 pci_disable_msi(tp->pdev);
7437 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
7438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007439 tg3_free_consistent(tp);
7440 return err;
7441 }
7442
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007443 napi_enable(&tp->napi);
7444
David S. Millerf47c11e2005-06-24 20:18:35 -07007445 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007447 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07007449 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450 tg3_free_rings(tp);
7451 } else {
David S. Millerfac9b832005-05-18 22:46:34 -07007452 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
7453 tp->timer_offset = HZ;
7454 else
7455 tp->timer_offset = HZ / 10;
7456
7457 BUG_ON(tp->timer_offset > HZ);
7458 tp->timer_counter = tp->timer_multiplier =
7459 (HZ / tp->timer_offset);
7460 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07007461 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007462
7463 init_timer(&tp->timer);
7464 tp->timer.expires = jiffies + tp->timer_offset;
7465 tp->timer.data = (unsigned long) tp;
7466 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467 }
7468
David S. Millerf47c11e2005-06-24 20:18:35 -07007469 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470
7471 if (err) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007472 napi_disable(&tp->napi);
Michael Chan88b06bc2005-04-21 17:13:25 -07007473 free_irq(tp->pdev->irq, dev);
7474 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
7475 pci_disable_msi(tp->pdev);
7476 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
7477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478 tg3_free_consistent(tp);
7479 return err;
7480 }
7481
Michael Chan79381092005-04-21 17:13:59 -07007482 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
7483 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07007484
Michael Chan79381092005-04-21 17:13:59 -07007485 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07007486 tg3_full_lock(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07007487
7488 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
7489 pci_disable_msi(tp->pdev);
7490 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
7491 }
Michael Chan944d9802005-05-29 14:57:48 -07007492 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07007493 tg3_free_rings(tp);
7494 tg3_free_consistent(tp);
7495
David S. Millerf47c11e2005-06-24 20:18:35 -07007496 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07007497
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007498 napi_disable(&tp->napi);
7499
Michael Chan79381092005-04-21 17:13:59 -07007500 return err;
7501 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08007502
7503 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
7504 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI) {
Michael Chanb5d37722006-09-27 16:06:21 -07007505 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007506
Michael Chanb5d37722006-09-27 16:06:21 -07007507 tw32(PCIE_TRANSACTION_CFG,
7508 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007509 }
7510 }
Michael Chan79381092005-04-21 17:13:59 -07007511 }
7512
David S. Millerf47c11e2005-06-24 20:18:35 -07007513 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007514
Michael Chan79381092005-04-21 17:13:59 -07007515 add_timer(&tp->timer);
7516 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007517 tg3_enable_ints(tp);
7518
David S. Millerf47c11e2005-06-24 20:18:35 -07007519 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007520
7521 netif_start_queue(dev);
7522
7523 return 0;
7524}
7525
7526#if 0
7527/*static*/ void tg3_dump_state(struct tg3 *tp)
7528{
7529 u32 val32, val32_2, val32_3, val32_4, val32_5;
7530 u16 val16;
7531 int i;
7532
7533 pci_read_config_word(tp->pdev, PCI_STATUS, &val16);
7534 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE, &val32);
7535 printk("DEBUG: PCI status [%04x] TG3PCI state[%08x]\n",
7536 val16, val32);
7537
7538 /* MAC block */
7539 printk("DEBUG: MAC_MODE[%08x] MAC_STATUS[%08x]\n",
7540 tr32(MAC_MODE), tr32(MAC_STATUS));
7541 printk(" MAC_EVENT[%08x] MAC_LED_CTRL[%08x]\n",
7542 tr32(MAC_EVENT), tr32(MAC_LED_CTRL));
7543 printk("DEBUG: MAC_TX_MODE[%08x] MAC_TX_STATUS[%08x]\n",
7544 tr32(MAC_TX_MODE), tr32(MAC_TX_STATUS));
7545 printk(" MAC_RX_MODE[%08x] MAC_RX_STATUS[%08x]\n",
7546 tr32(MAC_RX_MODE), tr32(MAC_RX_STATUS));
7547
7548 /* Send data initiator control block */
7549 printk("DEBUG: SNDDATAI_MODE[%08x] SNDDATAI_STATUS[%08x]\n",
7550 tr32(SNDDATAI_MODE), tr32(SNDDATAI_STATUS));
7551 printk(" SNDDATAI_STATSCTRL[%08x]\n",
7552 tr32(SNDDATAI_STATSCTRL));
7553
7554 /* Send data completion control block */
7555 printk("DEBUG: SNDDATAC_MODE[%08x]\n", tr32(SNDDATAC_MODE));
7556
7557 /* Send BD ring selector block */
7558 printk("DEBUG: SNDBDS_MODE[%08x] SNDBDS_STATUS[%08x]\n",
7559 tr32(SNDBDS_MODE), tr32(SNDBDS_STATUS));
7560
7561 /* Send BD initiator control block */
7562 printk("DEBUG: SNDBDI_MODE[%08x] SNDBDI_STATUS[%08x]\n",
7563 tr32(SNDBDI_MODE), tr32(SNDBDI_STATUS));
7564
7565 /* Send BD completion control block */
7566 printk("DEBUG: SNDBDC_MODE[%08x]\n", tr32(SNDBDC_MODE));
7567
7568 /* Receive list placement control block */
7569 printk("DEBUG: RCVLPC_MODE[%08x] RCVLPC_STATUS[%08x]\n",
7570 tr32(RCVLPC_MODE), tr32(RCVLPC_STATUS));
7571 printk(" RCVLPC_STATSCTRL[%08x]\n",
7572 tr32(RCVLPC_STATSCTRL));
7573
7574 /* Receive data and receive BD initiator control block */
7575 printk("DEBUG: RCVDBDI_MODE[%08x] RCVDBDI_STATUS[%08x]\n",
7576 tr32(RCVDBDI_MODE), tr32(RCVDBDI_STATUS));
7577
7578 /* Receive data completion control block */
7579 printk("DEBUG: RCVDCC_MODE[%08x]\n",
7580 tr32(RCVDCC_MODE));
7581
7582 /* Receive BD initiator control block */
7583 printk("DEBUG: RCVBDI_MODE[%08x] RCVBDI_STATUS[%08x]\n",
7584 tr32(RCVBDI_MODE), tr32(RCVBDI_STATUS));
7585
7586 /* Receive BD completion control block */
7587 printk("DEBUG: RCVCC_MODE[%08x] RCVCC_STATUS[%08x]\n",
7588 tr32(RCVCC_MODE), tr32(RCVCC_STATUS));
7589
7590 /* Receive list selector control block */
7591 printk("DEBUG: RCVLSC_MODE[%08x] RCVLSC_STATUS[%08x]\n",
7592 tr32(RCVLSC_MODE), tr32(RCVLSC_STATUS));
7593
7594 /* Mbuf cluster free block */
7595 printk("DEBUG: MBFREE_MODE[%08x] MBFREE_STATUS[%08x]\n",
7596 tr32(MBFREE_MODE), tr32(MBFREE_STATUS));
7597
7598 /* Host coalescing control block */
7599 printk("DEBUG: HOSTCC_MODE[%08x] HOSTCC_STATUS[%08x]\n",
7600 tr32(HOSTCC_MODE), tr32(HOSTCC_STATUS));
7601 printk("DEBUG: HOSTCC_STATS_BLK_HOST_ADDR[%08x%08x]\n",
7602 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
7603 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
7604 printk("DEBUG: HOSTCC_STATUS_BLK_HOST_ADDR[%08x%08x]\n",
7605 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
7606 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
7607 printk("DEBUG: HOSTCC_STATS_BLK_NIC_ADDR[%08x]\n",
7608 tr32(HOSTCC_STATS_BLK_NIC_ADDR));
7609 printk("DEBUG: HOSTCC_STATUS_BLK_NIC_ADDR[%08x]\n",
7610 tr32(HOSTCC_STATUS_BLK_NIC_ADDR));
7611
7612 /* Memory arbiter control block */
7613 printk("DEBUG: MEMARB_MODE[%08x] MEMARB_STATUS[%08x]\n",
7614 tr32(MEMARB_MODE), tr32(MEMARB_STATUS));
7615
7616 /* Buffer manager control block */
7617 printk("DEBUG: BUFMGR_MODE[%08x] BUFMGR_STATUS[%08x]\n",
7618 tr32(BUFMGR_MODE), tr32(BUFMGR_STATUS));
7619 printk("DEBUG: BUFMGR_MB_POOL_ADDR[%08x] BUFMGR_MB_POOL_SIZE[%08x]\n",
7620 tr32(BUFMGR_MB_POOL_ADDR), tr32(BUFMGR_MB_POOL_SIZE));
7621 printk("DEBUG: BUFMGR_DMA_DESC_POOL_ADDR[%08x] "
7622 "BUFMGR_DMA_DESC_POOL_SIZE[%08x]\n",
7623 tr32(BUFMGR_DMA_DESC_POOL_ADDR),
7624 tr32(BUFMGR_DMA_DESC_POOL_SIZE));
7625
7626 /* Read DMA control block */
7627 printk("DEBUG: RDMAC_MODE[%08x] RDMAC_STATUS[%08x]\n",
7628 tr32(RDMAC_MODE), tr32(RDMAC_STATUS));
7629
7630 /* Write DMA control block */
7631 printk("DEBUG: WDMAC_MODE[%08x] WDMAC_STATUS[%08x]\n",
7632 tr32(WDMAC_MODE), tr32(WDMAC_STATUS));
7633
7634 /* DMA completion block */
7635 printk("DEBUG: DMAC_MODE[%08x]\n",
7636 tr32(DMAC_MODE));
7637
7638 /* GRC block */
7639 printk("DEBUG: GRC_MODE[%08x] GRC_MISC_CFG[%08x]\n",
7640 tr32(GRC_MODE), tr32(GRC_MISC_CFG));
7641 printk("DEBUG: GRC_LOCAL_CTRL[%08x]\n",
7642 tr32(GRC_LOCAL_CTRL));
7643
7644 /* TG3_BDINFOs */
7645 printk("DEBUG: RCVDBDI_JUMBO_BD[%08x%08x:%08x:%08x]\n",
7646 tr32(RCVDBDI_JUMBO_BD + 0x0),
7647 tr32(RCVDBDI_JUMBO_BD + 0x4),
7648 tr32(RCVDBDI_JUMBO_BD + 0x8),
7649 tr32(RCVDBDI_JUMBO_BD + 0xc));
7650 printk("DEBUG: RCVDBDI_STD_BD[%08x%08x:%08x:%08x]\n",
7651 tr32(RCVDBDI_STD_BD + 0x0),
7652 tr32(RCVDBDI_STD_BD + 0x4),
7653 tr32(RCVDBDI_STD_BD + 0x8),
7654 tr32(RCVDBDI_STD_BD + 0xc));
7655 printk("DEBUG: RCVDBDI_MINI_BD[%08x%08x:%08x:%08x]\n",
7656 tr32(RCVDBDI_MINI_BD + 0x0),
7657 tr32(RCVDBDI_MINI_BD + 0x4),
7658 tr32(RCVDBDI_MINI_BD + 0x8),
7659 tr32(RCVDBDI_MINI_BD + 0xc));
7660
7661 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x0, &val32);
7662 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x4, &val32_2);
7663 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x8, &val32_3);
7664 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0xc, &val32_4);
7665 printk("DEBUG: SRAM_SEND_RCB_0[%08x%08x:%08x:%08x]\n",
7666 val32, val32_2, val32_3, val32_4);
7667
7668 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x0, &val32);
7669 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x4, &val32_2);
7670 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x8, &val32_3);
7671 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0xc, &val32_4);
7672 printk("DEBUG: SRAM_RCV_RET_RCB_0[%08x%08x:%08x:%08x]\n",
7673 val32, val32_2, val32_3, val32_4);
7674
7675 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x0, &val32);
7676 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x4, &val32_2);
7677 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x8, &val32_3);
7678 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0xc, &val32_4);
7679 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x10, &val32_5);
7680 printk("DEBUG: SRAM_STATUS_BLK[%08x:%08x:%08x:%08x:%08x]\n",
7681 val32, val32_2, val32_3, val32_4, val32_5);
7682
7683 /* SW status block */
7684 printk("DEBUG: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
7685 tp->hw_status->status,
7686 tp->hw_status->status_tag,
7687 tp->hw_status->rx_jumbo_consumer,
7688 tp->hw_status->rx_consumer,
7689 tp->hw_status->rx_mini_consumer,
7690 tp->hw_status->idx[0].rx_producer,
7691 tp->hw_status->idx[0].tx_consumer);
7692
7693 /* SW statistics block */
7694 printk("DEBUG: Host statistics block [%08x:%08x:%08x:%08x]\n",
7695 ((u32 *)tp->hw_stats)[0],
7696 ((u32 *)tp->hw_stats)[1],
7697 ((u32 *)tp->hw_stats)[2],
7698 ((u32 *)tp->hw_stats)[3]);
7699
7700 /* Mailboxes */
7701 printk("DEBUG: SNDHOST_PROD[%08x%08x] SNDNIC_PROD[%08x%08x]\n",
Michael Chan09ee9292005-08-09 20:17:00 -07007702 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x0),
7703 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x4),
7704 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x0),
7705 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x4));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706
7707 /* NIC side send descriptors. */
7708 for (i = 0; i < 6; i++) {
7709 unsigned long txd;
7710
7711 txd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_TX_BUFFER_DESC
7712 + (i * sizeof(struct tg3_tx_buffer_desc));
7713 printk("DEBUG: NIC TXD(%d)[%08x:%08x:%08x:%08x]\n",
7714 i,
7715 readl(txd + 0x0), readl(txd + 0x4),
7716 readl(txd + 0x8), readl(txd + 0xc));
7717 }
7718
7719 /* NIC side RX descriptors. */
7720 for (i = 0; i < 6; i++) {
7721 unsigned long rxd;
7722
7723 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_BUFFER_DESC
7724 + (i * sizeof(struct tg3_rx_buffer_desc));
7725 printk("DEBUG: NIC RXD_STD(%d)[0][%08x:%08x:%08x:%08x]\n",
7726 i,
7727 readl(rxd + 0x0), readl(rxd + 0x4),
7728 readl(rxd + 0x8), readl(rxd + 0xc));
7729 rxd += (4 * sizeof(u32));
7730 printk("DEBUG: NIC RXD_STD(%d)[1][%08x:%08x:%08x:%08x]\n",
7731 i,
7732 readl(rxd + 0x0), readl(rxd + 0x4),
7733 readl(rxd + 0x8), readl(rxd + 0xc));
7734 }
7735
7736 for (i = 0; i < 6; i++) {
7737 unsigned long rxd;
7738
7739 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_JUMBO_BUFFER_DESC
7740 + (i * sizeof(struct tg3_rx_buffer_desc));
7741 printk("DEBUG: NIC RXD_JUMBO(%d)[0][%08x:%08x:%08x:%08x]\n",
7742 i,
7743 readl(rxd + 0x0), readl(rxd + 0x4),
7744 readl(rxd + 0x8), readl(rxd + 0xc));
7745 rxd += (4 * sizeof(u32));
7746 printk("DEBUG: NIC RXD_JUMBO(%d)[1][%08x:%08x:%08x:%08x]\n",
7747 i,
7748 readl(rxd + 0x0), readl(rxd + 0x4),
7749 readl(rxd + 0x8), readl(rxd + 0xc));
7750 }
7751}
7752#endif
7753
7754static struct net_device_stats *tg3_get_stats(struct net_device *);
7755static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
7756
7757static int tg3_close(struct net_device *dev)
7758{
7759 struct tg3 *tp = netdev_priv(dev);
7760
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007761 napi_disable(&tp->napi);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07007762 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08007763
Linus Torvalds1da177e2005-04-16 15:20:36 -07007764 netif_stop_queue(dev);
7765
7766 del_timer_sync(&tp->timer);
7767
David S. Millerf47c11e2005-06-24 20:18:35 -07007768 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769#if 0
7770 tg3_dump_state(tp);
7771#endif
7772
7773 tg3_disable_ints(tp);
7774
Michael Chan944d9802005-05-29 14:57:48 -07007775 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007776 tg3_free_rings(tp);
Michael Chan5cf64b82007-05-05 12:11:21 -07007777 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778
David S. Millerf47c11e2005-06-24 20:18:35 -07007779 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007780
Michael Chan88b06bc2005-04-21 17:13:25 -07007781 free_irq(tp->pdev->irq, dev);
7782 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
7783 pci_disable_msi(tp->pdev);
7784 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
7785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786
7787 memcpy(&tp->net_stats_prev, tg3_get_stats(tp->dev),
7788 sizeof(tp->net_stats_prev));
7789 memcpy(&tp->estats_prev, tg3_get_estats(tp),
7790 sizeof(tp->estats_prev));
7791
7792 tg3_free_consistent(tp);
7793
Michael Chanbc1c7562006-03-20 17:48:03 -08007794 tg3_set_power_state(tp, PCI_D3hot);
7795
7796 netif_carrier_off(tp->dev);
7797
Linus Torvalds1da177e2005-04-16 15:20:36 -07007798 return 0;
7799}
7800
7801static inline unsigned long get_stat64(tg3_stat64_t *val)
7802{
7803 unsigned long ret;
7804
7805#if (BITS_PER_LONG == 32)
7806 ret = val->low;
7807#else
7808 ret = ((u64)val->high << 32) | ((u64)val->low);
7809#endif
7810 return ret;
7811}
7812
7813static unsigned long calc_crc_errors(struct tg3 *tp)
7814{
7815 struct tg3_hw_stats *hw_stats = tp->hw_stats;
7816
7817 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
7818 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
7819 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820 u32 val;
7821
David S. Millerf47c11e2005-06-24 20:18:35 -07007822 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08007823 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
7824 tg3_writephy(tp, MII_TG3_TEST1,
7825 val | MII_TG3_TEST1_CRC_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826 tg3_readphy(tp, 0x14, &val);
7827 } else
7828 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007829 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830
7831 tp->phy_crc_errors += val;
7832
7833 return tp->phy_crc_errors;
7834 }
7835
7836 return get_stat64(&hw_stats->rx_fcs_errors);
7837}
7838
7839#define ESTAT_ADD(member) \
7840 estats->member = old_estats->member + \
7841 get_stat64(&hw_stats->member)
7842
7843static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
7844{
7845 struct tg3_ethtool_stats *estats = &tp->estats;
7846 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
7847 struct tg3_hw_stats *hw_stats = tp->hw_stats;
7848
7849 if (!hw_stats)
7850 return old_estats;
7851
7852 ESTAT_ADD(rx_octets);
7853 ESTAT_ADD(rx_fragments);
7854 ESTAT_ADD(rx_ucast_packets);
7855 ESTAT_ADD(rx_mcast_packets);
7856 ESTAT_ADD(rx_bcast_packets);
7857 ESTAT_ADD(rx_fcs_errors);
7858 ESTAT_ADD(rx_align_errors);
7859 ESTAT_ADD(rx_xon_pause_rcvd);
7860 ESTAT_ADD(rx_xoff_pause_rcvd);
7861 ESTAT_ADD(rx_mac_ctrl_rcvd);
7862 ESTAT_ADD(rx_xoff_entered);
7863 ESTAT_ADD(rx_frame_too_long_errors);
7864 ESTAT_ADD(rx_jabbers);
7865 ESTAT_ADD(rx_undersize_packets);
7866 ESTAT_ADD(rx_in_length_errors);
7867 ESTAT_ADD(rx_out_length_errors);
7868 ESTAT_ADD(rx_64_or_less_octet_packets);
7869 ESTAT_ADD(rx_65_to_127_octet_packets);
7870 ESTAT_ADD(rx_128_to_255_octet_packets);
7871 ESTAT_ADD(rx_256_to_511_octet_packets);
7872 ESTAT_ADD(rx_512_to_1023_octet_packets);
7873 ESTAT_ADD(rx_1024_to_1522_octet_packets);
7874 ESTAT_ADD(rx_1523_to_2047_octet_packets);
7875 ESTAT_ADD(rx_2048_to_4095_octet_packets);
7876 ESTAT_ADD(rx_4096_to_8191_octet_packets);
7877 ESTAT_ADD(rx_8192_to_9022_octet_packets);
7878
7879 ESTAT_ADD(tx_octets);
7880 ESTAT_ADD(tx_collisions);
7881 ESTAT_ADD(tx_xon_sent);
7882 ESTAT_ADD(tx_xoff_sent);
7883 ESTAT_ADD(tx_flow_control);
7884 ESTAT_ADD(tx_mac_errors);
7885 ESTAT_ADD(tx_single_collisions);
7886 ESTAT_ADD(tx_mult_collisions);
7887 ESTAT_ADD(tx_deferred);
7888 ESTAT_ADD(tx_excessive_collisions);
7889 ESTAT_ADD(tx_late_collisions);
7890 ESTAT_ADD(tx_collide_2times);
7891 ESTAT_ADD(tx_collide_3times);
7892 ESTAT_ADD(tx_collide_4times);
7893 ESTAT_ADD(tx_collide_5times);
7894 ESTAT_ADD(tx_collide_6times);
7895 ESTAT_ADD(tx_collide_7times);
7896 ESTAT_ADD(tx_collide_8times);
7897 ESTAT_ADD(tx_collide_9times);
7898 ESTAT_ADD(tx_collide_10times);
7899 ESTAT_ADD(tx_collide_11times);
7900 ESTAT_ADD(tx_collide_12times);
7901 ESTAT_ADD(tx_collide_13times);
7902 ESTAT_ADD(tx_collide_14times);
7903 ESTAT_ADD(tx_collide_15times);
7904 ESTAT_ADD(tx_ucast_packets);
7905 ESTAT_ADD(tx_mcast_packets);
7906 ESTAT_ADD(tx_bcast_packets);
7907 ESTAT_ADD(tx_carrier_sense_errors);
7908 ESTAT_ADD(tx_discards);
7909 ESTAT_ADD(tx_errors);
7910
7911 ESTAT_ADD(dma_writeq_full);
7912 ESTAT_ADD(dma_write_prioq_full);
7913 ESTAT_ADD(rxbds_empty);
7914 ESTAT_ADD(rx_discards);
7915 ESTAT_ADD(rx_errors);
7916 ESTAT_ADD(rx_threshold_hit);
7917
7918 ESTAT_ADD(dma_readq_full);
7919 ESTAT_ADD(dma_read_prioq_full);
7920 ESTAT_ADD(tx_comp_queue_full);
7921
7922 ESTAT_ADD(ring_set_send_prod_index);
7923 ESTAT_ADD(ring_status_update);
7924 ESTAT_ADD(nic_irqs);
7925 ESTAT_ADD(nic_avoided_irqs);
7926 ESTAT_ADD(nic_tx_threshold_hit);
7927
7928 return estats;
7929}
7930
7931static struct net_device_stats *tg3_get_stats(struct net_device *dev)
7932{
7933 struct tg3 *tp = netdev_priv(dev);
7934 struct net_device_stats *stats = &tp->net_stats;
7935 struct net_device_stats *old_stats = &tp->net_stats_prev;
7936 struct tg3_hw_stats *hw_stats = tp->hw_stats;
7937
7938 if (!hw_stats)
7939 return old_stats;
7940
7941 stats->rx_packets = old_stats->rx_packets +
7942 get_stat64(&hw_stats->rx_ucast_packets) +
7943 get_stat64(&hw_stats->rx_mcast_packets) +
7944 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007945
Linus Torvalds1da177e2005-04-16 15:20:36 -07007946 stats->tx_packets = old_stats->tx_packets +
7947 get_stat64(&hw_stats->tx_ucast_packets) +
7948 get_stat64(&hw_stats->tx_mcast_packets) +
7949 get_stat64(&hw_stats->tx_bcast_packets);
7950
7951 stats->rx_bytes = old_stats->rx_bytes +
7952 get_stat64(&hw_stats->rx_octets);
7953 stats->tx_bytes = old_stats->tx_bytes +
7954 get_stat64(&hw_stats->tx_octets);
7955
7956 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07007957 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007958 stats->tx_errors = old_stats->tx_errors +
7959 get_stat64(&hw_stats->tx_errors) +
7960 get_stat64(&hw_stats->tx_mac_errors) +
7961 get_stat64(&hw_stats->tx_carrier_sense_errors) +
7962 get_stat64(&hw_stats->tx_discards);
7963
7964 stats->multicast = old_stats->multicast +
7965 get_stat64(&hw_stats->rx_mcast_packets);
7966 stats->collisions = old_stats->collisions +
7967 get_stat64(&hw_stats->tx_collisions);
7968
7969 stats->rx_length_errors = old_stats->rx_length_errors +
7970 get_stat64(&hw_stats->rx_frame_too_long_errors) +
7971 get_stat64(&hw_stats->rx_undersize_packets);
7972
7973 stats->rx_over_errors = old_stats->rx_over_errors +
7974 get_stat64(&hw_stats->rxbds_empty);
7975 stats->rx_frame_errors = old_stats->rx_frame_errors +
7976 get_stat64(&hw_stats->rx_align_errors);
7977 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
7978 get_stat64(&hw_stats->tx_discards);
7979 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
7980 get_stat64(&hw_stats->tx_carrier_sense_errors);
7981
7982 stats->rx_crc_errors = old_stats->rx_crc_errors +
7983 calc_crc_errors(tp);
7984
John W. Linville4f63b872005-09-12 14:43:18 -07007985 stats->rx_missed_errors = old_stats->rx_missed_errors +
7986 get_stat64(&hw_stats->rx_discards);
7987
Linus Torvalds1da177e2005-04-16 15:20:36 -07007988 return stats;
7989}
7990
7991static inline u32 calc_crc(unsigned char *buf, int len)
7992{
7993 u32 reg;
7994 u32 tmp;
7995 int j, k;
7996
7997 reg = 0xffffffff;
7998
7999 for (j = 0; j < len; j++) {
8000 reg ^= buf[j];
8001
8002 for (k = 0; k < 8; k++) {
8003 tmp = reg & 0x01;
8004
8005 reg >>= 1;
8006
8007 if (tmp) {
8008 reg ^= 0xedb88320;
8009 }
8010 }
8011 }
8012
8013 return ~reg;
8014}
8015
8016static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
8017{
8018 /* accept or reject all multicast frames */
8019 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
8020 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
8021 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
8022 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
8023}
8024
8025static void __tg3_set_rx_mode(struct net_device *dev)
8026{
8027 struct tg3 *tp = netdev_priv(dev);
8028 u32 rx_mode;
8029
8030 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
8031 RX_MODE_KEEP_VLAN_TAG);
8032
8033 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
8034 * flag clear.
8035 */
8036#if TG3_VLAN_TAG_USED
8037 if (!tp->vlgrp &&
8038 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
8039 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
8040#else
8041 /* By definition, VLAN is disabled always in this
8042 * case.
8043 */
8044 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
8045 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
8046#endif
8047
8048 if (dev->flags & IFF_PROMISC) {
8049 /* Promiscuous mode. */
8050 rx_mode |= RX_MODE_PROMISC;
8051 } else if (dev->flags & IFF_ALLMULTI) {
8052 /* Accept all multicast. */
8053 tg3_set_multi (tp, 1);
8054 } else if (dev->mc_count < 1) {
8055 /* Reject all multicast. */
8056 tg3_set_multi (tp, 0);
8057 } else {
8058 /* Accept one or more multicast(s). */
8059 struct dev_mc_list *mclist;
8060 unsigned int i;
8061 u32 mc_filter[4] = { 0, };
8062 u32 regidx;
8063 u32 bit;
8064 u32 crc;
8065
8066 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
8067 i++, mclist = mclist->next) {
8068
8069 crc = calc_crc (mclist->dmi_addr, ETH_ALEN);
8070 bit = ~crc & 0x7f;
8071 regidx = (bit & 0x60) >> 5;
8072 bit &= 0x1f;
8073 mc_filter[regidx] |= (1 << bit);
8074 }
8075
8076 tw32(MAC_HASH_REG_0, mc_filter[0]);
8077 tw32(MAC_HASH_REG_1, mc_filter[1]);
8078 tw32(MAC_HASH_REG_2, mc_filter[2]);
8079 tw32(MAC_HASH_REG_3, mc_filter[3]);
8080 }
8081
8082 if (rx_mode != tp->rx_mode) {
8083 tp->rx_mode = rx_mode;
8084 tw32_f(MAC_RX_MODE, rx_mode);
8085 udelay(10);
8086 }
8087}
8088
8089static void tg3_set_rx_mode(struct net_device *dev)
8090{
8091 struct tg3 *tp = netdev_priv(dev);
8092
Michael Chane75f7c92006-03-20 21:33:26 -08008093 if (!netif_running(dev))
8094 return;
8095
David S. Millerf47c11e2005-06-24 20:18:35 -07008096 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008097 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07008098 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008099}
8100
8101#define TG3_REGDUMP_LEN (32 * 1024)
8102
8103static int tg3_get_regs_len(struct net_device *dev)
8104{
8105 return TG3_REGDUMP_LEN;
8106}
8107
8108static void tg3_get_regs(struct net_device *dev,
8109 struct ethtool_regs *regs, void *_p)
8110{
8111 u32 *p = _p;
8112 struct tg3 *tp = netdev_priv(dev);
8113 u8 *orig_p = _p;
8114 int i;
8115
8116 regs->version = 0;
8117
8118 memset(p, 0, TG3_REGDUMP_LEN);
8119
Michael Chanbc1c7562006-03-20 17:48:03 -08008120 if (tp->link_config.phy_is_low_power)
8121 return;
8122
David S. Millerf47c11e2005-06-24 20:18:35 -07008123 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124
8125#define __GET_REG32(reg) (*(p)++ = tr32(reg))
8126#define GET_REG32_LOOP(base,len) \
8127do { p = (u32 *)(orig_p + (base)); \
8128 for (i = 0; i < len; i += 4) \
8129 __GET_REG32((base) + i); \
8130} while (0)
8131#define GET_REG32_1(reg) \
8132do { p = (u32 *)(orig_p + (reg)); \
8133 __GET_REG32((reg)); \
8134} while (0)
8135
8136 GET_REG32_LOOP(TG3PCI_VENDOR, 0xb0);
8137 GET_REG32_LOOP(MAILBOX_INTERRUPT_0, 0x200);
8138 GET_REG32_LOOP(MAC_MODE, 0x4f0);
8139 GET_REG32_LOOP(SNDDATAI_MODE, 0xe0);
8140 GET_REG32_1(SNDDATAC_MODE);
8141 GET_REG32_LOOP(SNDBDS_MODE, 0x80);
8142 GET_REG32_LOOP(SNDBDI_MODE, 0x48);
8143 GET_REG32_1(SNDBDC_MODE);
8144 GET_REG32_LOOP(RCVLPC_MODE, 0x20);
8145 GET_REG32_LOOP(RCVLPC_SELLST_BASE, 0x15c);
8146 GET_REG32_LOOP(RCVDBDI_MODE, 0x0c);
8147 GET_REG32_LOOP(RCVDBDI_JUMBO_BD, 0x3c);
8148 GET_REG32_LOOP(RCVDBDI_BD_PROD_IDX_0, 0x44);
8149 GET_REG32_1(RCVDCC_MODE);
8150 GET_REG32_LOOP(RCVBDI_MODE, 0x20);
8151 GET_REG32_LOOP(RCVCC_MODE, 0x14);
8152 GET_REG32_LOOP(RCVLSC_MODE, 0x08);
8153 GET_REG32_1(MBFREE_MODE);
8154 GET_REG32_LOOP(HOSTCC_MODE, 0x100);
8155 GET_REG32_LOOP(MEMARB_MODE, 0x10);
8156 GET_REG32_LOOP(BUFMGR_MODE, 0x58);
8157 GET_REG32_LOOP(RDMAC_MODE, 0x08);
8158 GET_REG32_LOOP(WDMAC_MODE, 0x08);
Chris Elmquist091465d2005-12-20 13:25:19 -08008159 GET_REG32_1(RX_CPU_MODE);
8160 GET_REG32_1(RX_CPU_STATE);
8161 GET_REG32_1(RX_CPU_PGMCTR);
8162 GET_REG32_1(RX_CPU_HWBKPT);
8163 GET_REG32_1(TX_CPU_MODE);
8164 GET_REG32_1(TX_CPU_STATE);
8165 GET_REG32_1(TX_CPU_PGMCTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008166 GET_REG32_LOOP(GRCMBOX_INTERRUPT_0, 0x110);
8167 GET_REG32_LOOP(FTQ_RESET, 0x120);
8168 GET_REG32_LOOP(MSGINT_MODE, 0x0c);
8169 GET_REG32_1(DMAC_MODE);
8170 GET_REG32_LOOP(GRC_MODE, 0x4c);
8171 if (tp->tg3_flags & TG3_FLAG_NVRAM)
8172 GET_REG32_LOOP(NVRAM_CMD, 0x24);
8173
8174#undef __GET_REG32
8175#undef GET_REG32_LOOP
8176#undef GET_REG32_1
8177
David S. Millerf47c11e2005-06-24 20:18:35 -07008178 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008179}
8180
8181static int tg3_get_eeprom_len(struct net_device *dev)
8182{
8183 struct tg3 *tp = netdev_priv(dev);
8184
8185 return tp->nvram_size;
8186}
8187
8188static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val);
Michael Chan18201802006-03-20 22:29:15 -08008189static int tg3_nvram_read_swab(struct tg3 *tp, u32 offset, u32 *val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008190
8191static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
8192{
8193 struct tg3 *tp = netdev_priv(dev);
8194 int ret;
8195 u8 *pd;
8196 u32 i, offset, len, val, b_offset, b_count;
8197
Michael Chanbc1c7562006-03-20 17:48:03 -08008198 if (tp->link_config.phy_is_low_power)
8199 return -EAGAIN;
8200
Linus Torvalds1da177e2005-04-16 15:20:36 -07008201 offset = eeprom->offset;
8202 len = eeprom->len;
8203 eeprom->len = 0;
8204
8205 eeprom->magic = TG3_EEPROM_MAGIC;
8206
8207 if (offset & 3) {
8208 /* adjustments to start on required 4 byte boundary */
8209 b_offset = offset & 3;
8210 b_count = 4 - b_offset;
8211 if (b_count > len) {
8212 /* i.e. offset=1 len=2 */
8213 b_count = len;
8214 }
8215 ret = tg3_nvram_read(tp, offset-b_offset, &val);
8216 if (ret)
8217 return ret;
8218 val = cpu_to_le32(val);
8219 memcpy(data, ((char*)&val) + b_offset, b_count);
8220 len -= b_count;
8221 offset += b_count;
8222 eeprom->len += b_count;
8223 }
8224
8225 /* read bytes upto the last 4 byte boundary */
8226 pd = &data[eeprom->len];
8227 for (i = 0; i < (len - (len & 3)); i += 4) {
8228 ret = tg3_nvram_read(tp, offset + i, &val);
8229 if (ret) {
8230 eeprom->len += i;
8231 return ret;
8232 }
8233 val = cpu_to_le32(val);
8234 memcpy(pd + i, &val, 4);
8235 }
8236 eeprom->len += i;
8237
8238 if (len & 3) {
8239 /* read last bytes not ending on 4 byte boundary */
8240 pd = &data[eeprom->len];
8241 b_count = len & 3;
8242 b_offset = offset + len - b_count;
8243 ret = tg3_nvram_read(tp, b_offset, &val);
8244 if (ret)
8245 return ret;
8246 val = cpu_to_le32(val);
8247 memcpy(pd, ((char*)&val), b_count);
8248 eeprom->len += b_count;
8249 }
8250 return 0;
8251}
8252
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008253static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254
8255static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
8256{
8257 struct tg3 *tp = netdev_priv(dev);
8258 int ret;
8259 u32 offset, len, b_offset, odd_len, start, end;
8260 u8 *buf;
8261
Michael Chanbc1c7562006-03-20 17:48:03 -08008262 if (tp->link_config.phy_is_low_power)
8263 return -EAGAIN;
8264
Linus Torvalds1da177e2005-04-16 15:20:36 -07008265 if (eeprom->magic != TG3_EEPROM_MAGIC)
8266 return -EINVAL;
8267
8268 offset = eeprom->offset;
8269 len = eeprom->len;
8270
8271 if ((b_offset = (offset & 3))) {
8272 /* adjustments to start on required 4 byte boundary */
8273 ret = tg3_nvram_read(tp, offset-b_offset, &start);
8274 if (ret)
8275 return ret;
8276 start = cpu_to_le32(start);
8277 len += b_offset;
8278 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -07008279 if (len < 4)
8280 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008281 }
8282
8283 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -07008284 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008285 /* adjustments to end on required 4 byte boundary */
8286 odd_len = 1;
8287 len = (len + 3) & ~3;
8288 ret = tg3_nvram_read(tp, offset+len-4, &end);
8289 if (ret)
8290 return ret;
8291 end = cpu_to_le32(end);
8292 }
8293
8294 buf = data;
8295 if (b_offset || odd_len) {
8296 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008297 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008298 return -ENOMEM;
8299 if (b_offset)
8300 memcpy(buf, &start, 4);
8301 if (odd_len)
8302 memcpy(buf+len-4, &end, 4);
8303 memcpy(buf + b_offset, data, eeprom->len);
8304 }
8305
8306 ret = tg3_nvram_write_block(tp, offset, len, buf);
8307
8308 if (buf != data)
8309 kfree(buf);
8310
8311 return ret;
8312}
8313
8314static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
8315{
8316 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008317
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318 cmd->supported = (SUPPORTED_Autoneg);
8319
8320 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
8321 cmd->supported |= (SUPPORTED_1000baseT_Half |
8322 SUPPORTED_1000baseT_Full);
8323
Karsten Keilef348142006-05-12 12:49:08 -07008324 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325 cmd->supported |= (SUPPORTED_100baseT_Half |
8326 SUPPORTED_100baseT_Full |
8327 SUPPORTED_10baseT_Half |
8328 SUPPORTED_10baseT_Full |
8329 SUPPORTED_MII);
Karsten Keilef348142006-05-12 12:49:08 -07008330 cmd->port = PORT_TP;
8331 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008332 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -07008333 cmd->port = PORT_FIBRE;
8334 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008335
Linus Torvalds1da177e2005-04-16 15:20:36 -07008336 cmd->advertising = tp->link_config.advertising;
8337 if (netif_running(dev)) {
8338 cmd->speed = tp->link_config.active_speed;
8339 cmd->duplex = tp->link_config.active_duplex;
8340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008341 cmd->phy_address = PHY_ADDR;
8342 cmd->transceiver = 0;
8343 cmd->autoneg = tp->link_config.autoneg;
8344 cmd->maxtxpkt = 0;
8345 cmd->maxrxpkt = 0;
8346 return 0;
8347}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008348
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
8350{
8351 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008352
8353 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008354 /* These are the only valid advertisement bits allowed. */
8355 if (cmd->autoneg == AUTONEG_ENABLE &&
8356 (cmd->advertising & ~(ADVERTISED_1000baseT_Half |
8357 ADVERTISED_1000baseT_Full |
8358 ADVERTISED_Autoneg |
8359 ADVERTISED_FIBRE)))
8360 return -EINVAL;
Michael Chan37ff2382005-10-26 15:49:51 -07008361 /* Fiber can only do SPEED_1000. */
8362 else if ((cmd->autoneg != AUTONEG_ENABLE) &&
8363 (cmd->speed != SPEED_1000))
8364 return -EINVAL;
8365 /* Copper cannot force SPEED_1000. */
8366 } else if ((cmd->autoneg != AUTONEG_ENABLE) &&
8367 (cmd->speed == SPEED_1000))
8368 return -EINVAL;
8369 else if ((cmd->speed == SPEED_1000) &&
8370 (tp->tg3_flags2 & TG3_FLAG_10_100_ONLY))
8371 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008372
David S. Millerf47c11e2005-06-24 20:18:35 -07008373 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008374
8375 tp->link_config.autoneg = cmd->autoneg;
8376 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -07008377 tp->link_config.advertising = (cmd->advertising |
8378 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008379 tp->link_config.speed = SPEED_INVALID;
8380 tp->link_config.duplex = DUPLEX_INVALID;
8381 } else {
8382 tp->link_config.advertising = 0;
8383 tp->link_config.speed = cmd->speed;
8384 tp->link_config.duplex = cmd->duplex;
8385 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008386
Michael Chan24fcad62006-12-17 17:06:46 -08008387 tp->link_config.orig_speed = tp->link_config.speed;
8388 tp->link_config.orig_duplex = tp->link_config.duplex;
8389 tp->link_config.orig_autoneg = tp->link_config.autoneg;
8390
Linus Torvalds1da177e2005-04-16 15:20:36 -07008391 if (netif_running(dev))
8392 tg3_setup_phy(tp, 1);
8393
David S. Millerf47c11e2005-06-24 20:18:35 -07008394 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008395
Linus Torvalds1da177e2005-04-16 15:20:36 -07008396 return 0;
8397}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008398
Linus Torvalds1da177e2005-04-16 15:20:36 -07008399static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
8400{
8401 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008402
Linus Torvalds1da177e2005-04-16 15:20:36 -07008403 strcpy(info->driver, DRV_MODULE_NAME);
8404 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -08008405 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008406 strcpy(info->bus_info, pci_name(tp->pdev));
8407}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008408
Linus Torvalds1da177e2005-04-16 15:20:36 -07008409static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
8410{
8411 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008412
Gary Zambranoa85feb82007-05-05 11:52:19 -07008413 if (tp->tg3_flags & TG3_FLAG_WOL_CAP)
8414 wol->supported = WAKE_MAGIC;
8415 else
8416 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417 wol->wolopts = 0;
8418 if (tp->tg3_flags & TG3_FLAG_WOL_ENABLE)
8419 wol->wolopts = WAKE_MAGIC;
8420 memset(&wol->sopass, 0, sizeof(wol->sopass));
8421}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008422
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
8424{
8425 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008426
Linus Torvalds1da177e2005-04-16 15:20:36 -07008427 if (wol->wolopts & ~WAKE_MAGIC)
8428 return -EINVAL;
8429 if ((wol->wolopts & WAKE_MAGIC) &&
Gary Zambranoa85feb82007-05-05 11:52:19 -07008430 !(tp->tg3_flags & TG3_FLAG_WOL_CAP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008432
David S. Millerf47c11e2005-06-24 20:18:35 -07008433 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008434 if (wol->wolopts & WAKE_MAGIC)
8435 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
8436 else
8437 tp->tg3_flags &= ~TG3_FLAG_WOL_ENABLE;
David S. Millerf47c11e2005-06-24 20:18:35 -07008438 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008439
Linus Torvalds1da177e2005-04-16 15:20:36 -07008440 return 0;
8441}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008442
Linus Torvalds1da177e2005-04-16 15:20:36 -07008443static u32 tg3_get_msglevel(struct net_device *dev)
8444{
8445 struct tg3 *tp = netdev_priv(dev);
8446 return tp->msg_enable;
8447}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008448
Linus Torvalds1da177e2005-04-16 15:20:36 -07008449static void tg3_set_msglevel(struct net_device *dev, u32 value)
8450{
8451 struct tg3 *tp = netdev_priv(dev);
8452 tp->msg_enable = value;
8453}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008454
Linus Torvalds1da177e2005-04-16 15:20:36 -07008455static int tg3_set_tso(struct net_device *dev, u32 value)
8456{
8457 struct tg3 *tp = netdev_priv(dev);
8458
8459 if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
8460 if (value)
8461 return -EINVAL;
8462 return 0;
8463 }
Michael Chanb5d37722006-09-27 16:06:21 -07008464 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) &&
8465 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -07008466 if (value) {
Michael Chanb0026622006-07-03 19:42:14 -07008467 dev->features |= NETIF_F_TSO6;
Matt Carlson9936bcf2007-10-10 18:03:07 -07008468 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8469 dev->features |= NETIF_F_TSO_ECN;
8470 } else
8471 dev->features &= ~(NETIF_F_TSO6 | NETIF_F_TSO_ECN);
Michael Chanb0026622006-07-03 19:42:14 -07008472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008473 return ethtool_op_set_tso(dev, value);
8474}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008475
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476static int tg3_nway_reset(struct net_device *dev)
8477{
8478 struct tg3 *tp = netdev_priv(dev);
8479 u32 bmcr;
8480 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008481
Linus Torvalds1da177e2005-04-16 15:20:36 -07008482 if (!netif_running(dev))
8483 return -EAGAIN;
8484
Michael Chanc94e3942005-09-27 12:12:42 -07008485 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
8486 return -EINVAL;
8487
David S. Millerf47c11e2005-06-24 20:18:35 -07008488 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008489 r = -EINVAL;
8490 tg3_readphy(tp, MII_BMCR, &bmcr);
8491 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
Michael Chanc94e3942005-09-27 12:12:42 -07008492 ((bmcr & BMCR_ANENABLE) ||
8493 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT))) {
8494 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
8495 BMCR_ANENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008496 r = 0;
8497 }
David S. Millerf47c11e2005-06-24 20:18:35 -07008498 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008499
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500 return r;
8501}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008502
Linus Torvalds1da177e2005-04-16 15:20:36 -07008503static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
8504{
8505 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008506
Linus Torvalds1da177e2005-04-16 15:20:36 -07008507 ering->rx_max_pending = TG3_RX_RING_SIZE - 1;
8508 ering->rx_mini_max_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -08008509 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
8510 ering->rx_jumbo_max_pending = TG3_RX_JUMBO_RING_SIZE - 1;
8511 else
8512 ering->rx_jumbo_max_pending = 0;
8513
8514 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008515
8516 ering->rx_pending = tp->rx_pending;
8517 ering->rx_mini_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -08008518 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
8519 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
8520 else
8521 ering->rx_jumbo_pending = 0;
8522
Linus Torvalds1da177e2005-04-16 15:20:36 -07008523 ering->tx_pending = tp->tx_pending;
8524}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008525
Linus Torvalds1da177e2005-04-16 15:20:36 -07008526static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
8527{
8528 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07008529 int irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008530
Linus Torvalds1da177e2005-04-16 15:20:36 -07008531 if ((ering->rx_pending > TG3_RX_RING_SIZE - 1) ||
8532 (ering->rx_jumbo_pending > TG3_RX_JUMBO_RING_SIZE - 1) ||
Michael Chanbc3a9252006-10-18 20:55:18 -07008533 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
8534 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Michael Chan7f62ad52007-02-20 23:25:40 -08008535 ((tp->tg3_flags2 & TG3_FLG2_TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -07008536 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008537 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008538
Michael Chanbbe832c2005-06-24 20:20:04 -07008539 if (netif_running(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -07008541 irq_sync = 1;
8542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008543
Michael Chanbbe832c2005-06-24 20:20:04 -07008544 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008545
Linus Torvalds1da177e2005-04-16 15:20:36 -07008546 tp->rx_pending = ering->rx_pending;
8547
8548 if ((tp->tg3_flags2 & TG3_FLG2_MAX_RXPEND_64) &&
8549 tp->rx_pending > 63)
8550 tp->rx_pending = 63;
8551 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
8552 tp->tx_pending = ering->tx_pending;
8553
8554 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -07008555 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -07008556 err = tg3_restart_hw(tp, 1);
8557 if (!err)
8558 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559 }
8560
David S. Millerf47c11e2005-06-24 20:18:35 -07008561 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008562
Michael Chanb9ec6c12006-07-25 16:37:27 -07008563 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008564}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008565
Linus Torvalds1da177e2005-04-16 15:20:36 -07008566static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
8567{
8568 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008569
Linus Torvalds1da177e2005-04-16 15:20:36 -07008570 epause->autoneg = (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG) != 0;
8571 epause->rx_pause = (tp->tg3_flags & TG3_FLAG_RX_PAUSE) != 0;
8572 epause->tx_pause = (tp->tg3_flags & TG3_FLAG_TX_PAUSE) != 0;
8573}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008574
Linus Torvalds1da177e2005-04-16 15:20:36 -07008575static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
8576{
8577 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07008578 int irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008579
Michael Chanbbe832c2005-06-24 20:20:04 -07008580 if (netif_running(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008581 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -07008582 irq_sync = 1;
8583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008584
Michael Chanbbe832c2005-06-24 20:20:04 -07008585 tg3_full_lock(tp, irq_sync);
David S. Millerf47c11e2005-06-24 20:18:35 -07008586
Linus Torvalds1da177e2005-04-16 15:20:36 -07008587 if (epause->autoneg)
8588 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
8589 else
8590 tp->tg3_flags &= ~TG3_FLAG_PAUSE_AUTONEG;
8591 if (epause->rx_pause)
8592 tp->tg3_flags |= TG3_FLAG_RX_PAUSE;
8593 else
8594 tp->tg3_flags &= ~TG3_FLAG_RX_PAUSE;
8595 if (epause->tx_pause)
8596 tp->tg3_flags |= TG3_FLAG_TX_PAUSE;
8597 else
8598 tp->tg3_flags &= ~TG3_FLAG_TX_PAUSE;
8599
8600 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -07008601 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -07008602 err = tg3_restart_hw(tp, 1);
8603 if (!err)
8604 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605 }
David S. Millerf47c11e2005-06-24 20:18:35 -07008606
8607 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008608
Michael Chanb9ec6c12006-07-25 16:37:27 -07008609 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008610}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008611
Linus Torvalds1da177e2005-04-16 15:20:36 -07008612static u32 tg3_get_rx_csum(struct net_device *dev)
8613{
8614 struct tg3 *tp = netdev_priv(dev);
8615 return (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0;
8616}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008617
Linus Torvalds1da177e2005-04-16 15:20:36 -07008618static int tg3_set_rx_csum(struct net_device *dev, u32 data)
8619{
8620 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008621
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
8623 if (data != 0)
8624 return -EINVAL;
8625 return 0;
8626 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008627
David S. Millerf47c11e2005-06-24 20:18:35 -07008628 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629 if (data)
8630 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
8631 else
8632 tp->tg3_flags &= ~TG3_FLAG_RX_CHECKSUMS;
David S. Millerf47c11e2005-06-24 20:18:35 -07008633 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008634
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635 return 0;
8636}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008637
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638static int tg3_set_tx_csum(struct net_device *dev, u32 data)
8639{
8640 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008641
Linus Torvalds1da177e2005-04-16 15:20:36 -07008642 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
8643 if (data != 0)
8644 return -EINVAL;
8645 return 0;
8646 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008647
Michael Chanaf36e6b2006-03-23 01:28:06 -08008648 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -07008649 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -07008650 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8651 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
Michael Chan6460d942007-07-14 19:07:52 -07008652 ethtool_op_set_tx_ipv6_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653 else
Michael Chan9c27dbd2006-03-20 22:28:27 -08008654 ethtool_op_set_tx_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655
8656 return 0;
8657}
8658
Jeff Garzikb9f2c042007-10-03 18:07:32 -07008659static int tg3_get_sset_count (struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008660{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07008661 switch (sset) {
8662 case ETH_SS_TEST:
8663 return TG3_NUM_TEST;
8664 case ETH_SS_STATS:
8665 return TG3_NUM_STATS;
8666 default:
8667 return -EOPNOTSUPP;
8668 }
Michael Chan4cafd3f2005-05-29 14:56:34 -07008669}
8670
Linus Torvalds1da177e2005-04-16 15:20:36 -07008671static void tg3_get_strings (struct net_device *dev, u32 stringset, u8 *buf)
8672{
8673 switch (stringset) {
8674 case ETH_SS_STATS:
8675 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
8676 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -07008677 case ETH_SS_TEST:
8678 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
8679 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008680 default:
8681 WARN_ON(1); /* we need a WARN() */
8682 break;
8683 }
8684}
8685
Michael Chan4009a932005-09-05 17:52:54 -07008686static int tg3_phys_id(struct net_device *dev, u32 data)
8687{
8688 struct tg3 *tp = netdev_priv(dev);
8689 int i;
8690
8691 if (!netif_running(tp->dev))
8692 return -EAGAIN;
8693
8694 if (data == 0)
8695 data = 2;
8696
8697 for (i = 0; i < (data * 2); i++) {
8698 if ((i % 2) == 0)
8699 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
8700 LED_CTRL_1000MBPS_ON |
8701 LED_CTRL_100MBPS_ON |
8702 LED_CTRL_10MBPS_ON |
8703 LED_CTRL_TRAFFIC_OVERRIDE |
8704 LED_CTRL_TRAFFIC_BLINK |
8705 LED_CTRL_TRAFFIC_LED);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008706
Michael Chan4009a932005-09-05 17:52:54 -07008707 else
8708 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
8709 LED_CTRL_TRAFFIC_OVERRIDE);
8710
8711 if (msleep_interruptible(500))
8712 break;
8713 }
8714 tw32(MAC_LED_CTRL, tp->led_ctrl);
8715 return 0;
8716}
8717
Linus Torvalds1da177e2005-04-16 15:20:36 -07008718static void tg3_get_ethtool_stats (struct net_device *dev,
8719 struct ethtool_stats *estats, u64 *tmp_stats)
8720{
8721 struct tg3 *tp = netdev_priv(dev);
8722 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
8723}
8724
Michael Chan566f86a2005-05-29 14:56:58 -07008725#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -08008726#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
8727#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
8728#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Michael Chanb16250e2006-09-27 16:10:14 -07008729#define NVRAM_SELFBOOT_HW_SIZE 0x20
8730#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -07008731
8732static int tg3_test_nvram(struct tg3 *tp)
8733{
Michael Chan1b277772006-03-20 22:27:48 -08008734 u32 *buf, csum, magic;
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008735 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -07008736
Michael Chan18201802006-03-20 22:29:15 -08008737 if (tg3_nvram_read_swab(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -08008738 return -EIO;
8739
Michael Chan1b277772006-03-20 22:27:48 -08008740 if (magic == TG3_EEPROM_MAGIC)
8741 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -07008742 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -08008743 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
8744 TG3_EEPROM_SB_FORMAT_1) {
8745 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
8746 case TG3_EEPROM_SB_REVISION_0:
8747 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
8748 break;
8749 case TG3_EEPROM_SB_REVISION_2:
8750 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
8751 break;
8752 case TG3_EEPROM_SB_REVISION_3:
8753 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
8754 break;
8755 default:
8756 return 0;
8757 }
8758 } else
Michael Chan1b277772006-03-20 22:27:48 -08008759 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -07008760 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
8761 size = NVRAM_SELFBOOT_HW_SIZE;
8762 else
Michael Chan1b277772006-03-20 22:27:48 -08008763 return -EIO;
8764
8765 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -07008766 if (buf == NULL)
8767 return -ENOMEM;
8768
Michael Chan1b277772006-03-20 22:27:48 -08008769 err = -EIO;
8770 for (i = 0, j = 0; i < size; i += 4, j++) {
Michael Chan566f86a2005-05-29 14:56:58 -07008771 u32 val;
8772
8773 if ((err = tg3_nvram_read(tp, i, &val)) != 0)
8774 break;
8775 buf[j] = cpu_to_le32(val);
8776 }
Michael Chan1b277772006-03-20 22:27:48 -08008777 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -07008778 goto out;
8779
Michael Chan1b277772006-03-20 22:27:48 -08008780 /* Selfboot format */
Michael Chanb16250e2006-09-27 16:10:14 -07008781 if ((cpu_to_be32(buf[0]) & TG3_EEPROM_MAGIC_FW_MSK) ==
8782 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -08008783 u8 *buf8 = (u8 *) buf, csum8 = 0;
8784
Matt Carlsona5767de2007-11-12 21:10:58 -08008785 if ((cpu_to_be32(buf[0]) & TG3_EEPROM_SB_REVISION_MASK) ==
8786 TG3_EEPROM_SB_REVISION_2) {
8787 /* For rev 2, the csum doesn't include the MBA. */
8788 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
8789 csum8 += buf8[i];
8790 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
8791 csum8 += buf8[i];
8792 } else {
8793 for (i = 0; i < size; i++)
8794 csum8 += buf8[i];
8795 }
Michael Chan1b277772006-03-20 22:27:48 -08008796
Adrian Bunkad96b482006-04-05 22:21:04 -07008797 if (csum8 == 0) {
8798 err = 0;
8799 goto out;
8800 }
8801
8802 err = -EIO;
8803 goto out;
Michael Chan1b277772006-03-20 22:27:48 -08008804 }
Michael Chan566f86a2005-05-29 14:56:58 -07008805
Michael Chanb16250e2006-09-27 16:10:14 -07008806 if ((cpu_to_be32(buf[0]) & TG3_EEPROM_MAGIC_HW_MSK) ==
8807 TG3_EEPROM_MAGIC_HW) {
8808 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
8809 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
8810 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -07008811
8812 /* Separate the parity bits and the data bytes. */
8813 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
8814 if ((i == 0) || (i == 8)) {
8815 int l;
8816 u8 msk;
8817
8818 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
8819 parity[k++] = buf8[i] & msk;
8820 i++;
8821 }
8822 else if (i == 16) {
8823 int l;
8824 u8 msk;
8825
8826 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
8827 parity[k++] = buf8[i] & msk;
8828 i++;
8829
8830 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
8831 parity[k++] = buf8[i] & msk;
8832 i++;
8833 }
8834 data[j++] = buf8[i];
8835 }
8836
8837 err = -EIO;
8838 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
8839 u8 hw8 = hweight8(data[i]);
8840
8841 if ((hw8 & 0x1) && parity[i])
8842 goto out;
8843 else if (!(hw8 & 0x1) && !parity[i])
8844 goto out;
8845 }
8846 err = 0;
8847 goto out;
8848 }
8849
Michael Chan566f86a2005-05-29 14:56:58 -07008850 /* Bootstrap checksum at offset 0x10 */
8851 csum = calc_crc((unsigned char *) buf, 0x10);
8852 if(csum != cpu_to_le32(buf[0x10/4]))
8853 goto out;
8854
8855 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
8856 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
8857 if (csum != cpu_to_le32(buf[0xfc/4]))
8858 goto out;
8859
8860 err = 0;
8861
8862out:
8863 kfree(buf);
8864 return err;
8865}
8866
Michael Chanca430072005-05-29 14:57:23 -07008867#define TG3_SERDES_TIMEOUT_SEC 2
8868#define TG3_COPPER_TIMEOUT_SEC 6
8869
8870static int tg3_test_link(struct tg3 *tp)
8871{
8872 int i, max;
8873
8874 if (!netif_running(tp->dev))
8875 return -ENODEV;
8876
Michael Chan4c987482005-09-05 17:52:38 -07008877 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -07008878 max = TG3_SERDES_TIMEOUT_SEC;
8879 else
8880 max = TG3_COPPER_TIMEOUT_SEC;
8881
8882 for (i = 0; i < max; i++) {
8883 if (netif_carrier_ok(tp->dev))
8884 return 0;
8885
8886 if (msleep_interruptible(1000))
8887 break;
8888 }
8889
8890 return -EIO;
8891}
8892
Michael Chana71116d2005-05-29 14:58:11 -07008893/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -08008894static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -07008895{
Michael Chanb16250e2006-09-27 16:10:14 -07008896 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -07008897 u32 offset, read_mask, write_mask, val, save_val, read_val;
8898 static struct {
8899 u16 offset;
8900 u16 flags;
8901#define TG3_FL_5705 0x1
8902#define TG3_FL_NOT_5705 0x2
8903#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -07008904#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -07008905 u32 read_mask;
8906 u32 write_mask;
8907 } reg_tbl[] = {
8908 /* MAC Control Registers */
8909 { MAC_MODE, TG3_FL_NOT_5705,
8910 0x00000000, 0x00ef6f8c },
8911 { MAC_MODE, TG3_FL_5705,
8912 0x00000000, 0x01ef6b8c },
8913 { MAC_STATUS, TG3_FL_NOT_5705,
8914 0x03800107, 0x00000000 },
8915 { MAC_STATUS, TG3_FL_5705,
8916 0x03800100, 0x00000000 },
8917 { MAC_ADDR_0_HIGH, 0x0000,
8918 0x00000000, 0x0000ffff },
8919 { MAC_ADDR_0_LOW, 0x0000,
8920 0x00000000, 0xffffffff },
8921 { MAC_RX_MTU_SIZE, 0x0000,
8922 0x00000000, 0x0000ffff },
8923 { MAC_TX_MODE, 0x0000,
8924 0x00000000, 0x00000070 },
8925 { MAC_TX_LENGTHS, 0x0000,
8926 0x00000000, 0x00003fff },
8927 { MAC_RX_MODE, TG3_FL_NOT_5705,
8928 0x00000000, 0x000007fc },
8929 { MAC_RX_MODE, TG3_FL_5705,
8930 0x00000000, 0x000007dc },
8931 { MAC_HASH_REG_0, 0x0000,
8932 0x00000000, 0xffffffff },
8933 { MAC_HASH_REG_1, 0x0000,
8934 0x00000000, 0xffffffff },
8935 { MAC_HASH_REG_2, 0x0000,
8936 0x00000000, 0xffffffff },
8937 { MAC_HASH_REG_3, 0x0000,
8938 0x00000000, 0xffffffff },
8939
8940 /* Receive Data and Receive BD Initiator Control Registers. */
8941 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
8942 0x00000000, 0xffffffff },
8943 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
8944 0x00000000, 0xffffffff },
8945 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
8946 0x00000000, 0x00000003 },
8947 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
8948 0x00000000, 0xffffffff },
8949 { RCVDBDI_STD_BD+0, 0x0000,
8950 0x00000000, 0xffffffff },
8951 { RCVDBDI_STD_BD+4, 0x0000,
8952 0x00000000, 0xffffffff },
8953 { RCVDBDI_STD_BD+8, 0x0000,
8954 0x00000000, 0xffff0002 },
8955 { RCVDBDI_STD_BD+0xc, 0x0000,
8956 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008957
Michael Chana71116d2005-05-29 14:58:11 -07008958 /* Receive BD Initiator Control Registers. */
8959 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
8960 0x00000000, 0xffffffff },
8961 { RCVBDI_STD_THRESH, TG3_FL_5705,
8962 0x00000000, 0x000003ff },
8963 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
8964 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008965
Michael Chana71116d2005-05-29 14:58:11 -07008966 /* Host Coalescing Control Registers. */
8967 { HOSTCC_MODE, TG3_FL_NOT_5705,
8968 0x00000000, 0x00000004 },
8969 { HOSTCC_MODE, TG3_FL_5705,
8970 0x00000000, 0x000000f6 },
8971 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
8972 0x00000000, 0xffffffff },
8973 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
8974 0x00000000, 0x000003ff },
8975 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
8976 0x00000000, 0xffffffff },
8977 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
8978 0x00000000, 0x000003ff },
8979 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
8980 0x00000000, 0xffffffff },
8981 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
8982 0x00000000, 0x000000ff },
8983 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
8984 0x00000000, 0xffffffff },
8985 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
8986 0x00000000, 0x000000ff },
8987 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
8988 0x00000000, 0xffffffff },
8989 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
8990 0x00000000, 0xffffffff },
8991 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
8992 0x00000000, 0xffffffff },
8993 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
8994 0x00000000, 0x000000ff },
8995 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
8996 0x00000000, 0xffffffff },
8997 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
8998 0x00000000, 0x000000ff },
8999 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
9000 0x00000000, 0xffffffff },
9001 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
9002 0x00000000, 0xffffffff },
9003 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
9004 0x00000000, 0xffffffff },
9005 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
9006 0x00000000, 0xffffffff },
9007 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
9008 0x00000000, 0xffffffff },
9009 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
9010 0xffffffff, 0x00000000 },
9011 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
9012 0xffffffff, 0x00000000 },
9013
9014 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -07009015 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -07009016 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -07009017 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -07009018 0x00000000, 0x007fffff },
9019 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
9020 0x00000000, 0x0000003f },
9021 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
9022 0x00000000, 0x000001ff },
9023 { BUFMGR_MB_HIGH_WATER, 0x0000,
9024 0x00000000, 0x000001ff },
9025 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
9026 0xffffffff, 0x00000000 },
9027 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
9028 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009029
Michael Chana71116d2005-05-29 14:58:11 -07009030 /* Mailbox Registers */
9031 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
9032 0x00000000, 0x000001ff },
9033 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
9034 0x00000000, 0x000001ff },
9035 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
9036 0x00000000, 0x000007ff },
9037 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
9038 0x00000000, 0x000001ff },
9039
9040 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
9041 };
9042
Michael Chanb16250e2006-09-27 16:10:14 -07009043 is_5705 = is_5750 = 0;
9044 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chana71116d2005-05-29 14:58:11 -07009045 is_5705 = 1;
Michael Chanb16250e2006-09-27 16:10:14 -07009046 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
9047 is_5750 = 1;
9048 }
Michael Chana71116d2005-05-29 14:58:11 -07009049
9050 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
9051 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
9052 continue;
9053
9054 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
9055 continue;
9056
9057 if ((tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
9058 (reg_tbl[i].flags & TG3_FL_NOT_5788))
9059 continue;
9060
Michael Chanb16250e2006-09-27 16:10:14 -07009061 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
9062 continue;
9063
Michael Chana71116d2005-05-29 14:58:11 -07009064 offset = (u32) reg_tbl[i].offset;
9065 read_mask = reg_tbl[i].read_mask;
9066 write_mask = reg_tbl[i].write_mask;
9067
9068 /* Save the original register content */
9069 save_val = tr32(offset);
9070
9071 /* Determine the read-only value. */
9072 read_val = save_val & read_mask;
9073
9074 /* Write zero to the register, then make sure the read-only bits
9075 * are not changed and the read/write bits are all zeros.
9076 */
9077 tw32(offset, 0);
9078
9079 val = tr32(offset);
9080
9081 /* Test the read-only and read/write bits. */
9082 if (((val & read_mask) != read_val) || (val & write_mask))
9083 goto out;
9084
9085 /* Write ones to all the bits defined by RdMask and WrMask, then
9086 * make sure the read-only bits are not changed and the
9087 * read/write bits are all ones.
9088 */
9089 tw32(offset, read_mask | write_mask);
9090
9091 val = tr32(offset);
9092
9093 /* Test the read-only bits. */
9094 if ((val & read_mask) != read_val)
9095 goto out;
9096
9097 /* Test the read/write bits. */
9098 if ((val & write_mask) != write_mask)
9099 goto out;
9100
9101 tw32(offset, save_val);
9102 }
9103
9104 return 0;
9105
9106out:
Michael Chan9f88f292006-12-07 00:22:54 -08009107 if (netif_msg_hw(tp))
9108 printk(KERN_ERR PFX "Register test failed at offset %x\n",
9109 offset);
Michael Chana71116d2005-05-29 14:58:11 -07009110 tw32(offset, save_val);
9111 return -EIO;
9112}
9113
Michael Chan7942e1d2005-05-29 14:58:36 -07009114static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
9115{
Arjan van de Venf71e1302006-03-03 21:33:57 -05009116 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -07009117 int i;
9118 u32 j;
9119
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +02009120 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -07009121 for (j = 0; j < len; j += 4) {
9122 u32 val;
9123
9124 tg3_write_mem(tp, offset + j, test_pattern[i]);
9125 tg3_read_mem(tp, offset + j, &val);
9126 if (val != test_pattern[i])
9127 return -EIO;
9128 }
9129 }
9130 return 0;
9131}
9132
9133static int tg3_test_memory(struct tg3 *tp)
9134{
9135 static struct mem_entry {
9136 u32 offset;
9137 u32 len;
9138 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -08009139 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -07009140 { 0x00002000, 0x1c000},
9141 { 0xffffffff, 0x00000}
9142 }, mem_tbl_5705[] = {
9143 { 0x00000100, 0x0000c},
9144 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -07009145 { 0x00004000, 0x00800},
9146 { 0x00006000, 0x01000},
9147 { 0x00008000, 0x02000},
9148 { 0x00010000, 0x0e000},
9149 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -08009150 }, mem_tbl_5755[] = {
9151 { 0x00000200, 0x00008},
9152 { 0x00004000, 0x00800},
9153 { 0x00006000, 0x00800},
9154 { 0x00008000, 0x02000},
9155 { 0x00010000, 0x0c000},
9156 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -07009157 }, mem_tbl_5906[] = {
9158 { 0x00000200, 0x00008},
9159 { 0x00004000, 0x00400},
9160 { 0x00006000, 0x00400},
9161 { 0x00008000, 0x01000},
9162 { 0x00010000, 0x01000},
9163 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -07009164 };
9165 struct mem_entry *mem_tbl;
9166 int err = 0;
9167 int i;
9168
Michael Chan79f4d132006-03-20 22:28:57 -08009169 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chanaf36e6b2006-03-23 01:28:06 -08009170 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -07009171 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -07009172 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
9173 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
Michael Chan79f4d132006-03-20 22:28:57 -08009174 mem_tbl = mem_tbl_5755;
Michael Chanb16250e2006-09-27 16:10:14 -07009175 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
9176 mem_tbl = mem_tbl_5906;
Michael Chan79f4d132006-03-20 22:28:57 -08009177 else
9178 mem_tbl = mem_tbl_5705;
9179 } else
Michael Chan7942e1d2005-05-29 14:58:36 -07009180 mem_tbl = mem_tbl_570x;
9181
9182 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
9183 if ((err = tg3_do_mem_test(tp, mem_tbl[i].offset,
9184 mem_tbl[i].len)) != 0)
9185 break;
9186 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009187
Michael Chan7942e1d2005-05-29 14:58:36 -07009188 return err;
9189}
9190
Michael Chan9f40dea2005-09-05 17:53:06 -07009191#define TG3_MAC_LOOPBACK 0
9192#define TG3_PHY_LOOPBACK 1
9193
9194static int tg3_run_loopback(struct tg3 *tp, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -07009195{
Michael Chan9f40dea2005-09-05 17:53:06 -07009196 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Michael Chanc76949a2005-05-29 14:58:59 -07009197 u32 desc_idx;
9198 struct sk_buff *skb, *rx_skb;
9199 u8 *tx_data;
9200 dma_addr_t map;
9201 int num_pkts, tx_len, rx_len, i, err;
9202 struct tg3_rx_buffer_desc *desc;
9203
Michael Chan9f40dea2005-09-05 17:53:06 -07009204 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -07009205 /* HW errata - mac loopback fails in some cases on 5780.
9206 * Normal traffic and PHY loopback are not affected by
9207 * errata.
9208 */
9209 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780)
9210 return 0;
9211
Michael Chan9f40dea2005-09-05 17:53:06 -07009212 mac_mode = (tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK) |
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009213 MAC_MODE_PORT_INT_LPBACK;
9214 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
9215 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chan3f7045c2006-09-27 16:02:29 -07009216 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
9217 mac_mode |= MAC_MODE_PORT_MODE_MII;
9218 else
9219 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -07009220 tw32(MAC_MODE, mac_mode);
9221 } else if (loopback_mode == TG3_PHY_LOOPBACK) {
Michael Chan3f7045c2006-09-27 16:02:29 -07009222 u32 val;
9223
Michael Chanb16250e2006-09-27 16:10:14 -07009224 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
9225 u32 phytest;
9226
9227 if (!tg3_readphy(tp, MII_TG3_EPHY_TEST, &phytest)) {
9228 u32 phy;
9229
9230 tg3_writephy(tp, MII_TG3_EPHY_TEST,
9231 phytest | MII_TG3_EPHY_SHADOW_EN);
9232 if (!tg3_readphy(tp, 0x1b, &phy))
9233 tg3_writephy(tp, 0x1b, phy & ~0x20);
Michael Chanb16250e2006-09-27 16:10:14 -07009234 tg3_writephy(tp, MII_TG3_EPHY_TEST, phytest);
9235 }
Michael Chan5d64ad32006-12-07 00:19:40 -08009236 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
9237 } else
9238 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -07009239
Matt Carlson9ef8ca92007-07-11 19:48:29 -07009240 tg3_phy_toggle_automdix(tp, 0);
9241
Michael Chan3f7045c2006-09-27 16:02:29 -07009242 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -07009243 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -08009244
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009245 mac_mode = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
Michael Chan5d64ad32006-12-07 00:19:40 -08009246 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb16250e2006-09-27 16:10:14 -07009247 tg3_writephy(tp, MII_TG3_EPHY_PTEST, 0x1800);
Michael Chan5d64ad32006-12-07 00:19:40 -08009248 mac_mode |= MAC_MODE_PORT_MODE_MII;
9249 } else
9250 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -07009251
Michael Chanc94e3942005-09-27 12:12:42 -07009252 /* reset to prevent losing 1st rx packet intermittently */
9253 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
9254 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9255 udelay(10);
9256 tw32_f(MAC_RX_MODE, tp->rx_mode);
9257 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009258 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
9259 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401)
9260 mac_mode &= ~MAC_MODE_LINK_POLARITY;
9261 else if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411)
9262 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -08009263 tg3_writephy(tp, MII_TG3_EXT_CTRL,
9264 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
9265 }
Michael Chan9f40dea2005-09-05 17:53:06 -07009266 tw32(MAC_MODE, mac_mode);
Michael Chan9f40dea2005-09-05 17:53:06 -07009267 }
9268 else
9269 return -EINVAL;
Michael Chanc76949a2005-05-29 14:58:59 -07009270
9271 err = -EIO;
9272
Michael Chanc76949a2005-05-29 14:58:59 -07009273 tx_len = 1514;
David S. Millera20e9c62006-07-31 22:38:16 -07009274 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -07009275 if (!skb)
9276 return -ENOMEM;
9277
Michael Chanc76949a2005-05-29 14:58:59 -07009278 tx_data = skb_put(skb, tx_len);
9279 memcpy(tx_data, tp->dev->dev_addr, 6);
9280 memset(tx_data + 6, 0x0, 8);
9281
9282 tw32(MAC_RX_MTU_SIZE, tx_len + 4);
9283
9284 for (i = 14; i < tx_len; i++)
9285 tx_data[i] = (u8) (i & 0xff);
9286
9287 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
9288
9289 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
9290 HOSTCC_MODE_NOW);
9291
9292 udelay(10);
9293
9294 rx_start_idx = tp->hw_status->idx[0].rx_producer;
9295
Michael Chanc76949a2005-05-29 14:58:59 -07009296 num_pkts = 0;
9297
Michael Chan9f40dea2005-09-05 17:53:06 -07009298 tg3_set_txd(tp, tp->tx_prod, map, tx_len, 0, 1);
Michael Chanc76949a2005-05-29 14:58:59 -07009299
Michael Chan9f40dea2005-09-05 17:53:06 -07009300 tp->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -07009301 num_pkts++;
9302
Michael Chan9f40dea2005-09-05 17:53:06 -07009303 tw32_tx_mbox(MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW,
9304 tp->tx_prod);
Michael Chan09ee9292005-08-09 20:17:00 -07009305 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW);
Michael Chanc76949a2005-05-29 14:58:59 -07009306
9307 udelay(10);
9308
Michael Chan3f7045c2006-09-27 16:02:29 -07009309 /* 250 usec to allow enough time on some 10/100 Mbps devices. */
9310 for (i = 0; i < 25; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -07009311 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
9312 HOSTCC_MODE_NOW);
9313
9314 udelay(10);
9315
9316 tx_idx = tp->hw_status->idx[0].tx_consumer;
9317 rx_idx = tp->hw_status->idx[0].rx_producer;
Michael Chan9f40dea2005-09-05 17:53:06 -07009318 if ((tx_idx == tp->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -07009319 (rx_idx == (rx_start_idx + num_pkts)))
9320 break;
9321 }
9322
9323 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
9324 dev_kfree_skb(skb);
9325
Michael Chan9f40dea2005-09-05 17:53:06 -07009326 if (tx_idx != tp->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -07009327 goto out;
9328
9329 if (rx_idx != rx_start_idx + num_pkts)
9330 goto out;
9331
9332 desc = &tp->rx_rcb[rx_start_idx];
9333 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
9334 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
9335 if (opaque_key != RXD_OPAQUE_RING_STD)
9336 goto out;
9337
9338 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
9339 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
9340 goto out;
9341
9342 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) - 4;
9343 if (rx_len != tx_len)
9344 goto out;
9345
9346 rx_skb = tp->rx_std_buffers[desc_idx].skb;
9347
9348 map = pci_unmap_addr(&tp->rx_std_buffers[desc_idx], mapping);
9349 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len, PCI_DMA_FROMDEVICE);
9350
9351 for (i = 14; i < tx_len; i++) {
9352 if (*(rx_skb->data + i) != (u8) (i & 0xff))
9353 goto out;
9354 }
9355 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009356
Michael Chanc76949a2005-05-29 14:58:59 -07009357 /* tg3_free_rings will unmap and free the rx_skb */
9358out:
9359 return err;
9360}
9361
Michael Chan9f40dea2005-09-05 17:53:06 -07009362#define TG3_MAC_LOOPBACK_FAILED 1
9363#define TG3_PHY_LOOPBACK_FAILED 2
9364#define TG3_LOOPBACK_FAILED (TG3_MAC_LOOPBACK_FAILED | \
9365 TG3_PHY_LOOPBACK_FAILED)
9366
9367static int tg3_test_loopback(struct tg3 *tp)
9368{
9369 int err = 0;
Matt Carlson9936bcf2007-10-10 18:03:07 -07009370 u32 cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -07009371
9372 if (!netif_running(tp->dev))
9373 return TG3_LOOPBACK_FAILED;
9374
Michael Chanb9ec6c12006-07-25 16:37:27 -07009375 err = tg3_reset_hw(tp, 1);
9376 if (err)
9377 return TG3_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -07009378
Matt Carlsone8750932007-11-12 21:11:51 -08009379 if (tp->pci_chip_rev_id == CHIPREV_ID_5784_A0 ||
9380 tp->pci_chip_rev_id == CHIPREV_ID_5761_A0) {
Matt Carlson9936bcf2007-10-10 18:03:07 -07009381 int i;
9382 u32 status;
9383
9384 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
9385
9386 /* Wait for up to 40 microseconds to acquire lock. */
9387 for (i = 0; i < 4; i++) {
9388 status = tr32(TG3_CPMU_MUTEX_GNT);
9389 if (status == CPMU_MUTEX_GNT_DRIVER)
9390 break;
9391 udelay(10);
9392 }
9393
9394 if (status != CPMU_MUTEX_GNT_DRIVER)
9395 return TG3_LOOPBACK_FAILED;
9396
Matt Carlson9936bcf2007-10-10 18:03:07 -07009397 /* Turn off power management based on link speed. */
Matt Carlsone8750932007-11-12 21:11:51 -08009398 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson9936bcf2007-10-10 18:03:07 -07009399 tw32(TG3_CPMU_CTRL,
Matt Carlsone8750932007-11-12 21:11:51 -08009400 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
9401 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -07009402 }
9403
Michael Chan9f40dea2005-09-05 17:53:06 -07009404 if (tg3_run_loopback(tp, TG3_MAC_LOOPBACK))
9405 err |= TG3_MAC_LOOPBACK_FAILED;
Matt Carlson9936bcf2007-10-10 18:03:07 -07009406
Matt Carlsone8750932007-11-12 21:11:51 -08009407 if (tp->pci_chip_rev_id == CHIPREV_ID_5784_A0 ||
9408 tp->pci_chip_rev_id == CHIPREV_ID_5761_A0) {
Matt Carlson9936bcf2007-10-10 18:03:07 -07009409 tw32(TG3_CPMU_CTRL, cpmuctrl);
9410
9411 /* Release the mutex */
9412 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
9413 }
9414
Michael Chan9f40dea2005-09-05 17:53:06 -07009415 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
9416 if (tg3_run_loopback(tp, TG3_PHY_LOOPBACK))
9417 err |= TG3_PHY_LOOPBACK_FAILED;
9418 }
9419
9420 return err;
9421}
9422
Michael Chan4cafd3f2005-05-29 14:56:34 -07009423static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
9424 u64 *data)
9425{
Michael Chan566f86a2005-05-29 14:56:58 -07009426 struct tg3 *tp = netdev_priv(dev);
9427
Michael Chanbc1c7562006-03-20 17:48:03 -08009428 if (tp->link_config.phy_is_low_power)
9429 tg3_set_power_state(tp, PCI_D0);
9430
Michael Chan566f86a2005-05-29 14:56:58 -07009431 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
9432
9433 if (tg3_test_nvram(tp) != 0) {
9434 etest->flags |= ETH_TEST_FL_FAILED;
9435 data[0] = 1;
9436 }
Michael Chanca430072005-05-29 14:57:23 -07009437 if (tg3_test_link(tp) != 0) {
9438 etest->flags |= ETH_TEST_FL_FAILED;
9439 data[1] = 1;
9440 }
Michael Chana71116d2005-05-29 14:58:11 -07009441 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Michael Chanec41c7d2006-01-17 02:40:55 -08009442 int err, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -07009443
Michael Chanbbe832c2005-06-24 20:20:04 -07009444 if (netif_running(dev)) {
9445 tg3_netif_stop(tp);
9446 irq_sync = 1;
9447 }
9448
9449 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -07009450
9451 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -08009452 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -07009453 tg3_halt_cpu(tp, RX_CPU_BASE);
9454 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
9455 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08009456 if (!err)
9457 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -07009458
Michael Chand9ab5ad2006-03-20 22:27:35 -08009459 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
9460 tg3_phy_reset(tp);
9461
Michael Chana71116d2005-05-29 14:58:11 -07009462 if (tg3_test_registers(tp) != 0) {
9463 etest->flags |= ETH_TEST_FL_FAILED;
9464 data[2] = 1;
9465 }
Michael Chan7942e1d2005-05-29 14:58:36 -07009466 if (tg3_test_memory(tp) != 0) {
9467 etest->flags |= ETH_TEST_FL_FAILED;
9468 data[3] = 1;
9469 }
Michael Chan9f40dea2005-09-05 17:53:06 -07009470 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -07009471 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -07009472
David S. Millerf47c11e2005-06-24 20:18:35 -07009473 tg3_full_unlock(tp);
9474
Michael Chand4bc3922005-05-29 14:59:20 -07009475 if (tg3_test_interrupt(tp) != 0) {
9476 etest->flags |= ETH_TEST_FL_FAILED;
9477 data[5] = 1;
9478 }
David S. Millerf47c11e2005-06-24 20:18:35 -07009479
9480 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -07009481
Michael Chana71116d2005-05-29 14:58:11 -07009482 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
9483 if (netif_running(dev)) {
9484 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Michael Chanb9ec6c12006-07-25 16:37:27 -07009485 if (!tg3_restart_hw(tp, 1))
9486 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -07009487 }
David S. Millerf47c11e2005-06-24 20:18:35 -07009488
9489 tg3_full_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -07009490 }
Michael Chanbc1c7562006-03-20 17:48:03 -08009491 if (tp->link_config.phy_is_low_power)
9492 tg3_set_power_state(tp, PCI_D3hot);
9493
Michael Chan4cafd3f2005-05-29 14:56:34 -07009494}
9495
Linus Torvalds1da177e2005-04-16 15:20:36 -07009496static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
9497{
9498 struct mii_ioctl_data *data = if_mii(ifr);
9499 struct tg3 *tp = netdev_priv(dev);
9500 int err;
9501
9502 switch(cmd) {
9503 case SIOCGMIIPHY:
9504 data->phy_id = PHY_ADDR;
9505
9506 /* fallthru */
9507 case SIOCGMIIREG: {
9508 u32 mii_regval;
9509
9510 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
9511 break; /* We have no PHY */
9512
Michael Chanbc1c7562006-03-20 17:48:03 -08009513 if (tp->link_config.phy_is_low_power)
9514 return -EAGAIN;
9515
David S. Millerf47c11e2005-06-24 20:18:35 -07009516 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009517 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -07009518 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009519
9520 data->val_out = mii_regval;
9521
9522 return err;
9523 }
9524
9525 case SIOCSMIIREG:
9526 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
9527 break; /* We have no PHY */
9528
9529 if (!capable(CAP_NET_ADMIN))
9530 return -EPERM;
9531
Michael Chanbc1c7562006-03-20 17:48:03 -08009532 if (tp->link_config.phy_is_low_power)
9533 return -EAGAIN;
9534
David S. Millerf47c11e2005-06-24 20:18:35 -07009535 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009536 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -07009537 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009538
9539 return err;
9540
9541 default:
9542 /* do nothing */
9543 break;
9544 }
9545 return -EOPNOTSUPP;
9546}
9547
9548#if TG3_VLAN_TAG_USED
9549static void tg3_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
9550{
9551 struct tg3 *tp = netdev_priv(dev);
9552
Michael Chan29315e82006-06-29 20:12:30 -07009553 if (netif_running(dev))
9554 tg3_netif_stop(tp);
9555
David S. Millerf47c11e2005-06-24 20:18:35 -07009556 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009557
9558 tp->vlgrp = grp;
9559
9560 /* Update RX_MODE_KEEP_VLAN_TAG bit in RX_MODE register. */
9561 __tg3_set_rx_mode(dev);
9562
Michael Chan29315e82006-06-29 20:12:30 -07009563 if (netif_running(dev))
9564 tg3_netif_start(tp);
Michael Chan46966542007-07-11 19:47:19 -07009565
9566 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009567}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009568#endif
9569
David S. Miller15f98502005-05-18 22:49:26 -07009570static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
9571{
9572 struct tg3 *tp = netdev_priv(dev);
9573
9574 memcpy(ec, &tp->coal, sizeof(*ec));
9575 return 0;
9576}
9577
Michael Chand244c892005-07-05 14:42:33 -07009578static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
9579{
9580 struct tg3 *tp = netdev_priv(dev);
9581 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
9582 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
9583
9584 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
9585 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
9586 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
9587 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
9588 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
9589 }
9590
9591 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
9592 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
9593 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
9594 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
9595 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
9596 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
9597 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
9598 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
9599 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
9600 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
9601 return -EINVAL;
9602
9603 /* No rx interrupts will be generated if both are zero */
9604 if ((ec->rx_coalesce_usecs == 0) &&
9605 (ec->rx_max_coalesced_frames == 0))
9606 return -EINVAL;
9607
9608 /* No tx interrupts will be generated if both are zero */
9609 if ((ec->tx_coalesce_usecs == 0) &&
9610 (ec->tx_max_coalesced_frames == 0))
9611 return -EINVAL;
9612
9613 /* Only copy relevant parameters, ignore all others. */
9614 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
9615 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
9616 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
9617 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
9618 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
9619 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
9620 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
9621 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
9622 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
9623
9624 if (netif_running(dev)) {
9625 tg3_full_lock(tp, 0);
9626 __tg3_set_coalesce(tp, &tp->coal);
9627 tg3_full_unlock(tp);
9628 }
9629 return 0;
9630}
9631
Jeff Garzik7282d492006-09-13 14:30:00 -04009632static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009633 .get_settings = tg3_get_settings,
9634 .set_settings = tg3_set_settings,
9635 .get_drvinfo = tg3_get_drvinfo,
9636 .get_regs_len = tg3_get_regs_len,
9637 .get_regs = tg3_get_regs,
9638 .get_wol = tg3_get_wol,
9639 .set_wol = tg3_set_wol,
9640 .get_msglevel = tg3_get_msglevel,
9641 .set_msglevel = tg3_set_msglevel,
9642 .nway_reset = tg3_nway_reset,
9643 .get_link = ethtool_op_get_link,
9644 .get_eeprom_len = tg3_get_eeprom_len,
9645 .get_eeprom = tg3_get_eeprom,
9646 .set_eeprom = tg3_set_eeprom,
9647 .get_ringparam = tg3_get_ringparam,
9648 .set_ringparam = tg3_set_ringparam,
9649 .get_pauseparam = tg3_get_pauseparam,
9650 .set_pauseparam = tg3_set_pauseparam,
9651 .get_rx_csum = tg3_get_rx_csum,
9652 .set_rx_csum = tg3_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009653 .set_tx_csum = tg3_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009654 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009655 .set_tso = tg3_set_tso,
Michael Chan4cafd3f2005-05-29 14:56:34 -07009656 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009657 .get_strings = tg3_get_strings,
Michael Chan4009a932005-09-05 17:52:54 -07009658 .phys_id = tg3_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009659 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -07009660 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -07009661 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07009662 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009663};
9664
9665static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
9666{
Michael Chan1b277772006-03-20 22:27:48 -08009667 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009668
9669 tp->nvram_size = EEPROM_CHIP_SIZE;
9670
Michael Chan18201802006-03-20 22:29:15 -08009671 if (tg3_nvram_read_swab(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009672 return;
9673
Michael Chanb16250e2006-09-27 16:10:14 -07009674 if ((magic != TG3_EEPROM_MAGIC) &&
9675 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
9676 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009677 return;
9678
9679 /*
9680 * Size the chip by reading offsets at increasing powers of two.
9681 * When we encounter our validation signature, we know the addressing
9682 * has wrapped around, and thus have our chip size.
9683 */
Michael Chan1b277772006-03-20 22:27:48 -08009684 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009685
9686 while (cursize < tp->nvram_size) {
Michael Chan18201802006-03-20 22:29:15 -08009687 if (tg3_nvram_read_swab(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009688 return;
9689
Michael Chan18201802006-03-20 22:29:15 -08009690 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009691 break;
9692
9693 cursize <<= 1;
9694 }
9695
9696 tp->nvram_size = cursize;
9697}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009698
Linus Torvalds1da177e2005-04-16 15:20:36 -07009699static void __devinit tg3_get_nvram_size(struct tg3 *tp)
9700{
9701 u32 val;
9702
Michael Chan18201802006-03-20 22:29:15 -08009703 if (tg3_nvram_read_swab(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -08009704 return;
9705
9706 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -08009707 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -08009708 tg3_get_eeprom_size(tp);
9709 return;
9710 }
9711
Linus Torvalds1da177e2005-04-16 15:20:36 -07009712 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
9713 if (val != 0) {
9714 tp->nvram_size = (val >> 16) * 1024;
9715 return;
9716 }
9717 }
Matt Carlson989a9d22007-05-05 11:51:05 -07009718 tp->nvram_size = 0x80000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009719}
9720
9721static void __devinit tg3_get_nvram_info(struct tg3 *tp)
9722{
9723 u32 nvcfg1;
9724
9725 nvcfg1 = tr32(NVRAM_CFG1);
9726 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
9727 tp->tg3_flags2 |= TG3_FLG2_FLASH;
9728 }
9729 else {
9730 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
9731 tw32(NVRAM_CFG1, nvcfg1);
9732 }
9733
Michael Chan4c987482005-09-05 17:52:38 -07009734 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) ||
Michael Chana4e2b342005-10-26 15:46:52 -07009735 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009736 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
9737 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
9738 tp->nvram_jedecnum = JEDEC_ATMEL;
9739 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
9740 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9741 break;
9742 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
9743 tp->nvram_jedecnum = JEDEC_ATMEL;
9744 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
9745 break;
9746 case FLASH_VENDOR_ATMEL_EEPROM:
9747 tp->nvram_jedecnum = JEDEC_ATMEL;
9748 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
9749 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9750 break;
9751 case FLASH_VENDOR_ST:
9752 tp->nvram_jedecnum = JEDEC_ST;
9753 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
9754 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9755 break;
9756 case FLASH_VENDOR_SAIFUN:
9757 tp->nvram_jedecnum = JEDEC_SAIFUN;
9758 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
9759 break;
9760 case FLASH_VENDOR_SST_SMALL:
9761 case FLASH_VENDOR_SST_LARGE:
9762 tp->nvram_jedecnum = JEDEC_SST;
9763 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
9764 break;
9765 }
9766 }
9767 else {
9768 tp->nvram_jedecnum = JEDEC_ATMEL;
9769 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
9770 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9771 }
9772}
9773
Michael Chan361b4ac2005-04-21 17:11:21 -07009774static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
9775{
9776 u32 nvcfg1;
9777
9778 nvcfg1 = tr32(NVRAM_CFG1);
9779
Michael Chane6af3012005-04-21 17:12:05 -07009780 /* NVRAM protection for TPM */
9781 if (nvcfg1 & (1 << 27))
9782 tp->tg3_flags2 |= TG3_FLG2_PROTECTED_NVRAM;
9783
Michael Chan361b4ac2005-04-21 17:11:21 -07009784 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
9785 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
9786 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
9787 tp->nvram_jedecnum = JEDEC_ATMEL;
9788 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9789 break;
9790 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
9791 tp->nvram_jedecnum = JEDEC_ATMEL;
9792 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9793 tp->tg3_flags2 |= TG3_FLG2_FLASH;
9794 break;
9795 case FLASH_5752VENDOR_ST_M45PE10:
9796 case FLASH_5752VENDOR_ST_M45PE20:
9797 case FLASH_5752VENDOR_ST_M45PE40:
9798 tp->nvram_jedecnum = JEDEC_ST;
9799 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9800 tp->tg3_flags2 |= TG3_FLG2_FLASH;
9801 break;
9802 }
9803
9804 if (tp->tg3_flags2 & TG3_FLG2_FLASH) {
9805 switch (nvcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
9806 case FLASH_5752PAGE_SIZE_256:
9807 tp->nvram_pagesize = 256;
9808 break;
9809 case FLASH_5752PAGE_SIZE_512:
9810 tp->nvram_pagesize = 512;
9811 break;
9812 case FLASH_5752PAGE_SIZE_1K:
9813 tp->nvram_pagesize = 1024;
9814 break;
9815 case FLASH_5752PAGE_SIZE_2K:
9816 tp->nvram_pagesize = 2048;
9817 break;
9818 case FLASH_5752PAGE_SIZE_4K:
9819 tp->nvram_pagesize = 4096;
9820 break;
9821 case FLASH_5752PAGE_SIZE_264:
9822 tp->nvram_pagesize = 264;
9823 break;
9824 }
9825 }
9826 else {
9827 /* For eeprom, set pagesize to maximum eeprom size */
9828 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
9829
9830 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
9831 tw32(NVRAM_CFG1, nvcfg1);
9832 }
9833}
9834
Michael Chand3c7b882006-03-23 01:28:25 -08009835static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
9836{
Matt Carlson989a9d22007-05-05 11:51:05 -07009837 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -08009838
9839 nvcfg1 = tr32(NVRAM_CFG1);
9840
9841 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -07009842 if (nvcfg1 & (1 << 27)) {
Michael Chand3c7b882006-03-23 01:28:25 -08009843 tp->tg3_flags2 |= TG3_FLG2_PROTECTED_NVRAM;
Matt Carlson989a9d22007-05-05 11:51:05 -07009844 protect = 1;
9845 }
Michael Chand3c7b882006-03-23 01:28:25 -08009846
Matt Carlson989a9d22007-05-05 11:51:05 -07009847 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
9848 switch (nvcfg1) {
Michael Chand3c7b882006-03-23 01:28:25 -08009849 case FLASH_5755VENDOR_ATMEL_FLASH_1:
9850 case FLASH_5755VENDOR_ATMEL_FLASH_2:
9851 case FLASH_5755VENDOR_ATMEL_FLASH_3:
Matt Carlson70b65a22007-07-11 19:48:50 -07009852 case FLASH_5755VENDOR_ATMEL_FLASH_5:
Michael Chand3c7b882006-03-23 01:28:25 -08009853 tp->nvram_jedecnum = JEDEC_ATMEL;
9854 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9855 tp->tg3_flags2 |= TG3_FLG2_FLASH;
9856 tp->nvram_pagesize = 264;
Matt Carlson70b65a22007-07-11 19:48:50 -07009857 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
9858 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
Matt Carlson989a9d22007-05-05 11:51:05 -07009859 tp->nvram_size = (protect ? 0x3e200 : 0x80000);
9860 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
9861 tp->nvram_size = (protect ? 0x1f200 : 0x40000);
9862 else
9863 tp->nvram_size = (protect ? 0x1f200 : 0x20000);
Michael Chand3c7b882006-03-23 01:28:25 -08009864 break;
9865 case FLASH_5752VENDOR_ST_M45PE10:
9866 case FLASH_5752VENDOR_ST_M45PE20:
9867 case FLASH_5752VENDOR_ST_M45PE40:
9868 tp->nvram_jedecnum = JEDEC_ST;
9869 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9870 tp->tg3_flags2 |= TG3_FLG2_FLASH;
9871 tp->nvram_pagesize = 256;
Matt Carlson989a9d22007-05-05 11:51:05 -07009872 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
9873 tp->nvram_size = (protect ? 0x10000 : 0x20000);
9874 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
9875 tp->nvram_size = (protect ? 0x10000 : 0x40000);
9876 else
9877 tp->nvram_size = (protect ? 0x20000 : 0x80000);
Michael Chand3c7b882006-03-23 01:28:25 -08009878 break;
9879 }
9880}
9881
Michael Chan1b277772006-03-20 22:27:48 -08009882static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
9883{
9884 u32 nvcfg1;
9885
9886 nvcfg1 = tr32(NVRAM_CFG1);
9887
9888 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
9889 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
9890 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
9891 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
9892 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
9893 tp->nvram_jedecnum = JEDEC_ATMEL;
9894 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9895 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
9896
9897 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
9898 tw32(NVRAM_CFG1, nvcfg1);
9899 break;
9900 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
9901 case FLASH_5755VENDOR_ATMEL_FLASH_1:
9902 case FLASH_5755VENDOR_ATMEL_FLASH_2:
9903 case FLASH_5755VENDOR_ATMEL_FLASH_3:
9904 tp->nvram_jedecnum = JEDEC_ATMEL;
9905 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9906 tp->tg3_flags2 |= TG3_FLG2_FLASH;
9907 tp->nvram_pagesize = 264;
9908 break;
9909 case FLASH_5752VENDOR_ST_M45PE10:
9910 case FLASH_5752VENDOR_ST_M45PE20:
9911 case FLASH_5752VENDOR_ST_M45PE40:
9912 tp->nvram_jedecnum = JEDEC_ST;
9913 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9914 tp->tg3_flags2 |= TG3_FLG2_FLASH;
9915 tp->nvram_pagesize = 256;
9916 break;
9917 }
9918}
9919
Matt Carlson6b91fa02007-10-10 18:01:09 -07009920static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
9921{
9922 u32 nvcfg1, protect = 0;
9923
9924 nvcfg1 = tr32(NVRAM_CFG1);
9925
9926 /* NVRAM protection for TPM */
9927 if (nvcfg1 & (1 << 27)) {
9928 tp->tg3_flags2 |= TG3_FLG2_PROTECTED_NVRAM;
9929 protect = 1;
9930 }
9931
9932 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
9933 switch (nvcfg1) {
9934 case FLASH_5761VENDOR_ATMEL_ADB021D:
9935 case FLASH_5761VENDOR_ATMEL_ADB041D:
9936 case FLASH_5761VENDOR_ATMEL_ADB081D:
9937 case FLASH_5761VENDOR_ATMEL_ADB161D:
9938 case FLASH_5761VENDOR_ATMEL_MDB021D:
9939 case FLASH_5761VENDOR_ATMEL_MDB041D:
9940 case FLASH_5761VENDOR_ATMEL_MDB081D:
9941 case FLASH_5761VENDOR_ATMEL_MDB161D:
9942 tp->nvram_jedecnum = JEDEC_ATMEL;
9943 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9944 tp->tg3_flags2 |= TG3_FLG2_FLASH;
9945 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
9946 tp->nvram_pagesize = 256;
9947 break;
9948 case FLASH_5761VENDOR_ST_A_M45PE20:
9949 case FLASH_5761VENDOR_ST_A_M45PE40:
9950 case FLASH_5761VENDOR_ST_A_M45PE80:
9951 case FLASH_5761VENDOR_ST_A_M45PE16:
9952 case FLASH_5761VENDOR_ST_M_M45PE20:
9953 case FLASH_5761VENDOR_ST_M_M45PE40:
9954 case FLASH_5761VENDOR_ST_M_M45PE80:
9955 case FLASH_5761VENDOR_ST_M_M45PE16:
9956 tp->nvram_jedecnum = JEDEC_ST;
9957 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9958 tp->tg3_flags2 |= TG3_FLG2_FLASH;
9959 tp->nvram_pagesize = 256;
9960 break;
9961 }
9962
9963 if (protect) {
9964 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
9965 } else {
9966 switch (nvcfg1) {
9967 case FLASH_5761VENDOR_ATMEL_ADB161D:
9968 case FLASH_5761VENDOR_ATMEL_MDB161D:
9969 case FLASH_5761VENDOR_ST_A_M45PE16:
9970 case FLASH_5761VENDOR_ST_M_M45PE16:
9971 tp->nvram_size = 0x100000;
9972 break;
9973 case FLASH_5761VENDOR_ATMEL_ADB081D:
9974 case FLASH_5761VENDOR_ATMEL_MDB081D:
9975 case FLASH_5761VENDOR_ST_A_M45PE80:
9976 case FLASH_5761VENDOR_ST_M_M45PE80:
9977 tp->nvram_size = 0x80000;
9978 break;
9979 case FLASH_5761VENDOR_ATMEL_ADB041D:
9980 case FLASH_5761VENDOR_ATMEL_MDB041D:
9981 case FLASH_5761VENDOR_ST_A_M45PE40:
9982 case FLASH_5761VENDOR_ST_M_M45PE40:
9983 tp->nvram_size = 0x40000;
9984 break;
9985 case FLASH_5761VENDOR_ATMEL_ADB021D:
9986 case FLASH_5761VENDOR_ATMEL_MDB021D:
9987 case FLASH_5761VENDOR_ST_A_M45PE20:
9988 case FLASH_5761VENDOR_ST_M_M45PE20:
9989 tp->nvram_size = 0x20000;
9990 break;
9991 }
9992 }
9993}
9994
Michael Chanb5d37722006-09-27 16:06:21 -07009995static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
9996{
9997 tp->nvram_jedecnum = JEDEC_ATMEL;
9998 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
9999 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
10000}
10001
Linus Torvalds1da177e2005-04-16 15:20:36 -070010002/* Chips other than 5700/5701 use the NVRAM for fetching info. */
10003static void __devinit tg3_nvram_init(struct tg3 *tp)
10004{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010005 tw32_f(GRC_EEPROM_ADDR,
10006 (EEPROM_ADDR_FSM_RESET |
10007 (EEPROM_DEFAULT_CLOCK_PERIOD <<
10008 EEPROM_ADDR_CLKPERD_SHIFT)));
10009
Michael Chan9d57f012006-12-07 00:23:25 -080010010 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010011
10012 /* Enable seeprom accesses. */
10013 tw32_f(GRC_LOCAL_CTRL,
10014 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
10015 udelay(100);
10016
10017 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
10018 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
10019 tp->tg3_flags |= TG3_FLAG_NVRAM;
10020
Michael Chanec41c7d2006-01-17 02:40:55 -080010021 if (tg3_nvram_lock(tp)) {
10022 printk(KERN_WARNING PFX "%s: Cannot get nvarm lock, "
10023 "tg3_nvram_init failed.\n", tp->dev->name);
10024 return;
10025 }
Michael Chane6af3012005-04-21 17:12:05 -070010026 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010027
Matt Carlson989a9d22007-05-05 11:51:05 -070010028 tp->nvram_size = 0;
10029
Michael Chan361b4ac2005-04-21 17:11:21 -070010030 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
10031 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080010032 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
10033 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070010034 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
10035 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784)
Michael Chan1b277772006-03-20 22:27:48 -080010036 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070010037 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
10038 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070010039 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10040 tg3_get_5906_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070010041 else
10042 tg3_get_nvram_info(tp);
10043
Matt Carlson989a9d22007-05-05 11:51:05 -070010044 if (tp->nvram_size == 0)
10045 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010046
Michael Chane6af3012005-04-21 17:12:05 -070010047 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080010048 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010049
10050 } else {
10051 tp->tg3_flags &= ~(TG3_FLAG_NVRAM | TG3_FLAG_NVRAM_BUFFERED);
10052
10053 tg3_get_eeprom_size(tp);
10054 }
10055}
10056
10057static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
10058 u32 offset, u32 *val)
10059{
10060 u32 tmp;
10061 int i;
10062
10063 if (offset > EEPROM_ADDR_ADDR_MASK ||
10064 (offset % 4) != 0)
10065 return -EINVAL;
10066
10067 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
10068 EEPROM_ADDR_DEVID_MASK |
10069 EEPROM_ADDR_READ);
10070 tw32(GRC_EEPROM_ADDR,
10071 tmp |
10072 (0 << EEPROM_ADDR_DEVID_SHIFT) |
10073 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
10074 EEPROM_ADDR_ADDR_MASK) |
10075 EEPROM_ADDR_READ | EEPROM_ADDR_START);
10076
Michael Chan9d57f012006-12-07 00:23:25 -080010077 for (i = 0; i < 1000; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010078 tmp = tr32(GRC_EEPROM_ADDR);
10079
10080 if (tmp & EEPROM_ADDR_COMPLETE)
10081 break;
Michael Chan9d57f012006-12-07 00:23:25 -080010082 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010083 }
10084 if (!(tmp & EEPROM_ADDR_COMPLETE))
10085 return -EBUSY;
10086
10087 *val = tr32(GRC_EEPROM_DATA);
10088 return 0;
10089}
10090
10091#define NVRAM_CMD_TIMEOUT 10000
10092
10093static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
10094{
10095 int i;
10096
10097 tw32(NVRAM_CMD, nvram_cmd);
10098 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
10099 udelay(10);
10100 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
10101 udelay(10);
10102 break;
10103 }
10104 }
10105 if (i == NVRAM_CMD_TIMEOUT) {
10106 return -EBUSY;
10107 }
10108 return 0;
10109}
10110
Michael Chan18201802006-03-20 22:29:15 -080010111static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
10112{
10113 if ((tp->tg3_flags & TG3_FLAG_NVRAM) &&
10114 (tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) &&
10115 (tp->tg3_flags2 & TG3_FLG2_FLASH) &&
Matt Carlson6b91fa02007-10-10 18:01:09 -070010116 !(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM_ADDR_TRANS) &&
Michael Chan18201802006-03-20 22:29:15 -080010117 (tp->nvram_jedecnum == JEDEC_ATMEL))
10118
10119 addr = ((addr / tp->nvram_pagesize) <<
10120 ATMEL_AT45DB0X1B_PAGE_POS) +
10121 (addr % tp->nvram_pagesize);
10122
10123 return addr;
10124}
10125
Michael Chanc4e65752006-03-20 22:29:32 -080010126static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
10127{
10128 if ((tp->tg3_flags & TG3_FLAG_NVRAM) &&
10129 (tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) &&
10130 (tp->tg3_flags2 & TG3_FLG2_FLASH) &&
Matt Carlson6b91fa02007-10-10 18:01:09 -070010131 !(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM_ADDR_TRANS) &&
Michael Chanc4e65752006-03-20 22:29:32 -080010132 (tp->nvram_jedecnum == JEDEC_ATMEL))
10133
10134 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
10135 tp->nvram_pagesize) +
10136 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
10137
10138 return addr;
10139}
10140
Linus Torvalds1da177e2005-04-16 15:20:36 -070010141static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
10142{
10143 int ret;
10144
Linus Torvalds1da177e2005-04-16 15:20:36 -070010145 if (!(tp->tg3_flags & TG3_FLAG_NVRAM))
10146 return tg3_nvram_read_using_eeprom(tp, offset, val);
10147
Michael Chan18201802006-03-20 22:29:15 -080010148 offset = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010149
10150 if (offset > NVRAM_ADDR_MSK)
10151 return -EINVAL;
10152
Michael Chanec41c7d2006-01-17 02:40:55 -080010153 ret = tg3_nvram_lock(tp);
10154 if (ret)
10155 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010156
Michael Chane6af3012005-04-21 17:12:05 -070010157 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010158
10159 tw32(NVRAM_ADDR, offset);
10160 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
10161 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
10162
10163 if (ret == 0)
10164 *val = swab32(tr32(NVRAM_RDDATA));
10165
Michael Chane6af3012005-04-21 17:12:05 -070010166 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010167
Michael Chan381291b2005-12-13 21:08:21 -080010168 tg3_nvram_unlock(tp);
10169
Linus Torvalds1da177e2005-04-16 15:20:36 -070010170 return ret;
10171}
10172
Michael Chan18201802006-03-20 22:29:15 -080010173static int tg3_nvram_read_swab(struct tg3 *tp, u32 offset, u32 *val)
10174{
10175 int err;
10176 u32 tmp;
10177
10178 err = tg3_nvram_read(tp, offset, &tmp);
10179 *val = swab32(tmp);
10180 return err;
10181}
10182
Linus Torvalds1da177e2005-04-16 15:20:36 -070010183static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
10184 u32 offset, u32 len, u8 *buf)
10185{
10186 int i, j, rc = 0;
10187 u32 val;
10188
10189 for (i = 0; i < len; i += 4) {
10190 u32 addr, data;
10191
10192 addr = offset + i;
10193
10194 memcpy(&data, buf + i, 4);
10195
10196 tw32(GRC_EEPROM_DATA, cpu_to_le32(data));
10197
10198 val = tr32(GRC_EEPROM_ADDR);
10199 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
10200
10201 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
10202 EEPROM_ADDR_READ);
10203 tw32(GRC_EEPROM_ADDR, val |
10204 (0 << EEPROM_ADDR_DEVID_SHIFT) |
10205 (addr & EEPROM_ADDR_ADDR_MASK) |
10206 EEPROM_ADDR_START |
10207 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010208
Michael Chan9d57f012006-12-07 00:23:25 -080010209 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010210 val = tr32(GRC_EEPROM_ADDR);
10211
10212 if (val & EEPROM_ADDR_COMPLETE)
10213 break;
Michael Chan9d57f012006-12-07 00:23:25 -080010214 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010215 }
10216 if (!(val & EEPROM_ADDR_COMPLETE)) {
10217 rc = -EBUSY;
10218 break;
10219 }
10220 }
10221
10222 return rc;
10223}
10224
10225/* offset and length are dword aligned */
10226static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
10227 u8 *buf)
10228{
10229 int ret = 0;
10230 u32 pagesize = tp->nvram_pagesize;
10231 u32 pagemask = pagesize - 1;
10232 u32 nvram_cmd;
10233 u8 *tmp;
10234
10235 tmp = kmalloc(pagesize, GFP_KERNEL);
10236 if (tmp == NULL)
10237 return -ENOMEM;
10238
10239 while (len) {
10240 int j;
Michael Chane6af3012005-04-21 17:12:05 -070010241 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010242
10243 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010244
Linus Torvalds1da177e2005-04-16 15:20:36 -070010245 for (j = 0; j < pagesize; j += 4) {
10246 if ((ret = tg3_nvram_read(tp, phy_addr + j,
10247 (u32 *) (tmp + j))))
10248 break;
10249 }
10250 if (ret)
10251 break;
10252
10253 page_off = offset & pagemask;
10254 size = pagesize;
10255 if (len < size)
10256 size = len;
10257
10258 len -= size;
10259
10260 memcpy(tmp + page_off, buf, size);
10261
10262 offset = offset + (pagesize - page_off);
10263
Michael Chane6af3012005-04-21 17:12:05 -070010264 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010265
10266 /*
10267 * Before we can erase the flash page, we need
10268 * to issue a special "write enable" command.
10269 */
10270 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
10271
10272 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
10273 break;
10274
10275 /* Erase the target page */
10276 tw32(NVRAM_ADDR, phy_addr);
10277
10278 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
10279 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
10280
10281 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
10282 break;
10283
10284 /* Issue another write enable to start the write. */
10285 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
10286
10287 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
10288 break;
10289
10290 for (j = 0; j < pagesize; j += 4) {
10291 u32 data;
10292
10293 data = *((u32 *) (tmp + j));
10294 tw32(NVRAM_WRDATA, cpu_to_be32(data));
10295
10296 tw32(NVRAM_ADDR, phy_addr + j);
10297
10298 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
10299 NVRAM_CMD_WR;
10300
10301 if (j == 0)
10302 nvram_cmd |= NVRAM_CMD_FIRST;
10303 else if (j == (pagesize - 4))
10304 nvram_cmd |= NVRAM_CMD_LAST;
10305
10306 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
10307 break;
10308 }
10309 if (ret)
10310 break;
10311 }
10312
10313 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
10314 tg3_nvram_exec_cmd(tp, nvram_cmd);
10315
10316 kfree(tmp);
10317
10318 return ret;
10319}
10320
10321/* offset and length are dword aligned */
10322static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
10323 u8 *buf)
10324{
10325 int i, ret = 0;
10326
10327 for (i = 0; i < len; i += 4, offset += 4) {
10328 u32 data, page_off, phy_addr, nvram_cmd;
10329
10330 memcpy(&data, buf + i, 4);
10331 tw32(NVRAM_WRDATA, cpu_to_be32(data));
10332
10333 page_off = offset % tp->nvram_pagesize;
10334
Michael Chan18201802006-03-20 22:29:15 -080010335 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010336
10337 tw32(NVRAM_ADDR, phy_addr);
10338
10339 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
10340
10341 if ((page_off == 0) || (i == 0))
10342 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070010343 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010344 nvram_cmd |= NVRAM_CMD_LAST;
10345
10346 if (i == (len - 4))
10347 nvram_cmd |= NVRAM_CMD_LAST;
10348
Michael Chan4c987482005-09-05 17:52:38 -070010349 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752) &&
Michael Chanaf36e6b2006-03-23 01:28:06 -080010350 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5755) &&
Michael Chan1b277772006-03-20 22:27:48 -080010351 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5787) &&
Matt Carlsond30cdd22007-10-07 23:28:35 -070010352 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784) &&
Matt Carlson9936bcf2007-10-10 18:03:07 -070010353 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) &&
Michael Chan4c987482005-09-05 17:52:38 -070010354 (tp->nvram_jedecnum == JEDEC_ST) &&
10355 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010356
10357 if ((ret = tg3_nvram_exec_cmd(tp,
10358 NVRAM_CMD_WREN | NVRAM_CMD_GO |
10359 NVRAM_CMD_DONE)))
10360
10361 break;
10362 }
10363 if (!(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
10364 /* We always do complete word writes to eeprom. */
10365 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
10366 }
10367
10368 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
10369 break;
10370 }
10371 return ret;
10372}
10373
10374/* offset and length are dword aligned */
10375static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
10376{
10377 int ret;
10378
Linus Torvalds1da177e2005-04-16 15:20:36 -070010379 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070010380 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
10381 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010382 udelay(40);
10383 }
10384
10385 if (!(tp->tg3_flags & TG3_FLAG_NVRAM)) {
10386 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
10387 }
10388 else {
10389 u32 grc_mode;
10390
Michael Chanec41c7d2006-01-17 02:40:55 -080010391 ret = tg3_nvram_lock(tp);
10392 if (ret)
10393 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010394
Michael Chane6af3012005-04-21 17:12:05 -070010395 tg3_enable_nvram_access(tp);
10396 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
10397 !(tp->tg3_flags2 & TG3_FLG2_PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010398 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010399
10400 grc_mode = tr32(GRC_MODE);
10401 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
10402
10403 if ((tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) ||
10404 !(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
10405
10406 ret = tg3_nvram_write_block_buffered(tp, offset, len,
10407 buf);
10408 }
10409 else {
10410 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
10411 buf);
10412 }
10413
10414 grc_mode = tr32(GRC_MODE);
10415 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
10416
Michael Chane6af3012005-04-21 17:12:05 -070010417 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010418 tg3_nvram_unlock(tp);
10419 }
10420
10421 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070010422 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010423 udelay(40);
10424 }
10425
10426 return ret;
10427}
10428
10429struct subsys_tbl_ent {
10430 u16 subsys_vendor, subsys_devid;
10431 u32 phy_id;
10432};
10433
10434static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
10435 /* Broadcom boards. */
10436 { PCI_VENDOR_ID_BROADCOM, 0x1644, PHY_ID_BCM5401 }, /* BCM95700A6 */
10437 { PCI_VENDOR_ID_BROADCOM, 0x0001, PHY_ID_BCM5701 }, /* BCM95701A5 */
10438 { PCI_VENDOR_ID_BROADCOM, 0x0002, PHY_ID_BCM8002 }, /* BCM95700T6 */
10439 { PCI_VENDOR_ID_BROADCOM, 0x0003, 0 }, /* BCM95700A9 */
10440 { PCI_VENDOR_ID_BROADCOM, 0x0005, PHY_ID_BCM5701 }, /* BCM95701T1 */
10441 { PCI_VENDOR_ID_BROADCOM, 0x0006, PHY_ID_BCM5701 }, /* BCM95701T8 */
10442 { PCI_VENDOR_ID_BROADCOM, 0x0007, 0 }, /* BCM95701A7 */
10443 { PCI_VENDOR_ID_BROADCOM, 0x0008, PHY_ID_BCM5701 }, /* BCM95701A10 */
10444 { PCI_VENDOR_ID_BROADCOM, 0x8008, PHY_ID_BCM5701 }, /* BCM95701A12 */
10445 { PCI_VENDOR_ID_BROADCOM, 0x0009, PHY_ID_BCM5703 }, /* BCM95703Ax1 */
10446 { PCI_VENDOR_ID_BROADCOM, 0x8009, PHY_ID_BCM5703 }, /* BCM95703Ax2 */
10447
10448 /* 3com boards. */
10449 { PCI_VENDOR_ID_3COM, 0x1000, PHY_ID_BCM5401 }, /* 3C996T */
10450 { PCI_VENDOR_ID_3COM, 0x1006, PHY_ID_BCM5701 }, /* 3C996BT */
10451 { PCI_VENDOR_ID_3COM, 0x1004, 0 }, /* 3C996SX */
10452 { PCI_VENDOR_ID_3COM, 0x1007, PHY_ID_BCM5701 }, /* 3C1000T */
10453 { PCI_VENDOR_ID_3COM, 0x1008, PHY_ID_BCM5701 }, /* 3C940BR01 */
10454
10455 /* DELL boards. */
10456 { PCI_VENDOR_ID_DELL, 0x00d1, PHY_ID_BCM5401 }, /* VIPER */
10457 { PCI_VENDOR_ID_DELL, 0x0106, PHY_ID_BCM5401 }, /* JAGUAR */
10458 { PCI_VENDOR_ID_DELL, 0x0109, PHY_ID_BCM5411 }, /* MERLOT */
10459 { PCI_VENDOR_ID_DELL, 0x010a, PHY_ID_BCM5411 }, /* SLIM_MERLOT */
10460
10461 /* Compaq boards. */
10462 { PCI_VENDOR_ID_COMPAQ, 0x007c, PHY_ID_BCM5701 }, /* BANSHEE */
10463 { PCI_VENDOR_ID_COMPAQ, 0x009a, PHY_ID_BCM5701 }, /* BANSHEE_2 */
10464 { PCI_VENDOR_ID_COMPAQ, 0x007d, 0 }, /* CHANGELING */
10465 { PCI_VENDOR_ID_COMPAQ, 0x0085, PHY_ID_BCM5701 }, /* NC7780 */
10466 { PCI_VENDOR_ID_COMPAQ, 0x0099, PHY_ID_BCM5701 }, /* NC7780_2 */
10467
10468 /* IBM boards. */
10469 { PCI_VENDOR_ID_IBM, 0x0281, 0 } /* IBM??? */
10470};
10471
10472static inline struct subsys_tbl_ent *lookup_by_subsys(struct tg3 *tp)
10473{
10474 int i;
10475
10476 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
10477 if ((subsys_id_to_phy_id[i].subsys_vendor ==
10478 tp->pdev->subsystem_vendor) &&
10479 (subsys_id_to_phy_id[i].subsys_devid ==
10480 tp->pdev->subsystem_device))
10481 return &subsys_id_to_phy_id[i];
10482 }
10483 return NULL;
10484}
10485
Michael Chan7d0c41e2005-04-21 17:06:20 -070010486static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010487{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010488 u32 val;
Michael Chancaf636c72006-03-22 01:05:31 -080010489 u16 pmcsr;
10490
10491 /* On some early chips the SRAM cannot be accessed in D3hot state,
10492 * so need make sure we're in D0.
10493 */
10494 pci_read_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, &pmcsr);
10495 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
10496 pci_write_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, pmcsr);
10497 msleep(1);
Michael Chan7d0c41e2005-04-21 17:06:20 -070010498
10499 /* Make sure register accesses (indirect or otherwise)
10500 * will function correctly.
10501 */
10502 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
10503 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010504
David S. Millerf49639e2006-06-09 11:58:36 -070010505 /* The memory arbiter has to be enabled in order for SRAM accesses
10506 * to succeed. Normally on powerup the tg3 chip firmware will make
10507 * sure it is enabled, but other entities such as system netboot
10508 * code might disable it.
10509 */
10510 val = tr32(MEMARB_MODE);
10511 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
10512
Linus Torvalds1da177e2005-04-16 15:20:36 -070010513 tp->phy_id = PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070010514 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
10515
Gary Zambranoa85feb82007-05-05 11:52:19 -070010516 /* Assume an onboard device and WOL capable by default. */
10517 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT | TG3_FLAG_WOL_CAP;
David S. Miller72b845e2006-03-14 14:11:48 -080010518
Michael Chanb5d37722006-09-27 16:06:21 -070010519 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080010520 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Michael Chanb5d37722006-09-27 16:06:21 -070010521 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080010522 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
10523 }
Matt Carlson0527ba32007-10-10 18:03:30 -070010524 val = tr32(VCPU_CFGSHDW);
10525 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Matt Carlson8ed5d972007-05-07 00:25:49 -070010526 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
Matt Carlson0527ba32007-10-10 18:03:30 -070010527 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
10528 (val & VCPU_CFGSHDW_WOL_MAGPKT))
10529 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Michael Chanb5d37722006-09-27 16:06:21 -070010530 return;
10531 }
10532
Linus Torvalds1da177e2005-04-16 15:20:36 -070010533 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
10534 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
10535 u32 nic_cfg, led_cfg;
Michael Chan7d0c41e2005-04-21 17:06:20 -070010536 u32 nic_phy_id, ver, cfg2 = 0, eeprom_phy_id;
10537 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010538
10539 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
10540 tp->nic_sram_data_cfg = nic_cfg;
10541
10542 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
10543 ver >>= NIC_SRAM_DATA_VER_SHIFT;
10544 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
10545 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
10546 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703) &&
10547 (ver > 0) && (ver < 0x100))
10548 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
10549
Linus Torvalds1da177e2005-04-16 15:20:36 -070010550 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
10551 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
10552 eeprom_phy_serdes = 1;
10553
10554 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
10555 if (nic_phy_id != 0) {
10556 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
10557 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
10558
10559 eeprom_phy_id = (id1 >> 16) << 10;
10560 eeprom_phy_id |= (id2 & 0xfc00) << 16;
10561 eeprom_phy_id |= (id2 & 0x03ff) << 0;
10562 } else
10563 eeprom_phy_id = 0;
10564
Michael Chan7d0c41e2005-04-21 17:06:20 -070010565 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070010566 if (eeprom_phy_serdes) {
Michael Chana4e2b342005-10-26 15:46:52 -070010567 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chan747e8f82005-07-25 12:33:22 -070010568 tp->tg3_flags2 |= TG3_FLG2_MII_SERDES;
10569 else
10570 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
10571 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070010572
John W. Linvillecbf46852005-04-21 17:01:29 -070010573 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010574 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
10575 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070010576 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070010577 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
10578
10579 switch (led_cfg) {
10580 default:
10581 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
10582 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
10583 break;
10584
10585 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
10586 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
10587 break;
10588
10589 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
10590 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070010591
10592 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
10593 * read on some older 5700/5701 bootcode.
10594 */
10595 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
10596 ASIC_REV_5700 ||
10597 GET_ASIC_REV(tp->pci_chip_rev_id) ==
10598 ASIC_REV_5701)
10599 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
10600
Linus Torvalds1da177e2005-04-16 15:20:36 -070010601 break;
10602
10603 case SHASTA_EXT_LED_SHARED:
10604 tp->led_ctrl = LED_CTRL_MODE_SHARED;
10605 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
10606 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
10607 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
10608 LED_CTRL_MODE_PHY_2);
10609 break;
10610
10611 case SHASTA_EXT_LED_MAC:
10612 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
10613 break;
10614
10615 case SHASTA_EXT_LED_COMBO:
10616 tp->led_ctrl = LED_CTRL_MODE_COMBO;
10617 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
10618 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
10619 LED_CTRL_MODE_PHY_2);
10620 break;
10621
10622 };
10623
10624 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
10625 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
10626 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
10627 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
10628
Matt Carlson5f608912007-11-12 21:17:07 -080010629 if (tp->pci_chip_rev_id == CHIPREV_ID_5784_A0)
10630 tp->led_ctrl = LED_CTRL_MODE_MAC;
10631
Michael Chan9d26e212006-12-07 00:21:14 -080010632 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010633 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080010634 if ((tp->pdev->subsystem_vendor ==
10635 PCI_VENDOR_ID_ARIMA) &&
10636 (tp->pdev->subsystem_device == 0x205a ||
10637 tp->pdev->subsystem_device == 0x2063))
10638 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
10639 } else {
David S. Millerf49639e2006-06-09 11:58:36 -070010640 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080010641 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
10642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010643
10644 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
10645 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
John W. Linvillecbf46852005-04-21 17:01:29 -070010646 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010647 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
10648 }
Matt Carlson0d3031d2007-10-10 18:02:43 -070010649 if (nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE)
10650 tp->tg3_flags3 |= TG3_FLG3_ENABLE_APE;
Gary Zambranoa85feb82007-05-05 11:52:19 -070010651 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES &&
10652 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
10653 tp->tg3_flags &= ~TG3_FLAG_WOL_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010654
Matt Carlson0527ba32007-10-10 18:03:30 -070010655 if (tp->tg3_flags & TG3_FLAG_WOL_CAP &&
10656 nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)
10657 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
10658
Linus Torvalds1da177e2005-04-16 15:20:36 -070010659 if (cfg2 & (1 << 17))
10660 tp->tg3_flags2 |= TG3_FLG2_CAPACITIVE_COUPLING;
10661
10662 /* serdes signal pre-emphasis in register 0x590 set by */
10663 /* bootcode if bit 18 is set */
10664 if (cfg2 & (1 << 18))
10665 tp->tg3_flags2 |= TG3_FLG2_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070010666
10667 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
10668 u32 cfg3;
10669
10670 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
10671 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
10672 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
10673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010674 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070010675}
10676
10677static int __devinit tg3_phy_probe(struct tg3 *tp)
10678{
10679 u32 hw_phy_id_1, hw_phy_id_2;
10680 u32 hw_phy_id, hw_phy_id_masked;
10681 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010682
10683 /* Reading the PHY ID register can conflict with ASF
10684 * firwmare access to the PHY hardware.
10685 */
10686 err = 0;
Matt Carlson0d3031d2007-10-10 18:02:43 -070010687 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
10688 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010689 hw_phy_id = hw_phy_id_masked = PHY_ID_INVALID;
10690 } else {
10691 /* Now read the physical PHY_ID from the chip and verify
10692 * that it is sane. If it doesn't look good, we fall back
10693 * to either the hard-coded table based PHY_ID and failing
10694 * that the value found in the eeprom area.
10695 */
10696 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
10697 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
10698
10699 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
10700 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
10701 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
10702
10703 hw_phy_id_masked = hw_phy_id & PHY_ID_MASK;
10704 }
10705
10706 if (!err && KNOWN_PHY_ID(hw_phy_id_masked)) {
10707 tp->phy_id = hw_phy_id;
10708 if (hw_phy_id_masked == PHY_ID_BCM8002)
10709 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070010710 else
10711 tp->tg3_flags2 &= ~TG3_FLG2_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010712 } else {
Michael Chan7d0c41e2005-04-21 17:06:20 -070010713 if (tp->phy_id != PHY_ID_INVALID) {
10714 /* Do nothing, phy ID already set up in
10715 * tg3_get_eeprom_hw_cfg().
10716 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010717 } else {
10718 struct subsys_tbl_ent *p;
10719
10720 /* No eeprom signature? Try the hardcoded
10721 * subsys device table.
10722 */
10723 p = lookup_by_subsys(tp);
10724 if (!p)
10725 return -ENODEV;
10726
10727 tp->phy_id = p->phy_id;
10728 if (!tp->phy_id ||
10729 tp->phy_id == PHY_ID_BCM8002)
10730 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
10731 }
10732 }
10733
Michael Chan747e8f82005-07-25 12:33:22 -070010734 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) &&
Matt Carlson0d3031d2007-10-10 18:02:43 -070010735 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010736 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan3600d912006-12-07 00:21:48 -080010737 u32 bmsr, adv_reg, tg3_ctrl, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010738
10739 tg3_readphy(tp, MII_BMSR, &bmsr);
10740 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
10741 (bmsr & BMSR_LSTATUS))
10742 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010743
Linus Torvalds1da177e2005-04-16 15:20:36 -070010744 err = tg3_phy_reset(tp);
10745 if (err)
10746 return err;
10747
10748 adv_reg = (ADVERTISE_10HALF | ADVERTISE_10FULL |
10749 ADVERTISE_100HALF | ADVERTISE_100FULL |
10750 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
10751 tg3_ctrl = 0;
10752 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
10753 tg3_ctrl = (MII_TG3_CTRL_ADV_1000_HALF |
10754 MII_TG3_CTRL_ADV_1000_FULL);
10755 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
10756 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
10757 tg3_ctrl |= (MII_TG3_CTRL_AS_MASTER |
10758 MII_TG3_CTRL_ENABLE_AS_MASTER);
10759 }
10760
Michael Chan3600d912006-12-07 00:21:48 -080010761 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
10762 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
10763 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
10764 if (!tg3_copper_is_advertising_all(tp, mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010765 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
10766
10767 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
10768 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
10769
10770 tg3_writephy(tp, MII_BMCR,
10771 BMCR_ANENABLE | BMCR_ANRESTART);
10772 }
10773 tg3_phy_set_wirespeed(tp);
10774
10775 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
10776 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
10777 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
10778 }
10779
10780skip_phy_reset:
10781 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
10782 err = tg3_init_5401phy_dsp(tp);
10783 if (err)
10784 return err;
10785 }
10786
10787 if (!err && ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401)) {
10788 err = tg3_init_5401phy_dsp(tp);
10789 }
10790
Michael Chan747e8f82005-07-25 12:33:22 -070010791 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010792 tp->link_config.advertising =
10793 (ADVERTISED_1000baseT_Half |
10794 ADVERTISED_1000baseT_Full |
10795 ADVERTISED_Autoneg |
10796 ADVERTISED_FIBRE);
10797 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
10798 tp->link_config.advertising &=
10799 ~(ADVERTISED_1000baseT_Half |
10800 ADVERTISED_1000baseT_Full);
10801
10802 return err;
10803}
10804
10805static void __devinit tg3_read_partno(struct tg3 *tp)
10806{
10807 unsigned char vpd_data[256];
Michael Chanaf2c6a42006-11-07 14:57:51 -080010808 unsigned int i;
Michael Chan1b277772006-03-20 22:27:48 -080010809 u32 magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010810
Michael Chan18201802006-03-20 22:29:15 -080010811 if (tg3_nvram_read_swab(tp, 0x0, &magic))
David S. Millerf49639e2006-06-09 11:58:36 -070010812 goto out_not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010813
Michael Chan18201802006-03-20 22:29:15 -080010814 if (magic == TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080010815 for (i = 0; i < 256; i += 4) {
10816 u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010817
Michael Chan1b277772006-03-20 22:27:48 -080010818 if (tg3_nvram_read(tp, 0x100 + i, &tmp))
10819 goto out_not_found;
10820
10821 vpd_data[i + 0] = ((tmp >> 0) & 0xff);
10822 vpd_data[i + 1] = ((tmp >> 8) & 0xff);
10823 vpd_data[i + 2] = ((tmp >> 16) & 0xff);
10824 vpd_data[i + 3] = ((tmp >> 24) & 0xff);
10825 }
10826 } else {
10827 int vpd_cap;
10828
10829 vpd_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_VPD);
10830 for (i = 0; i < 256; i += 4) {
10831 u32 tmp, j = 0;
10832 u16 tmp16;
10833
10834 pci_write_config_word(tp->pdev, vpd_cap + PCI_VPD_ADDR,
10835 i);
10836 while (j++ < 100) {
10837 pci_read_config_word(tp->pdev, vpd_cap +
10838 PCI_VPD_ADDR, &tmp16);
10839 if (tmp16 & 0x8000)
10840 break;
10841 msleep(1);
10842 }
David S. Millerf49639e2006-06-09 11:58:36 -070010843 if (!(tmp16 & 0x8000))
10844 goto out_not_found;
10845
Michael Chan1b277772006-03-20 22:27:48 -080010846 pci_read_config_dword(tp->pdev, vpd_cap + PCI_VPD_DATA,
10847 &tmp);
10848 tmp = cpu_to_le32(tmp);
10849 memcpy(&vpd_data[i], &tmp, 4);
10850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010851 }
10852
10853 /* Now parse and find the part number. */
Michael Chanaf2c6a42006-11-07 14:57:51 -080010854 for (i = 0; i < 254; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010855 unsigned char val = vpd_data[i];
Michael Chanaf2c6a42006-11-07 14:57:51 -080010856 unsigned int block_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010857
10858 if (val == 0x82 || val == 0x91) {
10859 i = (i + 3 +
10860 (vpd_data[i + 1] +
10861 (vpd_data[i + 2] << 8)));
10862 continue;
10863 }
10864
10865 if (val != 0x90)
10866 goto out_not_found;
10867
10868 block_end = (i + 3 +
10869 (vpd_data[i + 1] +
10870 (vpd_data[i + 2] << 8)));
10871 i += 3;
Michael Chanaf2c6a42006-11-07 14:57:51 -080010872
10873 if (block_end > 256)
10874 goto out_not_found;
10875
10876 while (i < (block_end - 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010877 if (vpd_data[i + 0] == 'P' &&
10878 vpd_data[i + 1] == 'N') {
10879 int partno_len = vpd_data[i + 2];
10880
Michael Chanaf2c6a42006-11-07 14:57:51 -080010881 i += 3;
10882 if (partno_len > 24 || (partno_len + i) > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010883 goto out_not_found;
10884
10885 memcpy(tp->board_part_number,
Michael Chanaf2c6a42006-11-07 14:57:51 -080010886 &vpd_data[i], partno_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010887
10888 /* Success. */
10889 return;
10890 }
Michael Chanaf2c6a42006-11-07 14:57:51 -080010891 i += 3 + vpd_data[i + 2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070010892 }
10893
10894 /* Part number not found. */
10895 goto out_not_found;
10896 }
10897
10898out_not_found:
Michael Chanb5d37722006-09-27 16:06:21 -070010899 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10900 strcpy(tp->board_part_number, "BCM95906");
10901 else
10902 strcpy(tp->board_part_number, "none");
Linus Torvalds1da177e2005-04-16 15:20:36 -070010903}
10904
Matt Carlson9c8a6202007-10-21 16:16:08 -070010905static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
10906{
10907 u32 val;
10908
10909 if (tg3_nvram_read_swab(tp, offset, &val) ||
10910 (val & 0xfc000000) != 0x0c000000 ||
10911 tg3_nvram_read_swab(tp, offset + 4, &val) ||
10912 val != 0)
10913 return 0;
10914
10915 return 1;
10916}
10917
Michael Chanc4e65752006-03-20 22:29:32 -080010918static void __devinit tg3_read_fw_ver(struct tg3 *tp)
10919{
10920 u32 val, offset, start;
Matt Carlson9c8a6202007-10-21 16:16:08 -070010921 u32 ver_offset;
10922 int i, bcnt;
Michael Chanc4e65752006-03-20 22:29:32 -080010923
10924 if (tg3_nvram_read_swab(tp, 0, &val))
10925 return;
10926
10927 if (val != TG3_EEPROM_MAGIC)
10928 return;
10929
10930 if (tg3_nvram_read_swab(tp, 0xc, &offset) ||
10931 tg3_nvram_read_swab(tp, 0x4, &start))
10932 return;
10933
10934 offset = tg3_nvram_logical_addr(tp, offset);
Matt Carlson9c8a6202007-10-21 16:16:08 -070010935
10936 if (!tg3_fw_img_is_valid(tp, offset) ||
10937 tg3_nvram_read_swab(tp, offset + 8, &ver_offset))
Michael Chanc4e65752006-03-20 22:29:32 -080010938 return;
10939
Matt Carlson9c8a6202007-10-21 16:16:08 -070010940 offset = offset + ver_offset - start;
10941 for (i = 0; i < 16; i += 4) {
10942 if (tg3_nvram_read(tp, offset + i, &val))
Michael Chanc4e65752006-03-20 22:29:32 -080010943 return;
10944
Matt Carlson9c8a6202007-10-21 16:16:08 -070010945 val = le32_to_cpu(val);
10946 memcpy(tp->fw_ver + i, &val, 4);
Michael Chanc4e65752006-03-20 22:29:32 -080010947 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070010948
10949 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
Matt Carlson84af67f2007-11-12 21:08:59 -080010950 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
Matt Carlson9c8a6202007-10-21 16:16:08 -070010951 return;
10952
10953 for (offset = TG3_NVM_DIR_START;
10954 offset < TG3_NVM_DIR_END;
10955 offset += TG3_NVM_DIRENT_SIZE) {
10956 if (tg3_nvram_read_swab(tp, offset, &val))
10957 return;
10958
10959 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
10960 break;
10961 }
10962
10963 if (offset == TG3_NVM_DIR_END)
10964 return;
10965
10966 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
10967 start = 0x08000000;
10968 else if (tg3_nvram_read_swab(tp, offset - 4, &start))
10969 return;
10970
10971 if (tg3_nvram_read_swab(tp, offset + 4, &offset) ||
10972 !tg3_fw_img_is_valid(tp, offset) ||
10973 tg3_nvram_read_swab(tp, offset + 8, &val))
10974 return;
10975
10976 offset += val - start;
10977
10978 bcnt = strlen(tp->fw_ver);
10979
10980 tp->fw_ver[bcnt++] = ',';
10981 tp->fw_ver[bcnt++] = ' ';
10982
10983 for (i = 0; i < 4; i++) {
10984 if (tg3_nvram_read(tp, offset, &val))
10985 return;
10986
10987 val = le32_to_cpu(val);
10988 offset += sizeof(val);
10989
10990 if (bcnt > TG3_VER_SIZE - sizeof(val)) {
10991 memcpy(&tp->fw_ver[bcnt], &val, TG3_VER_SIZE - bcnt);
10992 break;
10993 }
10994
10995 memcpy(&tp->fw_ver[bcnt], &val, sizeof(val));
10996 bcnt += sizeof(val);
10997 }
10998
10999 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080011000}
11001
Michael Chan7544b092007-05-05 13:08:32 -070011002static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
11003
Linus Torvalds1da177e2005-04-16 15:20:36 -070011004static int __devinit tg3_get_invariants(struct tg3 *tp)
11005{
11006 static struct pci_device_id write_reorder_chipsets[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011007 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
11008 PCI_DEVICE_ID_AMD_FE_GATE_700C) },
John W. Linvillec165b002006-07-08 13:28:53 -070011009 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
11010 PCI_DEVICE_ID_AMD_8131_BRIDGE) },
Michael Chan399de502005-10-03 14:02:39 -070011011 { PCI_DEVICE(PCI_VENDOR_ID_VIA,
11012 PCI_DEVICE_ID_VIA_8385_0) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070011013 { },
11014 };
11015 u32 misc_ctrl_reg;
11016 u32 cacheline_sz_reg;
11017 u32 pci_state_reg, grc_misc_cfg;
11018 u32 val;
11019 u16 pci_cmd;
Michael Chanc7835a72006-11-15 21:14:42 -080011020 int err, pcie_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011021
Linus Torvalds1da177e2005-04-16 15:20:36 -070011022 /* Force memory write invalidate off. If we leave it on,
11023 * then on 5700_BX chips we have to enable a workaround.
11024 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
11025 * to match the cacheline size. The Broadcom driver have this
11026 * workaround but turns MWI off all the times so never uses
11027 * it. This seems to suggest that the workaround is insufficient.
11028 */
11029 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
11030 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
11031 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
11032
11033 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
11034 * has the register indirect write enable bit set before
11035 * we try to access any of the MMIO registers. It is also
11036 * critical that the PCI-X hw workaround situation is decided
11037 * before that as well.
11038 */
11039 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
11040 &misc_ctrl_reg);
11041
11042 tp->pci_chip_rev_id = (misc_ctrl_reg >>
11043 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070011044 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
11045 u32 prod_id_asic_rev;
11046
11047 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
11048 &prod_id_asic_rev);
11049 tp->pci_chip_rev_id = prod_id_asic_rev & PROD_ID_ASIC_REV_MASK;
11050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011051
Michael Chanff645be2005-04-21 17:09:53 -070011052 /* Wrong chip ID in 5752 A0. This code can be removed later
11053 * as A0 is not in production.
11054 */
11055 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
11056 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
11057
Michael Chan68929142005-08-09 20:17:14 -070011058 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
11059 * we need to disable memory and use config. cycles
11060 * only to access all registers. The 5702/03 chips
11061 * can mistakenly decode the special cycles from the
11062 * ICH chipsets as memory write cycles, causing corruption
11063 * of register and memory space. Only certain ICH bridges
11064 * will drive special cycles with non-zero data during the
11065 * address phase which can fall within the 5703's address
11066 * range. This is not an ICH bug as the PCI spec allows
11067 * non-zero address during special cycles. However, only
11068 * these ICH bridges are known to drive non-zero addresses
11069 * during special cycles.
11070 *
11071 * Since special cycles do not cross PCI bridges, we only
11072 * enable this workaround if the 5703 is on the secondary
11073 * bus of these ICH bridges.
11074 */
11075 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
11076 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
11077 static struct tg3_dev_id {
11078 u32 vendor;
11079 u32 device;
11080 u32 rev;
11081 } ich_chipsets[] = {
11082 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
11083 PCI_ANY_ID },
11084 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
11085 PCI_ANY_ID },
11086 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
11087 0xa },
11088 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
11089 PCI_ANY_ID },
11090 { },
11091 };
11092 struct tg3_dev_id *pci_id = &ich_chipsets[0];
11093 struct pci_dev *bridge = NULL;
11094
11095 while (pci_id->vendor != 0) {
11096 bridge = pci_get_device(pci_id->vendor, pci_id->device,
11097 bridge);
11098 if (!bridge) {
11099 pci_id++;
11100 continue;
11101 }
11102 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070011103 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070011104 continue;
11105 }
11106 if (bridge->subordinate &&
11107 (bridge->subordinate->number ==
11108 tp->pdev->bus->number)) {
11109
11110 tp->tg3_flags2 |= TG3_FLG2_ICH_WORKAROUND;
11111 pci_dev_put(bridge);
11112 break;
11113 }
11114 }
11115 }
11116
Michael Chan4a29cc22006-03-19 13:21:12 -080011117 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
11118 * DMA addresses > 40-bit. This bridge may have other additional
11119 * 57xx devices behind it in some 4-port NIC designs for example.
11120 * Any tg3 device found behind the bridge will also need the 40-bit
11121 * DMA workaround.
11122 */
Michael Chana4e2b342005-10-26 15:46:52 -070011123 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
11124 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
11125 tp->tg3_flags2 |= TG3_FLG2_5780_CLASS;
Michael Chan4a29cc22006-03-19 13:21:12 -080011126 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
Michael Chan4cf78e42005-07-25 12:29:19 -070011127 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Michael Chana4e2b342005-10-26 15:46:52 -070011128 }
Michael Chan4a29cc22006-03-19 13:21:12 -080011129 else {
11130 struct pci_dev *bridge = NULL;
11131
11132 do {
11133 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
11134 PCI_DEVICE_ID_SERVERWORKS_EPB,
11135 bridge);
11136 if (bridge && bridge->subordinate &&
11137 (bridge->subordinate->number <=
11138 tp->pdev->bus->number) &&
11139 (bridge->subordinate->subordinate >=
11140 tp->pdev->bus->number)) {
11141 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
11142 pci_dev_put(bridge);
11143 break;
11144 }
11145 } while (bridge);
11146 }
Michael Chan4cf78e42005-07-25 12:29:19 -070011147
Linus Torvalds1da177e2005-04-16 15:20:36 -070011148 /* Initialize misc host control in PCI block. */
11149 tp->misc_host_ctrl |= (misc_ctrl_reg &
11150 MISC_HOST_CTRL_CHIPREV);
11151 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
11152 tp->misc_host_ctrl);
11153
11154 pci_read_config_dword(tp->pdev, TG3PCI_CACHELINESZ,
11155 &cacheline_sz_reg);
11156
11157 tp->pci_cacheline_sz = (cacheline_sz_reg >> 0) & 0xff;
11158 tp->pci_lat_timer = (cacheline_sz_reg >> 8) & 0xff;
11159 tp->pci_hdr_type = (cacheline_sz_reg >> 16) & 0xff;
11160 tp->pci_bist = (cacheline_sz_reg >> 24) & 0xff;
11161
Michael Chan7544b092007-05-05 13:08:32 -070011162 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
11163 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714))
11164 tp->pdev_peer = tg3_find_peer(tp);
11165
John W. Linville2052da92005-04-21 16:56:08 -070011166 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Michael Chan4cf78e42005-07-25 12:29:19 -070011167 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanaf36e6b2006-03-23 01:28:06 -080011168 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad2006-03-20 22:27:35 -080011169 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070011170 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070011171 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Michael Chanb5d37722006-09-27 16:06:21 -070011172 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Michael Chana4e2b342005-10-26 15:46:52 -070011173 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
John W. Linville6708e5c2005-04-21 17:00:52 -070011174 tp->tg3_flags2 |= TG3_FLG2_5750_PLUS;
11175
John W. Linville1b440c562005-04-21 17:03:18 -070011176 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) ||
11177 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
11178 tp->tg3_flags2 |= TG3_FLG2_5705_PLUS;
11179
Michael Chan5a6f3072006-03-20 22:28:05 -080011180 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Michael Chan7544b092007-05-05 13:08:32 -070011181 tp->tg3_flags |= TG3_FLAG_SUPPORT_MSI;
11182 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
11183 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
11184 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
11185 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
11186 tp->pdev_peer == tp->pdev))
11187 tp->tg3_flags &= ~TG3_FLAG_SUPPORT_MSI;
11188
Michael Chanaf36e6b2006-03-23 01:28:06 -080011189 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chanb5d37722006-09-27 16:06:21 -070011190 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070011191 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070011192 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Michael Chanb5d37722006-09-27 16:06:21 -070011193 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan5a6f3072006-03-20 22:28:05 -080011194 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_2;
Michael Chanfcfa0a32006-03-20 22:28:41 -080011195 tp->tg3_flags2 |= TG3_FLG2_1SHOT_MSI;
Michael Chan52c0fd82006-06-29 20:15:54 -070011196 } else {
Michael Chan7f62ad52007-02-20 23:25:40 -080011197 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_1 | TG3_FLG2_TSO_BUG;
Michael Chan52c0fd82006-06-29 20:15:54 -070011198 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
11199 ASIC_REV_5750 &&
11200 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Michael Chan7f62ad52007-02-20 23:25:40 -080011201 tp->tg3_flags2 &= ~TG3_FLG2_TSO_BUG;
Michael Chan52c0fd82006-06-29 20:15:54 -070011202 }
Michael Chan5a6f3072006-03-20 22:28:05 -080011203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011204
Michael Chan0f893dc2005-07-25 12:30:38 -070011205 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705 &&
11206 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5750 &&
Michael Chand9ab5ad2006-03-20 22:27:35 -080011207 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
Michael Chanaf36e6b2006-03-23 01:28:06 -080011208 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5755 &&
Michael Chanb5d37722006-09-27 16:06:21 -070011209 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5787 &&
Matt Carlsond30cdd22007-10-07 23:28:35 -070011210 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
Matt Carlson9936bcf2007-10-10 18:03:07 -070011211 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761 &&
Michael Chanb5d37722006-09-27 16:06:21 -070011212 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906)
Michael Chan0f893dc2005-07-25 12:30:38 -070011213 tp->tg3_flags2 |= TG3_FLG2_JUMBO_CAPABLE;
11214
Michael Chanc7835a72006-11-15 21:14:42 -080011215 pcie_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_EXP);
11216 if (pcie_cap != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011217 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
Michael Chanc7835a72006-11-15 21:14:42 -080011218 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
11219 u16 lnkctl;
11220
11221 pci_read_config_word(tp->pdev,
11222 pcie_cap + PCI_EXP_LNKCTL,
11223 &lnkctl);
11224 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN)
11225 tp->tg3_flags2 &= ~TG3_FLG2_HW_TSO_2;
11226 }
11227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011228
Michael Chan399de502005-10-03 14:02:39 -070011229 /* If we have an AMD 762 or VIA K8T800 chipset, write
11230 * reordering to the mailbox registers done by the host
11231 * controller can cause major troubles. We read back from
11232 * every mailbox register write to force the writes to be
11233 * posted to the chip in order.
11234 */
11235 if (pci_dev_present(write_reorder_chipsets) &&
11236 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
11237 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
11238
Linus Torvalds1da177e2005-04-16 15:20:36 -070011239 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
11240 tp->pci_lat_timer < 64) {
11241 tp->pci_lat_timer = 64;
11242
11243 cacheline_sz_reg = ((tp->pci_cacheline_sz & 0xff) << 0);
11244 cacheline_sz_reg |= ((tp->pci_lat_timer & 0xff) << 8);
11245 cacheline_sz_reg |= ((tp->pci_hdr_type & 0xff) << 16);
11246 cacheline_sz_reg |= ((tp->pci_bist & 0xff) << 24);
11247
11248 pci_write_config_dword(tp->pdev, TG3PCI_CACHELINESZ,
11249 cacheline_sz_reg);
11250 }
11251
Matt Carlson9974a352007-10-07 23:27:28 -070011252 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
11253 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
11254 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
11255 if (!tp->pcix_cap) {
11256 printk(KERN_ERR PFX "Cannot find PCI-X "
11257 "capability, aborting.\n");
11258 return -EIO;
11259 }
11260 }
11261
Linus Torvalds1da177e2005-04-16 15:20:36 -070011262 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
11263 &pci_state_reg);
11264
Matt Carlson9974a352007-10-07 23:27:28 -070011265 if (tp->pcix_cap && (pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011266 tp->tg3_flags |= TG3_FLAG_PCIX_MODE;
11267
11268 /* If this is a 5700 BX chipset, and we are in PCI-X
11269 * mode, enable register write workaround.
11270 *
11271 * The workaround is to use indirect register accesses
11272 * for all chip writes not to mailbox registers.
11273 */
11274 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
11275 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011276
11277 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
11278
11279 /* The chip can have it's power management PCI config
11280 * space registers clobbered due to this bug.
11281 * So explicitly force the chip into D0 here.
11282 */
Matt Carlson9974a352007-10-07 23:27:28 -070011283 pci_read_config_dword(tp->pdev,
11284 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011285 &pm_reg);
11286 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
11287 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070011288 pci_write_config_dword(tp->pdev,
11289 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011290 pm_reg);
11291
11292 /* Also, force SERR#/PERR# in PCI command. */
11293 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
11294 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
11295 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
11296 }
11297 }
11298
Michael Chan087fe252005-08-09 20:17:41 -070011299 /* 5700 BX chips need to have their TX producer index mailboxes
11300 * written twice to workaround a bug.
11301 */
11302 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX)
11303 tp->tg3_flags |= TG3_FLAG_TXD_MBOX_HWBUG;
11304
Linus Torvalds1da177e2005-04-16 15:20:36 -070011305 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
11306 tp->tg3_flags |= TG3_FLAG_PCI_HIGH_SPEED;
11307 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
11308 tp->tg3_flags |= TG3_FLAG_PCI_32BIT;
11309
11310 /* Chip-specific fixup from Broadcom driver */
11311 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
11312 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
11313 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
11314 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
11315 }
11316
Michael Chan1ee582d2005-08-09 20:16:46 -070011317 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070011318 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070011319 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070011320 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070011321 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070011322 tp->write32_tx_mbox = tg3_write32;
11323 tp->write32_rx_mbox = tg3_write32;
11324
11325 /* Various workaround register access methods */
11326 if (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG)
11327 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070011328 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
11329 ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
11330 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
11331 /*
11332 * Back to back register writes can cause problems on these
11333 * chips, the workaround is to read back all reg writes
11334 * except those to mailbox regs.
11335 *
11336 * See tg3_write_indirect_reg32().
11337 */
Michael Chan1ee582d2005-08-09 20:16:46 -070011338 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070011339 }
11340
Michael Chan1ee582d2005-08-09 20:16:46 -070011341
11342 if ((tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG) ||
11343 (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)) {
11344 tp->write32_tx_mbox = tg3_write32_tx_mbox;
11345 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
11346 tp->write32_rx_mbox = tg3_write_flush_reg32;
11347 }
Michael Chan20094932005-08-09 20:16:32 -070011348
Michael Chan68929142005-08-09 20:17:14 -070011349 if (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND) {
11350 tp->read32 = tg3_read_indirect_reg32;
11351 tp->write32 = tg3_write_indirect_reg32;
11352 tp->read32_mbox = tg3_read_indirect_mbox;
11353 tp->write32_mbox = tg3_write_indirect_mbox;
11354 tp->write32_tx_mbox = tg3_write_indirect_mbox;
11355 tp->write32_rx_mbox = tg3_write_indirect_mbox;
11356
11357 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070011358 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070011359
11360 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
11361 pci_cmd &= ~PCI_COMMAND_MEMORY;
11362 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
11363 }
Michael Chanb5d37722006-09-27 16:06:21 -070011364 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
11365 tp->read32_mbox = tg3_read32_mbox_5906;
11366 tp->write32_mbox = tg3_write32_mbox_5906;
11367 tp->write32_tx_mbox = tg3_write32_mbox_5906;
11368 tp->write32_rx_mbox = tg3_write32_mbox_5906;
11369 }
Michael Chan68929142005-08-09 20:17:14 -070011370
Michael Chanbbadf502006-04-06 21:46:34 -070011371 if (tp->write32 == tg3_write_indirect_reg32 ||
11372 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
11373 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070011374 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Michael Chanbbadf502006-04-06 21:46:34 -070011375 tp->tg3_flags |= TG3_FLAG_SRAM_USE_CONFIG;
11376
Michael Chan7d0c41e2005-04-21 17:06:20 -070011377 /* Get eeprom hw config before calling tg3_set_power_state().
Michael Chan9d26e212006-12-07 00:21:14 -080011378 * In particular, the TG3_FLG2_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070011379 * determined before calling tg3_set_power_state() so that
11380 * we know whether or not to switch out of Vaux power.
11381 * When the flag is set, it means that GPIO1 is used for eeprom
11382 * write protect and also implies that it is a LOM where GPIOs
11383 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011384 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070011385 tg3_get_eeprom_hw_cfg(tp);
11386
Matt Carlson0d3031d2007-10-10 18:02:43 -070011387 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
11388 /* Allow reads and writes to the
11389 * APE register and memory space.
11390 */
11391 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
11392 PCISTATE_ALLOW_APE_SHMEM_WR;
11393 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
11394 pci_state_reg);
11395 }
11396
Matt Carlson9936bcf2007-10-10 18:03:07 -070011397 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
11398 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
Matt Carlsond30cdd22007-10-07 23:28:35 -070011399 tp->tg3_flags |= TG3_FLAG_CPMU_PRESENT;
11400
Michael Chan314fba32005-04-21 17:07:04 -070011401 /* Set up tp->grc_local_ctrl before calling tg3_set_power_state().
11402 * GPIO1 driven high will bring 5700's external PHY out of reset.
11403 * It is also used as eeprom write protect on LOMs.
11404 */
11405 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
11406 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
11407 (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT))
11408 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
11409 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070011410 /* Unused GPIO3 must be driven as output on 5752 because there
11411 * are no pull-up resistors on unused GPIO pins.
11412 */
11413 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
11414 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070011415
Michael Chanaf36e6b2006-03-23 01:28:06 -080011416 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
11417 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
11418
Linus Torvalds1da177e2005-04-16 15:20:36 -070011419 /* Force the chip into D0. */
Michael Chanbc1c7562006-03-20 17:48:03 -080011420 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011421 if (err) {
11422 printk(KERN_ERR PFX "(%s) transition to D0 failed\n",
11423 pci_name(tp->pdev));
11424 return err;
11425 }
11426
11427 /* 5700 B0 chips do not support checksumming correctly due
11428 * to hardware bugs.
11429 */
11430 if (tp->pci_chip_rev_id == CHIPREV_ID_5700_B0)
11431 tp->tg3_flags |= TG3_FLAG_BROKEN_CHECKSUMS;
11432
Linus Torvalds1da177e2005-04-16 15:20:36 -070011433 /* Derive initial jumbo mode from MTU assigned in
11434 * ether_setup() via the alloc_etherdev() call
11435 */
Michael Chan0f893dc2005-07-25 12:30:38 -070011436 if (tp->dev->mtu > ETH_DATA_LEN &&
Michael Chana4e2b342005-10-26 15:46:52 -070011437 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan0f893dc2005-07-25 12:30:38 -070011438 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011439
11440 /* Determine WakeOnLan speed to use. */
11441 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
11442 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
11443 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
11444 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
11445 tp->tg3_flags &= ~(TG3_FLAG_WOL_SPEED_100MB);
11446 } else {
11447 tp->tg3_flags |= TG3_FLAG_WOL_SPEED_100MB;
11448 }
11449
11450 /* A few boards don't want Ethernet@WireSpeed phy feature */
11451 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
11452 ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
11453 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070011454 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Michael Chanb5d37722006-09-27 16:06:21 -070011455 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) ||
Michael Chan747e8f82005-07-25 12:33:22 -070011456 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011457 tp->tg3_flags2 |= TG3_FLG2_NO_ETH_WIRE_SPEED;
11458
11459 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
11460 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
11461 tp->tg3_flags2 |= TG3_FLG2_PHY_ADC_BUG;
11462 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
11463 tp->tg3_flags2 |= TG3_FLG2_PHY_5704_A0_BUG;
11464
Michael Chanc424cb22006-04-29 18:56:34 -070011465 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
11466 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070011467 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070011468 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
11469 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080011470 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
11471 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
11472 tp->tg3_flags2 |= TG3_FLG2_PHY_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080011473 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
11474 tp->tg3_flags2 |= TG3_FLG2_PHY_ADJUST_TRIM;
11475 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906)
Michael Chanc424cb22006-04-29 18:56:34 -070011476 tp->tg3_flags2 |= TG3_FLG2_PHY_BER_BUG;
11477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011478
Linus Torvalds1da177e2005-04-16 15:20:36 -070011479 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011480 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
11481 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
11482 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
11483
11484 /* Initialize MAC MI mode, polling disabled. */
11485 tw32_f(MAC_MI_MODE, tp->mi_mode);
11486 udelay(80);
11487
11488 /* Initialize data/descriptor byte/word swapping. */
11489 val = tr32(GRC_MODE);
11490 val &= GRC_MODE_HOST_STACKUP;
11491 tw32(GRC_MODE, val | tp->grc_mode);
11492
11493 tg3_switch_clocks(tp);
11494
11495 /* Clear this out for sanity. */
11496 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
11497
11498 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
11499 &pci_state_reg);
11500 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
11501 (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) == 0) {
11502 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
11503
11504 if (chiprevid == CHIPREV_ID_5701_A0 ||
11505 chiprevid == CHIPREV_ID_5701_B0 ||
11506 chiprevid == CHIPREV_ID_5701_B2 ||
11507 chiprevid == CHIPREV_ID_5701_B5) {
11508 void __iomem *sram_base;
11509
11510 /* Write some dummy words into the SRAM status block
11511 * area, see if it reads back correctly. If the return
11512 * value is bad, force enable the PCIX workaround.
11513 */
11514 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
11515
11516 writel(0x00000000, sram_base);
11517 writel(0x00000000, sram_base + 4);
11518 writel(0xffffffff, sram_base + 4);
11519 if (readl(sram_base) != 0x00000000)
11520 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
11521 }
11522 }
11523
11524 udelay(50);
11525 tg3_nvram_init(tp);
11526
11527 grc_misc_cfg = tr32(GRC_MISC_CFG);
11528 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
11529
Linus Torvalds1da177e2005-04-16 15:20:36 -070011530 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
11531 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
11532 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
11533 tp->tg3_flags2 |= TG3_FLG2_IS_5788;
11534
David S. Millerfac9b832005-05-18 22:46:34 -070011535 if (!(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
11536 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700))
11537 tp->tg3_flags |= TG3_FLAG_TAGGED_STATUS;
11538 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
11539 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
11540 HOSTCC_MODE_CLRTICK_TXBD);
11541
11542 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
11543 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
11544 tp->misc_host_ctrl);
11545 }
11546
Linus Torvalds1da177e2005-04-16 15:20:36 -070011547 /* these are limited to 10/100 only */
11548 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
11549 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
11550 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
11551 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
11552 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
11553 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
11554 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
11555 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
11556 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080011557 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
11558 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Michael Chanb5d37722006-09-27 16:06:21 -070011559 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011560 tp->tg3_flags |= TG3_FLAG_10_100_ONLY;
11561
11562 err = tg3_phy_probe(tp);
11563 if (err) {
11564 printk(KERN_ERR PFX "(%s) phy probe failed, err %d\n",
11565 pci_name(tp->pdev), err);
11566 /* ... but do not return immediately ... */
11567 }
11568
11569 tg3_read_partno(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080011570 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011571
11572 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
11573 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
11574 } else {
11575 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
11576 tp->tg3_flags |= TG3_FLAG_USE_MI_INTERRUPT;
11577 else
11578 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
11579 }
11580
11581 /* 5700 {AX,BX} chips have a broken status block link
11582 * change bit implementation, so we must use the
11583 * status register in those cases.
11584 */
11585 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
11586 tp->tg3_flags |= TG3_FLAG_USE_LINKCHG_REG;
11587 else
11588 tp->tg3_flags &= ~TG3_FLAG_USE_LINKCHG_REG;
11589
11590 /* The led_ctrl is set during tg3_phy_probe, here we might
11591 * have to force the link status polling mechanism based
11592 * upon subsystem IDs.
11593 */
11594 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070011595 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070011596 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
11597 tp->tg3_flags |= (TG3_FLAG_USE_MI_INTERRUPT |
11598 TG3_FLAG_USE_LINKCHG_REG);
11599 }
11600
11601 /* For all SERDES we poll the MAC status register. */
11602 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
11603 tp->tg3_flags |= TG3_FLAG_POLL_SERDES;
11604 else
11605 tp->tg3_flags &= ~TG3_FLAG_POLL_SERDES;
11606
Michael Chan5a6f3072006-03-20 22:28:05 -080011607 /* All chips before 5787 can get confused if TX buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -070011608 * straddle the 4GB address boundary in some cases.
11609 */
Michael Chanaf36e6b2006-03-23 01:28:06 -080011610 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chanb5d37722006-09-27 16:06:21 -070011611 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070011612 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070011613 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Michael Chanb5d37722006-09-27 16:06:21 -070011614 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chan5a6f3072006-03-20 22:28:05 -080011615 tp->dev->hard_start_xmit = tg3_start_xmit;
11616 else
11617 tp->dev->hard_start_xmit = tg3_start_xmit_dma_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011618
11619 tp->rx_offset = 2;
11620 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
11621 (tp->tg3_flags & TG3_FLAG_PCIX_MODE) != 0)
11622 tp->rx_offset = 0;
11623
Michael Chanf92905d2006-06-29 20:14:29 -070011624 tp->rx_std_max_post = TG3_RX_RING_SIZE;
11625
11626 /* Increment the rx prod index on the rx std ring by at most
11627 * 8 for these chips to workaround hw errata.
11628 */
11629 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
11630 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
11631 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
11632 tp->rx_std_max_post = 8;
11633
Matt Carlson8ed5d972007-05-07 00:25:49 -070011634 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND)
11635 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
11636 PCIE_PWR_MGMT_L1_THRESH_MSK;
11637
Linus Torvalds1da177e2005-04-16 15:20:36 -070011638 return err;
11639}
11640
David S. Miller49b6e95f2007-03-29 01:38:42 -070011641#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070011642static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
11643{
11644 struct net_device *dev = tp->dev;
11645 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070011646 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070011647 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070011648 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011649
David S. Miller49b6e95f2007-03-29 01:38:42 -070011650 addr = of_get_property(dp, "local-mac-address", &len);
11651 if (addr && len == 6) {
11652 memcpy(dev->dev_addr, addr, 6);
11653 memcpy(dev->perm_addr, dev->dev_addr, 6);
11654 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011655 }
11656 return -ENODEV;
11657}
11658
11659static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
11660{
11661 struct net_device *dev = tp->dev;
11662
11663 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070011664 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011665 return 0;
11666}
11667#endif
11668
11669static int __devinit tg3_get_device_address(struct tg3 *tp)
11670{
11671 struct net_device *dev = tp->dev;
11672 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080011673 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011674
David S. Miller49b6e95f2007-03-29 01:38:42 -070011675#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070011676 if (!tg3_get_macaddr_sparc(tp))
11677 return 0;
11678#endif
11679
11680 mac_offset = 0x7c;
David S. Millerf49639e2006-06-09 11:58:36 -070011681 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
Michael Chana4e2b342005-10-26 15:46:52 -070011682 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011683 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
11684 mac_offset = 0xcc;
11685 if (tg3_nvram_lock(tp))
11686 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
11687 else
11688 tg3_nvram_unlock(tp);
11689 }
Michael Chanb5d37722006-09-27 16:06:21 -070011690 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11691 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011692
11693 /* First try to get it from MAC address mailbox. */
11694 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
11695 if ((hi >> 16) == 0x484b) {
11696 dev->dev_addr[0] = (hi >> 8) & 0xff;
11697 dev->dev_addr[1] = (hi >> 0) & 0xff;
11698
11699 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
11700 dev->dev_addr[2] = (lo >> 24) & 0xff;
11701 dev->dev_addr[3] = (lo >> 16) & 0xff;
11702 dev->dev_addr[4] = (lo >> 8) & 0xff;
11703 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011704
Michael Chan008652b2006-03-27 23:14:53 -080011705 /* Some old bootcode may report a 0 MAC address in SRAM */
11706 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
11707 }
11708 if (!addr_ok) {
11709 /* Next, try NVRAM. */
David S. Millerf49639e2006-06-09 11:58:36 -070011710 if (!tg3_nvram_read(tp, mac_offset + 0, &hi) &&
Michael Chan008652b2006-03-27 23:14:53 -080011711 !tg3_nvram_read(tp, mac_offset + 4, &lo)) {
11712 dev->dev_addr[0] = ((hi >> 16) & 0xff);
11713 dev->dev_addr[1] = ((hi >> 24) & 0xff);
11714 dev->dev_addr[2] = ((lo >> 0) & 0xff);
11715 dev->dev_addr[3] = ((lo >> 8) & 0xff);
11716 dev->dev_addr[4] = ((lo >> 16) & 0xff);
11717 dev->dev_addr[5] = ((lo >> 24) & 0xff);
11718 }
11719 /* Finally just fetch it out of the MAC control regs. */
11720 else {
11721 hi = tr32(MAC_ADDR_0_HIGH);
11722 lo = tr32(MAC_ADDR_0_LOW);
11723
11724 dev->dev_addr[5] = lo & 0xff;
11725 dev->dev_addr[4] = (lo >> 8) & 0xff;
11726 dev->dev_addr[3] = (lo >> 16) & 0xff;
11727 dev->dev_addr[2] = (lo >> 24) & 0xff;
11728 dev->dev_addr[1] = hi & 0xff;
11729 dev->dev_addr[0] = (hi >> 8) & 0xff;
11730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011731 }
11732
11733 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
11734#ifdef CONFIG_SPARC64
11735 if (!tg3_get_default_macaddr_sparc(tp))
11736 return 0;
11737#endif
11738 return -EINVAL;
11739 }
John W. Linville2ff43692005-09-12 14:44:20 -070011740 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011741 return 0;
11742}
11743
David S. Miller59e6b432005-05-18 22:50:10 -070011744#define BOUNDARY_SINGLE_CACHELINE 1
11745#define BOUNDARY_MULTI_CACHELINE 2
11746
11747static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
11748{
11749 int cacheline_size;
11750 u8 byte;
11751 int goal;
11752
11753 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
11754 if (byte == 0)
11755 cacheline_size = 1024;
11756 else
11757 cacheline_size = (int) byte * 4;
11758
11759 /* On 5703 and later chips, the boundary bits have no
11760 * effect.
11761 */
11762 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
11763 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
11764 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
11765 goto out;
11766
11767#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
11768 goal = BOUNDARY_MULTI_CACHELINE;
11769#else
11770#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
11771 goal = BOUNDARY_SINGLE_CACHELINE;
11772#else
11773 goal = 0;
11774#endif
11775#endif
11776
11777 if (!goal)
11778 goto out;
11779
11780 /* PCI controllers on most RISC systems tend to disconnect
11781 * when a device tries to burst across a cache-line boundary.
11782 * Therefore, letting tg3 do so just wastes PCI bandwidth.
11783 *
11784 * Unfortunately, for PCI-E there are only limited
11785 * write-side controls for this, and thus for reads
11786 * we will still get the disconnects. We'll also waste
11787 * these PCI cycles for both read and write for chips
11788 * other than 5700 and 5701 which do not implement the
11789 * boundary bits.
11790 */
11791 if ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
11792 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
11793 switch (cacheline_size) {
11794 case 16:
11795 case 32:
11796 case 64:
11797 case 128:
11798 if (goal == BOUNDARY_SINGLE_CACHELINE) {
11799 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
11800 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
11801 } else {
11802 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
11803 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
11804 }
11805 break;
11806
11807 case 256:
11808 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
11809 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
11810 break;
11811
11812 default:
11813 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
11814 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
11815 break;
11816 };
11817 } else if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
11818 switch (cacheline_size) {
11819 case 16:
11820 case 32:
11821 case 64:
11822 if (goal == BOUNDARY_SINGLE_CACHELINE) {
11823 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
11824 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
11825 break;
11826 }
11827 /* fallthrough */
11828 case 128:
11829 default:
11830 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
11831 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
11832 break;
11833 };
11834 } else {
11835 switch (cacheline_size) {
11836 case 16:
11837 if (goal == BOUNDARY_SINGLE_CACHELINE) {
11838 val |= (DMA_RWCTRL_READ_BNDRY_16 |
11839 DMA_RWCTRL_WRITE_BNDRY_16);
11840 break;
11841 }
11842 /* fallthrough */
11843 case 32:
11844 if (goal == BOUNDARY_SINGLE_CACHELINE) {
11845 val |= (DMA_RWCTRL_READ_BNDRY_32 |
11846 DMA_RWCTRL_WRITE_BNDRY_32);
11847 break;
11848 }
11849 /* fallthrough */
11850 case 64:
11851 if (goal == BOUNDARY_SINGLE_CACHELINE) {
11852 val |= (DMA_RWCTRL_READ_BNDRY_64 |
11853 DMA_RWCTRL_WRITE_BNDRY_64);
11854 break;
11855 }
11856 /* fallthrough */
11857 case 128:
11858 if (goal == BOUNDARY_SINGLE_CACHELINE) {
11859 val |= (DMA_RWCTRL_READ_BNDRY_128 |
11860 DMA_RWCTRL_WRITE_BNDRY_128);
11861 break;
11862 }
11863 /* fallthrough */
11864 case 256:
11865 val |= (DMA_RWCTRL_READ_BNDRY_256 |
11866 DMA_RWCTRL_WRITE_BNDRY_256);
11867 break;
11868 case 512:
11869 val |= (DMA_RWCTRL_READ_BNDRY_512 |
11870 DMA_RWCTRL_WRITE_BNDRY_512);
11871 break;
11872 case 1024:
11873 default:
11874 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
11875 DMA_RWCTRL_WRITE_BNDRY_1024);
11876 break;
11877 };
11878 }
11879
11880out:
11881 return val;
11882}
11883
Linus Torvalds1da177e2005-04-16 15:20:36 -070011884static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
11885{
11886 struct tg3_internal_buffer_desc test_desc;
11887 u32 sram_dma_descs;
11888 int i, ret;
11889
11890 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
11891
11892 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
11893 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
11894 tw32(RDMAC_STATUS, 0);
11895 tw32(WDMAC_STATUS, 0);
11896
11897 tw32(BUFMGR_MODE, 0);
11898 tw32(FTQ_RESET, 0);
11899
11900 test_desc.addr_hi = ((u64) buf_dma) >> 32;
11901 test_desc.addr_lo = buf_dma & 0xffffffff;
11902 test_desc.nic_mbuf = 0x00002100;
11903 test_desc.len = size;
11904
11905 /*
11906 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
11907 * the *second* time the tg3 driver was getting loaded after an
11908 * initial scan.
11909 *
11910 * Broadcom tells me:
11911 * ...the DMA engine is connected to the GRC block and a DMA
11912 * reset may affect the GRC block in some unpredictable way...
11913 * The behavior of resets to individual blocks has not been tested.
11914 *
11915 * Broadcom noted the GRC reset will also reset all sub-components.
11916 */
11917 if (to_device) {
11918 test_desc.cqid_sqid = (13 << 8) | 2;
11919
11920 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
11921 udelay(40);
11922 } else {
11923 test_desc.cqid_sqid = (16 << 8) | 7;
11924
11925 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
11926 udelay(40);
11927 }
11928 test_desc.flags = 0x00000005;
11929
11930 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
11931 u32 val;
11932
11933 val = *(((u32 *)&test_desc) + i);
11934 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
11935 sram_dma_descs + (i * sizeof(u32)));
11936 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
11937 }
11938 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
11939
11940 if (to_device) {
11941 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
11942 } else {
11943 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
11944 }
11945
11946 ret = -ENODEV;
11947 for (i = 0; i < 40; i++) {
11948 u32 val;
11949
11950 if (to_device)
11951 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
11952 else
11953 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
11954 if ((val & 0xffff) == sram_dma_descs) {
11955 ret = 0;
11956 break;
11957 }
11958
11959 udelay(100);
11960 }
11961
11962 return ret;
11963}
11964
David S. Millerded73402005-05-23 13:59:47 -070011965#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070011966
11967static int __devinit tg3_test_dma(struct tg3 *tp)
11968{
11969 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070011970 u32 *buf, saved_dma_rwctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011971 int ret;
11972
11973 buf = pci_alloc_consistent(tp->pdev, TEST_BUFFER_SIZE, &buf_dma);
11974 if (!buf) {
11975 ret = -ENOMEM;
11976 goto out_nofree;
11977 }
11978
11979 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
11980 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
11981
David S. Miller59e6b432005-05-18 22:50:10 -070011982 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011983
11984 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
11985 /* DMA read watermark not used on PCIE */
11986 tp->dma_rwctrl |= 0x00180000;
11987 } else if (!(tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070011988 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
11989 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011990 tp->dma_rwctrl |= 0x003f0000;
11991 else
11992 tp->dma_rwctrl |= 0x003f000f;
11993 } else {
11994 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
11995 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
11996 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080011997 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011998
Michael Chan4a29cc22006-03-19 13:21:12 -080011999 /* If the 5704 is behind the EPB bridge, we can
12000 * do the less restrictive ONE_DMA workaround for
12001 * better performance.
12002 */
12003 if ((tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) &&
12004 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
12005 tp->dma_rwctrl |= 0x8000;
12006 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012007 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
12008
Michael Chan49afdeb2007-02-13 12:17:03 -080012009 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
12010 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070012011 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080012012 tp->dma_rwctrl |=
12013 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
12014 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
12015 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070012016 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
12017 /* 5780 always in PCIX mode */
12018 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070012019 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
12020 /* 5714 always in PCIX mode */
12021 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012022 } else {
12023 tp->dma_rwctrl |= 0x001b000f;
12024 }
12025 }
12026
12027 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
12028 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
12029 tp->dma_rwctrl &= 0xfffffff0;
12030
12031 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12032 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
12033 /* Remove this if it causes problems for some boards. */
12034 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
12035
12036 /* On 5700/5701 chips, we need to set this bit.
12037 * Otherwise the chip will issue cacheline transactions
12038 * to streamable DMA memory with not all the byte
12039 * enables turned on. This is an error on several
12040 * RISC PCI controllers, in particular sparc64.
12041 *
12042 * On 5703/5704 chips, this bit has been reassigned
12043 * a different meaning. In particular, it is used
12044 * on those chips to enable a PCI-X workaround.
12045 */
12046 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
12047 }
12048
12049 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
12050
12051#if 0
12052 /* Unneeded, already done by tg3_get_invariants. */
12053 tg3_switch_clocks(tp);
12054#endif
12055
12056 ret = 0;
12057 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12058 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
12059 goto out;
12060
David S. Miller59e6b432005-05-18 22:50:10 -070012061 /* It is best to perform DMA test with maximum write burst size
12062 * to expose the 5700/5701 write DMA bug.
12063 */
12064 saved_dma_rwctrl = tp->dma_rwctrl;
12065 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
12066 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
12067
Linus Torvalds1da177e2005-04-16 15:20:36 -070012068 while (1) {
12069 u32 *p = buf, i;
12070
12071 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
12072 p[i] = i;
12073
12074 /* Send the buffer to the chip. */
12075 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
12076 if (ret) {
12077 printk(KERN_ERR "tg3_test_dma() Write the buffer failed %d\n", ret);
12078 break;
12079 }
12080
12081#if 0
12082 /* validate data reached card RAM correctly. */
12083 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
12084 u32 val;
12085 tg3_read_mem(tp, 0x2100 + (i*4), &val);
12086 if (le32_to_cpu(val) != p[i]) {
12087 printk(KERN_ERR " tg3_test_dma() Card buffer corrupted on write! (%d != %d)\n", val, i);
12088 /* ret = -ENODEV here? */
12089 }
12090 p[i] = 0;
12091 }
12092#endif
12093 /* Now read it back. */
12094 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
12095 if (ret) {
12096 printk(KERN_ERR "tg3_test_dma() Read the buffer failed %d\n", ret);
12097
12098 break;
12099 }
12100
12101 /* Verify it. */
12102 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
12103 if (p[i] == i)
12104 continue;
12105
David S. Miller59e6b432005-05-18 22:50:10 -070012106 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
12107 DMA_RWCTRL_WRITE_BNDRY_16) {
12108 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012109 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
12110 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
12111 break;
12112 } else {
12113 printk(KERN_ERR "tg3_test_dma() buffer corrupted on read back! (%d != %d)\n", p[i], i);
12114 ret = -ENODEV;
12115 goto out;
12116 }
12117 }
12118
12119 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
12120 /* Success. */
12121 ret = 0;
12122 break;
12123 }
12124 }
David S. Miller59e6b432005-05-18 22:50:10 -070012125 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
12126 DMA_RWCTRL_WRITE_BNDRY_16) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070012127 static struct pci_device_id dma_wait_state_chipsets[] = {
12128 { PCI_DEVICE(PCI_VENDOR_ID_APPLE,
12129 PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
12130 { },
12131 };
12132
David S. Miller59e6b432005-05-18 22:50:10 -070012133 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070012134 * now look for chipsets that are known to expose the
12135 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070012136 */
Michael Chan6d1cfba2005-06-08 14:13:14 -070012137 if (pci_dev_present(dma_wait_state_chipsets)) {
12138 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
12139 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
12140 }
12141 else
12142 /* Safe to use the calculated DMA boundary. */
12143 tp->dma_rwctrl = saved_dma_rwctrl;
12144
David S. Miller59e6b432005-05-18 22:50:10 -070012145 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
12146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012147
12148out:
12149 pci_free_consistent(tp->pdev, TEST_BUFFER_SIZE, buf, buf_dma);
12150out_nofree:
12151 return ret;
12152}
12153
12154static void __devinit tg3_init_link_config(struct tg3 *tp)
12155{
12156 tp->link_config.advertising =
12157 (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
12158 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
12159 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full |
12160 ADVERTISED_Autoneg | ADVERTISED_MII);
12161 tp->link_config.speed = SPEED_INVALID;
12162 tp->link_config.duplex = DUPLEX_INVALID;
12163 tp->link_config.autoneg = AUTONEG_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012164 tp->link_config.active_speed = SPEED_INVALID;
12165 tp->link_config.active_duplex = DUPLEX_INVALID;
12166 tp->link_config.phy_is_low_power = 0;
12167 tp->link_config.orig_speed = SPEED_INVALID;
12168 tp->link_config.orig_duplex = DUPLEX_INVALID;
12169 tp->link_config.orig_autoneg = AUTONEG_INVALID;
12170}
12171
12172static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
12173{
Michael Chanfdfec172005-07-25 12:31:48 -070012174 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
12175 tp->bufmgr_config.mbuf_read_dma_low_water =
12176 DEFAULT_MB_RDMA_LOW_WATER_5705;
12177 tp->bufmgr_config.mbuf_mac_rx_low_water =
12178 DEFAULT_MB_MACRX_LOW_WATER_5705;
12179 tp->bufmgr_config.mbuf_high_water =
12180 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070012181 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
12182 tp->bufmgr_config.mbuf_mac_rx_low_water =
12183 DEFAULT_MB_MACRX_LOW_WATER_5906;
12184 tp->bufmgr_config.mbuf_high_water =
12185 DEFAULT_MB_HIGH_WATER_5906;
12186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012187
Michael Chanfdfec172005-07-25 12:31:48 -070012188 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
12189 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
12190 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
12191 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
12192 tp->bufmgr_config.mbuf_high_water_jumbo =
12193 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
12194 } else {
12195 tp->bufmgr_config.mbuf_read_dma_low_water =
12196 DEFAULT_MB_RDMA_LOW_WATER;
12197 tp->bufmgr_config.mbuf_mac_rx_low_water =
12198 DEFAULT_MB_MACRX_LOW_WATER;
12199 tp->bufmgr_config.mbuf_high_water =
12200 DEFAULT_MB_HIGH_WATER;
12201
12202 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
12203 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
12204 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
12205 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
12206 tp->bufmgr_config.mbuf_high_water_jumbo =
12207 DEFAULT_MB_HIGH_WATER_JUMBO;
12208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012209
12210 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
12211 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
12212}
12213
12214static char * __devinit tg3_phy_string(struct tg3 *tp)
12215{
12216 switch (tp->phy_id & PHY_ID_MASK) {
12217 case PHY_ID_BCM5400: return "5400";
12218 case PHY_ID_BCM5401: return "5401";
12219 case PHY_ID_BCM5411: return "5411";
12220 case PHY_ID_BCM5701: return "5701";
12221 case PHY_ID_BCM5703: return "5703";
12222 case PHY_ID_BCM5704: return "5704";
12223 case PHY_ID_BCM5705: return "5705";
12224 case PHY_ID_BCM5750: return "5750";
Michael Chan85e94ce2005-04-21 17:05:28 -070012225 case PHY_ID_BCM5752: return "5752";
Michael Chana4e2b342005-10-26 15:46:52 -070012226 case PHY_ID_BCM5714: return "5714";
Michael Chan4cf78e42005-07-25 12:29:19 -070012227 case PHY_ID_BCM5780: return "5780";
Michael Chanaf36e6b2006-03-23 01:28:06 -080012228 case PHY_ID_BCM5755: return "5755";
Michael Chand9ab5ad2006-03-20 22:27:35 -080012229 case PHY_ID_BCM5787: return "5787";
Matt Carlsond30cdd22007-10-07 23:28:35 -070012230 case PHY_ID_BCM5784: return "5784";
Michael Chan126a3362006-09-27 16:03:07 -070012231 case PHY_ID_BCM5756: return "5722/5756";
Michael Chanb5d37722006-09-27 16:06:21 -070012232 case PHY_ID_BCM5906: return "5906";
Matt Carlson9936bcf2007-10-10 18:03:07 -070012233 case PHY_ID_BCM5761: return "5761";
Linus Torvalds1da177e2005-04-16 15:20:36 -070012234 case PHY_ID_BCM8002: return "8002/serdes";
12235 case 0: return "serdes";
12236 default: return "unknown";
12237 };
12238}
12239
Michael Chanf9804dd2005-09-27 12:13:10 -070012240static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
12241{
12242 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
12243 strcpy(str, "PCI Express");
12244 return str;
12245 } else if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
12246 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
12247
12248 strcpy(str, "PCIX:");
12249
12250 if ((clock_ctrl == 7) ||
12251 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
12252 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
12253 strcat(str, "133MHz");
12254 else if (clock_ctrl == 0)
12255 strcat(str, "33MHz");
12256 else if (clock_ctrl == 2)
12257 strcat(str, "50MHz");
12258 else if (clock_ctrl == 4)
12259 strcat(str, "66MHz");
12260 else if (clock_ctrl == 6)
12261 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070012262 } else {
12263 strcpy(str, "PCI:");
12264 if (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED)
12265 strcat(str, "66MHz");
12266 else
12267 strcat(str, "33MHz");
12268 }
12269 if (tp->tg3_flags & TG3_FLAG_PCI_32BIT)
12270 strcat(str, ":32-bit");
12271 else
12272 strcat(str, ":64-bit");
12273 return str;
12274}
12275
Michael Chan8c2dc7e2005-12-19 16:26:02 -080012276static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012277{
12278 struct pci_dev *peer;
12279 unsigned int func, devnr = tp->pdev->devfn & ~7;
12280
12281 for (func = 0; func < 8; func++) {
12282 peer = pci_get_slot(tp->pdev->bus, devnr | func);
12283 if (peer && peer != tp->pdev)
12284 break;
12285 pci_dev_put(peer);
12286 }
Michael Chan16fe9d72005-12-13 21:09:54 -080012287 /* 5704 can be configured in single-port mode, set peer to
12288 * tp->pdev in that case.
12289 */
12290 if (!peer) {
12291 peer = tp->pdev;
12292 return peer;
12293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012294
12295 /*
12296 * We don't need to keep the refcount elevated; there's no way
12297 * to remove one half of this device without removing the other
12298 */
12299 pci_dev_put(peer);
12300
12301 return peer;
12302}
12303
David S. Miller15f98502005-05-18 22:49:26 -070012304static void __devinit tg3_init_coal(struct tg3 *tp)
12305{
12306 struct ethtool_coalesce *ec = &tp->coal;
12307
12308 memset(ec, 0, sizeof(*ec));
12309 ec->cmd = ETHTOOL_GCOALESCE;
12310 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
12311 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
12312 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
12313 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
12314 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
12315 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
12316 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
12317 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
12318 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
12319
12320 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
12321 HOSTCC_MODE_CLRTICK_TXBD)) {
12322 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
12323 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
12324 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
12325 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
12326 }
Michael Chand244c892005-07-05 14:42:33 -070012327
12328 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
12329 ec->rx_coalesce_usecs_irq = 0;
12330 ec->tx_coalesce_usecs_irq = 0;
12331 ec->stats_block_coalesce_usecs = 0;
12332 }
David S. Miller15f98502005-05-18 22:49:26 -070012333}
12334
Linus Torvalds1da177e2005-04-16 15:20:36 -070012335static int __devinit tg3_init_one(struct pci_dev *pdev,
12336 const struct pci_device_id *ent)
12337{
12338 static int tg3_version_printed = 0;
12339 unsigned long tg3reg_base, tg3reg_len;
12340 struct net_device *dev;
12341 struct tg3 *tp;
Michael Chan72f2afb2006-03-06 19:28:35 -080012342 int i, err, pm_cap;
Michael Chanf9804dd2005-09-27 12:13:10 -070012343 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080012344 u64 dma_mask, persist_dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012345
12346 if (tg3_version_printed++ == 0)
12347 printk(KERN_INFO "%s", version);
12348
12349 err = pci_enable_device(pdev);
12350 if (err) {
12351 printk(KERN_ERR PFX "Cannot enable PCI device, "
12352 "aborting.\n");
12353 return err;
12354 }
12355
12356 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
12357 printk(KERN_ERR PFX "Cannot find proper PCI device "
12358 "base address, aborting.\n");
12359 err = -ENODEV;
12360 goto err_out_disable_pdev;
12361 }
12362
12363 err = pci_request_regions(pdev, DRV_MODULE_NAME);
12364 if (err) {
12365 printk(KERN_ERR PFX "Cannot obtain PCI resources, "
12366 "aborting.\n");
12367 goto err_out_disable_pdev;
12368 }
12369
12370 pci_set_master(pdev);
12371
12372 /* Find power-management capability. */
12373 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
12374 if (pm_cap == 0) {
12375 printk(KERN_ERR PFX "Cannot find PowerManagement capability, "
12376 "aborting.\n");
12377 err = -EIO;
12378 goto err_out_free_res;
12379 }
12380
Linus Torvalds1da177e2005-04-16 15:20:36 -070012381 tg3reg_base = pci_resource_start(pdev, 0);
12382 tg3reg_len = pci_resource_len(pdev, 0);
12383
12384 dev = alloc_etherdev(sizeof(*tp));
12385 if (!dev) {
12386 printk(KERN_ERR PFX "Etherdev alloc failed, aborting.\n");
12387 err = -ENOMEM;
12388 goto err_out_free_res;
12389 }
12390
Linus Torvalds1da177e2005-04-16 15:20:36 -070012391 SET_NETDEV_DEV(dev, &pdev->dev);
12392
Linus Torvalds1da177e2005-04-16 15:20:36 -070012393#if TG3_VLAN_TAG_USED
12394 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
12395 dev->vlan_rx_register = tg3_vlan_rx_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012396#endif
12397
12398 tp = netdev_priv(dev);
12399 tp->pdev = pdev;
12400 tp->dev = dev;
12401 tp->pm_cap = pm_cap;
12402 tp->mac_mode = TG3_DEF_MAC_MODE;
12403 tp->rx_mode = TG3_DEF_RX_MODE;
12404 tp->tx_mode = TG3_DEF_TX_MODE;
12405 tp->mi_mode = MAC_MI_MODE_BASE;
12406 if (tg3_debug > 0)
12407 tp->msg_enable = tg3_debug;
12408 else
12409 tp->msg_enable = TG3_DEF_MSG_ENABLE;
12410
12411 /* The word/byte swap controls here control register access byte
12412 * swapping. DMA data byte swapping is controlled in the GRC_MODE
12413 * setting below.
12414 */
12415 tp->misc_host_ctrl =
12416 MISC_HOST_CTRL_MASK_PCI_INT |
12417 MISC_HOST_CTRL_WORD_SWAP |
12418 MISC_HOST_CTRL_INDIR_ACCESS |
12419 MISC_HOST_CTRL_PCISTATE_RW;
12420
12421 /* The NONFRM (non-frame) byte/word swap controls take effect
12422 * on descriptor entries, anything which isn't packet data.
12423 *
12424 * The StrongARM chips on the board (one for tx, one for rx)
12425 * are running in big-endian mode.
12426 */
12427 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
12428 GRC_MODE_WSWAP_NONFRM_DATA);
12429#ifdef __BIG_ENDIAN
12430 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
12431#endif
12432 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012433 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000012434 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012435
12436 tp->regs = ioremap_nocache(tg3reg_base, tg3reg_len);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010012437 if (!tp->regs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012438 printk(KERN_ERR PFX "Cannot map device registers, "
12439 "aborting.\n");
12440 err = -ENOMEM;
12441 goto err_out_free_dev;
12442 }
12443
12444 tg3_init_link_config(tp);
12445
Linus Torvalds1da177e2005-04-16 15:20:36 -070012446 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
12447 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
12448 tp->tx_pending = TG3_DEF_TX_RING_PENDING;
12449
12450 dev->open = tg3_open;
12451 dev->stop = tg3_close;
12452 dev->get_stats = tg3_get_stats;
12453 dev->set_multicast_list = tg3_set_rx_mode;
12454 dev->set_mac_address = tg3_set_mac_addr;
12455 dev->do_ioctl = tg3_ioctl;
12456 dev->tx_timeout = tg3_tx_timeout;
Stephen Hemmingerbea33482007-10-03 16:41:36 -070012457 netif_napi_add(dev, &tp->napi, tg3_poll, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012458 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012459 dev->watchdog_timeo = TG3_TX_TIMEOUT;
12460 dev->change_mtu = tg3_change_mtu;
12461 dev->irq = pdev->irq;
12462#ifdef CONFIG_NET_POLL_CONTROLLER
12463 dev->poll_controller = tg3_poll_controller;
12464#endif
12465
12466 err = tg3_get_invariants(tp);
12467 if (err) {
12468 printk(KERN_ERR PFX "Problem fetching invariants of chip, "
12469 "aborting.\n");
12470 goto err_out_iounmap;
12471 }
12472
Michael Chan4a29cc22006-03-19 13:21:12 -080012473 /* The EPB bridge inside 5714, 5715, and 5780 and any
12474 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080012475 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
12476 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
12477 * do DMA address check in tg3_start_xmit().
12478 */
Michael Chan4a29cc22006-03-19 13:21:12 -080012479 if (tp->tg3_flags2 & TG3_FLG2_IS_5788)
12480 persist_dma_mask = dma_mask = DMA_32BIT_MASK;
12481 else if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) {
Michael Chan72f2afb2006-03-06 19:28:35 -080012482 persist_dma_mask = dma_mask = DMA_40BIT_MASK;
12483#ifdef CONFIG_HIGHMEM
12484 dma_mask = DMA_64BIT_MASK;
12485#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080012486 } else
Michael Chan72f2afb2006-03-06 19:28:35 -080012487 persist_dma_mask = dma_mask = DMA_64BIT_MASK;
12488
12489 /* Configure DMA attributes. */
12490 if (dma_mask > DMA_32BIT_MASK) {
12491 err = pci_set_dma_mask(pdev, dma_mask);
12492 if (!err) {
12493 dev->features |= NETIF_F_HIGHDMA;
12494 err = pci_set_consistent_dma_mask(pdev,
12495 persist_dma_mask);
12496 if (err < 0) {
12497 printk(KERN_ERR PFX "Unable to obtain 64 bit "
12498 "DMA for consistent allocations\n");
12499 goto err_out_iounmap;
12500 }
12501 }
12502 }
12503 if (err || dma_mask == DMA_32BIT_MASK) {
12504 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
12505 if (err) {
12506 printk(KERN_ERR PFX "No usable DMA configuration, "
12507 "aborting.\n");
12508 goto err_out_iounmap;
12509 }
12510 }
12511
Michael Chanfdfec172005-07-25 12:31:48 -070012512 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012513
Linus Torvalds1da177e2005-04-16 15:20:36 -070012514 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
12515 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
12516 }
12517 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12518 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
12519 tp->pci_chip_rev_id == CHIPREV_ID_5705_A0 ||
Michael Chanc7835a72006-11-15 21:14:42 -080012520 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -070012521 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0) {
12522 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
12523 } else {
Michael Chan7f62ad52007-02-20 23:25:40 -080012524 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE | TG3_FLG2_TSO_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012525 }
12526
Michael Chan4e3a7aa2006-03-20 17:47:44 -080012527 /* TSO is on by default on chips that support hardware TSO.
12528 * Firmware TSO on older chips gives lower performance, so it
12529 * is off by default, but can be enabled using ethtool.
12530 */
Michael Chanb0026622006-07-03 19:42:14 -070012531 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012532 dev->features |= NETIF_F_TSO;
Michael Chanb5d37722006-09-27 16:06:21 -070012533 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) &&
12534 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906))
Michael Chanb0026622006-07-03 19:42:14 -070012535 dev->features |= NETIF_F_TSO6;
Matt Carlson9936bcf2007-10-10 18:03:07 -070012536 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
12537 dev->features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070012538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012539
Linus Torvalds1da177e2005-04-16 15:20:36 -070012540
12541 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
12542 !(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
12543 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
12544 tp->tg3_flags2 |= TG3_FLG2_MAX_RXPEND_64;
12545 tp->rx_pending = 63;
12546 }
12547
Linus Torvalds1da177e2005-04-16 15:20:36 -070012548 err = tg3_get_device_address(tp);
12549 if (err) {
12550 printk(KERN_ERR PFX "Could not obtain valid ethernet address, "
12551 "aborting.\n");
12552 goto err_out_iounmap;
12553 }
12554
Matt Carlson0d3031d2007-10-10 18:02:43 -070012555 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
12556 if (!(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
12557 printk(KERN_ERR PFX "Cannot find proper PCI device "
12558 "base address for APE, aborting.\n");
12559 err = -ENODEV;
12560 goto err_out_iounmap;
12561 }
12562
12563 tg3reg_base = pci_resource_start(pdev, 2);
12564 tg3reg_len = pci_resource_len(pdev, 2);
12565
12566 tp->aperegs = ioremap_nocache(tg3reg_base, tg3reg_len);
12567 if (tp->aperegs == 0UL) {
12568 printk(KERN_ERR PFX "Cannot map APE registers, "
12569 "aborting.\n");
12570 err = -ENOMEM;
12571 goto err_out_iounmap;
12572 }
12573
12574 tg3_ape_lock_init(tp);
12575 }
12576
Matt Carlsonc88864d2007-11-12 21:07:01 -080012577 /*
12578 * Reset chip in case UNDI or EFI driver did not shutdown
12579 * DMA self test will enable WDMAC and we'll see (spurious)
12580 * pending DMA on the PCI bus at that point.
12581 */
12582 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
12583 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
12584 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
12585 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
12586 }
12587
12588 err = tg3_test_dma(tp);
12589 if (err) {
12590 printk(KERN_ERR PFX "DMA engine test failed, aborting.\n");
12591 goto err_out_apeunmap;
12592 }
12593
12594 /* Tigon3 can do ipv4 only... and some chips have buggy
12595 * checksumming.
12596 */
12597 if ((tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) == 0) {
12598 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
12599 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
12600 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
12601 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
12602 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
12603 dev->features |= NETIF_F_IPV6_CSUM;
12604
12605 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
12606 } else
12607 tp->tg3_flags &= ~TG3_FLAG_RX_CHECKSUMS;
12608
12609 /* flow control autonegotiation is default behavior */
12610 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
12611
12612 tg3_init_coal(tp);
12613
Michael Chanc49a1562006-12-17 17:07:29 -080012614 pci_set_drvdata(pdev, dev);
12615
Linus Torvalds1da177e2005-04-16 15:20:36 -070012616 err = register_netdev(dev);
12617 if (err) {
12618 printk(KERN_ERR PFX "Cannot register net device, "
12619 "aborting.\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070012620 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012621 }
12622
Michael Chancbb45d22006-12-07 00:24:09 -080012623 printk(KERN_INFO "%s: Tigon3 [partno(%s) rev %04x PHY(%s)] (%s) %s Ethernet ",
Linus Torvalds1da177e2005-04-16 15:20:36 -070012624 dev->name,
12625 tp->board_part_number,
12626 tp->pci_chip_rev_id,
12627 tg3_phy_string(tp),
Michael Chanf9804dd2005-09-27 12:13:10 -070012628 tg3_bus_string(tp, str),
Michael Chancbb45d22006-12-07 00:24:09 -080012629 ((tp->tg3_flags & TG3_FLAG_10_100_ONLY) ? "10/100Base-TX" :
12630 ((tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) ? "1000Base-SX" :
12631 "10/100/1000Base-T")));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012632
12633 for (i = 0; i < 6; i++)
12634 printk("%2.2x%c", dev->dev_addr[i],
12635 i == 5 ? '\n' : ':');
12636
12637 printk(KERN_INFO "%s: RXcsums[%d] LinkChgREG[%d] "
Michael Chan1c46ae02007-03-24 20:54:37 -070012638 "MIirq[%d] ASF[%d] WireSpeed[%d] TSOcap[%d]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070012639 dev->name,
12640 (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0,
12641 (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) != 0,
12642 (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) != 0,
12643 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012644 (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED) == 0,
12645 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) != 0);
Michael Chan4a29cc22006-03-19 13:21:12 -080012646 printk(KERN_INFO "%s: dma_rwctrl[%08x] dma_mask[%d-bit]\n",
12647 dev->name, tp->dma_rwctrl,
12648 (pdev->dma_mask == DMA_32BIT_MASK) ? 32 :
12649 (((u64) pdev->dma_mask == DMA_40BIT_MASK) ? 40 : 64));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012650
12651 return 0;
12652
Matt Carlson0d3031d2007-10-10 18:02:43 -070012653err_out_apeunmap:
12654 if (tp->aperegs) {
12655 iounmap(tp->aperegs);
12656 tp->aperegs = NULL;
12657 }
12658
Linus Torvalds1da177e2005-04-16 15:20:36 -070012659err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070012660 if (tp->regs) {
12661 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070012662 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070012663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012664
12665err_out_free_dev:
12666 free_netdev(dev);
12667
12668err_out_free_res:
12669 pci_release_regions(pdev);
12670
12671err_out_disable_pdev:
12672 pci_disable_device(pdev);
12673 pci_set_drvdata(pdev, NULL);
12674 return err;
12675}
12676
12677static void __devexit tg3_remove_one(struct pci_dev *pdev)
12678{
12679 struct net_device *dev = pci_get_drvdata(pdev);
12680
12681 if (dev) {
12682 struct tg3 *tp = netdev_priv(dev);
12683
Michael Chan7faa0062006-02-02 17:29:28 -080012684 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -070012685 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070012686 if (tp->aperegs) {
12687 iounmap(tp->aperegs);
12688 tp->aperegs = NULL;
12689 }
Michael Chan68929142005-08-09 20:17:14 -070012690 if (tp->regs) {
12691 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070012692 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070012693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012694 free_netdev(dev);
12695 pci_release_regions(pdev);
12696 pci_disable_device(pdev);
12697 pci_set_drvdata(pdev, NULL);
12698 }
12699}
12700
12701static int tg3_suspend(struct pci_dev *pdev, pm_message_t state)
12702{
12703 struct net_device *dev = pci_get_drvdata(pdev);
12704 struct tg3 *tp = netdev_priv(dev);
12705 int err;
12706
Michael Chan3e0c95f2007-08-03 20:56:54 -070012707 /* PCI register 4 needs to be saved whether netif_running() or not.
12708 * MSI address and data need to be saved if using MSI and
12709 * netif_running().
12710 */
12711 pci_save_state(pdev);
12712
Linus Torvalds1da177e2005-04-16 15:20:36 -070012713 if (!netif_running(dev))
12714 return 0;
12715
Michael Chan7faa0062006-02-02 17:29:28 -080012716 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -070012717 tg3_netif_stop(tp);
12718
12719 del_timer_sync(&tp->timer);
12720
David S. Millerf47c11e2005-06-24 20:18:35 -070012721 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012722 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070012723 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012724
12725 netif_device_detach(dev);
12726
David S. Millerf47c11e2005-06-24 20:18:35 -070012727 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070012728 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan6a9eba12005-12-13 21:08:58 -080012729 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
David S. Millerf47c11e2005-06-24 20:18:35 -070012730 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012731
12732 err = tg3_set_power_state(tp, pci_choose_state(pdev, state));
12733 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070012734 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012735
Michael Chan6a9eba12005-12-13 21:08:58 -080012736 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Michael Chanb9ec6c12006-07-25 16:37:27 -070012737 if (tg3_restart_hw(tp, 1))
12738 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012739
12740 tp->timer.expires = jiffies + tp->timer_offset;
12741 add_timer(&tp->timer);
12742
12743 netif_device_attach(dev);
12744 tg3_netif_start(tp);
12745
Michael Chanb9ec6c12006-07-25 16:37:27 -070012746out:
David S. Millerf47c11e2005-06-24 20:18:35 -070012747 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012748 }
12749
12750 return err;
12751}
12752
12753static int tg3_resume(struct pci_dev *pdev)
12754{
12755 struct net_device *dev = pci_get_drvdata(pdev);
12756 struct tg3 *tp = netdev_priv(dev);
12757 int err;
12758
Michael Chan3e0c95f2007-08-03 20:56:54 -070012759 pci_restore_state(tp->pdev);
12760
Linus Torvalds1da177e2005-04-16 15:20:36 -070012761 if (!netif_running(dev))
12762 return 0;
12763
Michael Chanbc1c7562006-03-20 17:48:03 -080012764 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012765 if (err)
12766 return err;
12767
12768 netif_device_attach(dev);
12769
David S. Millerf47c11e2005-06-24 20:18:35 -070012770 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012771
Michael Chan6a9eba12005-12-13 21:08:58 -080012772 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Michael Chanb9ec6c12006-07-25 16:37:27 -070012773 err = tg3_restart_hw(tp, 1);
12774 if (err)
12775 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012776
12777 tp->timer.expires = jiffies + tp->timer_offset;
12778 add_timer(&tp->timer);
12779
Linus Torvalds1da177e2005-04-16 15:20:36 -070012780 tg3_netif_start(tp);
12781
Michael Chanb9ec6c12006-07-25 16:37:27 -070012782out:
David S. Millerf47c11e2005-06-24 20:18:35 -070012783 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012784
Michael Chanb9ec6c12006-07-25 16:37:27 -070012785 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012786}
12787
12788static struct pci_driver tg3_driver = {
12789 .name = DRV_MODULE_NAME,
12790 .id_table = tg3_pci_tbl,
12791 .probe = tg3_init_one,
12792 .remove = __devexit_p(tg3_remove_one),
12793 .suspend = tg3_suspend,
12794 .resume = tg3_resume
12795};
12796
12797static int __init tg3_init(void)
12798{
Jeff Garzik29917622006-08-19 17:48:59 -040012799 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012800}
12801
12802static void __exit tg3_cleanup(void)
12803{
12804 pci_unregister_driver(&tg3_driver);
12805}
12806
12807module_init(tg3_init);
12808module_exit(tg3_cleanup);