blob: d2439b85a79011d3582991a7fa5cf5902bc675e8 [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>
Matt Carlson158d7ab2008-05-29 01:37:54 -070035#include <linux/phy.h>
Matt Carlsona9daf362008-05-25 23:49:44 -070036#include <linux/brcmphy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/if_vlan.h>
38#include <linux/ip.h>
39#include <linux/tcp.h>
40#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070041#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020042#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030045#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include <asm/system.h>
48#include <asm/io.h>
49#include <asm/byteorder.h>
50#include <asm/uaccess.h>
51
David S. Miller49b6e95f2007-03-29 01:38:42 -070052#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070054#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#endif
56
57#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
58#define TG3_VLAN_TAG_USED 1
59#else
60#define TG3_VLAN_TAG_USED 0
61#endif
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define TG3_TSO_SUPPORT 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#include "tg3.h"
66
67#define DRV_MODULE_NAME "tg3"
68#define PFX DRV_MODULE_NAME ": "
Matt Carlsonbb9122b2008-05-25 23:51:01 -070069#define DRV_MODULE_VERSION "3.93"
70#define DRV_MODULE_RELDATE "May 22, 2008"
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#define TG3_DEF_MAC_MODE 0
73#define TG3_DEF_RX_MODE 0
74#define TG3_DEF_TX_MODE 0
75#define TG3_DEF_MSG_ENABLE \
76 (NETIF_MSG_DRV | \
77 NETIF_MSG_PROBE | \
78 NETIF_MSG_LINK | \
79 NETIF_MSG_TIMER | \
80 NETIF_MSG_IFDOWN | \
81 NETIF_MSG_IFUP | \
82 NETIF_MSG_RX_ERR | \
83 NETIF_MSG_TX_ERR)
84
85/* length of time before we decide the hardware is borked,
86 * and dev->tx_timeout() should be called to fix the problem
87 */
88#define TG3_TX_TIMEOUT (5 * HZ)
89
90/* hardware minimum and maximum for a single frame's data payload */
91#define TG3_MIN_MTU 60
92#define TG3_MAX_MTU(tp) \
Michael Chan0f893dc2005-07-25 12:30:38 -070093 ((tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95/* These numbers seem to be hard coded in the NIC firmware somehow.
96 * You can't change the ring sizes, but you can change where you place
97 * them in the NIC onboard memory.
98 */
99#define TG3_RX_RING_SIZE 512
100#define TG3_DEF_RX_RING_PENDING 200
101#define TG3_RX_JUMBO_RING_SIZE 256
102#define TG3_DEF_RX_JUMBO_RING_PENDING 100
103
104/* Do not place this n-ring entries value into the tp struct itself,
105 * we really want to expose these constants to GCC so that modulo et
106 * al. operations are done with shifts and masks instead of with
107 * hw multiply/modulo instructions. Another solution would be to
108 * replace things like '% foo' with '& (foo - 1)'.
109 */
110#define TG3_RX_RCB_RING_SIZE(tp) \
111 ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ? 512 : 1024)
112
113#define TG3_TX_RING_SIZE 512
114#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
115
116#define TG3_RX_RING_BYTES (sizeof(struct tg3_rx_buffer_desc) * \
117 TG3_RX_RING_SIZE)
118#define TG3_RX_JUMBO_RING_BYTES (sizeof(struct tg3_rx_buffer_desc) * \
119 TG3_RX_JUMBO_RING_SIZE)
120#define TG3_RX_RCB_RING_BYTES(tp) (sizeof(struct tg3_rx_buffer_desc) * \
121 TG3_RX_RCB_RING_SIZE(tp))
122#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
123 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
125
126#define RX_PKT_BUF_SZ (1536 + tp->rx_offset + 64)
127#define RX_JUMBO_PKT_BUF_SZ (9046 + tp->rx_offset + 64)
128
129/* minimum number of free TX descriptors required to wake up TX process */
Ranjit Manomohan42952232006-10-18 20:54:26 -0700130#define TG3_TX_WAKEUP_THRESH(tp) ((tp)->tx_pending / 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132/* number of ETHTOOL_GSTATS u64's */
133#define TG3_NUM_STATS (sizeof(struct tg3_ethtool_stats)/sizeof(u64))
134
Michael Chan4cafd3f2005-05-29 14:56:34 -0700135#define TG3_NUM_TEST 6
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static char version[] __devinitdata =
138 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
139
140MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
141MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
142MODULE_LICENSE("GPL");
143MODULE_VERSION(DRV_MODULE_VERSION);
144
145static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
146module_param(tg3_debug, int, 0);
147MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
148
149static struct pci_device_id tg3_pci_tbl[] = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700150 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
151 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
152 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
153 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
154 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
155 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
156 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
157 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
158 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
159 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
160 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
161 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
162 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
163 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
164 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
165 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
166 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
167 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
168 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
169 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
170 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
171 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
172 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5720)},
173 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700174 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700175 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750)},
176 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
177 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750M)},
178 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
179 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
180 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
181 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
182 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
183 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
184 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
185 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
186 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
187 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
188 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700189 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700190 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
191 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
192 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800193 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700194 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
195 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
196 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
197 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
198 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
199 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
200 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700201 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
202 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700203 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
204 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700205 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700206 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
207 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlson57e69832008-05-25 23:48:31 -0700208 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5785)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700209 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
210 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
211 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
212 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
213 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
214 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
215 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
216 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217};
218
219MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
220
Andreas Mohr50da8592006-08-14 23:54:30 -0700221static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 const char string[ETH_GSTRING_LEN];
223} ethtool_stats_keys[TG3_NUM_STATS] = {
224 { "rx_octets" },
225 { "rx_fragments" },
226 { "rx_ucast_packets" },
227 { "rx_mcast_packets" },
228 { "rx_bcast_packets" },
229 { "rx_fcs_errors" },
230 { "rx_align_errors" },
231 { "rx_xon_pause_rcvd" },
232 { "rx_xoff_pause_rcvd" },
233 { "rx_mac_ctrl_rcvd" },
234 { "rx_xoff_entered" },
235 { "rx_frame_too_long_errors" },
236 { "rx_jabbers" },
237 { "rx_undersize_packets" },
238 { "rx_in_length_errors" },
239 { "rx_out_length_errors" },
240 { "rx_64_or_less_octet_packets" },
241 { "rx_65_to_127_octet_packets" },
242 { "rx_128_to_255_octet_packets" },
243 { "rx_256_to_511_octet_packets" },
244 { "rx_512_to_1023_octet_packets" },
245 { "rx_1024_to_1522_octet_packets" },
246 { "rx_1523_to_2047_octet_packets" },
247 { "rx_2048_to_4095_octet_packets" },
248 { "rx_4096_to_8191_octet_packets" },
249 { "rx_8192_to_9022_octet_packets" },
250
251 { "tx_octets" },
252 { "tx_collisions" },
253
254 { "tx_xon_sent" },
255 { "tx_xoff_sent" },
256 { "tx_flow_control" },
257 { "tx_mac_errors" },
258 { "tx_single_collisions" },
259 { "tx_mult_collisions" },
260 { "tx_deferred" },
261 { "tx_excessive_collisions" },
262 { "tx_late_collisions" },
263 { "tx_collide_2times" },
264 { "tx_collide_3times" },
265 { "tx_collide_4times" },
266 { "tx_collide_5times" },
267 { "tx_collide_6times" },
268 { "tx_collide_7times" },
269 { "tx_collide_8times" },
270 { "tx_collide_9times" },
271 { "tx_collide_10times" },
272 { "tx_collide_11times" },
273 { "tx_collide_12times" },
274 { "tx_collide_13times" },
275 { "tx_collide_14times" },
276 { "tx_collide_15times" },
277 { "tx_ucast_packets" },
278 { "tx_mcast_packets" },
279 { "tx_bcast_packets" },
280 { "tx_carrier_sense_errors" },
281 { "tx_discards" },
282 { "tx_errors" },
283
284 { "dma_writeq_full" },
285 { "dma_write_prioq_full" },
286 { "rxbds_empty" },
287 { "rx_discards" },
288 { "rx_errors" },
289 { "rx_threshold_hit" },
290
291 { "dma_readq_full" },
292 { "dma_read_prioq_full" },
293 { "tx_comp_queue_full" },
294
295 { "ring_set_send_prod_index" },
296 { "ring_status_update" },
297 { "nic_irqs" },
298 { "nic_avoided_irqs" },
299 { "nic_tx_threshold_hit" }
300};
301
Andreas Mohr50da8592006-08-14 23:54:30 -0700302static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700303 const char string[ETH_GSTRING_LEN];
304} ethtool_test_keys[TG3_NUM_TEST] = {
305 { "nvram test (online) " },
306 { "link test (online) " },
307 { "register test (offline)" },
308 { "memory test (offline)" },
309 { "loopback test (offline)" },
310 { "interrupt test (offline)" },
311};
312
Michael Chanb401e9e2005-12-19 16:27:04 -0800313static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
314{
315 writel(val, tp->regs + off);
316}
317
318static u32 tg3_read32(struct tg3 *tp, u32 off)
319{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400320 return (readl(tp->regs + off));
Michael Chanb401e9e2005-12-19 16:27:04 -0800321}
322
Matt Carlson0d3031d2007-10-10 18:02:43 -0700323static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
324{
325 writel(val, tp->aperegs + off);
326}
327
328static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
329{
330 return (readl(tp->aperegs + off));
331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
334{
Michael Chan68929142005-08-09 20:17:14 -0700335 unsigned long flags;
336
337 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700338 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
339 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700340 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700341}
342
343static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
344{
345 writel(val, tp->regs + off);
346 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Michael Chan68929142005-08-09 20:17:14 -0700349static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
350{
351 unsigned long flags;
352 u32 val;
353
354 spin_lock_irqsave(&tp->indirect_lock, flags);
355 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
356 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
357 spin_unlock_irqrestore(&tp->indirect_lock, flags);
358 return val;
359}
360
361static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
362{
363 unsigned long flags;
364
365 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
366 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
367 TG3_64BIT_REG_LOW, val);
368 return;
369 }
370 if (off == (MAILBOX_RCV_STD_PROD_IDX + TG3_64BIT_REG_LOW)) {
371 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
372 TG3_64BIT_REG_LOW, val);
373 return;
374 }
375
376 spin_lock_irqsave(&tp->indirect_lock, flags);
377 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
378 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
379 spin_unlock_irqrestore(&tp->indirect_lock, flags);
380
381 /* In indirect mode when disabling interrupts, we also need
382 * to clear the interrupt bit in the GRC local ctrl register.
383 */
384 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
385 (val == 0x1)) {
386 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
387 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
388 }
389}
390
391static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
392{
393 unsigned long flags;
394 u32 val;
395
396 spin_lock_irqsave(&tp->indirect_lock, flags);
397 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
398 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
399 spin_unlock_irqrestore(&tp->indirect_lock, flags);
400 return val;
401}
402
Michael Chanb401e9e2005-12-19 16:27:04 -0800403/* usec_wait specifies the wait time in usec when writing to certain registers
404 * where it is unsafe to read back the register without some delay.
405 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
406 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
407 */
408static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Michael Chanb401e9e2005-12-19 16:27:04 -0800410 if ((tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) ||
411 (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND))
412 /* Non-posted methods */
413 tp->write32(tp, off, val);
414 else {
415 /* Posted method */
416 tg3_write32(tp, off, val);
417 if (usec_wait)
418 udelay(usec_wait);
419 tp->read32(tp, off);
420 }
421 /* Wait again after the read for the posted method to guarantee that
422 * the wait time is met.
423 */
424 if (usec_wait)
425 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Michael Chan09ee9292005-08-09 20:17:00 -0700428static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
429{
430 tp->write32_mbox(tp, off, val);
Michael Chan68929142005-08-09 20:17:14 -0700431 if (!(tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER) &&
432 !(tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND))
433 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700434}
435
Michael Chan20094932005-08-09 20:16:32 -0700436static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 void __iomem *mbox = tp->regs + off;
439 writel(val, mbox);
440 if (tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG)
441 writel(val, mbox);
442 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
443 readl(mbox);
444}
445
Michael Chanb5d37722006-09-27 16:06:21 -0700446static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
447{
448 return (readl(tp->regs + off + GRCMBOX_BASE));
449}
450
451static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
452{
453 writel(val, tp->regs + off + GRCMBOX_BASE);
454}
455
Michael Chan20094932005-08-09 20:16:32 -0700456#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700457#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Michael Chan20094932005-08-09 20:16:32 -0700458#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
459#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700460#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700461
462#define tw32(reg,val) tp->write32(tp, reg, val)
Michael Chanb401e9e2005-12-19 16:27:04 -0800463#define tw32_f(reg,val) _tw32_flush(tp,(reg),(val), 0)
464#define tw32_wait_f(reg,val,us) _tw32_flush(tp,(reg),(val), (us))
Michael Chan20094932005-08-09 20:16:32 -0700465#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
468{
Michael Chan68929142005-08-09 20:17:14 -0700469 unsigned long flags;
470
Michael Chanb5d37722006-09-27 16:06:21 -0700471 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
472 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
473 return;
474
Michael Chan68929142005-08-09 20:17:14 -0700475 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chanbbadf502006-04-06 21:46:34 -0700476 if (tp->tg3_flags & TG3_FLAG_SRAM_USE_CONFIG) {
477 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
478 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Michael Chanbbadf502006-04-06 21:46:34 -0700480 /* Always leave this as zero. */
481 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
482 } else {
483 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
484 tw32_f(TG3PCI_MEM_WIN_DATA, val);
485
486 /* Always leave this as zero. */
487 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
488 }
Michael Chan68929142005-08-09 20:17:14 -0700489 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
493{
Michael Chan68929142005-08-09 20:17:14 -0700494 unsigned long flags;
495
Michael Chanb5d37722006-09-27 16:06:21 -0700496 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
497 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
498 *val = 0;
499 return;
500 }
501
Michael Chan68929142005-08-09 20:17:14 -0700502 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chanbbadf502006-04-06 21:46:34 -0700503 if (tp->tg3_flags & TG3_FLAG_SRAM_USE_CONFIG) {
504 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
505 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Michael Chanbbadf502006-04-06 21:46:34 -0700507 /* Always leave this as zero. */
508 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
509 } else {
510 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
511 *val = tr32(TG3PCI_MEM_WIN_DATA);
512
513 /* Always leave this as zero. */
514 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
515 }
Michael Chan68929142005-08-09 20:17:14 -0700516 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Matt Carlson0d3031d2007-10-10 18:02:43 -0700519static void tg3_ape_lock_init(struct tg3 *tp)
520{
521 int i;
522
523 /* Make sure the driver hasn't any stale locks. */
524 for (i = 0; i < 8; i++)
525 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + 4 * i,
526 APE_LOCK_GRANT_DRIVER);
527}
528
529static int tg3_ape_lock(struct tg3 *tp, int locknum)
530{
531 int i, off;
532 int ret = 0;
533 u32 status;
534
535 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
536 return 0;
537
538 switch (locknum) {
539 case TG3_APE_LOCK_MEM:
540 break;
541 default:
542 return -EINVAL;
543 }
544
545 off = 4 * locknum;
546
547 tg3_ape_write32(tp, TG3_APE_LOCK_REQ + off, APE_LOCK_REQ_DRIVER);
548
549 /* Wait for up to 1 millisecond to acquire lock. */
550 for (i = 0; i < 100; i++) {
551 status = tg3_ape_read32(tp, TG3_APE_LOCK_GRANT + off);
552 if (status == APE_LOCK_GRANT_DRIVER)
553 break;
554 udelay(10);
555 }
556
557 if (status != APE_LOCK_GRANT_DRIVER) {
558 /* Revoke the lock request. */
559 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + off,
560 APE_LOCK_GRANT_DRIVER);
561
562 ret = -EBUSY;
563 }
564
565 return ret;
566}
567
568static void tg3_ape_unlock(struct tg3 *tp, int locknum)
569{
570 int off;
571
572 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
573 return;
574
575 switch (locknum) {
576 case TG3_APE_LOCK_MEM:
577 break;
578 default:
579 return;
580 }
581
582 off = 4 * locknum;
583 tg3_ape_write32(tp, TG3_APE_LOCK_GRANT + off, APE_LOCK_GRANT_DRIVER);
584}
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586static void tg3_disable_ints(struct tg3 *tp)
587{
588 tw32(TG3PCI_MISC_HOST_CTRL,
589 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Michael Chan09ee9292005-08-09 20:17:00 -0700590 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593static inline void tg3_cond_int(struct tg3 *tp)
594{
Michael Chan38f38432005-09-05 17:53:32 -0700595 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
596 (tp->hw_status->status & SD_STATUS_UPDATED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
Michael Chanb5d37722006-09-27 16:06:21 -0700598 else
599 tw32(HOSTCC_MODE, tp->coalesce_mode |
600 (HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
603static void tg3_enable_ints(struct tg3 *tp)
604{
Michael Chanbbe832c2005-06-24 20:20:04 -0700605 tp->irq_sync = 0;
606 wmb();
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 tw32(TG3PCI_MISC_HOST_CTRL,
609 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Michael Chan09ee9292005-08-09 20:17:00 -0700610 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
611 (tp->last_tag << 24));
Michael Chanfcfa0a32006-03-20 22:28:41 -0800612 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
613 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
614 (tp->last_tag << 24));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 tg3_cond_int(tp);
616}
617
Michael Chan04237dd2005-04-25 15:17:17 -0700618static inline unsigned int tg3_has_work(struct tg3 *tp)
619{
620 struct tg3_hw_status *sblk = tp->hw_status;
621 unsigned int work_exists = 0;
622
623 /* check for phy events */
624 if (!(tp->tg3_flags &
625 (TG3_FLAG_USE_LINKCHG_REG |
626 TG3_FLAG_POLL_SERDES))) {
627 if (sblk->status & SD_STATUS_LINK_CHG)
628 work_exists = 1;
629 }
630 /* check for RX/TX work to do */
631 if (sblk->idx[0].tx_consumer != tp->tx_cons ||
632 sblk->idx[0].rx_producer != tp->rx_rcb_ptr)
633 work_exists = 1;
634
635 return work_exists;
636}
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638/* tg3_restart_ints
Michael Chan04237dd2005-04-25 15:17:17 -0700639 * similar to tg3_enable_ints, but it accurately determines whether there
640 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400641 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 */
643static void tg3_restart_ints(struct tg3 *tp)
644{
David S. Millerfac9b832005-05-18 22:46:34 -0700645 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
646 tp->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 mmiowb();
648
David S. Millerfac9b832005-05-18 22:46:34 -0700649 /* When doing tagged status, this work check is unnecessary.
650 * The last_tag we write above tells the chip which piece of
651 * work we've completed.
652 */
653 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
654 tg3_has_work(tp))
Michael Chan04237dd2005-04-25 15:17:17 -0700655 tw32(HOSTCC_MODE, tp->coalesce_mode |
656 (HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659static inline void tg3_netif_stop(struct tg3 *tp)
660{
Michael Chanbbe832c2005-06-24 20:20:04 -0700661 tp->dev->trans_start = jiffies; /* prevent tx timeout */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700662 napi_disable(&tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 netif_tx_disable(tp->dev);
664}
665
666static inline void tg3_netif_start(struct tg3 *tp)
667{
668 netif_wake_queue(tp->dev);
669 /* NOTE: unconditional netif_wake_queue is only appropriate
670 * so long as all callers are assured to have free tx slots
671 * (such as after tg3_init_hw)
672 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700673 napi_enable(&tp->napi);
David S. Millerf47c11e2005-06-24 20:18:35 -0700674 tp->hw_status->status |= SD_STATUS_UPDATED;
675 tg3_enable_ints(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678static void tg3_switch_clocks(struct tg3 *tp)
679{
680 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
681 u32 orig_clock_ctrl;
682
Matt Carlson795d01c2007-10-07 23:28:17 -0700683 if ((tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
684 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700685 return;
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 orig_clock_ctrl = clock_ctrl;
688 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
689 CLOCK_CTRL_CLKRUN_OENABLE |
690 0x1f);
691 tp->pci_clock_ctrl = clock_ctrl;
692
693 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
694 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800695 tw32_wait_f(TG3PCI_CLOCK_CTRL,
696 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800699 tw32_wait_f(TG3PCI_CLOCK_CTRL,
700 clock_ctrl |
701 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
702 40);
703 tw32_wait_f(TG3PCI_CLOCK_CTRL,
704 clock_ctrl | (CLOCK_CTRL_ALTCLK),
705 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800707 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
710#define PHY_BUSY_LOOPS 5000
711
712static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
713{
714 u32 frame_val;
715 unsigned int loops;
716 int ret;
717
718 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
719 tw32_f(MAC_MI_MODE,
720 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
721 udelay(80);
722 }
723
724 *val = 0x0;
725
726 frame_val = ((PHY_ADDR << MI_COM_PHY_ADDR_SHIFT) &
727 MI_COM_PHY_ADDR_MASK);
728 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
729 MI_COM_REG_ADDR_MASK);
730 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 tw32_f(MAC_MI_COM, frame_val);
733
734 loops = PHY_BUSY_LOOPS;
735 while (loops != 0) {
736 udelay(10);
737 frame_val = tr32(MAC_MI_COM);
738
739 if ((frame_val & MI_COM_BUSY) == 0) {
740 udelay(5);
741 frame_val = tr32(MAC_MI_COM);
742 break;
743 }
744 loops -= 1;
745 }
746
747 ret = -EBUSY;
748 if (loops != 0) {
749 *val = frame_val & MI_COM_DATA_MASK;
750 ret = 0;
751 }
752
753 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
754 tw32_f(MAC_MI_MODE, tp->mi_mode);
755 udelay(80);
756 }
757
758 return ret;
759}
760
761static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
762{
763 u32 frame_val;
764 unsigned int loops;
765 int ret;
766
Michael Chanb5d37722006-09-27 16:06:21 -0700767 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
768 (reg == MII_TG3_CTRL || reg == MII_TG3_AUX_CTRL))
769 return 0;
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
772 tw32_f(MAC_MI_MODE,
773 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
774 udelay(80);
775 }
776
777 frame_val = ((PHY_ADDR << MI_COM_PHY_ADDR_SHIFT) &
778 MI_COM_PHY_ADDR_MASK);
779 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
780 MI_COM_REG_ADDR_MASK);
781 frame_val |= (val & MI_COM_DATA_MASK);
782 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 tw32_f(MAC_MI_COM, frame_val);
785
786 loops = PHY_BUSY_LOOPS;
787 while (loops != 0) {
788 udelay(10);
789 frame_val = tr32(MAC_MI_COM);
790 if ((frame_val & MI_COM_BUSY) == 0) {
791 udelay(5);
792 frame_val = tr32(MAC_MI_COM);
793 break;
794 }
795 loops -= 1;
796 }
797
798 ret = -EBUSY;
799 if (loops != 0)
800 ret = 0;
801
802 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
803 tw32_f(MAC_MI_MODE, tp->mi_mode);
804 udelay(80);
805 }
806
807 return ret;
808}
809
Matt Carlson95e28692008-05-25 23:44:14 -0700810static int tg3_bmcr_reset(struct tg3 *tp)
811{
812 u32 phy_control;
813 int limit, err;
814
815 /* OK, reset it, and poll the BMCR_RESET bit until it
816 * clears or we time out.
817 */
818 phy_control = BMCR_RESET;
819 err = tg3_writephy(tp, MII_BMCR, phy_control);
820 if (err != 0)
821 return -EBUSY;
822
823 limit = 5000;
824 while (limit--) {
825 err = tg3_readphy(tp, MII_BMCR, &phy_control);
826 if (err != 0)
827 return -EBUSY;
828
829 if ((phy_control & BMCR_RESET) == 0) {
830 udelay(40);
831 break;
832 }
833 udelay(10);
834 }
835 if (limit <= 0)
836 return -EBUSY;
837
838 return 0;
839}
840
Matt Carlson158d7ab2008-05-29 01:37:54 -0700841static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
842{
843 struct tg3 *tp = (struct tg3 *)bp->priv;
844 u32 val;
845
846 if (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_PAUSED)
847 return -EAGAIN;
848
849 if (tg3_readphy(tp, reg, &val))
850 return -EIO;
851
852 return val;
853}
854
855static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
856{
857 struct tg3 *tp = (struct tg3 *)bp->priv;
858
859 if (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_PAUSED)
860 return -EAGAIN;
861
862 if (tg3_writephy(tp, reg, val))
863 return -EIO;
864
865 return 0;
866}
867
868static int tg3_mdio_reset(struct mii_bus *bp)
869{
870 return 0;
871}
872
Matt Carlsona9daf362008-05-25 23:49:44 -0700873static void tg3_mdio_config(struct tg3 *tp)
874{
875 u32 val;
876
877 if (tp->mdio_bus.phy_map[PHY_ADDR]->interface !=
878 PHY_INTERFACE_MODE_RGMII)
879 return;
880
881 val = tr32(MAC_PHYCFG1) & ~(MAC_PHYCFG1_RGMII_EXT_RX_DEC |
882 MAC_PHYCFG1_RGMII_SND_STAT_EN);
883 if (tp->tg3_flags3 & TG3_FLG3_RGMII_STD_IBND_DISABLE) {
884 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
885 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
886 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
887 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
888 }
889 tw32(MAC_PHYCFG1, val | MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV);
890
891 val = tr32(MAC_PHYCFG2) & ~(MAC_PHYCFG2_INBAND_ENABLE);
892 if (!(tp->tg3_flags3 & TG3_FLG3_RGMII_STD_IBND_DISABLE))
893 val |= MAC_PHYCFG2_INBAND_ENABLE;
894 tw32(MAC_PHYCFG2, val);
895
896 val = tr32(MAC_EXT_RGMII_MODE);
897 val &= ~(MAC_RGMII_MODE_RX_INT_B |
898 MAC_RGMII_MODE_RX_QUALITY |
899 MAC_RGMII_MODE_RX_ACTIVITY |
900 MAC_RGMII_MODE_RX_ENG_DET |
901 MAC_RGMII_MODE_TX_ENABLE |
902 MAC_RGMII_MODE_TX_LOWPWR |
903 MAC_RGMII_MODE_TX_RESET);
904 if (tp->tg3_flags3 & TG3_FLG3_RGMII_STD_IBND_DISABLE) {
905 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
906 val |= MAC_RGMII_MODE_RX_INT_B |
907 MAC_RGMII_MODE_RX_QUALITY |
908 MAC_RGMII_MODE_RX_ACTIVITY |
909 MAC_RGMII_MODE_RX_ENG_DET;
910 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
911 val |= MAC_RGMII_MODE_TX_ENABLE |
912 MAC_RGMII_MODE_TX_LOWPWR |
913 MAC_RGMII_MODE_TX_RESET;
914 }
915 tw32(MAC_EXT_RGMII_MODE, val);
916}
917
Matt Carlson158d7ab2008-05-29 01:37:54 -0700918static void tg3_mdio_start(struct tg3 *tp)
919{
920 if (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED) {
921 mutex_lock(&tp->mdio_bus.mdio_lock);
922 tp->tg3_flags3 &= ~TG3_FLG3_MDIOBUS_PAUSED;
923 mutex_unlock(&tp->mdio_bus.mdio_lock);
924 }
925
926 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
927 tw32_f(MAC_MI_MODE, tp->mi_mode);
928 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -0700929
930 if (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED)
931 tg3_mdio_config(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -0700932}
933
934static void tg3_mdio_stop(struct tg3 *tp)
935{
936 if (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED) {
937 mutex_lock(&tp->mdio_bus.mdio_lock);
938 tp->tg3_flags3 |= TG3_FLG3_MDIOBUS_PAUSED;
939 mutex_unlock(&tp->mdio_bus.mdio_lock);
940 }
941}
942
943static int tg3_mdio_init(struct tg3 *tp)
944{
945 int i;
946 u32 reg;
Matt Carlsona9daf362008-05-25 23:49:44 -0700947 struct phy_device *phydev;
Matt Carlson158d7ab2008-05-29 01:37:54 -0700948 struct mii_bus *mdio_bus = &tp->mdio_bus;
949
950 tg3_mdio_start(tp);
951
952 if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) ||
953 (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED))
954 return 0;
955
956 memset(mdio_bus, 0, sizeof(*mdio_bus));
957
958 mdio_bus->name = "tg3 mdio bus";
959 snprintf(mdio_bus->id, MII_BUS_ID_SIZE, "%x",
960 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
961 mdio_bus->priv = tp;
962 mdio_bus->dev = &tp->pdev->dev;
963 mdio_bus->read = &tg3_mdio_read;
964 mdio_bus->write = &tg3_mdio_write;
965 mdio_bus->reset = &tg3_mdio_reset;
966 mdio_bus->phy_mask = ~(1 << PHY_ADDR);
967 mdio_bus->irq = &tp->mdio_irq[0];
968
969 for (i = 0; i < PHY_MAX_ADDR; i++)
970 mdio_bus->irq[i] = PHY_POLL;
971
972 /* The bus registration will look for all the PHYs on the mdio bus.
973 * Unfortunately, it does not ensure the PHY is powered up before
974 * accessing the PHY ID registers. A chip reset is the
975 * quickest way to bring the device back to an operational state..
976 */
977 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
978 tg3_bmcr_reset(tp);
979
980 i = mdiobus_register(mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -0700981 if (i) {
Matt Carlson158d7ab2008-05-29 01:37:54 -0700982 printk(KERN_WARNING "%s: mdiobus_reg failed (0x%x)\n",
983 tp->dev->name, i);
Matt Carlsona9daf362008-05-25 23:49:44 -0700984 return i;
985 }
Matt Carlson158d7ab2008-05-29 01:37:54 -0700986
Matt Carlsona9daf362008-05-25 23:49:44 -0700987 tp->tg3_flags3 |= TG3_FLG3_MDIOBUS_INITED;
988
989 phydev = tp->mdio_bus.phy_map[PHY_ADDR];
990
991 switch (phydev->phy_id) {
992 case TG3_PHY_ID_BCM50610:
993 phydev->interface = PHY_INTERFACE_MODE_RGMII;
994 if (tp->tg3_flags3 & TG3_FLG3_RGMII_STD_IBND_DISABLE)
995 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
996 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_RX_EN)
997 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
998 if (tp->tg3_flags3 & TG3_FLG3_RGMII_EXT_IBND_TX_EN)
999 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
1000 break;
1001 case TG3_PHY_ID_BCMAC131:
1002 phydev->interface = PHY_INTERFACE_MODE_MII;
1003 break;
1004 }
1005
1006 tg3_mdio_config(tp);
1007
1008 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001009}
1010
1011static void tg3_mdio_fini(struct tg3 *tp)
1012{
1013 if (tp->tg3_flags3 & TG3_FLG3_MDIOBUS_INITED) {
1014 tp->tg3_flags3 &= ~TG3_FLG3_MDIOBUS_INITED;
1015 mdiobus_unregister(&tp->mdio_bus);
1016 tp->tg3_flags3 &= ~TG3_FLG3_MDIOBUS_PAUSED;
1017 }
1018}
1019
Matt Carlson95e28692008-05-25 23:44:14 -07001020/* tp->lock is held. */
1021static void tg3_wait_for_event_ack(struct tg3 *tp)
1022{
1023 int i;
1024
1025 /* Wait for up to 2.5 milliseconds */
1026 for (i = 0; i < 250000; i++) {
1027 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1028 break;
1029 udelay(10);
1030 }
1031}
1032
1033/* tp->lock is held. */
1034static void tg3_ump_link_report(struct tg3 *tp)
1035{
1036 u32 reg;
1037 u32 val;
1038
1039 if (!(tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
1040 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
1041 return;
1042
1043 tg3_wait_for_event_ack(tp);
1044
1045 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1046
1047 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1048
1049 val = 0;
1050 if (!tg3_readphy(tp, MII_BMCR, &reg))
1051 val = reg << 16;
1052 if (!tg3_readphy(tp, MII_BMSR, &reg))
1053 val |= (reg & 0xffff);
1054 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, val);
1055
1056 val = 0;
1057 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1058 val = reg << 16;
1059 if (!tg3_readphy(tp, MII_LPA, &reg))
1060 val |= (reg & 0xffff);
1061 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 4, val);
1062
1063 val = 0;
1064 if (!(tp->tg3_flags2 & TG3_FLG2_MII_SERDES)) {
1065 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1066 val = reg << 16;
1067 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1068 val |= (reg & 0xffff);
1069 }
1070 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 8, val);
1071
1072 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1073 val = reg << 16;
1074 else
1075 val = 0;
1076 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 12, val);
1077
1078 val = tr32(GRC_RX_CPU_EVENT);
1079 val |= GRC_RX_CPU_DRIVER_EVENT;
1080 tw32_f(GRC_RX_CPU_EVENT, val);
1081}
1082
1083static void tg3_link_report(struct tg3 *tp)
1084{
1085 if (!netif_carrier_ok(tp->dev)) {
1086 if (netif_msg_link(tp))
1087 printk(KERN_INFO PFX "%s: Link is down.\n",
1088 tp->dev->name);
1089 tg3_ump_link_report(tp);
1090 } else if (netif_msg_link(tp)) {
1091 printk(KERN_INFO PFX "%s: Link is up at %d Mbps, %s duplex.\n",
1092 tp->dev->name,
1093 (tp->link_config.active_speed == SPEED_1000 ?
1094 1000 :
1095 (tp->link_config.active_speed == SPEED_100 ?
1096 100 : 10)),
1097 (tp->link_config.active_duplex == DUPLEX_FULL ?
1098 "full" : "half"));
1099
1100 printk(KERN_INFO PFX
1101 "%s: Flow control is %s for TX and %s for RX.\n",
1102 tp->dev->name,
1103 (tp->link_config.active_flowctrl & TG3_FLOW_CTRL_TX) ?
1104 "on" : "off",
1105 (tp->link_config.active_flowctrl & TG3_FLOW_CTRL_RX) ?
1106 "on" : "off");
1107 tg3_ump_link_report(tp);
1108 }
1109}
1110
1111static u16 tg3_advert_flowctrl_1000T(u8 flow_ctrl)
1112{
1113 u16 miireg;
1114
1115 if ((flow_ctrl & TG3_FLOW_CTRL_TX) && (flow_ctrl & TG3_FLOW_CTRL_RX))
1116 miireg = ADVERTISE_PAUSE_CAP;
1117 else if (flow_ctrl & TG3_FLOW_CTRL_TX)
1118 miireg = ADVERTISE_PAUSE_ASYM;
1119 else if (flow_ctrl & TG3_FLOW_CTRL_RX)
1120 miireg = ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1121 else
1122 miireg = 0;
1123
1124 return miireg;
1125}
1126
1127static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1128{
1129 u16 miireg;
1130
1131 if ((flow_ctrl & TG3_FLOW_CTRL_TX) && (flow_ctrl & TG3_FLOW_CTRL_RX))
1132 miireg = ADVERTISE_1000XPAUSE;
1133 else if (flow_ctrl & TG3_FLOW_CTRL_TX)
1134 miireg = ADVERTISE_1000XPSE_ASYM;
1135 else if (flow_ctrl & TG3_FLOW_CTRL_RX)
1136 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1137 else
1138 miireg = 0;
1139
1140 return miireg;
1141}
1142
1143static u8 tg3_resolve_flowctrl_1000T(u16 lcladv, u16 rmtadv)
1144{
1145 u8 cap = 0;
1146
1147 if (lcladv & ADVERTISE_PAUSE_CAP) {
1148 if (lcladv & ADVERTISE_PAUSE_ASYM) {
1149 if (rmtadv & LPA_PAUSE_CAP)
1150 cap = TG3_FLOW_CTRL_TX | TG3_FLOW_CTRL_RX;
1151 else if (rmtadv & LPA_PAUSE_ASYM)
1152 cap = TG3_FLOW_CTRL_RX;
1153 } else {
1154 if (rmtadv & LPA_PAUSE_CAP)
1155 cap = TG3_FLOW_CTRL_TX | TG3_FLOW_CTRL_RX;
1156 }
1157 } else if (lcladv & ADVERTISE_PAUSE_ASYM) {
1158 if ((rmtadv & LPA_PAUSE_CAP) && (rmtadv & LPA_PAUSE_ASYM))
1159 cap = TG3_FLOW_CTRL_TX;
1160 }
1161
1162 return cap;
1163}
1164
1165static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1166{
1167 u8 cap = 0;
1168
1169 if (lcladv & ADVERTISE_1000XPAUSE) {
1170 if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1171 if (rmtadv & LPA_1000XPAUSE)
1172 cap = TG3_FLOW_CTRL_TX | TG3_FLOW_CTRL_RX;
1173 else if (rmtadv & LPA_1000XPAUSE_ASYM)
1174 cap = TG3_FLOW_CTRL_RX;
1175 } else {
1176 if (rmtadv & LPA_1000XPAUSE)
1177 cap = TG3_FLOW_CTRL_TX | TG3_FLOW_CTRL_RX;
1178 }
1179 } else if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1180 if ((rmtadv & LPA_1000XPAUSE) && (rmtadv & LPA_1000XPAUSE_ASYM))
1181 cap = TG3_FLOW_CTRL_TX;
1182 }
1183
1184 return cap;
1185}
1186
Matt Carlsonf51f3562008-05-25 23:45:08 -07001187static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001188{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001189 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001190 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001191 u32 old_rx_mode = tp->rx_mode;
1192 u32 old_tx_mode = tp->tx_mode;
1193
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001194 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)
1195 autoneg = tp->mdio_bus.phy_map[PHY_ADDR]->autoneg;
1196 else
1197 autoneg = tp->link_config.autoneg;
1198
1199 if (autoneg == AUTONEG_ENABLE &&
Matt Carlson95e28692008-05-25 23:44:14 -07001200 (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG)) {
1201 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001202 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001203 else
Matt Carlsonf51f3562008-05-25 23:45:08 -07001204 flowctrl = tg3_resolve_flowctrl_1000T(lcladv, rmtadv);
1205 } else
1206 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001207
Matt Carlsonf51f3562008-05-25 23:45:08 -07001208 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001209
Matt Carlsonf51f3562008-05-25 23:45:08 -07001210 if (flowctrl & TG3_FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001211 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1212 else
1213 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1214
Matt Carlsonf51f3562008-05-25 23:45:08 -07001215 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001216 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001217
Matt Carlsonf51f3562008-05-25 23:45:08 -07001218 if (flowctrl & TG3_FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001219 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1220 else
1221 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1222
Matt Carlsonf51f3562008-05-25 23:45:08 -07001223 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001224 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001225}
1226
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001227static void tg3_adjust_link(struct net_device *dev)
1228{
1229 u8 oldflowctrl, linkmesg = 0;
1230 u32 mac_mode, lcl_adv, rmt_adv;
1231 struct tg3 *tp = netdev_priv(dev);
1232 struct phy_device *phydev = tp->mdio_bus.phy_map[PHY_ADDR];
1233
1234 spin_lock(&tp->lock);
1235
1236 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1237 MAC_MODE_HALF_DUPLEX);
1238
1239 oldflowctrl = tp->link_config.active_flowctrl;
1240
1241 if (phydev->link) {
1242 lcl_adv = 0;
1243 rmt_adv = 0;
1244
1245 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1246 mac_mode |= MAC_MODE_PORT_MODE_MII;
1247 else
1248 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1249
1250 if (phydev->duplex == DUPLEX_HALF)
1251 mac_mode |= MAC_MODE_HALF_DUPLEX;
1252 else {
1253 lcl_adv = tg3_advert_flowctrl_1000T(
1254 tp->link_config.flowctrl);
1255
1256 if (phydev->pause)
1257 rmt_adv = LPA_PAUSE_CAP;
1258 if (phydev->asym_pause)
1259 rmt_adv |= LPA_PAUSE_ASYM;
1260 }
1261
1262 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1263 } else
1264 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1265
1266 if (mac_mode != tp->mac_mode) {
1267 tp->mac_mode = mac_mode;
1268 tw32_f(MAC_MODE, tp->mac_mode);
1269 udelay(40);
1270 }
1271
1272 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1273 tw32(MAC_TX_LENGTHS,
1274 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1275 (6 << TX_LENGTHS_IPG_SHIFT) |
1276 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1277 else
1278 tw32(MAC_TX_LENGTHS,
1279 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1280 (6 << TX_LENGTHS_IPG_SHIFT) |
1281 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1282
1283 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1284 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1285 phydev->speed != tp->link_config.active_speed ||
1286 phydev->duplex != tp->link_config.active_duplex ||
1287 oldflowctrl != tp->link_config.active_flowctrl)
1288 linkmesg = 1;
1289
1290 tp->link_config.active_speed = phydev->speed;
1291 tp->link_config.active_duplex = phydev->duplex;
1292
1293 spin_unlock(&tp->lock);
1294
1295 if (linkmesg)
1296 tg3_link_report(tp);
1297}
1298
1299static int tg3_phy_init(struct tg3 *tp)
1300{
1301 struct phy_device *phydev;
1302
1303 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED)
1304 return 0;
1305
1306 /* Bring the PHY back to a known state. */
1307 tg3_bmcr_reset(tp);
1308
1309 phydev = tp->mdio_bus.phy_map[PHY_ADDR];
1310
1311 /* Attach the MAC to the PHY. */
Matt Carlsona9daf362008-05-25 23:49:44 -07001312 phydev = phy_connect(tp->dev, phydev->dev.bus_id, tg3_adjust_link,
1313 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001314 if (IS_ERR(phydev)) {
1315 printk(KERN_ERR "%s: Could not attach to PHY\n", tp->dev->name);
1316 return PTR_ERR(phydev);
1317 }
1318
1319 tp->tg3_flags3 |= TG3_FLG3_PHY_CONNECTED;
1320
1321 /* Mask with MAC supported features. */
1322 phydev->supported &= (PHY_GBIT_FEATURES |
1323 SUPPORTED_Pause |
1324 SUPPORTED_Asym_Pause);
1325
1326 phydev->advertising = phydev->supported;
1327
1328 printk(KERN_INFO
1329 "%s: attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
1330 tp->dev->name, phydev->drv->name, phydev->dev.bus_id);
1331
1332 return 0;
1333}
1334
1335static void tg3_phy_start(struct tg3 *tp)
1336{
1337 struct phy_device *phydev;
1338
1339 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
1340 return;
1341
1342 phydev = tp->mdio_bus.phy_map[PHY_ADDR];
1343
1344 if (tp->link_config.phy_is_low_power) {
1345 tp->link_config.phy_is_low_power = 0;
1346 phydev->speed = tp->link_config.orig_speed;
1347 phydev->duplex = tp->link_config.orig_duplex;
1348 phydev->autoneg = tp->link_config.orig_autoneg;
1349 phydev->advertising = tp->link_config.orig_advertising;
1350 }
1351
1352 phy_start(phydev);
1353
1354 phy_start_aneg(phydev);
1355}
1356
1357static void tg3_phy_stop(struct tg3 *tp)
1358{
1359 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
1360 return;
1361
1362 phy_stop(tp->mdio_bus.phy_map[PHY_ADDR]);
1363}
1364
1365static void tg3_phy_fini(struct tg3 *tp)
1366{
1367 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
1368 phy_disconnect(tp->mdio_bus.phy_map[PHY_ADDR]);
1369 tp->tg3_flags3 &= ~TG3_FLG3_PHY_CONNECTED;
1370 }
1371}
1372
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001373static void tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1374{
1375 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1376 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1377}
1378
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001379static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
1380{
1381 u32 phy;
1382
1383 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
1384 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
1385 return;
1386
1387 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1388 u32 ephy;
1389
1390 if (!tg3_readphy(tp, MII_TG3_EPHY_TEST, &ephy)) {
1391 tg3_writephy(tp, MII_TG3_EPHY_TEST,
1392 ephy | MII_TG3_EPHY_SHADOW_EN);
1393 if (!tg3_readphy(tp, MII_TG3_EPHYTST_MISCCTRL, &phy)) {
1394 if (enable)
1395 phy |= MII_TG3_EPHYTST_MISCCTRL_MDIX;
1396 else
1397 phy &= ~MII_TG3_EPHYTST_MISCCTRL_MDIX;
1398 tg3_writephy(tp, MII_TG3_EPHYTST_MISCCTRL, phy);
1399 }
1400 tg3_writephy(tp, MII_TG3_EPHY_TEST, ephy);
1401 }
1402 } else {
1403 phy = MII_TG3_AUXCTL_MISC_RDSEL_MISC |
1404 MII_TG3_AUXCTL_SHDWSEL_MISC;
1405 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, phy) &&
1406 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy)) {
1407 if (enable)
1408 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1409 else
1410 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1411 phy |= MII_TG3_AUXCTL_MISC_WREN;
1412 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1413 }
1414 }
1415}
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417static void tg3_phy_set_wirespeed(struct tg3 *tp)
1418{
1419 u32 val;
1420
1421 if (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED)
1422 return;
1423
1424 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x7007) &&
1425 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &val))
1426 tg3_writephy(tp, MII_TG3_AUX_CTRL,
1427 (val | (1 << 15) | (1 << 4)));
1428}
1429
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001430static void tg3_phy_apply_otp(struct tg3 *tp)
1431{
1432 u32 otp, phy;
1433
1434 if (!tp->phy_otp)
1435 return;
1436
1437 otp = tp->phy_otp;
1438
1439 /* Enable SM_DSP clock and tx 6dB coding. */
1440 phy = MII_TG3_AUXCTL_SHDWSEL_AUXCTL |
1441 MII_TG3_AUXCTL_ACTL_SMDSP_ENA |
1442 MII_TG3_AUXCTL_ACTL_TX_6DB;
1443 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1444
1445 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
1446 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
1447 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
1448
1449 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
1450 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
1451 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
1452
1453 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
1454 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
1455 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
1456
1457 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
1458 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
1459
1460 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
1461 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
1462
1463 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
1464 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
1465 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
1466
1467 /* Turn off SM_DSP clock. */
1468 phy = MII_TG3_AUXCTL_SHDWSEL_AUXCTL |
1469 MII_TG3_AUXCTL_ACTL_TX_6DB;
1470 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy);
1471}
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473static int tg3_wait_macro_done(struct tg3 *tp)
1474{
1475 int limit = 100;
1476
1477 while (limit--) {
1478 u32 tmp32;
1479
1480 if (!tg3_readphy(tp, 0x16, &tmp32)) {
1481 if ((tmp32 & 0x1000) == 0)
1482 break;
1483 }
1484 }
1485 if (limit <= 0)
1486 return -EBUSY;
1487
1488 return 0;
1489}
1490
1491static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
1492{
1493 static const u32 test_pat[4][6] = {
1494 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
1495 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
1496 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
1497 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
1498 };
1499 int chan;
1500
1501 for (chan = 0; chan < 4; chan++) {
1502 int i;
1503
1504 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1505 (chan * 0x2000) | 0x0200);
1506 tg3_writephy(tp, 0x16, 0x0002);
1507
1508 for (i = 0; i < 6; i++)
1509 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
1510 test_pat[chan][i]);
1511
1512 tg3_writephy(tp, 0x16, 0x0202);
1513 if (tg3_wait_macro_done(tp)) {
1514 *resetp = 1;
1515 return -EBUSY;
1516 }
1517
1518 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1519 (chan * 0x2000) | 0x0200);
1520 tg3_writephy(tp, 0x16, 0x0082);
1521 if (tg3_wait_macro_done(tp)) {
1522 *resetp = 1;
1523 return -EBUSY;
1524 }
1525
1526 tg3_writephy(tp, 0x16, 0x0802);
1527 if (tg3_wait_macro_done(tp)) {
1528 *resetp = 1;
1529 return -EBUSY;
1530 }
1531
1532 for (i = 0; i < 6; i += 2) {
1533 u32 low, high;
1534
1535 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
1536 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
1537 tg3_wait_macro_done(tp)) {
1538 *resetp = 1;
1539 return -EBUSY;
1540 }
1541 low &= 0x7fff;
1542 high &= 0x000f;
1543 if (low != test_pat[chan][i] ||
1544 high != test_pat[chan][i+1]) {
1545 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
1546 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
1547 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
1548
1549 return -EBUSY;
1550 }
1551 }
1552 }
1553
1554 return 0;
1555}
1556
1557static int tg3_phy_reset_chanpat(struct tg3 *tp)
1558{
1559 int chan;
1560
1561 for (chan = 0; chan < 4; chan++) {
1562 int i;
1563
1564 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1565 (chan * 0x2000) | 0x0200);
1566 tg3_writephy(tp, 0x16, 0x0002);
1567 for (i = 0; i < 6; i++)
1568 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
1569 tg3_writephy(tp, 0x16, 0x0202);
1570 if (tg3_wait_macro_done(tp))
1571 return -EBUSY;
1572 }
1573
1574 return 0;
1575}
1576
1577static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
1578{
1579 u32 reg32, phy9_orig;
1580 int retries, do_phy_reset, err;
1581
1582 retries = 10;
1583 do_phy_reset = 1;
1584 do {
1585 if (do_phy_reset) {
1586 err = tg3_bmcr_reset(tp);
1587 if (err)
1588 return err;
1589 do_phy_reset = 0;
1590 }
1591
1592 /* Disable transmitter and interrupt. */
1593 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
1594 continue;
1595
1596 reg32 |= 0x3000;
1597 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1598
1599 /* Set full-duplex, 1000 mbps. */
1600 tg3_writephy(tp, MII_BMCR,
1601 BMCR_FULLDPLX | TG3_BMCR_SPEED1000);
1602
1603 /* Set to master mode. */
1604 if (tg3_readphy(tp, MII_TG3_CTRL, &phy9_orig))
1605 continue;
1606
1607 tg3_writephy(tp, MII_TG3_CTRL,
1608 (MII_TG3_CTRL_AS_MASTER |
1609 MII_TG3_CTRL_ENABLE_AS_MASTER));
1610
1611 /* Enable SM_DSP_CLOCK and 6dB. */
1612 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1613
1614 /* Block the PHY control access. */
1615 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
1616 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0800);
1617
1618 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
1619 if (!err)
1620 break;
1621 } while (--retries);
1622
1623 err = tg3_phy_reset_chanpat(tp);
1624 if (err)
1625 return err;
1626
1627 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
1628 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0000);
1629
1630 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
1631 tg3_writephy(tp, 0x16, 0x0000);
1632
1633 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1634 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
1635 /* Set Extended packet length bit for jumbo frames */
1636 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4400);
1637 }
1638 else {
1639 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1640 }
1641
1642 tg3_writephy(tp, MII_TG3_CTRL, phy9_orig);
1643
1644 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
1645 reg32 &= ~0x3000;
1646 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1647 } else if (!err)
1648 err = -EBUSY;
1649
1650 return err;
1651}
1652
1653/* This will reset the tigon3 PHY if there is no valid
1654 * link unless the FORCE argument is non-zero.
1655 */
1656static int tg3_phy_reset(struct tg3 *tp)
1657{
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001658 u32 cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 u32 phy_status;
1660 int err;
1661
Michael Chan60189dd2006-12-17 17:08:07 -08001662 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1663 u32 val;
1664
1665 val = tr32(GRC_MISC_CFG);
1666 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
1667 udelay(40);
1668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 err = tg3_readphy(tp, MII_BMSR, &phy_status);
1670 err |= tg3_readphy(tp, MII_BMSR, &phy_status);
1671 if (err != 0)
1672 return -EBUSY;
1673
Michael Chanc8e1e822006-04-29 18:55:17 -07001674 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
1675 netif_carrier_off(tp->dev);
1676 tg3_link_report(tp);
1677 }
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1680 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
1681 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
1682 err = tg3_phy_reset_5703_4_5(tp);
1683 if (err)
1684 return err;
1685 goto out;
1686 }
1687
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001688 cpmuctrl = 0;
1689 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
1690 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
1691 cpmuctrl = tr32(TG3_CPMU_CTRL);
1692 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
1693 tw32(TG3_CPMU_CTRL,
1694 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
1695 }
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 err = tg3_bmcr_reset(tp);
1698 if (err)
1699 return err;
1700
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001701 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
1702 u32 phy;
1703
1704 phy = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
1705 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, phy);
1706
1707 tw32(TG3_CPMU_CTRL, cpmuctrl);
1708 }
1709
Matt Carlsonb5af7122007-11-12 21:22:02 -08001710 if (tp->tg3_flags3 & TG3_FLG3_5761_5784_AX_FIXES) {
Matt Carlsonce057f02007-11-12 21:08:03 -08001711 u32 val;
1712
1713 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
1714 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
1715 CPMU_LSPD_1000MB_MACCLK_12_5) {
1716 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
1717 udelay(40);
1718 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
1719 }
Matt Carlson662f38d2007-11-12 21:16:17 -08001720
1721 /* Disable GPHY autopowerdown. */
1722 tg3_writephy(tp, MII_TG3_MISC_SHDW,
1723 MII_TG3_MISC_SHDW_WREN |
1724 MII_TG3_MISC_SHDW_APD_SEL |
1725 MII_TG3_MISC_SHDW_APD_WKTM_84MS);
Matt Carlsonce057f02007-11-12 21:08:03 -08001726 }
1727
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001728 tg3_phy_apply_otp(tp);
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730out:
1731 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADC_BUG) {
1732 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1733 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1734 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x2aaa);
1735 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
1736 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0323);
1737 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1738 }
1739 if (tp->tg3_flags2 & TG3_FLG2_PHY_5704_A0_BUG) {
1740 tg3_writephy(tp, 0x1c, 0x8d68);
1741 tg3_writephy(tp, 0x1c, 0x8d68);
1742 }
1743 if (tp->tg3_flags2 & TG3_FLG2_PHY_BER_BUG) {
1744 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1745 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
1746 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x310b);
1747 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1748 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x9506);
1749 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x401f);
1750 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x14e2);
1751 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1752 }
Michael Chanc424cb22006-04-29 18:56:34 -07001753 else if (tp->tg3_flags2 & TG3_FLG2_PHY_JITTER_BUG) {
1754 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
1755 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
Michael Chanc1d2a192007-01-08 19:57:20 -08001756 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADJUST_TRIM) {
1757 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
1758 tg3_writephy(tp, MII_TG3_TEST1,
1759 MII_TG3_TEST1_TRIM_EN | 0x4);
1760 } else
1761 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
Michael Chanc424cb22006-04-29 18:56:34 -07001762 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
1763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 /* Set Extended packet length bit (bit 14) on all chips that */
1765 /* support jumbo frames */
1766 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
1767 /* Cannot do read-modify-write on 5401 */
1768 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
Michael Chan0f893dc2005-07-25 12:30:38 -07001769 } else if (tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 u32 phy_reg;
1771
1772 /* Set bit 14 with read-modify-write to preserve other bits */
1773 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0007) &&
1774 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy_reg))
1775 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy_reg | 0x4000);
1776 }
1777
1778 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
1779 * jumbo frames transmission.
1780 */
Michael Chan0f893dc2005-07-25 12:30:38 -07001781 if (tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 u32 phy_reg;
1783
1784 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &phy_reg))
1785 tg3_writephy(tp, MII_TG3_EXT_CTRL,
1786 phy_reg | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
1787 }
1788
Michael Chan715116a2006-09-27 16:09:25 -07001789 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07001790 /* adjust output voltage */
1791 tg3_writephy(tp, MII_TG3_EPHY_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07001792 }
1793
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001794 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 tg3_phy_set_wirespeed(tp);
1796 return 0;
1797}
1798
1799static void tg3_frob_aux_power(struct tg3 *tp)
1800{
1801 struct tg3 *tp_peer = tp;
1802
Michael Chan9d26e212006-12-07 00:21:14 -08001803 if ((tp->tg3_flags2 & TG3_FLG2_IS_NIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return;
1805
Michael Chan8c2dc7e2005-12-19 16:26:02 -08001806 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
1807 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
1808 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Michael Chan8c2dc7e2005-12-19 16:26:02 -08001810 dev_peer = pci_get_drvdata(tp->pdev_peer);
Michael Chanbc1c7562006-03-20 17:48:03 -08001811 /* remove_one() may have been run on the peer. */
Michael Chan8c2dc7e2005-12-19 16:26:02 -08001812 if (!dev_peer)
Michael Chanbc1c7562006-03-20 17:48:03 -08001813 tp_peer = tp;
1814 else
1815 tp_peer = netdev_priv(dev_peer);
Michael Chan8c2dc7e2005-12-19 16:26:02 -08001816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
1818 if ((tp->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
Michael Chan6921d202005-12-13 21:15:53 -08001819 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0 ||
1820 (tp_peer->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
1821 (tp_peer->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1823 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08001824 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1825 (GRC_LCLCTRL_GPIO_OE0 |
1826 GRC_LCLCTRL_GPIO_OE1 |
1827 GRC_LCLCTRL_GPIO_OE2 |
1828 GRC_LCLCTRL_GPIO_OUTPUT0 |
1829 GRC_LCLCTRL_GPIO_OUTPUT1),
1830 100);
Matt Carlson5f0c4a32008-06-09 15:41:12 -07001831 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761) {
1832 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
1833 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
1834 GRC_LCLCTRL_GPIO_OE1 |
1835 GRC_LCLCTRL_GPIO_OE2 |
1836 GRC_LCLCTRL_GPIO_OUTPUT0 |
1837 GRC_LCLCTRL_GPIO_OUTPUT1 |
1838 tp->grc_local_ctrl;
1839 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
1840
1841 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
1842 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
1843
1844 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
1845 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 } else {
1847 u32 no_gpio2;
Michael Chandc56b7d2005-12-19 16:26:28 -08001848 u32 grc_local_ctrl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 if (tp_peer != tp &&
1851 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
1852 return;
1853
Michael Chandc56b7d2005-12-19 16:26:28 -08001854 /* Workaround to prevent overdrawing Amps. */
1855 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
1856 ASIC_REV_5714) {
1857 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chanb401e9e2005-12-19 16:27:04 -08001858 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1859 grc_local_ctrl, 100);
Michael Chandc56b7d2005-12-19 16:26:28 -08001860 }
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 /* On 5753 and variants, GPIO2 cannot be used. */
1863 no_gpio2 = tp->nic_sram_data_cfg &
1864 NIC_SRAM_DATA_CFG_NO_GPIO2;
1865
Michael Chandc56b7d2005-12-19 16:26:28 -08001866 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 GRC_LCLCTRL_GPIO_OE1 |
1868 GRC_LCLCTRL_GPIO_OE2 |
1869 GRC_LCLCTRL_GPIO_OUTPUT1 |
1870 GRC_LCLCTRL_GPIO_OUTPUT2;
1871 if (no_gpio2) {
1872 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
1873 GRC_LCLCTRL_GPIO_OUTPUT2);
1874 }
Michael Chanb401e9e2005-12-19 16:27:04 -08001875 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1876 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
1879
Michael Chanb401e9e2005-12-19 16:27:04 -08001880 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1881 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 if (!no_gpio2) {
1884 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chanb401e9e2005-12-19 16:27:04 -08001885 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1886 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
1888 }
1889 } else {
1890 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
1891 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
1892 if (tp_peer != tp &&
1893 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
1894 return;
1895
Michael Chanb401e9e2005-12-19 16:27:04 -08001896 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1897 (GRC_LCLCTRL_GPIO_OE1 |
1898 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Michael Chanb401e9e2005-12-19 16:27:04 -08001900 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1901 GRC_LCLCTRL_GPIO_OE1, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Michael Chanb401e9e2005-12-19 16:27:04 -08001903 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1904 (GRC_LCLCTRL_GPIO_OE1 |
1905 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 }
1907 }
1908}
1909
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07001910static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
1911{
1912 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
1913 return 1;
1914 else if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411) {
1915 if (speed != SPEED_10)
1916 return 1;
1917 } else if (speed == SPEED_10)
1918 return 1;
1919
1920 return 0;
1921}
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923static int tg3_setup_phy(struct tg3 *, int);
1924
1925#define RESET_KIND_SHUTDOWN 0
1926#define RESET_KIND_INIT 1
1927#define RESET_KIND_SUSPEND 2
1928
1929static void tg3_write_sig_post_reset(struct tg3 *, int);
1930static int tg3_halt_cpu(struct tg3 *, u32);
Michael Chan6921d202005-12-13 21:15:53 -08001931static int tg3_nvram_lock(struct tg3 *);
1932static void tg3_nvram_unlock(struct tg3 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Michael Chan15c3b692006-03-22 01:06:52 -08001934static void tg3_power_down_phy(struct tg3 *tp)
1935{
Matt Carlsonce057f02007-11-12 21:08:03 -08001936 u32 val;
1937
Michael Chan51297242007-02-13 12:17:57 -08001938 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
1939 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
1940 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
1941 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
1942
1943 sg_dig_ctrl |=
1944 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
1945 tw32(SG_DIG_CTRL, sg_dig_ctrl);
1946 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
1947 }
Michael Chan3f7045c2006-09-27 16:02:29 -07001948 return;
Michael Chan51297242007-02-13 12:17:57 -08001949 }
Michael Chan3f7045c2006-09-27 16:02:29 -07001950
Michael Chan60189dd2006-12-17 17:08:07 -08001951 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08001952 tg3_bmcr_reset(tp);
1953 val = tr32(GRC_MISC_CFG);
1954 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
1955 udelay(40);
1956 return;
Matt Carlsondd477002008-05-25 23:45:58 -07001957 } else if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
Michael Chan715116a2006-09-27 16:09:25 -07001958 tg3_writephy(tp, MII_TG3_EXT_CTRL,
1959 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
1960 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x01b2);
1961 }
Michael Chan3f7045c2006-09-27 16:02:29 -07001962
Michael Chan15c3b692006-03-22 01:06:52 -08001963 /* The PHY should not be powered down on some chips because
1964 * of bugs.
1965 */
1966 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1967 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
1968 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
1969 (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)))
1970 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08001971
Matt Carlsonb5af7122007-11-12 21:22:02 -08001972 if (tp->tg3_flags3 & TG3_FLG3_5761_5784_AX_FIXES) {
Matt Carlsonce057f02007-11-12 21:08:03 -08001973 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
1974 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
1975 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
1976 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
1977 }
1978
Michael Chan15c3b692006-03-22 01:06:52 -08001979 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
1980}
1981
Michael Chanbc1c7562006-03-20 17:48:03 -08001982static int tg3_set_power_state(struct tg3 *tp, pci_power_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 u32 misc_host_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986 /* Make sure register accesses (indirect or otherwise)
1987 * will function correctly.
1988 */
1989 pci_write_config_dword(tp->pdev,
1990 TG3PCI_MISC_HOST_CTRL,
1991 tp->misc_host_ctrl);
1992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 switch (state) {
Michael Chanbc1c7562006-03-20 17:48:03 -08001994 case PCI_D0:
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07001995 pci_enable_wake(tp->pdev, state, false);
1996 pci_set_power_state(tp->pdev, PCI_D0);
Michael Chan8c6bda12005-04-21 17:09:08 -07001997
Michael Chan9d26e212006-12-07 00:21:14 -08001998 /* Switch out of Vaux if it is a NIC */
1999 if (tp->tg3_flags2 & TG3_FLG2_IS_NIC)
Michael Chanb401e9e2005-12-19 16:27:04 -08002000 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002 return 0;
2003
Michael Chanbc1c7562006-03-20 17:48:03 -08002004 case PCI_D1:
Michael Chanbc1c7562006-03-20 17:48:03 -08002005 case PCI_D2:
Michael Chanbc1c7562006-03-20 17:48:03 -08002006 case PCI_D3hot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 break;
2008
2009 default:
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002010 printk(KERN_ERR PFX "%s: Invalid power state (D%d) requested\n",
2011 tp->dev->name, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
2015 tw32(TG3PCI_MISC_HOST_CTRL,
2016 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
2017
Matt Carlsondd477002008-05-25 23:45:58 -07002018 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002019 if ((tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) &&
2020 !tp->link_config.phy_is_low_power) {
2021 struct phy_device *phydev;
2022 u32 advertising;
2023
2024 phydev = tp->mdio_bus.phy_map[PHY_ADDR];
2025
2026 tp->link_config.phy_is_low_power = 1;
2027
2028 tp->link_config.orig_speed = phydev->speed;
2029 tp->link_config.orig_duplex = phydev->duplex;
2030 tp->link_config.orig_autoneg = phydev->autoneg;
2031 tp->link_config.orig_advertising = phydev->advertising;
2032
2033 advertising = ADVERTISED_TP |
2034 ADVERTISED_Pause |
2035 ADVERTISED_Autoneg |
2036 ADVERTISED_10baseT_Half;
2037
2038 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
2039 (tp->tg3_flags & TG3_FLAG_WOL_ENABLE)) {
2040 if (tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB)
2041 advertising |=
2042 ADVERTISED_100baseT_Half |
2043 ADVERTISED_100baseT_Full |
2044 ADVERTISED_10baseT_Full;
2045 else
2046 advertising |= ADVERTISED_10baseT_Full;
2047 }
2048
2049 phydev->advertising = advertising;
2050
2051 phy_start_aneg(phydev);
2052 }
Matt Carlsondd477002008-05-25 23:45:58 -07002053 } else {
2054 if (tp->link_config.phy_is_low_power == 0) {
2055 tp->link_config.phy_is_low_power = 1;
2056 tp->link_config.orig_speed = tp->link_config.speed;
2057 tp->link_config.orig_duplex = tp->link_config.duplex;
2058 tp->link_config.orig_autoneg = tp->link_config.autoneg;
2059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Matt Carlsondd477002008-05-25 23:45:58 -07002061 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
2062 tp->link_config.speed = SPEED_10;
2063 tp->link_config.duplex = DUPLEX_HALF;
2064 tp->link_config.autoneg = AUTONEG_ENABLE;
2065 tg3_setup_phy(tp, 0);
2066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
2068
Michael Chanb5d37722006-09-27 16:06:21 -07002069 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2070 u32 val;
2071
2072 val = tr32(GRC_VCPU_EXT_CTRL);
2073 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
2074 } else if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08002075 int i;
2076 u32 val;
2077
2078 for (i = 0; i < 200; i++) {
2079 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
2080 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
2081 break;
2082 msleep(1);
2083 }
2084 }
Gary Zambranoa85feb82007-05-05 11:52:19 -07002085 if (tp->tg3_flags & TG3_FLAG_WOL_CAP)
2086 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
2087 WOL_DRV_STATE_SHUTDOWN |
2088 WOL_DRV_WOL |
2089 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08002090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 if (tp->tg3_flags & TG3_FLAG_WOL_ENABLE) {
2092 u32 mac_mode;
2093
2094 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
Matt Carlsondd477002008-05-25 23:45:58 -07002095 if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
2096 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x5a);
2097 udelay(40);
2098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Michael Chan3f7045c2006-09-27 16:02:29 -07002100 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
2101 mac_mode = MAC_MODE_PORT_MODE_GMII;
2102 else
2103 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002105 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
2106 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2107 ASIC_REV_5700) {
2108 u32 speed = (tp->tg3_flags &
2109 TG3_FLAG_WOL_SPEED_100MB) ?
2110 SPEED_100 : SPEED_10;
2111 if (tg3_5700_link_polarity(tp, speed))
2112 mac_mode |= MAC_MODE_LINK_POLARITY;
2113 else
2114 mac_mode &= ~MAC_MODE_LINK_POLARITY;
2115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 } else {
2117 mac_mode = MAC_MODE_PORT_MODE_TBI;
2118 }
2119
John W. Linvillecbf46852005-04-21 17:01:29 -07002120 if (!(tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 tw32(MAC_LED_CTRL, tp->led_ctrl);
2122
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002123 if (pci_pme_capable(tp->pdev, state) &&
2124 (tp->tg3_flags & TG3_FLAG_WOL_ENABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
2126
2127 tw32_f(MAC_MODE, mac_mode);
2128 udelay(100);
2129
2130 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
2131 udelay(10);
2132 }
2133
2134 if (!(tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB) &&
2135 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2136 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
2137 u32 base_val;
2138
2139 base_val = tp->pci_clock_ctrl;
2140 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
2141 CLOCK_CTRL_TXCLK_DISABLE);
2142
Michael Chanb401e9e2005-12-19 16:27:04 -08002143 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
2144 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Michael Chand7b0a852007-02-13 12:17:38 -08002145 } else if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) ||
Matt Carlson795d01c2007-10-07 23:28:17 -07002146 (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT) ||
Michael Chand7b0a852007-02-13 12:17:38 -08002147 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)) {
Michael Chan4cf78e42005-07-25 12:29:19 -07002148 /* do nothing */
Michael Chan85e94ce2005-04-21 17:05:28 -07002149 } else if (!((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF))) {
2151 u32 newbits1, newbits2;
2152
2153 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2154 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2155 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
2156 CLOCK_CTRL_TXCLK_DISABLE |
2157 CLOCK_CTRL_ALTCLK);
2158 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2159 } else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
2160 newbits1 = CLOCK_CTRL_625_CORE;
2161 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
2162 } else {
2163 newbits1 = CLOCK_CTRL_ALTCLK;
2164 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2165 }
2166
Michael Chanb401e9e2005-12-19 16:27:04 -08002167 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
2168 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Michael Chanb401e9e2005-12-19 16:27:04 -08002170 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
2171 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
2174 u32 newbits3;
2175
2176 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2177 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2178 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
2179 CLOCK_CTRL_TXCLK_DISABLE |
2180 CLOCK_CTRL_44MHZ_CORE);
2181 } else {
2182 newbits3 = CLOCK_CTRL_44MHZ_CORE;
2183 }
2184
Michael Chanb401e9e2005-12-19 16:27:04 -08002185 tw32_wait_f(TG3PCI_CLOCK_CTRL,
2186 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
2188 }
2189
Michael Chan6921d202005-12-13 21:15:53 -08002190 if (!(tp->tg3_flags & TG3_FLAG_WOL_ENABLE) &&
Matt Carlson0d3031d2007-10-10 18:02:43 -07002191 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
2192 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
Michael Chan3f7045c2006-09-27 16:02:29 -07002193 tg3_power_down_phy(tp);
Michael Chan6921d202005-12-13 21:15:53 -08002194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 tg3_frob_aux_power(tp);
2196
2197 /* Workaround for unstable PLL clock */
2198 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
2199 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
2200 u32 val = tr32(0x7d00);
2201
2202 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
2203 tw32(0x7d00, val);
Michael Chan6921d202005-12-13 21:15:53 -08002204 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08002205 int err;
2206
2207 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08002209 if (!err)
2210 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08002211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
2213
Michael Chanbbadf502006-04-06 21:46:34 -07002214 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
2215
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002216 if (tp->tg3_flags & TG3_FLAG_WOL_ENABLE)
2217 pci_enable_wake(tp->pdev, state, true);
2218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 /* Finally, set the new power state. */
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07002220 pci_set_power_state(tp->pdev, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 return 0;
2223}
2224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
2226{
2227 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
2228 case MII_TG3_AUX_STAT_10HALF:
2229 *speed = SPEED_10;
2230 *duplex = DUPLEX_HALF;
2231 break;
2232
2233 case MII_TG3_AUX_STAT_10FULL:
2234 *speed = SPEED_10;
2235 *duplex = DUPLEX_FULL;
2236 break;
2237
2238 case MII_TG3_AUX_STAT_100HALF:
2239 *speed = SPEED_100;
2240 *duplex = DUPLEX_HALF;
2241 break;
2242
2243 case MII_TG3_AUX_STAT_100FULL:
2244 *speed = SPEED_100;
2245 *duplex = DUPLEX_FULL;
2246 break;
2247
2248 case MII_TG3_AUX_STAT_1000HALF:
2249 *speed = SPEED_1000;
2250 *duplex = DUPLEX_HALF;
2251 break;
2252
2253 case MII_TG3_AUX_STAT_1000FULL:
2254 *speed = SPEED_1000;
2255 *duplex = DUPLEX_FULL;
2256 break;
2257
2258 default:
Michael Chan715116a2006-09-27 16:09:25 -07002259 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2260 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
2261 SPEED_10;
2262 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
2263 DUPLEX_HALF;
2264 break;
2265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 *speed = SPEED_INVALID;
2267 *duplex = DUPLEX_INVALID;
2268 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
2271
2272static void tg3_phy_copper_begin(struct tg3 *tp)
2273{
2274 u32 new_adv;
2275 int i;
2276
2277 if (tp->link_config.phy_is_low_power) {
2278 /* Entering low power mode. Disable gigabit and
2279 * 100baseT advertisements.
2280 */
2281 tg3_writephy(tp, MII_TG3_CTRL, 0);
2282
2283 new_adv = (ADVERTISE_10HALF | ADVERTISE_10FULL |
2284 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
2285 if (tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB)
2286 new_adv |= (ADVERTISE_100HALF | ADVERTISE_100FULL);
2287
2288 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2289 } else if (tp->link_config.speed == SPEED_INVALID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
2291 tp->link_config.advertising &=
2292 ~(ADVERTISED_1000baseT_Half |
2293 ADVERTISED_1000baseT_Full);
2294
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002295 new_adv = ADVERTISE_CSMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (tp->link_config.advertising & ADVERTISED_10baseT_Half)
2297 new_adv |= ADVERTISE_10HALF;
2298 if (tp->link_config.advertising & ADVERTISED_10baseT_Full)
2299 new_adv |= ADVERTISE_10FULL;
2300 if (tp->link_config.advertising & ADVERTISED_100baseT_Half)
2301 new_adv |= ADVERTISE_100HALF;
2302 if (tp->link_config.advertising & ADVERTISED_100baseT_Full)
2303 new_adv |= ADVERTISE_100FULL;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002304
2305 new_adv |= tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2308
2309 if (tp->link_config.advertising &
2310 (ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full)) {
2311 new_adv = 0;
2312 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
2313 new_adv |= MII_TG3_CTRL_ADV_1000_HALF;
2314 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
2315 new_adv |= MII_TG3_CTRL_ADV_1000_FULL;
2316 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY) &&
2317 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2318 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0))
2319 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2320 MII_TG3_CTRL_ENABLE_AS_MASTER);
2321 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
2322 } else {
2323 tg3_writephy(tp, MII_TG3_CTRL, 0);
2324 }
2325 } else {
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002326 new_adv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2327 new_adv |= ADVERTISE_CSMA;
2328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 /* Asking for a specific link mode. */
2330 if (tp->link_config.speed == SPEED_1000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2332
2333 if (tp->link_config.duplex == DUPLEX_FULL)
2334 new_adv = MII_TG3_CTRL_ADV_1000_FULL;
2335 else
2336 new_adv = MII_TG3_CTRL_ADV_1000_HALF;
2337 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2338 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
2339 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2340 MII_TG3_CTRL_ENABLE_AS_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 if (tp->link_config.speed == SPEED_100) {
2343 if (tp->link_config.duplex == DUPLEX_FULL)
2344 new_adv |= ADVERTISE_100FULL;
2345 else
2346 new_adv |= ADVERTISE_100HALF;
2347 } else {
2348 if (tp->link_config.duplex == DUPLEX_FULL)
2349 new_adv |= ADVERTISE_10FULL;
2350 else
2351 new_adv |= ADVERTISE_10HALF;
2352 }
2353 tg3_writephy(tp, MII_ADVERTISE, new_adv);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002354
2355 new_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002357
2358 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 }
2360
2361 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
2362 tp->link_config.speed != SPEED_INVALID) {
2363 u32 bmcr, orig_bmcr;
2364
2365 tp->link_config.active_speed = tp->link_config.speed;
2366 tp->link_config.active_duplex = tp->link_config.duplex;
2367
2368 bmcr = 0;
2369 switch (tp->link_config.speed) {
2370 default:
2371 case SPEED_10:
2372 break;
2373
2374 case SPEED_100:
2375 bmcr |= BMCR_SPEED100;
2376 break;
2377
2378 case SPEED_1000:
2379 bmcr |= TG3_BMCR_SPEED1000;
2380 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
2383 if (tp->link_config.duplex == DUPLEX_FULL)
2384 bmcr |= BMCR_FULLDPLX;
2385
2386 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
2387 (bmcr != orig_bmcr)) {
2388 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
2389 for (i = 0; i < 1500; i++) {
2390 u32 tmp;
2391
2392 udelay(10);
2393 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
2394 tg3_readphy(tp, MII_BMSR, &tmp))
2395 continue;
2396 if (!(tmp & BMSR_LSTATUS)) {
2397 udelay(40);
2398 break;
2399 }
2400 }
2401 tg3_writephy(tp, MII_BMCR, bmcr);
2402 udelay(40);
2403 }
2404 } else {
2405 tg3_writephy(tp, MII_BMCR,
2406 BMCR_ANENABLE | BMCR_ANRESTART);
2407 }
2408}
2409
2410static int tg3_init_5401phy_dsp(struct tg3 *tp)
2411{
2412 int err;
2413
2414 /* Turn off tap power management. */
2415 /* Set Extended packet length bit */
2416 err = tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
2417
2418 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0012);
2419 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1804);
2420
2421 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0013);
2422 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1204);
2423
2424 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
2425 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0132);
2426
2427 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
2428 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0232);
2429
2430 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
2431 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0a20);
2432
2433 udelay(40);
2434
2435 return err;
2436}
2437
Michael Chan3600d912006-12-07 00:21:48 -08002438static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
Michael Chan3600d912006-12-07 00:21:48 -08002440 u32 adv_reg, all_mask = 0;
2441
2442 if (mask & ADVERTISED_10baseT_Half)
2443 all_mask |= ADVERTISE_10HALF;
2444 if (mask & ADVERTISED_10baseT_Full)
2445 all_mask |= ADVERTISE_10FULL;
2446 if (mask & ADVERTISED_100baseT_Half)
2447 all_mask |= ADVERTISE_100HALF;
2448 if (mask & ADVERTISED_100baseT_Full)
2449 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
2451 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
2452 return 0;
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 if ((adv_reg & all_mask) != all_mask)
2455 return 0;
2456 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
2457 u32 tg3_ctrl;
2458
Michael Chan3600d912006-12-07 00:21:48 -08002459 all_mask = 0;
2460 if (mask & ADVERTISED_1000baseT_Half)
2461 all_mask |= ADVERTISE_1000HALF;
2462 if (mask & ADVERTISED_1000baseT_Full)
2463 all_mask |= ADVERTISE_1000FULL;
2464
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 if (tg3_readphy(tp, MII_TG3_CTRL, &tg3_ctrl))
2466 return 0;
2467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if ((tg3_ctrl & all_mask) != all_mask)
2469 return 0;
2470 }
2471 return 1;
2472}
2473
Matt Carlsonef167e22007-12-20 20:10:01 -08002474static int tg3_adv_1000T_flowctrl_ok(struct tg3 *tp, u32 *lcladv, u32 *rmtadv)
2475{
2476 u32 curadv, reqadv;
2477
2478 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
2479 return 1;
2480
2481 curadv = *lcladv & (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
2482 reqadv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2483
2484 if (tp->link_config.active_duplex == DUPLEX_FULL) {
2485 if (curadv != reqadv)
2486 return 0;
2487
2488 if (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG)
2489 tg3_readphy(tp, MII_LPA, rmtadv);
2490 } else {
2491 /* Reprogram the advertisement register, even if it
2492 * does not affect the current link. If the link
2493 * gets renegotiated in the future, we can save an
2494 * additional renegotiation cycle by advertising
2495 * it correctly in the first place.
2496 */
2497 if (curadv != reqadv) {
2498 *lcladv &= ~(ADVERTISE_PAUSE_CAP |
2499 ADVERTISE_PAUSE_ASYM);
2500 tg3_writephy(tp, MII_ADVERTISE, *lcladv | reqadv);
2501 }
2502 }
2503
2504 return 1;
2505}
2506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
2508{
2509 int current_link_up;
2510 u32 bmsr, dummy;
Matt Carlsonef167e22007-12-20 20:10:01 -08002511 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 u16 current_speed;
2513 u8 current_duplex;
2514 int i, err;
2515
2516 tw32(MAC_EVENT, 0);
2517
2518 tw32_f(MAC_STATUS,
2519 (MAC_STATUS_SYNC_CHANGED |
2520 MAC_STATUS_CFG_CHANGED |
2521 MAC_STATUS_MI_COMPLETION |
2522 MAC_STATUS_LNKSTATE_CHANGED));
2523 udelay(40);
2524
Matt Carlson8ef21422008-05-02 16:47:53 -07002525 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
2526 tw32_f(MAC_MI_MODE,
2527 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
2528 udelay(80);
2529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
2531 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x02);
2532
2533 /* Some third-party PHYs need to be reset on link going
2534 * down.
2535 */
2536 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2537 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2538 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
2539 netif_carrier_ok(tp->dev)) {
2540 tg3_readphy(tp, MII_BMSR, &bmsr);
2541 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
2542 !(bmsr & BMSR_LSTATUS))
2543 force_reset = 1;
2544 }
2545 if (force_reset)
2546 tg3_phy_reset(tp);
2547
2548 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
2549 tg3_readphy(tp, MII_BMSR, &bmsr);
2550 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
2551 !(tp->tg3_flags & TG3_FLAG_INIT_COMPLETE))
2552 bmsr = 0;
2553
2554 if (!(bmsr & BMSR_LSTATUS)) {
2555 err = tg3_init_5401phy_dsp(tp);
2556 if (err)
2557 return err;
2558
2559 tg3_readphy(tp, MII_BMSR, &bmsr);
2560 for (i = 0; i < 1000; i++) {
2561 udelay(10);
2562 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
2563 (bmsr & BMSR_LSTATUS)) {
2564 udelay(40);
2565 break;
2566 }
2567 }
2568
2569 if ((tp->phy_id & PHY_ID_REV_MASK) == PHY_REV_BCM5401_B0 &&
2570 !(bmsr & BMSR_LSTATUS) &&
2571 tp->link_config.active_speed == SPEED_1000) {
2572 err = tg3_phy_reset(tp);
2573 if (!err)
2574 err = tg3_init_5401phy_dsp(tp);
2575 if (err)
2576 return err;
2577 }
2578 }
2579 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2580 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
2581 /* 5701 {A0,B0} CRC bug workaround */
2582 tg3_writephy(tp, 0x15, 0x0a75);
2583 tg3_writephy(tp, 0x1c, 0x8c68);
2584 tg3_writephy(tp, 0x1c, 0x8d68);
2585 tg3_writephy(tp, 0x1c, 0x8c68);
2586 }
2587
2588 /* Clear pending interrupts... */
2589 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
2590 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
2591
2592 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT)
2593 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Michael Chan715116a2006-09-27 16:09:25 -07002594 else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 tg3_writephy(tp, MII_TG3_IMASK, ~0);
2596
2597 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2598 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2599 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
2600 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2601 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
2602 else
2603 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
2604 }
2605
2606 current_link_up = 0;
2607 current_speed = SPEED_INVALID;
2608 current_duplex = DUPLEX_INVALID;
2609
2610 if (tp->tg3_flags2 & TG3_FLG2_CAPACITIVE_COUPLING) {
2611 u32 val;
2612
2613 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4007);
2614 tg3_readphy(tp, MII_TG3_AUX_CTRL, &val);
2615 if (!(val & (1 << 10))) {
2616 val |= (1 << 10);
2617 tg3_writephy(tp, MII_TG3_AUX_CTRL, val);
2618 goto relink;
2619 }
2620 }
2621
2622 bmsr = 0;
2623 for (i = 0; i < 100; i++) {
2624 tg3_readphy(tp, MII_BMSR, &bmsr);
2625 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
2626 (bmsr & BMSR_LSTATUS))
2627 break;
2628 udelay(40);
2629 }
2630
2631 if (bmsr & BMSR_LSTATUS) {
2632 u32 aux_stat, bmcr;
2633
2634 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
2635 for (i = 0; i < 2000; i++) {
2636 udelay(10);
2637 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
2638 aux_stat)
2639 break;
2640 }
2641
2642 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
2643 &current_speed,
2644 &current_duplex);
2645
2646 bmcr = 0;
2647 for (i = 0; i < 200; i++) {
2648 tg3_readphy(tp, MII_BMCR, &bmcr);
2649 if (tg3_readphy(tp, MII_BMCR, &bmcr))
2650 continue;
2651 if (bmcr && bmcr != 0x7fff)
2652 break;
2653 udelay(10);
2654 }
2655
Matt Carlsonef167e22007-12-20 20:10:01 -08002656 lcl_adv = 0;
2657 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Matt Carlsonef167e22007-12-20 20:10:01 -08002659 tp->link_config.active_speed = current_speed;
2660 tp->link_config.active_duplex = current_duplex;
2661
2662 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
2663 if ((bmcr & BMCR_ANENABLE) &&
2664 tg3_copper_is_advertising_all(tp,
2665 tp->link_config.advertising)) {
2666 if (tg3_adv_1000T_flowctrl_ok(tp, &lcl_adv,
2667 &rmt_adv))
2668 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 }
2670 } else {
2671 if (!(bmcr & BMCR_ANENABLE) &&
2672 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08002673 tp->link_config.duplex == current_duplex &&
2674 tp->link_config.flowctrl ==
2675 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 }
2678 }
2679
Matt Carlsonef167e22007-12-20 20:10:01 -08002680 if (current_link_up == 1 &&
2681 tp->link_config.active_duplex == DUPLEX_FULL)
2682 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 }
2684
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685relink:
Michael Chan6921d202005-12-13 21:15:53 -08002686 if (current_link_up == 0 || tp->link_config.phy_is_low_power) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 u32 tmp;
2688
2689 tg3_phy_copper_begin(tp);
2690
2691 tg3_readphy(tp, MII_BMSR, &tmp);
2692 if (!tg3_readphy(tp, MII_BMSR, &tmp) &&
2693 (tmp & BMSR_LSTATUS))
2694 current_link_up = 1;
2695 }
2696
2697 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
2698 if (current_link_up == 1) {
2699 if (tp->link_config.active_speed == SPEED_100 ||
2700 tp->link_config.active_speed == SPEED_10)
2701 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
2702 else
2703 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
2704 } else
2705 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
2706
2707 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
2708 if (tp->link_config.active_duplex == DUPLEX_HALF)
2709 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002712 if (current_link_up == 1 &&
2713 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002715 else
2716 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 }
2718
2719 /* ??? Without this setting Netgear GA302T PHY does not
2720 * ??? send/receive packets...
2721 */
2722 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411 &&
2723 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
2724 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
2725 tw32_f(MAC_MI_MODE, tp->mi_mode);
2726 udelay(80);
2727 }
2728
2729 tw32_f(MAC_MODE, tp->mac_mode);
2730 udelay(40);
2731
2732 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
2733 /* Polled via timer. */
2734 tw32_f(MAC_EVENT, 0);
2735 } else {
2736 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
2737 }
2738 udelay(40);
2739
2740 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
2741 current_link_up == 1 &&
2742 tp->link_config.active_speed == SPEED_1000 &&
2743 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) ||
2744 (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED))) {
2745 udelay(120);
2746 tw32_f(MAC_STATUS,
2747 (MAC_STATUS_SYNC_CHANGED |
2748 MAC_STATUS_CFG_CHANGED));
2749 udelay(40);
2750 tg3_write_mem(tp,
2751 NIC_SRAM_FIRMWARE_MBOX,
2752 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
2753 }
2754
2755 if (current_link_up != netif_carrier_ok(tp->dev)) {
2756 if (current_link_up)
2757 netif_carrier_on(tp->dev);
2758 else
2759 netif_carrier_off(tp->dev);
2760 tg3_link_report(tp);
2761 }
2762
2763 return 0;
2764}
2765
2766struct tg3_fiber_aneginfo {
2767 int state;
2768#define ANEG_STATE_UNKNOWN 0
2769#define ANEG_STATE_AN_ENABLE 1
2770#define ANEG_STATE_RESTART_INIT 2
2771#define ANEG_STATE_RESTART 3
2772#define ANEG_STATE_DISABLE_LINK_OK 4
2773#define ANEG_STATE_ABILITY_DETECT_INIT 5
2774#define ANEG_STATE_ABILITY_DETECT 6
2775#define ANEG_STATE_ACK_DETECT_INIT 7
2776#define ANEG_STATE_ACK_DETECT 8
2777#define ANEG_STATE_COMPLETE_ACK_INIT 9
2778#define ANEG_STATE_COMPLETE_ACK 10
2779#define ANEG_STATE_IDLE_DETECT_INIT 11
2780#define ANEG_STATE_IDLE_DETECT 12
2781#define ANEG_STATE_LINK_OK 13
2782#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
2783#define ANEG_STATE_NEXT_PAGE_WAIT 15
2784
2785 u32 flags;
2786#define MR_AN_ENABLE 0x00000001
2787#define MR_RESTART_AN 0x00000002
2788#define MR_AN_COMPLETE 0x00000004
2789#define MR_PAGE_RX 0x00000008
2790#define MR_NP_LOADED 0x00000010
2791#define MR_TOGGLE_TX 0x00000020
2792#define MR_LP_ADV_FULL_DUPLEX 0x00000040
2793#define MR_LP_ADV_HALF_DUPLEX 0x00000080
2794#define MR_LP_ADV_SYM_PAUSE 0x00000100
2795#define MR_LP_ADV_ASYM_PAUSE 0x00000200
2796#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
2797#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
2798#define MR_LP_ADV_NEXT_PAGE 0x00001000
2799#define MR_TOGGLE_RX 0x00002000
2800#define MR_NP_RX 0x00004000
2801
2802#define MR_LINK_OK 0x80000000
2803
2804 unsigned long link_time, cur_time;
2805
2806 u32 ability_match_cfg;
2807 int ability_match_count;
2808
2809 char ability_match, idle_match, ack_match;
2810
2811 u32 txconfig, rxconfig;
2812#define ANEG_CFG_NP 0x00000080
2813#define ANEG_CFG_ACK 0x00000040
2814#define ANEG_CFG_RF2 0x00000020
2815#define ANEG_CFG_RF1 0x00000010
2816#define ANEG_CFG_PS2 0x00000001
2817#define ANEG_CFG_PS1 0x00008000
2818#define ANEG_CFG_HD 0x00004000
2819#define ANEG_CFG_FD 0x00002000
2820#define ANEG_CFG_INVAL 0x00001f06
2821
2822};
2823#define ANEG_OK 0
2824#define ANEG_DONE 1
2825#define ANEG_TIMER_ENAB 2
2826#define ANEG_FAILED -1
2827
2828#define ANEG_STATE_SETTLE_TIME 10000
2829
2830static int tg3_fiber_aneg_smachine(struct tg3 *tp,
2831 struct tg3_fiber_aneginfo *ap)
2832{
Matt Carlson5be73b42007-12-20 20:09:29 -08002833 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 unsigned long delta;
2835 u32 rx_cfg_reg;
2836 int ret;
2837
2838 if (ap->state == ANEG_STATE_UNKNOWN) {
2839 ap->rxconfig = 0;
2840 ap->link_time = 0;
2841 ap->cur_time = 0;
2842 ap->ability_match_cfg = 0;
2843 ap->ability_match_count = 0;
2844 ap->ability_match = 0;
2845 ap->idle_match = 0;
2846 ap->ack_match = 0;
2847 }
2848 ap->cur_time++;
2849
2850 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
2851 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
2852
2853 if (rx_cfg_reg != ap->ability_match_cfg) {
2854 ap->ability_match_cfg = rx_cfg_reg;
2855 ap->ability_match = 0;
2856 ap->ability_match_count = 0;
2857 } else {
2858 if (++ap->ability_match_count > 1) {
2859 ap->ability_match = 1;
2860 ap->ability_match_cfg = rx_cfg_reg;
2861 }
2862 }
2863 if (rx_cfg_reg & ANEG_CFG_ACK)
2864 ap->ack_match = 1;
2865 else
2866 ap->ack_match = 0;
2867
2868 ap->idle_match = 0;
2869 } else {
2870 ap->idle_match = 1;
2871 ap->ability_match_cfg = 0;
2872 ap->ability_match_count = 0;
2873 ap->ability_match = 0;
2874 ap->ack_match = 0;
2875
2876 rx_cfg_reg = 0;
2877 }
2878
2879 ap->rxconfig = rx_cfg_reg;
2880 ret = ANEG_OK;
2881
2882 switch(ap->state) {
2883 case ANEG_STATE_UNKNOWN:
2884 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
2885 ap->state = ANEG_STATE_AN_ENABLE;
2886
2887 /* fallthru */
2888 case ANEG_STATE_AN_ENABLE:
2889 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
2890 if (ap->flags & MR_AN_ENABLE) {
2891 ap->link_time = 0;
2892 ap->cur_time = 0;
2893 ap->ability_match_cfg = 0;
2894 ap->ability_match_count = 0;
2895 ap->ability_match = 0;
2896 ap->idle_match = 0;
2897 ap->ack_match = 0;
2898
2899 ap->state = ANEG_STATE_RESTART_INIT;
2900 } else {
2901 ap->state = ANEG_STATE_DISABLE_LINK_OK;
2902 }
2903 break;
2904
2905 case ANEG_STATE_RESTART_INIT:
2906 ap->link_time = ap->cur_time;
2907 ap->flags &= ~(MR_NP_LOADED);
2908 ap->txconfig = 0;
2909 tw32(MAC_TX_AUTO_NEG, 0);
2910 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
2911 tw32_f(MAC_MODE, tp->mac_mode);
2912 udelay(40);
2913
2914 ret = ANEG_TIMER_ENAB;
2915 ap->state = ANEG_STATE_RESTART;
2916
2917 /* fallthru */
2918 case ANEG_STATE_RESTART:
2919 delta = ap->cur_time - ap->link_time;
2920 if (delta > ANEG_STATE_SETTLE_TIME) {
2921 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
2922 } else {
2923 ret = ANEG_TIMER_ENAB;
2924 }
2925 break;
2926
2927 case ANEG_STATE_DISABLE_LINK_OK:
2928 ret = ANEG_DONE;
2929 break;
2930
2931 case ANEG_STATE_ABILITY_DETECT_INIT:
2932 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08002933 ap->txconfig = ANEG_CFG_FD;
2934 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
2935 if (flowctrl & ADVERTISE_1000XPAUSE)
2936 ap->txconfig |= ANEG_CFG_PS1;
2937 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
2938 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
2940 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
2941 tw32_f(MAC_MODE, tp->mac_mode);
2942 udelay(40);
2943
2944 ap->state = ANEG_STATE_ABILITY_DETECT;
2945 break;
2946
2947 case ANEG_STATE_ABILITY_DETECT:
2948 if (ap->ability_match != 0 && ap->rxconfig != 0) {
2949 ap->state = ANEG_STATE_ACK_DETECT_INIT;
2950 }
2951 break;
2952
2953 case ANEG_STATE_ACK_DETECT_INIT:
2954 ap->txconfig |= ANEG_CFG_ACK;
2955 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
2956 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
2957 tw32_f(MAC_MODE, tp->mac_mode);
2958 udelay(40);
2959
2960 ap->state = ANEG_STATE_ACK_DETECT;
2961
2962 /* fallthru */
2963 case ANEG_STATE_ACK_DETECT:
2964 if (ap->ack_match != 0) {
2965 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
2966 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
2967 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
2968 } else {
2969 ap->state = ANEG_STATE_AN_ENABLE;
2970 }
2971 } else if (ap->ability_match != 0 &&
2972 ap->rxconfig == 0) {
2973 ap->state = ANEG_STATE_AN_ENABLE;
2974 }
2975 break;
2976
2977 case ANEG_STATE_COMPLETE_ACK_INIT:
2978 if (ap->rxconfig & ANEG_CFG_INVAL) {
2979 ret = ANEG_FAILED;
2980 break;
2981 }
2982 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
2983 MR_LP_ADV_HALF_DUPLEX |
2984 MR_LP_ADV_SYM_PAUSE |
2985 MR_LP_ADV_ASYM_PAUSE |
2986 MR_LP_ADV_REMOTE_FAULT1 |
2987 MR_LP_ADV_REMOTE_FAULT2 |
2988 MR_LP_ADV_NEXT_PAGE |
2989 MR_TOGGLE_RX |
2990 MR_NP_RX);
2991 if (ap->rxconfig & ANEG_CFG_FD)
2992 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
2993 if (ap->rxconfig & ANEG_CFG_HD)
2994 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
2995 if (ap->rxconfig & ANEG_CFG_PS1)
2996 ap->flags |= MR_LP_ADV_SYM_PAUSE;
2997 if (ap->rxconfig & ANEG_CFG_PS2)
2998 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
2999 if (ap->rxconfig & ANEG_CFG_RF1)
3000 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
3001 if (ap->rxconfig & ANEG_CFG_RF2)
3002 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
3003 if (ap->rxconfig & ANEG_CFG_NP)
3004 ap->flags |= MR_LP_ADV_NEXT_PAGE;
3005
3006 ap->link_time = ap->cur_time;
3007
3008 ap->flags ^= (MR_TOGGLE_TX);
3009 if (ap->rxconfig & 0x0008)
3010 ap->flags |= MR_TOGGLE_RX;
3011 if (ap->rxconfig & ANEG_CFG_NP)
3012 ap->flags |= MR_NP_RX;
3013 ap->flags |= MR_PAGE_RX;
3014
3015 ap->state = ANEG_STATE_COMPLETE_ACK;
3016 ret = ANEG_TIMER_ENAB;
3017 break;
3018
3019 case ANEG_STATE_COMPLETE_ACK:
3020 if (ap->ability_match != 0 &&
3021 ap->rxconfig == 0) {
3022 ap->state = ANEG_STATE_AN_ENABLE;
3023 break;
3024 }
3025 delta = ap->cur_time - ap->link_time;
3026 if (delta > ANEG_STATE_SETTLE_TIME) {
3027 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
3028 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3029 } else {
3030 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
3031 !(ap->flags & MR_NP_RX)) {
3032 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3033 } else {
3034 ret = ANEG_FAILED;
3035 }
3036 }
3037 }
3038 break;
3039
3040 case ANEG_STATE_IDLE_DETECT_INIT:
3041 ap->link_time = ap->cur_time;
3042 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3043 tw32_f(MAC_MODE, tp->mac_mode);
3044 udelay(40);
3045
3046 ap->state = ANEG_STATE_IDLE_DETECT;
3047 ret = ANEG_TIMER_ENAB;
3048 break;
3049
3050 case ANEG_STATE_IDLE_DETECT:
3051 if (ap->ability_match != 0 &&
3052 ap->rxconfig == 0) {
3053 ap->state = ANEG_STATE_AN_ENABLE;
3054 break;
3055 }
3056 delta = ap->cur_time - ap->link_time;
3057 if (delta > ANEG_STATE_SETTLE_TIME) {
3058 /* XXX another gem from the Broadcom driver :( */
3059 ap->state = ANEG_STATE_LINK_OK;
3060 }
3061 break;
3062
3063 case ANEG_STATE_LINK_OK:
3064 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
3065 ret = ANEG_DONE;
3066 break;
3067
3068 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
3069 /* ??? unimplemented */
3070 break;
3071
3072 case ANEG_STATE_NEXT_PAGE_WAIT:
3073 /* ??? unimplemented */
3074 break;
3075
3076 default:
3077 ret = ANEG_FAILED;
3078 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080
3081 return ret;
3082}
3083
Matt Carlson5be73b42007-12-20 20:09:29 -08003084static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
3086 int res = 0;
3087 struct tg3_fiber_aneginfo aninfo;
3088 int status = ANEG_FAILED;
3089 unsigned int tick;
3090 u32 tmp;
3091
3092 tw32_f(MAC_TX_AUTO_NEG, 0);
3093
3094 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
3095 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
3096 udelay(40);
3097
3098 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
3099 udelay(40);
3100
3101 memset(&aninfo, 0, sizeof(aninfo));
3102 aninfo.flags |= MR_AN_ENABLE;
3103 aninfo.state = ANEG_STATE_UNKNOWN;
3104 aninfo.cur_time = 0;
3105 tick = 0;
3106 while (++tick < 195000) {
3107 status = tg3_fiber_aneg_smachine(tp, &aninfo);
3108 if (status == ANEG_DONE || status == ANEG_FAILED)
3109 break;
3110
3111 udelay(1);
3112 }
3113
3114 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3115 tw32_f(MAC_MODE, tp->mac_mode);
3116 udelay(40);
3117
Matt Carlson5be73b42007-12-20 20:09:29 -08003118 *txflags = aninfo.txconfig;
3119 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
3121 if (status == ANEG_DONE &&
3122 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
3123 MR_LP_ADV_FULL_DUPLEX)))
3124 res = 1;
3125
3126 return res;
3127}
3128
3129static void tg3_init_bcm8002(struct tg3 *tp)
3130{
3131 u32 mac_status = tr32(MAC_STATUS);
3132 int i;
3133
3134 /* Reset when initting first time or we have a link. */
3135 if ((tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) &&
3136 !(mac_status & MAC_STATUS_PCS_SYNCED))
3137 return;
3138
3139 /* Set PLL lock range. */
3140 tg3_writephy(tp, 0x16, 0x8007);
3141
3142 /* SW reset */
3143 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
3144
3145 /* Wait for reset to complete. */
3146 /* XXX schedule_timeout() ... */
3147 for (i = 0; i < 500; i++)
3148 udelay(10);
3149
3150 /* Config mode; select PMA/Ch 1 regs. */
3151 tg3_writephy(tp, 0x10, 0x8411);
3152
3153 /* Enable auto-lock and comdet, select txclk for tx. */
3154 tg3_writephy(tp, 0x11, 0x0a10);
3155
3156 tg3_writephy(tp, 0x18, 0x00a0);
3157 tg3_writephy(tp, 0x16, 0x41ff);
3158
3159 /* Assert and deassert POR. */
3160 tg3_writephy(tp, 0x13, 0x0400);
3161 udelay(40);
3162 tg3_writephy(tp, 0x13, 0x0000);
3163
3164 tg3_writephy(tp, 0x11, 0x0a50);
3165 udelay(40);
3166 tg3_writephy(tp, 0x11, 0x0a10);
3167
3168 /* Wait for signal to stabilize */
3169 /* XXX schedule_timeout() ... */
3170 for (i = 0; i < 15000; i++)
3171 udelay(10);
3172
3173 /* Deselect the channel register so we can read the PHYID
3174 * later.
3175 */
3176 tg3_writephy(tp, 0x10, 0x8011);
3177}
3178
3179static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
3180{
Matt Carlson82cd3d12007-12-20 20:09:00 -08003181 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 u32 sg_dig_ctrl, sg_dig_status;
3183 u32 serdes_cfg, expected_sg_dig_ctrl;
3184 int workaround, port_a;
3185 int current_link_up;
3186
3187 serdes_cfg = 0;
3188 expected_sg_dig_ctrl = 0;
3189 workaround = 0;
3190 port_a = 1;
3191 current_link_up = 0;
3192
3193 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
3194 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
3195 workaround = 1;
3196 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
3197 port_a = 0;
3198
3199 /* preserve bits 0-11,13,14 for signal pre-emphasis */
3200 /* preserve bits 20-23 for voltage regulator */
3201 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
3202 }
3203
3204 sg_dig_ctrl = tr32(SG_DIG_CTRL);
3205
3206 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003207 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 if (workaround) {
3209 u32 val = serdes_cfg;
3210
3211 if (port_a)
3212 val |= 0xc010000;
3213 else
3214 val |= 0x4010000;
3215 tw32_f(MAC_SERDES_CFG, val);
3216 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003217
3218 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 }
3220 if (mac_status & MAC_STATUS_PCS_SYNCED) {
3221 tg3_setup_flow_control(tp, 0, 0);
3222 current_link_up = 1;
3223 }
3224 goto out;
3225 }
3226
3227 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003228 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
Matt Carlson82cd3d12007-12-20 20:09:00 -08003230 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3231 if (flowctrl & ADVERTISE_1000XPAUSE)
3232 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
3233 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3234 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
3236 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003237 if ((tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT) &&
3238 tp->serdes_counter &&
3239 ((mac_status & (MAC_STATUS_PCS_SYNCED |
3240 MAC_STATUS_RCVD_CFG)) ==
3241 MAC_STATUS_PCS_SYNCED)) {
3242 tp->serdes_counter--;
3243 current_link_up = 1;
3244 goto out;
3245 }
3246restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 if (workaround)
3248 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003249 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 udelay(5);
3251 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
3252
Michael Chan3d3ebe72006-09-27 15:59:15 -07003253 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
3254 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
3256 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003257 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 mac_status = tr32(MAC_STATUS);
3259
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003260 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08003262 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
Matt Carlson82cd3d12007-12-20 20:09:00 -08003264 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
3265 local_adv |= ADVERTISE_1000XPAUSE;
3266 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
3267 local_adv |= ADVERTISE_1000XPSE_ASYM;
3268
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003269 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003270 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003271 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003272 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
3274 tg3_setup_flow_control(tp, local_adv, remote_adv);
3275 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003276 tp->serdes_counter = 0;
3277 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003278 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003279 if (tp->serdes_counter)
3280 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 else {
3282 if (workaround) {
3283 u32 val = serdes_cfg;
3284
3285 if (port_a)
3286 val |= 0xc010000;
3287 else
3288 val |= 0x4010000;
3289
3290 tw32_f(MAC_SERDES_CFG, val);
3291 }
3292
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003293 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 udelay(40);
3295
3296 /* Link parallel detection - link is up */
3297 /* only if we have PCS_SYNC and not */
3298 /* receiving config code words */
3299 mac_status = tr32(MAC_STATUS);
3300 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
3301 !(mac_status & MAC_STATUS_RCVD_CFG)) {
3302 tg3_setup_flow_control(tp, 0, 0);
3303 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003304 tp->tg3_flags2 |=
3305 TG3_FLG2_PARALLEL_DETECT;
3306 tp->serdes_counter =
3307 SERDES_PARALLEL_DET_TIMEOUT;
3308 } else
3309 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 }
3311 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07003312 } else {
3313 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
3314 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 }
3316
3317out:
3318 return current_link_up;
3319}
3320
3321static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
3322{
3323 int current_link_up = 0;
3324
Michael Chan5cf64b82007-05-05 12:11:21 -07003325 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
3328 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08003329 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003331
Matt Carlson5be73b42007-12-20 20:09:29 -08003332 if (fiber_autoneg(tp, &txflags, &rxflags)) {
3333 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
Matt Carlson5be73b42007-12-20 20:09:29 -08003335 if (txflags & ANEG_CFG_PS1)
3336 local_adv |= ADVERTISE_1000XPAUSE;
3337 if (txflags & ANEG_CFG_PS2)
3338 local_adv |= ADVERTISE_1000XPSE_ASYM;
3339
3340 if (rxflags & MR_LP_ADV_SYM_PAUSE)
3341 remote_adv |= LPA_1000XPAUSE;
3342 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
3343 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
3345 tg3_setup_flow_control(tp, local_adv, remote_adv);
3346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 current_link_up = 1;
3348 }
3349 for (i = 0; i < 30; i++) {
3350 udelay(20);
3351 tw32_f(MAC_STATUS,
3352 (MAC_STATUS_SYNC_CHANGED |
3353 MAC_STATUS_CFG_CHANGED));
3354 udelay(40);
3355 if ((tr32(MAC_STATUS) &
3356 (MAC_STATUS_SYNC_CHANGED |
3357 MAC_STATUS_CFG_CHANGED)) == 0)
3358 break;
3359 }
3360
3361 mac_status = tr32(MAC_STATUS);
3362 if (current_link_up == 0 &&
3363 (mac_status & MAC_STATUS_PCS_SYNCED) &&
3364 !(mac_status & MAC_STATUS_RCVD_CFG))
3365 current_link_up = 1;
3366 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08003367 tg3_setup_flow_control(tp, 0, 0);
3368
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 /* Forcing 1000FD link up. */
3370 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
3372 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
3373 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003374
3375 tw32_f(MAC_MODE, tp->mac_mode);
3376 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 }
3378
3379out:
3380 return current_link_up;
3381}
3382
3383static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
3384{
3385 u32 orig_pause_cfg;
3386 u16 orig_active_speed;
3387 u8 orig_active_duplex;
3388 u32 mac_status;
3389 int current_link_up;
3390 int i;
3391
Matt Carlson8d018622007-12-20 20:05:44 -08003392 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 orig_active_speed = tp->link_config.active_speed;
3394 orig_active_duplex = tp->link_config.active_duplex;
3395
3396 if (!(tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG) &&
3397 netif_carrier_ok(tp->dev) &&
3398 (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE)) {
3399 mac_status = tr32(MAC_STATUS);
3400 mac_status &= (MAC_STATUS_PCS_SYNCED |
3401 MAC_STATUS_SIGNAL_DET |
3402 MAC_STATUS_CFG_CHANGED |
3403 MAC_STATUS_RCVD_CFG);
3404 if (mac_status == (MAC_STATUS_PCS_SYNCED |
3405 MAC_STATUS_SIGNAL_DET)) {
3406 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
3407 MAC_STATUS_CFG_CHANGED));
3408 return 0;
3409 }
3410 }
3411
3412 tw32_f(MAC_TX_AUTO_NEG, 0);
3413
3414 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
3415 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
3416 tw32_f(MAC_MODE, tp->mac_mode);
3417 udelay(40);
3418
3419 if (tp->phy_id == PHY_ID_BCM8002)
3420 tg3_init_bcm8002(tp);
3421
3422 /* Enable link change event even when serdes polling. */
3423 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3424 udelay(40);
3425
3426 current_link_up = 0;
3427 mac_status = tr32(MAC_STATUS);
3428
3429 if (tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG)
3430 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
3431 else
3432 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
3433
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 tp->hw_status->status =
3435 (SD_STATUS_UPDATED |
3436 (tp->hw_status->status & ~SD_STATUS_LINK_CHG));
3437
3438 for (i = 0; i < 100; i++) {
3439 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
3440 MAC_STATUS_CFG_CHANGED));
3441 udelay(5);
3442 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07003443 MAC_STATUS_CFG_CHANGED |
3444 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 break;
3446 }
3447
3448 mac_status = tr32(MAC_STATUS);
3449 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
3450 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003451 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
3452 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 tw32_f(MAC_MODE, (tp->mac_mode |
3454 MAC_MODE_SEND_CONFIGS));
3455 udelay(1);
3456 tw32_f(MAC_MODE, tp->mac_mode);
3457 }
3458 }
3459
3460 if (current_link_up == 1) {
3461 tp->link_config.active_speed = SPEED_1000;
3462 tp->link_config.active_duplex = DUPLEX_FULL;
3463 tw32(MAC_LED_CTRL, (tp->led_ctrl |
3464 LED_CTRL_LNKLED_OVERRIDE |
3465 LED_CTRL_1000MBPS_ON));
3466 } else {
3467 tp->link_config.active_speed = SPEED_INVALID;
3468 tp->link_config.active_duplex = DUPLEX_INVALID;
3469 tw32(MAC_LED_CTRL, (tp->led_ctrl |
3470 LED_CTRL_LNKLED_OVERRIDE |
3471 LED_CTRL_TRAFFIC_OVERRIDE));
3472 }
3473
3474 if (current_link_up != netif_carrier_ok(tp->dev)) {
3475 if (current_link_up)
3476 netif_carrier_on(tp->dev);
3477 else
3478 netif_carrier_off(tp->dev);
3479 tg3_link_report(tp);
3480 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08003481 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 if (orig_pause_cfg != now_pause_cfg ||
3483 orig_active_speed != tp->link_config.active_speed ||
3484 orig_active_duplex != tp->link_config.active_duplex)
3485 tg3_link_report(tp);
3486 }
3487
3488 return 0;
3489}
3490
Michael Chan747e8f82005-07-25 12:33:22 -07003491static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
3492{
3493 int current_link_up, err = 0;
3494 u32 bmsr, bmcr;
3495 u16 current_speed;
3496 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08003497 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07003498
3499 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
3500 tw32_f(MAC_MODE, tp->mac_mode);
3501 udelay(40);
3502
3503 tw32(MAC_EVENT, 0);
3504
3505 tw32_f(MAC_STATUS,
3506 (MAC_STATUS_SYNC_CHANGED |
3507 MAC_STATUS_CFG_CHANGED |
3508 MAC_STATUS_MI_COMPLETION |
3509 MAC_STATUS_LNKSTATE_CHANGED));
3510 udelay(40);
3511
3512 if (force_reset)
3513 tg3_phy_reset(tp);
3514
3515 current_link_up = 0;
3516 current_speed = SPEED_INVALID;
3517 current_duplex = DUPLEX_INVALID;
3518
3519 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
3520 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08003521 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
3522 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
3523 bmsr |= BMSR_LSTATUS;
3524 else
3525 bmsr &= ~BMSR_LSTATUS;
3526 }
Michael Chan747e8f82005-07-25 12:33:22 -07003527
3528 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
3529
3530 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlson2bd3ed02008-06-09 15:39:55 -07003531 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07003532 /* do nothing, just check for link up at the end */
3533 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3534 u32 adv, new_adv;
3535
3536 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
3537 new_adv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
3538 ADVERTISE_1000XPAUSE |
3539 ADVERTISE_1000XPSE_ASYM |
3540 ADVERTISE_SLCT);
3541
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003542 new_adv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Michael Chan747e8f82005-07-25 12:33:22 -07003543
3544 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
3545 new_adv |= ADVERTISE_1000XHALF;
3546 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
3547 new_adv |= ADVERTISE_1000XFULL;
3548
3549 if ((new_adv != adv) || !(bmcr & BMCR_ANENABLE)) {
3550 tg3_writephy(tp, MII_ADVERTISE, new_adv);
3551 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
3552 tg3_writephy(tp, MII_BMCR, bmcr);
3553
3554 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07003555 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Michael Chan747e8f82005-07-25 12:33:22 -07003556 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
3557
3558 return err;
3559 }
3560 } else {
3561 u32 new_bmcr;
3562
3563 bmcr &= ~BMCR_SPEED1000;
3564 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
3565
3566 if (tp->link_config.duplex == DUPLEX_FULL)
3567 new_bmcr |= BMCR_FULLDPLX;
3568
3569 if (new_bmcr != bmcr) {
3570 /* BMCR_SPEED1000 is a reserved bit that needs
3571 * to be set on write.
3572 */
3573 new_bmcr |= BMCR_SPEED1000;
3574
3575 /* Force a linkdown */
3576 if (netif_carrier_ok(tp->dev)) {
3577 u32 adv;
3578
3579 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
3580 adv &= ~(ADVERTISE_1000XFULL |
3581 ADVERTISE_1000XHALF |
3582 ADVERTISE_SLCT);
3583 tg3_writephy(tp, MII_ADVERTISE, adv);
3584 tg3_writephy(tp, MII_BMCR, bmcr |
3585 BMCR_ANRESTART |
3586 BMCR_ANENABLE);
3587 udelay(10);
3588 netif_carrier_off(tp->dev);
3589 }
3590 tg3_writephy(tp, MII_BMCR, new_bmcr);
3591 bmcr = new_bmcr;
3592 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
3593 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08003594 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
3595 ASIC_REV_5714) {
3596 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
3597 bmsr |= BMSR_LSTATUS;
3598 else
3599 bmsr &= ~BMSR_LSTATUS;
3600 }
Michael Chan747e8f82005-07-25 12:33:22 -07003601 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
3602 }
3603 }
3604
3605 if (bmsr & BMSR_LSTATUS) {
3606 current_speed = SPEED_1000;
3607 current_link_up = 1;
3608 if (bmcr & BMCR_FULLDPLX)
3609 current_duplex = DUPLEX_FULL;
3610 else
3611 current_duplex = DUPLEX_HALF;
3612
Matt Carlsonef167e22007-12-20 20:10:01 -08003613 local_adv = 0;
3614 remote_adv = 0;
3615
Michael Chan747e8f82005-07-25 12:33:22 -07003616 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08003617 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07003618
3619 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
3620 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
3621 common = local_adv & remote_adv;
3622 if (common & (ADVERTISE_1000XHALF |
3623 ADVERTISE_1000XFULL)) {
3624 if (common & ADVERTISE_1000XFULL)
3625 current_duplex = DUPLEX_FULL;
3626 else
3627 current_duplex = DUPLEX_HALF;
Michael Chan747e8f82005-07-25 12:33:22 -07003628 }
3629 else
3630 current_link_up = 0;
3631 }
3632 }
3633
Matt Carlsonef167e22007-12-20 20:10:01 -08003634 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
3635 tg3_setup_flow_control(tp, local_adv, remote_adv);
3636
Michael Chan747e8f82005-07-25 12:33:22 -07003637 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
3638 if (tp->link_config.active_duplex == DUPLEX_HALF)
3639 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
3640
3641 tw32_f(MAC_MODE, tp->mac_mode);
3642 udelay(40);
3643
3644 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3645
3646 tp->link_config.active_speed = current_speed;
3647 tp->link_config.active_duplex = current_duplex;
3648
3649 if (current_link_up != netif_carrier_ok(tp->dev)) {
3650 if (current_link_up)
3651 netif_carrier_on(tp->dev);
3652 else {
3653 netif_carrier_off(tp->dev);
3654 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
3655 }
3656 tg3_link_report(tp);
3657 }
3658 return err;
3659}
3660
3661static void tg3_serdes_parallel_detect(struct tg3 *tp)
3662{
Michael Chan3d3ebe72006-09-27 15:59:15 -07003663 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07003664 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07003665 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07003666 return;
3667 }
3668 if (!netif_carrier_ok(tp->dev) &&
3669 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
3670 u32 bmcr;
3671
3672 tg3_readphy(tp, MII_BMCR, &bmcr);
3673 if (bmcr & BMCR_ANENABLE) {
3674 u32 phy1, phy2;
3675
3676 /* Select shadow register 0x1f */
3677 tg3_writephy(tp, 0x1c, 0x7c00);
3678 tg3_readphy(tp, 0x1c, &phy1);
3679
3680 /* Select expansion interrupt status register */
3681 tg3_writephy(tp, 0x17, 0x0f01);
3682 tg3_readphy(tp, 0x15, &phy2);
3683 tg3_readphy(tp, 0x15, &phy2);
3684
3685 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
3686 /* We have signal detect and not receiving
3687 * config code words, link is up by parallel
3688 * detection.
3689 */
3690
3691 bmcr &= ~BMCR_ANENABLE;
3692 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
3693 tg3_writephy(tp, MII_BMCR, bmcr);
3694 tp->tg3_flags2 |= TG3_FLG2_PARALLEL_DETECT;
3695 }
3696 }
3697 }
3698 else if (netif_carrier_ok(tp->dev) &&
3699 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
3700 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT)) {
3701 u32 phy2;
3702
3703 /* Select expansion interrupt status register */
3704 tg3_writephy(tp, 0x17, 0x0f01);
3705 tg3_readphy(tp, 0x15, &phy2);
3706 if (phy2 & 0x20) {
3707 u32 bmcr;
3708
3709 /* Config code words received, turn on autoneg. */
3710 tg3_readphy(tp, MII_BMCR, &bmcr);
3711 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
3712
3713 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
3714
3715 }
3716 }
3717}
3718
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719static int tg3_setup_phy(struct tg3 *tp, int force_reset)
3720{
3721 int err;
3722
3723 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
3724 err = tg3_setup_fiber_phy(tp, force_reset);
Michael Chan747e8f82005-07-25 12:33:22 -07003725 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
3726 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 } else {
3728 err = tg3_setup_copper_phy(tp, force_reset);
3729 }
3730
Matt Carlsonb5af7122007-11-12 21:22:02 -08003731 if (tp->pci_chip_rev_id == CHIPREV_ID_5784_A0 ||
3732 tp->pci_chip_rev_id == CHIPREV_ID_5784_A1) {
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08003733 u32 val, scale;
3734
3735 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
3736 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
3737 scale = 65;
3738 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
3739 scale = 6;
3740 else
3741 scale = 12;
3742
3743 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
3744 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
3745 tw32(GRC_MISC_CFG, val);
3746 }
3747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 if (tp->link_config.active_speed == SPEED_1000 &&
3749 tp->link_config.active_duplex == DUPLEX_HALF)
3750 tw32(MAC_TX_LENGTHS,
3751 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
3752 (6 << TX_LENGTHS_IPG_SHIFT) |
3753 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
3754 else
3755 tw32(MAC_TX_LENGTHS,
3756 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
3757 (6 << TX_LENGTHS_IPG_SHIFT) |
3758 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
3759
3760 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
3761 if (netif_carrier_ok(tp->dev)) {
3762 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07003763 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 } else {
3765 tw32(HOSTCC_STAT_COAL_TICKS, 0);
3766 }
3767 }
3768
Matt Carlson8ed5d972007-05-07 00:25:49 -07003769 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND) {
3770 u32 val = tr32(PCIE_PWR_MGMT_THRESH);
3771 if (!netif_carrier_ok(tp->dev))
3772 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
3773 tp->pwrmgmt_thresh;
3774 else
3775 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
3776 tw32(PCIE_PWR_MGMT_THRESH, val);
3777 }
3778
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 return err;
3780}
3781
Michael Chandf3e6542006-05-26 17:48:07 -07003782/* This is called whenever we suspect that the system chipset is re-
3783 * ordering the sequence of MMIO to the tx send mailbox. The symptom
3784 * is bogus tx completions. We try to recover by setting the
3785 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
3786 * in the workqueue.
3787 */
3788static void tg3_tx_recover(struct tg3 *tp)
3789{
3790 BUG_ON((tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER) ||
3791 tp->write32_tx_mbox == tg3_write_indirect_mbox);
3792
3793 printk(KERN_WARNING PFX "%s: The system may be re-ordering memory-"
3794 "mapped I/O cycles to the network device, attempting to "
3795 "recover. Please report the problem to the driver maintainer "
3796 "and include system chipset information.\n", tp->dev->name);
3797
3798 spin_lock(&tp->lock);
Michael Chandf3e6542006-05-26 17:48:07 -07003799 tp->tg3_flags |= TG3_FLAG_TX_RECOVERY_PENDING;
Michael Chandf3e6542006-05-26 17:48:07 -07003800 spin_unlock(&tp->lock);
3801}
3802
Michael Chan1b2a7202006-08-07 21:46:02 -07003803static inline u32 tg3_tx_avail(struct tg3 *tp)
3804{
3805 smp_mb();
3806 return (tp->tx_pending -
3807 ((tp->tx_prod - tp->tx_cons) & (TG3_TX_RING_SIZE - 1)));
3808}
3809
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810/* Tigon3 never reports partial packet sends. So we do not
3811 * need special logic to handle SKBs that have not had all
3812 * of their frags sent yet, like SunGEM does.
3813 */
3814static void tg3_tx(struct tg3 *tp)
3815{
3816 u32 hw_idx = tp->hw_status->idx[0].tx_consumer;
3817 u32 sw_idx = tp->tx_cons;
3818
3819 while (sw_idx != hw_idx) {
3820 struct tx_ring_info *ri = &tp->tx_buffers[sw_idx];
3821 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07003822 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Michael Chandf3e6542006-05-26 17:48:07 -07003824 if (unlikely(skb == NULL)) {
3825 tg3_tx_recover(tp);
3826 return;
3827 }
3828
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 pci_unmap_single(tp->pdev,
3830 pci_unmap_addr(ri, mapping),
3831 skb_headlen(skb),
3832 PCI_DMA_TODEVICE);
3833
3834 ri->skb = NULL;
3835
3836 sw_idx = NEXT_TX(sw_idx);
3837
3838 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 ri = &tp->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07003840 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
3841 tx_bug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842
3843 pci_unmap_page(tp->pdev,
3844 pci_unmap_addr(ri, mapping),
3845 skb_shinfo(skb)->frags[i].size,
3846 PCI_DMA_TODEVICE);
3847
3848 sw_idx = NEXT_TX(sw_idx);
3849 }
3850
David S. Millerf47c11e2005-06-24 20:18:35 -07003851 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07003852
3853 if (unlikely(tx_bug)) {
3854 tg3_tx_recover(tp);
3855 return;
3856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 }
3858
3859 tp->tx_cons = sw_idx;
3860
Michael Chan1b2a7202006-08-07 21:46:02 -07003861 /* Need to make the tx_cons update visible to tg3_start_xmit()
3862 * before checking for netif_queue_stopped(). Without the
3863 * memory barrier, there is a small possibility that tg3_start_xmit()
3864 * will miss it and cause the queue to be stopped forever.
3865 */
3866 smp_mb();
3867
3868 if (unlikely(netif_queue_stopped(tp->dev) &&
Ranjit Manomohan42952232006-10-18 20:54:26 -07003869 (tg3_tx_avail(tp) > TG3_TX_WAKEUP_THRESH(tp)))) {
Michael Chan1b2a7202006-08-07 21:46:02 -07003870 netif_tx_lock(tp->dev);
Michael Chan51b91462005-09-01 17:41:28 -07003871 if (netif_queue_stopped(tp->dev) &&
Ranjit Manomohan42952232006-10-18 20:54:26 -07003872 (tg3_tx_avail(tp) > TG3_TX_WAKEUP_THRESH(tp)))
Michael Chan51b91462005-09-01 17:41:28 -07003873 netif_wake_queue(tp->dev);
Michael Chan1b2a7202006-08-07 21:46:02 -07003874 netif_tx_unlock(tp->dev);
Michael Chan51b91462005-09-01 17:41:28 -07003875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876}
3877
3878/* Returns size of skb allocated or < 0 on error.
3879 *
3880 * We only need to fill in the address because the other members
3881 * of the RX descriptor are invariant, see tg3_init_rings.
3882 *
3883 * Note the purposeful assymetry of cpu vs. chip accesses. For
3884 * posting buffers we only dirty the first cache line of the RX
3885 * descriptor (containing the address). Whereas for the RX status
3886 * buffers the cpu only reads the last cacheline of the RX descriptor
3887 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
3888 */
3889static int tg3_alloc_rx_skb(struct tg3 *tp, u32 opaque_key,
3890 int src_idx, u32 dest_idx_unmasked)
3891{
3892 struct tg3_rx_buffer_desc *desc;
3893 struct ring_info *map, *src_map;
3894 struct sk_buff *skb;
3895 dma_addr_t mapping;
3896 int skb_size, dest_idx;
3897
3898 src_map = NULL;
3899 switch (opaque_key) {
3900 case RXD_OPAQUE_RING_STD:
3901 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
3902 desc = &tp->rx_std[dest_idx];
3903 map = &tp->rx_std_buffers[dest_idx];
3904 if (src_idx >= 0)
3905 src_map = &tp->rx_std_buffers[src_idx];
Michael Chan7e72aad2005-07-25 12:31:17 -07003906 skb_size = tp->rx_pkt_buf_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 break;
3908
3909 case RXD_OPAQUE_RING_JUMBO:
3910 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
3911 desc = &tp->rx_jumbo[dest_idx];
3912 map = &tp->rx_jumbo_buffers[dest_idx];
3913 if (src_idx >= 0)
3914 src_map = &tp->rx_jumbo_buffers[src_idx];
3915 skb_size = RX_JUMBO_PKT_BUF_SZ;
3916 break;
3917
3918 default:
3919 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
3922 /* Do not overwrite any of the map or rp information
3923 * until we are sure we can commit to a new buffer.
3924 *
3925 * Callers depend upon this behavior and assume that
3926 * we leave everything unchanged if we fail.
3927 */
David S. Millera20e9c62006-07-31 22:38:16 -07003928 skb = netdev_alloc_skb(tp->dev, skb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 if (skb == NULL)
3930 return -ENOMEM;
3931
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 skb_reserve(skb, tp->rx_offset);
3933
3934 mapping = pci_map_single(tp->pdev, skb->data,
3935 skb_size - tp->rx_offset,
3936 PCI_DMA_FROMDEVICE);
3937
3938 map->skb = skb;
3939 pci_unmap_addr_set(map, mapping, mapping);
3940
3941 if (src_map != NULL)
3942 src_map->skb = NULL;
3943
3944 desc->addr_hi = ((u64)mapping >> 32);
3945 desc->addr_lo = ((u64)mapping & 0xffffffff);
3946
3947 return skb_size;
3948}
3949
3950/* We only need to move over in the address because the other
3951 * members of the RX descriptor are invariant. See notes above
3952 * tg3_alloc_rx_skb for full details.
3953 */
3954static void tg3_recycle_rx(struct tg3 *tp, u32 opaque_key,
3955 int src_idx, u32 dest_idx_unmasked)
3956{
3957 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
3958 struct ring_info *src_map, *dest_map;
3959 int dest_idx;
3960
3961 switch (opaque_key) {
3962 case RXD_OPAQUE_RING_STD:
3963 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
3964 dest_desc = &tp->rx_std[dest_idx];
3965 dest_map = &tp->rx_std_buffers[dest_idx];
3966 src_desc = &tp->rx_std[src_idx];
3967 src_map = &tp->rx_std_buffers[src_idx];
3968 break;
3969
3970 case RXD_OPAQUE_RING_JUMBO:
3971 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
3972 dest_desc = &tp->rx_jumbo[dest_idx];
3973 dest_map = &tp->rx_jumbo_buffers[dest_idx];
3974 src_desc = &tp->rx_jumbo[src_idx];
3975 src_map = &tp->rx_jumbo_buffers[src_idx];
3976 break;
3977
3978 default:
3979 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
3982 dest_map->skb = src_map->skb;
3983 pci_unmap_addr_set(dest_map, mapping,
3984 pci_unmap_addr(src_map, mapping));
3985 dest_desc->addr_hi = src_desc->addr_hi;
3986 dest_desc->addr_lo = src_desc->addr_lo;
3987
3988 src_map->skb = NULL;
3989}
3990
3991#if TG3_VLAN_TAG_USED
3992static int tg3_vlan_rx(struct tg3 *tp, struct sk_buff *skb, u16 vlan_tag)
3993{
3994 return vlan_hwaccel_receive_skb(skb, tp->vlgrp, vlan_tag);
3995}
3996#endif
3997
3998/* The RX ring scheme is composed of multiple rings which post fresh
3999 * buffers to the chip, and one special ring the chip uses to report
4000 * status back to the host.
4001 *
4002 * The special ring reports the status of received packets to the
4003 * host. The chip does not write into the original descriptor the
4004 * RX buffer was obtained from. The chip simply takes the original
4005 * descriptor as provided by the host, updates the status and length
4006 * field, then writes this into the next status ring entry.
4007 *
4008 * Each ring the host uses to post buffers to the chip is described
4009 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
4010 * it is first placed into the on-chip ram. When the packet's length
4011 * is known, it walks down the TG3_BDINFO entries to select the ring.
4012 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
4013 * which is within the range of the new packet's length is chosen.
4014 *
4015 * The "separate ring for rx status" scheme may sound queer, but it makes
4016 * sense from a cache coherency perspective. If only the host writes
4017 * to the buffer post rings, and only the chip writes to the rx status
4018 * rings, then cache lines never move beyond shared-modified state.
4019 * If both the host and chip were to write into the same ring, cache line
4020 * eviction could occur since both entities want it in an exclusive state.
4021 */
4022static int tg3_rx(struct tg3 *tp, int budget)
4023{
Michael Chanf92905d2006-06-29 20:14:29 -07004024 u32 work_mask, rx_std_posted = 0;
Michael Chan483ba502005-04-25 15:14:03 -07004025 u32 sw_idx = tp->rx_rcb_ptr;
4026 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 int received;
4028
4029 hw_idx = tp->hw_status->idx[0].rx_producer;
4030 /*
4031 * We need to order the read of hw_idx and the read of
4032 * the opaque cookie.
4033 */
4034 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 work_mask = 0;
4036 received = 0;
4037 while (sw_idx != hw_idx && budget > 0) {
4038 struct tg3_rx_buffer_desc *desc = &tp->rx_rcb[sw_idx];
4039 unsigned int len;
4040 struct sk_buff *skb;
4041 dma_addr_t dma_addr;
4042 u32 opaque_key, desc_idx, *post_ptr;
4043
4044 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
4045 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
4046 if (opaque_key == RXD_OPAQUE_RING_STD) {
4047 dma_addr = pci_unmap_addr(&tp->rx_std_buffers[desc_idx],
4048 mapping);
4049 skb = tp->rx_std_buffers[desc_idx].skb;
4050 post_ptr = &tp->rx_std_ptr;
Michael Chanf92905d2006-06-29 20:14:29 -07004051 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
4053 dma_addr = pci_unmap_addr(&tp->rx_jumbo_buffers[desc_idx],
4054 mapping);
4055 skb = tp->rx_jumbo_buffers[desc_idx].skb;
4056 post_ptr = &tp->rx_jumbo_ptr;
4057 }
4058 else {
4059 goto next_pkt_nopost;
4060 }
4061
4062 work_mask |= opaque_key;
4063
4064 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
4065 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
4066 drop_it:
4067 tg3_recycle_rx(tp, opaque_key,
4068 desc_idx, *post_ptr);
4069 drop_it_no_recycle:
4070 /* Other statistics kept track of by card. */
4071 tp->net_stats.rx_dropped++;
4072 goto next_pkt;
4073 }
4074
4075 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) - 4; /* omit crc */
4076
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004077 if (len > RX_COPY_THRESHOLD
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 && tp->rx_offset == 2
4079 /* rx_offset != 2 iff this is a 5701 card running
4080 * in PCI-X mode [see tg3_get_invariants()] */
4081 ) {
4082 int skb_size;
4083
4084 skb_size = tg3_alloc_rx_skb(tp, opaque_key,
4085 desc_idx, *post_ptr);
4086 if (skb_size < 0)
4087 goto drop_it;
4088
4089 pci_unmap_single(tp->pdev, dma_addr,
4090 skb_size - tp->rx_offset,
4091 PCI_DMA_FROMDEVICE);
4092
4093 skb_put(skb, len);
4094 } else {
4095 struct sk_buff *copy_skb;
4096
4097 tg3_recycle_rx(tp, opaque_key,
4098 desc_idx, *post_ptr);
4099
David S. Millera20e9c62006-07-31 22:38:16 -07004100 copy_skb = netdev_alloc_skb(tp->dev, len + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 if (copy_skb == NULL)
4102 goto drop_it_no_recycle;
4103
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 skb_reserve(copy_skb, 2);
4105 skb_put(copy_skb, len);
4106 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03004107 skb_copy_from_linear_data(skb, copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
4109
4110 /* We'll reuse the original ring buffer. */
4111 skb = copy_skb;
4112 }
4113
4114 if ((tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) &&
4115 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
4116 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
4117 >> RXD_TCPCSUM_SHIFT) == 0xffff))
4118 skb->ip_summed = CHECKSUM_UNNECESSARY;
4119 else
4120 skb->ip_summed = CHECKSUM_NONE;
4121
4122 skb->protocol = eth_type_trans(skb, tp->dev);
4123#if TG3_VLAN_TAG_USED
4124 if (tp->vlgrp != NULL &&
4125 desc->type_flags & RXD_FLAG_VLAN) {
4126 tg3_vlan_rx(tp, skb,
4127 desc->err_vlan & RXD_VLAN_MASK);
4128 } else
4129#endif
4130 netif_receive_skb(skb);
4131
4132 tp->dev->last_rx = jiffies;
4133 received++;
4134 budget--;
4135
4136next_pkt:
4137 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07004138
4139 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
4140 u32 idx = *post_ptr % TG3_RX_RING_SIZE;
4141
4142 tw32_rx_mbox(MAILBOX_RCV_STD_PROD_IDX +
4143 TG3_64BIT_REG_LOW, idx);
4144 work_mask &= ~RXD_OPAQUE_RING_STD;
4145 rx_std_posted = 0;
4146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07004148 sw_idx++;
Eric Dumazet6b31a512007-02-06 13:29:21 -08004149 sw_idx &= (TG3_RX_RCB_RING_SIZE(tp) - 1);
Michael Chan52f6d692005-04-25 15:14:32 -07004150
4151 /* Refresh hw_idx to see if there is new work */
4152 if (sw_idx == hw_idx) {
4153 hw_idx = tp->hw_status->idx[0].rx_producer;
4154 rmb();
4155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 }
4157
4158 /* ACK the status ring. */
Michael Chan483ba502005-04-25 15:14:03 -07004159 tp->rx_rcb_ptr = sw_idx;
4160 tw32_rx_mbox(MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
4162 /* Refill RX ring(s). */
4163 if (work_mask & RXD_OPAQUE_RING_STD) {
4164 sw_idx = tp->rx_std_ptr % TG3_RX_RING_SIZE;
4165 tw32_rx_mbox(MAILBOX_RCV_STD_PROD_IDX + TG3_64BIT_REG_LOW,
4166 sw_idx);
4167 }
4168 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
4169 sw_idx = tp->rx_jumbo_ptr % TG3_RX_JUMBO_RING_SIZE;
4170 tw32_rx_mbox(MAILBOX_RCV_JUMBO_PROD_IDX + TG3_64BIT_REG_LOW,
4171 sw_idx);
4172 }
4173 mmiowb();
4174
4175 return received;
4176}
4177
David S. Miller6f535762007-10-11 18:08:29 -07004178static int tg3_poll_work(struct tg3 *tp, int work_done, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 struct tg3_hw_status *sblk = tp->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 /* handle link change and other phy events */
4183 if (!(tp->tg3_flags &
4184 (TG3_FLAG_USE_LINKCHG_REG |
4185 TG3_FLAG_POLL_SERDES))) {
4186 if (sblk->status & SD_STATUS_LINK_CHG) {
4187 sblk->status = SD_STATUS_UPDATED |
4188 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07004189 spin_lock(&tp->lock);
Matt Carlsondd477002008-05-25 23:45:58 -07004190 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
4191 tw32_f(MAC_STATUS,
4192 (MAC_STATUS_SYNC_CHANGED |
4193 MAC_STATUS_CFG_CHANGED |
4194 MAC_STATUS_MI_COMPLETION |
4195 MAC_STATUS_LNKSTATE_CHANGED));
4196 udelay(40);
4197 } else
4198 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07004199 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 }
4201 }
4202
4203 /* run TX completion thread */
4204 if (sblk->idx[0].tx_consumer != tp->tx_cons) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205 tg3_tx(tp);
David S. Miller6f535762007-10-11 18:08:29 -07004206 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
Michael Chan4fd7ab52007-10-12 01:39:50 -07004207 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 }
4209
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 /* run RX thread, within the bounds set by NAPI.
4211 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004212 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004214 if (sblk->idx[0].rx_producer != tp->rx_rcb_ptr)
David S. Miller6f535762007-10-11 18:08:29 -07004215 work_done += tg3_rx(tp, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
David S. Miller6f535762007-10-11 18:08:29 -07004217 return work_done;
4218}
David S. Millerf7383c22005-05-18 22:50:53 -07004219
David S. Miller6f535762007-10-11 18:08:29 -07004220static int tg3_poll(struct napi_struct *napi, int budget)
4221{
4222 struct tg3 *tp = container_of(napi, struct tg3, napi);
4223 int work_done = 0;
Michael Chan4fd7ab52007-10-12 01:39:50 -07004224 struct tg3_hw_status *sblk = tp->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07004225
4226 while (1) {
4227 work_done = tg3_poll_work(tp, work_done, budget);
4228
4229 if (unlikely(tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING))
4230 goto tx_recovery;
4231
4232 if (unlikely(work_done >= budget))
4233 break;
4234
Michael Chan4fd7ab52007-10-12 01:39:50 -07004235 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
4236 /* tp->last_tag is used in tg3_restart_ints() below
4237 * to tell the hw how much work has been processed,
4238 * so we must read it before checking for more work.
4239 */
4240 tp->last_tag = sblk->status_tag;
4241 rmb();
4242 } else
4243 sblk->status &= ~SD_STATUS_UPDATED;
4244
David S. Miller6f535762007-10-11 18:08:29 -07004245 if (likely(!tg3_has_work(tp))) {
David S. Miller6f535762007-10-11 18:08:29 -07004246 netif_rx_complete(tp->dev, napi);
4247 tg3_restart_ints(tp);
4248 break;
4249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 }
4251
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004252 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07004253
4254tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07004255 /* work_done is guaranteed to be less than budget. */
David S. Miller6f535762007-10-11 18:08:29 -07004256 netif_rx_complete(tp->dev, napi);
4257 schedule_work(&tp->reset_task);
Michael Chan4fd7ab52007-10-12 01:39:50 -07004258 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259}
4260
David S. Millerf47c11e2005-06-24 20:18:35 -07004261static void tg3_irq_quiesce(struct tg3 *tp)
4262{
4263 BUG_ON(tp->irq_sync);
4264
4265 tp->irq_sync = 1;
4266 smp_mb();
4267
4268 synchronize_irq(tp->pdev->irq);
4269}
4270
4271static inline int tg3_irq_sync(struct tg3 *tp)
4272{
4273 return tp->irq_sync;
4274}
4275
4276/* Fully shutdown all tg3 driver activity elsewhere in the system.
4277 * If irq_sync is non-zero, then the IRQ handler must be synchronized
4278 * with as well. Most of the time, this is not necessary except when
4279 * shutting down the device.
4280 */
4281static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
4282{
Michael Chan46966542007-07-11 19:47:19 -07004283 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07004284 if (irq_sync)
4285 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07004286}
4287
4288static inline void tg3_full_unlock(struct tg3 *tp)
4289{
David S. Millerf47c11e2005-06-24 20:18:35 -07004290 spin_unlock_bh(&tp->lock);
4291}
4292
Michael Chanfcfa0a32006-03-20 22:28:41 -08004293/* One-shot MSI handler - Chip automatically disables interrupt
4294 * after sending MSI so driver doesn't have to do it.
4295 */
David Howells7d12e782006-10-05 14:55:46 +01004296static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08004297{
4298 struct net_device *dev = dev_id;
4299 struct tg3 *tp = netdev_priv(dev);
4300
4301 prefetch(tp->hw_status);
4302 prefetch(&tp->rx_rcb[tp->rx_rcb_ptr]);
4303
4304 if (likely(!tg3_irq_sync(tp)))
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004305 netif_rx_schedule(dev, &tp->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08004306
4307 return IRQ_HANDLED;
4308}
4309
Michael Chan88b06bc2005-04-21 17:13:25 -07004310/* MSI ISR - No need to check for interrupt sharing and no need to
4311 * flush status block and interrupt mailbox. PCI ordering rules
4312 * guarantee that MSI will arrive after the status block.
4313 */
David Howells7d12e782006-10-05 14:55:46 +01004314static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc2005-04-21 17:13:25 -07004315{
4316 struct net_device *dev = dev_id;
4317 struct tg3 *tp = netdev_priv(dev);
Michael Chan88b06bc2005-04-21 17:13:25 -07004318
Michael Chan61487482005-09-05 17:53:19 -07004319 prefetch(tp->hw_status);
4320 prefetch(&tp->rx_rcb[tp->rx_rcb_ptr]);
Michael Chan88b06bc2005-04-21 17:13:25 -07004321 /*
David S. Millerfac9b832005-05-18 22:46:34 -07004322 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc2005-04-21 17:13:25 -07004323 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07004324 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc2005-04-21 17:13:25 -07004325 * NIC to stop sending us irqs, engaging "in-intr-handler"
4326 * event coalescing.
4327 */
4328 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07004329 if (likely(!tg3_irq_sync(tp)))
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004330 netif_rx_schedule(dev, &tp->napi);
Michael Chan61487482005-09-05 17:53:19 -07004331
Michael Chan88b06bc2005-04-21 17:13:25 -07004332 return IRQ_RETVAL(1);
4333}
4334
David Howells7d12e782006-10-05 14:55:46 +01004335static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336{
4337 struct net_device *dev = dev_id;
4338 struct tg3 *tp = netdev_priv(dev);
4339 struct tg3_hw_status *sblk = tp->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 unsigned int handled = 1;
4341
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 /* In INTx mode, it is possible for the interrupt to arrive at
4343 * the CPU before the status block posted prior to the interrupt.
4344 * Reading the PCI State register will confirm whether the
4345 * interrupt is ours and will flush the status block.
4346 */
Michael Chand18edcb2007-03-24 20:57:11 -07004347 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
4348 if ((tp->tg3_flags & TG3_FLAG_CHIP_RESETTING) ||
4349 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
4350 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07004351 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07004352 }
Michael Chand18edcb2007-03-24 20:57:11 -07004353 }
4354
4355 /*
4356 * Writing any value to intr-mbox-0 clears PCI INTA# and
4357 * chip-internal interrupt pending events.
4358 * Writing non-zero to intr-mbox-0 additional tells the
4359 * NIC to stop sending us irqs, engaging "in-intr-handler"
4360 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07004361 *
4362 * Flush the mailbox to de-assert the IRQ immediately to prevent
4363 * spurious interrupts. The flush impacts performance but
4364 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07004365 */
Michael Chanc04cb342007-05-07 00:26:15 -07004366 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07004367 if (tg3_irq_sync(tp))
4368 goto out;
4369 sblk->status &= ~SD_STATUS_UPDATED;
4370 if (likely(tg3_has_work(tp))) {
4371 prefetch(&tp->rx_rcb[tp->rx_rcb_ptr]);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004372 netif_rx_schedule(dev, &tp->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07004373 } else {
4374 /* No work, shared interrupt perhaps? re-enable
4375 * interrupts, and flush that PCI write
4376 */
4377 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
4378 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07004379 }
David S. Millerf47c11e2005-06-24 20:18:35 -07004380out:
David S. Millerfac9b832005-05-18 22:46:34 -07004381 return IRQ_RETVAL(handled);
4382}
4383
David Howells7d12e782006-10-05 14:55:46 +01004384static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07004385{
4386 struct net_device *dev = dev_id;
4387 struct tg3 *tp = netdev_priv(dev);
4388 struct tg3_hw_status *sblk = tp->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07004389 unsigned int handled = 1;
4390
David S. Millerfac9b832005-05-18 22:46:34 -07004391 /* In INTx mode, it is possible for the interrupt to arrive at
4392 * the CPU before the status block posted prior to the interrupt.
4393 * Reading the PCI State register will confirm whether the
4394 * interrupt is ours and will flush the status block.
4395 */
Michael Chand18edcb2007-03-24 20:57:11 -07004396 if (unlikely(sblk->status_tag == tp->last_tag)) {
4397 if ((tp->tg3_flags & TG3_FLAG_CHIP_RESETTING) ||
4398 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
4399 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07004400 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 }
Michael Chand18edcb2007-03-24 20:57:11 -07004402 }
4403
4404 /*
4405 * writing any value to intr-mbox-0 clears PCI INTA# and
4406 * chip-internal interrupt pending events.
4407 * writing non-zero to intr-mbox-0 additional tells the
4408 * NIC to stop sending us irqs, engaging "in-intr-handler"
4409 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07004410 *
4411 * Flush the mailbox to de-assert the IRQ immediately to prevent
4412 * spurious interrupts. The flush impacts performance but
4413 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07004414 */
Michael Chanc04cb342007-05-07 00:26:15 -07004415 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07004416 if (tg3_irq_sync(tp))
4417 goto out;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004418 if (netif_rx_schedule_prep(dev, &tp->napi)) {
Michael Chand18edcb2007-03-24 20:57:11 -07004419 prefetch(&tp->rx_rcb[tp->rx_rcb_ptr]);
4420 /* Update last_tag to mark that this status has been
4421 * seen. Because interrupt may be shared, we may be
4422 * racing with tg3_poll(), so only update last_tag
4423 * if tg3_poll() is not scheduled.
4424 */
4425 tp->last_tag = sblk->status_tag;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004426 __netif_rx_schedule(dev, &tp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 }
David S. Millerf47c11e2005-06-24 20:18:35 -07004428out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 return IRQ_RETVAL(handled);
4430}
4431
Michael Chan79381092005-04-21 17:13:59 -07004432/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01004433static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07004434{
4435 struct net_device *dev = dev_id;
4436 struct tg3 *tp = netdev_priv(dev);
4437 struct tg3_hw_status *sblk = tp->hw_status;
4438
Michael Chanf9804dd2005-09-27 12:13:10 -07004439 if ((sblk->status & SD_STATUS_UPDATED) ||
4440 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07004441 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07004442 return IRQ_RETVAL(1);
4443 }
4444 return IRQ_RETVAL(0);
4445}
4446
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07004447static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07004448static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449
Michael Chanb9ec6c12006-07-25 16:37:27 -07004450/* Restart hardware after configuration changes, self-test, etc.
4451 * Invoked with tp->lock held.
4452 */
4453static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07004454 __releases(tp->lock)
4455 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07004456{
4457 int err;
4458
4459 err = tg3_init_hw(tp, reset_phy);
4460 if (err) {
4461 printk(KERN_ERR PFX "%s: Failed to re-initialize device, "
4462 "aborting.\n", tp->dev->name);
4463 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
4464 tg3_full_unlock(tp);
4465 del_timer_sync(&tp->timer);
4466 tp->irq_sync = 0;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004467 napi_enable(&tp->napi);
Michael Chanb9ec6c12006-07-25 16:37:27 -07004468 dev_close(tp->dev);
4469 tg3_full_lock(tp, 0);
4470 }
4471 return err;
4472}
4473
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474#ifdef CONFIG_NET_POLL_CONTROLLER
4475static void tg3_poll_controller(struct net_device *dev)
4476{
Michael Chan88b06bc2005-04-21 17:13:25 -07004477 struct tg3 *tp = netdev_priv(dev);
4478
David Howells7d12e782006-10-05 14:55:46 +01004479 tg3_interrupt(tp->pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480}
4481#endif
4482
David Howellsc4028952006-11-22 14:57:56 +00004483static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484{
David Howellsc4028952006-11-22 14:57:56 +00004485 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004486 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 unsigned int restart_timer;
4488
Michael Chan7faa0062006-02-02 17:29:28 -08004489 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08004490
4491 if (!netif_running(tp->dev)) {
Michael Chan7faa0062006-02-02 17:29:28 -08004492 tg3_full_unlock(tp);
4493 return;
4494 }
4495
4496 tg3_full_unlock(tp);
4497
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004498 tg3_phy_stop(tp);
4499
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 tg3_netif_stop(tp);
4501
David S. Millerf47c11e2005-06-24 20:18:35 -07004502 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503
4504 restart_timer = tp->tg3_flags2 & TG3_FLG2_RESTART_TIMER;
4505 tp->tg3_flags2 &= ~TG3_FLG2_RESTART_TIMER;
4506
Michael Chandf3e6542006-05-26 17:48:07 -07004507 if (tp->tg3_flags & TG3_FLAG_TX_RECOVERY_PENDING) {
4508 tp->write32_tx_mbox = tg3_write32_tx_mbox;
4509 tp->write32_rx_mbox = tg3_write_flush_reg32;
4510 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
4511 tp->tg3_flags &= ~TG3_FLAG_TX_RECOVERY_PENDING;
4512 }
4513
Michael Chan944d9802005-05-29 14:57:48 -07004514 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004515 err = tg3_init_hw(tp, 1);
4516 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07004517 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
4519 tg3_netif_start(tp);
4520
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521 if (restart_timer)
4522 mod_timer(&tp->timer, jiffies + 1);
Michael Chan7faa0062006-02-02 17:29:28 -08004523
Michael Chanb9ec6c12006-07-25 16:37:27 -07004524out:
Michael Chan7faa0062006-02-02 17:29:28 -08004525 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004526
4527 if (!err)
4528 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529}
4530
Michael Chanb0408752007-02-13 12:18:30 -08004531static void tg3_dump_short_state(struct tg3 *tp)
4532{
4533 printk(KERN_ERR PFX "DEBUG: MAC_TX_STATUS[%08x] MAC_RX_STATUS[%08x]\n",
4534 tr32(MAC_TX_STATUS), tr32(MAC_RX_STATUS));
4535 printk(KERN_ERR PFX "DEBUG: RDMAC_STATUS[%08x] WDMAC_STATUS[%08x]\n",
4536 tr32(RDMAC_STATUS), tr32(WDMAC_STATUS));
4537}
4538
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539static void tg3_tx_timeout(struct net_device *dev)
4540{
4541 struct tg3 *tp = netdev_priv(dev);
4542
Michael Chanb0408752007-02-13 12:18:30 -08004543 if (netif_msg_tx_err(tp)) {
Michael Chan9f88f292006-12-07 00:22:54 -08004544 printk(KERN_ERR PFX "%s: transmit timed out, resetting\n",
4545 dev->name);
Michael Chanb0408752007-02-13 12:18:30 -08004546 tg3_dump_short_state(tp);
4547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
4549 schedule_work(&tp->reset_task);
4550}
4551
Michael Chanc58ec932005-09-17 00:46:27 -07004552/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
4553static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
4554{
4555 u32 base = (u32) mapping & 0xffffffff;
4556
4557 return ((base > 0xffffdcc0) &&
4558 (base + len + 8 < base));
4559}
4560
Michael Chan72f2afb2006-03-06 19:28:35 -08004561/* Test for DMA addresses > 40-bit */
4562static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
4563 int len)
4564{
4565#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Michael Chan6728a8e2006-03-27 23:16:49 -08004566 if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG)
Michael Chan72f2afb2006-03-06 19:28:35 -08004567 return (((u64) mapping + len) > DMA_40BIT_MASK);
4568 return 0;
4569#else
4570 return 0;
4571#endif
4572}
4573
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574static void tg3_set_txd(struct tg3 *, int, dma_addr_t, int, u32, u32);
4575
Michael Chan72f2afb2006-03-06 19:28:35 -08004576/* Workaround 4GB and 40-bit hardware DMA bugs. */
4577static int tigon3_dma_hwbug_workaround(struct tg3 *tp, struct sk_buff *skb,
Michael Chanc58ec932005-09-17 00:46:27 -07004578 u32 last_plus_one, u32 *start,
4579 u32 base_flags, u32 mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580{
Matt Carlson41588ba2008-04-19 18:12:33 -07004581 struct sk_buff *new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07004582 dma_addr_t new_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 u32 entry = *start;
Michael Chanc58ec932005-09-17 00:46:27 -07004584 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585
Matt Carlson41588ba2008-04-19 18:12:33 -07004586 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
4587 new_skb = skb_copy(skb, GFP_ATOMIC);
4588 else {
4589 int more_headroom = 4 - ((unsigned long)skb->data & 3);
4590
4591 new_skb = skb_copy_expand(skb,
4592 skb_headroom(skb) + more_headroom,
4593 skb_tailroom(skb), GFP_ATOMIC);
4594 }
4595
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07004597 ret = -1;
4598 } else {
4599 /* New SKB is guaranteed to be linear. */
4600 entry = *start;
4601 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
4602 PCI_DMA_TODEVICE);
4603 /* Make sure new skb does not cross any 4G boundaries.
4604 * Drop the packet if it does.
4605 */
4606 if (tg3_4g_overflow_test(new_addr, new_skb->len)) {
4607 ret = -1;
4608 dev_kfree_skb(new_skb);
4609 new_skb = NULL;
4610 } else {
4611 tg3_set_txd(tp, entry, new_addr, new_skb->len,
4612 base_flags, 1 | (mss << 1));
4613 *start = NEXT_TX(entry);
4614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 }
4616
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 /* Now clean up the sw ring entries. */
4618 i = 0;
4619 while (entry != last_plus_one) {
4620 int len;
4621
4622 if (i == 0)
4623 len = skb_headlen(skb);
4624 else
4625 len = skb_shinfo(skb)->frags[i-1].size;
4626 pci_unmap_single(tp->pdev,
4627 pci_unmap_addr(&tp->tx_buffers[entry], mapping),
4628 len, PCI_DMA_TODEVICE);
4629 if (i == 0) {
4630 tp->tx_buffers[entry].skb = new_skb;
4631 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, new_addr);
4632 } else {
4633 tp->tx_buffers[entry].skb = NULL;
4634 }
4635 entry = NEXT_TX(entry);
4636 i++;
4637 }
4638
4639 dev_kfree_skb(skb);
4640
Michael Chanc58ec932005-09-17 00:46:27 -07004641 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642}
4643
4644static void tg3_set_txd(struct tg3 *tp, int entry,
4645 dma_addr_t mapping, int len, u32 flags,
4646 u32 mss_and_is_end)
4647{
4648 struct tg3_tx_buffer_desc *txd = &tp->tx_ring[entry];
4649 int is_end = (mss_and_is_end & 0x1);
4650 u32 mss = (mss_and_is_end >> 1);
4651 u32 vlan_tag = 0;
4652
4653 if (is_end)
4654 flags |= TXD_FLAG_END;
4655 if (flags & TXD_FLAG_VLAN) {
4656 vlan_tag = flags >> 16;
4657 flags &= 0xffff;
4658 }
4659 vlan_tag |= (mss << TXD_MSS_SHIFT);
4660
4661 txd->addr_hi = ((u64) mapping >> 32);
4662 txd->addr_lo = ((u64) mapping & 0xffffffff);
4663 txd->len_flags = (len << TXD_LEN_SHIFT) | flags;
4664 txd->vlan_tag = vlan_tag << TXD_VLAN_TAG_SHIFT;
4665}
4666
Michael Chan5a6f3072006-03-20 22:28:05 -08004667/* hard_start_xmit for devices that don't have any bugs and
4668 * support TG3_FLG2_HW_TSO_2 only.
4669 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670static int tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
4671{
4672 struct tg3 *tp = netdev_priv(dev);
4673 dma_addr_t mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 u32 len, entry, base_flags, mss;
Michael Chan5a6f3072006-03-20 22:28:05 -08004675
4676 len = skb_headlen(skb);
4677
Michael Chan00b70502006-06-17 21:58:45 -07004678 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004679 * and TX reclaim runs via tp->napi.poll inside of a software
Michael Chan5a6f3072006-03-20 22:28:05 -08004680 * interrupt. Furthermore, IRQ processing runs lockless so we have
4681 * no IRQ context deadlocks to worry about either. Rejoice!
4682 */
Michael Chan1b2a7202006-08-07 21:46:02 -07004683 if (unlikely(tg3_tx_avail(tp) <= (skb_shinfo(skb)->nr_frags + 1))) {
Michael Chan5a6f3072006-03-20 22:28:05 -08004684 if (!netif_queue_stopped(dev)) {
4685 netif_stop_queue(dev);
4686
4687 /* This is a hard error, log it. */
4688 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when "
4689 "queue awake!\n", dev->name);
4690 }
Michael Chan5a6f3072006-03-20 22:28:05 -08004691 return NETDEV_TX_BUSY;
4692 }
4693
4694 entry = tp->tx_prod;
4695 base_flags = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08004696 mss = 0;
Matt Carlsonc13e3712007-05-05 11:50:04 -07004697 if ((mss = skb_shinfo(skb)->gso_size) != 0) {
Michael Chan5a6f3072006-03-20 22:28:05 -08004698 int tcp_opt_len, ip_tcp_len;
4699
4700 if (skb_header_cloned(skb) &&
4701 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
4702 dev_kfree_skb(skb);
4703 goto out_unlock;
4704 }
4705
Michael Chanb0026622006-07-03 19:42:14 -07004706 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
4707 mss |= (skb_headlen(skb) - ETH_HLEN) << 9;
4708 else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004709 struct iphdr *iph = ip_hdr(skb);
4710
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07004711 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03004712 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Michael Chanb0026622006-07-03 19:42:14 -07004713
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004714 iph->check = 0;
4715 iph->tot_len = htons(mss + ip_tcp_len + tcp_opt_len);
Michael Chanb0026622006-07-03 19:42:14 -07004716 mss |= (ip_tcp_len + tcp_opt_len) << 9;
4717 }
Michael Chan5a6f3072006-03-20 22:28:05 -08004718
4719 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
4720 TXD_FLAG_CPU_POST_DMA);
4721
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07004722 tcp_hdr(skb)->check = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08004723
Michael Chan5a6f3072006-03-20 22:28:05 -08004724 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07004725 else if (skb->ip_summed == CHECKSUM_PARTIAL)
Michael Chan5a6f3072006-03-20 22:28:05 -08004726 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Michael Chan5a6f3072006-03-20 22:28:05 -08004727#if TG3_VLAN_TAG_USED
4728 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
4729 base_flags |= (TXD_FLAG_VLAN |
4730 (vlan_tx_tag_get(skb) << 16));
4731#endif
4732
4733 /* Queue skb data, a.k.a. the main skb fragment. */
4734 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
4735
4736 tp->tx_buffers[entry].skb = skb;
4737 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, mapping);
4738
4739 tg3_set_txd(tp, entry, mapping, len, base_flags,
4740 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
4741
4742 entry = NEXT_TX(entry);
4743
4744 /* Now loop through additional data fragments, and queue them. */
4745 if (skb_shinfo(skb)->nr_frags > 0) {
4746 unsigned int i, last;
4747
4748 last = skb_shinfo(skb)->nr_frags - 1;
4749 for (i = 0; i <= last; i++) {
4750 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
4751
4752 len = frag->size;
4753 mapping = pci_map_page(tp->pdev,
4754 frag->page,
4755 frag->page_offset,
4756 len, PCI_DMA_TODEVICE);
4757
4758 tp->tx_buffers[entry].skb = NULL;
4759 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, mapping);
4760
4761 tg3_set_txd(tp, entry, mapping, len,
4762 base_flags, (i == last) | (mss << 1));
4763
4764 entry = NEXT_TX(entry);
4765 }
4766 }
4767
4768 /* Packets are ready, update Tx producer idx local and on card. */
4769 tw32_tx_mbox((MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW), entry);
4770
4771 tp->tx_prod = entry;
Michael Chan1b2a7202006-08-07 21:46:02 -07004772 if (unlikely(tg3_tx_avail(tp) <= (MAX_SKB_FRAGS + 1))) {
Michael Chan5a6f3072006-03-20 22:28:05 -08004773 netif_stop_queue(dev);
Ranjit Manomohan42952232006-10-18 20:54:26 -07004774 if (tg3_tx_avail(tp) > TG3_TX_WAKEUP_THRESH(tp))
Michael Chan5a6f3072006-03-20 22:28:05 -08004775 netif_wake_queue(tp->dev);
4776 }
4777
4778out_unlock:
4779 mmiowb();
Michael Chan5a6f3072006-03-20 22:28:05 -08004780
4781 dev->trans_start = jiffies;
4782
4783 return NETDEV_TX_OK;
4784}
4785
Michael Chan52c0fd82006-06-29 20:15:54 -07004786static int tg3_start_xmit_dma_bug(struct sk_buff *, struct net_device *);
4787
4788/* Use GSO to workaround a rare TSO bug that may be triggered when the
4789 * TSO header is greater than 80 bytes.
4790 */
4791static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
4792{
4793 struct sk_buff *segs, *nskb;
4794
4795 /* Estimate the number of fragments in the worst case */
Michael Chan1b2a7202006-08-07 21:46:02 -07004796 if (unlikely(tg3_tx_avail(tp) <= (skb_shinfo(skb)->gso_segs * 3))) {
Michael Chan52c0fd82006-06-29 20:15:54 -07004797 netif_stop_queue(tp->dev);
Michael Chan7f62ad52007-02-20 23:25:40 -08004798 if (tg3_tx_avail(tp) <= (skb_shinfo(skb)->gso_segs * 3))
4799 return NETDEV_TX_BUSY;
4800
4801 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07004802 }
4803
4804 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07004805 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07004806 goto tg3_tso_bug_end;
4807
4808 do {
4809 nskb = segs;
4810 segs = segs->next;
4811 nskb->next = NULL;
4812 tg3_start_xmit_dma_bug(nskb, tp->dev);
4813 } while (segs);
4814
4815tg3_tso_bug_end:
4816 dev_kfree_skb(skb);
4817
4818 return NETDEV_TX_OK;
4819}
Michael Chan52c0fd82006-06-29 20:15:54 -07004820
Michael Chan5a6f3072006-03-20 22:28:05 -08004821/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
4822 * support TG3_FLG2_HW_TSO_1 or firmware TSO only.
4823 */
4824static int tg3_start_xmit_dma_bug(struct sk_buff *skb, struct net_device *dev)
4825{
4826 struct tg3 *tp = netdev_priv(dev);
4827 dma_addr_t mapping;
4828 u32 len, entry, base_flags, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 int would_hit_hwbug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
4831 len = skb_headlen(skb);
4832
Michael Chan00b70502006-06-17 21:58:45 -07004833 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004834 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07004835 * interrupt. Furthermore, IRQ processing runs lockless so we have
4836 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 */
Michael Chan1b2a7202006-08-07 21:46:02 -07004838 if (unlikely(tg3_tx_avail(tp) <= (skb_shinfo(skb)->nr_frags + 1))) {
Stephen Hemminger1f064a82005-12-06 17:36:44 -08004839 if (!netif_queue_stopped(dev)) {
4840 netif_stop_queue(dev);
4841
4842 /* This is a hard error, log it. */
4843 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when "
4844 "queue awake!\n", dev->name);
4845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 return NETDEV_TX_BUSY;
4847 }
4848
4849 entry = tp->tx_prod;
4850 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07004851 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 mss = 0;
Matt Carlsonc13e3712007-05-05 11:50:04 -07004854 if ((mss = skb_shinfo(skb)->gso_size) != 0) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004855 struct iphdr *iph;
Michael Chan52c0fd82006-06-29 20:15:54 -07004856 int tcp_opt_len, ip_tcp_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857
4858 if (skb_header_cloned(skb) &&
4859 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
4860 dev_kfree_skb(skb);
4861 goto out_unlock;
4862 }
4863
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07004864 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03004865 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
Michael Chan52c0fd82006-06-29 20:15:54 -07004867 hdr_len = ip_tcp_len + tcp_opt_len;
4868 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Michael Chan7f62ad52007-02-20 23:25:40 -08004869 (tp->tg3_flags2 & TG3_FLG2_TSO_BUG))
Michael Chan52c0fd82006-06-29 20:15:54 -07004870 return (tg3_tso_bug(tp, skb));
4871
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
4873 TXD_FLAG_CPU_POST_DMA);
4874
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004875 iph = ip_hdr(skb);
4876 iph->check = 0;
4877 iph->tot_len = htons(mss + hdr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07004879 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07004881 } else
4882 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
4883 iph->daddr, 0,
4884 IPPROTO_TCP,
4885 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
4887 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) ||
4888 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004889 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 int tsflags;
4891
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004892 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 mss |= (tsflags << 11);
4894 }
4895 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004896 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897 int tsflags;
4898
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07004899 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 base_flags |= tsflags << 12;
4901 }
4902 }
4903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904#if TG3_VLAN_TAG_USED
4905 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
4906 base_flags |= (TXD_FLAG_VLAN |
4907 (vlan_tx_tag_get(skb) << 16));
4908#endif
4909
4910 /* Queue skb data, a.k.a. the main skb fragment. */
4911 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
4912
4913 tp->tx_buffers[entry].skb = skb;
4914 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, mapping);
4915
4916 would_hit_hwbug = 0;
4917
Matt Carlson41588ba2008-04-19 18:12:33 -07004918 if (tp->tg3_flags3 & TG3_FLG3_5701_DMA_BUG)
4919 would_hit_hwbug = 1;
4920 else if (tg3_4g_overflow_test(mapping, len))
Michael Chanc58ec932005-09-17 00:46:27 -07004921 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922
4923 tg3_set_txd(tp, entry, mapping, len, base_flags,
4924 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
4925
4926 entry = NEXT_TX(entry);
4927
4928 /* Now loop through additional data fragments, and queue them. */
4929 if (skb_shinfo(skb)->nr_frags > 0) {
4930 unsigned int i, last;
4931
4932 last = skb_shinfo(skb)->nr_frags - 1;
4933 for (i = 0; i <= last; i++) {
4934 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
4935
4936 len = frag->size;
4937 mapping = pci_map_page(tp->pdev,
4938 frag->page,
4939 frag->page_offset,
4940 len, PCI_DMA_TODEVICE);
4941
4942 tp->tx_buffers[entry].skb = NULL;
4943 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, mapping);
4944
Michael Chanc58ec932005-09-17 00:46:27 -07004945 if (tg3_4g_overflow_test(mapping, len))
4946 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947
Michael Chan72f2afb2006-03-06 19:28:35 -08004948 if (tg3_40bit_overflow_test(tp, mapping, len))
4949 would_hit_hwbug = 1;
4950
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
4952 tg3_set_txd(tp, entry, mapping, len,
4953 base_flags, (i == last)|(mss << 1));
4954 else
4955 tg3_set_txd(tp, entry, mapping, len,
4956 base_flags, (i == last));
4957
4958 entry = NEXT_TX(entry);
4959 }
4960 }
4961
4962 if (would_hit_hwbug) {
4963 u32 last_plus_one = entry;
4964 u32 start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965
Michael Chanc58ec932005-09-17 00:46:27 -07004966 start = entry - 1 - skb_shinfo(skb)->nr_frags;
4967 start &= (TG3_TX_RING_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
4969 /* If the workaround fails due to memory/mapping
4970 * failure, silently drop this packet.
4971 */
Michael Chan72f2afb2006-03-06 19:28:35 -08004972 if (tigon3_dma_hwbug_workaround(tp, skb, last_plus_one,
Michael Chanc58ec932005-09-17 00:46:27 -07004973 &start, base_flags, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 goto out_unlock;
4975
4976 entry = start;
4977 }
4978
4979 /* Packets are ready, update Tx producer idx local and on card. */
4980 tw32_tx_mbox((MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW), entry);
4981
4982 tp->tx_prod = entry;
Michael Chan1b2a7202006-08-07 21:46:02 -07004983 if (unlikely(tg3_tx_avail(tp) <= (MAX_SKB_FRAGS + 1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 netif_stop_queue(dev);
Ranjit Manomohan42952232006-10-18 20:54:26 -07004985 if (tg3_tx_avail(tp) > TG3_TX_WAKEUP_THRESH(tp))
Michael Chan51b91462005-09-01 17:41:28 -07004986 netif_wake_queue(tp->dev);
4987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988
4989out_unlock:
4990 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
4992 dev->trans_start = jiffies;
4993
4994 return NETDEV_TX_OK;
4995}
4996
4997static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
4998 int new_mtu)
4999{
5000 dev->mtu = new_mtu;
5001
Michael Chanef7f5ec2005-07-25 12:32:25 -07005002 if (new_mtu > ETH_DATA_LEN) {
Michael Chana4e2b342005-10-26 15:46:52 -07005003 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanef7f5ec2005-07-25 12:32:25 -07005004 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
5005 ethtool_op_set_tso(dev, 0);
5006 }
5007 else
5008 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
5009 } else {
Michael Chana4e2b342005-10-26 15:46:52 -07005010 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chanef7f5ec2005-07-25 12:32:25 -07005011 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
Michael Chan0f893dc2005-07-25 12:30:38 -07005012 tp->tg3_flags &= ~TG3_FLAG_JUMBO_RING_ENABLE;
Michael Chanef7f5ec2005-07-25 12:32:25 -07005013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014}
5015
5016static int tg3_change_mtu(struct net_device *dev, int new_mtu)
5017{
5018 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005019 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020
5021 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
5022 return -EINVAL;
5023
5024 if (!netif_running(dev)) {
5025 /* We'll just catch it later when the
5026 * device is up'd.
5027 */
5028 tg3_set_mtu(dev, tp, new_mtu);
5029 return 0;
5030 }
5031
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005032 tg3_phy_stop(tp);
5033
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005035
5036 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
Michael Chan944d9802005-05-29 14:57:48 -07005038 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039
5040 tg3_set_mtu(dev, tp, new_mtu);
5041
Michael Chanb9ec6c12006-07-25 16:37:27 -07005042 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043
Michael Chanb9ec6c12006-07-25 16:37:27 -07005044 if (!err)
5045 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
David S. Millerf47c11e2005-06-24 20:18:35 -07005047 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005049 if (!err)
5050 tg3_phy_start(tp);
5051
Michael Chanb9ec6c12006-07-25 16:37:27 -07005052 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053}
5054
5055/* Free up pending packets in all rx/tx rings.
5056 *
5057 * The chip has been shut down and the driver detached from
5058 * the networking, so no interrupts or new tx packets will
5059 * end up in the driver. tp->{tx,}lock is not held and we are not
5060 * in an interrupt context and thus may sleep.
5061 */
5062static void tg3_free_rings(struct tg3 *tp)
5063{
5064 struct ring_info *rxp;
5065 int i;
5066
5067 for (i = 0; i < TG3_RX_RING_SIZE; i++) {
5068 rxp = &tp->rx_std_buffers[i];
5069
5070 if (rxp->skb == NULL)
5071 continue;
5072 pci_unmap_single(tp->pdev,
5073 pci_unmap_addr(rxp, mapping),
Michael Chan7e72aad2005-07-25 12:31:17 -07005074 tp->rx_pkt_buf_sz - tp->rx_offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 PCI_DMA_FROMDEVICE);
5076 dev_kfree_skb_any(rxp->skb);
5077 rxp->skb = NULL;
5078 }
5079
5080 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++) {
5081 rxp = &tp->rx_jumbo_buffers[i];
5082
5083 if (rxp->skb == NULL)
5084 continue;
5085 pci_unmap_single(tp->pdev,
5086 pci_unmap_addr(rxp, mapping),
5087 RX_JUMBO_PKT_BUF_SZ - tp->rx_offset,
5088 PCI_DMA_FROMDEVICE);
5089 dev_kfree_skb_any(rxp->skb);
5090 rxp->skb = NULL;
5091 }
5092
5093 for (i = 0; i < TG3_TX_RING_SIZE; ) {
5094 struct tx_ring_info *txp;
5095 struct sk_buff *skb;
5096 int j;
5097
5098 txp = &tp->tx_buffers[i];
5099 skb = txp->skb;
5100
5101 if (skb == NULL) {
5102 i++;
5103 continue;
5104 }
5105
5106 pci_unmap_single(tp->pdev,
5107 pci_unmap_addr(txp, mapping),
5108 skb_headlen(skb),
5109 PCI_DMA_TODEVICE);
5110 txp->skb = NULL;
5111
5112 i++;
5113
5114 for (j = 0; j < skb_shinfo(skb)->nr_frags; j++) {
5115 txp = &tp->tx_buffers[i & (TG3_TX_RING_SIZE - 1)];
5116 pci_unmap_page(tp->pdev,
5117 pci_unmap_addr(txp, mapping),
5118 skb_shinfo(skb)->frags[j].size,
5119 PCI_DMA_TODEVICE);
5120 i++;
5121 }
5122
5123 dev_kfree_skb_any(skb);
5124 }
5125}
5126
5127/* Initialize tx/rx rings for packet processing.
5128 *
5129 * The chip has been shut down and the driver detached from
5130 * the networking, so no interrupts or new tx packets will
5131 * end up in the driver. tp->{tx,}lock are held and thus
5132 * we may not sleep.
5133 */
Michael Chan32d8c572006-07-25 16:38:29 -07005134static int tg3_init_rings(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135{
5136 u32 i;
5137
5138 /* Free up all the SKBs. */
5139 tg3_free_rings(tp);
5140
5141 /* Zero out all descriptors. */
5142 memset(tp->rx_std, 0, TG3_RX_RING_BYTES);
5143 memset(tp->rx_jumbo, 0, TG3_RX_JUMBO_RING_BYTES);
5144 memset(tp->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
5145 memset(tp->tx_ring, 0, TG3_TX_RING_BYTES);
5146
Michael Chan7e72aad2005-07-25 12:31:17 -07005147 tp->rx_pkt_buf_sz = RX_PKT_BUF_SZ;
Michael Chana4e2b342005-10-26 15:46:52 -07005148 if ((tp->tg3_flags2 & TG3_FLG2_5780_CLASS) &&
Michael Chan7e72aad2005-07-25 12:31:17 -07005149 (tp->dev->mtu > ETH_DATA_LEN))
5150 tp->rx_pkt_buf_sz = RX_JUMBO_PKT_BUF_SZ;
5151
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 /* Initialize invariants of the rings, we only set this
5153 * stuff once. This works because the card does not
5154 * write into the rx buffer posting rings.
5155 */
5156 for (i = 0; i < TG3_RX_RING_SIZE; i++) {
5157 struct tg3_rx_buffer_desc *rxd;
5158
5159 rxd = &tp->rx_std[i];
Michael Chan7e72aad2005-07-25 12:31:17 -07005160 rxd->idx_len = (tp->rx_pkt_buf_sz - tp->rx_offset - 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161 << RXD_LEN_SHIFT;
5162 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
5163 rxd->opaque = (RXD_OPAQUE_RING_STD |
5164 (i << RXD_OPAQUE_INDEX_SHIFT));
5165 }
5166
Michael Chan0f893dc2005-07-25 12:30:38 -07005167 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++) {
5169 struct tg3_rx_buffer_desc *rxd;
5170
5171 rxd = &tp->rx_jumbo[i];
5172 rxd->idx_len = (RX_JUMBO_PKT_BUF_SZ - tp->rx_offset - 64)
5173 << RXD_LEN_SHIFT;
5174 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
5175 RXD_FLAG_JUMBO;
5176 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
5177 (i << RXD_OPAQUE_INDEX_SHIFT));
5178 }
5179 }
5180
5181 /* Now allocate fresh SKBs for each rx ring. */
5182 for (i = 0; i < tp->rx_pending; i++) {
Michael Chan32d8c572006-07-25 16:38:29 -07005183 if (tg3_alloc_rx_skb(tp, RXD_OPAQUE_RING_STD, -1, i) < 0) {
5184 printk(KERN_WARNING PFX
5185 "%s: Using a smaller RX standard ring, "
5186 "only %d out of %d buffers were allocated "
5187 "successfully.\n",
5188 tp->dev->name, i, tp->rx_pending);
5189 if (i == 0)
5190 return -ENOMEM;
5191 tp->rx_pending = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 break;
Michael Chan32d8c572006-07-25 16:38:29 -07005193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194 }
5195
Michael Chan0f893dc2005-07-25 12:30:38 -07005196 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197 for (i = 0; i < tp->rx_jumbo_pending; i++) {
5198 if (tg3_alloc_rx_skb(tp, RXD_OPAQUE_RING_JUMBO,
Michael Chan32d8c572006-07-25 16:38:29 -07005199 -1, i) < 0) {
5200 printk(KERN_WARNING PFX
5201 "%s: Using a smaller RX jumbo ring, "
5202 "only %d out of %d buffers were "
5203 "allocated successfully.\n",
5204 tp->dev->name, i, tp->rx_jumbo_pending);
5205 if (i == 0) {
5206 tg3_free_rings(tp);
5207 return -ENOMEM;
5208 }
5209 tp->rx_jumbo_pending = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 break;
Michael Chan32d8c572006-07-25 16:38:29 -07005211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 }
5213 }
Michael Chan32d8c572006-07-25 16:38:29 -07005214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215}
5216
5217/*
5218 * Must not be invoked with interrupt sources disabled and
5219 * the hardware shutdown down.
5220 */
5221static void tg3_free_consistent(struct tg3 *tp)
5222{
Jesper Juhlb4558ea2005-10-28 16:53:13 -04005223 kfree(tp->rx_std_buffers);
5224 tp->rx_std_buffers = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225 if (tp->rx_std) {
5226 pci_free_consistent(tp->pdev, TG3_RX_RING_BYTES,
5227 tp->rx_std, tp->rx_std_mapping);
5228 tp->rx_std = NULL;
5229 }
5230 if (tp->rx_jumbo) {
5231 pci_free_consistent(tp->pdev, TG3_RX_JUMBO_RING_BYTES,
5232 tp->rx_jumbo, tp->rx_jumbo_mapping);
5233 tp->rx_jumbo = NULL;
5234 }
5235 if (tp->rx_rcb) {
5236 pci_free_consistent(tp->pdev, TG3_RX_RCB_RING_BYTES(tp),
5237 tp->rx_rcb, tp->rx_rcb_mapping);
5238 tp->rx_rcb = NULL;
5239 }
5240 if (tp->tx_ring) {
5241 pci_free_consistent(tp->pdev, TG3_TX_RING_BYTES,
5242 tp->tx_ring, tp->tx_desc_mapping);
5243 tp->tx_ring = NULL;
5244 }
5245 if (tp->hw_status) {
5246 pci_free_consistent(tp->pdev, TG3_HW_STATUS_SIZE,
5247 tp->hw_status, tp->status_mapping);
5248 tp->hw_status = NULL;
5249 }
5250 if (tp->hw_stats) {
5251 pci_free_consistent(tp->pdev, sizeof(struct tg3_hw_stats),
5252 tp->hw_stats, tp->stats_mapping);
5253 tp->hw_stats = NULL;
5254 }
5255}
5256
5257/*
5258 * Must not be invoked with interrupt sources disabled and
5259 * the hardware shutdown down. Can sleep.
5260 */
5261static int tg3_alloc_consistent(struct tg3 *tp)
5262{
Yan Burmanbd2b3342006-12-14 15:25:00 -08005263 tp->rx_std_buffers = kzalloc((sizeof(struct ring_info) *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 (TG3_RX_RING_SIZE +
5265 TG3_RX_JUMBO_RING_SIZE)) +
5266 (sizeof(struct tx_ring_info) *
5267 TG3_TX_RING_SIZE),
5268 GFP_KERNEL);
5269 if (!tp->rx_std_buffers)
5270 return -ENOMEM;
5271
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 tp->rx_jumbo_buffers = &tp->rx_std_buffers[TG3_RX_RING_SIZE];
5273 tp->tx_buffers = (struct tx_ring_info *)
5274 &tp->rx_jumbo_buffers[TG3_RX_JUMBO_RING_SIZE];
5275
5276 tp->rx_std = pci_alloc_consistent(tp->pdev, TG3_RX_RING_BYTES,
5277 &tp->rx_std_mapping);
5278 if (!tp->rx_std)
5279 goto err_out;
5280
5281 tp->rx_jumbo = pci_alloc_consistent(tp->pdev, TG3_RX_JUMBO_RING_BYTES,
5282 &tp->rx_jumbo_mapping);
5283
5284 if (!tp->rx_jumbo)
5285 goto err_out;
5286
5287 tp->rx_rcb = pci_alloc_consistent(tp->pdev, TG3_RX_RCB_RING_BYTES(tp),
5288 &tp->rx_rcb_mapping);
5289 if (!tp->rx_rcb)
5290 goto err_out;
5291
5292 tp->tx_ring = pci_alloc_consistent(tp->pdev, TG3_TX_RING_BYTES,
5293 &tp->tx_desc_mapping);
5294 if (!tp->tx_ring)
5295 goto err_out;
5296
5297 tp->hw_status = pci_alloc_consistent(tp->pdev,
5298 TG3_HW_STATUS_SIZE,
5299 &tp->status_mapping);
5300 if (!tp->hw_status)
5301 goto err_out;
5302
5303 tp->hw_stats = pci_alloc_consistent(tp->pdev,
5304 sizeof(struct tg3_hw_stats),
5305 &tp->stats_mapping);
5306 if (!tp->hw_stats)
5307 goto err_out;
5308
5309 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
5310 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
5311
5312 return 0;
5313
5314err_out:
5315 tg3_free_consistent(tp);
5316 return -ENOMEM;
5317}
5318
5319#define MAX_WAIT_CNT 1000
5320
5321/* To stop a block, clear the enable bit and poll till it
5322 * clears. tp->lock is held.
5323 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07005324static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325{
5326 unsigned int i;
5327 u32 val;
5328
5329 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
5330 switch (ofs) {
5331 case RCVLSC_MODE:
5332 case DMAC_MODE:
5333 case MBFREE_MODE:
5334 case BUFMGR_MODE:
5335 case MEMARB_MODE:
5336 /* We can't enable/disable these bits of the
5337 * 5705/5750, just say success.
5338 */
5339 return 0;
5340
5341 default:
5342 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 }
5345
5346 val = tr32(ofs);
5347 val &= ~enable_bit;
5348 tw32_f(ofs, val);
5349
5350 for (i = 0; i < MAX_WAIT_CNT; i++) {
5351 udelay(100);
5352 val = tr32(ofs);
5353 if ((val & enable_bit) == 0)
5354 break;
5355 }
5356
David S. Millerb3b7d6b2005-05-05 14:40:20 -07005357 if (i == MAX_WAIT_CNT && !silent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 printk(KERN_ERR PFX "tg3_stop_block timed out, "
5359 "ofs=%lx enable_bit=%x\n",
5360 ofs, enable_bit);
5361 return -ENODEV;
5362 }
5363
5364 return 0;
5365}
5366
5367/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07005368static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369{
5370 int i, err;
5371
5372 tg3_disable_ints(tp);
5373
5374 tp->rx_mode &= ~RX_MODE_ENABLE;
5375 tw32_f(MAC_RX_MODE, tp->rx_mode);
5376 udelay(10);
5377
David S. Millerb3b7d6b2005-05-05 14:40:20 -07005378 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
5379 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
5380 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
5381 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
5382 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
5383 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384
David S. Millerb3b7d6b2005-05-05 14:40:20 -07005385 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
5386 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
5387 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
5388 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
5389 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
5390 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
5391 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392
5393 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
5394 tw32_f(MAC_MODE, tp->mac_mode);
5395 udelay(40);
5396
5397 tp->tx_mode &= ~TX_MODE_ENABLE;
5398 tw32_f(MAC_TX_MODE, tp->tx_mode);
5399
5400 for (i = 0; i < MAX_WAIT_CNT; i++) {
5401 udelay(100);
5402 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
5403 break;
5404 }
5405 if (i >= MAX_WAIT_CNT) {
5406 printk(KERN_ERR PFX "tg3_abort_hw timed out for %s, "
5407 "TX_MODE_ENABLE will not clear MAC_TX_MODE=%08x\n",
5408 tp->dev->name, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07005409 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410 }
5411
Michael Chane6de8ad2005-05-05 14:42:41 -07005412 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07005413 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
5414 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415
5416 tw32(FTQ_RESET, 0xffffffff);
5417 tw32(FTQ_RESET, 0x00000000);
5418
David S. Millerb3b7d6b2005-05-05 14:40:20 -07005419 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
5420 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421
5422 if (tp->hw_status)
5423 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
5424 if (tp->hw_stats)
5425 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
5426
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 return err;
5428}
5429
5430/* tp->lock is held. */
5431static int tg3_nvram_lock(struct tg3 *tp)
5432{
5433 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
5434 int i;
5435
Michael Chanec41c7d2006-01-17 02:40:55 -08005436 if (tp->nvram_lock_cnt == 0) {
5437 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
5438 for (i = 0; i < 8000; i++) {
5439 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
5440 break;
5441 udelay(20);
5442 }
5443 if (i == 8000) {
5444 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
5445 return -ENODEV;
5446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447 }
Michael Chanec41c7d2006-01-17 02:40:55 -08005448 tp->nvram_lock_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 }
5450 return 0;
5451}
5452
5453/* tp->lock is held. */
5454static void tg3_nvram_unlock(struct tg3 *tp)
5455{
Michael Chanec41c7d2006-01-17 02:40:55 -08005456 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
5457 if (tp->nvram_lock_cnt > 0)
5458 tp->nvram_lock_cnt--;
5459 if (tp->nvram_lock_cnt == 0)
5460 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
5461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462}
5463
5464/* tp->lock is held. */
Michael Chane6af3012005-04-21 17:12:05 -07005465static void tg3_enable_nvram_access(struct tg3 *tp)
5466{
5467 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
5468 !(tp->tg3_flags2 & TG3_FLG2_PROTECTED_NVRAM)) {
5469 u32 nvaccess = tr32(NVRAM_ACCESS);
5470
5471 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
5472 }
5473}
5474
5475/* tp->lock is held. */
5476static void tg3_disable_nvram_access(struct tg3 *tp)
5477{
5478 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
5479 !(tp->tg3_flags2 & TG3_FLG2_PROTECTED_NVRAM)) {
5480 u32 nvaccess = tr32(NVRAM_ACCESS);
5481
5482 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
5483 }
5484}
5485
Matt Carlson0d3031d2007-10-10 18:02:43 -07005486static void tg3_ape_send_event(struct tg3 *tp, u32 event)
5487{
5488 int i;
5489 u32 apedata;
5490
5491 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
5492 if (apedata != APE_SEG_SIG_MAGIC)
5493 return;
5494
5495 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
5496 if (apedata != APE_FW_STATUS_READY)
5497 return;
5498
5499 /* Wait for up to 1 millisecond for APE to service previous event. */
5500 for (i = 0; i < 10; i++) {
5501 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
5502 return;
5503
5504 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
5505
5506 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
5507 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
5508 event | APE_EVENT_STATUS_EVENT_PENDING);
5509
5510 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
5511
5512 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
5513 break;
5514
5515 udelay(100);
5516 }
5517
5518 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
5519 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
5520}
5521
5522static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
5523{
5524 u32 event;
5525 u32 apedata;
5526
5527 if (!(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
5528 return;
5529
5530 switch (kind) {
5531 case RESET_KIND_INIT:
5532 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
5533 APE_HOST_SEG_SIG_MAGIC);
5534 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
5535 APE_HOST_SEG_LEN_MAGIC);
5536 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
5537 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
5538 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
5539 APE_HOST_DRIVER_ID_MAGIC);
5540 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
5541 APE_HOST_BEHAV_NO_PHYLOCK);
5542
5543 event = APE_EVENT_STATUS_STATE_START;
5544 break;
5545 case RESET_KIND_SHUTDOWN:
5546 event = APE_EVENT_STATUS_STATE_UNLOAD;
5547 break;
5548 case RESET_KIND_SUSPEND:
5549 event = APE_EVENT_STATUS_STATE_SUSPEND;
5550 break;
5551 default:
5552 return;
5553 }
5554
5555 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
5556
5557 tg3_ape_send_event(tp, event);
5558}
5559
Michael Chane6af3012005-04-21 17:12:05 -07005560/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
5562{
David S. Millerf49639e2006-06-09 11:58:36 -07005563 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
5564 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565
5566 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
5567 switch (kind) {
5568 case RESET_KIND_INIT:
5569 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5570 DRV_STATE_START);
5571 break;
5572
5573 case RESET_KIND_SHUTDOWN:
5574 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5575 DRV_STATE_UNLOAD);
5576 break;
5577
5578 case RESET_KIND_SUSPEND:
5579 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5580 DRV_STATE_SUSPEND);
5581 break;
5582
5583 default:
5584 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07005587
5588 if (kind == RESET_KIND_INIT ||
5589 kind == RESET_KIND_SUSPEND)
5590 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591}
5592
5593/* tp->lock is held. */
5594static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
5595{
5596 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
5597 switch (kind) {
5598 case RESET_KIND_INIT:
5599 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5600 DRV_STATE_START_DONE);
5601 break;
5602
5603 case RESET_KIND_SHUTDOWN:
5604 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5605 DRV_STATE_UNLOAD_DONE);
5606 break;
5607
5608 default:
5609 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07005612
5613 if (kind == RESET_KIND_SHUTDOWN)
5614 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615}
5616
5617/* tp->lock is held. */
5618static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
5619{
5620 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
5621 switch (kind) {
5622 case RESET_KIND_INIT:
5623 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5624 DRV_STATE_START);
5625 break;
5626
5627 case RESET_KIND_SHUTDOWN:
5628 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5629 DRV_STATE_UNLOAD);
5630 break;
5631
5632 case RESET_KIND_SUSPEND:
5633 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
5634 DRV_STATE_SUSPEND);
5635 break;
5636
5637 default:
5638 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640 }
5641}
5642
Michael Chan7a6f4362006-09-27 16:03:31 -07005643static int tg3_poll_fw(struct tg3 *tp)
5644{
5645 int i;
5646 u32 val;
5647
Michael Chanb5d37722006-09-27 16:06:21 -07005648 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08005649 /* Wait up to 20ms for init done. */
5650 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07005651 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
5652 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08005653 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07005654 }
5655 return -ENODEV;
5656 }
5657
Michael Chan7a6f4362006-09-27 16:03:31 -07005658 /* Wait for firmware initialization to complete. */
5659 for (i = 0; i < 100000; i++) {
5660 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
5661 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
5662 break;
5663 udelay(10);
5664 }
5665
5666 /* Chip might not be fitted with firmware. Some Sun onboard
5667 * parts are configured like that. So don't signal the timeout
5668 * of the above loop as an error, but do report the lack of
5669 * running firmware once.
5670 */
5671 if (i >= 100000 &&
5672 !(tp->tg3_flags2 & TG3_FLG2_NO_FWARE_REPORTED)) {
5673 tp->tg3_flags2 |= TG3_FLG2_NO_FWARE_REPORTED;
5674
5675 printk(KERN_INFO PFX "%s: No firmware running.\n",
5676 tp->dev->name);
5677 }
5678
5679 return 0;
5680}
5681
Michael Chanee6a99b2007-07-18 21:49:10 -07005682/* Save PCI command register before chip reset */
5683static void tg3_save_pci_state(struct tg3 *tp)
5684{
Matt Carlson8a6eac92007-10-21 16:17:55 -07005685 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07005686}
5687
5688/* Restore PCI state after chip reset */
5689static void tg3_restore_pci_state(struct tg3 *tp)
5690{
5691 u32 val;
5692
5693 /* Re-enable indirect register accesses. */
5694 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
5695 tp->misc_host_ctrl);
5696
5697 /* Set MAX PCI retry to zero. */
5698 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
5699 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
5700 (tp->tg3_flags & TG3_FLAG_PCIX_MODE))
5701 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07005702 /* Allow reads and writes to the APE register and memory space. */
5703 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
5704 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
5705 PCISTATE_ALLOW_APE_SHMEM_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07005706 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
5707
Matt Carlson8a6eac92007-10-21 16:17:55 -07005708 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07005709
Matt Carlson5f5c51e2007-11-12 21:19:37 -08005710 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
5711 pcie_set_readrq(tp->pdev, 4096);
5712 else {
Michael Chan114342f2007-10-15 02:12:26 -07005713 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
5714 tp->pci_cacheline_sz);
5715 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
5716 tp->pci_lat_timer);
5717 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08005718
Michael Chanee6a99b2007-07-18 21:49:10 -07005719 /* Make sure PCI-X relaxed ordering bit is clear. */
Matt Carlson9974a352007-10-07 23:27:28 -07005720 if (tp->pcix_cap) {
5721 u16 pcix_cmd;
5722
5723 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
5724 &pcix_cmd);
5725 pcix_cmd &= ~PCI_X_CMD_ERO;
5726 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
5727 pcix_cmd);
5728 }
Michael Chanee6a99b2007-07-18 21:49:10 -07005729
5730 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS) {
Michael Chanee6a99b2007-07-18 21:49:10 -07005731
5732 /* Chip reset on 5780 will reset MSI enable bit,
5733 * so need to restore it.
5734 */
5735 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
5736 u16 ctrl;
5737
5738 pci_read_config_word(tp->pdev,
5739 tp->msi_cap + PCI_MSI_FLAGS,
5740 &ctrl);
5741 pci_write_config_word(tp->pdev,
5742 tp->msi_cap + PCI_MSI_FLAGS,
5743 ctrl | PCI_MSI_FLAGS_ENABLE);
5744 val = tr32(MSGINT_MODE);
5745 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
5746 }
5747 }
5748}
5749
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750static void tg3_stop_fw(struct tg3 *);
5751
5752/* tp->lock is held. */
5753static int tg3_chip_reset(struct tg3 *tp)
5754{
5755 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07005756 void (*write_op)(struct tg3 *, u32, u32);
Michael Chan7a6f4362006-09-27 16:03:31 -07005757 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758
David S. Millerf49639e2006-06-09 11:58:36 -07005759 tg3_nvram_lock(tp);
5760
Matt Carlson158d7ab2008-05-29 01:37:54 -07005761 tg3_mdio_stop(tp);
5762
David S. Millerf49639e2006-06-09 11:58:36 -07005763 /* No matching tg3_nvram_unlock() after this because
5764 * chip reset below will undo the nvram lock.
5765 */
5766 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767
Michael Chanee6a99b2007-07-18 21:49:10 -07005768 /* GRC_MISC_CFG core clock reset will clear the memory
5769 * enable bit in PCI register 4 and the MSI enable bit
5770 * on some chips, so we save relevant registers here.
5771 */
5772 tg3_save_pci_state(tp);
5773
Michael Chand9ab5ad2006-03-20 22:27:35 -08005774 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanaf36e6b2006-03-23 01:28:06 -08005775 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -07005776 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -07005777 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -07005778 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
5779 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chand9ab5ad2006-03-20 22:27:35 -08005780 tw32(GRC_FASTBOOT_PC, 0);
5781
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 /*
5783 * We must avoid the readl() that normally takes place.
5784 * It locks machines, causes machine checks, and other
5785 * fun things. So, temporarily disable the 5701
5786 * hardware workaround, while we do the reset.
5787 */
Michael Chan1ee582d2005-08-09 20:16:46 -07005788 write_op = tp->write32;
5789 if (write_op == tg3_write_flush_reg32)
5790 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791
Michael Chand18edcb2007-03-24 20:57:11 -07005792 /* Prevent the irq handler from reading or writing PCI registers
5793 * during chip reset when the memory enable bit in the PCI command
5794 * register may be cleared. The chip does not generate interrupt
5795 * at this time, but the irq handler may still be called due to irq
5796 * sharing or irqpoll.
5797 */
5798 tp->tg3_flags |= TG3_FLAG_CHIP_RESETTING;
Michael Chanb8fa2f32007-04-06 17:35:37 -07005799 if (tp->hw_status) {
5800 tp->hw_status->status = 0;
5801 tp->hw_status->status_tag = 0;
5802 }
Michael Chand18edcb2007-03-24 20:57:11 -07005803 tp->last_tag = 0;
5804 smp_mb();
5805 synchronize_irq(tp->pdev->irq);
5806
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807 /* do the reset */
5808 val = GRC_MISC_CFG_CORECLK_RESET;
5809
5810 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
5811 if (tr32(0x7e2c) == 0x60) {
5812 tw32(0x7e2c, 0x20);
5813 }
5814 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
5815 tw32(GRC_MISC_CFG, (1 << 29));
5816 val |= (1 << 29);
5817 }
5818 }
5819
Michael Chanb5d37722006-09-27 16:06:21 -07005820 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
5821 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
5822 tw32(GRC_VCPU_EXT_CTRL,
5823 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
5824 }
5825
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
5827 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
5828 tw32(GRC_MISC_CFG, val);
5829
Michael Chan1ee582d2005-08-09 20:16:46 -07005830 /* restore 5701 hardware bug workaround write method */
5831 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832
5833 /* Unfortunately, we have to delay before the PCI read back.
5834 * Some 575X chips even will not respond to a PCI cfg access
5835 * when the reset command is given to the chip.
5836 *
5837 * How do these hardware designers expect things to work
5838 * properly if the PCI write is posted for a long period
5839 * of time? It is always necessary to have some method by
5840 * which a register read back can occur to push the write
5841 * out which does the reset.
5842 *
5843 * For most tg3 variants the trick below was working.
5844 * Ho hum...
5845 */
5846 udelay(120);
5847
5848 /* Flush PCI posted writes. The normal MMIO registers
5849 * are inaccessible at this time so this is the only
5850 * way to make this reliably (actually, this is no longer
5851 * the case, see above). I tried to use indirect
5852 * register read/write but this upset some 5701 variants.
5853 */
5854 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
5855
5856 udelay(120);
5857
5858 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
5859 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
5860 int i;
5861 u32 cfg_val;
5862
5863 /* Wait for link training to complete. */
5864 for (i = 0; i < 5000; i++)
5865 udelay(100);
5866
5867 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
5868 pci_write_config_dword(tp->pdev, 0xc4,
5869 cfg_val | (1 << 15));
5870 }
5871 /* Set PCIE max payload size and clear error status. */
5872 pci_write_config_dword(tp->pdev, 0xd8, 0xf5000);
5873 }
5874
Michael Chanee6a99b2007-07-18 21:49:10 -07005875 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876
Michael Chand18edcb2007-03-24 20:57:11 -07005877 tp->tg3_flags &= ~TG3_FLAG_CHIP_RESETTING;
5878
Michael Chanee6a99b2007-07-18 21:49:10 -07005879 val = 0;
5880 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chan4cf78e42005-07-25 12:29:19 -07005881 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07005882 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883
5884 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
5885 tg3_stop_fw(tp);
5886 tw32(0x5000, 0x400);
5887 }
5888
5889 tw32(GRC_MODE, tp->grc_mode);
5890
5891 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01005892 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893
5894 tw32(0xc4, val | (1 << 15));
5895 }
5896
5897 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
5898 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
5899 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
5900 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
5901 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
5902 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
5903 }
5904
5905 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
5906 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
5907 tw32_f(MAC_MODE, tp->mac_mode);
Michael Chan747e8f82005-07-25 12:33:22 -07005908 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
5909 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
5910 tw32_f(MAC_MODE, tp->mac_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911 } else
5912 tw32_f(MAC_MODE, 0);
5913 udelay(40);
5914
Matt Carlson158d7ab2008-05-29 01:37:54 -07005915 tg3_mdio_start(tp);
5916
Michael Chan7a6f4362006-09-27 16:03:31 -07005917 err = tg3_poll_fw(tp);
5918 if (err)
5919 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920
5921 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
5922 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01005923 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924
5925 tw32(0x7c00, val | (1 << 25));
5926 }
5927
5928 /* Reprobe ASF enable state. */
5929 tp->tg3_flags &= ~TG3_FLAG_ENABLE_ASF;
5930 tp->tg3_flags2 &= ~TG3_FLG2_ASF_NEW_HANDSHAKE;
5931 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
5932 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
5933 u32 nic_cfg;
5934
5935 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
5936 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
5937 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
John W. Linvillecbf46852005-04-21 17:01:29 -07005938 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
5940 }
5941 }
5942
5943 return 0;
5944}
5945
5946/* tp->lock is held. */
5947static void tg3_stop_fw(struct tg3 *tp)
5948{
Matt Carlson0d3031d2007-10-10 18:02:43 -07005949 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) &&
5950 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951 u32 val;
Matt Carlson7c5026a2008-05-02 16:49:29 -07005952
5953 /* Wait for RX cpu to ACK the previous event. */
5954 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955
5956 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
5957 val = tr32(GRC_RX_CPU_EVENT);
Matt Carlson7c5026a2008-05-02 16:49:29 -07005958 val |= GRC_RX_CPU_DRIVER_EVENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959 tw32(GRC_RX_CPU_EVENT, val);
5960
Matt Carlson7c5026a2008-05-02 16:49:29 -07005961 /* Wait for RX cpu to ACK this event. */
5962 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963 }
5964}
5965
5966/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07005967static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968{
5969 int err;
5970
5971 tg3_stop_fw(tp);
5972
Michael Chan944d9802005-05-29 14:57:48 -07005973 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974
David S. Millerb3b7d6b2005-05-05 14:40:20 -07005975 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976 err = tg3_chip_reset(tp);
5977
Michael Chan944d9802005-05-29 14:57:48 -07005978 tg3_write_sig_legacy(tp, kind);
5979 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980
5981 if (err)
5982 return err;
5983
5984 return 0;
5985}
5986
5987#define TG3_FW_RELEASE_MAJOR 0x0
5988#define TG3_FW_RELASE_MINOR 0x0
5989#define TG3_FW_RELEASE_FIX 0x0
5990#define TG3_FW_START_ADDR 0x08000000
5991#define TG3_FW_TEXT_ADDR 0x08000000
5992#define TG3_FW_TEXT_LEN 0x9c0
5993#define TG3_FW_RODATA_ADDR 0x080009c0
5994#define TG3_FW_RODATA_LEN 0x60
5995#define TG3_FW_DATA_ADDR 0x08000a40
5996#define TG3_FW_DATA_LEN 0x20
5997#define TG3_FW_SBSS_ADDR 0x08000a60
5998#define TG3_FW_SBSS_LEN 0xc
5999#define TG3_FW_BSS_ADDR 0x08000a70
6000#define TG3_FW_BSS_LEN 0x10
6001
Andreas Mohr50da8592006-08-14 23:54:30 -07006002static const u32 tg3FwText[(TG3_FW_TEXT_LEN / sizeof(u32)) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003 0x00000000, 0x10000003, 0x00000000, 0x0000000d, 0x0000000d, 0x3c1d0800,
6004 0x37bd3ffc, 0x03a0f021, 0x3c100800, 0x26100000, 0x0e000018, 0x00000000,
6005 0x0000000d, 0x3c1d0800, 0x37bd3ffc, 0x03a0f021, 0x3c100800, 0x26100034,
6006 0x0e00021c, 0x00000000, 0x0000000d, 0x00000000, 0x00000000, 0x00000000,
6007 0x27bdffe0, 0x3c1cc000, 0xafbf0018, 0xaf80680c, 0x0e00004c, 0x241b2105,
6008 0x97850000, 0x97870002, 0x9782002c, 0x9783002e, 0x3c040800, 0x248409c0,
6009 0xafa00014, 0x00021400, 0x00621825, 0x00052c00, 0xafa30010, 0x8f860010,
6010 0x00e52825, 0x0e000060, 0x24070102, 0x3c02ac00, 0x34420100, 0x3c03ac01,
6011 0x34630100, 0xaf820490, 0x3c02ffff, 0xaf820494, 0xaf830498, 0xaf82049c,
6012 0x24020001, 0xaf825ce0, 0x0e00003f, 0xaf825d00, 0x0e000140, 0x00000000,
6013 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x2402ffff, 0xaf825404, 0x8f835400,
6014 0x34630400, 0xaf835400, 0xaf825404, 0x3c020800, 0x24420034, 0xaf82541c,
6015 0x03e00008, 0xaf805400, 0x00000000, 0x00000000, 0x3c020800, 0x34423000,
6016 0x3c030800, 0x34633000, 0x3c040800, 0x348437ff, 0x3c010800, 0xac220a64,
6017 0x24020040, 0x3c010800, 0xac220a68, 0x3c010800, 0xac200a60, 0xac600000,
6018 0x24630004, 0x0083102b, 0x5040fffd, 0xac600000, 0x03e00008, 0x00000000,
6019 0x00804821, 0x8faa0010, 0x3c020800, 0x8c420a60, 0x3c040800, 0x8c840a68,
6020 0x8fab0014, 0x24430001, 0x0044102b, 0x3c010800, 0xac230a60, 0x14400003,
6021 0x00004021, 0x3c010800, 0xac200a60, 0x3c020800, 0x8c420a60, 0x3c030800,
6022 0x8c630a64, 0x91240000, 0x00021140, 0x00431021, 0x00481021, 0x25080001,
6023 0xa0440000, 0x29020008, 0x1440fff4, 0x25290001, 0x3c020800, 0x8c420a60,
6024 0x3c030800, 0x8c630a64, 0x8f84680c, 0x00021140, 0x00431021, 0xac440008,
6025 0xac45000c, 0xac460010, 0xac470014, 0xac4a0018, 0x03e00008, 0xac4b001c,
6026 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6027 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6028 0, 0, 0, 0, 0, 0,
6029 0x02000008, 0x00000000, 0x0a0001e3, 0x3c0a0001, 0x0a0001e3, 0x3c0a0002,
6030 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
6031 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
6032 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
6033 0x0a0001e3, 0x3c0a0007, 0x0a0001e3, 0x3c0a0008, 0x0a0001e3, 0x3c0a0009,
6034 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x3c0a000b,
6035 0x0a0001e3, 0x3c0a000c, 0x0a0001e3, 0x3c0a000d, 0x0a0001e3, 0x00000000,
6036 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x3c0a000e, 0x0a0001e3, 0x00000000,
6037 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
6038 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
6039 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x3c0a0013, 0x0a0001e3, 0x3c0a0014,
6040 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6041 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6042 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6043 0x27bdffe0, 0x00001821, 0x00001021, 0xafbf0018, 0xafb10014, 0xafb00010,
6044 0x3c010800, 0x00220821, 0xac200a70, 0x3c010800, 0x00220821, 0xac200a74,
6045 0x3c010800, 0x00220821, 0xac200a78, 0x24630001, 0x1860fff5, 0x2442000c,
6046 0x24110001, 0x8f906810, 0x32020004, 0x14400005, 0x24040001, 0x3c020800,
6047 0x8c420a78, 0x18400003, 0x00002021, 0x0e000182, 0x00000000, 0x32020001,
6048 0x10400003, 0x00000000, 0x0e000169, 0x00000000, 0x0a000153, 0xaf915028,
6049 0x8fbf0018, 0x8fb10014, 0x8fb00010, 0x03e00008, 0x27bd0020, 0x3c050800,
6050 0x8ca50a70, 0x3c060800, 0x8cc60a80, 0x3c070800, 0x8ce70a78, 0x27bdffe0,
6051 0x3c040800, 0x248409d0, 0xafbf0018, 0xafa00010, 0x0e000060, 0xafa00014,
6052 0x0e00017b, 0x00002021, 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x24020001,
6053 0x8f836810, 0x00821004, 0x00021027, 0x00621824, 0x03e00008, 0xaf836810,
6054 0x27bdffd8, 0xafbf0024, 0x1080002e, 0xafb00020, 0x8f825cec, 0xafa20018,
6055 0x8f825cec, 0x3c100800, 0x26100a78, 0xafa2001c, 0x34028000, 0xaf825cec,
6056 0x8e020000, 0x18400016, 0x00000000, 0x3c020800, 0x94420a74, 0x8fa3001c,
6057 0x000221c0, 0xac830004, 0x8fa2001c, 0x3c010800, 0x0e000201, 0xac220a74,
6058 0x10400005, 0x00000000, 0x8e020000, 0x24420001, 0x0a0001df, 0xae020000,
6059 0x3c020800, 0x8c420a70, 0x00021c02, 0x000321c0, 0x0a0001c5, 0xafa2001c,
6060 0x0e000201, 0x00000000, 0x1040001f, 0x00000000, 0x8e020000, 0x8fa3001c,
6061 0x24420001, 0x3c010800, 0xac230a70, 0x3c010800, 0xac230a74, 0x0a0001df,
6062 0xae020000, 0x3c100800, 0x26100a78, 0x8e020000, 0x18400028, 0x00000000,
6063 0x0e000201, 0x00000000, 0x14400024, 0x00000000, 0x8e020000, 0x3c030800,
6064 0x8c630a70, 0x2442ffff, 0xafa3001c, 0x18400006, 0xae020000, 0x00031402,
6065 0x000221c0, 0x8c820004, 0x3c010800, 0xac220a70, 0x97a2001e, 0x2442ff00,
6066 0x2c420300, 0x1440000b, 0x24024000, 0x3c040800, 0x248409dc, 0xafa00010,
6067 0xafa00014, 0x8fa6001c, 0x24050008, 0x0e000060, 0x00003821, 0x0a0001df,
6068 0x00000000, 0xaf825cf8, 0x3c020800, 0x8c420a40, 0x8fa3001c, 0x24420001,
6069 0xaf835cf8, 0x3c010800, 0xac220a40, 0x8fbf0024, 0x8fb00020, 0x03e00008,
6070 0x27bd0028, 0x27bdffe0, 0x3c040800, 0x248409e8, 0x00002821, 0x00003021,
6071 0x00003821, 0xafbf0018, 0xafa00010, 0x0e000060, 0xafa00014, 0x8fbf0018,
6072 0x03e00008, 0x27bd0020, 0x8f82680c, 0x8f85680c, 0x00021827, 0x0003182b,
6073 0x00031823, 0x00431024, 0x00441021, 0x00a2282b, 0x10a00006, 0x00000000,
6074 0x00401821, 0x8f82680c, 0x0043102b, 0x1440fffd, 0x00000000, 0x03e00008,
6075 0x00000000, 0x3c040800, 0x8c840000, 0x3c030800, 0x8c630a40, 0x0064102b,
6076 0x54400002, 0x00831023, 0x00641023, 0x2c420008, 0x03e00008, 0x38420001,
6077 0x27bdffe0, 0x00802821, 0x3c040800, 0x24840a00, 0x00003021, 0x00003821,
6078 0xafbf0018, 0xafa00010, 0x0e000060, 0xafa00014, 0x0a000216, 0x00000000,
6079 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x00000000, 0x27bdffe0, 0x3c1cc000,
6080 0xafbf0018, 0x0e00004c, 0xaf80680c, 0x3c040800, 0x24840a10, 0x03802821,
6081 0x00003021, 0x00003821, 0xafa00010, 0x0e000060, 0xafa00014, 0x2402ffff,
6082 0xaf825404, 0x3c0200aa, 0x0e000234, 0xaf825434, 0x8fbf0018, 0x03e00008,
6083 0x27bd0020, 0x00000000, 0x00000000, 0x00000000, 0x27bdffe8, 0xafb00010,
6084 0x24100001, 0xafbf0014, 0x3c01c003, 0xac200000, 0x8f826810, 0x30422000,
6085 0x10400003, 0x00000000, 0x0e000246, 0x00000000, 0x0a00023a, 0xaf905428,
6086 0x8fbf0014, 0x8fb00010, 0x03e00008, 0x27bd0018, 0x27bdfff8, 0x8f845d0c,
6087 0x3c0200ff, 0x3c030800, 0x8c630a50, 0x3442fff8, 0x00821024, 0x1043001e,
6088 0x3c0500ff, 0x34a5fff8, 0x3c06c003, 0x3c074000, 0x00851824, 0x8c620010,
6089 0x3c010800, 0xac230a50, 0x30420008, 0x10400005, 0x00871025, 0x8cc20000,
6090 0x24420001, 0xacc20000, 0x00871025, 0xaf825d0c, 0x8fa20000, 0x24420001,
6091 0xafa20000, 0x8fa20000, 0x8fa20000, 0x24420001, 0xafa20000, 0x8fa20000,
6092 0x8f845d0c, 0x3c030800, 0x8c630a50, 0x00851024, 0x1443ffe8, 0x00851824,
6093 0x27bd0008, 0x03e00008, 0x00000000, 0x00000000, 0x00000000
6094};
6095
Andreas Mohr50da8592006-08-14 23:54:30 -07006096static const u32 tg3FwRodata[(TG3_FW_RODATA_LEN / sizeof(u32)) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097 0x35373031, 0x726c7341, 0x00000000, 0x00000000, 0x53774576, 0x656e7430,
6098 0x00000000, 0x726c7045, 0x76656e74, 0x31000000, 0x556e6b6e, 0x45766e74,
6099 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x66617461, 0x6c457272,
6100 0x00000000, 0x00000000, 0x4d61696e, 0x43707542, 0x00000000, 0x00000000,
6101 0x00000000
6102};
6103
6104#if 0 /* All zeros, don't eat up space with it. */
6105u32 tg3FwData[(TG3_FW_DATA_LEN / sizeof(u32)) + 1] = {
6106 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
6107 0x00000000, 0x00000000, 0x00000000, 0x00000000
6108};
6109#endif
6110
6111#define RX_CPU_SCRATCH_BASE 0x30000
6112#define RX_CPU_SCRATCH_SIZE 0x04000
6113#define TX_CPU_SCRATCH_BASE 0x34000
6114#define TX_CPU_SCRATCH_SIZE 0x04000
6115
6116/* tp->lock is held. */
6117static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
6118{
6119 int i;
6120
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02006121 BUG_ON(offset == TX_CPU_BASE &&
6122 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123
Michael Chanb5d37722006-09-27 16:06:21 -07006124 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
6125 u32 val = tr32(GRC_VCPU_EXT_CTRL);
6126
6127 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
6128 return 0;
6129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 if (offset == RX_CPU_BASE) {
6131 for (i = 0; i < 10000; i++) {
6132 tw32(offset + CPU_STATE, 0xffffffff);
6133 tw32(offset + CPU_MODE, CPU_MODE_HALT);
6134 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
6135 break;
6136 }
6137
6138 tw32(offset + CPU_STATE, 0xffffffff);
6139 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
6140 udelay(10);
6141 } else {
6142 for (i = 0; i < 10000; i++) {
6143 tw32(offset + CPU_STATE, 0xffffffff);
6144 tw32(offset + CPU_MODE, CPU_MODE_HALT);
6145 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
6146 break;
6147 }
6148 }
6149
6150 if (i >= 10000) {
6151 printk(KERN_ERR PFX "tg3_reset_cpu timed out for %s, "
6152 "and %s CPU\n",
6153 tp->dev->name,
6154 (offset == RX_CPU_BASE ? "RX" : "TX"));
6155 return -ENODEV;
6156 }
Michael Chanec41c7d2006-01-17 02:40:55 -08006157
6158 /* Clear firmware's nvram arbitration. */
6159 if (tp->tg3_flags & TG3_FLAG_NVRAM)
6160 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161 return 0;
6162}
6163
6164struct fw_info {
6165 unsigned int text_base;
6166 unsigned int text_len;
Andreas Mohr50da8592006-08-14 23:54:30 -07006167 const u32 *text_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168 unsigned int rodata_base;
6169 unsigned int rodata_len;
Andreas Mohr50da8592006-08-14 23:54:30 -07006170 const u32 *rodata_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171 unsigned int data_base;
6172 unsigned int data_len;
Andreas Mohr50da8592006-08-14 23:54:30 -07006173 const u32 *data_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174};
6175
6176/* tp->lock is held. */
6177static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
6178 int cpu_scratch_size, struct fw_info *info)
6179{
Michael Chanec41c7d2006-01-17 02:40:55 -08006180 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181 void (*write_op)(struct tg3 *, u32, u32);
6182
6183 if (cpu_base == TX_CPU_BASE &&
6184 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
6185 printk(KERN_ERR PFX "tg3_load_firmware_cpu: Trying to load "
6186 "TX cpu firmware on %s which is 5705.\n",
6187 tp->dev->name);
6188 return -EINVAL;
6189 }
6190
6191 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
6192 write_op = tg3_write_mem;
6193 else
6194 write_op = tg3_write_indirect_reg32;
6195
Michael Chan1b628152005-05-29 14:59:49 -07006196 /* It is possible that bootcode is still loading at this point.
6197 * Get the nvram lock first before halting the cpu.
6198 */
Michael Chanec41c7d2006-01-17 02:40:55 -08006199 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08006201 if (!lock_err)
6202 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203 if (err)
6204 goto out;
6205
6206 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
6207 write_op(tp, cpu_scratch_base + i, 0);
6208 tw32(cpu_base + CPU_STATE, 0xffffffff);
6209 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
6210 for (i = 0; i < (info->text_len / sizeof(u32)); i++)
6211 write_op(tp, (cpu_scratch_base +
6212 (info->text_base & 0xffff) +
6213 (i * sizeof(u32))),
6214 (info->text_data ?
6215 info->text_data[i] : 0));
6216 for (i = 0; i < (info->rodata_len / sizeof(u32)); i++)
6217 write_op(tp, (cpu_scratch_base +
6218 (info->rodata_base & 0xffff) +
6219 (i * sizeof(u32))),
6220 (info->rodata_data ?
6221 info->rodata_data[i] : 0));
6222 for (i = 0; i < (info->data_len / sizeof(u32)); i++)
6223 write_op(tp, (cpu_scratch_base +
6224 (info->data_base & 0xffff) +
6225 (i * sizeof(u32))),
6226 (info->data_data ?
6227 info->data_data[i] : 0));
6228
6229 err = 0;
6230
6231out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232 return err;
6233}
6234
6235/* tp->lock is held. */
6236static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
6237{
6238 struct fw_info info;
6239 int err, i;
6240
6241 info.text_base = TG3_FW_TEXT_ADDR;
6242 info.text_len = TG3_FW_TEXT_LEN;
6243 info.text_data = &tg3FwText[0];
6244 info.rodata_base = TG3_FW_RODATA_ADDR;
6245 info.rodata_len = TG3_FW_RODATA_LEN;
6246 info.rodata_data = &tg3FwRodata[0];
6247 info.data_base = TG3_FW_DATA_ADDR;
6248 info.data_len = TG3_FW_DATA_LEN;
6249 info.data_data = NULL;
6250
6251 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
6252 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
6253 &info);
6254 if (err)
6255 return err;
6256
6257 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
6258 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
6259 &info);
6260 if (err)
6261 return err;
6262
6263 /* Now startup only the RX cpu. */
6264 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
6265 tw32_f(RX_CPU_BASE + CPU_PC, TG3_FW_TEXT_ADDR);
6266
6267 for (i = 0; i < 5; i++) {
6268 if (tr32(RX_CPU_BASE + CPU_PC) == TG3_FW_TEXT_ADDR)
6269 break;
6270 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
6271 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
6272 tw32_f(RX_CPU_BASE + CPU_PC, TG3_FW_TEXT_ADDR);
6273 udelay(1000);
6274 }
6275 if (i >= 5) {
6276 printk(KERN_ERR PFX "tg3_load_firmware fails for %s "
6277 "to set RX CPU PC, is %08x should be %08x\n",
6278 tp->dev->name, tr32(RX_CPU_BASE + CPU_PC),
6279 TG3_FW_TEXT_ADDR);
6280 return -ENODEV;
6281 }
6282 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
6283 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
6284
6285 return 0;
6286}
6287
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288
6289#define TG3_TSO_FW_RELEASE_MAJOR 0x1
6290#define TG3_TSO_FW_RELASE_MINOR 0x6
6291#define TG3_TSO_FW_RELEASE_FIX 0x0
6292#define TG3_TSO_FW_START_ADDR 0x08000000
6293#define TG3_TSO_FW_TEXT_ADDR 0x08000000
6294#define TG3_TSO_FW_TEXT_LEN 0x1aa0
6295#define TG3_TSO_FW_RODATA_ADDR 0x08001aa0
6296#define TG3_TSO_FW_RODATA_LEN 0x60
6297#define TG3_TSO_FW_DATA_ADDR 0x08001b20
6298#define TG3_TSO_FW_DATA_LEN 0x30
6299#define TG3_TSO_FW_SBSS_ADDR 0x08001b50
6300#define TG3_TSO_FW_SBSS_LEN 0x2c
6301#define TG3_TSO_FW_BSS_ADDR 0x08001b80
6302#define TG3_TSO_FW_BSS_LEN 0x894
6303
Andreas Mohr50da8592006-08-14 23:54:30 -07006304static const u32 tg3TsoFwText[(TG3_TSO_FW_TEXT_LEN / 4) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305 0x0e000003, 0x00000000, 0x08001b24, 0x00000000, 0x10000003, 0x00000000,
6306 0x0000000d, 0x0000000d, 0x3c1d0800, 0x37bd4000, 0x03a0f021, 0x3c100800,
6307 0x26100000, 0x0e000010, 0x00000000, 0x0000000d, 0x27bdffe0, 0x3c04fefe,
6308 0xafbf0018, 0x0e0005d8, 0x34840002, 0x0e000668, 0x00000000, 0x3c030800,
6309 0x90631b68, 0x24020002, 0x3c040800, 0x24841aac, 0x14620003, 0x24050001,
6310 0x3c040800, 0x24841aa0, 0x24060006, 0x00003821, 0xafa00010, 0x0e00067c,
6311 0xafa00014, 0x8f625c50, 0x34420001, 0xaf625c50, 0x8f625c90, 0x34420001,
6312 0xaf625c90, 0x2402ffff, 0x0e000034, 0xaf625404, 0x8fbf0018, 0x03e00008,
6313 0x27bd0020, 0x00000000, 0x00000000, 0x00000000, 0x27bdffe0, 0xafbf001c,
6314 0xafb20018, 0xafb10014, 0x0e00005b, 0xafb00010, 0x24120002, 0x24110001,
6315 0x8f706820, 0x32020100, 0x10400003, 0x00000000, 0x0e0000bb, 0x00000000,
6316 0x8f706820, 0x32022000, 0x10400004, 0x32020001, 0x0e0001f0, 0x24040001,
6317 0x32020001, 0x10400003, 0x00000000, 0x0e0000a3, 0x00000000, 0x3c020800,
6318 0x90421b98, 0x14520003, 0x00000000, 0x0e0004c0, 0x00000000, 0x0a00003c,
6319 0xaf715028, 0x8fbf001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x03e00008,
6320 0x27bd0020, 0x27bdffe0, 0x3c040800, 0x24841ac0, 0x00002821, 0x00003021,
6321 0x00003821, 0xafbf0018, 0xafa00010, 0x0e00067c, 0xafa00014, 0x3c040800,
6322 0x248423d8, 0xa4800000, 0x3c010800, 0xa0201b98, 0x3c010800, 0xac201b9c,
6323 0x3c010800, 0xac201ba0, 0x3c010800, 0xac201ba4, 0x3c010800, 0xac201bac,
6324 0x3c010800, 0xac201bb8, 0x3c010800, 0xac201bbc, 0x8f624434, 0x3c010800,
6325 0xac221b88, 0x8f624438, 0x3c010800, 0xac221b8c, 0x8f624410, 0xac80f7a8,
6326 0x3c010800, 0xac201b84, 0x3c010800, 0xac2023e0, 0x3c010800, 0xac2023c8,
6327 0x3c010800, 0xac2023cc, 0x3c010800, 0xac202400, 0x3c010800, 0xac221b90,
6328 0x8f620068, 0x24030007, 0x00021702, 0x10430005, 0x00000000, 0x8f620068,
6329 0x00021702, 0x14400004, 0x24020001, 0x3c010800, 0x0a000097, 0xac20240c,
6330 0xac820034, 0x3c040800, 0x24841acc, 0x3c050800, 0x8ca5240c, 0x00003021,
6331 0x00003821, 0xafa00010, 0x0e00067c, 0xafa00014, 0x8fbf0018, 0x03e00008,
6332 0x27bd0020, 0x27bdffe0, 0x3c040800, 0x24841ad8, 0x00002821, 0x00003021,
6333 0x00003821, 0xafbf0018, 0xafa00010, 0x0e00067c, 0xafa00014, 0x0e00005b,
6334 0x00000000, 0x0e0000b4, 0x00002021, 0x8fbf0018, 0x03e00008, 0x27bd0020,
6335 0x24020001, 0x8f636820, 0x00821004, 0x00021027, 0x00621824, 0x03e00008,
6336 0xaf636820, 0x27bdffd0, 0xafbf002c, 0xafb60028, 0xafb50024, 0xafb40020,
6337 0xafb3001c, 0xafb20018, 0xafb10014, 0xafb00010, 0x8f675c5c, 0x3c030800,
6338 0x24631bbc, 0x8c620000, 0x14470005, 0x3c0200ff, 0x3c020800, 0x90421b98,
6339 0x14400119, 0x3c0200ff, 0x3442fff8, 0x00e28824, 0xac670000, 0x00111902,
6340 0x306300ff, 0x30e20003, 0x000211c0, 0x00622825, 0x00a04021, 0x00071602,
6341 0x3c030800, 0x90631b98, 0x3044000f, 0x14600036, 0x00804821, 0x24020001,
6342 0x3c010800, 0xa0221b98, 0x00051100, 0x00821025, 0x3c010800, 0xac201b9c,
6343 0x3c010800, 0xac201ba0, 0x3c010800, 0xac201ba4, 0x3c010800, 0xac201bac,
6344 0x3c010800, 0xac201bb8, 0x3c010800, 0xac201bb0, 0x3c010800, 0xac201bb4,
6345 0x3c010800, 0xa42223d8, 0x9622000c, 0x30437fff, 0x3c010800, 0xa4222410,
6346 0x30428000, 0x3c010800, 0xa4231bc6, 0x10400005, 0x24020001, 0x3c010800,
6347 0xac2223f4, 0x0a000102, 0x2406003e, 0x24060036, 0x3c010800, 0xac2023f4,
6348 0x9622000a, 0x3c030800, 0x94631bc6, 0x3c010800, 0xac2023f0, 0x3c010800,
6349 0xac2023f8, 0x00021302, 0x00021080, 0x00c21021, 0x00621821, 0x3c010800,
6350 0xa42223d0, 0x3c010800, 0x0a000115, 0xa4231b96, 0x9622000c, 0x3c010800,
6351 0xa42223ec, 0x3c040800, 0x24841b9c, 0x8c820000, 0x00021100, 0x3c010800,
6352 0x00220821, 0xac311bc8, 0x8c820000, 0x00021100, 0x3c010800, 0x00220821,
6353 0xac271bcc, 0x8c820000, 0x25030001, 0x306601ff, 0x00021100, 0x3c010800,
6354 0x00220821, 0xac261bd0, 0x8c820000, 0x00021100, 0x3c010800, 0x00220821,
6355 0xac291bd4, 0x96230008, 0x3c020800, 0x8c421bac, 0x00432821, 0x3c010800,
6356 0xac251bac, 0x9622000a, 0x30420004, 0x14400018, 0x00061100, 0x8f630c14,
6357 0x3063000f, 0x2c620002, 0x1440000b, 0x3c02c000, 0x8f630c14, 0x3c020800,
6358 0x8c421b40, 0x3063000f, 0x24420001, 0x3c010800, 0xac221b40, 0x2c620002,
6359 0x1040fff7, 0x3c02c000, 0x00e21825, 0xaf635c5c, 0x8f625c50, 0x30420002,
6360 0x10400014, 0x00000000, 0x0a000147, 0x00000000, 0x3c030800, 0x8c631b80,
6361 0x3c040800, 0x94841b94, 0x01221025, 0x3c010800, 0xa42223da, 0x24020001,
6362 0x3c010800, 0xac221bb8, 0x24630001, 0x0085202a, 0x3c010800, 0x10800003,
6363 0xac231b80, 0x3c010800, 0xa4251b94, 0x3c060800, 0x24c61b9c, 0x8cc20000,
6364 0x24420001, 0xacc20000, 0x28420080, 0x14400005, 0x00000000, 0x0e000656,
6365 0x24040002, 0x0a0001e6, 0x00000000, 0x3c020800, 0x8c421bb8, 0x10400078,
6366 0x24020001, 0x3c050800, 0x90a51b98, 0x14a20072, 0x00000000, 0x3c150800,
6367 0x96b51b96, 0x3c040800, 0x8c841bac, 0x32a3ffff, 0x0083102a, 0x1440006c,
6368 0x00000000, 0x14830003, 0x00000000, 0x3c010800, 0xac2523f0, 0x1060005c,
6369 0x00009021, 0x24d60004, 0x0060a021, 0x24d30014, 0x8ec20000, 0x00028100,
6370 0x3c110800, 0x02308821, 0x0e000625, 0x8e311bc8, 0x00402821, 0x10a00054,
6371 0x00000000, 0x9628000a, 0x31020040, 0x10400005, 0x2407180c, 0x8e22000c,
6372 0x2407188c, 0x00021400, 0xaca20018, 0x3c030800, 0x00701821, 0x8c631bd0,
6373 0x3c020800, 0x00501021, 0x8c421bd4, 0x00031d00, 0x00021400, 0x00621825,
6374 0xaca30014, 0x8ec30004, 0x96220008, 0x00432023, 0x3242ffff, 0x3083ffff,
6375 0x00431021, 0x0282102a, 0x14400002, 0x02b23023, 0x00803021, 0x8e620000,
6376 0x30c4ffff, 0x00441021, 0xae620000, 0x8e220000, 0xaca20000, 0x8e220004,
6377 0x8e63fff4, 0x00431021, 0xaca20004, 0xa4a6000e, 0x8e62fff4, 0x00441021,
6378 0xae62fff4, 0x96230008, 0x0043102a, 0x14400005, 0x02469021, 0x8e62fff0,
6379 0xae60fff4, 0x24420001, 0xae62fff0, 0xaca00008, 0x3242ffff, 0x14540008,
6380 0x24020305, 0x31020080, 0x54400001, 0x34e70010, 0x24020905, 0xa4a2000c,
6381 0x0a0001cb, 0x34e70020, 0xa4a2000c, 0x3c020800, 0x8c4223f0, 0x10400003,
6382 0x3c024b65, 0x0a0001d3, 0x34427654, 0x3c02b49a, 0x344289ab, 0xaca2001c,
6383 0x30e2ffff, 0xaca20010, 0x0e0005a2, 0x00a02021, 0x3242ffff, 0x0054102b,
6384 0x1440ffa9, 0x00000000, 0x24020002, 0x3c010800, 0x0a0001e6, 0xa0221b98,
6385 0x8ec2083c, 0x24420001, 0x0a0001e6, 0xaec2083c, 0x0e0004c0, 0x00000000,
6386 0x8fbf002c, 0x8fb60028, 0x8fb50024, 0x8fb40020, 0x8fb3001c, 0x8fb20018,
6387 0x8fb10014, 0x8fb00010, 0x03e00008, 0x27bd0030, 0x27bdffd0, 0xafbf0028,
6388 0xafb30024, 0xafb20020, 0xafb1001c, 0xafb00018, 0x8f725c9c, 0x3c0200ff,
6389 0x3442fff8, 0x3c070800, 0x24e71bb4, 0x02428824, 0x9623000e, 0x8ce20000,
6390 0x00431021, 0xace20000, 0x8e220010, 0x30420020, 0x14400011, 0x00809821,
6391 0x0e00063b, 0x02202021, 0x3c02c000, 0x02421825, 0xaf635c9c, 0x8f625c90,
6392 0x30420002, 0x1040011e, 0x00000000, 0xaf635c9c, 0x8f625c90, 0x30420002,
6393 0x10400119, 0x00000000, 0x0a00020d, 0x00000000, 0x8e240008, 0x8e230014,
6394 0x00041402, 0x000231c0, 0x00031502, 0x304201ff, 0x2442ffff, 0x3042007f,
6395 0x00031942, 0x30637800, 0x00021100, 0x24424000, 0x00624821, 0x9522000a,
6396 0x3084ffff, 0x30420008, 0x104000b0, 0x000429c0, 0x3c020800, 0x8c422400,
6397 0x14400024, 0x24c50008, 0x94c20014, 0x3c010800, 0xa42223d0, 0x8cc40010,
6398 0x00041402, 0x3c010800, 0xa42223d2, 0x3c010800, 0xa42423d4, 0x94c2000e,
6399 0x3083ffff, 0x00431023, 0x3c010800, 0xac222408, 0x94c2001a, 0x3c010800,
6400 0xac262400, 0x3c010800, 0xac322404, 0x3c010800, 0xac2223fc, 0x3c02c000,
6401 0x02421825, 0xaf635c9c, 0x8f625c90, 0x30420002, 0x104000e5, 0x00000000,
6402 0xaf635c9c, 0x8f625c90, 0x30420002, 0x104000e0, 0x00000000, 0x0a000246,
6403 0x00000000, 0x94c2000e, 0x3c030800, 0x946323d4, 0x00434023, 0x3103ffff,
6404 0x2c620008, 0x1040001c, 0x00000000, 0x94c20014, 0x24420028, 0x00a22821,
6405 0x00031042, 0x1840000b, 0x00002021, 0x24e60848, 0x00403821, 0x94a30000,
6406 0x8cc20000, 0x24840001, 0x00431021, 0xacc20000, 0x0087102a, 0x1440fff9,
6407 0x24a50002, 0x31020001, 0x1040001f, 0x3c024000, 0x3c040800, 0x248423fc,
6408 0xa0a00001, 0x94a30000, 0x8c820000, 0x00431021, 0x0a000285, 0xac820000,
6409 0x8f626800, 0x3c030010, 0x00431024, 0x10400009, 0x00000000, 0x94c2001a,
6410 0x3c030800, 0x8c6323fc, 0x00431021, 0x3c010800, 0xac2223fc, 0x0a000286,
6411 0x3c024000, 0x94c2001a, 0x94c4001c, 0x3c030800, 0x8c6323fc, 0x00441023,
6412 0x00621821, 0x3c010800, 0xac2323fc, 0x3c024000, 0x02421825, 0xaf635c9c,
6413 0x8f625c90, 0x30420002, 0x1440fffc, 0x00000000, 0x9522000a, 0x30420010,
6414 0x1040009b, 0x00000000, 0x3c030800, 0x946323d4, 0x3c070800, 0x24e72400,
6415 0x8ce40000, 0x8f626800, 0x24630030, 0x00832821, 0x3c030010, 0x00431024,
6416 0x1440000a, 0x00000000, 0x94a20004, 0x3c040800, 0x8c842408, 0x3c030800,
6417 0x8c6323fc, 0x00441023, 0x00621821, 0x3c010800, 0xac2323fc, 0x3c040800,
6418 0x8c8423fc, 0x00041c02, 0x3082ffff, 0x00622021, 0x00041402, 0x00822021,
6419 0x00041027, 0xa4a20006, 0x3c030800, 0x8c632404, 0x3c0200ff, 0x3442fff8,
6420 0x00628824, 0x96220008, 0x24050001, 0x24034000, 0x000231c0, 0x00801021,
6421 0xa4c2001a, 0xa4c0001c, 0xace00000, 0x3c010800, 0xac251b60, 0xaf635cb8,
6422 0x8f625cb0, 0x30420002, 0x10400003, 0x00000000, 0x3c010800, 0xac201b60,
6423 0x8e220008, 0xaf625cb8, 0x8f625cb0, 0x30420002, 0x10400003, 0x00000000,
6424 0x3c010800, 0xac201b60, 0x3c020800, 0x8c421b60, 0x1040ffec, 0x00000000,
6425 0x3c040800, 0x0e00063b, 0x8c842404, 0x0a00032a, 0x00000000, 0x3c030800,
6426 0x90631b98, 0x24020002, 0x14620003, 0x3c034b65, 0x0a0002e1, 0x00008021,
6427 0x8e22001c, 0x34637654, 0x10430002, 0x24100002, 0x24100001, 0x00c02021,
6428 0x0e000350, 0x02003021, 0x24020003, 0x3c010800, 0xa0221b98, 0x24020002,
6429 0x1202000a, 0x24020001, 0x3c030800, 0x8c6323f0, 0x10620006, 0x00000000,
6430 0x3c020800, 0x944223d8, 0x00021400, 0x0a00031f, 0xae220014, 0x3c040800,
6431 0x248423da, 0x94820000, 0x00021400, 0xae220014, 0x3c020800, 0x8c421bbc,
6432 0x3c03c000, 0x3c010800, 0xa0201b98, 0x00431025, 0xaf625c5c, 0x8f625c50,
6433 0x30420002, 0x10400009, 0x00000000, 0x2484f7e2, 0x8c820000, 0x00431025,
6434 0xaf625c5c, 0x8f625c50, 0x30420002, 0x1440fffa, 0x00000000, 0x3c020800,
6435 0x24421b84, 0x8c430000, 0x24630001, 0xac430000, 0x8f630c14, 0x3063000f,
6436 0x2c620002, 0x1440000c, 0x3c024000, 0x8f630c14, 0x3c020800, 0x8c421b40,
6437 0x3063000f, 0x24420001, 0x3c010800, 0xac221b40, 0x2c620002, 0x1040fff7,
6438 0x00000000, 0x3c024000, 0x02421825, 0xaf635c9c, 0x8f625c90, 0x30420002,
6439 0x1440fffc, 0x00000000, 0x12600003, 0x00000000, 0x0e0004c0, 0x00000000,
6440 0x8fbf0028, 0x8fb30024, 0x8fb20020, 0x8fb1001c, 0x8fb00018, 0x03e00008,
6441 0x27bd0030, 0x8f634450, 0x3c040800, 0x24841b88, 0x8c820000, 0x00031c02,
6442 0x0043102b, 0x14400007, 0x3c038000, 0x8c840004, 0x8f624450, 0x00021c02,
6443 0x0083102b, 0x1040fffc, 0x3c038000, 0xaf634444, 0x8f624444, 0x00431024,
6444 0x1440fffd, 0x00000000, 0x8f624448, 0x03e00008, 0x3042ffff, 0x3c024000,
6445 0x00822025, 0xaf645c38, 0x8f625c30, 0x30420002, 0x1440fffc, 0x00000000,
6446 0x03e00008, 0x00000000, 0x27bdffe0, 0x00805821, 0x14c00011, 0x256e0008,
6447 0x3c020800, 0x8c4223f4, 0x10400007, 0x24020016, 0x3c010800, 0xa42223d2,
6448 0x2402002a, 0x3c010800, 0x0a000364, 0xa42223d4, 0x8d670010, 0x00071402,
6449 0x3c010800, 0xa42223d2, 0x3c010800, 0xa42723d4, 0x3c040800, 0x948423d4,
6450 0x3c030800, 0x946323d2, 0x95cf0006, 0x3c020800, 0x944223d0, 0x00832023,
6451 0x01e2c023, 0x3065ffff, 0x24a20028, 0x01c24821, 0x3082ffff, 0x14c0001a,
6452 0x01226021, 0x9582000c, 0x3042003f, 0x3c010800, 0xa42223d6, 0x95820004,
6453 0x95830006, 0x3c010800, 0xac2023e4, 0x3c010800, 0xac2023e8, 0x00021400,
6454 0x00431025, 0x3c010800, 0xac221bc0, 0x95220004, 0x3c010800, 0xa4221bc4,
6455 0x95230002, 0x01e51023, 0x0043102a, 0x10400010, 0x24020001, 0x3c010800,
6456 0x0a000398, 0xac2223f8, 0x3c030800, 0x8c6323e8, 0x3c020800, 0x94421bc4,
6457 0x00431021, 0xa5220004, 0x3c020800, 0x94421bc0, 0xa5820004, 0x3c020800,
6458 0x8c421bc0, 0xa5820006, 0x3c020800, 0x8c4223f0, 0x3c0d0800, 0x8dad23e4,
6459 0x3c0a0800, 0x144000e5, 0x8d4a23e8, 0x3c020800, 0x94421bc4, 0x004a1821,
6460 0x3063ffff, 0x0062182b, 0x24020002, 0x10c2000d, 0x01435023, 0x3c020800,
6461 0x944223d6, 0x30420009, 0x10400008, 0x00000000, 0x9582000c, 0x3042fff6,
6462 0xa582000c, 0x3c020800, 0x944223d6, 0x30420009, 0x01a26823, 0x3c020800,
6463 0x8c4223f8, 0x1040004a, 0x01203821, 0x3c020800, 0x944223d2, 0x00004021,
6464 0xa520000a, 0x01e21023, 0xa5220002, 0x3082ffff, 0x00021042, 0x18400008,
6465 0x00003021, 0x00401821, 0x94e20000, 0x25080001, 0x00c23021, 0x0103102a,
6466 0x1440fffb, 0x24e70002, 0x00061c02, 0x30c2ffff, 0x00623021, 0x00061402,
6467 0x00c23021, 0x00c02821, 0x00061027, 0xa522000a, 0x00003021, 0x2527000c,
6468 0x00004021, 0x94e20000, 0x25080001, 0x00c23021, 0x2d020004, 0x1440fffb,
6469 0x24e70002, 0x95220002, 0x00004021, 0x91230009, 0x00442023, 0x01803821,
6470 0x3082ffff, 0xa4e00010, 0x00621821, 0x00021042, 0x18400010, 0x00c33021,
6471 0x00404821, 0x94e20000, 0x24e70002, 0x00c23021, 0x30e2007f, 0x14400006,
6472 0x25080001, 0x8d630000, 0x3c02007f, 0x3442ff80, 0x00625824, 0x25670008,
6473 0x0109102a, 0x1440fff3, 0x00000000, 0x30820001, 0x10400005, 0x00061c02,
6474 0xa0e00001, 0x94e20000, 0x00c23021, 0x00061c02, 0x30c2ffff, 0x00623021,
6475 0x00061402, 0x00c23021, 0x0a00047d, 0x30c6ffff, 0x24020002, 0x14c20081,
6476 0x00000000, 0x3c020800, 0x8c42240c, 0x14400007, 0x00000000, 0x3c020800,
6477 0x944223d2, 0x95230002, 0x01e21023, 0x10620077, 0x00000000, 0x3c020800,
6478 0x944223d2, 0x01e21023, 0xa5220002, 0x3c020800, 0x8c42240c, 0x1040001a,
6479 0x31e3ffff, 0x8dc70010, 0x3c020800, 0x94421b96, 0x00e04021, 0x00072c02,
6480 0x00aa2021, 0x00431023, 0x00823823, 0x00072402, 0x30e2ffff, 0x00823821,
6481 0x00071027, 0xa522000a, 0x3102ffff, 0x3c040800, 0x948423d4, 0x00453023,
6482 0x00e02821, 0x00641823, 0x006d1821, 0x00c33021, 0x00061c02, 0x30c2ffff,
6483 0x0a00047d, 0x00623021, 0x01203821, 0x00004021, 0x3082ffff, 0x00021042,
6484 0x18400008, 0x00003021, 0x00401821, 0x94e20000, 0x25080001, 0x00c23021,
6485 0x0103102a, 0x1440fffb, 0x24e70002, 0x00061c02, 0x30c2ffff, 0x00623021,
6486 0x00061402, 0x00c23021, 0x00c02821, 0x00061027, 0xa522000a, 0x00003021,
6487 0x2527000c, 0x00004021, 0x94e20000, 0x25080001, 0x00c23021, 0x2d020004,
6488 0x1440fffb, 0x24e70002, 0x95220002, 0x00004021, 0x91230009, 0x00442023,
6489 0x01803821, 0x3082ffff, 0xa4e00010, 0x3c040800, 0x948423d4, 0x00621821,
6490 0x00c33021, 0x00061c02, 0x30c2ffff, 0x00623021, 0x00061c02, 0x3c020800,
6491 0x944223d0, 0x00c34821, 0x00441023, 0x00021fc2, 0x00431021, 0x00021043,
6492 0x18400010, 0x00003021, 0x00402021, 0x94e20000, 0x24e70002, 0x00c23021,
6493 0x30e2007f, 0x14400006, 0x25080001, 0x8d630000, 0x3c02007f, 0x3442ff80,
6494 0x00625824, 0x25670008, 0x0104102a, 0x1440fff3, 0x00000000, 0x3c020800,
6495 0x944223ec, 0x00c23021, 0x3122ffff, 0x00c23021, 0x00061c02, 0x30c2ffff,
6496 0x00623021, 0x00061402, 0x00c23021, 0x00c04021, 0x00061027, 0xa5820010,
6497 0xadc00014, 0x0a00049d, 0xadc00000, 0x8dc70010, 0x00e04021, 0x11400007,
6498 0x00072c02, 0x00aa3021, 0x00061402, 0x30c3ffff, 0x00433021, 0x00061402,
6499 0x00c22821, 0x00051027, 0xa522000a, 0x3c030800, 0x946323d4, 0x3102ffff,
6500 0x01e21021, 0x00433023, 0x00cd3021, 0x00061c02, 0x30c2ffff, 0x00623021,
6501 0x00061402, 0x00c23021, 0x00c04021, 0x00061027, 0xa5820010, 0x3102ffff,
6502 0x00051c00, 0x00431025, 0xadc20010, 0x3c020800, 0x8c4223f4, 0x10400005,
6503 0x2de205eb, 0x14400002, 0x25e2fff2, 0x34028870, 0xa5c20034, 0x3c030800,
6504 0x246323e8, 0x8c620000, 0x24420001, 0xac620000, 0x3c040800, 0x8c8423e4,
6505 0x3c020800, 0x8c421bc0, 0x3303ffff, 0x00832021, 0x00431821, 0x0062102b,
6506 0x3c010800, 0xac2423e4, 0x10400003, 0x2482ffff, 0x3c010800, 0xac2223e4,
6507 0x3c010800, 0xac231bc0, 0x03e00008, 0x27bd0020, 0x27bdffb8, 0x3c050800,
6508 0x24a51b96, 0xafbf0044, 0xafbe0040, 0xafb7003c, 0xafb60038, 0xafb50034,
6509 0xafb40030, 0xafb3002c, 0xafb20028, 0xafb10024, 0xafb00020, 0x94a90000,
6510 0x3c020800, 0x944223d0, 0x3c030800, 0x8c631bb0, 0x3c040800, 0x8c841bac,
6511 0x01221023, 0x0064182a, 0xa7a9001e, 0x106000be, 0xa7a20016, 0x24be0022,
6512 0x97b6001e, 0x24b3001a, 0x24b70016, 0x8fc20000, 0x14400008, 0x00000000,
6513 0x8fc2fff8, 0x97a30016, 0x8fc4fff4, 0x00431021, 0x0082202a, 0x148000b0,
6514 0x00000000, 0x97d50818, 0x32a2ffff, 0x104000a3, 0x00009021, 0x0040a021,
6515 0x00008821, 0x0e000625, 0x00000000, 0x00403021, 0x14c00007, 0x00000000,
6516 0x3c020800, 0x8c4223dc, 0x24420001, 0x3c010800, 0x0a000596, 0xac2223dc,
6517 0x3c100800, 0x02118021, 0x8e101bc8, 0x9608000a, 0x31020040, 0x10400005,
6518 0x2407180c, 0x8e02000c, 0x2407188c, 0x00021400, 0xacc20018, 0x31020080,
6519 0x54400001, 0x34e70010, 0x3c020800, 0x00511021, 0x8c421bd0, 0x3c030800,
6520 0x00711821, 0x8c631bd4, 0x00021500, 0x00031c00, 0x00431025, 0xacc20014,
6521 0x96040008, 0x3242ffff, 0x00821021, 0x0282102a, 0x14400002, 0x02b22823,
6522 0x00802821, 0x8e020000, 0x02459021, 0xacc20000, 0x8e020004, 0x00c02021,
6523 0x26310010, 0xac820004, 0x30e2ffff, 0xac800008, 0xa485000e, 0xac820010,
6524 0x24020305, 0x0e0005a2, 0xa482000c, 0x3242ffff, 0x0054102b, 0x1440ffc5,
6525 0x3242ffff, 0x0a00058e, 0x00000000, 0x8e620000, 0x8e63fffc, 0x0043102a,
6526 0x10400067, 0x00000000, 0x8e62fff0, 0x00028900, 0x3c100800, 0x02118021,
6527 0x0e000625, 0x8e101bc8, 0x00403021, 0x14c00005, 0x00000000, 0x8e62082c,
6528 0x24420001, 0x0a000596, 0xae62082c, 0x9608000a, 0x31020040, 0x10400005,
6529 0x2407180c, 0x8e02000c, 0x2407188c, 0x00021400, 0xacc20018, 0x3c020800,
6530 0x00511021, 0x8c421bd0, 0x3c030800, 0x00711821, 0x8c631bd4, 0x00021500,
6531 0x00031c00, 0x00431025, 0xacc20014, 0x8e63fff4, 0x96020008, 0x00432023,
6532 0x3242ffff, 0x3083ffff, 0x00431021, 0x02c2102a, 0x10400003, 0x00802821,
6533 0x97a9001e, 0x01322823, 0x8e620000, 0x30a4ffff, 0x00441021, 0xae620000,
6534 0xa4c5000e, 0x8e020000, 0xacc20000, 0x8e020004, 0x8e63fff4, 0x00431021,
6535 0xacc20004, 0x8e63fff4, 0x96020008, 0x00641821, 0x0062102a, 0x14400006,
6536 0x02459021, 0x8e62fff0, 0xae60fff4, 0x24420001, 0x0a000571, 0xae62fff0,
6537 0xae63fff4, 0xacc00008, 0x3242ffff, 0x10560003, 0x31020004, 0x10400006,
6538 0x24020305, 0x31020080, 0x54400001, 0x34e70010, 0x34e70020, 0x24020905,
6539 0xa4c2000c, 0x8ee30000, 0x8ee20004, 0x14620007, 0x3c02b49a, 0x8ee20860,
6540 0x54400001, 0x34e70400, 0x3c024b65, 0x0a000588, 0x34427654, 0x344289ab,
6541 0xacc2001c, 0x30e2ffff, 0xacc20010, 0x0e0005a2, 0x00c02021, 0x3242ffff,
6542 0x0056102b, 0x1440ff9b, 0x00000000, 0x8e620000, 0x8e63fffc, 0x0043102a,
6543 0x1440ff48, 0x00000000, 0x8fbf0044, 0x8fbe0040, 0x8fb7003c, 0x8fb60038,
6544 0x8fb50034, 0x8fb40030, 0x8fb3002c, 0x8fb20028, 0x8fb10024, 0x8fb00020,
6545 0x03e00008, 0x27bd0048, 0x27bdffe8, 0xafbf0014, 0xafb00010, 0x8f624450,
6546 0x8f634410, 0x0a0005b1, 0x00808021, 0x8f626820, 0x30422000, 0x10400003,
6547 0x00000000, 0x0e0001f0, 0x00002021, 0x8f624450, 0x8f634410, 0x3042ffff,
6548 0x0043102b, 0x1440fff5, 0x00000000, 0x8f630c14, 0x3063000f, 0x2c620002,
6549 0x1440000b, 0x00000000, 0x8f630c14, 0x3c020800, 0x8c421b40, 0x3063000f,
6550 0x24420001, 0x3c010800, 0xac221b40, 0x2c620002, 0x1040fff7, 0x00000000,
6551 0xaf705c18, 0x8f625c10, 0x30420002, 0x10400009, 0x00000000, 0x8f626820,
6552 0x30422000, 0x1040fff8, 0x00000000, 0x0e0001f0, 0x00002021, 0x0a0005c4,
6553 0x00000000, 0x8fbf0014, 0x8fb00010, 0x03e00008, 0x27bd0018, 0x00000000,
6554 0x00000000, 0x00000000, 0x27bdffe8, 0x3c1bc000, 0xafbf0014, 0xafb00010,
6555 0xaf60680c, 0x8f626804, 0x34420082, 0xaf626804, 0x8f634000, 0x24020b50,
6556 0x3c010800, 0xac221b54, 0x24020b78, 0x3c010800, 0xac221b64, 0x34630002,
6557 0xaf634000, 0x0e000605, 0x00808021, 0x3c010800, 0xa0221b68, 0x304200ff,
6558 0x24030002, 0x14430005, 0x00000000, 0x3c020800, 0x8c421b54, 0x0a0005f8,
6559 0xac5000c0, 0x3c020800, 0x8c421b54, 0xac5000bc, 0x8f624434, 0x8f634438,
6560 0x8f644410, 0x3c010800, 0xac221b5c, 0x3c010800, 0xac231b6c, 0x3c010800,
6561 0xac241b58, 0x8fbf0014, 0x8fb00010, 0x03e00008, 0x27bd0018, 0x3c040800,
6562 0x8c870000, 0x3c03aa55, 0x3463aa55, 0x3c06c003, 0xac830000, 0x8cc20000,
6563 0x14430007, 0x24050002, 0x3c0355aa, 0x346355aa, 0xac830000, 0x8cc20000,
6564 0x50430001, 0x24050001, 0x3c020800, 0xac470000, 0x03e00008, 0x00a01021,
6565 0x27bdfff8, 0x18800009, 0x00002821, 0x8f63680c, 0x8f62680c, 0x1043fffe,
6566 0x00000000, 0x24a50001, 0x00a4102a, 0x1440fff9, 0x00000000, 0x03e00008,
6567 0x27bd0008, 0x8f634450, 0x3c020800, 0x8c421b5c, 0x00031c02, 0x0043102b,
6568 0x14400008, 0x3c038000, 0x3c040800, 0x8c841b6c, 0x8f624450, 0x00021c02,
6569 0x0083102b, 0x1040fffc, 0x3c038000, 0xaf634444, 0x8f624444, 0x00431024,
6570 0x1440fffd, 0x00000000, 0x8f624448, 0x03e00008, 0x3042ffff, 0x3082ffff,
6571 0x2442e000, 0x2c422001, 0x14400003, 0x3c024000, 0x0a000648, 0x2402ffff,
6572 0x00822025, 0xaf645c38, 0x8f625c30, 0x30420002, 0x1440fffc, 0x00001021,
6573 0x03e00008, 0x00000000, 0x8f624450, 0x3c030800, 0x8c631b58, 0x0a000651,
6574 0x3042ffff, 0x8f624450, 0x3042ffff, 0x0043102b, 0x1440fffc, 0x00000000,
6575 0x03e00008, 0x00000000, 0x27bdffe0, 0x00802821, 0x3c040800, 0x24841af0,
6576 0x00003021, 0x00003821, 0xafbf0018, 0xafa00010, 0x0e00067c, 0xafa00014,
6577 0x0a000660, 0x00000000, 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x00000000,
6578 0x00000000, 0x00000000, 0x3c020800, 0x34423000, 0x3c030800, 0x34633000,
6579 0x3c040800, 0x348437ff, 0x3c010800, 0xac221b74, 0x24020040, 0x3c010800,
6580 0xac221b78, 0x3c010800, 0xac201b70, 0xac600000, 0x24630004, 0x0083102b,
6581 0x5040fffd, 0xac600000, 0x03e00008, 0x00000000, 0x00804821, 0x8faa0010,
6582 0x3c020800, 0x8c421b70, 0x3c040800, 0x8c841b78, 0x8fab0014, 0x24430001,
6583 0x0044102b, 0x3c010800, 0xac231b70, 0x14400003, 0x00004021, 0x3c010800,
6584 0xac201b70, 0x3c020800, 0x8c421b70, 0x3c030800, 0x8c631b74, 0x91240000,
6585 0x00021140, 0x00431021, 0x00481021, 0x25080001, 0xa0440000, 0x29020008,
6586 0x1440fff4, 0x25290001, 0x3c020800, 0x8c421b70, 0x3c030800, 0x8c631b74,
6587 0x8f64680c, 0x00021140, 0x00431021, 0xac440008, 0xac45000c, 0xac460010,
6588 0xac470014, 0xac4a0018, 0x03e00008, 0xac4b001c, 0x00000000, 0x00000000,
6589};
6590
Andreas Mohr50da8592006-08-14 23:54:30 -07006591static const u32 tg3TsoFwRodata[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592 0x4d61696e, 0x43707542, 0x00000000, 0x4d61696e, 0x43707541, 0x00000000,
6593 0x00000000, 0x00000000, 0x73746b6f, 0x66666c64, 0x496e0000, 0x73746b6f,
6594 0x66662a2a, 0x00000000, 0x53774576, 0x656e7430, 0x00000000, 0x00000000,
6595 0x00000000, 0x00000000, 0x66617461, 0x6c457272, 0x00000000, 0x00000000,
6596 0x00000000,
6597};
6598
Andreas Mohr50da8592006-08-14 23:54:30 -07006599static const u32 tg3TsoFwData[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600 0x00000000, 0x73746b6f, 0x66666c64, 0x5f76312e, 0x362e3000, 0x00000000,
6601 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
6602 0x00000000,
6603};
6604
6605/* 5705 needs a special version of the TSO firmware. */
6606#define TG3_TSO5_FW_RELEASE_MAJOR 0x1
6607#define TG3_TSO5_FW_RELASE_MINOR 0x2
6608#define TG3_TSO5_FW_RELEASE_FIX 0x0
6609#define TG3_TSO5_FW_START_ADDR 0x00010000
6610#define TG3_TSO5_FW_TEXT_ADDR 0x00010000
6611#define TG3_TSO5_FW_TEXT_LEN 0xe90
6612#define TG3_TSO5_FW_RODATA_ADDR 0x00010e90
6613#define TG3_TSO5_FW_RODATA_LEN 0x50
6614#define TG3_TSO5_FW_DATA_ADDR 0x00010f00
6615#define TG3_TSO5_FW_DATA_LEN 0x20
6616#define TG3_TSO5_FW_SBSS_ADDR 0x00010f20
6617#define TG3_TSO5_FW_SBSS_LEN 0x28
6618#define TG3_TSO5_FW_BSS_ADDR 0x00010f50
6619#define TG3_TSO5_FW_BSS_LEN 0x88
6620
Andreas Mohr50da8592006-08-14 23:54:30 -07006621static const u32 tg3Tso5FwText[(TG3_TSO5_FW_TEXT_LEN / 4) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622 0x0c004003, 0x00000000, 0x00010f04, 0x00000000, 0x10000003, 0x00000000,
6623 0x0000000d, 0x0000000d, 0x3c1d0001, 0x37bde000, 0x03a0f021, 0x3c100001,
6624 0x26100000, 0x0c004010, 0x00000000, 0x0000000d, 0x27bdffe0, 0x3c04fefe,
6625 0xafbf0018, 0x0c0042e8, 0x34840002, 0x0c004364, 0x00000000, 0x3c030001,
6626 0x90630f34, 0x24020002, 0x3c040001, 0x24840e9c, 0x14620003, 0x24050001,
6627 0x3c040001, 0x24840e90, 0x24060002, 0x00003821, 0xafa00010, 0x0c004378,
6628 0xafa00014, 0x0c00402c, 0x00000000, 0x8fbf0018, 0x03e00008, 0x27bd0020,
6629 0x00000000, 0x00000000, 0x27bdffe0, 0xafbf001c, 0xafb20018, 0xafb10014,
6630 0x0c0042d4, 0xafb00010, 0x3c128000, 0x24110001, 0x8f706810, 0x32020400,
6631 0x10400007, 0x00000000, 0x8f641008, 0x00921024, 0x14400003, 0x00000000,
6632 0x0c004064, 0x00000000, 0x3c020001, 0x90420f56, 0x10510003, 0x32020200,
6633 0x1040fff1, 0x00000000, 0x0c0041b4, 0x00000000, 0x08004034, 0x00000000,
6634 0x8fbf001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x03e00008, 0x27bd0020,
6635 0x27bdffe0, 0x3c040001, 0x24840eb0, 0x00002821, 0x00003021, 0x00003821,
6636 0xafbf0018, 0xafa00010, 0x0c004378, 0xafa00014, 0x0000d021, 0x24020130,
6637 0xaf625000, 0x3c010001, 0xa4200f50, 0x3c010001, 0xa0200f57, 0x8fbf0018,
6638 0x03e00008, 0x27bd0020, 0x00000000, 0x00000000, 0x3c030001, 0x24630f60,
6639 0x90620000, 0x27bdfff0, 0x14400003, 0x0080c021, 0x08004073, 0x00004821,
6640 0x3c022000, 0x03021024, 0x10400003, 0x24090002, 0x08004073, 0xa0600000,
6641 0x24090001, 0x00181040, 0x30431f80, 0x346f8008, 0x1520004b, 0x25eb0028,
6642 0x3c040001, 0x00832021, 0x8c848010, 0x3c050001, 0x24a50f7a, 0x00041402,
6643 0xa0a20000, 0x3c010001, 0xa0240f7b, 0x3c020001, 0x00431021, 0x94428014,
6644 0x3c010001, 0xa0220f7c, 0x3c0c0001, 0x01836021, 0x8d8c8018, 0x304200ff,
6645 0x24420008, 0x000220c3, 0x24020001, 0x3c010001, 0xa0220f60, 0x0124102b,
6646 0x1040000c, 0x00003821, 0x24a6000e, 0x01602821, 0x8ca20000, 0x8ca30004,
6647 0x24a50008, 0x24e70001, 0xacc20000, 0xacc30004, 0x00e4102b, 0x1440fff8,
6648 0x24c60008, 0x00003821, 0x3c080001, 0x25080f7b, 0x91060000, 0x3c020001,
6649 0x90420f7c, 0x2503000d, 0x00c32821, 0x00461023, 0x00021fc2, 0x00431021,
6650 0x00021043, 0x1840000c, 0x00002021, 0x91020001, 0x00461023, 0x00021fc2,
6651 0x00431021, 0x00021843, 0x94a20000, 0x24e70001, 0x00822021, 0x00e3102a,
6652 0x1440fffb, 0x24a50002, 0x00041c02, 0x3082ffff, 0x00622021, 0x00041402,
6653 0x00822021, 0x3c02ffff, 0x01821024, 0x3083ffff, 0x00431025, 0x3c010001,
6654 0x080040fa, 0xac220f80, 0x3c050001, 0x24a50f7c, 0x90a20000, 0x3c0c0001,
6655 0x01836021, 0x8d8c8018, 0x000220c2, 0x1080000e, 0x00003821, 0x01603021,
6656 0x24a5000c, 0x8ca20000, 0x8ca30004, 0x24a50008, 0x24e70001, 0xacc20000,
6657 0xacc30004, 0x00e4102b, 0x1440fff8, 0x24c60008, 0x3c050001, 0x24a50f7c,
6658 0x90a20000, 0x30430007, 0x24020004, 0x10620011, 0x28620005, 0x10400005,
6659 0x24020002, 0x10620008, 0x000710c0, 0x080040fa, 0x00000000, 0x24020006,
6660 0x1062000e, 0x000710c0, 0x080040fa, 0x00000000, 0x00a21821, 0x9463000c,
6661 0x004b1021, 0x080040fa, 0xa4430000, 0x000710c0, 0x00a21821, 0x8c63000c,
6662 0x004b1021, 0x080040fa, 0xac430000, 0x00a21821, 0x8c63000c, 0x004b2021,
6663 0x00a21021, 0xac830000, 0x94420010, 0xa4820004, 0x95e70006, 0x3c020001,
6664 0x90420f7c, 0x3c030001, 0x90630f7a, 0x00e2c823, 0x3c020001, 0x90420f7b,
6665 0x24630028, 0x01e34021, 0x24420028, 0x15200012, 0x01e23021, 0x94c2000c,
6666 0x3c010001, 0xa4220f78, 0x94c20004, 0x94c30006, 0x3c010001, 0xa4200f76,
6667 0x3c010001, 0xa4200f72, 0x00021400, 0x00431025, 0x3c010001, 0xac220f6c,
6668 0x95020004, 0x3c010001, 0x08004124, 0xa4220f70, 0x3c020001, 0x94420f70,
6669 0x3c030001, 0x94630f72, 0x00431021, 0xa5020004, 0x3c020001, 0x94420f6c,
6670 0xa4c20004, 0x3c020001, 0x8c420f6c, 0xa4c20006, 0x3c040001, 0x94840f72,
6671 0x3c020001, 0x94420f70, 0x3c0a0001, 0x954a0f76, 0x00441821, 0x3063ffff,
6672 0x0062182a, 0x24020002, 0x1122000b, 0x00832023, 0x3c030001, 0x94630f78,
6673 0x30620009, 0x10400006, 0x3062fff6, 0xa4c2000c, 0x3c020001, 0x94420f78,
6674 0x30420009, 0x01425023, 0x24020001, 0x1122001b, 0x29220002, 0x50400005,
6675 0x24020002, 0x11200007, 0x31a2ffff, 0x08004197, 0x00000000, 0x1122001d,
6676 0x24020016, 0x08004197, 0x31a2ffff, 0x3c0e0001, 0x95ce0f80, 0x10800005,
6677 0x01806821, 0x01c42021, 0x00041c02, 0x3082ffff, 0x00627021, 0x000e1027,
6678 0xa502000a, 0x3c030001, 0x90630f7b, 0x31a2ffff, 0x00e21021, 0x0800418d,
6679 0x00432023, 0x3c020001, 0x94420f80, 0x00442021, 0x00041c02, 0x3082ffff,
6680 0x00622021, 0x00807021, 0x00041027, 0x08004185, 0xa502000a, 0x3c050001,
6681 0x24a50f7a, 0x90a30000, 0x14620002, 0x24e2fff2, 0xa5e20034, 0x90a20000,
6682 0x00e21023, 0xa5020002, 0x3c030001, 0x94630f80, 0x3c020001, 0x94420f5a,
6683 0x30e5ffff, 0x00641821, 0x00451023, 0x00622023, 0x00041c02, 0x3082ffff,
6684 0x00622021, 0x00041027, 0xa502000a, 0x3c030001, 0x90630f7c, 0x24620001,
6685 0x14a20005, 0x00807021, 0x01631021, 0x90420000, 0x08004185, 0x00026200,
6686 0x24620002, 0x14a20003, 0x306200fe, 0x004b1021, 0x944c0000, 0x3c020001,
6687 0x94420f82, 0x3183ffff, 0x3c040001, 0x90840f7b, 0x00431021, 0x00e21021,
6688 0x00442023, 0x008a2021, 0x00041c02, 0x3082ffff, 0x00622021, 0x00041402,
6689 0x00822021, 0x00806821, 0x00041027, 0xa4c20010, 0x31a2ffff, 0x000e1c00,
6690 0x00431025, 0x3c040001, 0x24840f72, 0xade20010, 0x94820000, 0x3c050001,
6691 0x94a50f76, 0x3c030001, 0x8c630f6c, 0x24420001, 0x00b92821, 0xa4820000,
6692 0x3322ffff, 0x00622021, 0x0083182b, 0x3c010001, 0xa4250f76, 0x10600003,
6693 0x24a2ffff, 0x3c010001, 0xa4220f76, 0x3c024000, 0x03021025, 0x3c010001,
6694 0xac240f6c, 0xaf621008, 0x03e00008, 0x27bd0010, 0x3c030001, 0x90630f56,
6695 0x27bdffe8, 0x24020001, 0xafbf0014, 0x10620026, 0xafb00010, 0x8f620cf4,
6696 0x2442ffff, 0x3042007f, 0x00021100, 0x8c434000, 0x3c010001, 0xac230f64,
6697 0x8c434008, 0x24444000, 0x8c5c4004, 0x30620040, 0x14400002, 0x24020088,
6698 0x24020008, 0x3c010001, 0xa4220f68, 0x30620004, 0x10400005, 0x24020001,
6699 0x3c010001, 0xa0220f57, 0x080041d5, 0x00031402, 0x3c010001, 0xa0200f57,
6700 0x00031402, 0x3c010001, 0xa4220f54, 0x9483000c, 0x24020001, 0x3c010001,
6701 0xa4200f50, 0x3c010001, 0xa0220f56, 0x3c010001, 0xa4230f62, 0x24020001,
6702 0x1342001e, 0x00000000, 0x13400005, 0x24020003, 0x13420067, 0x00000000,
6703 0x080042cf, 0x00000000, 0x3c020001, 0x94420f62, 0x241a0001, 0x3c010001,
6704 0xa4200f5e, 0x3c010001, 0xa4200f52, 0x304407ff, 0x00021bc2, 0x00031823,
6705 0x3063003e, 0x34630036, 0x00021242, 0x3042003c, 0x00621821, 0x3c010001,
6706 0xa4240f58, 0x00832021, 0x24630030, 0x3c010001, 0xa4240f5a, 0x3c010001,
6707 0xa4230f5c, 0x3c060001, 0x24c60f52, 0x94c50000, 0x94c30002, 0x3c040001,
6708 0x94840f5a, 0x00651021, 0x0044102a, 0x10400013, 0x3c108000, 0x00a31021,
6709 0xa4c20000, 0x3c02a000, 0xaf620cf4, 0x3c010001, 0xa0200f56, 0x8f641008,
6710 0x00901024, 0x14400003, 0x00000000, 0x0c004064, 0x00000000, 0x8f620cf4,
6711 0x00501024, 0x104000b7, 0x00000000, 0x0800420f, 0x00000000, 0x3c030001,
6712 0x94630f50, 0x00851023, 0xa4c40000, 0x00621821, 0x3042ffff, 0x3c010001,
6713 0xa4230f50, 0xaf620ce8, 0x3c020001, 0x94420f68, 0x34420024, 0xaf620cec,
6714 0x94c30002, 0x3c020001, 0x94420f50, 0x14620012, 0x3c028000, 0x3c108000,
6715 0x3c02a000, 0xaf620cf4, 0x3c010001, 0xa0200f56, 0x8f641008, 0x00901024,
6716 0x14400003, 0x00000000, 0x0c004064, 0x00000000, 0x8f620cf4, 0x00501024,
6717 0x1440fff7, 0x00000000, 0x080042cf, 0x241a0003, 0xaf620cf4, 0x3c108000,
6718 0x8f641008, 0x00901024, 0x14400003, 0x00000000, 0x0c004064, 0x00000000,
6719 0x8f620cf4, 0x00501024, 0x1440fff7, 0x00000000, 0x080042cf, 0x241a0003,
6720 0x3c070001, 0x24e70f50, 0x94e20000, 0x03821021, 0xaf620ce0, 0x3c020001,
6721 0x8c420f64, 0xaf620ce4, 0x3c050001, 0x94a50f54, 0x94e30000, 0x3c040001,
6722 0x94840f58, 0x3c020001, 0x94420f5e, 0x00a32823, 0x00822023, 0x30a6ffff,
6723 0x3083ffff, 0x00c3102b, 0x14400043, 0x00000000, 0x3c020001, 0x94420f5c,
6724 0x00021400, 0x00621025, 0xaf620ce8, 0x94e20000, 0x3c030001, 0x94630f54,
6725 0x00441021, 0xa4e20000, 0x3042ffff, 0x14430021, 0x3c020008, 0x3c020001,
6726 0x90420f57, 0x10400006, 0x3c03000c, 0x3c020001, 0x94420f68, 0x34630624,
6727 0x0800427c, 0x0000d021, 0x3c020001, 0x94420f68, 0x3c030008, 0x34630624,
6728 0x00431025, 0xaf620cec, 0x3c108000, 0x3c02a000, 0xaf620cf4, 0x3c010001,
6729 0xa0200f56, 0x8f641008, 0x00901024, 0x14400003, 0x00000000, 0x0c004064,
6730 0x00000000, 0x8f620cf4, 0x00501024, 0x10400015, 0x00000000, 0x08004283,
6731 0x00000000, 0x3c030001, 0x94630f68, 0x34420624, 0x3c108000, 0x00621825,
6732 0x3c028000, 0xaf630cec, 0xaf620cf4, 0x8f641008, 0x00901024, 0x14400003,
6733 0x00000000, 0x0c004064, 0x00000000, 0x8f620cf4, 0x00501024, 0x1440fff7,
6734 0x00000000, 0x3c010001, 0x080042cf, 0xa4200f5e, 0x3c020001, 0x94420f5c,
6735 0x00021400, 0x00c21025, 0xaf620ce8, 0x3c020001, 0x90420f57, 0x10400009,
6736 0x3c03000c, 0x3c020001, 0x94420f68, 0x34630624, 0x0000d021, 0x00431025,
6737 0xaf620cec, 0x080042c1, 0x3c108000, 0x3c020001, 0x94420f68, 0x3c030008,
6738 0x34630604, 0x00431025, 0xaf620cec, 0x3c020001, 0x94420f5e, 0x00451021,
6739 0x3c010001, 0xa4220f5e, 0x3c108000, 0x3c02a000, 0xaf620cf4, 0x3c010001,
6740 0xa0200f56, 0x8f641008, 0x00901024, 0x14400003, 0x00000000, 0x0c004064,
6741 0x00000000, 0x8f620cf4, 0x00501024, 0x1440fff7, 0x00000000, 0x8fbf0014,
6742 0x8fb00010, 0x03e00008, 0x27bd0018, 0x00000000, 0x27bdffe0, 0x3c040001,
6743 0x24840ec0, 0x00002821, 0x00003021, 0x00003821, 0xafbf0018, 0xafa00010,
6744 0x0c004378, 0xafa00014, 0x0000d021, 0x24020130, 0xaf625000, 0x3c010001,
6745 0xa4200f50, 0x3c010001, 0xa0200f57, 0x8fbf0018, 0x03e00008, 0x27bd0020,
6746 0x27bdffe8, 0x3c1bc000, 0xafbf0014, 0xafb00010, 0xaf60680c, 0x8f626804,
6747 0x34420082, 0xaf626804, 0x8f634000, 0x24020b50, 0x3c010001, 0xac220f20,
6748 0x24020b78, 0x3c010001, 0xac220f30, 0x34630002, 0xaf634000, 0x0c004315,
6749 0x00808021, 0x3c010001, 0xa0220f34, 0x304200ff, 0x24030002, 0x14430005,
6750 0x00000000, 0x3c020001, 0x8c420f20, 0x08004308, 0xac5000c0, 0x3c020001,
6751 0x8c420f20, 0xac5000bc, 0x8f624434, 0x8f634438, 0x8f644410, 0x3c010001,
6752 0xac220f28, 0x3c010001, 0xac230f38, 0x3c010001, 0xac240f24, 0x8fbf0014,
6753 0x8fb00010, 0x03e00008, 0x27bd0018, 0x03e00008, 0x24020001, 0x27bdfff8,
6754 0x18800009, 0x00002821, 0x8f63680c, 0x8f62680c, 0x1043fffe, 0x00000000,
6755 0x24a50001, 0x00a4102a, 0x1440fff9, 0x00000000, 0x03e00008, 0x27bd0008,
6756 0x8f634450, 0x3c020001, 0x8c420f28, 0x00031c02, 0x0043102b, 0x14400008,
6757 0x3c038000, 0x3c040001, 0x8c840f38, 0x8f624450, 0x00021c02, 0x0083102b,
6758 0x1040fffc, 0x3c038000, 0xaf634444, 0x8f624444, 0x00431024, 0x1440fffd,
6759 0x00000000, 0x8f624448, 0x03e00008, 0x3042ffff, 0x3082ffff, 0x2442e000,
6760 0x2c422001, 0x14400003, 0x3c024000, 0x08004347, 0x2402ffff, 0x00822025,
6761 0xaf645c38, 0x8f625c30, 0x30420002, 0x1440fffc, 0x00001021, 0x03e00008,
6762 0x00000000, 0x8f624450, 0x3c030001, 0x8c630f24, 0x08004350, 0x3042ffff,
6763 0x8f624450, 0x3042ffff, 0x0043102b, 0x1440fffc, 0x00000000, 0x03e00008,
6764 0x00000000, 0x27bdffe0, 0x00802821, 0x3c040001, 0x24840ed0, 0x00003021,
6765 0x00003821, 0xafbf0018, 0xafa00010, 0x0c004378, 0xafa00014, 0x0800435f,
6766 0x00000000, 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x3c020001, 0x3442d600,
6767 0x3c030001, 0x3463d600, 0x3c040001, 0x3484ddff, 0x3c010001, 0xac220f40,
6768 0x24020040, 0x3c010001, 0xac220f44, 0x3c010001, 0xac200f3c, 0xac600000,
6769 0x24630004, 0x0083102b, 0x5040fffd, 0xac600000, 0x03e00008, 0x00000000,
6770 0x00804821, 0x8faa0010, 0x3c020001, 0x8c420f3c, 0x3c040001, 0x8c840f44,
6771 0x8fab0014, 0x24430001, 0x0044102b, 0x3c010001, 0xac230f3c, 0x14400003,
6772 0x00004021, 0x3c010001, 0xac200f3c, 0x3c020001, 0x8c420f3c, 0x3c030001,
6773 0x8c630f40, 0x91240000, 0x00021140, 0x00431021, 0x00481021, 0x25080001,
6774 0xa0440000, 0x29020008, 0x1440fff4, 0x25290001, 0x3c020001, 0x8c420f3c,
6775 0x3c030001, 0x8c630f40, 0x8f64680c, 0x00021140, 0x00431021, 0xac440008,
6776 0xac45000c, 0xac460010, 0xac470014, 0xac4a0018, 0x03e00008, 0xac4b001c,
6777 0x00000000, 0x00000000, 0x00000000,
6778};
6779
Andreas Mohr50da8592006-08-14 23:54:30 -07006780static const u32 tg3Tso5FwRodata[(TG3_TSO5_FW_RODATA_LEN / 4) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006781 0x4d61696e, 0x43707542, 0x00000000, 0x4d61696e, 0x43707541, 0x00000000,
6782 0x00000000, 0x00000000, 0x73746b6f, 0x66666c64, 0x00000000, 0x00000000,
6783 0x73746b6f, 0x66666c64, 0x00000000, 0x00000000, 0x66617461, 0x6c457272,
6784 0x00000000, 0x00000000, 0x00000000,
6785};
6786
Andreas Mohr50da8592006-08-14 23:54:30 -07006787static const u32 tg3Tso5FwData[(TG3_TSO5_FW_DATA_LEN / 4) + 1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788 0x00000000, 0x73746b6f, 0x66666c64, 0x5f76312e, 0x322e3000, 0x00000000,
6789 0x00000000, 0x00000000, 0x00000000,
6790};
6791
6792/* tp->lock is held. */
6793static int tg3_load_tso_firmware(struct tg3 *tp)
6794{
6795 struct fw_info info;
6796 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
6797 int err, i;
6798
6799 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
6800 return 0;
6801
6802 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
6803 info.text_base = TG3_TSO5_FW_TEXT_ADDR;
6804 info.text_len = TG3_TSO5_FW_TEXT_LEN;
6805 info.text_data = &tg3Tso5FwText[0];
6806 info.rodata_base = TG3_TSO5_FW_RODATA_ADDR;
6807 info.rodata_len = TG3_TSO5_FW_RODATA_LEN;
6808 info.rodata_data = &tg3Tso5FwRodata[0];
6809 info.data_base = TG3_TSO5_FW_DATA_ADDR;
6810 info.data_len = TG3_TSO5_FW_DATA_LEN;
6811 info.data_data = &tg3Tso5FwData[0];
6812 cpu_base = RX_CPU_BASE;
6813 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
6814 cpu_scratch_size = (info.text_len +
6815 info.rodata_len +
6816 info.data_len +
6817 TG3_TSO5_FW_SBSS_LEN +
6818 TG3_TSO5_FW_BSS_LEN);
6819 } else {
6820 info.text_base = TG3_TSO_FW_TEXT_ADDR;
6821 info.text_len = TG3_TSO_FW_TEXT_LEN;
6822 info.text_data = &tg3TsoFwText[0];
6823 info.rodata_base = TG3_TSO_FW_RODATA_ADDR;
6824 info.rodata_len = TG3_TSO_FW_RODATA_LEN;
6825 info.rodata_data = &tg3TsoFwRodata[0];
6826 info.data_base = TG3_TSO_FW_DATA_ADDR;
6827 info.data_len = TG3_TSO_FW_DATA_LEN;
6828 info.data_data = &tg3TsoFwData[0];
6829 cpu_base = TX_CPU_BASE;
6830 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
6831 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
6832 }
6833
6834 err = tg3_load_firmware_cpu(tp, cpu_base,
6835 cpu_scratch_base, cpu_scratch_size,
6836 &info);
6837 if (err)
6838 return err;
6839
6840 /* Now startup the cpu. */
6841 tw32(cpu_base + CPU_STATE, 0xffffffff);
6842 tw32_f(cpu_base + CPU_PC, info.text_base);
6843
6844 for (i = 0; i < 5; i++) {
6845 if (tr32(cpu_base + CPU_PC) == info.text_base)
6846 break;
6847 tw32(cpu_base + CPU_STATE, 0xffffffff);
6848 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
6849 tw32_f(cpu_base + CPU_PC, info.text_base);
6850 udelay(1000);
6851 }
6852 if (i >= 5) {
6853 printk(KERN_ERR PFX "tg3_load_tso_firmware fails for %s "
6854 "to set CPU PC, is %08x should be %08x\n",
6855 tp->dev->name, tr32(cpu_base + CPU_PC),
6856 info.text_base);
6857 return -ENODEV;
6858 }
6859 tw32(cpu_base + CPU_STATE, 0xffffffff);
6860 tw32_f(cpu_base + CPU_MODE, 0x00000000);
6861 return 0;
6862}
6863
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864
6865/* tp->lock is held. */
Michael Chan986e0ae2007-05-05 12:10:20 -07006866static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867{
6868 u32 addr_high, addr_low;
6869 int i;
6870
6871 addr_high = ((tp->dev->dev_addr[0] << 8) |
6872 tp->dev->dev_addr[1]);
6873 addr_low = ((tp->dev->dev_addr[2] << 24) |
6874 (tp->dev->dev_addr[3] << 16) |
6875 (tp->dev->dev_addr[4] << 8) |
6876 (tp->dev->dev_addr[5] << 0));
6877 for (i = 0; i < 4; i++) {
Michael Chan986e0ae2007-05-05 12:10:20 -07006878 if (i == 1 && skip_mac_1)
6879 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
6881 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
6882 }
6883
6884 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
6885 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
6886 for (i = 0; i < 12; i++) {
6887 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
6888 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
6889 }
6890 }
6891
6892 addr_high = (tp->dev->dev_addr[0] +
6893 tp->dev->dev_addr[1] +
6894 tp->dev->dev_addr[2] +
6895 tp->dev->dev_addr[3] +
6896 tp->dev->dev_addr[4] +
6897 tp->dev->dev_addr[5]) &
6898 TX_BACKOFF_SEED_MASK;
6899 tw32(MAC_TX_BACKOFF_SEED, addr_high);
6900}
6901
6902static int tg3_set_mac_addr(struct net_device *dev, void *p)
6903{
6904 struct tg3 *tp = netdev_priv(dev);
6905 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07006906 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907
Michael Chanf9804dd2005-09-27 12:13:10 -07006908 if (!is_valid_ether_addr(addr->sa_data))
6909 return -EINVAL;
6910
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
6912
Michael Chane75f7c92006-03-20 21:33:26 -08006913 if (!netif_running(dev))
6914 return 0;
6915
Michael Chan58712ef2006-04-29 18:58:01 -07006916 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
Michael Chan986e0ae2007-05-05 12:10:20 -07006917 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07006918
Michael Chan986e0ae2007-05-05 12:10:20 -07006919 addr0_high = tr32(MAC_ADDR_0_HIGH);
6920 addr0_low = tr32(MAC_ADDR_0_LOW);
6921 addr1_high = tr32(MAC_ADDR_1_HIGH);
6922 addr1_low = tr32(MAC_ADDR_1_LOW);
6923
6924 /* Skip MAC addr 1 if ASF is using it. */
6925 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
6926 !(addr1_high == 0 && addr1_low == 0))
6927 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07006928 }
Michael Chan986e0ae2007-05-05 12:10:20 -07006929 spin_lock_bh(&tp->lock);
6930 __tg3_set_mac_addr(tp, skip_mac_1);
6931 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932
Michael Chanb9ec6c12006-07-25 16:37:27 -07006933 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934}
6935
6936/* tp->lock is held. */
6937static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
6938 dma_addr_t mapping, u32 maxlen_flags,
6939 u32 nic_addr)
6940{
6941 tg3_write_mem(tp,
6942 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
6943 ((u64) mapping >> 32));
6944 tg3_write_mem(tp,
6945 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
6946 ((u64) mapping & 0xffffffff));
6947 tg3_write_mem(tp,
6948 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
6949 maxlen_flags);
6950
6951 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
6952 tg3_write_mem(tp,
6953 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
6954 nic_addr);
6955}
6956
6957static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07006958static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07006959{
6960 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
6961 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
6962 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
6963 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
6964 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
6965 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
6966 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
6967 }
6968 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
6969 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
6970 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
6971 u32 val = ec->stats_block_coalesce_usecs;
6972
6973 if (!netif_carrier_ok(tp->dev))
6974 val = 0;
6975
6976 tw32(HOSTCC_STAT_COAL_TICKS, val);
6977 }
6978}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979
6980/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07006981static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006982{
6983 u32 val, rdmac_mode;
6984 int i, err, limit;
6985
6986 tg3_disable_ints(tp);
6987
6988 tg3_stop_fw(tp);
6989
6990 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
6991
6992 if (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) {
Michael Chane6de8ad2005-05-05 14:42:41 -07006993 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994 }
6995
Matt Carlsondd477002008-05-25 23:45:58 -07006996 if (reset_phy &&
6997 !(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB))
Michael Chand4d2c552006-03-20 17:47:20 -08006998 tg3_phy_reset(tp);
6999
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000 err = tg3_chip_reset(tp);
7001 if (err)
7002 return err;
7003
7004 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
7005
Matt Carlsonb5af7122007-11-12 21:22:02 -08007006 if (tp->pci_chip_rev_id == CHIPREV_ID_5784_A0 ||
7007 tp->pci_chip_rev_id == CHIPREV_ID_5784_A1) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007008 val = tr32(TG3_CPMU_CTRL);
7009 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
7010 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08007011
7012 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
7013 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
7014 val |= CPMU_LSPD_10MB_MACCLK_6_25;
7015 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
7016
7017 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
7018 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
7019 val |= CPMU_LNK_AWARE_MACCLK_6_25;
7020 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
7021
7022 val = tr32(TG3_CPMU_HST_ACC);
7023 val &= ~CPMU_HST_ACC_MACCLK_MASK;
7024 val |= CPMU_HST_ACC_MACCLK_6_25;
7025 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07007026 }
7027
Linus Torvalds1da177e2005-04-16 15:20:36 -07007028 /* This works around an issue with Athlon chipsets on
7029 * B3 tigon3 silicon. This bit has no effect on any
7030 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07007031 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032 */
Matt Carlson795d01c2007-10-07 23:28:17 -07007033 if (!(tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)) {
7034 if (!(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
7035 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
7036 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038
7039 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
7040 (tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
7041 val = tr32(TG3PCI_PCISTATE);
7042 val |= PCISTATE_RETRY_SAME_DMA;
7043 tw32(TG3PCI_PCISTATE, val);
7044 }
7045
Matt Carlson0d3031d2007-10-10 18:02:43 -07007046 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
7047 /* Allow reads and writes to the
7048 * APE register and memory space.
7049 */
7050 val = tr32(TG3PCI_PCISTATE);
7051 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
7052 PCISTATE_ALLOW_APE_SHMEM_WR;
7053 tw32(TG3PCI_PCISTATE, val);
7054 }
7055
Linus Torvalds1da177e2005-04-16 15:20:36 -07007056 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
7057 /* Enable some hw fixes. */
7058 val = tr32(TG3PCI_MSI_DATA);
7059 val |= (1 << 26) | (1 << 28) | (1 << 29);
7060 tw32(TG3PCI_MSI_DATA, val);
7061 }
7062
7063 /* Descriptor ring init may make accesses to the
7064 * NIC SRAM area to setup the TX descriptors, so we
7065 * can only do this after the hardware has been
7066 * successfully reset.
7067 */
Michael Chan32d8c572006-07-25 16:38:29 -07007068 err = tg3_init_rings(tp);
7069 if (err)
7070 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071
Matt Carlson9936bcf2007-10-10 18:03:07 -07007072 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
Matt Carlson57e69832008-05-25 23:48:31 -07007073 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761 &&
7074 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007075 /* This value is determined during the probe time DMA
7076 * engine test, tg3_test_dma.
7077 */
7078 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
7079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080
7081 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
7082 GRC_MODE_4X_NIC_SEND_RINGS |
7083 GRC_MODE_NO_TX_PHDR_CSUM |
7084 GRC_MODE_NO_RX_PHDR_CSUM);
7085 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07007086
7087 /* Pseudo-header checksum is done by hardware logic and not
7088 * the offload processers, so make the chip do the pseudo-
7089 * header checksums on receive. For transmit it is more
7090 * convenient to do the pseudo-header checksum in software
7091 * as Linux does that on transmit for us in all cases.
7092 */
7093 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094
7095 tw32(GRC_MODE,
7096 tp->grc_mode |
7097 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
7098
7099 /* Setup the timer prescalar register. Clock is always 66Mhz. */
7100 val = tr32(GRC_MISC_CFG);
7101 val &= ~0xff;
7102 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
7103 tw32(GRC_MISC_CFG, val);
7104
7105 /* Initialize MBUF/DESC pool. */
John W. Linvillecbf46852005-04-21 17:01:29 -07007106 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107 /* Do nothing. */
7108 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
7109 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
7110 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
7111 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
7112 else
7113 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
7114 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
7115 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
7116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007117 else if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
7118 int fw_len;
7119
7120 fw_len = (TG3_TSO5_FW_TEXT_LEN +
7121 TG3_TSO5_FW_RODATA_LEN +
7122 TG3_TSO5_FW_DATA_LEN +
7123 TG3_TSO5_FW_SBSS_LEN +
7124 TG3_TSO5_FW_BSS_LEN);
7125 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
7126 tw32(BUFMGR_MB_POOL_ADDR,
7127 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
7128 tw32(BUFMGR_MB_POOL_SIZE,
7129 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
7130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007131
Michael Chan0f893dc2005-07-25 12:30:38 -07007132 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133 tw32(BUFMGR_MB_RDMA_LOW_WATER,
7134 tp->bufmgr_config.mbuf_read_dma_low_water);
7135 tw32(BUFMGR_MB_MACRX_LOW_WATER,
7136 tp->bufmgr_config.mbuf_mac_rx_low_water);
7137 tw32(BUFMGR_MB_HIGH_WATER,
7138 tp->bufmgr_config.mbuf_high_water);
7139 } else {
7140 tw32(BUFMGR_MB_RDMA_LOW_WATER,
7141 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
7142 tw32(BUFMGR_MB_MACRX_LOW_WATER,
7143 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
7144 tw32(BUFMGR_MB_HIGH_WATER,
7145 tp->bufmgr_config.mbuf_high_water_jumbo);
7146 }
7147 tw32(BUFMGR_DMA_LOW_WATER,
7148 tp->bufmgr_config.dma_low_water);
7149 tw32(BUFMGR_DMA_HIGH_WATER,
7150 tp->bufmgr_config.dma_high_water);
7151
7152 tw32(BUFMGR_MODE, BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE);
7153 for (i = 0; i < 2000; i++) {
7154 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
7155 break;
7156 udelay(10);
7157 }
7158 if (i >= 2000) {
7159 printk(KERN_ERR PFX "tg3_reset_hw cannot enable BUFMGR for %s.\n",
7160 tp->dev->name);
7161 return -ENODEV;
7162 }
7163
7164 /* Setup replenish threshold. */
Michael Chanf92905d2006-06-29 20:14:29 -07007165 val = tp->rx_pending / 8;
7166 if (val == 0)
7167 val = 1;
7168 else if (val > tp->rx_std_max_post)
7169 val = tp->rx_std_max_post;
Michael Chanb5d37722006-09-27 16:06:21 -07007170 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7171 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
7172 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
7173
7174 if (val > (TG3_RX_INTERNAL_RING_SZ_5906 / 2))
7175 val = TG3_RX_INTERNAL_RING_SZ_5906 / 2;
7176 }
Michael Chanf92905d2006-06-29 20:14:29 -07007177
7178 tw32(RCVBDI_STD_THRESH, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007179
7180 /* Initialize TG3_BDINFO's at:
7181 * RCVDBDI_STD_BD: standard eth size rx ring
7182 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
7183 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
7184 *
7185 * like so:
7186 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
7187 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
7188 * ring attribute flags
7189 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
7190 *
7191 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
7192 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
7193 *
7194 * The size of each ring is fixed in the firmware, but the location is
7195 * configurable.
7196 */
7197 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
7198 ((u64) tp->rx_std_mapping >> 32));
7199 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
7200 ((u64) tp->rx_std_mapping & 0xffffffff));
7201 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
7202 NIC_SRAM_RX_BUFFER_DESC);
7203
7204 /* Don't even try to program the JUMBO/MINI buffer descriptor
7205 * configs on 5705.
7206 */
7207 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
7208 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS,
7209 RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT);
7210 } else {
7211 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS,
7212 RX_STD_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT);
7213
7214 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
7215 BDINFO_FLAGS_DISABLED);
7216
7217 /* Setup replenish threshold. */
7218 tw32(RCVBDI_JUMBO_THRESH, tp->rx_jumbo_pending / 8);
7219
Michael Chan0f893dc2005-07-25 12:30:38 -07007220 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
7222 ((u64) tp->rx_jumbo_mapping >> 32));
7223 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
7224 ((u64) tp->rx_jumbo_mapping & 0xffffffff));
7225 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
7226 RX_JUMBO_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT);
7227 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
7228 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
7229 } else {
7230 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
7231 BDINFO_FLAGS_DISABLED);
7232 }
7233
7234 }
7235
7236 /* There is only one send ring on 5705/5750, no need to explicitly
7237 * disable the others.
7238 */
7239 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7240 /* Clear out send RCB ring in SRAM. */
7241 for (i = NIC_SRAM_SEND_RCB; i < NIC_SRAM_RCV_RET_RCB; i += TG3_BDINFO_SIZE)
7242 tg3_write_mem(tp, i + TG3_BDINFO_MAXLEN_FLAGS,
7243 BDINFO_FLAGS_DISABLED);
7244 }
7245
7246 tp->tx_prod = 0;
7247 tp->tx_cons = 0;
7248 tw32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW, 0);
7249 tw32_tx_mbox(MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW, 0);
7250
7251 tg3_set_bdinfo(tp, NIC_SRAM_SEND_RCB,
7252 tp->tx_desc_mapping,
7253 (TG3_TX_RING_SIZE <<
7254 BDINFO_FLAGS_MAXLEN_SHIFT),
7255 NIC_SRAM_TX_BUFFER_DESC);
7256
7257 /* There is only one receive return ring on 5705/5750, no need
7258 * to explicitly disable the others.
7259 */
7260 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7261 for (i = NIC_SRAM_RCV_RET_RCB; i < NIC_SRAM_STATS_BLK;
7262 i += TG3_BDINFO_SIZE) {
7263 tg3_write_mem(tp, i + TG3_BDINFO_MAXLEN_FLAGS,
7264 BDINFO_FLAGS_DISABLED);
7265 }
7266 }
7267
7268 tp->rx_rcb_ptr = 0;
7269 tw32_rx_mbox(MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW, 0);
7270
7271 tg3_set_bdinfo(tp, NIC_SRAM_RCV_RET_RCB,
7272 tp->rx_rcb_mapping,
7273 (TG3_RX_RCB_RING_SIZE(tp) <<
7274 BDINFO_FLAGS_MAXLEN_SHIFT),
7275 0);
7276
7277 tp->rx_std_ptr = tp->rx_pending;
7278 tw32_rx_mbox(MAILBOX_RCV_STD_PROD_IDX + TG3_64BIT_REG_LOW,
7279 tp->rx_std_ptr);
7280
Michael Chan0f893dc2005-07-25 12:30:38 -07007281 tp->rx_jumbo_ptr = (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282 tp->rx_jumbo_pending : 0;
7283 tw32_rx_mbox(MAILBOX_RCV_JUMBO_PROD_IDX + TG3_64BIT_REG_LOW,
7284 tp->rx_jumbo_ptr);
7285
7286 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07007287 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007288
7289 /* MTU + ethernet header + FCS + optional VLAN tag */
7290 tw32(MAC_RX_MTU_SIZE, tp->dev->mtu + ETH_HLEN + 8);
7291
7292 /* The slot time is changed by tg3_setup_phy if we
7293 * run at gigabit with half duplex.
7294 */
7295 tw32(MAC_TX_LENGTHS,
7296 (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
7297 (6 << TX_LENGTHS_IPG_SHIFT) |
7298 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
7299
7300 /* Receive rules. */
7301 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
7302 tw32(RCVLPC_CONFIG, 0x0181);
7303
7304 /* Calculate RDMAC_MODE setting early, we need it to determine
7305 * the RCVLPC_STATE_ENABLE mask.
7306 */
7307 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
7308 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
7309 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
7310 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
7311 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07007312
Matt Carlson57e69832008-05-25 23:48:31 -07007313 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
7314 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Matt Carlsond30cdd22007-10-07 23:28:35 -07007315 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
7316 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
7317 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
7318
Michael Chan85e94ce2005-04-21 17:05:28 -07007319 /* If statement applies to 5705 and 5750 PCI devices only */
7320 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
7321 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
7322 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07007324 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
7326 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
7327 !(tp->tg3_flags2 & TG3_FLG2_IS_5788)) {
7328 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
7329 }
7330 }
7331
Michael Chan85e94ce2005-04-21 17:05:28 -07007332 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
7333 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
7334
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
7336 rdmac_mode |= (1 << 27);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337
7338 /* Receive/send statistics. */
Michael Chan16613942006-06-29 20:15:13 -07007339 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
7340 val = tr32(RCVLPC_STATS_ENABLE);
7341 val &= ~RCVLPC_STATSENAB_DACK_FIX;
7342 tw32(RCVLPC_STATS_ENABLE, val);
7343 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
7344 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345 val = tr32(RCVLPC_STATS_ENABLE);
7346 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
7347 tw32(RCVLPC_STATS_ENABLE, val);
7348 } else {
7349 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
7350 }
7351 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
7352 tw32(SNDDATAI_STATSENAB, 0xffffff);
7353 tw32(SNDDATAI_STATSCTRL,
7354 (SNDDATAI_SCTRL_ENABLE |
7355 SNDDATAI_SCTRL_FASTUPD));
7356
7357 /* Setup host coalescing engine. */
7358 tw32(HOSTCC_MODE, 0);
7359 for (i = 0; i < 2000; i++) {
7360 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
7361 break;
7362 udelay(10);
7363 }
7364
Michael Chand244c892005-07-05 14:42:33 -07007365 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007366
7367 /* set status block DMA address */
7368 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7369 ((u64) tp->status_mapping >> 32));
7370 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7371 ((u64) tp->status_mapping & 0xffffffff));
7372
7373 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7374 /* Status/statistics block address. See tg3_timer,
7375 * the tg3_periodic_fetch_stats call there, and
7376 * tg3_get_stats to see how this works for 5705/5750 chips.
7377 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7379 ((u64) tp->stats_mapping >> 32));
7380 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7381 ((u64) tp->stats_mapping & 0xffffffff));
7382 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
7383 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
7384 }
7385
7386 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
7387
7388 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
7389 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
7390 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7391 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
7392
7393 /* Clear statistics/status block in chip, and status block in ram. */
7394 for (i = NIC_SRAM_STATS_BLK;
7395 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
7396 i += sizeof(u32)) {
7397 tg3_write_mem(tp, i, 0);
7398 udelay(40);
7399 }
7400 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
7401
Michael Chanc94e3942005-09-27 12:12:42 -07007402 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
7403 tp->tg3_flags2 &= ~TG3_FLG2_PARALLEL_DETECT;
7404 /* reset to prevent losing 1st rx packet intermittently */
7405 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7406 udelay(10);
7407 }
7408
Linus Torvalds1da177e2005-04-16 15:20:36 -07007409 tp->mac_mode = MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
7410 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07007411 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
7412 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
7413 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
7414 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007415 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
7416 udelay(40);
7417
Michael Chan314fba32005-04-21 17:07:04 -07007418 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Michael Chan9d26e212006-12-07 00:21:14 -08007419 * If TG3_FLG2_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07007420 * register to preserve the GPIO settings for LOMs. The GPIOs,
7421 * whether used as inputs or outputs, are set by boot code after
7422 * reset.
7423 */
Michael Chan9d26e212006-12-07 00:21:14 -08007424 if (!(tp->tg3_flags2 & TG3_FLG2_IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07007425 u32 gpio_mask;
7426
Michael Chan9d26e212006-12-07 00:21:14 -08007427 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
7428 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
7429 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07007430
7431 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
7432 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
7433 GRC_LCLCTRL_GPIO_OUTPUT3;
7434
Michael Chanaf36e6b2006-03-23 01:28:06 -08007435 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
7436 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
7437
Gary Zambranoaaf84462007-05-05 11:51:45 -07007438 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07007439 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
7440
7441 /* GPIO1 must be driven high for eeprom write protect */
Michael Chan9d26e212006-12-07 00:21:14 -08007442 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT)
7443 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
7444 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07007445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
7447 udelay(100);
7448
Michael Chan09ee9292005-08-09 20:17:00 -07007449 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0);
David S. Millerfac9b832005-05-18 22:46:34 -07007450 tp->last_tag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451
7452 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7453 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
7454 udelay(40);
7455 }
7456
7457 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
7458 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
7459 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
7460 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
7461 WDMAC_MODE_LNGREAD_ENAB);
7462
Michael Chan85e94ce2005-04-21 17:05:28 -07007463 /* If statement applies to 5705 and 5750 PCI devices only */
7464 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
7465 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
7466 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467 if ((tp->tg3_flags & TG3_FLG2_TSO_CAPABLE) &&
7468 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
7469 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
7470 /* nothing */
7471 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
7472 !(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
7473 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
7474 val |= WDMAC_MODE_RX_ACCEL;
7475 }
7476 }
7477
Michael Chand9ab5ad2006-03-20 22:27:35 -08007478 /* Enable host coalescing bug fix */
Michael Chanaf36e6b2006-03-23 01:28:06 -08007479 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755) ||
Matt Carlsond30cdd22007-10-07 23:28:35 -07007480 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787) ||
Matt Carlson9936bcf2007-10-10 18:03:07 -07007481 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784) ||
Matt Carlson57e69832008-05-25 23:48:31 -07007482 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) ||
7483 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785))
Matt Carlsonf51f3562008-05-25 23:45:08 -07007484 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad2006-03-20 22:27:35 -08007485
Linus Torvalds1da177e2005-04-16 15:20:36 -07007486 tw32_f(WDMAC_MODE, val);
7487 udelay(40);
7488
Matt Carlson9974a352007-10-07 23:27:28 -07007489 if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
7490 u16 pcix_cmd;
7491
7492 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7493 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07007495 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
7496 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07007498 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
7499 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500 }
Matt Carlson9974a352007-10-07 23:27:28 -07007501 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7502 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503 }
7504
7505 tw32_f(RDMAC_MODE, rdmac_mode);
7506 udelay(40);
7507
7508 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
7509 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7510 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07007511
7512 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
7513 tw32(SNDDATAC_MODE,
7514 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
7515 else
7516 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
7517
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
7519 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
7520 tw32(RCVDBDI_MODE, RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ);
7521 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
7523 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007524 tw32(SNDBDI_MODE, SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE);
7525 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
7526
7527 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
7528 err = tg3_load_5701_a0_firmware_fix(tp);
7529 if (err)
7530 return err;
7531 }
7532
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
7534 err = tg3_load_tso_firmware(tp);
7535 if (err)
7536 return err;
7537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007538
7539 tp->tx_mode = TX_MODE_ENABLE;
7540 tw32_f(MAC_TX_MODE, tp->tx_mode);
7541 udelay(100);
7542
7543 tp->rx_mode = RX_MODE_ENABLE;
Matt Carlson9936bcf2007-10-10 18:03:07 -07007544 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlson57e69832008-05-25 23:48:31 -07007545 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
7546 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
7547 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chanaf36e6b2006-03-23 01:28:06 -08007548 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
7549
Linus Torvalds1da177e2005-04-16 15:20:36 -07007550 tw32_f(MAC_RX_MODE, tp->rx_mode);
7551 udelay(10);
7552
Linus Torvalds1da177e2005-04-16 15:20:36 -07007553 tw32(MAC_LED_CTRL, tp->led_ctrl);
7554
7555 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Michael Chanc94e3942005-09-27 12:12:42 -07007556 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7558 udelay(10);
7559 }
7560 tw32_f(MAC_RX_MODE, tp->rx_mode);
7561 udelay(10);
7562
7563 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
7564 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
7565 !(tp->tg3_flags2 & TG3_FLG2_SERDES_PREEMPHASIS)) {
7566 /* Set drive transmission level to 1.2V */
7567 /* only if the signal pre-emphasis bit is not set */
7568 val = tr32(MAC_SERDES_CFG);
7569 val &= 0xfffff000;
7570 val |= 0x880;
7571 tw32(MAC_SERDES_CFG, val);
7572 }
7573 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
7574 tw32(MAC_SERDES_CFG, 0x616000);
7575 }
7576
7577 /* Prevent chip from dropping frames when flow control
7578 * is enabled.
7579 */
7580 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, 2);
7581
7582 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
7583 (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
7584 /* Use hardware link auto-negotiation */
7585 tp->tg3_flags2 |= TG3_FLG2_HW_AUTONEG;
7586 }
7587
Michael Chand4d2c552006-03-20 17:47:20 -08007588 if ((tp->tg3_flags2 & TG3_FLG2_MII_SERDES) &&
7589 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
7590 u32 tmp;
7591
7592 tmp = tr32(SERDES_RX_CTRL);
7593 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
7594 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
7595 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
7596 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
7597 }
7598
Matt Carlsondd477002008-05-25 23:45:58 -07007599 if (!(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
7600 if (tp->link_config.phy_is_low_power) {
7601 tp->link_config.phy_is_low_power = 0;
7602 tp->link_config.speed = tp->link_config.orig_speed;
7603 tp->link_config.duplex = tp->link_config.orig_duplex;
7604 tp->link_config.autoneg = tp->link_config.orig_autoneg;
7605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606
Matt Carlsondd477002008-05-25 23:45:58 -07007607 err = tg3_setup_phy(tp, 0);
7608 if (err)
7609 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610
Matt Carlsondd477002008-05-25 23:45:58 -07007611 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
7612 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906) {
7613 u32 tmp;
7614
7615 /* Clear CRC stats. */
7616 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
7617 tg3_writephy(tp, MII_TG3_TEST1,
7618 tmp | MII_TG3_TEST1_CRC_EN);
7619 tg3_readphy(tp, 0x14, &tmp);
7620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621 }
7622 }
7623
7624 __tg3_set_rx_mode(tp->dev);
7625
7626 /* Initialize receive rules. */
7627 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
7628 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
7629 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
7630 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
7631
Michael Chan4cf78e42005-07-25 12:29:19 -07007632 if ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) &&
Michael Chana4e2b342005-10-26 15:46:52 -07007633 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007634 limit = 8;
7635 else
7636 limit = 16;
7637 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
7638 limit -= 4;
7639 switch (limit) {
7640 case 16:
7641 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
7642 case 15:
7643 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
7644 case 14:
7645 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
7646 case 13:
7647 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
7648 case 12:
7649 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
7650 case 11:
7651 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
7652 case 10:
7653 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
7654 case 9:
7655 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
7656 case 8:
7657 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
7658 case 7:
7659 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
7660 case 6:
7661 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
7662 case 5:
7663 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
7664 case 4:
7665 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
7666 case 3:
7667 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
7668 case 2:
7669 case 1:
7670
7671 default:
7672 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674
Matt Carlson9ce768e2007-10-11 19:49:11 -07007675 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)
7676 /* Write our heartbeat update interval to APE. */
7677 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
7678 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07007679
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
7681
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682 return 0;
7683}
7684
7685/* Called at device open time to get the chip ready for
7686 * packet processing. Invoked with tp->lock held.
7687 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007688static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690 tg3_switch_clocks(tp);
7691
7692 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
7693
Matt Carlson2f751b62008-08-04 23:17:34 -07007694 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695}
7696
7697#define TG3_STAT_ADD32(PSTAT, REG) \
7698do { u32 __val = tr32(REG); \
7699 (PSTAT)->low += __val; \
7700 if ((PSTAT)->low < __val) \
7701 (PSTAT)->high += 1; \
7702} while (0)
7703
7704static void tg3_periodic_fetch_stats(struct tg3 *tp)
7705{
7706 struct tg3_hw_stats *sp = tp->hw_stats;
7707
7708 if (!netif_carrier_ok(tp->dev))
7709 return;
7710
7711 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
7712 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
7713 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
7714 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
7715 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
7716 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
7717 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
7718 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
7719 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
7720 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
7721 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
7722 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
7723 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
7724
7725 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
7726 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
7727 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
7728 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
7729 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
7730 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
7731 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
7732 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
7733 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
7734 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
7735 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
7736 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
7737 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
7738 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07007739
7740 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
7741 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
7742 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007743}
7744
7745static void tg3_timer(unsigned long __opaque)
7746{
7747 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748
Michael Chanf475f162006-03-27 23:20:14 -08007749 if (tp->irq_sync)
7750 goto restart_timer;
7751
David S. Millerf47c11e2005-06-24 20:18:35 -07007752 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753
David S. Millerfac9b832005-05-18 22:46:34 -07007754 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
7755 /* All of this garbage is because when using non-tagged
7756 * IRQ status the mailbox/status_block protocol the chip
7757 * uses with the cpu is race prone.
7758 */
7759 if (tp->hw_status->status & SD_STATUS_UPDATED) {
7760 tw32(GRC_LOCAL_CTRL,
7761 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
7762 } else {
7763 tw32(HOSTCC_MODE, tp->coalesce_mode |
7764 (HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW));
7765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766
David S. Millerfac9b832005-05-18 22:46:34 -07007767 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
7768 tp->tg3_flags2 |= TG3_FLG2_RESTART_TIMER;
David S. Millerf47c11e2005-06-24 20:18:35 -07007769 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07007770 schedule_work(&tp->reset_task);
7771 return;
7772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007773 }
7774
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775 /* This part only runs once per second. */
7776 if (!--tp->timer_counter) {
David S. Millerfac9b832005-05-18 22:46:34 -07007777 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
7778 tg3_periodic_fetch_stats(tp);
7779
Linus Torvalds1da177e2005-04-16 15:20:36 -07007780 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
7781 u32 mac_stat;
7782 int phy_event;
7783
7784 mac_stat = tr32(MAC_STATUS);
7785
7786 phy_event = 0;
7787 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) {
7788 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
7789 phy_event = 1;
7790 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
7791 phy_event = 1;
7792
7793 if (phy_event)
7794 tg3_setup_phy(tp, 0);
7795 } else if (tp->tg3_flags & TG3_FLAG_POLL_SERDES) {
7796 u32 mac_stat = tr32(MAC_STATUS);
7797 int need_setup = 0;
7798
7799 if (netif_carrier_ok(tp->dev) &&
7800 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
7801 need_setup = 1;
7802 }
7803 if (! netif_carrier_ok(tp->dev) &&
7804 (mac_stat & (MAC_STATUS_PCS_SYNCED |
7805 MAC_STATUS_SIGNAL_DET))) {
7806 need_setup = 1;
7807 }
7808 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07007809 if (!tp->serdes_counter) {
7810 tw32_f(MAC_MODE,
7811 (tp->mac_mode &
7812 ~MAC_MODE_PORT_MODE_MASK));
7813 udelay(40);
7814 tw32_f(MAC_MODE, tp->mac_mode);
7815 udelay(40);
7816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817 tg3_setup_phy(tp, 0);
7818 }
Michael Chan747e8f82005-07-25 12:33:22 -07007819 } else if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
7820 tg3_serdes_parallel_detect(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007821
7822 tp->timer_counter = tp->timer_multiplier;
7823 }
7824
Michael Chan130b8e42006-09-27 16:00:40 -07007825 /* Heartbeat is only sent once every 2 seconds.
7826 *
7827 * The heartbeat is to tell the ASF firmware that the host
7828 * driver is still alive. In the event that the OS crashes,
7829 * ASF needs to reset the hardware to free up the FIFO space
7830 * that may be filled with rx packets destined for the host.
7831 * If the FIFO is full, ASF will no longer function properly.
7832 *
7833 * Unintended resets have been reported on real time kernels
7834 * where the timer doesn't run on time. Netpoll will also have
7835 * same problem.
7836 *
7837 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
7838 * to check the ring condition when the heartbeat is expiring
7839 * before doing the reset. This will prevent most unintended
7840 * resets.
7841 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842 if (!--tp->asf_counter) {
7843 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
7844 u32 val;
7845
Matt Carlson7c5026a2008-05-02 16:49:29 -07007846 tg3_wait_for_event_ack(tp);
7847
Michael Chanbbadf502006-04-06 21:46:34 -07007848 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07007849 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07007850 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Michael Chan28fbef72005-10-26 15:48:35 -07007851 /* 5 seconds timeout */
Michael Chanbbadf502006-04-06 21:46:34 -07007852 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853 val = tr32(GRC_RX_CPU_EVENT);
Matt Carlson7c5026a2008-05-02 16:49:29 -07007854 val |= GRC_RX_CPU_DRIVER_EVENT;
7855 tw32_f(GRC_RX_CPU_EVENT, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007856 }
7857 tp->asf_counter = tp->asf_multiplier;
7858 }
7859
David S. Millerf47c11e2005-06-24 20:18:35 -07007860 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007861
Michael Chanf475f162006-03-27 23:20:14 -08007862restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863 tp->timer.expires = jiffies + tp->timer_offset;
7864 add_timer(&tp->timer);
7865}
7866
Adrian Bunk81789ef2006-03-20 23:00:14 -08007867static int tg3_request_irq(struct tg3 *tp)
Michael Chanfcfa0a32006-03-20 22:28:41 -08007868{
David Howells7d12e782006-10-05 14:55:46 +01007869 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007870 unsigned long flags;
7871 struct net_device *dev = tp->dev;
7872
7873 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
7874 fn = tg3_msi;
7875 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
7876 fn = tg3_msi_1shot;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07007877 flags = IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007878 } else {
7879 fn = tg3_interrupt;
7880 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
7881 fn = tg3_interrupt_tagged;
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07007882 flags = IRQF_SHARED | IRQF_SAMPLE_RANDOM;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007883 }
7884 return (request_irq(tp->pdev->irq, fn, flags, dev->name, dev));
7885}
7886
Michael Chan79381092005-04-21 17:13:59 -07007887static int tg3_test_interrupt(struct tg3 *tp)
7888{
7889 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07007890 int err, i, intr_ok = 0;
Michael Chan79381092005-04-21 17:13:59 -07007891
Michael Chand4bc3922005-05-29 14:59:20 -07007892 if (!netif_running(dev))
7893 return -ENODEV;
7894
Michael Chan79381092005-04-21 17:13:59 -07007895 tg3_disable_ints(tp);
7896
7897 free_irq(tp->pdev->irq, dev);
7898
7899 err = request_irq(tp->pdev->irq, tg3_test_isr,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07007900 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, dev);
Michael Chan79381092005-04-21 17:13:59 -07007901 if (err)
7902 return err;
7903
Michael Chan38f38432005-09-05 17:53:32 -07007904 tp->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07007905 tg3_enable_ints(tp);
7906
7907 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
7908 HOSTCC_MODE_NOW);
7909
7910 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07007911 u32 int_mbox, misc_host_ctrl;
7912
Michael Chan09ee9292005-08-09 20:17:00 -07007913 int_mbox = tr32_mailbox(MAILBOX_INTERRUPT_0 +
7914 TG3_64BIT_REG_LOW);
Michael Chanb16250e2006-09-27 16:10:14 -07007915 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
7916
7917 if ((int_mbox != 0) ||
7918 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
7919 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07007920 break;
Michael Chanb16250e2006-09-27 16:10:14 -07007921 }
7922
Michael Chan79381092005-04-21 17:13:59 -07007923 msleep(10);
7924 }
7925
7926 tg3_disable_ints(tp);
7927
7928 free_irq(tp->pdev->irq, dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007929
Michael Chanfcfa0a32006-03-20 22:28:41 -08007930 err = tg3_request_irq(tp);
Michael Chan79381092005-04-21 17:13:59 -07007931
7932 if (err)
7933 return err;
7934
Michael Chanb16250e2006-09-27 16:10:14 -07007935 if (intr_ok)
Michael Chan79381092005-04-21 17:13:59 -07007936 return 0;
7937
7938 return -EIO;
7939}
7940
7941/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
7942 * successfully restored
7943 */
7944static int tg3_test_msi(struct tg3 *tp)
7945{
7946 struct net_device *dev = tp->dev;
7947 int err;
7948 u16 pci_cmd;
7949
7950 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSI))
7951 return 0;
7952
7953 /* Turn off SERR reporting in case MSI terminates with Master
7954 * Abort.
7955 */
7956 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
7957 pci_write_config_word(tp->pdev, PCI_COMMAND,
7958 pci_cmd & ~PCI_COMMAND_SERR);
7959
7960 err = tg3_test_interrupt(tp);
7961
7962 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
7963
7964 if (!err)
7965 return 0;
7966
7967 /* other failures */
7968 if (err != -EIO)
7969 return err;
7970
7971 /* MSI test failed, go back to INTx mode */
7972 printk(KERN_WARNING PFX "%s: No interrupt was generated using MSI, "
7973 "switching to INTx mode. Please report this failure to "
7974 "the PCI maintainer and include system chipset information.\n",
7975 tp->dev->name);
7976
7977 free_irq(tp->pdev->irq, dev);
7978 pci_disable_msi(tp->pdev);
7979
7980 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
7981
Michael Chanfcfa0a32006-03-20 22:28:41 -08007982 err = tg3_request_irq(tp);
Michael Chan79381092005-04-21 17:13:59 -07007983 if (err)
7984 return err;
7985
7986 /* Need to reset the chip because the MSI cycle may have terminated
7987 * with Master Abort.
7988 */
David S. Millerf47c11e2005-06-24 20:18:35 -07007989 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07007990
Michael Chan944d9802005-05-29 14:57:48 -07007991 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007992 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07007993
David S. Millerf47c11e2005-06-24 20:18:35 -07007994 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07007995
7996 if (err)
7997 free_irq(tp->pdev->irq, dev);
7998
7999 return err;
8000}
8001
Linus Torvalds1da177e2005-04-16 15:20:36 -07008002static int tg3_open(struct net_device *dev)
8003{
8004 struct tg3 *tp = netdev_priv(dev);
8005 int err;
8006
Michael Chanc49a1562006-12-17 17:07:29 -08008007 netif_carrier_off(tp->dev);
8008
Michael Chanbc1c7562006-03-20 17:48:03 -08008009 err = tg3_set_power_state(tp, PCI_D0);
Matt Carlson2f751b62008-08-04 23:17:34 -07008010 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08008011 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07008012
8013 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08008014
Linus Torvalds1da177e2005-04-16 15:20:36 -07008015 tg3_disable_ints(tp);
8016 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
8017
David S. Millerf47c11e2005-06-24 20:18:35 -07008018 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008019
8020 /* The placement of this call is tied
8021 * to the setup and use of Host TX descriptors.
8022 */
8023 err = tg3_alloc_consistent(tp);
8024 if (err)
8025 return err;
8026
Michael Chan7544b092007-05-05 13:08:32 -07008027 if (tp->tg3_flags & TG3_FLAG_SUPPORT_MSI) {
David S. Millerfac9b832005-05-18 22:46:34 -07008028 /* All MSI supporting chips should support tagged
8029 * status. Assert that this is the case.
8030 */
8031 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
8032 printk(KERN_WARNING PFX "%s: MSI without TAGGED? "
8033 "Not using MSI.\n", tp->dev->name);
8034 } else if (pci_enable_msi(tp->pdev) == 0) {
Michael Chan88b06bc2005-04-21 17:13:25 -07008035 u32 msi_mode;
8036
8037 msi_mode = tr32(MSGINT_MODE);
8038 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
8039 tp->tg3_flags2 |= TG3_FLG2_USING_MSI;
8040 }
8041 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008042 err = tg3_request_irq(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008043
8044 if (err) {
Michael Chan88b06bc2005-04-21 17:13:25 -07008045 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
8046 pci_disable_msi(tp->pdev);
8047 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
8048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008049 tg3_free_consistent(tp);
8050 return err;
8051 }
8052
Stephen Hemmingerbea33482007-10-03 16:41:36 -07008053 napi_enable(&tp->napi);
8054
David S. Millerf47c11e2005-06-24 20:18:35 -07008055 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008056
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008057 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008058 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07008059 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008060 tg3_free_rings(tp);
8061 } else {
David S. Millerfac9b832005-05-18 22:46:34 -07008062 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
8063 tp->timer_offset = HZ;
8064 else
8065 tp->timer_offset = HZ / 10;
8066
8067 BUG_ON(tp->timer_offset > HZ);
8068 tp->timer_counter = tp->timer_multiplier =
8069 (HZ / tp->timer_offset);
8070 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07008071 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072
8073 init_timer(&tp->timer);
8074 tp->timer.expires = jiffies + tp->timer_offset;
8075 tp->timer.data = (unsigned long) tp;
8076 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008077 }
8078
David S. Millerf47c11e2005-06-24 20:18:35 -07008079 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008080
8081 if (err) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07008082 napi_disable(&tp->napi);
Michael Chan88b06bc2005-04-21 17:13:25 -07008083 free_irq(tp->pdev->irq, dev);
8084 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
8085 pci_disable_msi(tp->pdev);
8086 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
8087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008088 tg3_free_consistent(tp);
8089 return err;
8090 }
8091
Michael Chan79381092005-04-21 17:13:59 -07008092 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
8093 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07008094
Michael Chan79381092005-04-21 17:13:59 -07008095 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07008096 tg3_full_lock(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07008097
8098 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
8099 pci_disable_msi(tp->pdev);
8100 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
8101 }
Michael Chan944d9802005-05-29 14:57:48 -07008102 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07008103 tg3_free_rings(tp);
8104 tg3_free_consistent(tp);
8105
David S. Millerf47c11e2005-06-24 20:18:35 -07008106 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07008107
Stephen Hemmingerbea33482007-10-03 16:41:36 -07008108 napi_disable(&tp->napi);
8109
Michael Chan79381092005-04-21 17:13:59 -07008110 return err;
8111 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008112
8113 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
8114 if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI) {
Michael Chanb5d37722006-09-27 16:06:21 -07008115 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008116
Michael Chanb5d37722006-09-27 16:06:21 -07008117 tw32(PCIE_TRANSACTION_CFG,
8118 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008119 }
8120 }
Michael Chan79381092005-04-21 17:13:59 -07008121 }
8122
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07008123 tg3_phy_start(tp);
8124
David S. Millerf47c11e2005-06-24 20:18:35 -07008125 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008126
Michael Chan79381092005-04-21 17:13:59 -07008127 add_timer(&tp->timer);
8128 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129 tg3_enable_ints(tp);
8130
David S. Millerf47c11e2005-06-24 20:18:35 -07008131 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008132
8133 netif_start_queue(dev);
8134
8135 return 0;
8136}
8137
8138#if 0
8139/*static*/ void tg3_dump_state(struct tg3 *tp)
8140{
8141 u32 val32, val32_2, val32_3, val32_4, val32_5;
8142 u16 val16;
8143 int i;
8144
8145 pci_read_config_word(tp->pdev, PCI_STATUS, &val16);
8146 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE, &val32);
8147 printk("DEBUG: PCI status [%04x] TG3PCI state[%08x]\n",
8148 val16, val32);
8149
8150 /* MAC block */
8151 printk("DEBUG: MAC_MODE[%08x] MAC_STATUS[%08x]\n",
8152 tr32(MAC_MODE), tr32(MAC_STATUS));
8153 printk(" MAC_EVENT[%08x] MAC_LED_CTRL[%08x]\n",
8154 tr32(MAC_EVENT), tr32(MAC_LED_CTRL));
8155 printk("DEBUG: MAC_TX_MODE[%08x] MAC_TX_STATUS[%08x]\n",
8156 tr32(MAC_TX_MODE), tr32(MAC_TX_STATUS));
8157 printk(" MAC_RX_MODE[%08x] MAC_RX_STATUS[%08x]\n",
8158 tr32(MAC_RX_MODE), tr32(MAC_RX_STATUS));
8159
8160 /* Send data initiator control block */
8161 printk("DEBUG: SNDDATAI_MODE[%08x] SNDDATAI_STATUS[%08x]\n",
8162 tr32(SNDDATAI_MODE), tr32(SNDDATAI_STATUS));
8163 printk(" SNDDATAI_STATSCTRL[%08x]\n",
8164 tr32(SNDDATAI_STATSCTRL));
8165
8166 /* Send data completion control block */
8167 printk("DEBUG: SNDDATAC_MODE[%08x]\n", tr32(SNDDATAC_MODE));
8168
8169 /* Send BD ring selector block */
8170 printk("DEBUG: SNDBDS_MODE[%08x] SNDBDS_STATUS[%08x]\n",
8171 tr32(SNDBDS_MODE), tr32(SNDBDS_STATUS));
8172
8173 /* Send BD initiator control block */
8174 printk("DEBUG: SNDBDI_MODE[%08x] SNDBDI_STATUS[%08x]\n",
8175 tr32(SNDBDI_MODE), tr32(SNDBDI_STATUS));
8176
8177 /* Send BD completion control block */
8178 printk("DEBUG: SNDBDC_MODE[%08x]\n", tr32(SNDBDC_MODE));
8179
8180 /* Receive list placement control block */
8181 printk("DEBUG: RCVLPC_MODE[%08x] RCVLPC_STATUS[%08x]\n",
8182 tr32(RCVLPC_MODE), tr32(RCVLPC_STATUS));
8183 printk(" RCVLPC_STATSCTRL[%08x]\n",
8184 tr32(RCVLPC_STATSCTRL));
8185
8186 /* Receive data and receive BD initiator control block */
8187 printk("DEBUG: RCVDBDI_MODE[%08x] RCVDBDI_STATUS[%08x]\n",
8188 tr32(RCVDBDI_MODE), tr32(RCVDBDI_STATUS));
8189
8190 /* Receive data completion control block */
8191 printk("DEBUG: RCVDCC_MODE[%08x]\n",
8192 tr32(RCVDCC_MODE));
8193
8194 /* Receive BD initiator control block */
8195 printk("DEBUG: RCVBDI_MODE[%08x] RCVBDI_STATUS[%08x]\n",
8196 tr32(RCVBDI_MODE), tr32(RCVBDI_STATUS));
8197
8198 /* Receive BD completion control block */
8199 printk("DEBUG: RCVCC_MODE[%08x] RCVCC_STATUS[%08x]\n",
8200 tr32(RCVCC_MODE), tr32(RCVCC_STATUS));
8201
8202 /* Receive list selector control block */
8203 printk("DEBUG: RCVLSC_MODE[%08x] RCVLSC_STATUS[%08x]\n",
8204 tr32(RCVLSC_MODE), tr32(RCVLSC_STATUS));
8205
8206 /* Mbuf cluster free block */
8207 printk("DEBUG: MBFREE_MODE[%08x] MBFREE_STATUS[%08x]\n",
8208 tr32(MBFREE_MODE), tr32(MBFREE_STATUS));
8209
8210 /* Host coalescing control block */
8211 printk("DEBUG: HOSTCC_MODE[%08x] HOSTCC_STATUS[%08x]\n",
8212 tr32(HOSTCC_MODE), tr32(HOSTCC_STATUS));
8213 printk("DEBUG: HOSTCC_STATS_BLK_HOST_ADDR[%08x%08x]\n",
8214 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
8215 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
8216 printk("DEBUG: HOSTCC_STATUS_BLK_HOST_ADDR[%08x%08x]\n",
8217 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
8218 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
8219 printk("DEBUG: HOSTCC_STATS_BLK_NIC_ADDR[%08x]\n",
8220 tr32(HOSTCC_STATS_BLK_NIC_ADDR));
8221 printk("DEBUG: HOSTCC_STATUS_BLK_NIC_ADDR[%08x]\n",
8222 tr32(HOSTCC_STATUS_BLK_NIC_ADDR));
8223
8224 /* Memory arbiter control block */
8225 printk("DEBUG: MEMARB_MODE[%08x] MEMARB_STATUS[%08x]\n",
8226 tr32(MEMARB_MODE), tr32(MEMARB_STATUS));
8227
8228 /* Buffer manager control block */
8229 printk("DEBUG: BUFMGR_MODE[%08x] BUFMGR_STATUS[%08x]\n",
8230 tr32(BUFMGR_MODE), tr32(BUFMGR_STATUS));
8231 printk("DEBUG: BUFMGR_MB_POOL_ADDR[%08x] BUFMGR_MB_POOL_SIZE[%08x]\n",
8232 tr32(BUFMGR_MB_POOL_ADDR), tr32(BUFMGR_MB_POOL_SIZE));
8233 printk("DEBUG: BUFMGR_DMA_DESC_POOL_ADDR[%08x] "
8234 "BUFMGR_DMA_DESC_POOL_SIZE[%08x]\n",
8235 tr32(BUFMGR_DMA_DESC_POOL_ADDR),
8236 tr32(BUFMGR_DMA_DESC_POOL_SIZE));
8237
8238 /* Read DMA control block */
8239 printk("DEBUG: RDMAC_MODE[%08x] RDMAC_STATUS[%08x]\n",
8240 tr32(RDMAC_MODE), tr32(RDMAC_STATUS));
8241
8242 /* Write DMA control block */
8243 printk("DEBUG: WDMAC_MODE[%08x] WDMAC_STATUS[%08x]\n",
8244 tr32(WDMAC_MODE), tr32(WDMAC_STATUS));
8245
8246 /* DMA completion block */
8247 printk("DEBUG: DMAC_MODE[%08x]\n",
8248 tr32(DMAC_MODE));
8249
8250 /* GRC block */
8251 printk("DEBUG: GRC_MODE[%08x] GRC_MISC_CFG[%08x]\n",
8252 tr32(GRC_MODE), tr32(GRC_MISC_CFG));
8253 printk("DEBUG: GRC_LOCAL_CTRL[%08x]\n",
8254 tr32(GRC_LOCAL_CTRL));
8255
8256 /* TG3_BDINFOs */
8257 printk("DEBUG: RCVDBDI_JUMBO_BD[%08x%08x:%08x:%08x]\n",
8258 tr32(RCVDBDI_JUMBO_BD + 0x0),
8259 tr32(RCVDBDI_JUMBO_BD + 0x4),
8260 tr32(RCVDBDI_JUMBO_BD + 0x8),
8261 tr32(RCVDBDI_JUMBO_BD + 0xc));
8262 printk("DEBUG: RCVDBDI_STD_BD[%08x%08x:%08x:%08x]\n",
8263 tr32(RCVDBDI_STD_BD + 0x0),
8264 tr32(RCVDBDI_STD_BD + 0x4),
8265 tr32(RCVDBDI_STD_BD + 0x8),
8266 tr32(RCVDBDI_STD_BD + 0xc));
8267 printk("DEBUG: RCVDBDI_MINI_BD[%08x%08x:%08x:%08x]\n",
8268 tr32(RCVDBDI_MINI_BD + 0x0),
8269 tr32(RCVDBDI_MINI_BD + 0x4),
8270 tr32(RCVDBDI_MINI_BD + 0x8),
8271 tr32(RCVDBDI_MINI_BD + 0xc));
8272
8273 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x0, &val32);
8274 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x4, &val32_2);
8275 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x8, &val32_3);
8276 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0xc, &val32_4);
8277 printk("DEBUG: SRAM_SEND_RCB_0[%08x%08x:%08x:%08x]\n",
8278 val32, val32_2, val32_3, val32_4);
8279
8280 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x0, &val32);
8281 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x4, &val32_2);
8282 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x8, &val32_3);
8283 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0xc, &val32_4);
8284 printk("DEBUG: SRAM_RCV_RET_RCB_0[%08x%08x:%08x:%08x]\n",
8285 val32, val32_2, val32_3, val32_4);
8286
8287 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x0, &val32);
8288 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x4, &val32_2);
8289 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x8, &val32_3);
8290 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0xc, &val32_4);
8291 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x10, &val32_5);
8292 printk("DEBUG: SRAM_STATUS_BLK[%08x:%08x:%08x:%08x:%08x]\n",
8293 val32, val32_2, val32_3, val32_4, val32_5);
8294
8295 /* SW status block */
8296 printk("DEBUG: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
8297 tp->hw_status->status,
8298 tp->hw_status->status_tag,
8299 tp->hw_status->rx_jumbo_consumer,
8300 tp->hw_status->rx_consumer,
8301 tp->hw_status->rx_mini_consumer,
8302 tp->hw_status->idx[0].rx_producer,
8303 tp->hw_status->idx[0].tx_consumer);
8304
8305 /* SW statistics block */
8306 printk("DEBUG: Host statistics block [%08x:%08x:%08x:%08x]\n",
8307 ((u32 *)tp->hw_stats)[0],
8308 ((u32 *)tp->hw_stats)[1],
8309 ((u32 *)tp->hw_stats)[2],
8310 ((u32 *)tp->hw_stats)[3]);
8311
8312 /* Mailboxes */
8313 printk("DEBUG: SNDHOST_PROD[%08x%08x] SNDNIC_PROD[%08x%08x]\n",
Michael Chan09ee9292005-08-09 20:17:00 -07008314 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x0),
8315 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + 0x4),
8316 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x0),
8317 tr32_mailbox(MAILBOX_SNDNIC_PROD_IDX_0 + 0x4));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318
8319 /* NIC side send descriptors. */
8320 for (i = 0; i < 6; i++) {
8321 unsigned long txd;
8322
8323 txd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_TX_BUFFER_DESC
8324 + (i * sizeof(struct tg3_tx_buffer_desc));
8325 printk("DEBUG: NIC TXD(%d)[%08x:%08x:%08x:%08x]\n",
8326 i,
8327 readl(txd + 0x0), readl(txd + 0x4),
8328 readl(txd + 0x8), readl(txd + 0xc));
8329 }
8330
8331 /* NIC side RX descriptors. */
8332 for (i = 0; i < 6; i++) {
8333 unsigned long rxd;
8334
8335 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_BUFFER_DESC
8336 + (i * sizeof(struct tg3_rx_buffer_desc));
8337 printk("DEBUG: NIC RXD_STD(%d)[0][%08x:%08x:%08x:%08x]\n",
8338 i,
8339 readl(rxd + 0x0), readl(rxd + 0x4),
8340 readl(rxd + 0x8), readl(rxd + 0xc));
8341 rxd += (4 * sizeof(u32));
8342 printk("DEBUG: NIC RXD_STD(%d)[1][%08x:%08x:%08x:%08x]\n",
8343 i,
8344 readl(rxd + 0x0), readl(rxd + 0x4),
8345 readl(rxd + 0x8), readl(rxd + 0xc));
8346 }
8347
8348 for (i = 0; i < 6; i++) {
8349 unsigned long rxd;
8350
8351 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_JUMBO_BUFFER_DESC
8352 + (i * sizeof(struct tg3_rx_buffer_desc));
8353 printk("DEBUG: NIC RXD_JUMBO(%d)[0][%08x:%08x:%08x:%08x]\n",
8354 i,
8355 readl(rxd + 0x0), readl(rxd + 0x4),
8356 readl(rxd + 0x8), readl(rxd + 0xc));
8357 rxd += (4 * sizeof(u32));
8358 printk("DEBUG: NIC RXD_JUMBO(%d)[1][%08x:%08x:%08x:%08x]\n",
8359 i,
8360 readl(rxd + 0x0), readl(rxd + 0x4),
8361 readl(rxd + 0x8), readl(rxd + 0xc));
8362 }
8363}
8364#endif
8365
8366static struct net_device_stats *tg3_get_stats(struct net_device *);
8367static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
8368
8369static int tg3_close(struct net_device *dev)
8370{
8371 struct tg3 *tp = netdev_priv(dev);
8372
Stephen Hemmingerbea33482007-10-03 16:41:36 -07008373 napi_disable(&tp->napi);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07008374 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08008375
Linus Torvalds1da177e2005-04-16 15:20:36 -07008376 netif_stop_queue(dev);
8377
8378 del_timer_sync(&tp->timer);
8379
David S. Millerf47c11e2005-06-24 20:18:35 -07008380 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008381#if 0
8382 tg3_dump_state(tp);
8383#endif
8384
8385 tg3_disable_ints(tp);
8386
Michael Chan944d9802005-05-29 14:57:48 -07008387 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008388 tg3_free_rings(tp);
Michael Chan5cf64b82007-05-05 12:11:21 -07008389 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008390
David S. Millerf47c11e2005-06-24 20:18:35 -07008391 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008392
Michael Chan88b06bc2005-04-21 17:13:25 -07008393 free_irq(tp->pdev->irq, dev);
8394 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
8395 pci_disable_msi(tp->pdev);
8396 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
8397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398
8399 memcpy(&tp->net_stats_prev, tg3_get_stats(tp->dev),
8400 sizeof(tp->net_stats_prev));
8401 memcpy(&tp->estats_prev, tg3_get_estats(tp),
8402 sizeof(tp->estats_prev));
8403
8404 tg3_free_consistent(tp);
8405
Michael Chanbc1c7562006-03-20 17:48:03 -08008406 tg3_set_power_state(tp, PCI_D3hot);
8407
8408 netif_carrier_off(tp->dev);
8409
Linus Torvalds1da177e2005-04-16 15:20:36 -07008410 return 0;
8411}
8412
8413static inline unsigned long get_stat64(tg3_stat64_t *val)
8414{
8415 unsigned long ret;
8416
8417#if (BITS_PER_LONG == 32)
8418 ret = val->low;
8419#else
8420 ret = ((u64)val->high << 32) | ((u64)val->low);
8421#endif
8422 return ret;
8423}
8424
8425static unsigned long calc_crc_errors(struct tg3 *tp)
8426{
8427 struct tg3_hw_stats *hw_stats = tp->hw_stats;
8428
8429 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
8430 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
8431 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008432 u32 val;
8433
David S. Millerf47c11e2005-06-24 20:18:35 -07008434 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08008435 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
8436 tg3_writephy(tp, MII_TG3_TEST1,
8437 val | MII_TG3_TEST1_CRC_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008438 tg3_readphy(tp, 0x14, &val);
8439 } else
8440 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07008441 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008442
8443 tp->phy_crc_errors += val;
8444
8445 return tp->phy_crc_errors;
8446 }
8447
8448 return get_stat64(&hw_stats->rx_fcs_errors);
8449}
8450
8451#define ESTAT_ADD(member) \
8452 estats->member = old_estats->member + \
8453 get_stat64(&hw_stats->member)
8454
8455static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
8456{
8457 struct tg3_ethtool_stats *estats = &tp->estats;
8458 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
8459 struct tg3_hw_stats *hw_stats = tp->hw_stats;
8460
8461 if (!hw_stats)
8462 return old_estats;
8463
8464 ESTAT_ADD(rx_octets);
8465 ESTAT_ADD(rx_fragments);
8466 ESTAT_ADD(rx_ucast_packets);
8467 ESTAT_ADD(rx_mcast_packets);
8468 ESTAT_ADD(rx_bcast_packets);
8469 ESTAT_ADD(rx_fcs_errors);
8470 ESTAT_ADD(rx_align_errors);
8471 ESTAT_ADD(rx_xon_pause_rcvd);
8472 ESTAT_ADD(rx_xoff_pause_rcvd);
8473 ESTAT_ADD(rx_mac_ctrl_rcvd);
8474 ESTAT_ADD(rx_xoff_entered);
8475 ESTAT_ADD(rx_frame_too_long_errors);
8476 ESTAT_ADD(rx_jabbers);
8477 ESTAT_ADD(rx_undersize_packets);
8478 ESTAT_ADD(rx_in_length_errors);
8479 ESTAT_ADD(rx_out_length_errors);
8480 ESTAT_ADD(rx_64_or_less_octet_packets);
8481 ESTAT_ADD(rx_65_to_127_octet_packets);
8482 ESTAT_ADD(rx_128_to_255_octet_packets);
8483 ESTAT_ADD(rx_256_to_511_octet_packets);
8484 ESTAT_ADD(rx_512_to_1023_octet_packets);
8485 ESTAT_ADD(rx_1024_to_1522_octet_packets);
8486 ESTAT_ADD(rx_1523_to_2047_octet_packets);
8487 ESTAT_ADD(rx_2048_to_4095_octet_packets);
8488 ESTAT_ADD(rx_4096_to_8191_octet_packets);
8489 ESTAT_ADD(rx_8192_to_9022_octet_packets);
8490
8491 ESTAT_ADD(tx_octets);
8492 ESTAT_ADD(tx_collisions);
8493 ESTAT_ADD(tx_xon_sent);
8494 ESTAT_ADD(tx_xoff_sent);
8495 ESTAT_ADD(tx_flow_control);
8496 ESTAT_ADD(tx_mac_errors);
8497 ESTAT_ADD(tx_single_collisions);
8498 ESTAT_ADD(tx_mult_collisions);
8499 ESTAT_ADD(tx_deferred);
8500 ESTAT_ADD(tx_excessive_collisions);
8501 ESTAT_ADD(tx_late_collisions);
8502 ESTAT_ADD(tx_collide_2times);
8503 ESTAT_ADD(tx_collide_3times);
8504 ESTAT_ADD(tx_collide_4times);
8505 ESTAT_ADD(tx_collide_5times);
8506 ESTAT_ADD(tx_collide_6times);
8507 ESTAT_ADD(tx_collide_7times);
8508 ESTAT_ADD(tx_collide_8times);
8509 ESTAT_ADD(tx_collide_9times);
8510 ESTAT_ADD(tx_collide_10times);
8511 ESTAT_ADD(tx_collide_11times);
8512 ESTAT_ADD(tx_collide_12times);
8513 ESTAT_ADD(tx_collide_13times);
8514 ESTAT_ADD(tx_collide_14times);
8515 ESTAT_ADD(tx_collide_15times);
8516 ESTAT_ADD(tx_ucast_packets);
8517 ESTAT_ADD(tx_mcast_packets);
8518 ESTAT_ADD(tx_bcast_packets);
8519 ESTAT_ADD(tx_carrier_sense_errors);
8520 ESTAT_ADD(tx_discards);
8521 ESTAT_ADD(tx_errors);
8522
8523 ESTAT_ADD(dma_writeq_full);
8524 ESTAT_ADD(dma_write_prioq_full);
8525 ESTAT_ADD(rxbds_empty);
8526 ESTAT_ADD(rx_discards);
8527 ESTAT_ADD(rx_errors);
8528 ESTAT_ADD(rx_threshold_hit);
8529
8530 ESTAT_ADD(dma_readq_full);
8531 ESTAT_ADD(dma_read_prioq_full);
8532 ESTAT_ADD(tx_comp_queue_full);
8533
8534 ESTAT_ADD(ring_set_send_prod_index);
8535 ESTAT_ADD(ring_status_update);
8536 ESTAT_ADD(nic_irqs);
8537 ESTAT_ADD(nic_avoided_irqs);
8538 ESTAT_ADD(nic_tx_threshold_hit);
8539
8540 return estats;
8541}
8542
8543static struct net_device_stats *tg3_get_stats(struct net_device *dev)
8544{
8545 struct tg3 *tp = netdev_priv(dev);
8546 struct net_device_stats *stats = &tp->net_stats;
8547 struct net_device_stats *old_stats = &tp->net_stats_prev;
8548 struct tg3_hw_stats *hw_stats = tp->hw_stats;
8549
8550 if (!hw_stats)
8551 return old_stats;
8552
8553 stats->rx_packets = old_stats->rx_packets +
8554 get_stat64(&hw_stats->rx_ucast_packets) +
8555 get_stat64(&hw_stats->rx_mcast_packets) +
8556 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008557
Linus Torvalds1da177e2005-04-16 15:20:36 -07008558 stats->tx_packets = old_stats->tx_packets +
8559 get_stat64(&hw_stats->tx_ucast_packets) +
8560 get_stat64(&hw_stats->tx_mcast_packets) +
8561 get_stat64(&hw_stats->tx_bcast_packets);
8562
8563 stats->rx_bytes = old_stats->rx_bytes +
8564 get_stat64(&hw_stats->rx_octets);
8565 stats->tx_bytes = old_stats->tx_bytes +
8566 get_stat64(&hw_stats->tx_octets);
8567
8568 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07008569 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008570 stats->tx_errors = old_stats->tx_errors +
8571 get_stat64(&hw_stats->tx_errors) +
8572 get_stat64(&hw_stats->tx_mac_errors) +
8573 get_stat64(&hw_stats->tx_carrier_sense_errors) +
8574 get_stat64(&hw_stats->tx_discards);
8575
8576 stats->multicast = old_stats->multicast +
8577 get_stat64(&hw_stats->rx_mcast_packets);
8578 stats->collisions = old_stats->collisions +
8579 get_stat64(&hw_stats->tx_collisions);
8580
8581 stats->rx_length_errors = old_stats->rx_length_errors +
8582 get_stat64(&hw_stats->rx_frame_too_long_errors) +
8583 get_stat64(&hw_stats->rx_undersize_packets);
8584
8585 stats->rx_over_errors = old_stats->rx_over_errors +
8586 get_stat64(&hw_stats->rxbds_empty);
8587 stats->rx_frame_errors = old_stats->rx_frame_errors +
8588 get_stat64(&hw_stats->rx_align_errors);
8589 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
8590 get_stat64(&hw_stats->tx_discards);
8591 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
8592 get_stat64(&hw_stats->tx_carrier_sense_errors);
8593
8594 stats->rx_crc_errors = old_stats->rx_crc_errors +
8595 calc_crc_errors(tp);
8596
John W. Linville4f63b872005-09-12 14:43:18 -07008597 stats->rx_missed_errors = old_stats->rx_missed_errors +
8598 get_stat64(&hw_stats->rx_discards);
8599
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600 return stats;
8601}
8602
8603static inline u32 calc_crc(unsigned char *buf, int len)
8604{
8605 u32 reg;
8606 u32 tmp;
8607 int j, k;
8608
8609 reg = 0xffffffff;
8610
8611 for (j = 0; j < len; j++) {
8612 reg ^= buf[j];
8613
8614 for (k = 0; k < 8; k++) {
8615 tmp = reg & 0x01;
8616
8617 reg >>= 1;
8618
8619 if (tmp) {
8620 reg ^= 0xedb88320;
8621 }
8622 }
8623 }
8624
8625 return ~reg;
8626}
8627
8628static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
8629{
8630 /* accept or reject all multicast frames */
8631 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
8632 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
8633 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
8634 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
8635}
8636
8637static void __tg3_set_rx_mode(struct net_device *dev)
8638{
8639 struct tg3 *tp = netdev_priv(dev);
8640 u32 rx_mode;
8641
8642 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
8643 RX_MODE_KEEP_VLAN_TAG);
8644
8645 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
8646 * flag clear.
8647 */
8648#if TG3_VLAN_TAG_USED
8649 if (!tp->vlgrp &&
8650 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
8651 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
8652#else
8653 /* By definition, VLAN is disabled always in this
8654 * case.
8655 */
8656 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
8657 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
8658#endif
8659
8660 if (dev->flags & IFF_PROMISC) {
8661 /* Promiscuous mode. */
8662 rx_mode |= RX_MODE_PROMISC;
8663 } else if (dev->flags & IFF_ALLMULTI) {
8664 /* Accept all multicast. */
8665 tg3_set_multi (tp, 1);
8666 } else if (dev->mc_count < 1) {
8667 /* Reject all multicast. */
8668 tg3_set_multi (tp, 0);
8669 } else {
8670 /* Accept one or more multicast(s). */
8671 struct dev_mc_list *mclist;
8672 unsigned int i;
8673 u32 mc_filter[4] = { 0, };
8674 u32 regidx;
8675 u32 bit;
8676 u32 crc;
8677
8678 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
8679 i++, mclist = mclist->next) {
8680
8681 crc = calc_crc (mclist->dmi_addr, ETH_ALEN);
8682 bit = ~crc & 0x7f;
8683 regidx = (bit & 0x60) >> 5;
8684 bit &= 0x1f;
8685 mc_filter[regidx] |= (1 << bit);
8686 }
8687
8688 tw32(MAC_HASH_REG_0, mc_filter[0]);
8689 tw32(MAC_HASH_REG_1, mc_filter[1]);
8690 tw32(MAC_HASH_REG_2, mc_filter[2]);
8691 tw32(MAC_HASH_REG_3, mc_filter[3]);
8692 }
8693
8694 if (rx_mode != tp->rx_mode) {
8695 tp->rx_mode = rx_mode;
8696 tw32_f(MAC_RX_MODE, rx_mode);
8697 udelay(10);
8698 }
8699}
8700
8701static void tg3_set_rx_mode(struct net_device *dev)
8702{
8703 struct tg3 *tp = netdev_priv(dev);
8704
Michael Chane75f7c92006-03-20 21:33:26 -08008705 if (!netif_running(dev))
8706 return;
8707
David S. Millerf47c11e2005-06-24 20:18:35 -07008708 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008709 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07008710 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008711}
8712
8713#define TG3_REGDUMP_LEN (32 * 1024)
8714
8715static int tg3_get_regs_len(struct net_device *dev)
8716{
8717 return TG3_REGDUMP_LEN;
8718}
8719
8720static void tg3_get_regs(struct net_device *dev,
8721 struct ethtool_regs *regs, void *_p)
8722{
8723 u32 *p = _p;
8724 struct tg3 *tp = netdev_priv(dev);
8725 u8 *orig_p = _p;
8726 int i;
8727
8728 regs->version = 0;
8729
8730 memset(p, 0, TG3_REGDUMP_LEN);
8731
Michael Chanbc1c7562006-03-20 17:48:03 -08008732 if (tp->link_config.phy_is_low_power)
8733 return;
8734
David S. Millerf47c11e2005-06-24 20:18:35 -07008735 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008736
8737#define __GET_REG32(reg) (*(p)++ = tr32(reg))
8738#define GET_REG32_LOOP(base,len) \
8739do { p = (u32 *)(orig_p + (base)); \
8740 for (i = 0; i < len; i += 4) \
8741 __GET_REG32((base) + i); \
8742} while (0)
8743#define GET_REG32_1(reg) \
8744do { p = (u32 *)(orig_p + (reg)); \
8745 __GET_REG32((reg)); \
8746} while (0)
8747
8748 GET_REG32_LOOP(TG3PCI_VENDOR, 0xb0);
8749 GET_REG32_LOOP(MAILBOX_INTERRUPT_0, 0x200);
8750 GET_REG32_LOOP(MAC_MODE, 0x4f0);
8751 GET_REG32_LOOP(SNDDATAI_MODE, 0xe0);
8752 GET_REG32_1(SNDDATAC_MODE);
8753 GET_REG32_LOOP(SNDBDS_MODE, 0x80);
8754 GET_REG32_LOOP(SNDBDI_MODE, 0x48);
8755 GET_REG32_1(SNDBDC_MODE);
8756 GET_REG32_LOOP(RCVLPC_MODE, 0x20);
8757 GET_REG32_LOOP(RCVLPC_SELLST_BASE, 0x15c);
8758 GET_REG32_LOOP(RCVDBDI_MODE, 0x0c);
8759 GET_REG32_LOOP(RCVDBDI_JUMBO_BD, 0x3c);
8760 GET_REG32_LOOP(RCVDBDI_BD_PROD_IDX_0, 0x44);
8761 GET_REG32_1(RCVDCC_MODE);
8762 GET_REG32_LOOP(RCVBDI_MODE, 0x20);
8763 GET_REG32_LOOP(RCVCC_MODE, 0x14);
8764 GET_REG32_LOOP(RCVLSC_MODE, 0x08);
8765 GET_REG32_1(MBFREE_MODE);
8766 GET_REG32_LOOP(HOSTCC_MODE, 0x100);
8767 GET_REG32_LOOP(MEMARB_MODE, 0x10);
8768 GET_REG32_LOOP(BUFMGR_MODE, 0x58);
8769 GET_REG32_LOOP(RDMAC_MODE, 0x08);
8770 GET_REG32_LOOP(WDMAC_MODE, 0x08);
Chris Elmquist091465d2005-12-20 13:25:19 -08008771 GET_REG32_1(RX_CPU_MODE);
8772 GET_REG32_1(RX_CPU_STATE);
8773 GET_REG32_1(RX_CPU_PGMCTR);
8774 GET_REG32_1(RX_CPU_HWBKPT);
8775 GET_REG32_1(TX_CPU_MODE);
8776 GET_REG32_1(TX_CPU_STATE);
8777 GET_REG32_1(TX_CPU_PGMCTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008778 GET_REG32_LOOP(GRCMBOX_INTERRUPT_0, 0x110);
8779 GET_REG32_LOOP(FTQ_RESET, 0x120);
8780 GET_REG32_LOOP(MSGINT_MODE, 0x0c);
8781 GET_REG32_1(DMAC_MODE);
8782 GET_REG32_LOOP(GRC_MODE, 0x4c);
8783 if (tp->tg3_flags & TG3_FLAG_NVRAM)
8784 GET_REG32_LOOP(NVRAM_CMD, 0x24);
8785
8786#undef __GET_REG32
8787#undef GET_REG32_LOOP
8788#undef GET_REG32_1
8789
David S. Millerf47c11e2005-06-24 20:18:35 -07008790 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008791}
8792
8793static int tg3_get_eeprom_len(struct net_device *dev)
8794{
8795 struct tg3 *tp = netdev_priv(dev);
8796
8797 return tp->nvram_size;
8798}
8799
8800static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val);
Al Virob9fc7dc2007-12-17 22:59:57 -08008801static int tg3_nvram_read_le(struct tg3 *tp, u32 offset, __le32 *val);
Michael Chan18201802006-03-20 22:29:15 -08008802static int tg3_nvram_read_swab(struct tg3 *tp, u32 offset, u32 *val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008803
8804static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
8805{
8806 struct tg3 *tp = netdev_priv(dev);
8807 int ret;
8808 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -08008809 u32 i, offset, len, b_offset, b_count;
8810 __le32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008811
Michael Chanbc1c7562006-03-20 17:48:03 -08008812 if (tp->link_config.phy_is_low_power)
8813 return -EAGAIN;
8814
Linus Torvalds1da177e2005-04-16 15:20:36 -07008815 offset = eeprom->offset;
8816 len = eeprom->len;
8817 eeprom->len = 0;
8818
8819 eeprom->magic = TG3_EEPROM_MAGIC;
8820
8821 if (offset & 3) {
8822 /* adjustments to start on required 4 byte boundary */
8823 b_offset = offset & 3;
8824 b_count = 4 - b_offset;
8825 if (b_count > len) {
8826 /* i.e. offset=1 len=2 */
8827 b_count = len;
8828 }
Al Virob9fc7dc2007-12-17 22:59:57 -08008829 ret = tg3_nvram_read_le(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008830 if (ret)
8831 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008832 memcpy(data, ((char*)&val) + b_offset, b_count);
8833 len -= b_count;
8834 offset += b_count;
8835 eeprom->len += b_count;
8836 }
8837
8838 /* read bytes upto the last 4 byte boundary */
8839 pd = &data[eeprom->len];
8840 for (i = 0; i < (len - (len & 3)); i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -08008841 ret = tg3_nvram_read_le(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008842 if (ret) {
8843 eeprom->len += i;
8844 return ret;
8845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008846 memcpy(pd + i, &val, 4);
8847 }
8848 eeprom->len += i;
8849
8850 if (len & 3) {
8851 /* read last bytes not ending on 4 byte boundary */
8852 pd = &data[eeprom->len];
8853 b_count = len & 3;
8854 b_offset = offset + len - b_count;
Al Virob9fc7dc2007-12-17 22:59:57 -08008855 ret = tg3_nvram_read_le(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008856 if (ret)
8857 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08008858 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008859 eeprom->len += b_count;
8860 }
8861 return 0;
8862}
8863
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008864static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008865
8866static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
8867{
8868 struct tg3 *tp = netdev_priv(dev);
8869 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08008870 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008871 u8 *buf;
Al Virob9fc7dc2007-12-17 22:59:57 -08008872 __le32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008873
Michael Chanbc1c7562006-03-20 17:48:03 -08008874 if (tp->link_config.phy_is_low_power)
8875 return -EAGAIN;
8876
Linus Torvalds1da177e2005-04-16 15:20:36 -07008877 if (eeprom->magic != TG3_EEPROM_MAGIC)
8878 return -EINVAL;
8879
8880 offset = eeprom->offset;
8881 len = eeprom->len;
8882
8883 if ((b_offset = (offset & 3))) {
8884 /* adjustments to start on required 4 byte boundary */
Al Virob9fc7dc2007-12-17 22:59:57 -08008885 ret = tg3_nvram_read_le(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886 if (ret)
8887 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008888 len += b_offset;
8889 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -07008890 if (len < 4)
8891 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008892 }
8893
8894 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -07008895 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896 /* adjustments to end on required 4 byte boundary */
8897 odd_len = 1;
8898 len = (len + 3) & ~3;
Al Virob9fc7dc2007-12-17 22:59:57 -08008899 ret = tg3_nvram_read_le(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008900 if (ret)
8901 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008902 }
8903
8904 buf = data;
8905 if (b_offset || odd_len) {
8906 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008907 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008908 return -ENOMEM;
8909 if (b_offset)
8910 memcpy(buf, &start, 4);
8911 if (odd_len)
8912 memcpy(buf+len-4, &end, 4);
8913 memcpy(buf + b_offset, data, eeprom->len);
8914 }
8915
8916 ret = tg3_nvram_write_block(tp, offset, len, buf);
8917
8918 if (buf != data)
8919 kfree(buf);
8920
8921 return ret;
8922}
8923
8924static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
8925{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07008926 struct tg3 *tp = netdev_priv(dev);
8927
8928 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
8929 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
8930 return -EAGAIN;
8931 return phy_ethtool_gset(tp->mdio_bus.phy_map[PHY_ADDR], cmd);
8932 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008933
Linus Torvalds1da177e2005-04-16 15:20:36 -07008934 cmd->supported = (SUPPORTED_Autoneg);
8935
8936 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
8937 cmd->supported |= (SUPPORTED_1000baseT_Half |
8938 SUPPORTED_1000baseT_Full);
8939
Karsten Keilef348142006-05-12 12:49:08 -07008940 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008941 cmd->supported |= (SUPPORTED_100baseT_Half |
8942 SUPPORTED_100baseT_Full |
8943 SUPPORTED_10baseT_Half |
8944 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -08008945 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -07008946 cmd->port = PORT_TP;
8947 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008948 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -07008949 cmd->port = PORT_FIBRE;
8950 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008951
Linus Torvalds1da177e2005-04-16 15:20:36 -07008952 cmd->advertising = tp->link_config.advertising;
8953 if (netif_running(dev)) {
8954 cmd->speed = tp->link_config.active_speed;
8955 cmd->duplex = tp->link_config.active_duplex;
8956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008957 cmd->phy_address = PHY_ADDR;
8958 cmd->transceiver = 0;
8959 cmd->autoneg = tp->link_config.autoneg;
8960 cmd->maxtxpkt = 0;
8961 cmd->maxrxpkt = 0;
8962 return 0;
8963}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008964
Linus Torvalds1da177e2005-04-16 15:20:36 -07008965static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
8966{
8967 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008968
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07008969 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
8970 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
8971 return -EAGAIN;
8972 return phy_ethtool_sset(tp->mdio_bus.phy_map[PHY_ADDR], cmd);
8973 }
8974
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008975 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008976 /* These are the only valid advertisement bits allowed. */
8977 if (cmd->autoneg == AUTONEG_ENABLE &&
8978 (cmd->advertising & ~(ADVERTISED_1000baseT_Half |
8979 ADVERTISED_1000baseT_Full |
8980 ADVERTISED_Autoneg |
8981 ADVERTISED_FIBRE)))
8982 return -EINVAL;
Michael Chan37ff2382005-10-26 15:49:51 -07008983 /* Fiber can only do SPEED_1000. */
8984 else if ((cmd->autoneg != AUTONEG_ENABLE) &&
8985 (cmd->speed != SPEED_1000))
8986 return -EINVAL;
8987 /* Copper cannot force SPEED_1000. */
8988 } else if ((cmd->autoneg != AUTONEG_ENABLE) &&
8989 (cmd->speed == SPEED_1000))
8990 return -EINVAL;
8991 else if ((cmd->speed == SPEED_1000) &&
Matt Carlson0ba11fb2008-06-09 15:40:26 -07008992 (tp->tg3_flags & TG3_FLAG_10_100_ONLY))
Michael Chan37ff2382005-10-26 15:49:51 -07008993 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008994
David S. Millerf47c11e2005-06-24 20:18:35 -07008995 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008996
8997 tp->link_config.autoneg = cmd->autoneg;
8998 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -07008999 tp->link_config.advertising = (cmd->advertising |
9000 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009001 tp->link_config.speed = SPEED_INVALID;
9002 tp->link_config.duplex = DUPLEX_INVALID;
9003 } else {
9004 tp->link_config.advertising = 0;
9005 tp->link_config.speed = cmd->speed;
9006 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009007 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009008
Michael Chan24fcad62006-12-17 17:06:46 -08009009 tp->link_config.orig_speed = tp->link_config.speed;
9010 tp->link_config.orig_duplex = tp->link_config.duplex;
9011 tp->link_config.orig_autoneg = tp->link_config.autoneg;
9012
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013 if (netif_running(dev))
9014 tg3_setup_phy(tp, 1);
9015
David S. Millerf47c11e2005-06-24 20:18:35 -07009016 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009017
Linus Torvalds1da177e2005-04-16 15:20:36 -07009018 return 0;
9019}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009020
Linus Torvalds1da177e2005-04-16 15:20:36 -07009021static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
9022{
9023 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009024
Linus Torvalds1da177e2005-04-16 15:20:36 -07009025 strcpy(info->driver, DRV_MODULE_NAME);
9026 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -08009027 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009028 strcpy(info->bus_info, pci_name(tp->pdev));
9029}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009030
Linus Torvalds1da177e2005-04-16 15:20:36 -07009031static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
9032{
9033 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009034
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009035 if ((tp->tg3_flags & TG3_FLAG_WOL_CAP) &&
9036 device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -07009037 wol->supported = WAKE_MAGIC;
9038 else
9039 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009040 wol->wolopts = 0;
9041 if (tp->tg3_flags & TG3_FLAG_WOL_ENABLE)
9042 wol->wolopts = WAKE_MAGIC;
9043 memset(&wol->sopass, 0, sizeof(wol->sopass));
9044}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009045
Linus Torvalds1da177e2005-04-16 15:20:36 -07009046static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
9047{
9048 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009049 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009050
Linus Torvalds1da177e2005-04-16 15:20:36 -07009051 if (wol->wolopts & ~WAKE_MAGIC)
9052 return -EINVAL;
9053 if ((wol->wolopts & WAKE_MAGIC) &&
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009054 !((tp->tg3_flags & TG3_FLAG_WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009055 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009056
David S. Millerf47c11e2005-06-24 20:18:35 -07009057 spin_lock_bh(&tp->lock);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009058 if (wol->wolopts & WAKE_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009059 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009060 device_set_wakeup_enable(dp, true);
9061 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009062 tp->tg3_flags &= ~TG3_FLAG_WOL_ENABLE;
Rafael J. Wysocki12dac072008-07-30 16:37:33 -07009063 device_set_wakeup_enable(dp, false);
9064 }
David S. Millerf47c11e2005-06-24 20:18:35 -07009065 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009066
Linus Torvalds1da177e2005-04-16 15:20:36 -07009067 return 0;
9068}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009069
Linus Torvalds1da177e2005-04-16 15:20:36 -07009070static u32 tg3_get_msglevel(struct net_device *dev)
9071{
9072 struct tg3 *tp = netdev_priv(dev);
9073 return tp->msg_enable;
9074}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009075
Linus Torvalds1da177e2005-04-16 15:20:36 -07009076static void tg3_set_msglevel(struct net_device *dev, u32 value)
9077{
9078 struct tg3 *tp = netdev_priv(dev);
9079 tp->msg_enable = value;
9080}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009081
Linus Torvalds1da177e2005-04-16 15:20:36 -07009082static int tg3_set_tso(struct net_device *dev, u32 value)
9083{
9084 struct tg3 *tp = netdev_priv(dev);
9085
9086 if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
9087 if (value)
9088 return -EINVAL;
9089 return 0;
9090 }
Michael Chanb5d37722006-09-27 16:06:21 -07009091 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) &&
9092 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -07009093 if (value) {
Michael Chanb0026622006-07-03 19:42:14 -07009094 dev->features |= NETIF_F_TSO6;
Matt Carlson57e69832008-05-25 23:48:31 -07009095 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
9096 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
9097 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
9098 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Matt Carlson9936bcf2007-10-10 18:03:07 -07009099 dev->features |= NETIF_F_TSO_ECN;
9100 } else
9101 dev->features &= ~(NETIF_F_TSO6 | NETIF_F_TSO_ECN);
Michael Chanb0026622006-07-03 19:42:14 -07009102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009103 return ethtool_op_set_tso(dev, value);
9104}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009105
Linus Torvalds1da177e2005-04-16 15:20:36 -07009106static int tg3_nway_reset(struct net_device *dev)
9107{
9108 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009109 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009110
Linus Torvalds1da177e2005-04-16 15:20:36 -07009111 if (!netif_running(dev))
9112 return -EAGAIN;
9113
Michael Chanc94e3942005-09-27 12:12:42 -07009114 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
9115 return -EINVAL;
9116
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009117 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
9118 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9119 return -EAGAIN;
9120 r = phy_start_aneg(tp->mdio_bus.phy_map[PHY_ADDR]);
9121 } else {
9122 u32 bmcr;
9123
9124 spin_lock_bh(&tp->lock);
9125 r = -EINVAL;
9126 tg3_readphy(tp, MII_BMCR, &bmcr);
9127 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
9128 ((bmcr & BMCR_ANENABLE) ||
9129 (tp->tg3_flags2 & TG3_FLG2_PARALLEL_DETECT))) {
9130 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
9131 BMCR_ANENABLE);
9132 r = 0;
9133 }
9134 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009135 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009136
Linus Torvalds1da177e2005-04-16 15:20:36 -07009137 return r;
9138}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009139
Linus Torvalds1da177e2005-04-16 15:20:36 -07009140static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
9141{
9142 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009143
Linus Torvalds1da177e2005-04-16 15:20:36 -07009144 ering->rx_max_pending = TG3_RX_RING_SIZE - 1;
9145 ering->rx_mini_max_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -08009146 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
9147 ering->rx_jumbo_max_pending = TG3_RX_JUMBO_RING_SIZE - 1;
9148 else
9149 ering->rx_jumbo_max_pending = 0;
9150
9151 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009152
9153 ering->rx_pending = tp->rx_pending;
9154 ering->rx_mini_pending = 0;
Michael Chan4f81c322006-03-20 21:33:42 -08009155 if (tp->tg3_flags & TG3_FLAG_JUMBO_RING_ENABLE)
9156 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
9157 else
9158 ering->rx_jumbo_pending = 0;
9159
Linus Torvalds1da177e2005-04-16 15:20:36 -07009160 ering->tx_pending = tp->tx_pending;
9161}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009162
Linus Torvalds1da177e2005-04-16 15:20:36 -07009163static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
9164{
9165 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07009166 int irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009167
Linus Torvalds1da177e2005-04-16 15:20:36 -07009168 if ((ering->rx_pending > TG3_RX_RING_SIZE - 1) ||
9169 (ering->rx_jumbo_pending > TG3_RX_JUMBO_RING_SIZE - 1) ||
Michael Chanbc3a9252006-10-18 20:55:18 -07009170 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
9171 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Michael Chan7f62ad52007-02-20 23:25:40 -08009172 ((tp->tg3_flags2 & TG3_FLG2_TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -07009173 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009174 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009175
Michael Chanbbe832c2005-06-24 20:20:04 -07009176 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009177 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009178 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -07009179 irq_sync = 1;
9180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009181
Michael Chanbbe832c2005-06-24 20:20:04 -07009182 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009183
Linus Torvalds1da177e2005-04-16 15:20:36 -07009184 tp->rx_pending = ering->rx_pending;
9185
9186 if ((tp->tg3_flags2 & TG3_FLG2_MAX_RXPEND_64) &&
9187 tp->rx_pending > 63)
9188 tp->rx_pending = 63;
9189 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
9190 tp->tx_pending = ering->tx_pending;
9191
9192 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -07009193 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -07009194 err = tg3_restart_hw(tp, 1);
9195 if (!err)
9196 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009197 }
9198
David S. Millerf47c11e2005-06-24 20:18:35 -07009199 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009200
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009201 if (irq_sync && !err)
9202 tg3_phy_start(tp);
9203
Michael Chanb9ec6c12006-07-25 16:37:27 -07009204 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009205}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009206
Linus Torvalds1da177e2005-04-16 15:20:36 -07009207static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
9208{
9209 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009210
Linus Torvalds1da177e2005-04-16 15:20:36 -07009211 epause->autoneg = (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG) != 0;
Matt Carlson8d018622007-12-20 20:05:44 -08009212
9213 if (tp->link_config.active_flowctrl & TG3_FLOW_CTRL_RX)
9214 epause->rx_pause = 1;
9215 else
9216 epause->rx_pause = 0;
9217
9218 if (tp->link_config.active_flowctrl & TG3_FLOW_CTRL_TX)
9219 epause->tx_pause = 1;
9220 else
9221 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009222}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009223
Linus Torvalds1da177e2005-04-16 15:20:36 -07009224static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
9225{
9226 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009227 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009228
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009229 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
9230 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
9231 return -EAGAIN;
9232
9233 if (epause->autoneg) {
9234 u32 newadv;
9235 struct phy_device *phydev;
9236
9237 phydev = tp->mdio_bus.phy_map[PHY_ADDR];
9238
9239 if (epause->rx_pause) {
9240 if (epause->tx_pause)
9241 newadv = ADVERTISED_Pause;
9242 else
9243 newadv = ADVERTISED_Pause |
9244 ADVERTISED_Asym_Pause;
9245 } else if (epause->tx_pause) {
9246 newadv = ADVERTISED_Asym_Pause;
9247 } else
9248 newadv = 0;
9249
9250 if (tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED) {
9251 u32 oldadv = phydev->advertising &
9252 (ADVERTISED_Pause |
9253 ADVERTISED_Asym_Pause);
9254 if (oldadv != newadv) {
9255 phydev->advertising &=
9256 ~(ADVERTISED_Pause |
9257 ADVERTISED_Asym_Pause);
9258 phydev->advertising |= newadv;
9259 err = phy_start_aneg(phydev);
9260 }
9261 } else {
9262 tp->link_config.advertising &=
9263 ~(ADVERTISED_Pause |
9264 ADVERTISED_Asym_Pause);
9265 tp->link_config.advertising |= newadv;
9266 }
9267 } else {
9268 if (epause->rx_pause)
9269 tp->link_config.flowctrl |= TG3_FLOW_CTRL_RX;
9270 else
9271 tp->link_config.flowctrl &= ~TG3_FLOW_CTRL_RX;
9272
9273 if (epause->tx_pause)
9274 tp->link_config.flowctrl |= TG3_FLOW_CTRL_TX;
9275 else
9276 tp->link_config.flowctrl &= ~TG3_FLOW_CTRL_TX;
9277
9278 if (netif_running(dev))
9279 tg3_setup_flow_control(tp, 0, 0);
9280 }
9281 } else {
9282 int irq_sync = 0;
9283
9284 if (netif_running(dev)) {
9285 tg3_netif_stop(tp);
9286 irq_sync = 1;
9287 }
9288
9289 tg3_full_lock(tp, irq_sync);
9290
9291 if (epause->autoneg)
9292 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
9293 else
9294 tp->tg3_flags &= ~TG3_FLAG_PAUSE_AUTONEG;
9295 if (epause->rx_pause)
9296 tp->link_config.flowctrl |= TG3_FLOW_CTRL_RX;
9297 else
9298 tp->link_config.flowctrl &= ~TG3_FLOW_CTRL_RX;
9299 if (epause->tx_pause)
9300 tp->link_config.flowctrl |= TG3_FLOW_CTRL_TX;
9301 else
9302 tp->link_config.flowctrl &= ~TG3_FLOW_CTRL_TX;
9303
9304 if (netif_running(dev)) {
9305 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
9306 err = tg3_restart_hw(tp, 1);
9307 if (!err)
9308 tg3_netif_start(tp);
9309 }
9310
9311 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -07009312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009313
Michael Chanb9ec6c12006-07-25 16:37:27 -07009314 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009315}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009316
Linus Torvalds1da177e2005-04-16 15:20:36 -07009317static u32 tg3_get_rx_csum(struct net_device *dev)
9318{
9319 struct tg3 *tp = netdev_priv(dev);
9320 return (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0;
9321}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009322
Linus Torvalds1da177e2005-04-16 15:20:36 -07009323static int tg3_set_rx_csum(struct net_device *dev, u32 data)
9324{
9325 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009326
Linus Torvalds1da177e2005-04-16 15:20:36 -07009327 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
9328 if (data != 0)
9329 return -EINVAL;
9330 return 0;
9331 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009332
David S. Millerf47c11e2005-06-24 20:18:35 -07009333 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009334 if (data)
9335 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
9336 else
9337 tp->tg3_flags &= ~TG3_FLAG_RX_CHECKSUMS;
David S. Millerf47c11e2005-06-24 20:18:35 -07009338 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009339
Linus Torvalds1da177e2005-04-16 15:20:36 -07009340 return 0;
9341}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009342
Linus Torvalds1da177e2005-04-16 15:20:36 -07009343static int tg3_set_tx_csum(struct net_device *dev, u32 data)
9344{
9345 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009346
Linus Torvalds1da177e2005-04-16 15:20:36 -07009347 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
9348 if (data != 0)
9349 return -EINVAL;
9350 return 0;
9351 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009352
Michael Chanaf36e6b2006-03-23 01:28:06 -08009353 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -07009354 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -07009355 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -07009356 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
9357 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan6460d942007-07-14 19:07:52 -07009358 ethtool_op_set_tx_ipv6_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009359 else
Michael Chan9c27dbd2006-03-20 22:28:27 -08009360 ethtool_op_set_tx_csum(dev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009361
9362 return 0;
9363}
9364
Jeff Garzikb9f2c042007-10-03 18:07:32 -07009365static int tg3_get_sset_count (struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009366{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07009367 switch (sset) {
9368 case ETH_SS_TEST:
9369 return TG3_NUM_TEST;
9370 case ETH_SS_STATS:
9371 return TG3_NUM_STATS;
9372 default:
9373 return -EOPNOTSUPP;
9374 }
Michael Chan4cafd3f2005-05-29 14:56:34 -07009375}
9376
Linus Torvalds1da177e2005-04-16 15:20:36 -07009377static void tg3_get_strings (struct net_device *dev, u32 stringset, u8 *buf)
9378{
9379 switch (stringset) {
9380 case ETH_SS_STATS:
9381 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
9382 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -07009383 case ETH_SS_TEST:
9384 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
9385 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009386 default:
9387 WARN_ON(1); /* we need a WARN() */
9388 break;
9389 }
9390}
9391
Michael Chan4009a932005-09-05 17:52:54 -07009392static int tg3_phys_id(struct net_device *dev, u32 data)
9393{
9394 struct tg3 *tp = netdev_priv(dev);
9395 int i;
9396
9397 if (!netif_running(tp->dev))
9398 return -EAGAIN;
9399
9400 if (data == 0)
Stephen Hemminger759afc32008-02-23 19:51:59 -08009401 data = UINT_MAX / 2;
Michael Chan4009a932005-09-05 17:52:54 -07009402
9403 for (i = 0; i < (data * 2); i++) {
9404 if ((i % 2) == 0)
9405 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
9406 LED_CTRL_1000MBPS_ON |
9407 LED_CTRL_100MBPS_ON |
9408 LED_CTRL_10MBPS_ON |
9409 LED_CTRL_TRAFFIC_OVERRIDE |
9410 LED_CTRL_TRAFFIC_BLINK |
9411 LED_CTRL_TRAFFIC_LED);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009412
Michael Chan4009a932005-09-05 17:52:54 -07009413 else
9414 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
9415 LED_CTRL_TRAFFIC_OVERRIDE);
9416
9417 if (msleep_interruptible(500))
9418 break;
9419 }
9420 tw32(MAC_LED_CTRL, tp->led_ctrl);
9421 return 0;
9422}
9423
Linus Torvalds1da177e2005-04-16 15:20:36 -07009424static void tg3_get_ethtool_stats (struct net_device *dev,
9425 struct ethtool_stats *estats, u64 *tmp_stats)
9426{
9427 struct tg3 *tp = netdev_priv(dev);
9428 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
9429}
9430
Michael Chan566f86a2005-05-29 14:56:58 -07009431#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -08009432#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
9433#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
9434#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Michael Chanb16250e2006-09-27 16:10:14 -07009435#define NVRAM_SELFBOOT_HW_SIZE 0x20
9436#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -07009437
9438static int tg3_test_nvram(struct tg3 *tp)
9439{
Al Virob9fc7dc2007-12-17 22:59:57 -08009440 u32 csum, magic;
9441 __le32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009442 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -07009443
Michael Chan18201802006-03-20 22:29:15 -08009444 if (tg3_nvram_read_swab(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -08009445 return -EIO;
9446
Michael Chan1b277772006-03-20 22:27:48 -08009447 if (magic == TG3_EEPROM_MAGIC)
9448 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -07009449 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -08009450 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
9451 TG3_EEPROM_SB_FORMAT_1) {
9452 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
9453 case TG3_EEPROM_SB_REVISION_0:
9454 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
9455 break;
9456 case TG3_EEPROM_SB_REVISION_2:
9457 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
9458 break;
9459 case TG3_EEPROM_SB_REVISION_3:
9460 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
9461 break;
9462 default:
9463 return 0;
9464 }
9465 } else
Michael Chan1b277772006-03-20 22:27:48 -08009466 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -07009467 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
9468 size = NVRAM_SELFBOOT_HW_SIZE;
9469 else
Michael Chan1b277772006-03-20 22:27:48 -08009470 return -EIO;
9471
9472 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -07009473 if (buf == NULL)
9474 return -ENOMEM;
9475
Michael Chan1b277772006-03-20 22:27:48 -08009476 err = -EIO;
9477 for (i = 0, j = 0; i < size; i += 4, j++) {
Al Virob9fc7dc2007-12-17 22:59:57 -08009478 if ((err = tg3_nvram_read_le(tp, i, &buf[j])) != 0)
Michael Chan566f86a2005-05-29 14:56:58 -07009479 break;
Michael Chan566f86a2005-05-29 14:56:58 -07009480 }
Michael Chan1b277772006-03-20 22:27:48 -08009481 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -07009482 goto out;
9483
Michael Chan1b277772006-03-20 22:27:48 -08009484 /* Selfboot format */
Al Virob9fc7dc2007-12-17 22:59:57 -08009485 magic = swab32(le32_to_cpu(buf[0]));
9486 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -07009487 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -08009488 u8 *buf8 = (u8 *) buf, csum8 = 0;
9489
Al Virob9fc7dc2007-12-17 22:59:57 -08009490 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -08009491 TG3_EEPROM_SB_REVISION_2) {
9492 /* For rev 2, the csum doesn't include the MBA. */
9493 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
9494 csum8 += buf8[i];
9495 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
9496 csum8 += buf8[i];
9497 } else {
9498 for (i = 0; i < size; i++)
9499 csum8 += buf8[i];
9500 }
Michael Chan1b277772006-03-20 22:27:48 -08009501
Adrian Bunkad96b482006-04-05 22:21:04 -07009502 if (csum8 == 0) {
9503 err = 0;
9504 goto out;
9505 }
9506
9507 err = -EIO;
9508 goto out;
Michael Chan1b277772006-03-20 22:27:48 -08009509 }
Michael Chan566f86a2005-05-29 14:56:58 -07009510
Al Virob9fc7dc2007-12-17 22:59:57 -08009511 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -07009512 TG3_EEPROM_MAGIC_HW) {
9513 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
9514 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
9515 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -07009516
9517 /* Separate the parity bits and the data bytes. */
9518 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
9519 if ((i == 0) || (i == 8)) {
9520 int l;
9521 u8 msk;
9522
9523 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
9524 parity[k++] = buf8[i] & msk;
9525 i++;
9526 }
9527 else if (i == 16) {
9528 int l;
9529 u8 msk;
9530
9531 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
9532 parity[k++] = buf8[i] & msk;
9533 i++;
9534
9535 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
9536 parity[k++] = buf8[i] & msk;
9537 i++;
9538 }
9539 data[j++] = buf8[i];
9540 }
9541
9542 err = -EIO;
9543 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
9544 u8 hw8 = hweight8(data[i]);
9545
9546 if ((hw8 & 0x1) && parity[i])
9547 goto out;
9548 else if (!(hw8 & 0x1) && !parity[i])
9549 goto out;
9550 }
9551 err = 0;
9552 goto out;
9553 }
9554
Michael Chan566f86a2005-05-29 14:56:58 -07009555 /* Bootstrap checksum at offset 0x10 */
9556 csum = calc_crc((unsigned char *) buf, 0x10);
Al Virob9fc7dc2007-12-17 22:59:57 -08009557 if(csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -07009558 goto out;
9559
9560 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
9561 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Al Virob9fc7dc2007-12-17 22:59:57 -08009562 if (csum != le32_to_cpu(buf[0xfc/4]))
Michael Chan566f86a2005-05-29 14:56:58 -07009563 goto out;
9564
9565 err = 0;
9566
9567out:
9568 kfree(buf);
9569 return err;
9570}
9571
Michael Chanca430072005-05-29 14:57:23 -07009572#define TG3_SERDES_TIMEOUT_SEC 2
9573#define TG3_COPPER_TIMEOUT_SEC 6
9574
9575static int tg3_test_link(struct tg3 *tp)
9576{
9577 int i, max;
9578
9579 if (!netif_running(tp->dev))
9580 return -ENODEV;
9581
Michael Chan4c987482005-09-05 17:52:38 -07009582 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -07009583 max = TG3_SERDES_TIMEOUT_SEC;
9584 else
9585 max = TG3_COPPER_TIMEOUT_SEC;
9586
9587 for (i = 0; i < max; i++) {
9588 if (netif_carrier_ok(tp->dev))
9589 return 0;
9590
9591 if (msleep_interruptible(1000))
9592 break;
9593 }
9594
9595 return -EIO;
9596}
9597
Michael Chana71116d2005-05-29 14:58:11 -07009598/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -08009599static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -07009600{
Michael Chanb16250e2006-09-27 16:10:14 -07009601 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -07009602 u32 offset, read_mask, write_mask, val, save_val, read_val;
9603 static struct {
9604 u16 offset;
9605 u16 flags;
9606#define TG3_FL_5705 0x1
9607#define TG3_FL_NOT_5705 0x2
9608#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -07009609#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -07009610 u32 read_mask;
9611 u32 write_mask;
9612 } reg_tbl[] = {
9613 /* MAC Control Registers */
9614 { MAC_MODE, TG3_FL_NOT_5705,
9615 0x00000000, 0x00ef6f8c },
9616 { MAC_MODE, TG3_FL_5705,
9617 0x00000000, 0x01ef6b8c },
9618 { MAC_STATUS, TG3_FL_NOT_5705,
9619 0x03800107, 0x00000000 },
9620 { MAC_STATUS, TG3_FL_5705,
9621 0x03800100, 0x00000000 },
9622 { MAC_ADDR_0_HIGH, 0x0000,
9623 0x00000000, 0x0000ffff },
9624 { MAC_ADDR_0_LOW, 0x0000,
9625 0x00000000, 0xffffffff },
9626 { MAC_RX_MTU_SIZE, 0x0000,
9627 0x00000000, 0x0000ffff },
9628 { MAC_TX_MODE, 0x0000,
9629 0x00000000, 0x00000070 },
9630 { MAC_TX_LENGTHS, 0x0000,
9631 0x00000000, 0x00003fff },
9632 { MAC_RX_MODE, TG3_FL_NOT_5705,
9633 0x00000000, 0x000007fc },
9634 { MAC_RX_MODE, TG3_FL_5705,
9635 0x00000000, 0x000007dc },
9636 { MAC_HASH_REG_0, 0x0000,
9637 0x00000000, 0xffffffff },
9638 { MAC_HASH_REG_1, 0x0000,
9639 0x00000000, 0xffffffff },
9640 { MAC_HASH_REG_2, 0x0000,
9641 0x00000000, 0xffffffff },
9642 { MAC_HASH_REG_3, 0x0000,
9643 0x00000000, 0xffffffff },
9644
9645 /* Receive Data and Receive BD Initiator Control Registers. */
9646 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
9647 0x00000000, 0xffffffff },
9648 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
9649 0x00000000, 0xffffffff },
9650 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
9651 0x00000000, 0x00000003 },
9652 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
9653 0x00000000, 0xffffffff },
9654 { RCVDBDI_STD_BD+0, 0x0000,
9655 0x00000000, 0xffffffff },
9656 { RCVDBDI_STD_BD+4, 0x0000,
9657 0x00000000, 0xffffffff },
9658 { RCVDBDI_STD_BD+8, 0x0000,
9659 0x00000000, 0xffff0002 },
9660 { RCVDBDI_STD_BD+0xc, 0x0000,
9661 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009662
Michael Chana71116d2005-05-29 14:58:11 -07009663 /* Receive BD Initiator Control Registers. */
9664 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
9665 0x00000000, 0xffffffff },
9666 { RCVBDI_STD_THRESH, TG3_FL_5705,
9667 0x00000000, 0x000003ff },
9668 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
9669 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009670
Michael Chana71116d2005-05-29 14:58:11 -07009671 /* Host Coalescing Control Registers. */
9672 { HOSTCC_MODE, TG3_FL_NOT_5705,
9673 0x00000000, 0x00000004 },
9674 { HOSTCC_MODE, TG3_FL_5705,
9675 0x00000000, 0x000000f6 },
9676 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
9677 0x00000000, 0xffffffff },
9678 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
9679 0x00000000, 0x000003ff },
9680 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
9681 0x00000000, 0xffffffff },
9682 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
9683 0x00000000, 0x000003ff },
9684 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
9685 0x00000000, 0xffffffff },
9686 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
9687 0x00000000, 0x000000ff },
9688 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
9689 0x00000000, 0xffffffff },
9690 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
9691 0x00000000, 0x000000ff },
9692 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
9693 0x00000000, 0xffffffff },
9694 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
9695 0x00000000, 0xffffffff },
9696 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
9697 0x00000000, 0xffffffff },
9698 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
9699 0x00000000, 0x000000ff },
9700 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
9701 0x00000000, 0xffffffff },
9702 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
9703 0x00000000, 0x000000ff },
9704 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
9705 0x00000000, 0xffffffff },
9706 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
9707 0x00000000, 0xffffffff },
9708 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
9709 0x00000000, 0xffffffff },
9710 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
9711 0x00000000, 0xffffffff },
9712 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
9713 0x00000000, 0xffffffff },
9714 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
9715 0xffffffff, 0x00000000 },
9716 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
9717 0xffffffff, 0x00000000 },
9718
9719 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -07009720 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -07009721 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -07009722 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -07009723 0x00000000, 0x007fffff },
9724 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
9725 0x00000000, 0x0000003f },
9726 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
9727 0x00000000, 0x000001ff },
9728 { BUFMGR_MB_HIGH_WATER, 0x0000,
9729 0x00000000, 0x000001ff },
9730 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
9731 0xffffffff, 0x00000000 },
9732 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
9733 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009734
Michael Chana71116d2005-05-29 14:58:11 -07009735 /* Mailbox Registers */
9736 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
9737 0x00000000, 0x000001ff },
9738 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
9739 0x00000000, 0x000001ff },
9740 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
9741 0x00000000, 0x000007ff },
9742 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
9743 0x00000000, 0x000001ff },
9744
9745 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
9746 };
9747
Michael Chanb16250e2006-09-27 16:10:14 -07009748 is_5705 = is_5750 = 0;
9749 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chana71116d2005-05-29 14:58:11 -07009750 is_5705 = 1;
Michael Chanb16250e2006-09-27 16:10:14 -07009751 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
9752 is_5750 = 1;
9753 }
Michael Chana71116d2005-05-29 14:58:11 -07009754
9755 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
9756 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
9757 continue;
9758
9759 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
9760 continue;
9761
9762 if ((tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
9763 (reg_tbl[i].flags & TG3_FL_NOT_5788))
9764 continue;
9765
Michael Chanb16250e2006-09-27 16:10:14 -07009766 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
9767 continue;
9768
Michael Chana71116d2005-05-29 14:58:11 -07009769 offset = (u32) reg_tbl[i].offset;
9770 read_mask = reg_tbl[i].read_mask;
9771 write_mask = reg_tbl[i].write_mask;
9772
9773 /* Save the original register content */
9774 save_val = tr32(offset);
9775
9776 /* Determine the read-only value. */
9777 read_val = save_val & read_mask;
9778
9779 /* Write zero to the register, then make sure the read-only bits
9780 * are not changed and the read/write bits are all zeros.
9781 */
9782 tw32(offset, 0);
9783
9784 val = tr32(offset);
9785
9786 /* Test the read-only and read/write bits. */
9787 if (((val & read_mask) != read_val) || (val & write_mask))
9788 goto out;
9789
9790 /* Write ones to all the bits defined by RdMask and WrMask, then
9791 * make sure the read-only bits are not changed and the
9792 * read/write bits are all ones.
9793 */
9794 tw32(offset, read_mask | write_mask);
9795
9796 val = tr32(offset);
9797
9798 /* Test the read-only bits. */
9799 if ((val & read_mask) != read_val)
9800 goto out;
9801
9802 /* Test the read/write bits. */
9803 if ((val & write_mask) != write_mask)
9804 goto out;
9805
9806 tw32(offset, save_val);
9807 }
9808
9809 return 0;
9810
9811out:
Michael Chan9f88f292006-12-07 00:22:54 -08009812 if (netif_msg_hw(tp))
9813 printk(KERN_ERR PFX "Register test failed at offset %x\n",
9814 offset);
Michael Chana71116d2005-05-29 14:58:11 -07009815 tw32(offset, save_val);
9816 return -EIO;
9817}
9818
Michael Chan7942e1d2005-05-29 14:58:36 -07009819static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
9820{
Arjan van de Venf71e1302006-03-03 21:33:57 -05009821 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -07009822 int i;
9823 u32 j;
9824
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +02009825 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -07009826 for (j = 0; j < len; j += 4) {
9827 u32 val;
9828
9829 tg3_write_mem(tp, offset + j, test_pattern[i]);
9830 tg3_read_mem(tp, offset + j, &val);
9831 if (val != test_pattern[i])
9832 return -EIO;
9833 }
9834 }
9835 return 0;
9836}
9837
9838static int tg3_test_memory(struct tg3 *tp)
9839{
9840 static struct mem_entry {
9841 u32 offset;
9842 u32 len;
9843 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -08009844 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -07009845 { 0x00002000, 0x1c000},
9846 { 0xffffffff, 0x00000}
9847 }, mem_tbl_5705[] = {
9848 { 0x00000100, 0x0000c},
9849 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -07009850 { 0x00004000, 0x00800},
9851 { 0x00006000, 0x01000},
9852 { 0x00008000, 0x02000},
9853 { 0x00010000, 0x0e000},
9854 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -08009855 }, mem_tbl_5755[] = {
9856 { 0x00000200, 0x00008},
9857 { 0x00004000, 0x00800},
9858 { 0x00006000, 0x00800},
9859 { 0x00008000, 0x02000},
9860 { 0x00010000, 0x0c000},
9861 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -07009862 }, mem_tbl_5906[] = {
9863 { 0x00000200, 0x00008},
9864 { 0x00004000, 0x00400},
9865 { 0x00006000, 0x00400},
9866 { 0x00008000, 0x01000},
9867 { 0x00010000, 0x01000},
9868 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -07009869 };
9870 struct mem_entry *mem_tbl;
9871 int err = 0;
9872 int i;
9873
Michael Chan79f4d132006-03-20 22:28:57 -08009874 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
Michael Chanaf36e6b2006-03-23 01:28:06 -08009875 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -07009876 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -07009877 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -07009878 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
9879 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan79f4d132006-03-20 22:28:57 -08009880 mem_tbl = mem_tbl_5755;
Michael Chanb16250e2006-09-27 16:10:14 -07009881 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
9882 mem_tbl = mem_tbl_5906;
Michael Chan79f4d132006-03-20 22:28:57 -08009883 else
9884 mem_tbl = mem_tbl_5705;
9885 } else
Michael Chan7942e1d2005-05-29 14:58:36 -07009886 mem_tbl = mem_tbl_570x;
9887
9888 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
9889 if ((err = tg3_do_mem_test(tp, mem_tbl[i].offset,
9890 mem_tbl[i].len)) != 0)
9891 break;
9892 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009893
Michael Chan7942e1d2005-05-29 14:58:36 -07009894 return err;
9895}
9896
Michael Chan9f40dea2005-09-05 17:53:06 -07009897#define TG3_MAC_LOOPBACK 0
9898#define TG3_PHY_LOOPBACK 1
9899
9900static int tg3_run_loopback(struct tg3 *tp, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -07009901{
Michael Chan9f40dea2005-09-05 17:53:06 -07009902 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Michael Chanc76949a2005-05-29 14:58:59 -07009903 u32 desc_idx;
9904 struct sk_buff *skb, *rx_skb;
9905 u8 *tx_data;
9906 dma_addr_t map;
9907 int num_pkts, tx_len, rx_len, i, err;
9908 struct tg3_rx_buffer_desc *desc;
9909
Michael Chan9f40dea2005-09-05 17:53:06 -07009910 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -07009911 /* HW errata - mac loopback fails in some cases on 5780.
9912 * Normal traffic and PHY loopback are not affected by
9913 * errata.
9914 */
9915 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780)
9916 return 0;
9917
Michael Chan9f40dea2005-09-05 17:53:06 -07009918 mac_mode = (tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK) |
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009919 MAC_MODE_PORT_INT_LPBACK;
9920 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
9921 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chan3f7045c2006-09-27 16:02:29 -07009922 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
9923 mac_mode |= MAC_MODE_PORT_MODE_MII;
9924 else
9925 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -07009926 tw32(MAC_MODE, mac_mode);
9927 } else if (loopback_mode == TG3_PHY_LOOPBACK) {
Michael Chan3f7045c2006-09-27 16:02:29 -07009928 u32 val;
9929
Michael Chanb16250e2006-09-27 16:10:14 -07009930 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
9931 u32 phytest;
9932
9933 if (!tg3_readphy(tp, MII_TG3_EPHY_TEST, &phytest)) {
9934 u32 phy;
9935
9936 tg3_writephy(tp, MII_TG3_EPHY_TEST,
9937 phytest | MII_TG3_EPHY_SHADOW_EN);
9938 if (!tg3_readphy(tp, 0x1b, &phy))
9939 tg3_writephy(tp, 0x1b, phy & ~0x20);
Michael Chanb16250e2006-09-27 16:10:14 -07009940 tg3_writephy(tp, MII_TG3_EPHY_TEST, phytest);
9941 }
Michael Chan5d64ad32006-12-07 00:19:40 -08009942 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
9943 } else
9944 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -07009945
Matt Carlson9ef8ca92007-07-11 19:48:29 -07009946 tg3_phy_toggle_automdix(tp, 0);
9947
Michael Chan3f7045c2006-09-27 16:02:29 -07009948 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -07009949 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -08009950
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009951 mac_mode = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
Michael Chan5d64ad32006-12-07 00:19:40 -08009952 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb16250e2006-09-27 16:10:14 -07009953 tg3_writephy(tp, MII_TG3_EPHY_PTEST, 0x1800);
Michael Chan5d64ad32006-12-07 00:19:40 -08009954 mac_mode |= MAC_MODE_PORT_MODE_MII;
9955 } else
9956 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -07009957
Michael Chanc94e3942005-09-27 12:12:42 -07009958 /* reset to prevent losing 1st rx packet intermittently */
9959 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES) {
9960 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9961 udelay(10);
9962 tw32_f(MAC_RX_MODE, tp->rx_mode);
9963 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009964 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
9965 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401)
9966 mac_mode &= ~MAC_MODE_LINK_POLARITY;
9967 else if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411)
9968 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -08009969 tg3_writephy(tp, MII_TG3_EXT_CTRL,
9970 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
9971 }
Michael Chan9f40dea2005-09-05 17:53:06 -07009972 tw32(MAC_MODE, mac_mode);
Michael Chan9f40dea2005-09-05 17:53:06 -07009973 }
9974 else
9975 return -EINVAL;
Michael Chanc76949a2005-05-29 14:58:59 -07009976
9977 err = -EIO;
9978
Michael Chanc76949a2005-05-29 14:58:59 -07009979 tx_len = 1514;
David S. Millera20e9c62006-07-31 22:38:16 -07009980 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -07009981 if (!skb)
9982 return -ENOMEM;
9983
Michael Chanc76949a2005-05-29 14:58:59 -07009984 tx_data = skb_put(skb, tx_len);
9985 memcpy(tx_data, tp->dev->dev_addr, 6);
9986 memset(tx_data + 6, 0x0, 8);
9987
9988 tw32(MAC_RX_MTU_SIZE, tx_len + 4);
9989
9990 for (i = 14; i < tx_len; i++)
9991 tx_data[i] = (u8) (i & 0xff);
9992
9993 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
9994
9995 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
9996 HOSTCC_MODE_NOW);
9997
9998 udelay(10);
9999
10000 rx_start_idx = tp->hw_status->idx[0].rx_producer;
10001
Michael Chanc76949a2005-05-29 14:58:59 -070010002 num_pkts = 0;
10003
Michael Chan9f40dea2005-09-05 17:53:06 -070010004 tg3_set_txd(tp, tp->tx_prod, map, tx_len, 0, 1);
Michael Chanc76949a2005-05-29 14:58:59 -070010005
Michael Chan9f40dea2005-09-05 17:53:06 -070010006 tp->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070010007 num_pkts++;
10008
Michael Chan9f40dea2005-09-05 17:53:06 -070010009 tw32_tx_mbox(MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW,
10010 tp->tx_prod);
Michael Chan09ee9292005-08-09 20:17:00 -070010011 tr32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW);
Michael Chanc76949a2005-05-29 14:58:59 -070010012
10013 udelay(10);
10014
Michael Chan3f7045c2006-09-27 16:02:29 -070010015 /* 250 usec to allow enough time on some 10/100 Mbps devices. */
10016 for (i = 0; i < 25; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070010017 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
10018 HOSTCC_MODE_NOW);
10019
10020 udelay(10);
10021
10022 tx_idx = tp->hw_status->idx[0].tx_consumer;
10023 rx_idx = tp->hw_status->idx[0].rx_producer;
Michael Chan9f40dea2005-09-05 17:53:06 -070010024 if ((tx_idx == tp->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070010025 (rx_idx == (rx_start_idx + num_pkts)))
10026 break;
10027 }
10028
10029 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
10030 dev_kfree_skb(skb);
10031
Michael Chan9f40dea2005-09-05 17:53:06 -070010032 if (tx_idx != tp->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070010033 goto out;
10034
10035 if (rx_idx != rx_start_idx + num_pkts)
10036 goto out;
10037
10038 desc = &tp->rx_rcb[rx_start_idx];
10039 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
10040 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
10041 if (opaque_key != RXD_OPAQUE_RING_STD)
10042 goto out;
10043
10044 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
10045 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
10046 goto out;
10047
10048 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) - 4;
10049 if (rx_len != tx_len)
10050 goto out;
10051
10052 rx_skb = tp->rx_std_buffers[desc_idx].skb;
10053
10054 map = pci_unmap_addr(&tp->rx_std_buffers[desc_idx], mapping);
10055 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len, PCI_DMA_FROMDEVICE);
10056
10057 for (i = 14; i < tx_len; i++) {
10058 if (*(rx_skb->data + i) != (u8) (i & 0xff))
10059 goto out;
10060 }
10061 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010062
Michael Chanc76949a2005-05-29 14:58:59 -070010063 /* tg3_free_rings will unmap and free the rx_skb */
10064out:
10065 return err;
10066}
10067
Michael Chan9f40dea2005-09-05 17:53:06 -070010068#define TG3_MAC_LOOPBACK_FAILED 1
10069#define TG3_PHY_LOOPBACK_FAILED 2
10070#define TG3_LOOPBACK_FAILED (TG3_MAC_LOOPBACK_FAILED | \
10071 TG3_PHY_LOOPBACK_FAILED)
10072
10073static int tg3_test_loopback(struct tg3 *tp)
10074{
10075 int err = 0;
Matt Carlson9936bcf2007-10-10 18:03:07 -070010076 u32 cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070010077
10078 if (!netif_running(tp->dev))
10079 return TG3_LOOPBACK_FAILED;
10080
Michael Chanb9ec6c12006-07-25 16:37:27 -070010081 err = tg3_reset_hw(tp, 1);
10082 if (err)
10083 return TG3_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070010084
Matt Carlsonb2a5c192008-04-03 21:44:44 -070010085 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070010086 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
10087 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070010088 int i;
10089 u32 status;
10090
10091 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
10092
10093 /* Wait for up to 40 microseconds to acquire lock. */
10094 for (i = 0; i < 4; i++) {
10095 status = tr32(TG3_CPMU_MUTEX_GNT);
10096 if (status == CPMU_MUTEX_GNT_DRIVER)
10097 break;
10098 udelay(10);
10099 }
10100
10101 if (status != CPMU_MUTEX_GNT_DRIVER)
10102 return TG3_LOOPBACK_FAILED;
10103
Matt Carlsonb2a5c192008-04-03 21:44:44 -070010104 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080010105 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070010106 tw32(TG3_CPMU_CTRL,
10107 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
10108 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070010109 }
10110
Michael Chan9f40dea2005-09-05 17:53:06 -070010111 if (tg3_run_loopback(tp, TG3_MAC_LOOPBACK))
10112 err |= TG3_MAC_LOOPBACK_FAILED;
Matt Carlson9936bcf2007-10-10 18:03:07 -070010113
Matt Carlsonb2a5c192008-04-03 21:44:44 -070010114 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070010115 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
10116 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070010117 tw32(TG3_CPMU_CTRL, cpmuctrl);
10118
10119 /* Release the mutex */
10120 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
10121 }
10122
Matt Carlsondd477002008-05-25 23:45:58 -070010123 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
10124 !(tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)) {
Michael Chan9f40dea2005-09-05 17:53:06 -070010125 if (tg3_run_loopback(tp, TG3_PHY_LOOPBACK))
10126 err |= TG3_PHY_LOOPBACK_FAILED;
10127 }
10128
10129 return err;
10130}
10131
Michael Chan4cafd3f2005-05-29 14:56:34 -070010132static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
10133 u64 *data)
10134{
Michael Chan566f86a2005-05-29 14:56:58 -070010135 struct tg3 *tp = netdev_priv(dev);
10136
Michael Chanbc1c7562006-03-20 17:48:03 -080010137 if (tp->link_config.phy_is_low_power)
10138 tg3_set_power_state(tp, PCI_D0);
10139
Michael Chan566f86a2005-05-29 14:56:58 -070010140 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
10141
10142 if (tg3_test_nvram(tp) != 0) {
10143 etest->flags |= ETH_TEST_FL_FAILED;
10144 data[0] = 1;
10145 }
Michael Chanca430072005-05-29 14:57:23 -070010146 if (tg3_test_link(tp) != 0) {
10147 etest->flags |= ETH_TEST_FL_FAILED;
10148 data[1] = 1;
10149 }
Michael Chana71116d2005-05-29 14:58:11 -070010150 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010151 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070010152
Michael Chanbbe832c2005-06-24 20:20:04 -070010153 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010154 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010155 tg3_netif_stop(tp);
10156 irq_sync = 1;
10157 }
10158
10159 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070010160
10161 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080010162 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070010163 tg3_halt_cpu(tp, RX_CPU_BASE);
10164 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
10165 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080010166 if (!err)
10167 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070010168
Michael Chand9ab5ad2006-03-20 22:27:35 -080010169 if (tp->tg3_flags2 & TG3_FLG2_MII_SERDES)
10170 tg3_phy_reset(tp);
10171
Michael Chana71116d2005-05-29 14:58:11 -070010172 if (tg3_test_registers(tp) != 0) {
10173 etest->flags |= ETH_TEST_FL_FAILED;
10174 data[2] = 1;
10175 }
Michael Chan7942e1d2005-05-29 14:58:36 -070010176 if (tg3_test_memory(tp) != 0) {
10177 etest->flags |= ETH_TEST_FL_FAILED;
10178 data[3] = 1;
10179 }
Michael Chan9f40dea2005-09-05 17:53:06 -070010180 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070010181 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070010182
David S. Millerf47c11e2005-06-24 20:18:35 -070010183 tg3_full_unlock(tp);
10184
Michael Chand4bc3922005-05-29 14:59:20 -070010185 if (tg3_test_interrupt(tp) != 0) {
10186 etest->flags |= ETH_TEST_FL_FAILED;
10187 data[5] = 1;
10188 }
David S. Millerf47c11e2005-06-24 20:18:35 -070010189
10190 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070010191
Michael Chana71116d2005-05-29 14:58:11 -070010192 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10193 if (netif_running(dev)) {
10194 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010195 err2 = tg3_restart_hw(tp, 1);
10196 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070010197 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070010198 }
David S. Millerf47c11e2005-06-24 20:18:35 -070010199
10200 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010201
10202 if (irq_sync && !err2)
10203 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070010204 }
Michael Chanbc1c7562006-03-20 17:48:03 -080010205 if (tp->link_config.phy_is_low_power)
10206 tg3_set_power_state(tp, PCI_D3hot);
10207
Michael Chan4cafd3f2005-05-29 14:56:34 -070010208}
10209
Linus Torvalds1da177e2005-04-16 15:20:36 -070010210static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
10211{
10212 struct mii_ioctl_data *data = if_mii(ifr);
10213 struct tg3 *tp = netdev_priv(dev);
10214 int err;
10215
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010216 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
10217 if (!(tp->tg3_flags3 & TG3_FLG3_PHY_CONNECTED))
10218 return -EAGAIN;
10219 return phy_mii_ioctl(tp->mdio_bus.phy_map[PHY_ADDR], data, cmd);
10220 }
10221
Linus Torvalds1da177e2005-04-16 15:20:36 -070010222 switch(cmd) {
10223 case SIOCGMIIPHY:
10224 data->phy_id = PHY_ADDR;
10225
10226 /* fallthru */
10227 case SIOCGMIIREG: {
10228 u32 mii_regval;
10229
10230 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
10231 break; /* We have no PHY */
10232
Michael Chanbc1c7562006-03-20 17:48:03 -080010233 if (tp->link_config.phy_is_low_power)
10234 return -EAGAIN;
10235
David S. Millerf47c11e2005-06-24 20:18:35 -070010236 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010237 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070010238 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010239
10240 data->val_out = mii_regval;
10241
10242 return err;
10243 }
10244
10245 case SIOCSMIIREG:
10246 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
10247 break; /* We have no PHY */
10248
10249 if (!capable(CAP_NET_ADMIN))
10250 return -EPERM;
10251
Michael Chanbc1c7562006-03-20 17:48:03 -080010252 if (tp->link_config.phy_is_low_power)
10253 return -EAGAIN;
10254
David S. Millerf47c11e2005-06-24 20:18:35 -070010255 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010256 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070010257 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010258
10259 return err;
10260
10261 default:
10262 /* do nothing */
10263 break;
10264 }
10265 return -EOPNOTSUPP;
10266}
10267
10268#if TG3_VLAN_TAG_USED
10269static void tg3_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
10270{
10271 struct tg3 *tp = netdev_priv(dev);
10272
Michael Chan29315e82006-06-29 20:12:30 -070010273 if (netif_running(dev))
10274 tg3_netif_stop(tp);
10275
David S. Millerf47c11e2005-06-24 20:18:35 -070010276 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010277
10278 tp->vlgrp = grp;
10279
10280 /* Update RX_MODE_KEEP_VLAN_TAG bit in RX_MODE register. */
10281 __tg3_set_rx_mode(dev);
10282
Michael Chan29315e82006-06-29 20:12:30 -070010283 if (netif_running(dev))
10284 tg3_netif_start(tp);
Michael Chan46966542007-07-11 19:47:19 -070010285
10286 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010287}
Linus Torvalds1da177e2005-04-16 15:20:36 -070010288#endif
10289
David S. Miller15f98502005-05-18 22:49:26 -070010290static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
10291{
10292 struct tg3 *tp = netdev_priv(dev);
10293
10294 memcpy(ec, &tp->coal, sizeof(*ec));
10295 return 0;
10296}
10297
Michael Chand244c892005-07-05 14:42:33 -070010298static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
10299{
10300 struct tg3 *tp = netdev_priv(dev);
10301 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
10302 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
10303
10304 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
10305 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
10306 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
10307 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
10308 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
10309 }
10310
10311 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
10312 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
10313 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
10314 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
10315 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
10316 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
10317 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
10318 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
10319 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
10320 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
10321 return -EINVAL;
10322
10323 /* No rx interrupts will be generated if both are zero */
10324 if ((ec->rx_coalesce_usecs == 0) &&
10325 (ec->rx_max_coalesced_frames == 0))
10326 return -EINVAL;
10327
10328 /* No tx interrupts will be generated if both are zero */
10329 if ((ec->tx_coalesce_usecs == 0) &&
10330 (ec->tx_max_coalesced_frames == 0))
10331 return -EINVAL;
10332
10333 /* Only copy relevant parameters, ignore all others. */
10334 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
10335 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
10336 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
10337 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
10338 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
10339 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
10340 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
10341 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
10342 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
10343
10344 if (netif_running(dev)) {
10345 tg3_full_lock(tp, 0);
10346 __tg3_set_coalesce(tp, &tp->coal);
10347 tg3_full_unlock(tp);
10348 }
10349 return 0;
10350}
10351
Jeff Garzik7282d492006-09-13 14:30:00 -040010352static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010353 .get_settings = tg3_get_settings,
10354 .set_settings = tg3_set_settings,
10355 .get_drvinfo = tg3_get_drvinfo,
10356 .get_regs_len = tg3_get_regs_len,
10357 .get_regs = tg3_get_regs,
10358 .get_wol = tg3_get_wol,
10359 .set_wol = tg3_set_wol,
10360 .get_msglevel = tg3_get_msglevel,
10361 .set_msglevel = tg3_set_msglevel,
10362 .nway_reset = tg3_nway_reset,
10363 .get_link = ethtool_op_get_link,
10364 .get_eeprom_len = tg3_get_eeprom_len,
10365 .get_eeprom = tg3_get_eeprom,
10366 .set_eeprom = tg3_set_eeprom,
10367 .get_ringparam = tg3_get_ringparam,
10368 .set_ringparam = tg3_set_ringparam,
10369 .get_pauseparam = tg3_get_pauseparam,
10370 .set_pauseparam = tg3_set_pauseparam,
10371 .get_rx_csum = tg3_get_rx_csum,
10372 .set_rx_csum = tg3_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010373 .set_tx_csum = tg3_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010374 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010375 .set_tso = tg3_set_tso,
Michael Chan4cafd3f2005-05-29 14:56:34 -070010376 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010377 .get_strings = tg3_get_strings,
Michael Chan4009a932005-09-05 17:52:54 -070010378 .phys_id = tg3_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010379 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070010380 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070010381 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010382 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010383};
10384
10385static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
10386{
Michael Chan1b277772006-03-20 22:27:48 -080010387 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010388
10389 tp->nvram_size = EEPROM_CHIP_SIZE;
10390
Michael Chan18201802006-03-20 22:29:15 -080010391 if (tg3_nvram_read_swab(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010392 return;
10393
Michael Chanb16250e2006-09-27 16:10:14 -070010394 if ((magic != TG3_EEPROM_MAGIC) &&
10395 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
10396 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010397 return;
10398
10399 /*
10400 * Size the chip by reading offsets at increasing powers of two.
10401 * When we encounter our validation signature, we know the addressing
10402 * has wrapped around, and thus have our chip size.
10403 */
Michael Chan1b277772006-03-20 22:27:48 -080010404 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010405
10406 while (cursize < tp->nvram_size) {
Michael Chan18201802006-03-20 22:29:15 -080010407 if (tg3_nvram_read_swab(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010408 return;
10409
Michael Chan18201802006-03-20 22:29:15 -080010410 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010411 break;
10412
10413 cursize <<= 1;
10414 }
10415
10416 tp->nvram_size = cursize;
10417}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010418
Linus Torvalds1da177e2005-04-16 15:20:36 -070010419static void __devinit tg3_get_nvram_size(struct tg3 *tp)
10420{
10421 u32 val;
10422
Michael Chan18201802006-03-20 22:29:15 -080010423 if (tg3_nvram_read_swab(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010424 return;
10425
10426 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080010427 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080010428 tg3_get_eeprom_size(tp);
10429 return;
10430 }
10431
Linus Torvalds1da177e2005-04-16 15:20:36 -070010432 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
10433 if (val != 0) {
10434 tp->nvram_size = (val >> 16) * 1024;
10435 return;
10436 }
10437 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010438 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010439}
10440
10441static void __devinit tg3_get_nvram_info(struct tg3 *tp)
10442{
10443 u32 nvcfg1;
10444
10445 nvcfg1 = tr32(NVRAM_CFG1);
10446 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
10447 tp->tg3_flags2 |= TG3_FLG2_FLASH;
10448 }
10449 else {
10450 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
10451 tw32(NVRAM_CFG1, nvcfg1);
10452 }
10453
Michael Chan4c987482005-09-05 17:52:38 -070010454 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) ||
Michael Chana4e2b342005-10-26 15:46:52 -070010455 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010456 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
10457 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
10458 tp->nvram_jedecnum = JEDEC_ATMEL;
10459 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
10460 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10461 break;
10462 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
10463 tp->nvram_jedecnum = JEDEC_ATMEL;
10464 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
10465 break;
10466 case FLASH_VENDOR_ATMEL_EEPROM:
10467 tp->nvram_jedecnum = JEDEC_ATMEL;
10468 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
10469 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10470 break;
10471 case FLASH_VENDOR_ST:
10472 tp->nvram_jedecnum = JEDEC_ST;
10473 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
10474 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10475 break;
10476 case FLASH_VENDOR_SAIFUN:
10477 tp->nvram_jedecnum = JEDEC_SAIFUN;
10478 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
10479 break;
10480 case FLASH_VENDOR_SST_SMALL:
10481 case FLASH_VENDOR_SST_LARGE:
10482 tp->nvram_jedecnum = JEDEC_SST;
10483 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
10484 break;
10485 }
10486 }
10487 else {
10488 tp->nvram_jedecnum = JEDEC_ATMEL;
10489 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
10490 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10491 }
10492}
10493
Michael Chan361b4ac2005-04-21 17:11:21 -070010494static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
10495{
10496 u32 nvcfg1;
10497
10498 nvcfg1 = tr32(NVRAM_CFG1);
10499
Michael Chane6af3012005-04-21 17:12:05 -070010500 /* NVRAM protection for TPM */
10501 if (nvcfg1 & (1 << 27))
10502 tp->tg3_flags2 |= TG3_FLG2_PROTECTED_NVRAM;
10503
Michael Chan361b4ac2005-04-21 17:11:21 -070010504 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
10505 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
10506 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
10507 tp->nvram_jedecnum = JEDEC_ATMEL;
10508 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10509 break;
10510 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
10511 tp->nvram_jedecnum = JEDEC_ATMEL;
10512 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10513 tp->tg3_flags2 |= TG3_FLG2_FLASH;
10514 break;
10515 case FLASH_5752VENDOR_ST_M45PE10:
10516 case FLASH_5752VENDOR_ST_M45PE20:
10517 case FLASH_5752VENDOR_ST_M45PE40:
10518 tp->nvram_jedecnum = JEDEC_ST;
10519 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10520 tp->tg3_flags2 |= TG3_FLG2_FLASH;
10521 break;
10522 }
10523
10524 if (tp->tg3_flags2 & TG3_FLG2_FLASH) {
10525 switch (nvcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
10526 case FLASH_5752PAGE_SIZE_256:
10527 tp->nvram_pagesize = 256;
10528 break;
10529 case FLASH_5752PAGE_SIZE_512:
10530 tp->nvram_pagesize = 512;
10531 break;
10532 case FLASH_5752PAGE_SIZE_1K:
10533 tp->nvram_pagesize = 1024;
10534 break;
10535 case FLASH_5752PAGE_SIZE_2K:
10536 tp->nvram_pagesize = 2048;
10537 break;
10538 case FLASH_5752PAGE_SIZE_4K:
10539 tp->nvram_pagesize = 4096;
10540 break;
10541 case FLASH_5752PAGE_SIZE_264:
10542 tp->nvram_pagesize = 264;
10543 break;
10544 }
10545 }
10546 else {
10547 /* For eeprom, set pagesize to maximum eeprom size */
10548 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
10549
10550 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
10551 tw32(NVRAM_CFG1, nvcfg1);
10552 }
10553}
10554
Michael Chand3c7b882006-03-23 01:28:25 -080010555static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
10556{
Matt Carlson989a9d22007-05-05 11:51:05 -070010557 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080010558
10559 nvcfg1 = tr32(NVRAM_CFG1);
10560
10561 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070010562 if (nvcfg1 & (1 << 27)) {
Michael Chand3c7b882006-03-23 01:28:25 -080010563 tp->tg3_flags2 |= TG3_FLG2_PROTECTED_NVRAM;
Matt Carlson989a9d22007-05-05 11:51:05 -070010564 protect = 1;
10565 }
Michael Chand3c7b882006-03-23 01:28:25 -080010566
Matt Carlson989a9d22007-05-05 11:51:05 -070010567 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
10568 switch (nvcfg1) {
Michael Chand3c7b882006-03-23 01:28:25 -080010569 case FLASH_5755VENDOR_ATMEL_FLASH_1:
10570 case FLASH_5755VENDOR_ATMEL_FLASH_2:
10571 case FLASH_5755VENDOR_ATMEL_FLASH_3:
Matt Carlson70b65a22007-07-11 19:48:50 -070010572 case FLASH_5755VENDOR_ATMEL_FLASH_5:
Michael Chand3c7b882006-03-23 01:28:25 -080010573 tp->nvram_jedecnum = JEDEC_ATMEL;
10574 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10575 tp->tg3_flags2 |= TG3_FLG2_FLASH;
10576 tp->nvram_pagesize = 264;
Matt Carlson70b65a22007-07-11 19:48:50 -070010577 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
10578 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010579 tp->nvram_size = (protect ? 0x3e200 :
10580 TG3_NVRAM_SIZE_512KB);
Matt Carlson989a9d22007-05-05 11:51:05 -070010581 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010582 tp->nvram_size = (protect ? 0x1f200 :
10583 TG3_NVRAM_SIZE_256KB);
Matt Carlson989a9d22007-05-05 11:51:05 -070010584 else
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010585 tp->nvram_size = (protect ? 0x1f200 :
10586 TG3_NVRAM_SIZE_128KB);
Michael Chand3c7b882006-03-23 01:28:25 -080010587 break;
10588 case FLASH_5752VENDOR_ST_M45PE10:
10589 case FLASH_5752VENDOR_ST_M45PE20:
10590 case FLASH_5752VENDOR_ST_M45PE40:
10591 tp->nvram_jedecnum = JEDEC_ST;
10592 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10593 tp->tg3_flags2 |= TG3_FLG2_FLASH;
10594 tp->nvram_pagesize = 256;
Matt Carlson989a9d22007-05-05 11:51:05 -070010595 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010596 tp->nvram_size = (protect ?
10597 TG3_NVRAM_SIZE_64KB :
10598 TG3_NVRAM_SIZE_128KB);
Matt Carlson989a9d22007-05-05 11:51:05 -070010599 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010600 tp->nvram_size = (protect ?
10601 TG3_NVRAM_SIZE_64KB :
10602 TG3_NVRAM_SIZE_256KB);
Matt Carlson989a9d22007-05-05 11:51:05 -070010603 else
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010604 tp->nvram_size = (protect ?
10605 TG3_NVRAM_SIZE_128KB :
10606 TG3_NVRAM_SIZE_512KB);
Michael Chand3c7b882006-03-23 01:28:25 -080010607 break;
10608 }
10609}
10610
Michael Chan1b277772006-03-20 22:27:48 -080010611static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
10612{
10613 u32 nvcfg1;
10614
10615 nvcfg1 = tr32(NVRAM_CFG1);
10616
10617 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
10618 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
10619 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
10620 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
10621 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
10622 tp->nvram_jedecnum = JEDEC_ATMEL;
10623 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10624 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
10625
10626 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
10627 tw32(NVRAM_CFG1, nvcfg1);
10628 break;
10629 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
10630 case FLASH_5755VENDOR_ATMEL_FLASH_1:
10631 case FLASH_5755VENDOR_ATMEL_FLASH_2:
10632 case FLASH_5755VENDOR_ATMEL_FLASH_3:
10633 tp->nvram_jedecnum = JEDEC_ATMEL;
10634 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10635 tp->tg3_flags2 |= TG3_FLG2_FLASH;
10636 tp->nvram_pagesize = 264;
10637 break;
10638 case FLASH_5752VENDOR_ST_M45PE10:
10639 case FLASH_5752VENDOR_ST_M45PE20:
10640 case FLASH_5752VENDOR_ST_M45PE40:
10641 tp->nvram_jedecnum = JEDEC_ST;
10642 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10643 tp->tg3_flags2 |= TG3_FLG2_FLASH;
10644 tp->nvram_pagesize = 256;
10645 break;
10646 }
10647}
10648
Matt Carlson6b91fa02007-10-10 18:01:09 -070010649static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
10650{
10651 u32 nvcfg1, protect = 0;
10652
10653 nvcfg1 = tr32(NVRAM_CFG1);
10654
10655 /* NVRAM protection for TPM */
10656 if (nvcfg1 & (1 << 27)) {
10657 tp->tg3_flags2 |= TG3_FLG2_PROTECTED_NVRAM;
10658 protect = 1;
10659 }
10660
10661 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
10662 switch (nvcfg1) {
10663 case FLASH_5761VENDOR_ATMEL_ADB021D:
10664 case FLASH_5761VENDOR_ATMEL_ADB041D:
10665 case FLASH_5761VENDOR_ATMEL_ADB081D:
10666 case FLASH_5761VENDOR_ATMEL_ADB161D:
10667 case FLASH_5761VENDOR_ATMEL_MDB021D:
10668 case FLASH_5761VENDOR_ATMEL_MDB041D:
10669 case FLASH_5761VENDOR_ATMEL_MDB081D:
10670 case FLASH_5761VENDOR_ATMEL_MDB161D:
10671 tp->nvram_jedecnum = JEDEC_ATMEL;
10672 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10673 tp->tg3_flags2 |= TG3_FLG2_FLASH;
10674 tp->tg3_flags3 |= TG3_FLG3_NO_NVRAM_ADDR_TRANS;
10675 tp->nvram_pagesize = 256;
10676 break;
10677 case FLASH_5761VENDOR_ST_A_M45PE20:
10678 case FLASH_5761VENDOR_ST_A_M45PE40:
10679 case FLASH_5761VENDOR_ST_A_M45PE80:
10680 case FLASH_5761VENDOR_ST_A_M45PE16:
10681 case FLASH_5761VENDOR_ST_M_M45PE20:
10682 case FLASH_5761VENDOR_ST_M_M45PE40:
10683 case FLASH_5761VENDOR_ST_M_M45PE80:
10684 case FLASH_5761VENDOR_ST_M_M45PE16:
10685 tp->nvram_jedecnum = JEDEC_ST;
10686 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10687 tp->tg3_flags2 |= TG3_FLG2_FLASH;
10688 tp->nvram_pagesize = 256;
10689 break;
10690 }
10691
10692 if (protect) {
10693 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
10694 } else {
10695 switch (nvcfg1) {
10696 case FLASH_5761VENDOR_ATMEL_ADB161D:
10697 case FLASH_5761VENDOR_ATMEL_MDB161D:
10698 case FLASH_5761VENDOR_ST_A_M45PE16:
10699 case FLASH_5761VENDOR_ST_M_M45PE16:
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010700 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
Matt Carlson6b91fa02007-10-10 18:01:09 -070010701 break;
10702 case FLASH_5761VENDOR_ATMEL_ADB081D:
10703 case FLASH_5761VENDOR_ATMEL_MDB081D:
10704 case FLASH_5761VENDOR_ST_A_M45PE80:
10705 case FLASH_5761VENDOR_ST_M_M45PE80:
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010706 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
Matt Carlson6b91fa02007-10-10 18:01:09 -070010707 break;
10708 case FLASH_5761VENDOR_ATMEL_ADB041D:
10709 case FLASH_5761VENDOR_ATMEL_MDB041D:
10710 case FLASH_5761VENDOR_ST_A_M45PE40:
10711 case FLASH_5761VENDOR_ST_M_M45PE40:
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010712 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Matt Carlson6b91fa02007-10-10 18:01:09 -070010713 break;
10714 case FLASH_5761VENDOR_ATMEL_ADB021D:
10715 case FLASH_5761VENDOR_ATMEL_MDB021D:
10716 case FLASH_5761VENDOR_ST_A_M45PE20:
10717 case FLASH_5761VENDOR_ST_M_M45PE20:
Matt Carlsonfd1122a2008-05-02 16:48:36 -070010718 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
Matt Carlson6b91fa02007-10-10 18:01:09 -070010719 break;
10720 }
10721 }
10722}
10723
Michael Chanb5d37722006-09-27 16:06:21 -070010724static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
10725{
10726 tp->nvram_jedecnum = JEDEC_ATMEL;
10727 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
10728 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
10729}
10730
Linus Torvalds1da177e2005-04-16 15:20:36 -070010731/* Chips other than 5700/5701 use the NVRAM for fetching info. */
10732static void __devinit tg3_nvram_init(struct tg3 *tp)
10733{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010734 tw32_f(GRC_EEPROM_ADDR,
10735 (EEPROM_ADDR_FSM_RESET |
10736 (EEPROM_DEFAULT_CLOCK_PERIOD <<
10737 EEPROM_ADDR_CLKPERD_SHIFT)));
10738
Michael Chan9d57f012006-12-07 00:23:25 -080010739 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010740
10741 /* Enable seeprom accesses. */
10742 tw32_f(GRC_LOCAL_CTRL,
10743 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
10744 udelay(100);
10745
10746 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
10747 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
10748 tp->tg3_flags |= TG3_FLAG_NVRAM;
10749
Michael Chanec41c7d2006-01-17 02:40:55 -080010750 if (tg3_nvram_lock(tp)) {
10751 printk(KERN_WARNING PFX "%s: Cannot get nvarm lock, "
10752 "tg3_nvram_init failed.\n", tp->dev->name);
10753 return;
10754 }
Michael Chane6af3012005-04-21 17:12:05 -070010755 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010756
Matt Carlson989a9d22007-05-05 11:51:05 -070010757 tp->nvram_size = 0;
10758
Michael Chan361b4ac2005-04-21 17:11:21 -070010759 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
10760 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080010761 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
10762 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070010763 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070010764 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
10765 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080010766 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070010767 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
10768 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070010769 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10770 tg3_get_5906_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070010771 else
10772 tg3_get_nvram_info(tp);
10773
Matt Carlson989a9d22007-05-05 11:51:05 -070010774 if (tp->nvram_size == 0)
10775 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010776
Michael Chane6af3012005-04-21 17:12:05 -070010777 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080010778 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010779
10780 } else {
10781 tp->tg3_flags &= ~(TG3_FLAG_NVRAM | TG3_FLAG_NVRAM_BUFFERED);
10782
10783 tg3_get_eeprom_size(tp);
10784 }
10785}
10786
10787static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
10788 u32 offset, u32 *val)
10789{
10790 u32 tmp;
10791 int i;
10792
10793 if (offset > EEPROM_ADDR_ADDR_MASK ||
10794 (offset % 4) != 0)
10795 return -EINVAL;
10796
10797 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
10798 EEPROM_ADDR_DEVID_MASK |
10799 EEPROM_ADDR_READ);
10800 tw32(GRC_EEPROM_ADDR,
10801 tmp |
10802 (0 << EEPROM_ADDR_DEVID_SHIFT) |
10803 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
10804 EEPROM_ADDR_ADDR_MASK) |
10805 EEPROM_ADDR_READ | EEPROM_ADDR_START);
10806
Michael Chan9d57f012006-12-07 00:23:25 -080010807 for (i = 0; i < 1000; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010808 tmp = tr32(GRC_EEPROM_ADDR);
10809
10810 if (tmp & EEPROM_ADDR_COMPLETE)
10811 break;
Michael Chan9d57f012006-12-07 00:23:25 -080010812 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010813 }
10814 if (!(tmp & EEPROM_ADDR_COMPLETE))
10815 return -EBUSY;
10816
10817 *val = tr32(GRC_EEPROM_DATA);
10818 return 0;
10819}
10820
10821#define NVRAM_CMD_TIMEOUT 10000
10822
10823static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
10824{
10825 int i;
10826
10827 tw32(NVRAM_CMD, nvram_cmd);
10828 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
10829 udelay(10);
10830 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
10831 udelay(10);
10832 break;
10833 }
10834 }
10835 if (i == NVRAM_CMD_TIMEOUT) {
10836 return -EBUSY;
10837 }
10838 return 0;
10839}
10840
Michael Chan18201802006-03-20 22:29:15 -080010841static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
10842{
10843 if ((tp->tg3_flags & TG3_FLAG_NVRAM) &&
10844 (tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) &&
10845 (tp->tg3_flags2 & TG3_FLG2_FLASH) &&
Matt Carlson6b91fa02007-10-10 18:01:09 -070010846 !(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM_ADDR_TRANS) &&
Michael Chan18201802006-03-20 22:29:15 -080010847 (tp->nvram_jedecnum == JEDEC_ATMEL))
10848
10849 addr = ((addr / tp->nvram_pagesize) <<
10850 ATMEL_AT45DB0X1B_PAGE_POS) +
10851 (addr % tp->nvram_pagesize);
10852
10853 return addr;
10854}
10855
Michael Chanc4e65752006-03-20 22:29:32 -080010856static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
10857{
10858 if ((tp->tg3_flags & TG3_FLAG_NVRAM) &&
10859 (tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) &&
10860 (tp->tg3_flags2 & TG3_FLG2_FLASH) &&
Matt Carlson6b91fa02007-10-10 18:01:09 -070010861 !(tp->tg3_flags3 & TG3_FLG3_NO_NVRAM_ADDR_TRANS) &&
Michael Chanc4e65752006-03-20 22:29:32 -080010862 (tp->nvram_jedecnum == JEDEC_ATMEL))
10863
10864 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
10865 tp->nvram_pagesize) +
10866 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
10867
10868 return addr;
10869}
10870
Linus Torvalds1da177e2005-04-16 15:20:36 -070010871static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
10872{
10873 int ret;
10874
Linus Torvalds1da177e2005-04-16 15:20:36 -070010875 if (!(tp->tg3_flags & TG3_FLAG_NVRAM))
10876 return tg3_nvram_read_using_eeprom(tp, offset, val);
10877
Michael Chan18201802006-03-20 22:29:15 -080010878 offset = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010879
10880 if (offset > NVRAM_ADDR_MSK)
10881 return -EINVAL;
10882
Michael Chanec41c7d2006-01-17 02:40:55 -080010883 ret = tg3_nvram_lock(tp);
10884 if (ret)
10885 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010886
Michael Chane6af3012005-04-21 17:12:05 -070010887 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010888
10889 tw32(NVRAM_ADDR, offset);
10890 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
10891 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
10892
10893 if (ret == 0)
10894 *val = swab32(tr32(NVRAM_RDDATA));
10895
Michael Chane6af3012005-04-21 17:12:05 -070010896 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010897
Michael Chan381291b2005-12-13 21:08:21 -080010898 tg3_nvram_unlock(tp);
10899
Linus Torvalds1da177e2005-04-16 15:20:36 -070010900 return ret;
10901}
10902
Al Virob9fc7dc2007-12-17 22:59:57 -080010903static int tg3_nvram_read_le(struct tg3 *tp, u32 offset, __le32 *val)
10904{
10905 u32 v;
10906 int res = tg3_nvram_read(tp, offset, &v);
10907 if (!res)
10908 *val = cpu_to_le32(v);
10909 return res;
10910}
10911
Michael Chan18201802006-03-20 22:29:15 -080010912static int tg3_nvram_read_swab(struct tg3 *tp, u32 offset, u32 *val)
10913{
10914 int err;
10915 u32 tmp;
10916
10917 err = tg3_nvram_read(tp, offset, &tmp);
10918 *val = swab32(tmp);
10919 return err;
10920}
10921
Linus Torvalds1da177e2005-04-16 15:20:36 -070010922static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
10923 u32 offset, u32 len, u8 *buf)
10924{
10925 int i, j, rc = 0;
10926 u32 val;
10927
10928 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080010929 u32 addr;
10930 __le32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010931
10932 addr = offset + i;
10933
10934 memcpy(&data, buf + i, 4);
10935
Al Virob9fc7dc2007-12-17 22:59:57 -080010936 tw32(GRC_EEPROM_DATA, le32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010937
10938 val = tr32(GRC_EEPROM_ADDR);
10939 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
10940
10941 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
10942 EEPROM_ADDR_READ);
10943 tw32(GRC_EEPROM_ADDR, val |
10944 (0 << EEPROM_ADDR_DEVID_SHIFT) |
10945 (addr & EEPROM_ADDR_ADDR_MASK) |
10946 EEPROM_ADDR_START |
10947 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010948
Michael Chan9d57f012006-12-07 00:23:25 -080010949 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010950 val = tr32(GRC_EEPROM_ADDR);
10951
10952 if (val & EEPROM_ADDR_COMPLETE)
10953 break;
Michael Chan9d57f012006-12-07 00:23:25 -080010954 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010955 }
10956 if (!(val & EEPROM_ADDR_COMPLETE)) {
10957 rc = -EBUSY;
10958 break;
10959 }
10960 }
10961
10962 return rc;
10963}
10964
10965/* offset and length are dword aligned */
10966static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
10967 u8 *buf)
10968{
10969 int ret = 0;
10970 u32 pagesize = tp->nvram_pagesize;
10971 u32 pagemask = pagesize - 1;
10972 u32 nvram_cmd;
10973 u8 *tmp;
10974
10975 tmp = kmalloc(pagesize, GFP_KERNEL);
10976 if (tmp == NULL)
10977 return -ENOMEM;
10978
10979 while (len) {
10980 int j;
Michael Chane6af3012005-04-21 17:12:05 -070010981 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010982
10983 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010984
Linus Torvalds1da177e2005-04-16 15:20:36 -070010985 for (j = 0; j < pagesize; j += 4) {
Al Viro286e3102007-12-17 23:00:31 -080010986 if ((ret = tg3_nvram_read_le(tp, phy_addr + j,
Al Virob9fc7dc2007-12-17 22:59:57 -080010987 (__le32 *) (tmp + j))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010988 break;
10989 }
10990 if (ret)
10991 break;
10992
10993 page_off = offset & pagemask;
10994 size = pagesize;
10995 if (len < size)
10996 size = len;
10997
10998 len -= size;
10999
11000 memcpy(tmp + page_off, buf, size);
11001
11002 offset = offset + (pagesize - page_off);
11003
Michael Chane6af3012005-04-21 17:12:05 -070011004 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011005
11006 /*
11007 * Before we can erase the flash page, we need
11008 * to issue a special "write enable" command.
11009 */
11010 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11011
11012 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11013 break;
11014
11015 /* Erase the target page */
11016 tw32(NVRAM_ADDR, phy_addr);
11017
11018 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
11019 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
11020
11021 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11022 break;
11023
11024 /* Issue another write enable to start the write. */
11025 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11026
11027 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
11028 break;
11029
11030 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011031 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011032
Al Virob9fc7dc2007-12-17 22:59:57 -080011033 data = *((__be32 *) (tmp + j));
11034 /* swab32(le32_to_cpu(data)), actually */
11035 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011036
11037 tw32(NVRAM_ADDR, phy_addr + j);
11038
11039 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
11040 NVRAM_CMD_WR;
11041
11042 if (j == 0)
11043 nvram_cmd |= NVRAM_CMD_FIRST;
11044 else if (j == (pagesize - 4))
11045 nvram_cmd |= NVRAM_CMD_LAST;
11046
11047 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
11048 break;
11049 }
11050 if (ret)
11051 break;
11052 }
11053
11054 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
11055 tg3_nvram_exec_cmd(tp, nvram_cmd);
11056
11057 kfree(tmp);
11058
11059 return ret;
11060}
11061
11062/* offset and length are dword aligned */
11063static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
11064 u8 *buf)
11065{
11066 int i, ret = 0;
11067
11068 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011069 u32 page_off, phy_addr, nvram_cmd;
11070 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011071
11072 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080011073 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011074
11075 page_off = offset % tp->nvram_pagesize;
11076
Michael Chan18201802006-03-20 22:29:15 -080011077 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011078
11079 tw32(NVRAM_ADDR, phy_addr);
11080
11081 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
11082
11083 if ((page_off == 0) || (i == 0))
11084 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070011085 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011086 nvram_cmd |= NVRAM_CMD_LAST;
11087
11088 if (i == (len - 4))
11089 nvram_cmd |= NVRAM_CMD_LAST;
11090
Michael Chan4c987482005-09-05 17:52:38 -070011091 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752) &&
Michael Chanaf36e6b2006-03-23 01:28:06 -080011092 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5755) &&
Michael Chan1b277772006-03-20 22:27:48 -080011093 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5787) &&
Matt Carlsond30cdd22007-10-07 23:28:35 -070011094 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784) &&
Matt Carlson9936bcf2007-10-10 18:03:07 -070011095 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) &&
Matt Carlson57e69832008-05-25 23:48:31 -070011096 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) &&
Michael Chan4c987482005-09-05 17:52:38 -070011097 (tp->nvram_jedecnum == JEDEC_ST) &&
11098 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011099
11100 if ((ret = tg3_nvram_exec_cmd(tp,
11101 NVRAM_CMD_WREN | NVRAM_CMD_GO |
11102 NVRAM_CMD_DONE)))
11103
11104 break;
11105 }
11106 if (!(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
11107 /* We always do complete word writes to eeprom. */
11108 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
11109 }
11110
11111 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
11112 break;
11113 }
11114 return ret;
11115}
11116
11117/* offset and length are dword aligned */
11118static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
11119{
11120 int ret;
11121
Linus Torvalds1da177e2005-04-16 15:20:36 -070011122 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070011123 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
11124 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011125 udelay(40);
11126 }
11127
11128 if (!(tp->tg3_flags & TG3_FLAG_NVRAM)) {
11129 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
11130 }
11131 else {
11132 u32 grc_mode;
11133
Michael Chanec41c7d2006-01-17 02:40:55 -080011134 ret = tg3_nvram_lock(tp);
11135 if (ret)
11136 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011137
Michael Chane6af3012005-04-21 17:12:05 -070011138 tg3_enable_nvram_access(tp);
11139 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
11140 !(tp->tg3_flags2 & TG3_FLG2_PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011141 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011142
11143 grc_mode = tr32(GRC_MODE);
11144 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
11145
11146 if ((tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) ||
11147 !(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
11148
11149 ret = tg3_nvram_write_block_buffered(tp, offset, len,
11150 buf);
11151 }
11152 else {
11153 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
11154 buf);
11155 }
11156
11157 grc_mode = tr32(GRC_MODE);
11158 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
11159
Michael Chane6af3012005-04-21 17:12:05 -070011160 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011161 tg3_nvram_unlock(tp);
11162 }
11163
11164 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
Michael Chan314fba32005-04-21 17:07:04 -070011165 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011166 udelay(40);
11167 }
11168
11169 return ret;
11170}
11171
11172struct subsys_tbl_ent {
11173 u16 subsys_vendor, subsys_devid;
11174 u32 phy_id;
11175};
11176
11177static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
11178 /* Broadcom boards. */
11179 { PCI_VENDOR_ID_BROADCOM, 0x1644, PHY_ID_BCM5401 }, /* BCM95700A6 */
11180 { PCI_VENDOR_ID_BROADCOM, 0x0001, PHY_ID_BCM5701 }, /* BCM95701A5 */
11181 { PCI_VENDOR_ID_BROADCOM, 0x0002, PHY_ID_BCM8002 }, /* BCM95700T6 */
11182 { PCI_VENDOR_ID_BROADCOM, 0x0003, 0 }, /* BCM95700A9 */
11183 { PCI_VENDOR_ID_BROADCOM, 0x0005, PHY_ID_BCM5701 }, /* BCM95701T1 */
11184 { PCI_VENDOR_ID_BROADCOM, 0x0006, PHY_ID_BCM5701 }, /* BCM95701T8 */
11185 { PCI_VENDOR_ID_BROADCOM, 0x0007, 0 }, /* BCM95701A7 */
11186 { PCI_VENDOR_ID_BROADCOM, 0x0008, PHY_ID_BCM5701 }, /* BCM95701A10 */
11187 { PCI_VENDOR_ID_BROADCOM, 0x8008, PHY_ID_BCM5701 }, /* BCM95701A12 */
11188 { PCI_VENDOR_ID_BROADCOM, 0x0009, PHY_ID_BCM5703 }, /* BCM95703Ax1 */
11189 { PCI_VENDOR_ID_BROADCOM, 0x8009, PHY_ID_BCM5703 }, /* BCM95703Ax2 */
11190
11191 /* 3com boards. */
11192 { PCI_VENDOR_ID_3COM, 0x1000, PHY_ID_BCM5401 }, /* 3C996T */
11193 { PCI_VENDOR_ID_3COM, 0x1006, PHY_ID_BCM5701 }, /* 3C996BT */
11194 { PCI_VENDOR_ID_3COM, 0x1004, 0 }, /* 3C996SX */
11195 { PCI_VENDOR_ID_3COM, 0x1007, PHY_ID_BCM5701 }, /* 3C1000T */
11196 { PCI_VENDOR_ID_3COM, 0x1008, PHY_ID_BCM5701 }, /* 3C940BR01 */
11197
11198 /* DELL boards. */
11199 { PCI_VENDOR_ID_DELL, 0x00d1, PHY_ID_BCM5401 }, /* VIPER */
11200 { PCI_VENDOR_ID_DELL, 0x0106, PHY_ID_BCM5401 }, /* JAGUAR */
11201 { PCI_VENDOR_ID_DELL, 0x0109, PHY_ID_BCM5411 }, /* MERLOT */
11202 { PCI_VENDOR_ID_DELL, 0x010a, PHY_ID_BCM5411 }, /* SLIM_MERLOT */
11203
11204 /* Compaq boards. */
11205 { PCI_VENDOR_ID_COMPAQ, 0x007c, PHY_ID_BCM5701 }, /* BANSHEE */
11206 { PCI_VENDOR_ID_COMPAQ, 0x009a, PHY_ID_BCM5701 }, /* BANSHEE_2 */
11207 { PCI_VENDOR_ID_COMPAQ, 0x007d, 0 }, /* CHANGELING */
11208 { PCI_VENDOR_ID_COMPAQ, 0x0085, PHY_ID_BCM5701 }, /* NC7780 */
11209 { PCI_VENDOR_ID_COMPAQ, 0x0099, PHY_ID_BCM5701 }, /* NC7780_2 */
11210
11211 /* IBM boards. */
11212 { PCI_VENDOR_ID_IBM, 0x0281, 0 } /* IBM??? */
11213};
11214
11215static inline struct subsys_tbl_ent *lookup_by_subsys(struct tg3 *tp)
11216{
11217 int i;
11218
11219 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
11220 if ((subsys_id_to_phy_id[i].subsys_vendor ==
11221 tp->pdev->subsystem_vendor) &&
11222 (subsys_id_to_phy_id[i].subsys_devid ==
11223 tp->pdev->subsystem_device))
11224 return &subsys_id_to_phy_id[i];
11225 }
11226 return NULL;
11227}
11228
Michael Chan7d0c41e2005-04-21 17:06:20 -070011229static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011230{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011231 u32 val;
Michael Chancaf636c72006-03-22 01:05:31 -080011232 u16 pmcsr;
11233
11234 /* On some early chips the SRAM cannot be accessed in D3hot state,
11235 * so need make sure we're in D0.
11236 */
11237 pci_read_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, &pmcsr);
11238 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
11239 pci_write_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, pmcsr);
11240 msleep(1);
Michael Chan7d0c41e2005-04-21 17:06:20 -070011241
11242 /* Make sure register accesses (indirect or otherwise)
11243 * will function correctly.
11244 */
11245 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
11246 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011247
David S. Millerf49639e2006-06-09 11:58:36 -070011248 /* The memory arbiter has to be enabled in order for SRAM accesses
11249 * to succeed. Normally on powerup the tg3 chip firmware will make
11250 * sure it is enabled, but other entities such as system netboot
11251 * code might disable it.
11252 */
11253 val = tr32(MEMARB_MODE);
11254 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
11255
Linus Torvalds1da177e2005-04-16 15:20:36 -070011256 tp->phy_id = PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070011257 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
11258
Gary Zambranoa85feb82007-05-05 11:52:19 -070011259 /* Assume an onboard device and WOL capable by default. */
11260 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT | TG3_FLAG_WOL_CAP;
David S. Miller72b845e2006-03-14 14:11:48 -080011261
Michael Chanb5d37722006-09-27 16:06:21 -070011262 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080011263 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Michael Chanb5d37722006-09-27 16:06:21 -070011264 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080011265 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
11266 }
Matt Carlson0527ba32007-10-10 18:03:30 -070011267 val = tr32(VCPU_CFGSHDW);
11268 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Matt Carlson8ed5d972007-05-07 00:25:49 -070011269 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
Matt Carlson0527ba32007-10-10 18:03:30 -070011270 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070011271 (val & VCPU_CFGSHDW_WOL_MAGPKT) &&
11272 device_may_wakeup(&tp->pdev->dev))
Matt Carlson0527ba32007-10-10 18:03:30 -070011273 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
Michael Chanb5d37722006-09-27 16:06:21 -070011274 return;
11275 }
11276
Linus Torvalds1da177e2005-04-16 15:20:36 -070011277 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
11278 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
11279 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070011280 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070011281 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011282
11283 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
11284 tp->nic_sram_data_cfg = nic_cfg;
11285
11286 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
11287 ver >>= NIC_SRAM_DATA_VER_SHIFT;
11288 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
11289 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
11290 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703) &&
11291 (ver > 0) && (ver < 0x100))
11292 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
11293
Matt Carlsona9daf362008-05-25 23:49:44 -070011294 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
11295 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
11296
Linus Torvalds1da177e2005-04-16 15:20:36 -070011297 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
11298 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
11299 eeprom_phy_serdes = 1;
11300
11301 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
11302 if (nic_phy_id != 0) {
11303 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
11304 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
11305
11306 eeprom_phy_id = (id1 >> 16) << 10;
11307 eeprom_phy_id |= (id2 & 0xfc00) << 16;
11308 eeprom_phy_id |= (id2 & 0x03ff) << 0;
11309 } else
11310 eeprom_phy_id = 0;
11311
Michael Chan7d0c41e2005-04-21 17:06:20 -070011312 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070011313 if (eeprom_phy_serdes) {
Michael Chana4e2b342005-10-26 15:46:52 -070011314 if (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)
Michael Chan747e8f82005-07-25 12:33:22 -070011315 tp->tg3_flags2 |= TG3_FLG2_MII_SERDES;
11316 else
11317 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
11318 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070011319
John W. Linvillecbf46852005-04-21 17:01:29 -070011320 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011321 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
11322 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070011323 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070011324 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
11325
11326 switch (led_cfg) {
11327 default:
11328 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
11329 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
11330 break;
11331
11332 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
11333 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
11334 break;
11335
11336 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
11337 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070011338
11339 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
11340 * read on some older 5700/5701 bootcode.
11341 */
11342 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
11343 ASIC_REV_5700 ||
11344 GET_ASIC_REV(tp->pci_chip_rev_id) ==
11345 ASIC_REV_5701)
11346 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
11347
Linus Torvalds1da177e2005-04-16 15:20:36 -070011348 break;
11349
11350 case SHASTA_EXT_LED_SHARED:
11351 tp->led_ctrl = LED_CTRL_MODE_SHARED;
11352 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
11353 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
11354 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
11355 LED_CTRL_MODE_PHY_2);
11356 break;
11357
11358 case SHASTA_EXT_LED_MAC:
11359 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
11360 break;
11361
11362 case SHASTA_EXT_LED_COMBO:
11363 tp->led_ctrl = LED_CTRL_MODE_COMBO;
11364 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
11365 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
11366 LED_CTRL_MODE_PHY_2);
11367 break;
11368
Stephen Hemminger855e1112008-04-16 16:37:28 -070011369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011370
11371 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
11372 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
11373 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
11374 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
11375
Matt Carlsonb2a5c192008-04-03 21:44:44 -070011376 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
11377 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080011378
Michael Chan9d26e212006-12-07 00:21:14 -080011379 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011380 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080011381 if ((tp->pdev->subsystem_vendor ==
11382 PCI_VENDOR_ID_ARIMA) &&
11383 (tp->pdev->subsystem_device == 0x205a ||
11384 tp->pdev->subsystem_device == 0x2063))
11385 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
11386 } else {
David S. Millerf49639e2006-06-09 11:58:36 -070011387 tp->tg3_flags &= ~TG3_FLAG_EEPROM_WRITE_PROT;
Michael Chan9d26e212006-12-07 00:21:14 -080011388 tp->tg3_flags2 |= TG3_FLG2_IS_NIC;
11389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011390
11391 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
11392 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
John W. Linvillecbf46852005-04-21 17:01:29 -070011393 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011394 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
11395 }
Matt Carlson0d3031d2007-10-10 18:02:43 -070011396 if (nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE)
11397 tp->tg3_flags3 |= TG3_FLG3_ENABLE_APE;
Gary Zambranoa85feb82007-05-05 11:52:19 -070011398 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES &&
11399 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
11400 tp->tg3_flags &= ~TG3_FLAG_WOL_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011401
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070011402 if ((tp->tg3_flags & TG3_FLAG_WOL_CAP) &&
11403 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE) &&
11404 device_may_wakeup(&tp->pdev->dev))
Matt Carlson0527ba32007-10-10 18:03:30 -070011405 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
11406
Linus Torvalds1da177e2005-04-16 15:20:36 -070011407 if (cfg2 & (1 << 17))
11408 tp->tg3_flags2 |= TG3_FLG2_CAPACITIVE_COUPLING;
11409
11410 /* serdes signal pre-emphasis in register 0x590 set by */
11411 /* bootcode if bit 18 is set */
11412 if (cfg2 & (1 << 18))
11413 tp->tg3_flags2 |= TG3_FLG2_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070011414
11415 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
11416 u32 cfg3;
11417
11418 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
11419 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
11420 tp->tg3_flags |= TG3_FLAG_ASPM_WORKAROUND;
11421 }
Matt Carlsona9daf362008-05-25 23:49:44 -070011422
11423 if (cfg4 & NIC_SRAM_RGMII_STD_IBND_DISABLE)
11424 tp->tg3_flags3 |= TG3_FLG3_RGMII_STD_IBND_DISABLE;
11425 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
11426 tp->tg3_flags3 |= TG3_FLG3_RGMII_EXT_IBND_RX_EN;
11427 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
11428 tp->tg3_flags3 |= TG3_FLG3_RGMII_EXT_IBND_TX_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011429 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070011430}
11431
Matt Carlsonb2a5c192008-04-03 21:44:44 -070011432static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
11433{
11434 int i;
11435 u32 val;
11436
11437 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
11438 tw32(OTP_CTRL, cmd);
11439
11440 /* Wait for up to 1 ms for command to execute. */
11441 for (i = 0; i < 100; i++) {
11442 val = tr32(OTP_STATUS);
11443 if (val & OTP_STATUS_CMD_DONE)
11444 break;
11445 udelay(10);
11446 }
11447
11448 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
11449}
11450
11451/* Read the gphy configuration from the OTP region of the chip. The gphy
11452 * configuration is a 32-bit value that straddles the alignment boundary.
11453 * We do two 32-bit reads and then shift and merge the results.
11454 */
11455static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
11456{
11457 u32 bhalf_otp, thalf_otp;
11458
11459 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
11460
11461 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
11462 return 0;
11463
11464 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
11465
11466 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
11467 return 0;
11468
11469 thalf_otp = tr32(OTP_READ_DATA);
11470
11471 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
11472
11473 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
11474 return 0;
11475
11476 bhalf_otp = tr32(OTP_READ_DATA);
11477
11478 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
11479}
11480
Michael Chan7d0c41e2005-04-21 17:06:20 -070011481static int __devinit tg3_phy_probe(struct tg3 *tp)
11482{
11483 u32 hw_phy_id_1, hw_phy_id_2;
11484 u32 hw_phy_id, hw_phy_id_masked;
11485 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011486
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011487 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB)
11488 return tg3_phy_init(tp);
11489
Linus Torvalds1da177e2005-04-16 15:20:36 -070011490 /* Reading the PHY ID register can conflict with ASF
11491 * firwmare access to the PHY hardware.
11492 */
11493 err = 0;
Matt Carlson0d3031d2007-10-10 18:02:43 -070011494 if ((tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
11495 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011496 hw_phy_id = hw_phy_id_masked = PHY_ID_INVALID;
11497 } else {
11498 /* Now read the physical PHY_ID from the chip and verify
11499 * that it is sane. If it doesn't look good, we fall back
11500 * to either the hard-coded table based PHY_ID and failing
11501 * that the value found in the eeprom area.
11502 */
11503 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
11504 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
11505
11506 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
11507 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
11508 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
11509
11510 hw_phy_id_masked = hw_phy_id & PHY_ID_MASK;
11511 }
11512
11513 if (!err && KNOWN_PHY_ID(hw_phy_id_masked)) {
11514 tp->phy_id = hw_phy_id;
11515 if (hw_phy_id_masked == PHY_ID_BCM8002)
11516 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070011517 else
11518 tp->tg3_flags2 &= ~TG3_FLG2_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011519 } else {
Michael Chan7d0c41e2005-04-21 17:06:20 -070011520 if (tp->phy_id != PHY_ID_INVALID) {
11521 /* Do nothing, phy ID already set up in
11522 * tg3_get_eeprom_hw_cfg().
11523 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011524 } else {
11525 struct subsys_tbl_ent *p;
11526
11527 /* No eeprom signature? Try the hardcoded
11528 * subsys device table.
11529 */
11530 p = lookup_by_subsys(tp);
11531 if (!p)
11532 return -ENODEV;
11533
11534 tp->phy_id = p->phy_id;
11535 if (!tp->phy_id ||
11536 tp->phy_id == PHY_ID_BCM8002)
11537 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
11538 }
11539 }
11540
Michael Chan747e8f82005-07-25 12:33:22 -070011541 if (!(tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) &&
Matt Carlson0d3031d2007-10-10 18:02:43 -070011542 !(tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070011543 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
Michael Chan3600d912006-12-07 00:21:48 -080011544 u32 bmsr, adv_reg, tg3_ctrl, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011545
11546 tg3_readphy(tp, MII_BMSR, &bmsr);
11547 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
11548 (bmsr & BMSR_LSTATUS))
11549 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011550
Linus Torvalds1da177e2005-04-16 15:20:36 -070011551 err = tg3_phy_reset(tp);
11552 if (err)
11553 return err;
11554
11555 adv_reg = (ADVERTISE_10HALF | ADVERTISE_10FULL |
11556 ADVERTISE_100HALF | ADVERTISE_100FULL |
11557 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
11558 tg3_ctrl = 0;
11559 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
11560 tg3_ctrl = (MII_TG3_CTRL_ADV_1000_HALF |
11561 MII_TG3_CTRL_ADV_1000_FULL);
11562 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
11563 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
11564 tg3_ctrl |= (MII_TG3_CTRL_AS_MASTER |
11565 MII_TG3_CTRL_ENABLE_AS_MASTER);
11566 }
11567
Michael Chan3600d912006-12-07 00:21:48 -080011568 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
11569 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
11570 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
11571 if (!tg3_copper_is_advertising_all(tp, mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011572 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
11573
11574 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
11575 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
11576
11577 tg3_writephy(tp, MII_BMCR,
11578 BMCR_ANENABLE | BMCR_ANRESTART);
11579 }
11580 tg3_phy_set_wirespeed(tp);
11581
11582 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
11583 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
11584 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
11585 }
11586
11587skip_phy_reset:
11588 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
11589 err = tg3_init_5401phy_dsp(tp);
11590 if (err)
11591 return err;
11592 }
11593
11594 if (!err && ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401)) {
11595 err = tg3_init_5401phy_dsp(tp);
11596 }
11597
Michael Chan747e8f82005-07-25 12:33:22 -070011598 if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011599 tp->link_config.advertising =
11600 (ADVERTISED_1000baseT_Half |
11601 ADVERTISED_1000baseT_Full |
11602 ADVERTISED_Autoneg |
11603 ADVERTISED_FIBRE);
11604 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
11605 tp->link_config.advertising &=
11606 ~(ADVERTISED_1000baseT_Half |
11607 ADVERTISED_1000baseT_Full);
11608
11609 return err;
11610}
11611
11612static void __devinit tg3_read_partno(struct tg3 *tp)
11613{
11614 unsigned char vpd_data[256];
Michael Chanaf2c6a42006-11-07 14:57:51 -080011615 unsigned int i;
Michael Chan1b277772006-03-20 22:27:48 -080011616 u32 magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011617
Michael Chan18201802006-03-20 22:29:15 -080011618 if (tg3_nvram_read_swab(tp, 0x0, &magic))
David S. Millerf49639e2006-06-09 11:58:36 -070011619 goto out_not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011620
Michael Chan18201802006-03-20 22:29:15 -080011621 if (magic == TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011622 for (i = 0; i < 256; i += 4) {
11623 u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011624
Michael Chan1b277772006-03-20 22:27:48 -080011625 if (tg3_nvram_read(tp, 0x100 + i, &tmp))
11626 goto out_not_found;
11627
11628 vpd_data[i + 0] = ((tmp >> 0) & 0xff);
11629 vpd_data[i + 1] = ((tmp >> 8) & 0xff);
11630 vpd_data[i + 2] = ((tmp >> 16) & 0xff);
11631 vpd_data[i + 3] = ((tmp >> 24) & 0xff);
11632 }
11633 } else {
11634 int vpd_cap;
11635
11636 vpd_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_VPD);
11637 for (i = 0; i < 256; i += 4) {
11638 u32 tmp, j = 0;
Al Virob9fc7dc2007-12-17 22:59:57 -080011639 __le32 v;
Michael Chan1b277772006-03-20 22:27:48 -080011640 u16 tmp16;
11641
11642 pci_write_config_word(tp->pdev, vpd_cap + PCI_VPD_ADDR,
11643 i);
11644 while (j++ < 100) {
11645 pci_read_config_word(tp->pdev, vpd_cap +
11646 PCI_VPD_ADDR, &tmp16);
11647 if (tmp16 & 0x8000)
11648 break;
11649 msleep(1);
11650 }
David S. Millerf49639e2006-06-09 11:58:36 -070011651 if (!(tmp16 & 0x8000))
11652 goto out_not_found;
11653
Michael Chan1b277772006-03-20 22:27:48 -080011654 pci_read_config_dword(tp->pdev, vpd_cap + PCI_VPD_DATA,
11655 &tmp);
Al Virob9fc7dc2007-12-17 22:59:57 -080011656 v = cpu_to_le32(tmp);
11657 memcpy(&vpd_data[i], &v, 4);
Michael Chan1b277772006-03-20 22:27:48 -080011658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011659 }
11660
11661 /* Now parse and find the part number. */
Michael Chanaf2c6a42006-11-07 14:57:51 -080011662 for (i = 0; i < 254; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011663 unsigned char val = vpd_data[i];
Michael Chanaf2c6a42006-11-07 14:57:51 -080011664 unsigned int block_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011665
11666 if (val == 0x82 || val == 0x91) {
11667 i = (i + 3 +
11668 (vpd_data[i + 1] +
11669 (vpd_data[i + 2] << 8)));
11670 continue;
11671 }
11672
11673 if (val != 0x90)
11674 goto out_not_found;
11675
11676 block_end = (i + 3 +
11677 (vpd_data[i + 1] +
11678 (vpd_data[i + 2] << 8)));
11679 i += 3;
Michael Chanaf2c6a42006-11-07 14:57:51 -080011680
11681 if (block_end > 256)
11682 goto out_not_found;
11683
11684 while (i < (block_end - 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011685 if (vpd_data[i + 0] == 'P' &&
11686 vpd_data[i + 1] == 'N') {
11687 int partno_len = vpd_data[i + 2];
11688
Michael Chanaf2c6a42006-11-07 14:57:51 -080011689 i += 3;
11690 if (partno_len > 24 || (partno_len + i) > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011691 goto out_not_found;
11692
11693 memcpy(tp->board_part_number,
Michael Chanaf2c6a42006-11-07 14:57:51 -080011694 &vpd_data[i], partno_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011695
11696 /* Success. */
11697 return;
11698 }
Michael Chanaf2c6a42006-11-07 14:57:51 -080011699 i += 3 + vpd_data[i + 2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070011700 }
11701
11702 /* Part number not found. */
11703 goto out_not_found;
11704 }
11705
11706out_not_found:
Michael Chanb5d37722006-09-27 16:06:21 -070011707 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11708 strcpy(tp->board_part_number, "BCM95906");
11709 else
11710 strcpy(tp->board_part_number, "none");
Linus Torvalds1da177e2005-04-16 15:20:36 -070011711}
11712
Matt Carlson9c8a6202007-10-21 16:16:08 -070011713static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
11714{
11715 u32 val;
11716
11717 if (tg3_nvram_read_swab(tp, offset, &val) ||
11718 (val & 0xfc000000) != 0x0c000000 ||
11719 tg3_nvram_read_swab(tp, offset + 4, &val) ||
11720 val != 0)
11721 return 0;
11722
11723 return 1;
11724}
11725
Michael Chanc4e65752006-03-20 22:29:32 -080011726static void __devinit tg3_read_fw_ver(struct tg3 *tp)
11727{
11728 u32 val, offset, start;
Matt Carlson9c8a6202007-10-21 16:16:08 -070011729 u32 ver_offset;
11730 int i, bcnt;
Michael Chanc4e65752006-03-20 22:29:32 -080011731
11732 if (tg3_nvram_read_swab(tp, 0, &val))
11733 return;
11734
11735 if (val != TG3_EEPROM_MAGIC)
11736 return;
11737
11738 if (tg3_nvram_read_swab(tp, 0xc, &offset) ||
11739 tg3_nvram_read_swab(tp, 0x4, &start))
11740 return;
11741
11742 offset = tg3_nvram_logical_addr(tp, offset);
Matt Carlson9c8a6202007-10-21 16:16:08 -070011743
11744 if (!tg3_fw_img_is_valid(tp, offset) ||
11745 tg3_nvram_read_swab(tp, offset + 8, &ver_offset))
Michael Chanc4e65752006-03-20 22:29:32 -080011746 return;
11747
Matt Carlson9c8a6202007-10-21 16:16:08 -070011748 offset = offset + ver_offset - start;
11749 for (i = 0; i < 16; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011750 __le32 v;
11751 if (tg3_nvram_read_le(tp, offset + i, &v))
Michael Chanc4e65752006-03-20 22:29:32 -080011752 return;
11753
Al Virob9fc7dc2007-12-17 22:59:57 -080011754 memcpy(tp->fw_ver + i, &v, 4);
Michael Chanc4e65752006-03-20 22:29:32 -080011755 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070011756
11757 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF) ||
Matt Carlson84af67f2007-11-12 21:08:59 -080011758 (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE))
Matt Carlson9c8a6202007-10-21 16:16:08 -070011759 return;
11760
11761 for (offset = TG3_NVM_DIR_START;
11762 offset < TG3_NVM_DIR_END;
11763 offset += TG3_NVM_DIRENT_SIZE) {
11764 if (tg3_nvram_read_swab(tp, offset, &val))
11765 return;
11766
11767 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
11768 break;
11769 }
11770
11771 if (offset == TG3_NVM_DIR_END)
11772 return;
11773
11774 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
11775 start = 0x08000000;
11776 else if (tg3_nvram_read_swab(tp, offset - 4, &start))
11777 return;
11778
11779 if (tg3_nvram_read_swab(tp, offset + 4, &offset) ||
11780 !tg3_fw_img_is_valid(tp, offset) ||
11781 tg3_nvram_read_swab(tp, offset + 8, &val))
11782 return;
11783
11784 offset += val - start;
11785
11786 bcnt = strlen(tp->fw_ver);
11787
11788 tp->fw_ver[bcnt++] = ',';
11789 tp->fw_ver[bcnt++] = ' ';
11790
11791 for (i = 0; i < 4; i++) {
Al Virob9fc7dc2007-12-17 22:59:57 -080011792 __le32 v;
11793 if (tg3_nvram_read_le(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070011794 return;
11795
Al Virob9fc7dc2007-12-17 22:59:57 -080011796 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070011797
Al Virob9fc7dc2007-12-17 22:59:57 -080011798 if (bcnt > TG3_VER_SIZE - sizeof(v)) {
11799 memcpy(&tp->fw_ver[bcnt], &v, TG3_VER_SIZE - bcnt);
Matt Carlson9c8a6202007-10-21 16:16:08 -070011800 break;
11801 }
11802
Al Virob9fc7dc2007-12-17 22:59:57 -080011803 memcpy(&tp->fw_ver[bcnt], &v, sizeof(v));
11804 bcnt += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070011805 }
11806
11807 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080011808}
11809
Michael Chan7544b092007-05-05 13:08:32 -070011810static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
11811
Linus Torvalds1da177e2005-04-16 15:20:36 -070011812static int __devinit tg3_get_invariants(struct tg3 *tp)
11813{
11814 static struct pci_device_id write_reorder_chipsets[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011815 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
11816 PCI_DEVICE_ID_AMD_FE_GATE_700C) },
John W. Linvillec165b002006-07-08 13:28:53 -070011817 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
11818 PCI_DEVICE_ID_AMD_8131_BRIDGE) },
Michael Chan399de502005-10-03 14:02:39 -070011819 { PCI_DEVICE(PCI_VENDOR_ID_VIA,
11820 PCI_DEVICE_ID_VIA_8385_0) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070011821 { },
11822 };
11823 u32 misc_ctrl_reg;
11824 u32 cacheline_sz_reg;
11825 u32 pci_state_reg, grc_misc_cfg;
11826 u32 val;
11827 u16 pci_cmd;
Michael Chanc7835a72006-11-15 21:14:42 -080011828 int err, pcie_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011829
Linus Torvalds1da177e2005-04-16 15:20:36 -070011830 /* Force memory write invalidate off. If we leave it on,
11831 * then on 5700_BX chips we have to enable a workaround.
11832 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
11833 * to match the cacheline size. The Broadcom driver have this
11834 * workaround but turns MWI off all the times so never uses
11835 * it. This seems to suggest that the workaround is insufficient.
11836 */
11837 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
11838 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
11839 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
11840
11841 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
11842 * has the register indirect write enable bit set before
11843 * we try to access any of the MMIO registers. It is also
11844 * critical that the PCI-X hw workaround situation is decided
11845 * before that as well.
11846 */
11847 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
11848 &misc_ctrl_reg);
11849
11850 tp->pci_chip_rev_id = (misc_ctrl_reg >>
11851 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070011852 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
11853 u32 prod_id_asic_rev;
11854
11855 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
11856 &prod_id_asic_rev);
11857 tp->pci_chip_rev_id = prod_id_asic_rev & PROD_ID_ASIC_REV_MASK;
11858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011859
Michael Chanff645be2005-04-21 17:09:53 -070011860 /* Wrong chip ID in 5752 A0. This code can be removed later
11861 * as A0 is not in production.
11862 */
11863 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
11864 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
11865
Michael Chan68929142005-08-09 20:17:14 -070011866 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
11867 * we need to disable memory and use config. cycles
11868 * only to access all registers. The 5702/03 chips
11869 * can mistakenly decode the special cycles from the
11870 * ICH chipsets as memory write cycles, causing corruption
11871 * of register and memory space. Only certain ICH bridges
11872 * will drive special cycles with non-zero data during the
11873 * address phase which can fall within the 5703's address
11874 * range. This is not an ICH bug as the PCI spec allows
11875 * non-zero address during special cycles. However, only
11876 * these ICH bridges are known to drive non-zero addresses
11877 * during special cycles.
11878 *
11879 * Since special cycles do not cross PCI bridges, we only
11880 * enable this workaround if the 5703 is on the secondary
11881 * bus of these ICH bridges.
11882 */
11883 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
11884 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
11885 static struct tg3_dev_id {
11886 u32 vendor;
11887 u32 device;
11888 u32 rev;
11889 } ich_chipsets[] = {
11890 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
11891 PCI_ANY_ID },
11892 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
11893 PCI_ANY_ID },
11894 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
11895 0xa },
11896 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
11897 PCI_ANY_ID },
11898 { },
11899 };
11900 struct tg3_dev_id *pci_id = &ich_chipsets[0];
11901 struct pci_dev *bridge = NULL;
11902
11903 while (pci_id->vendor != 0) {
11904 bridge = pci_get_device(pci_id->vendor, pci_id->device,
11905 bridge);
11906 if (!bridge) {
11907 pci_id++;
11908 continue;
11909 }
11910 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070011911 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070011912 continue;
11913 }
11914 if (bridge->subordinate &&
11915 (bridge->subordinate->number ==
11916 tp->pdev->bus->number)) {
11917
11918 tp->tg3_flags2 |= TG3_FLG2_ICH_WORKAROUND;
11919 pci_dev_put(bridge);
11920 break;
11921 }
11922 }
11923 }
11924
Matt Carlson41588ba2008-04-19 18:12:33 -070011925 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
11926 static struct tg3_dev_id {
11927 u32 vendor;
11928 u32 device;
11929 } bridge_chipsets[] = {
11930 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
11931 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
11932 { },
11933 };
11934 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
11935 struct pci_dev *bridge = NULL;
11936
11937 while (pci_id->vendor != 0) {
11938 bridge = pci_get_device(pci_id->vendor,
11939 pci_id->device,
11940 bridge);
11941 if (!bridge) {
11942 pci_id++;
11943 continue;
11944 }
11945 if (bridge->subordinate &&
11946 (bridge->subordinate->number <=
11947 tp->pdev->bus->number) &&
11948 (bridge->subordinate->subordinate >=
11949 tp->pdev->bus->number)) {
11950 tp->tg3_flags3 |= TG3_FLG3_5701_DMA_BUG;
11951 pci_dev_put(bridge);
11952 break;
11953 }
11954 }
11955 }
11956
Michael Chan4a29cc22006-03-19 13:21:12 -080011957 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
11958 * DMA addresses > 40-bit. This bridge may have other additional
11959 * 57xx devices behind it in some 4-port NIC designs for example.
11960 * Any tg3 device found behind the bridge will also need the 40-bit
11961 * DMA workaround.
11962 */
Michael Chana4e2b342005-10-26 15:46:52 -070011963 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
11964 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
11965 tp->tg3_flags2 |= TG3_FLG2_5780_CLASS;
Michael Chan4a29cc22006-03-19 13:21:12 -080011966 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
Michael Chan4cf78e42005-07-25 12:29:19 -070011967 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Michael Chana4e2b342005-10-26 15:46:52 -070011968 }
Michael Chan4a29cc22006-03-19 13:21:12 -080011969 else {
11970 struct pci_dev *bridge = NULL;
11971
11972 do {
11973 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
11974 PCI_DEVICE_ID_SERVERWORKS_EPB,
11975 bridge);
11976 if (bridge && bridge->subordinate &&
11977 (bridge->subordinate->number <=
11978 tp->pdev->bus->number) &&
11979 (bridge->subordinate->subordinate >=
11980 tp->pdev->bus->number)) {
11981 tp->tg3_flags |= TG3_FLAG_40BIT_DMA_BUG;
11982 pci_dev_put(bridge);
11983 break;
11984 }
11985 } while (bridge);
11986 }
Michael Chan4cf78e42005-07-25 12:29:19 -070011987
Linus Torvalds1da177e2005-04-16 15:20:36 -070011988 /* Initialize misc host control in PCI block. */
11989 tp->misc_host_ctrl |= (misc_ctrl_reg &
11990 MISC_HOST_CTRL_CHIPREV);
11991 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
11992 tp->misc_host_ctrl);
11993
11994 pci_read_config_dword(tp->pdev, TG3PCI_CACHELINESZ,
11995 &cacheline_sz_reg);
11996
11997 tp->pci_cacheline_sz = (cacheline_sz_reg >> 0) & 0xff;
11998 tp->pci_lat_timer = (cacheline_sz_reg >> 8) & 0xff;
11999 tp->pci_hdr_type = (cacheline_sz_reg >> 16) & 0xff;
12000 tp->pci_bist = (cacheline_sz_reg >> 24) & 0xff;
12001
Michael Chan7544b092007-05-05 13:08:32 -070012002 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
12003 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714))
12004 tp->pdev_peer = tg3_find_peer(tp);
12005
John W. Linville2052da92005-04-21 16:56:08 -070012006 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Michael Chan4cf78e42005-07-25 12:29:19 -070012007 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanaf36e6b2006-03-23 01:28:06 -080012008 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad2006-03-20 22:27:35 -080012009 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070012010 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070012011 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012012 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michael Chanb5d37722006-09-27 16:06:21 -070012013 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Michael Chana4e2b342005-10-26 15:46:52 -070012014 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
John W. Linville6708e5c2005-04-21 17:00:52 -070012015 tp->tg3_flags2 |= TG3_FLG2_5750_PLUS;
12016
John W. Linville1b440c562005-04-21 17:03:18 -070012017 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) ||
12018 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
12019 tp->tg3_flags2 |= TG3_FLG2_5705_PLUS;
12020
Michael Chan5a6f3072006-03-20 22:28:05 -080012021 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
Michael Chan7544b092007-05-05 13:08:32 -070012022 tp->tg3_flags |= TG3_FLAG_SUPPORT_MSI;
12023 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
12024 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
12025 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
12026 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
12027 tp->pdev_peer == tp->pdev))
12028 tp->tg3_flags &= ~TG3_FLAG_SUPPORT_MSI;
12029
Michael Chanaf36e6b2006-03-23 01:28:06 -080012030 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chanb5d37722006-09-27 16:06:21 -070012031 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070012032 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070012033 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012034 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michael Chanb5d37722006-09-27 16:06:21 -070012035 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan5a6f3072006-03-20 22:28:05 -080012036 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_2;
Michael Chanfcfa0a32006-03-20 22:28:41 -080012037 tp->tg3_flags2 |= TG3_FLG2_1SHOT_MSI;
Michael Chan52c0fd82006-06-29 20:15:54 -070012038 } else {
Michael Chan7f62ad52007-02-20 23:25:40 -080012039 tp->tg3_flags2 |= TG3_FLG2_HW_TSO_1 | TG3_FLG2_TSO_BUG;
Michael Chan52c0fd82006-06-29 20:15:54 -070012040 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12041 ASIC_REV_5750 &&
12042 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Michael Chan7f62ad52007-02-20 23:25:40 -080012043 tp->tg3_flags2 &= ~TG3_FLG2_TSO_BUG;
Michael Chan52c0fd82006-06-29 20:15:54 -070012044 }
Michael Chan5a6f3072006-03-20 22:28:05 -080012045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012046
Matt Carlsonf51f3562008-05-25 23:45:08 -070012047 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
12048 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan0f893dc2005-07-25 12:30:38 -070012049 tp->tg3_flags2 |= TG3_FLG2_JUMBO_CAPABLE;
12050
Michael Chanc7835a72006-11-15 21:14:42 -080012051 pcie_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_EXP);
12052 if (pcie_cap != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012053 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
Matt Carlson5f5c51e2007-11-12 21:19:37 -080012054
12055 pcie_set_readrq(tp->pdev, 4096);
12056
Michael Chanc7835a72006-11-15 21:14:42 -080012057 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
12058 u16 lnkctl;
12059
12060 pci_read_config_word(tp->pdev,
12061 pcie_cap + PCI_EXP_LNKCTL,
12062 &lnkctl);
12063 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN)
12064 tp->tg3_flags2 &= ~TG3_FLG2_HW_TSO_2;
12065 }
12066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012067
Michael Chan399de502005-10-03 14:02:39 -070012068 /* If we have an AMD 762 or VIA K8T800 chipset, write
12069 * reordering to the mailbox registers done by the host
12070 * controller can cause major troubles. We read back from
12071 * every mailbox register write to force the writes to be
12072 * posted to the chip in order.
12073 */
12074 if (pci_dev_present(write_reorder_chipsets) &&
12075 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
12076 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
12077
Linus Torvalds1da177e2005-04-16 15:20:36 -070012078 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
12079 tp->pci_lat_timer < 64) {
12080 tp->pci_lat_timer = 64;
12081
12082 cacheline_sz_reg = ((tp->pci_cacheline_sz & 0xff) << 0);
12083 cacheline_sz_reg |= ((tp->pci_lat_timer & 0xff) << 8);
12084 cacheline_sz_reg |= ((tp->pci_hdr_type & 0xff) << 16);
12085 cacheline_sz_reg |= ((tp->pci_bist & 0xff) << 24);
12086
12087 pci_write_config_dword(tp->pdev, TG3PCI_CACHELINESZ,
12088 cacheline_sz_reg);
12089 }
12090
Matt Carlson9974a352007-10-07 23:27:28 -070012091 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
12092 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
12093 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
12094 if (!tp->pcix_cap) {
12095 printk(KERN_ERR PFX "Cannot find PCI-X "
12096 "capability, aborting.\n");
12097 return -EIO;
12098 }
12099 }
12100
Linus Torvalds1da177e2005-04-16 15:20:36 -070012101 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
12102 &pci_state_reg);
12103
Matt Carlson9974a352007-10-07 23:27:28 -070012104 if (tp->pcix_cap && (pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012105 tp->tg3_flags |= TG3_FLAG_PCIX_MODE;
12106
12107 /* If this is a 5700 BX chipset, and we are in PCI-X
12108 * mode, enable register write workaround.
12109 *
12110 * The workaround is to use indirect register accesses
12111 * for all chip writes not to mailbox registers.
12112 */
12113 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
12114 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012115
12116 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
12117
12118 /* The chip can have it's power management PCI config
12119 * space registers clobbered due to this bug.
12120 * So explicitly force the chip into D0 here.
12121 */
Matt Carlson9974a352007-10-07 23:27:28 -070012122 pci_read_config_dword(tp->pdev,
12123 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012124 &pm_reg);
12125 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
12126 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070012127 pci_write_config_dword(tp->pdev,
12128 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012129 pm_reg);
12130
12131 /* Also, force SERR#/PERR# in PCI command. */
12132 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
12133 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
12134 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
12135 }
12136 }
12137
Michael Chan087fe252005-08-09 20:17:41 -070012138 /* 5700 BX chips need to have their TX producer index mailboxes
12139 * written twice to workaround a bug.
12140 */
12141 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX)
12142 tp->tg3_flags |= TG3_FLAG_TXD_MBOX_HWBUG;
12143
Linus Torvalds1da177e2005-04-16 15:20:36 -070012144 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
12145 tp->tg3_flags |= TG3_FLAG_PCI_HIGH_SPEED;
12146 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
12147 tp->tg3_flags |= TG3_FLAG_PCI_32BIT;
12148
12149 /* Chip-specific fixup from Broadcom driver */
12150 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
12151 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
12152 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
12153 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
12154 }
12155
Michael Chan1ee582d2005-08-09 20:16:46 -070012156 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070012157 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070012158 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070012159 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070012160 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070012161 tp->write32_tx_mbox = tg3_write32;
12162 tp->write32_rx_mbox = tg3_write32;
12163
12164 /* Various workaround register access methods */
12165 if (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG)
12166 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070012167 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
12168 ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
12169 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
12170 /*
12171 * Back to back register writes can cause problems on these
12172 * chips, the workaround is to read back all reg writes
12173 * except those to mailbox regs.
12174 *
12175 * See tg3_write_indirect_reg32().
12176 */
Michael Chan1ee582d2005-08-09 20:16:46 -070012177 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070012178 }
12179
Michael Chan1ee582d2005-08-09 20:16:46 -070012180
12181 if ((tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG) ||
12182 (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)) {
12183 tp->write32_tx_mbox = tg3_write32_tx_mbox;
12184 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
12185 tp->write32_rx_mbox = tg3_write_flush_reg32;
12186 }
Michael Chan20094932005-08-09 20:16:32 -070012187
Michael Chan68929142005-08-09 20:17:14 -070012188 if (tp->tg3_flags2 & TG3_FLG2_ICH_WORKAROUND) {
12189 tp->read32 = tg3_read_indirect_reg32;
12190 tp->write32 = tg3_write_indirect_reg32;
12191 tp->read32_mbox = tg3_read_indirect_mbox;
12192 tp->write32_mbox = tg3_write_indirect_mbox;
12193 tp->write32_tx_mbox = tg3_write_indirect_mbox;
12194 tp->write32_rx_mbox = tg3_write_indirect_mbox;
12195
12196 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070012197 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070012198
12199 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
12200 pci_cmd &= ~PCI_COMMAND_MEMORY;
12201 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
12202 }
Michael Chanb5d37722006-09-27 16:06:21 -070012203 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
12204 tp->read32_mbox = tg3_read32_mbox_5906;
12205 tp->write32_mbox = tg3_write32_mbox_5906;
12206 tp->write32_tx_mbox = tg3_write32_mbox_5906;
12207 tp->write32_rx_mbox = tg3_write32_mbox_5906;
12208 }
Michael Chan68929142005-08-09 20:17:14 -070012209
Michael Chanbbadf502006-04-06 21:46:34 -070012210 if (tp->write32 == tg3_write_indirect_reg32 ||
12211 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
12212 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070012213 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Michael Chanbbadf502006-04-06 21:46:34 -070012214 tp->tg3_flags |= TG3_FLAG_SRAM_USE_CONFIG;
12215
Michael Chan7d0c41e2005-04-21 17:06:20 -070012216 /* Get eeprom hw config before calling tg3_set_power_state().
Michael Chan9d26e212006-12-07 00:21:14 -080012217 * In particular, the TG3_FLG2_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070012218 * determined before calling tg3_set_power_state() so that
12219 * we know whether or not to switch out of Vaux power.
12220 * When the flag is set, it means that GPIO1 is used for eeprom
12221 * write protect and also implies that it is a LOM where GPIOs
12222 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012223 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070012224 tg3_get_eeprom_hw_cfg(tp);
12225
Matt Carlson0d3031d2007-10-10 18:02:43 -070012226 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
12227 /* Allow reads and writes to the
12228 * APE register and memory space.
12229 */
12230 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
12231 PCISTATE_ALLOW_APE_SHMEM_WR;
12232 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
12233 pci_state_reg);
12234 }
12235
Matt Carlson9936bcf2007-10-10 18:03:07 -070012236 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012237 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
12238 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlsond30cdd22007-10-07 23:28:35 -070012239 tp->tg3_flags |= TG3_FLAG_CPMU_PRESENT;
12240
Matt Carlsonb5af7122007-11-12 21:22:02 -080012241 if (tp->pci_chip_rev_id == CHIPREV_ID_5784_A0 ||
12242 tp->pci_chip_rev_id == CHIPREV_ID_5784_A1 ||
12243 tp->pci_chip_rev_id == CHIPREV_ID_5761_A0 ||
12244 tp->pci_chip_rev_id == CHIPREV_ID_5761_A1)
12245 tp->tg3_flags3 |= TG3_FLG3_5761_5784_AX_FIXES;
12246 }
12247
Michael Chan314fba32005-04-21 17:07:04 -070012248 /* Set up tp->grc_local_ctrl before calling tg3_set_power_state().
12249 * GPIO1 driven high will bring 5700's external PHY out of reset.
12250 * It is also used as eeprom write protect on LOMs.
12251 */
12252 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
12253 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
12254 (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT))
12255 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
12256 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070012257 /* Unused GPIO3 must be driven as output on 5752 because there
12258 * are no pull-up resistors on unused GPIO pins.
12259 */
12260 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
12261 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070012262
Michael Chanaf36e6b2006-03-23 01:28:06 -080012263 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
12264 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
12265
Matt Carlson5f0c4a32008-06-09 15:41:12 -070012266 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761) {
12267 /* Turn off the debug UART. */
12268 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
12269 if (tp->tg3_flags2 & TG3_FLG2_IS_NIC)
12270 /* Keep VMain power. */
12271 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
12272 GRC_LCLCTRL_GPIO_OUTPUT0;
12273 }
12274
Linus Torvalds1da177e2005-04-16 15:20:36 -070012275 /* Force the chip into D0. */
Michael Chanbc1c7562006-03-20 17:48:03 -080012276 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012277 if (err) {
12278 printk(KERN_ERR PFX "(%s) transition to D0 failed\n",
12279 pci_name(tp->pdev));
12280 return err;
12281 }
12282
12283 /* 5700 B0 chips do not support checksumming correctly due
12284 * to hardware bugs.
12285 */
12286 if (tp->pci_chip_rev_id == CHIPREV_ID_5700_B0)
12287 tp->tg3_flags |= TG3_FLAG_BROKEN_CHECKSUMS;
12288
Linus Torvalds1da177e2005-04-16 15:20:36 -070012289 /* Derive initial jumbo mode from MTU assigned in
12290 * ether_setup() via the alloc_etherdev() call
12291 */
Michael Chan0f893dc2005-07-25 12:30:38 -070012292 if (tp->dev->mtu > ETH_DATA_LEN &&
Michael Chana4e2b342005-10-26 15:46:52 -070012293 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
Michael Chan0f893dc2005-07-25 12:30:38 -070012294 tp->tg3_flags |= TG3_FLAG_JUMBO_RING_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012295
12296 /* Determine WakeOnLan speed to use. */
12297 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12298 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
12299 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
12300 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
12301 tp->tg3_flags &= ~(TG3_FLAG_WOL_SPEED_100MB);
12302 } else {
12303 tp->tg3_flags |= TG3_FLAG_WOL_SPEED_100MB;
12304 }
12305
12306 /* A few boards don't want Ethernet@WireSpeed phy feature */
12307 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
12308 ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
12309 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070012310 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Michael Chanb5d37722006-09-27 16:06:21 -070012311 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) ||
Michael Chan747e8f82005-07-25 12:33:22 -070012312 (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012313 tp->tg3_flags2 |= TG3_FLG2_NO_ETH_WIRE_SPEED;
12314
12315 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
12316 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
12317 tp->tg3_flags2 |= TG3_FLG2_PHY_ADC_BUG;
12318 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
12319 tp->tg3_flags2 |= TG3_FLG2_PHY_5704_A0_BUG;
12320
Michael Chanc424cb22006-04-29 18:56:34 -070012321 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
12322 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070012323 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070012324 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
12325 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080012326 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
12327 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
12328 tp->tg3_flags2 |= TG3_FLG2_PHY_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080012329 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
12330 tp->tg3_flags2 |= TG3_FLG2_PHY_ADJUST_TRIM;
Matt Carlson57e69832008-05-25 23:48:31 -070012331 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906 &&
12332 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Michael Chanc424cb22006-04-29 18:56:34 -070012333 tp->tg3_flags2 |= TG3_FLG2_PHY_BER_BUG;
12334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012335
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012336 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
12337 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
12338 tp->phy_otp = tg3_read_otp_phycfg(tp);
12339 if (tp->phy_otp == 0)
12340 tp->phy_otp = TG3_OTP_DEFAULT;
12341 }
12342
Matt Carlsonf51f3562008-05-25 23:45:08 -070012343 if (tp->tg3_flags & TG3_FLAG_CPMU_PRESENT)
Matt Carlson8ef21422008-05-02 16:47:53 -070012344 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
12345 else
12346 tp->mi_mode = MAC_MI_MODE_BASE;
12347
Linus Torvalds1da177e2005-04-16 15:20:36 -070012348 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012349 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
12350 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
12351 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
12352
Matt Carlson57e69832008-05-25 23:48:31 -070012353 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
12354 tp->tg3_flags3 |= TG3_FLG3_USE_PHYLIB;
12355
Matt Carlson158d7ab2008-05-29 01:37:54 -070012356 err = tg3_mdio_init(tp);
12357 if (err)
12358 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012359
12360 /* Initialize data/descriptor byte/word swapping. */
12361 val = tr32(GRC_MODE);
12362 val &= GRC_MODE_HOST_STACKUP;
12363 tw32(GRC_MODE, val | tp->grc_mode);
12364
12365 tg3_switch_clocks(tp);
12366
12367 /* Clear this out for sanity. */
12368 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
12369
12370 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
12371 &pci_state_reg);
12372 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
12373 (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) == 0) {
12374 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
12375
12376 if (chiprevid == CHIPREV_ID_5701_A0 ||
12377 chiprevid == CHIPREV_ID_5701_B0 ||
12378 chiprevid == CHIPREV_ID_5701_B2 ||
12379 chiprevid == CHIPREV_ID_5701_B5) {
12380 void __iomem *sram_base;
12381
12382 /* Write some dummy words into the SRAM status block
12383 * area, see if it reads back correctly. If the return
12384 * value is bad, force enable the PCIX workaround.
12385 */
12386 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
12387
12388 writel(0x00000000, sram_base);
12389 writel(0x00000000, sram_base + 4);
12390 writel(0xffffffff, sram_base + 4);
12391 if (readl(sram_base) != 0x00000000)
12392 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
12393 }
12394 }
12395
12396 udelay(50);
12397 tg3_nvram_init(tp);
12398
12399 grc_misc_cfg = tr32(GRC_MISC_CFG);
12400 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
12401
Linus Torvalds1da177e2005-04-16 15:20:36 -070012402 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
12403 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
12404 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
12405 tp->tg3_flags2 |= TG3_FLG2_IS_5788;
12406
David S. Millerfac9b832005-05-18 22:46:34 -070012407 if (!(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
12408 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700))
12409 tp->tg3_flags |= TG3_FLAG_TAGGED_STATUS;
12410 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
12411 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
12412 HOSTCC_MODE_CLRTICK_TXBD);
12413
12414 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
12415 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12416 tp->misc_host_ctrl);
12417 }
12418
Linus Torvalds1da177e2005-04-16 15:20:36 -070012419 /* these are limited to 10/100 only */
12420 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
12421 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
12422 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
12423 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
12424 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
12425 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
12426 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
12427 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
12428 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080012429 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
12430 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Michael Chanb5d37722006-09-27 16:06:21 -070012431 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012432 tp->tg3_flags |= TG3_FLAG_10_100_ONLY;
12433
12434 err = tg3_phy_probe(tp);
12435 if (err) {
12436 printk(KERN_ERR PFX "(%s) phy probe failed, err %d\n",
12437 pci_name(tp->pdev), err);
12438 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012439 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012440 }
12441
12442 tg3_read_partno(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080012443 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012444
12445 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
12446 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
12447 } else {
12448 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
12449 tp->tg3_flags |= TG3_FLAG_USE_MI_INTERRUPT;
12450 else
12451 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
12452 }
12453
12454 /* 5700 {AX,BX} chips have a broken status block link
12455 * change bit implementation, so we must use the
12456 * status register in those cases.
12457 */
12458 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
12459 tp->tg3_flags |= TG3_FLAG_USE_LINKCHG_REG;
12460 else
12461 tp->tg3_flags &= ~TG3_FLAG_USE_LINKCHG_REG;
12462
12463 /* The led_ctrl is set during tg3_phy_probe, here we might
12464 * have to force the link status polling mechanism based
12465 * upon subsystem IDs.
12466 */
12467 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070012468 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012469 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
12470 tp->tg3_flags |= (TG3_FLAG_USE_MI_INTERRUPT |
12471 TG3_FLAG_USE_LINKCHG_REG);
12472 }
12473
12474 /* For all SERDES we poll the MAC status register. */
12475 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
12476 tp->tg3_flags |= TG3_FLAG_POLL_SERDES;
12477 else
12478 tp->tg3_flags &= ~TG3_FLAG_POLL_SERDES;
12479
Michael Chan5a6f3072006-03-20 22:28:05 -080012480 /* All chips before 5787 can get confused if TX buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -070012481 * straddle the 4GB address boundary in some cases.
12482 */
Michael Chanaf36e6b2006-03-23 01:28:06 -080012483 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chanb5d37722006-09-27 16:06:21 -070012484 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070012485 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070012486 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012487 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michael Chanb5d37722006-09-27 16:06:21 -070012488 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chan5a6f3072006-03-20 22:28:05 -080012489 tp->dev->hard_start_xmit = tg3_start_xmit;
12490 else
12491 tp->dev->hard_start_xmit = tg3_start_xmit_dma_bug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012492
12493 tp->rx_offset = 2;
12494 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
12495 (tp->tg3_flags & TG3_FLAG_PCIX_MODE) != 0)
12496 tp->rx_offset = 0;
12497
Michael Chanf92905d2006-06-29 20:14:29 -070012498 tp->rx_std_max_post = TG3_RX_RING_SIZE;
12499
12500 /* Increment the rx prod index on the rx std ring by at most
12501 * 8 for these chips to workaround hw errata.
12502 */
12503 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
12504 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
12505 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
12506 tp->rx_std_max_post = 8;
12507
Matt Carlson8ed5d972007-05-07 00:25:49 -070012508 if (tp->tg3_flags & TG3_FLAG_ASPM_WORKAROUND)
12509 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
12510 PCIE_PWR_MGMT_L1_THRESH_MSK;
12511
Linus Torvalds1da177e2005-04-16 15:20:36 -070012512 return err;
12513}
12514
David S. Miller49b6e95f2007-03-29 01:38:42 -070012515#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070012516static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
12517{
12518 struct net_device *dev = tp->dev;
12519 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070012520 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070012521 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070012522 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012523
David S. Miller49b6e95f2007-03-29 01:38:42 -070012524 addr = of_get_property(dp, "local-mac-address", &len);
12525 if (addr && len == 6) {
12526 memcpy(dev->dev_addr, addr, 6);
12527 memcpy(dev->perm_addr, dev->dev_addr, 6);
12528 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012529 }
12530 return -ENODEV;
12531}
12532
12533static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
12534{
12535 struct net_device *dev = tp->dev;
12536
12537 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070012538 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012539 return 0;
12540}
12541#endif
12542
12543static int __devinit tg3_get_device_address(struct tg3 *tp)
12544{
12545 struct net_device *dev = tp->dev;
12546 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080012547 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012548
David S. Miller49b6e95f2007-03-29 01:38:42 -070012549#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070012550 if (!tg3_get_macaddr_sparc(tp))
12551 return 0;
12552#endif
12553
12554 mac_offset = 0x7c;
David S. Millerf49639e2006-06-09 11:58:36 -070012555 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
Michael Chana4e2b342005-10-26 15:46:52 -070012556 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012557 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
12558 mac_offset = 0xcc;
12559 if (tg3_nvram_lock(tp))
12560 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
12561 else
12562 tg3_nvram_unlock(tp);
12563 }
Michael Chanb5d37722006-09-27 16:06:21 -070012564 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12565 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012566
12567 /* First try to get it from MAC address mailbox. */
12568 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
12569 if ((hi >> 16) == 0x484b) {
12570 dev->dev_addr[0] = (hi >> 8) & 0xff;
12571 dev->dev_addr[1] = (hi >> 0) & 0xff;
12572
12573 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
12574 dev->dev_addr[2] = (lo >> 24) & 0xff;
12575 dev->dev_addr[3] = (lo >> 16) & 0xff;
12576 dev->dev_addr[4] = (lo >> 8) & 0xff;
12577 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012578
Michael Chan008652b2006-03-27 23:14:53 -080012579 /* Some old bootcode may report a 0 MAC address in SRAM */
12580 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
12581 }
12582 if (!addr_ok) {
12583 /* Next, try NVRAM. */
David S. Millerf49639e2006-06-09 11:58:36 -070012584 if (!tg3_nvram_read(tp, mac_offset + 0, &hi) &&
Michael Chan008652b2006-03-27 23:14:53 -080012585 !tg3_nvram_read(tp, mac_offset + 4, &lo)) {
12586 dev->dev_addr[0] = ((hi >> 16) & 0xff);
12587 dev->dev_addr[1] = ((hi >> 24) & 0xff);
12588 dev->dev_addr[2] = ((lo >> 0) & 0xff);
12589 dev->dev_addr[3] = ((lo >> 8) & 0xff);
12590 dev->dev_addr[4] = ((lo >> 16) & 0xff);
12591 dev->dev_addr[5] = ((lo >> 24) & 0xff);
12592 }
12593 /* Finally just fetch it out of the MAC control regs. */
12594 else {
12595 hi = tr32(MAC_ADDR_0_HIGH);
12596 lo = tr32(MAC_ADDR_0_LOW);
12597
12598 dev->dev_addr[5] = lo & 0xff;
12599 dev->dev_addr[4] = (lo >> 8) & 0xff;
12600 dev->dev_addr[3] = (lo >> 16) & 0xff;
12601 dev->dev_addr[2] = (lo >> 24) & 0xff;
12602 dev->dev_addr[1] = hi & 0xff;
12603 dev->dev_addr[0] = (hi >> 8) & 0xff;
12604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012605 }
12606
12607 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070012608#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070012609 if (!tg3_get_default_macaddr_sparc(tp))
12610 return 0;
12611#endif
12612 return -EINVAL;
12613 }
John W. Linville2ff43692005-09-12 14:44:20 -070012614 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012615 return 0;
12616}
12617
David S. Miller59e6b432005-05-18 22:50:10 -070012618#define BOUNDARY_SINGLE_CACHELINE 1
12619#define BOUNDARY_MULTI_CACHELINE 2
12620
12621static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
12622{
12623 int cacheline_size;
12624 u8 byte;
12625 int goal;
12626
12627 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
12628 if (byte == 0)
12629 cacheline_size = 1024;
12630 else
12631 cacheline_size = (int) byte * 4;
12632
12633 /* On 5703 and later chips, the boundary bits have no
12634 * effect.
12635 */
12636 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12637 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
12638 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
12639 goto out;
12640
12641#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
12642 goal = BOUNDARY_MULTI_CACHELINE;
12643#else
12644#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
12645 goal = BOUNDARY_SINGLE_CACHELINE;
12646#else
12647 goal = 0;
12648#endif
12649#endif
12650
12651 if (!goal)
12652 goto out;
12653
12654 /* PCI controllers on most RISC systems tend to disconnect
12655 * when a device tries to burst across a cache-line boundary.
12656 * Therefore, letting tg3 do so just wastes PCI bandwidth.
12657 *
12658 * Unfortunately, for PCI-E there are only limited
12659 * write-side controls for this, and thus for reads
12660 * we will still get the disconnects. We'll also waste
12661 * these PCI cycles for both read and write for chips
12662 * other than 5700 and 5701 which do not implement the
12663 * boundary bits.
12664 */
12665 if ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
12666 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
12667 switch (cacheline_size) {
12668 case 16:
12669 case 32:
12670 case 64:
12671 case 128:
12672 if (goal == BOUNDARY_SINGLE_CACHELINE) {
12673 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
12674 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
12675 } else {
12676 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
12677 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
12678 }
12679 break;
12680
12681 case 256:
12682 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
12683 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
12684 break;
12685
12686 default:
12687 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
12688 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
12689 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070012690 }
David S. Miller59e6b432005-05-18 22:50:10 -070012691 } else if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
12692 switch (cacheline_size) {
12693 case 16:
12694 case 32:
12695 case 64:
12696 if (goal == BOUNDARY_SINGLE_CACHELINE) {
12697 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
12698 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
12699 break;
12700 }
12701 /* fallthrough */
12702 case 128:
12703 default:
12704 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
12705 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
12706 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070012707 }
David S. Miller59e6b432005-05-18 22:50:10 -070012708 } else {
12709 switch (cacheline_size) {
12710 case 16:
12711 if (goal == BOUNDARY_SINGLE_CACHELINE) {
12712 val |= (DMA_RWCTRL_READ_BNDRY_16 |
12713 DMA_RWCTRL_WRITE_BNDRY_16);
12714 break;
12715 }
12716 /* fallthrough */
12717 case 32:
12718 if (goal == BOUNDARY_SINGLE_CACHELINE) {
12719 val |= (DMA_RWCTRL_READ_BNDRY_32 |
12720 DMA_RWCTRL_WRITE_BNDRY_32);
12721 break;
12722 }
12723 /* fallthrough */
12724 case 64:
12725 if (goal == BOUNDARY_SINGLE_CACHELINE) {
12726 val |= (DMA_RWCTRL_READ_BNDRY_64 |
12727 DMA_RWCTRL_WRITE_BNDRY_64);
12728 break;
12729 }
12730 /* fallthrough */
12731 case 128:
12732 if (goal == BOUNDARY_SINGLE_CACHELINE) {
12733 val |= (DMA_RWCTRL_READ_BNDRY_128 |
12734 DMA_RWCTRL_WRITE_BNDRY_128);
12735 break;
12736 }
12737 /* fallthrough */
12738 case 256:
12739 val |= (DMA_RWCTRL_READ_BNDRY_256 |
12740 DMA_RWCTRL_WRITE_BNDRY_256);
12741 break;
12742 case 512:
12743 val |= (DMA_RWCTRL_READ_BNDRY_512 |
12744 DMA_RWCTRL_WRITE_BNDRY_512);
12745 break;
12746 case 1024:
12747 default:
12748 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
12749 DMA_RWCTRL_WRITE_BNDRY_1024);
12750 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070012751 }
David S. Miller59e6b432005-05-18 22:50:10 -070012752 }
12753
12754out:
12755 return val;
12756}
12757
Linus Torvalds1da177e2005-04-16 15:20:36 -070012758static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
12759{
12760 struct tg3_internal_buffer_desc test_desc;
12761 u32 sram_dma_descs;
12762 int i, ret;
12763
12764 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
12765
12766 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
12767 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
12768 tw32(RDMAC_STATUS, 0);
12769 tw32(WDMAC_STATUS, 0);
12770
12771 tw32(BUFMGR_MODE, 0);
12772 tw32(FTQ_RESET, 0);
12773
12774 test_desc.addr_hi = ((u64) buf_dma) >> 32;
12775 test_desc.addr_lo = buf_dma & 0xffffffff;
12776 test_desc.nic_mbuf = 0x00002100;
12777 test_desc.len = size;
12778
12779 /*
12780 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
12781 * the *second* time the tg3 driver was getting loaded after an
12782 * initial scan.
12783 *
12784 * Broadcom tells me:
12785 * ...the DMA engine is connected to the GRC block and a DMA
12786 * reset may affect the GRC block in some unpredictable way...
12787 * The behavior of resets to individual blocks has not been tested.
12788 *
12789 * Broadcom noted the GRC reset will also reset all sub-components.
12790 */
12791 if (to_device) {
12792 test_desc.cqid_sqid = (13 << 8) | 2;
12793
12794 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
12795 udelay(40);
12796 } else {
12797 test_desc.cqid_sqid = (16 << 8) | 7;
12798
12799 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
12800 udelay(40);
12801 }
12802 test_desc.flags = 0x00000005;
12803
12804 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
12805 u32 val;
12806
12807 val = *(((u32 *)&test_desc) + i);
12808 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
12809 sram_dma_descs + (i * sizeof(u32)));
12810 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
12811 }
12812 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
12813
12814 if (to_device) {
12815 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
12816 } else {
12817 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
12818 }
12819
12820 ret = -ENODEV;
12821 for (i = 0; i < 40; i++) {
12822 u32 val;
12823
12824 if (to_device)
12825 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
12826 else
12827 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
12828 if ((val & 0xffff) == sram_dma_descs) {
12829 ret = 0;
12830 break;
12831 }
12832
12833 udelay(100);
12834 }
12835
12836 return ret;
12837}
12838
David S. Millerded73402005-05-23 13:59:47 -070012839#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070012840
12841static int __devinit tg3_test_dma(struct tg3 *tp)
12842{
12843 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070012844 u32 *buf, saved_dma_rwctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012845 int ret;
12846
12847 buf = pci_alloc_consistent(tp->pdev, TEST_BUFFER_SIZE, &buf_dma);
12848 if (!buf) {
12849 ret = -ENOMEM;
12850 goto out_nofree;
12851 }
12852
12853 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
12854 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
12855
David S. Miller59e6b432005-05-18 22:50:10 -070012856 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012857
12858 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
12859 /* DMA read watermark not used on PCIE */
12860 tp->dma_rwctrl |= 0x00180000;
12861 } else if (!(tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070012862 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
12863 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012864 tp->dma_rwctrl |= 0x003f0000;
12865 else
12866 tp->dma_rwctrl |= 0x003f000f;
12867 } else {
12868 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
12869 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
12870 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080012871 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012872
Michael Chan4a29cc22006-03-19 13:21:12 -080012873 /* If the 5704 is behind the EPB bridge, we can
12874 * do the less restrictive ONE_DMA workaround for
12875 * better performance.
12876 */
12877 if ((tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) &&
12878 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
12879 tp->dma_rwctrl |= 0x8000;
12880 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012881 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
12882
Michael Chan49afdeb2007-02-13 12:17:03 -080012883 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
12884 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070012885 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080012886 tp->dma_rwctrl |=
12887 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
12888 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
12889 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070012890 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
12891 /* 5780 always in PCIX mode */
12892 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070012893 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
12894 /* 5714 always in PCIX mode */
12895 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012896 } else {
12897 tp->dma_rwctrl |= 0x001b000f;
12898 }
12899 }
12900
12901 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
12902 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
12903 tp->dma_rwctrl &= 0xfffffff0;
12904
12905 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12906 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
12907 /* Remove this if it causes problems for some boards. */
12908 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
12909
12910 /* On 5700/5701 chips, we need to set this bit.
12911 * Otherwise the chip will issue cacheline transactions
12912 * to streamable DMA memory with not all the byte
12913 * enables turned on. This is an error on several
12914 * RISC PCI controllers, in particular sparc64.
12915 *
12916 * On 5703/5704 chips, this bit has been reassigned
12917 * a different meaning. In particular, it is used
12918 * on those chips to enable a PCI-X workaround.
12919 */
12920 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
12921 }
12922
12923 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
12924
12925#if 0
12926 /* Unneeded, already done by tg3_get_invariants. */
12927 tg3_switch_clocks(tp);
12928#endif
12929
12930 ret = 0;
12931 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12932 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
12933 goto out;
12934
David S. Miller59e6b432005-05-18 22:50:10 -070012935 /* It is best to perform DMA test with maximum write burst size
12936 * to expose the 5700/5701 write DMA bug.
12937 */
12938 saved_dma_rwctrl = tp->dma_rwctrl;
12939 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
12940 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
12941
Linus Torvalds1da177e2005-04-16 15:20:36 -070012942 while (1) {
12943 u32 *p = buf, i;
12944
12945 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
12946 p[i] = i;
12947
12948 /* Send the buffer to the chip. */
12949 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
12950 if (ret) {
12951 printk(KERN_ERR "tg3_test_dma() Write the buffer failed %d\n", ret);
12952 break;
12953 }
12954
12955#if 0
12956 /* validate data reached card RAM correctly. */
12957 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
12958 u32 val;
12959 tg3_read_mem(tp, 0x2100 + (i*4), &val);
12960 if (le32_to_cpu(val) != p[i]) {
12961 printk(KERN_ERR " tg3_test_dma() Card buffer corrupted on write! (%d != %d)\n", val, i);
12962 /* ret = -ENODEV here? */
12963 }
12964 p[i] = 0;
12965 }
12966#endif
12967 /* Now read it back. */
12968 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
12969 if (ret) {
12970 printk(KERN_ERR "tg3_test_dma() Read the buffer failed %d\n", ret);
12971
12972 break;
12973 }
12974
12975 /* Verify it. */
12976 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
12977 if (p[i] == i)
12978 continue;
12979
David S. Miller59e6b432005-05-18 22:50:10 -070012980 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
12981 DMA_RWCTRL_WRITE_BNDRY_16) {
12982 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012983 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
12984 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
12985 break;
12986 } else {
12987 printk(KERN_ERR "tg3_test_dma() buffer corrupted on read back! (%d != %d)\n", p[i], i);
12988 ret = -ENODEV;
12989 goto out;
12990 }
12991 }
12992
12993 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
12994 /* Success. */
12995 ret = 0;
12996 break;
12997 }
12998 }
David S. Miller59e6b432005-05-18 22:50:10 -070012999 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
13000 DMA_RWCTRL_WRITE_BNDRY_16) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070013001 static struct pci_device_id dma_wait_state_chipsets[] = {
13002 { PCI_DEVICE(PCI_VENDOR_ID_APPLE,
13003 PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
13004 { },
13005 };
13006
David S. Miller59e6b432005-05-18 22:50:10 -070013007 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070013008 * now look for chipsets that are known to expose the
13009 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070013010 */
Michael Chan6d1cfba2005-06-08 14:13:14 -070013011 if (pci_dev_present(dma_wait_state_chipsets)) {
13012 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
13013 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
13014 }
13015 else
13016 /* Safe to use the calculated DMA boundary. */
13017 tp->dma_rwctrl = saved_dma_rwctrl;
13018
David S. Miller59e6b432005-05-18 22:50:10 -070013019 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
13020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013021
13022out:
13023 pci_free_consistent(tp->pdev, TEST_BUFFER_SIZE, buf, buf_dma);
13024out_nofree:
13025 return ret;
13026}
13027
13028static void __devinit tg3_init_link_config(struct tg3 *tp)
13029{
13030 tp->link_config.advertising =
13031 (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
13032 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
13033 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full |
13034 ADVERTISED_Autoneg | ADVERTISED_MII);
13035 tp->link_config.speed = SPEED_INVALID;
13036 tp->link_config.duplex = DUPLEX_INVALID;
13037 tp->link_config.autoneg = AUTONEG_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013038 tp->link_config.active_speed = SPEED_INVALID;
13039 tp->link_config.active_duplex = DUPLEX_INVALID;
13040 tp->link_config.phy_is_low_power = 0;
13041 tp->link_config.orig_speed = SPEED_INVALID;
13042 tp->link_config.orig_duplex = DUPLEX_INVALID;
13043 tp->link_config.orig_autoneg = AUTONEG_INVALID;
13044}
13045
13046static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
13047{
Michael Chanfdfec172005-07-25 12:31:48 -070013048 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
13049 tp->bufmgr_config.mbuf_read_dma_low_water =
13050 DEFAULT_MB_RDMA_LOW_WATER_5705;
13051 tp->bufmgr_config.mbuf_mac_rx_low_water =
13052 DEFAULT_MB_MACRX_LOW_WATER_5705;
13053 tp->bufmgr_config.mbuf_high_water =
13054 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070013055 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
13056 tp->bufmgr_config.mbuf_mac_rx_low_water =
13057 DEFAULT_MB_MACRX_LOW_WATER_5906;
13058 tp->bufmgr_config.mbuf_high_water =
13059 DEFAULT_MB_HIGH_WATER_5906;
13060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013061
Michael Chanfdfec172005-07-25 12:31:48 -070013062 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
13063 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
13064 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
13065 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
13066 tp->bufmgr_config.mbuf_high_water_jumbo =
13067 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
13068 } else {
13069 tp->bufmgr_config.mbuf_read_dma_low_water =
13070 DEFAULT_MB_RDMA_LOW_WATER;
13071 tp->bufmgr_config.mbuf_mac_rx_low_water =
13072 DEFAULT_MB_MACRX_LOW_WATER;
13073 tp->bufmgr_config.mbuf_high_water =
13074 DEFAULT_MB_HIGH_WATER;
13075
13076 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
13077 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
13078 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
13079 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
13080 tp->bufmgr_config.mbuf_high_water_jumbo =
13081 DEFAULT_MB_HIGH_WATER_JUMBO;
13082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013083
13084 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
13085 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
13086}
13087
13088static char * __devinit tg3_phy_string(struct tg3 *tp)
13089{
13090 switch (tp->phy_id & PHY_ID_MASK) {
13091 case PHY_ID_BCM5400: return "5400";
13092 case PHY_ID_BCM5401: return "5401";
13093 case PHY_ID_BCM5411: return "5411";
13094 case PHY_ID_BCM5701: return "5701";
13095 case PHY_ID_BCM5703: return "5703";
13096 case PHY_ID_BCM5704: return "5704";
13097 case PHY_ID_BCM5705: return "5705";
13098 case PHY_ID_BCM5750: return "5750";
Michael Chan85e94ce2005-04-21 17:05:28 -070013099 case PHY_ID_BCM5752: return "5752";
Michael Chana4e2b342005-10-26 15:46:52 -070013100 case PHY_ID_BCM5714: return "5714";
Michael Chan4cf78e42005-07-25 12:29:19 -070013101 case PHY_ID_BCM5780: return "5780";
Michael Chanaf36e6b2006-03-23 01:28:06 -080013102 case PHY_ID_BCM5755: return "5755";
Michael Chand9ab5ad2006-03-20 22:27:35 -080013103 case PHY_ID_BCM5787: return "5787";
Matt Carlsond30cdd22007-10-07 23:28:35 -070013104 case PHY_ID_BCM5784: return "5784";
Michael Chan126a3362006-09-27 16:03:07 -070013105 case PHY_ID_BCM5756: return "5722/5756";
Michael Chanb5d37722006-09-27 16:06:21 -070013106 case PHY_ID_BCM5906: return "5906";
Matt Carlson9936bcf2007-10-10 18:03:07 -070013107 case PHY_ID_BCM5761: return "5761";
Linus Torvalds1da177e2005-04-16 15:20:36 -070013108 case PHY_ID_BCM8002: return "8002/serdes";
13109 case 0: return "serdes";
13110 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070013111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013112}
13113
Michael Chanf9804dd2005-09-27 12:13:10 -070013114static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
13115{
13116 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
13117 strcpy(str, "PCI Express");
13118 return str;
13119 } else if (tp->tg3_flags & TG3_FLAG_PCIX_MODE) {
13120 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
13121
13122 strcpy(str, "PCIX:");
13123
13124 if ((clock_ctrl == 7) ||
13125 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
13126 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
13127 strcat(str, "133MHz");
13128 else if (clock_ctrl == 0)
13129 strcat(str, "33MHz");
13130 else if (clock_ctrl == 2)
13131 strcat(str, "50MHz");
13132 else if (clock_ctrl == 4)
13133 strcat(str, "66MHz");
13134 else if (clock_ctrl == 6)
13135 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070013136 } else {
13137 strcpy(str, "PCI:");
13138 if (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED)
13139 strcat(str, "66MHz");
13140 else
13141 strcat(str, "33MHz");
13142 }
13143 if (tp->tg3_flags & TG3_FLAG_PCI_32BIT)
13144 strcat(str, ":32-bit");
13145 else
13146 strcat(str, ":64-bit");
13147 return str;
13148}
13149
Michael Chan8c2dc7e2005-12-19 16:26:02 -080013150static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013151{
13152 struct pci_dev *peer;
13153 unsigned int func, devnr = tp->pdev->devfn & ~7;
13154
13155 for (func = 0; func < 8; func++) {
13156 peer = pci_get_slot(tp->pdev->bus, devnr | func);
13157 if (peer && peer != tp->pdev)
13158 break;
13159 pci_dev_put(peer);
13160 }
Michael Chan16fe9d72005-12-13 21:09:54 -080013161 /* 5704 can be configured in single-port mode, set peer to
13162 * tp->pdev in that case.
13163 */
13164 if (!peer) {
13165 peer = tp->pdev;
13166 return peer;
13167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013168
13169 /*
13170 * We don't need to keep the refcount elevated; there's no way
13171 * to remove one half of this device without removing the other
13172 */
13173 pci_dev_put(peer);
13174
13175 return peer;
13176}
13177
David S. Miller15f98502005-05-18 22:49:26 -070013178static void __devinit tg3_init_coal(struct tg3 *tp)
13179{
13180 struct ethtool_coalesce *ec = &tp->coal;
13181
13182 memset(ec, 0, sizeof(*ec));
13183 ec->cmd = ETHTOOL_GCOALESCE;
13184 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
13185 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
13186 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
13187 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
13188 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
13189 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
13190 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
13191 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
13192 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
13193
13194 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
13195 HOSTCC_MODE_CLRTICK_TXBD)) {
13196 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
13197 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
13198 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
13199 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
13200 }
Michael Chand244c892005-07-05 14:42:33 -070013201
13202 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
13203 ec->rx_coalesce_usecs_irq = 0;
13204 ec->tx_coalesce_usecs_irq = 0;
13205 ec->stats_block_coalesce_usecs = 0;
13206 }
David S. Miller15f98502005-05-18 22:49:26 -070013207}
13208
Linus Torvalds1da177e2005-04-16 15:20:36 -070013209static int __devinit tg3_init_one(struct pci_dev *pdev,
13210 const struct pci_device_id *ent)
13211{
13212 static int tg3_version_printed = 0;
Sergei Shtylyov2de58e32008-04-12 18:30:58 -070013213 resource_size_t tg3reg_base;
13214 unsigned long tg3reg_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013215 struct net_device *dev;
13216 struct tg3 *tp;
Joe Perchesd6645372007-12-20 04:06:59 -080013217 int err, pm_cap;
Michael Chanf9804dd2005-09-27 12:13:10 -070013218 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080013219 u64 dma_mask, persist_dma_mask;
Joe Perchesd6645372007-12-20 04:06:59 -080013220 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013221
13222 if (tg3_version_printed++ == 0)
13223 printk(KERN_INFO "%s", version);
13224
13225 err = pci_enable_device(pdev);
13226 if (err) {
13227 printk(KERN_ERR PFX "Cannot enable PCI device, "
13228 "aborting.\n");
13229 return err;
13230 }
13231
13232 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
13233 printk(KERN_ERR PFX "Cannot find proper PCI device "
13234 "base address, aborting.\n");
13235 err = -ENODEV;
13236 goto err_out_disable_pdev;
13237 }
13238
13239 err = pci_request_regions(pdev, DRV_MODULE_NAME);
13240 if (err) {
13241 printk(KERN_ERR PFX "Cannot obtain PCI resources, "
13242 "aborting.\n");
13243 goto err_out_disable_pdev;
13244 }
13245
13246 pci_set_master(pdev);
13247
13248 /* Find power-management capability. */
13249 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
13250 if (pm_cap == 0) {
13251 printk(KERN_ERR PFX "Cannot find PowerManagement capability, "
13252 "aborting.\n");
13253 err = -EIO;
13254 goto err_out_free_res;
13255 }
13256
Linus Torvalds1da177e2005-04-16 15:20:36 -070013257 tg3reg_base = pci_resource_start(pdev, 0);
13258 tg3reg_len = pci_resource_len(pdev, 0);
13259
13260 dev = alloc_etherdev(sizeof(*tp));
13261 if (!dev) {
13262 printk(KERN_ERR PFX "Etherdev alloc failed, aborting.\n");
13263 err = -ENOMEM;
13264 goto err_out_free_res;
13265 }
13266
Linus Torvalds1da177e2005-04-16 15:20:36 -070013267 SET_NETDEV_DEV(dev, &pdev->dev);
13268
Linus Torvalds1da177e2005-04-16 15:20:36 -070013269#if TG3_VLAN_TAG_USED
13270 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
13271 dev->vlan_rx_register = tg3_vlan_rx_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013272#endif
13273
13274 tp = netdev_priv(dev);
13275 tp->pdev = pdev;
13276 tp->dev = dev;
13277 tp->pm_cap = pm_cap;
13278 tp->mac_mode = TG3_DEF_MAC_MODE;
13279 tp->rx_mode = TG3_DEF_RX_MODE;
13280 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070013281
Linus Torvalds1da177e2005-04-16 15:20:36 -070013282 if (tg3_debug > 0)
13283 tp->msg_enable = tg3_debug;
13284 else
13285 tp->msg_enable = TG3_DEF_MSG_ENABLE;
13286
13287 /* The word/byte swap controls here control register access byte
13288 * swapping. DMA data byte swapping is controlled in the GRC_MODE
13289 * setting below.
13290 */
13291 tp->misc_host_ctrl =
13292 MISC_HOST_CTRL_MASK_PCI_INT |
13293 MISC_HOST_CTRL_WORD_SWAP |
13294 MISC_HOST_CTRL_INDIR_ACCESS |
13295 MISC_HOST_CTRL_PCISTATE_RW;
13296
13297 /* The NONFRM (non-frame) byte/word swap controls take effect
13298 * on descriptor entries, anything which isn't packet data.
13299 *
13300 * The StrongARM chips on the board (one for tx, one for rx)
13301 * are running in big-endian mode.
13302 */
13303 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
13304 GRC_MODE_WSWAP_NONFRM_DATA);
13305#ifdef __BIG_ENDIAN
13306 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
13307#endif
13308 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013309 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000013310 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013311
13312 tp->regs = ioremap_nocache(tg3reg_base, tg3reg_len);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010013313 if (!tp->regs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013314 printk(KERN_ERR PFX "Cannot map device registers, "
13315 "aborting.\n");
13316 err = -ENOMEM;
13317 goto err_out_free_dev;
13318 }
13319
13320 tg3_init_link_config(tp);
13321
Linus Torvalds1da177e2005-04-16 15:20:36 -070013322 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
13323 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
13324 tp->tx_pending = TG3_DEF_TX_RING_PENDING;
13325
13326 dev->open = tg3_open;
13327 dev->stop = tg3_close;
13328 dev->get_stats = tg3_get_stats;
13329 dev->set_multicast_list = tg3_set_rx_mode;
13330 dev->set_mac_address = tg3_set_mac_addr;
13331 dev->do_ioctl = tg3_ioctl;
13332 dev->tx_timeout = tg3_tx_timeout;
Stephen Hemmingerbea33482007-10-03 16:41:36 -070013333 netif_napi_add(dev, &tp->napi, tg3_poll, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013334 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013335 dev->watchdog_timeo = TG3_TX_TIMEOUT;
13336 dev->change_mtu = tg3_change_mtu;
13337 dev->irq = pdev->irq;
13338#ifdef CONFIG_NET_POLL_CONTROLLER
13339 dev->poll_controller = tg3_poll_controller;
13340#endif
13341
13342 err = tg3_get_invariants(tp);
13343 if (err) {
13344 printk(KERN_ERR PFX "Problem fetching invariants of chip, "
13345 "aborting.\n");
13346 goto err_out_iounmap;
13347 }
13348
Michael Chan4a29cc22006-03-19 13:21:12 -080013349 /* The EPB bridge inside 5714, 5715, and 5780 and any
13350 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080013351 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
13352 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
13353 * do DMA address check in tg3_start_xmit().
13354 */
Michael Chan4a29cc22006-03-19 13:21:12 -080013355 if (tp->tg3_flags2 & TG3_FLG2_IS_5788)
13356 persist_dma_mask = dma_mask = DMA_32BIT_MASK;
13357 else if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) {
Michael Chan72f2afb2006-03-06 19:28:35 -080013358 persist_dma_mask = dma_mask = DMA_40BIT_MASK;
13359#ifdef CONFIG_HIGHMEM
13360 dma_mask = DMA_64BIT_MASK;
13361#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080013362 } else
Michael Chan72f2afb2006-03-06 19:28:35 -080013363 persist_dma_mask = dma_mask = DMA_64BIT_MASK;
13364
13365 /* Configure DMA attributes. */
13366 if (dma_mask > DMA_32BIT_MASK) {
13367 err = pci_set_dma_mask(pdev, dma_mask);
13368 if (!err) {
13369 dev->features |= NETIF_F_HIGHDMA;
13370 err = pci_set_consistent_dma_mask(pdev,
13371 persist_dma_mask);
13372 if (err < 0) {
13373 printk(KERN_ERR PFX "Unable to obtain 64 bit "
13374 "DMA for consistent allocations\n");
13375 goto err_out_iounmap;
13376 }
13377 }
13378 }
13379 if (err || dma_mask == DMA_32BIT_MASK) {
13380 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
13381 if (err) {
13382 printk(KERN_ERR PFX "No usable DMA configuration, "
13383 "aborting.\n");
13384 goto err_out_iounmap;
13385 }
13386 }
13387
Michael Chanfdfec172005-07-25 12:31:48 -070013388 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013389
Linus Torvalds1da177e2005-04-16 15:20:36 -070013390 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
13391 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
13392 }
13393 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13394 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
13395 tp->pci_chip_rev_id == CHIPREV_ID_5705_A0 ||
Michael Chanc7835a72006-11-15 21:14:42 -080013396 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -070013397 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0) {
13398 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
13399 } else {
Michael Chan7f62ad52007-02-20 23:25:40 -080013400 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE | TG3_FLG2_TSO_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013401 }
13402
Michael Chan4e3a7aa2006-03-20 17:47:44 -080013403 /* TSO is on by default on chips that support hardware TSO.
13404 * Firmware TSO on older chips gives lower performance, so it
13405 * is off by default, but can be enabled using ethtool.
13406 */
Michael Chanb0026622006-07-03 19:42:14 -070013407 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013408 dev->features |= NETIF_F_TSO;
Michael Chanb5d37722006-09-27 16:06:21 -070013409 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO_2) &&
13410 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5906))
Michael Chanb0026622006-07-03 19:42:14 -070013411 dev->features |= NETIF_F_TSO6;
Matt Carlson57e69832008-05-25 23:48:31 -070013412 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
13413 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13414 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
13415 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Matt Carlson9936bcf2007-10-10 18:03:07 -070013416 dev->features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070013417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013418
Linus Torvalds1da177e2005-04-16 15:20:36 -070013419
13420 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
13421 !(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
13422 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
13423 tp->tg3_flags2 |= TG3_FLG2_MAX_RXPEND_64;
13424 tp->rx_pending = 63;
13425 }
13426
Linus Torvalds1da177e2005-04-16 15:20:36 -070013427 err = tg3_get_device_address(tp);
13428 if (err) {
13429 printk(KERN_ERR PFX "Could not obtain valid ethernet address, "
13430 "aborting.\n");
13431 goto err_out_iounmap;
13432 }
13433
Matt Carlson0d3031d2007-10-10 18:02:43 -070013434 if (tp->tg3_flags3 & TG3_FLG3_ENABLE_APE) {
13435 if (!(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
13436 printk(KERN_ERR PFX "Cannot find proper PCI device "
13437 "base address for APE, aborting.\n");
13438 err = -ENODEV;
13439 goto err_out_iounmap;
13440 }
13441
13442 tg3reg_base = pci_resource_start(pdev, 2);
13443 tg3reg_len = pci_resource_len(pdev, 2);
13444
13445 tp->aperegs = ioremap_nocache(tg3reg_base, tg3reg_len);
Al Viro79ea13c2008-01-24 02:06:46 -080013446 if (!tp->aperegs) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070013447 printk(KERN_ERR PFX "Cannot map APE registers, "
13448 "aborting.\n");
13449 err = -ENOMEM;
13450 goto err_out_iounmap;
13451 }
13452
13453 tg3_ape_lock_init(tp);
13454 }
13455
Matt Carlsonc88864d2007-11-12 21:07:01 -080013456 /*
13457 * Reset chip in case UNDI or EFI driver did not shutdown
13458 * DMA self test will enable WDMAC and we'll see (spurious)
13459 * pending DMA on the PCI bus at that point.
13460 */
13461 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
13462 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
13463 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
13464 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13465 }
13466
13467 err = tg3_test_dma(tp);
13468 if (err) {
13469 printk(KERN_ERR PFX "DMA engine test failed, aborting.\n");
13470 goto err_out_apeunmap;
13471 }
13472
13473 /* Tigon3 can do ipv4 only... and some chips have buggy
13474 * checksumming.
13475 */
13476 if ((tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) == 0) {
13477 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
13478 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
13479 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
13480 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013481 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
13482 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Matt Carlsonc88864d2007-11-12 21:07:01 -080013483 dev->features |= NETIF_F_IPV6_CSUM;
13484
13485 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
13486 } else
13487 tp->tg3_flags &= ~TG3_FLAG_RX_CHECKSUMS;
13488
13489 /* flow control autonegotiation is default behavior */
13490 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
Matt Carlson8d018622007-12-20 20:05:44 -080013491 tp->link_config.flowctrl = TG3_FLOW_CTRL_TX | TG3_FLOW_CTRL_RX;
Matt Carlsonc88864d2007-11-12 21:07:01 -080013492
13493 tg3_init_coal(tp);
13494
Michael Chanc49a1562006-12-17 17:07:29 -080013495 pci_set_drvdata(pdev, dev);
13496
Linus Torvalds1da177e2005-04-16 15:20:36 -070013497 err = register_netdev(dev);
13498 if (err) {
13499 printk(KERN_ERR PFX "Cannot register net device, "
13500 "aborting.\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070013501 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013502 }
13503
Joe Perchesd6645372007-12-20 04:06:59 -080013504 printk(KERN_INFO "%s: Tigon3 [partno(%s) rev %04x PHY(%s)] "
13505 "(%s) %s Ethernet %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070013506 dev->name,
13507 tp->board_part_number,
13508 tp->pci_chip_rev_id,
13509 tg3_phy_string(tp),
Michael Chanf9804dd2005-09-27 12:13:10 -070013510 tg3_bus_string(tp, str),
Michael Chancbb45d22006-12-07 00:24:09 -080013511 ((tp->tg3_flags & TG3_FLAG_10_100_ONLY) ? "10/100Base-TX" :
13512 ((tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) ? "1000Base-SX" :
Joe Perchesd6645372007-12-20 04:06:59 -080013513 "10/100/1000Base-T")),
13514 print_mac(mac, dev->dev_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -070013515
13516 printk(KERN_INFO "%s: RXcsums[%d] LinkChgREG[%d] "
Michael Chan1c46ae02007-03-24 20:54:37 -070013517 "MIirq[%d] ASF[%d] WireSpeed[%d] TSOcap[%d]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070013518 dev->name,
13519 (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0,
13520 (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) != 0,
13521 (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) != 0,
13522 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013523 (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED) == 0,
13524 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) != 0);
Michael Chan4a29cc22006-03-19 13:21:12 -080013525 printk(KERN_INFO "%s: dma_rwctrl[%08x] dma_mask[%d-bit]\n",
13526 dev->name, tp->dma_rwctrl,
13527 (pdev->dma_mask == DMA_32BIT_MASK) ? 32 :
13528 (((u64) pdev->dma_mask == DMA_40BIT_MASK) ? 40 : 64));
Linus Torvalds1da177e2005-04-16 15:20:36 -070013529
13530 return 0;
13531
Matt Carlson0d3031d2007-10-10 18:02:43 -070013532err_out_apeunmap:
13533 if (tp->aperegs) {
13534 iounmap(tp->aperegs);
13535 tp->aperegs = NULL;
13536 }
13537
Linus Torvalds1da177e2005-04-16 15:20:36 -070013538err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070013539 if (tp->regs) {
13540 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070013541 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070013542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013543
13544err_out_free_dev:
13545 free_netdev(dev);
13546
13547err_out_free_res:
13548 pci_release_regions(pdev);
13549
13550err_out_disable_pdev:
13551 pci_disable_device(pdev);
13552 pci_set_drvdata(pdev, NULL);
13553 return err;
13554}
13555
13556static void __devexit tg3_remove_one(struct pci_dev *pdev)
13557{
13558 struct net_device *dev = pci_get_drvdata(pdev);
13559
13560 if (dev) {
13561 struct tg3 *tp = netdev_priv(dev);
13562
Michael Chan7faa0062006-02-02 17:29:28 -080013563 flush_scheduled_work();
Matt Carlson158d7ab2008-05-29 01:37:54 -070013564
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013565 if (tp->tg3_flags3 & TG3_FLG3_USE_PHYLIB) {
13566 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070013567 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013568 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070013569
Linus Torvalds1da177e2005-04-16 15:20:36 -070013570 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070013571 if (tp->aperegs) {
13572 iounmap(tp->aperegs);
13573 tp->aperegs = NULL;
13574 }
Michael Chan68929142005-08-09 20:17:14 -070013575 if (tp->regs) {
13576 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070013577 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070013578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013579 free_netdev(dev);
13580 pci_release_regions(pdev);
13581 pci_disable_device(pdev);
13582 pci_set_drvdata(pdev, NULL);
13583 }
13584}
13585
13586static int tg3_suspend(struct pci_dev *pdev, pm_message_t state)
13587{
13588 struct net_device *dev = pci_get_drvdata(pdev);
13589 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070013590 pci_power_t target_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013591 int err;
13592
Michael Chan3e0c95f2007-08-03 20:56:54 -070013593 /* PCI register 4 needs to be saved whether netif_running() or not.
13594 * MSI address and data need to be saved if using MSI and
13595 * netif_running().
13596 */
13597 pci_save_state(pdev);
13598
Linus Torvalds1da177e2005-04-16 15:20:36 -070013599 if (!netif_running(dev))
13600 return 0;
13601
Michael Chan7faa0062006-02-02 17:29:28 -080013602 flush_scheduled_work();
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013603 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013604 tg3_netif_stop(tp);
13605
13606 del_timer_sync(&tp->timer);
13607
David S. Millerf47c11e2005-06-24 20:18:35 -070013608 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013609 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070013610 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013611
13612 netif_device_detach(dev);
13613
David S. Millerf47c11e2005-06-24 20:18:35 -070013614 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070013615 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan6a9eba12005-12-13 21:08:58 -080013616 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
David S. Millerf47c11e2005-06-24 20:18:35 -070013617 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013618
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070013619 target_state = pdev->pm_cap ? pci_target_state(pdev) : PCI_D3hot;
13620
13621 err = tg3_set_power_state(tp, target_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013622 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013623 int err2;
13624
David S. Millerf47c11e2005-06-24 20:18:35 -070013625 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013626
Michael Chan6a9eba12005-12-13 21:08:58 -080013627 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013628 err2 = tg3_restart_hw(tp, 1);
13629 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070013630 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013631
13632 tp->timer.expires = jiffies + tp->timer_offset;
13633 add_timer(&tp->timer);
13634
13635 netif_device_attach(dev);
13636 tg3_netif_start(tp);
13637
Michael Chanb9ec6c12006-07-25 16:37:27 -070013638out:
David S. Millerf47c11e2005-06-24 20:18:35 -070013639 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013640
13641 if (!err2)
13642 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013643 }
13644
13645 return err;
13646}
13647
13648static int tg3_resume(struct pci_dev *pdev)
13649{
13650 struct net_device *dev = pci_get_drvdata(pdev);
13651 struct tg3 *tp = netdev_priv(dev);
13652 int err;
13653
Michael Chan3e0c95f2007-08-03 20:56:54 -070013654 pci_restore_state(tp->pdev);
13655
Linus Torvalds1da177e2005-04-16 15:20:36 -070013656 if (!netif_running(dev))
13657 return 0;
13658
Michael Chanbc1c7562006-03-20 17:48:03 -080013659 err = tg3_set_power_state(tp, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013660 if (err)
13661 return err;
13662
13663 netif_device_attach(dev);
13664
David S. Millerf47c11e2005-06-24 20:18:35 -070013665 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013666
Michael Chan6a9eba12005-12-13 21:08:58 -080013667 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
Michael Chanb9ec6c12006-07-25 16:37:27 -070013668 err = tg3_restart_hw(tp, 1);
13669 if (err)
13670 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013671
13672 tp->timer.expires = jiffies + tp->timer_offset;
13673 add_timer(&tp->timer);
13674
Linus Torvalds1da177e2005-04-16 15:20:36 -070013675 tg3_netif_start(tp);
13676
Michael Chanb9ec6c12006-07-25 16:37:27 -070013677out:
David S. Millerf47c11e2005-06-24 20:18:35 -070013678 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013679
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013680 if (!err)
13681 tg3_phy_start(tp);
13682
Michael Chanb9ec6c12006-07-25 16:37:27 -070013683 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013684}
13685
13686static struct pci_driver tg3_driver = {
13687 .name = DRV_MODULE_NAME,
13688 .id_table = tg3_pci_tbl,
13689 .probe = tg3_init_one,
13690 .remove = __devexit_p(tg3_remove_one),
13691 .suspend = tg3_suspend,
13692 .resume = tg3_resume
13693};
13694
13695static int __init tg3_init(void)
13696{
Jeff Garzik29917622006-08-19 17:48:59 -040013697 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013698}
13699
13700static void __exit tg3_cleanup(void)
13701{
13702 pci_unregister_driver(&tg3_driver);
13703}
13704
13705module_init(tg3_init);
13706module_exit(tg3_cleanup);