2 * tg3.c: Broadcom Tigon3 ethernet driver.
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.
7 * Copyright (C) 2005 Broadcom Corporation.
10 * Derived from proprietary unpublished source code,
11 * Copyright (C) 2000-2003 Broadcom Corporation.
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.
18 #include <linux/config.h>
20 #include <linux/module.h>
21 #include <linux/moduleparam.h>
22 #include <linux/kernel.h>
23 #include <linux/types.h>
24 #include <linux/compiler.h>
25 #include <linux/slab.h>
26 #include <linux/delay.h>
27 #include <linux/init.h>
28 #include <linux/ioport.h>
29 #include <linux/pci.h>
30 #include <linux/netdevice.h>
31 #include <linux/etherdevice.h>
32 #include <linux/skbuff.h>
33 #include <linux/ethtool.h>
34 #include <linux/mii.h>
35 #include <linux/if_vlan.h>
37 #include <linux/tcp.h>
38 #include <linux/workqueue.h>
40 #include <net/checksum.h>
42 #include <asm/system.h>
44 #include <asm/byteorder.h>
45 #include <asm/uaccess.h>
48 #include <asm/idprom.h>
49 #include <asm/oplib.h>
53 #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
54 #define TG3_VLAN_TAG_USED 1
56 #define TG3_VLAN_TAG_USED 0
60 #define TG3_TSO_SUPPORT 1
62 #define TG3_TSO_SUPPORT 0
67 #define DRV_MODULE_NAME "tg3"
68 #define PFX DRV_MODULE_NAME ": "
69 #define DRV_MODULE_VERSION "3.33"
70 #define DRV_MODULE_RELDATE "July 5, 2005"
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 \
85 /* length of time before we decide the hardware is borked,
86 * and dev->tx_timeout() should be called to fix the problem
88 #define TG3_TX_TIMEOUT (5 * HZ)
90 /* hardware minimum and maximum for a single frame's data payload */
91 #define TG3_MIN_MTU 60
92 #define TG3_MAX_MTU(tp) \
93 (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ? 9000 : 1500)
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.
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
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)'.
110 #define TG3_RX_RCB_RING_SIZE(tp) \
111 ((tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ? 512 : 1024)
113 #define TG3_TX_RING_SIZE 512
114 #define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
116 #define TG3_RX_RING_BYTES (sizeof(struct tg3_rx_buffer_desc) * \
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) * \
124 #define TX_RING_GAP(TP) \
125 (TG3_TX_RING_SIZE - (TP)->tx_pending)
126 #define TX_BUFFS_AVAIL(TP) \
127 (((TP)->tx_cons <= (TP)->tx_prod) ? \
128 (TP)->tx_cons + (TP)->tx_pending - (TP)->tx_prod : \
129 (TP)->tx_cons - (TP)->tx_prod - TX_RING_GAP(TP))
130 #define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
132 #define RX_PKT_BUF_SZ (1536 + tp->rx_offset + 64)
133 #define RX_JUMBO_PKT_BUF_SZ (9046 + tp->rx_offset + 64)
135 /* minimum number of free TX descriptors required to wake up TX process */
136 #define TG3_TX_WAKEUP_THRESH (TG3_TX_RING_SIZE / 4)
138 /* number of ETHTOOL_GSTATS u64's */
139 #define TG3_NUM_STATS (sizeof(struct tg3_ethtool_stats)/sizeof(u64))
141 #define TG3_NUM_TEST 6
143 static char version[] __devinitdata =
144 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
146 MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
147 MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
148 MODULE_LICENSE("GPL");
149 MODULE_VERSION(DRV_MODULE_VERSION);
151 static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
152 module_param(tg3_debug, int, 0);
153 MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
155 static struct pci_device_id tg3_pci_tbl[] = {
156 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700,
157 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
158 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701,
159 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
160 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702,
161 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
162 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703,
163 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
164 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704,
165 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
166 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE,
167 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
168 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705,
169 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
170 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2,
171 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
172 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M,
173 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
174 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2,
175 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
176 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X,
177 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
178 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X,
179 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
180 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S,
181 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
182 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3,
183 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
184 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3,
185 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
186 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782,
187 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
188 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788,
189 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
190 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789,
191 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
192 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901,
193 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
194 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2,
195 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
196 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2,
197 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
198 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F,
199 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
200 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5720,
201 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
202 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721,
203 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
204 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750,
205 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
206 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751,
207 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
208 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750M,
209 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
210 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M,
211 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
212 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F,
213 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
214 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752,
215 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
216 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M,
217 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
218 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753,
219 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
220 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M,
221 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
222 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F,
223 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
224 { PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781,
225 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
226 { PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX,
227 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
228 { PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX,
229 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
230 { PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000,
231 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
232 { PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001,
233 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
234 { PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003,
235 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
236 { PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100,
237 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
238 { PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3,
239 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
243 MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
246 const char string[ETH_GSTRING_LEN];
247 } ethtool_stats_keys[TG3_NUM_STATS] = {
250 { "rx_ucast_packets" },
251 { "rx_mcast_packets" },
252 { "rx_bcast_packets" },
254 { "rx_align_errors" },
255 { "rx_xon_pause_rcvd" },
256 { "rx_xoff_pause_rcvd" },
257 { "rx_mac_ctrl_rcvd" },
258 { "rx_xoff_entered" },
259 { "rx_frame_too_long_errors" },
261 { "rx_undersize_packets" },
262 { "rx_in_length_errors" },
263 { "rx_out_length_errors" },
264 { "rx_64_or_less_octet_packets" },
265 { "rx_65_to_127_octet_packets" },
266 { "rx_128_to_255_octet_packets" },
267 { "rx_256_to_511_octet_packets" },
268 { "rx_512_to_1023_octet_packets" },
269 { "rx_1024_to_1522_octet_packets" },
270 { "rx_1523_to_2047_octet_packets" },
271 { "rx_2048_to_4095_octet_packets" },
272 { "rx_4096_to_8191_octet_packets" },
273 { "rx_8192_to_9022_octet_packets" },
280 { "tx_flow_control" },
282 { "tx_single_collisions" },
283 { "tx_mult_collisions" },
285 { "tx_excessive_collisions" },
286 { "tx_late_collisions" },
287 { "tx_collide_2times" },
288 { "tx_collide_3times" },
289 { "tx_collide_4times" },
290 { "tx_collide_5times" },
291 { "tx_collide_6times" },
292 { "tx_collide_7times" },
293 { "tx_collide_8times" },
294 { "tx_collide_9times" },
295 { "tx_collide_10times" },
296 { "tx_collide_11times" },
297 { "tx_collide_12times" },
298 { "tx_collide_13times" },
299 { "tx_collide_14times" },
300 { "tx_collide_15times" },
301 { "tx_ucast_packets" },
302 { "tx_mcast_packets" },
303 { "tx_bcast_packets" },
304 { "tx_carrier_sense_errors" },
308 { "dma_writeq_full" },
309 { "dma_write_prioq_full" },
313 { "rx_threshold_hit" },
315 { "dma_readq_full" },
316 { "dma_read_prioq_full" },
317 { "tx_comp_queue_full" },
319 { "ring_set_send_prod_index" },
320 { "ring_status_update" },
322 { "nic_avoided_irqs" },
323 { "nic_tx_threshold_hit" }
327 const char string[ETH_GSTRING_LEN];
328 } ethtool_test_keys[TG3_NUM_TEST] = {
329 { "nvram test (online) " },
330 { "link test (online) " },
331 { "register test (offline)" },
332 { "memory test (offline)" },
333 { "loopback test (offline)" },
334 { "interrupt test (offline)" },
337 static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
339 if ((tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) != 0) {
340 spin_lock_bh(&tp->indirect_lock);
341 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
342 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
343 spin_unlock_bh(&tp->indirect_lock);
345 writel(val, tp->regs + off);
346 if ((tp->tg3_flags & TG3_FLAG_5701_REG_WRITE_BUG) != 0)
347 readl(tp->regs + off);
351 static void _tw32_flush(struct tg3 *tp, u32 off, u32 val)
353 if ((tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) != 0) {
354 spin_lock_bh(&tp->indirect_lock);
355 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
356 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
357 spin_unlock_bh(&tp->indirect_lock);
359 void __iomem *dest = tp->regs + off;
361 readl(dest); /* always flush PCI write */
365 static inline void _tw32_rx_mbox(struct tg3 *tp, u32 off, u32 val)
367 void __iomem *mbox = tp->regs + off;
369 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
373 static inline void _tw32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
375 void __iomem *mbox = tp->regs + off;
377 if (tp->tg3_flags & TG3_FLAG_TXD_MBOX_HWBUG)
379 if (tp->tg3_flags & TG3_FLAG_MBOX_WRITE_REORDER)
383 #define tw32_mailbox(reg, val) writel(((val) & 0xffffffff), tp->regs + (reg))
384 #define tw32_rx_mbox(reg, val) _tw32_rx_mbox(tp, reg, val)
385 #define tw32_tx_mbox(reg, val) _tw32_tx_mbox(tp, reg, val)
387 #define tw32(reg,val) tg3_write_indirect_reg32(tp,(reg),(val))
388 #define tw32_f(reg,val) _tw32_flush(tp,(reg),(val))
389 #define tw16(reg,val) writew(((val) & 0xffff), tp->regs + (reg))
390 #define tw8(reg,val) writeb(((val) & 0xff), tp->regs + (reg))
391 #define tr32(reg) readl(tp->regs + (reg))
392 #define tr16(reg) readw(tp->regs + (reg))
393 #define tr8(reg) readb(tp->regs + (reg))
395 static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
397 spin_lock_bh(&tp->indirect_lock);
398 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
399 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
401 /* Always leave this as zero. */
402 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
403 spin_unlock_bh(&tp->indirect_lock);
406 static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
408 spin_lock_bh(&tp->indirect_lock);
409 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
410 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
412 /* Always leave this as zero. */
413 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
414 spin_unlock_bh(&tp->indirect_lock);
417 static void tg3_disable_ints(struct tg3 *tp)
419 tw32(TG3PCI_MISC_HOST_CTRL,
420 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
421 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
422 tr32(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW);
425 static inline void tg3_cond_int(struct tg3 *tp)
427 if (tp->hw_status->status & SD_STATUS_UPDATED)
428 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
431 static void tg3_enable_ints(struct tg3 *tp)
436 tw32(TG3PCI_MISC_HOST_CTRL,
437 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
438 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
439 (tp->last_tag << 24));
440 tr32(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW);
444 static inline unsigned int tg3_has_work(struct tg3 *tp)
446 struct tg3_hw_status *sblk = tp->hw_status;
447 unsigned int work_exists = 0;
449 /* check for phy events */
450 if (!(tp->tg3_flags &
451 (TG3_FLAG_USE_LINKCHG_REG |
452 TG3_FLAG_POLL_SERDES))) {
453 if (sblk->status & SD_STATUS_LINK_CHG)
456 /* check for RX/TX work to do */
457 if (sblk->idx[0].tx_consumer != tp->tx_cons ||
458 sblk->idx[0].rx_producer != tp->rx_rcb_ptr)
465 * similar to tg3_enable_ints, but it accurately determines whether there
466 * is new work pending and can return without flushing the PIO write
467 * which reenables interrupts
469 static void tg3_restart_ints(struct tg3 *tp)
471 tw32(TG3PCI_MISC_HOST_CTRL,
472 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
473 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
477 /* When doing tagged status, this work check is unnecessary.
478 * The last_tag we write above tells the chip which piece of
479 * work we've completed.
481 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
483 tw32(HOSTCC_MODE, tp->coalesce_mode |
484 (HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW));
487 static inline void tg3_netif_stop(struct tg3 *tp)
489 tp->dev->trans_start = jiffies; /* prevent tx timeout */
490 netif_poll_disable(tp->dev);
491 netif_tx_disable(tp->dev);
494 static inline void tg3_netif_start(struct tg3 *tp)
496 netif_wake_queue(tp->dev);
497 /* NOTE: unconditional netif_wake_queue is only appropriate
498 * so long as all callers are assured to have free tx slots
499 * (such as after tg3_init_hw)
501 netif_poll_enable(tp->dev);
502 tp->hw_status->status |= SD_STATUS_UPDATED;
506 static void tg3_switch_clocks(struct tg3 *tp)
508 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
511 orig_clock_ctrl = clock_ctrl;
512 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
513 CLOCK_CTRL_CLKRUN_OENABLE |
515 tp->pci_clock_ctrl = clock_ctrl;
517 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
518 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
519 tw32_f(TG3PCI_CLOCK_CTRL,
520 clock_ctrl | CLOCK_CTRL_625_CORE);
523 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
524 tw32_f(TG3PCI_CLOCK_CTRL,
526 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK));
528 tw32_f(TG3PCI_CLOCK_CTRL,
529 clock_ctrl | (CLOCK_CTRL_ALTCLK));
532 tw32_f(TG3PCI_CLOCK_CTRL, clock_ctrl);
536 #define PHY_BUSY_LOOPS 5000
538 static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
544 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
546 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
552 frame_val = ((PHY_ADDR << MI_COM_PHY_ADDR_SHIFT) &
553 MI_COM_PHY_ADDR_MASK);
554 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
555 MI_COM_REG_ADDR_MASK);
556 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
558 tw32_f(MAC_MI_COM, frame_val);
560 loops = PHY_BUSY_LOOPS;
563 frame_val = tr32(MAC_MI_COM);
565 if ((frame_val & MI_COM_BUSY) == 0) {
567 frame_val = tr32(MAC_MI_COM);
575 *val = frame_val & MI_COM_DATA_MASK;
579 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
580 tw32_f(MAC_MI_MODE, tp->mi_mode);
587 static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
593 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
595 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
599 frame_val = ((PHY_ADDR << MI_COM_PHY_ADDR_SHIFT) &
600 MI_COM_PHY_ADDR_MASK);
601 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
602 MI_COM_REG_ADDR_MASK);
603 frame_val |= (val & MI_COM_DATA_MASK);
604 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
606 tw32_f(MAC_MI_COM, frame_val);
608 loops = PHY_BUSY_LOOPS;
611 frame_val = tr32(MAC_MI_COM);
612 if ((frame_val & MI_COM_BUSY) == 0) {
614 frame_val = tr32(MAC_MI_COM);
624 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
625 tw32_f(MAC_MI_MODE, tp->mi_mode);
632 static void tg3_phy_set_wirespeed(struct tg3 *tp)
636 if (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED)
639 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x7007) &&
640 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &val))
641 tg3_writephy(tp, MII_TG3_AUX_CTRL,
642 (val | (1 << 15) | (1 << 4)));
645 static int tg3_bmcr_reset(struct tg3 *tp)
650 /* OK, reset it, and poll the BMCR_RESET bit until it
651 * clears or we time out.
653 phy_control = BMCR_RESET;
654 err = tg3_writephy(tp, MII_BMCR, phy_control);
660 err = tg3_readphy(tp, MII_BMCR, &phy_control);
664 if ((phy_control & BMCR_RESET) == 0) {
676 static int tg3_wait_macro_done(struct tg3 *tp)
683 if (!tg3_readphy(tp, 0x16, &tmp32)) {
684 if ((tmp32 & 0x1000) == 0)
694 static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
696 static const u32 test_pat[4][6] = {
697 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
698 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
699 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
700 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
704 for (chan = 0; chan < 4; chan++) {
707 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
708 (chan * 0x2000) | 0x0200);
709 tg3_writephy(tp, 0x16, 0x0002);
711 for (i = 0; i < 6; i++)
712 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
715 tg3_writephy(tp, 0x16, 0x0202);
716 if (tg3_wait_macro_done(tp)) {
721 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
722 (chan * 0x2000) | 0x0200);
723 tg3_writephy(tp, 0x16, 0x0082);
724 if (tg3_wait_macro_done(tp)) {
729 tg3_writephy(tp, 0x16, 0x0802);
730 if (tg3_wait_macro_done(tp)) {
735 for (i = 0; i < 6; i += 2) {
738 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
739 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
740 tg3_wait_macro_done(tp)) {
746 if (low != test_pat[chan][i] ||
747 high != test_pat[chan][i+1]) {
748 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
749 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
750 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
760 static int tg3_phy_reset_chanpat(struct tg3 *tp)
764 for (chan = 0; chan < 4; chan++) {
767 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
768 (chan * 0x2000) | 0x0200);
769 tg3_writephy(tp, 0x16, 0x0002);
770 for (i = 0; i < 6; i++)
771 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
772 tg3_writephy(tp, 0x16, 0x0202);
773 if (tg3_wait_macro_done(tp))
780 static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
782 u32 reg32, phy9_orig;
783 int retries, do_phy_reset, err;
789 err = tg3_bmcr_reset(tp);
795 /* Disable transmitter and interrupt. */
796 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, ®32))
800 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
802 /* Set full-duplex, 1000 mbps. */
803 tg3_writephy(tp, MII_BMCR,
804 BMCR_FULLDPLX | TG3_BMCR_SPEED1000);
806 /* Set to master mode. */
807 if (tg3_readphy(tp, MII_TG3_CTRL, &phy9_orig))
810 tg3_writephy(tp, MII_TG3_CTRL,
811 (MII_TG3_CTRL_AS_MASTER |
812 MII_TG3_CTRL_ENABLE_AS_MASTER));
814 /* Enable SM_DSP_CLOCK and 6dB. */
815 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
817 /* Block the PHY control access. */
818 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
819 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0800);
821 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
826 err = tg3_phy_reset_chanpat(tp);
830 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8005);
831 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0000);
833 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
834 tg3_writephy(tp, 0x16, 0x0000);
836 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
837 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
838 /* Set Extended packet length bit for jumbo frames */
839 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4400);
842 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
845 tg3_writephy(tp, MII_TG3_CTRL, phy9_orig);
847 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, ®32)) {
849 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
856 /* This will reset the tigon3 PHY if there is no valid
857 * link unless the FORCE argument is non-zero.
859 static int tg3_phy_reset(struct tg3 *tp)
864 err = tg3_readphy(tp, MII_BMSR, &phy_status);
865 err |= tg3_readphy(tp, MII_BMSR, &phy_status);
869 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
870 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
871 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
872 err = tg3_phy_reset_5703_4_5(tp);
878 err = tg3_bmcr_reset(tp);
883 if (tp->tg3_flags2 & TG3_FLG2_PHY_ADC_BUG) {
884 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
885 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
886 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x2aaa);
887 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
888 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0323);
889 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
891 if (tp->tg3_flags2 & TG3_FLG2_PHY_5704_A0_BUG) {
892 tg3_writephy(tp, 0x1c, 0x8d68);
893 tg3_writephy(tp, 0x1c, 0x8d68);
895 if (tp->tg3_flags2 & TG3_FLG2_PHY_BER_BUG) {
896 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0c00);
897 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
898 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x310b);
899 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
900 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x9506);
901 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x401f);
902 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x14e2);
903 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0400);
905 /* Set Extended packet length bit (bit 14) on all chips that */
906 /* support jumbo frames */
907 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
908 /* Cannot do read-modify-write on 5401 */
909 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
910 } else if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
913 /* Set bit 14 with read-modify-write to preserve other bits */
914 if (!tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x0007) &&
915 !tg3_readphy(tp, MII_TG3_AUX_CTRL, &phy_reg))
916 tg3_writephy(tp, MII_TG3_AUX_CTRL, phy_reg | 0x4000);
919 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
920 * jumbo frames transmission.
922 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
925 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &phy_reg))
926 tg3_writephy(tp, MII_TG3_EXT_CTRL,
927 phy_reg | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
930 tg3_phy_set_wirespeed(tp);
934 static void tg3_frob_aux_power(struct tg3 *tp)
936 struct tg3 *tp_peer = tp;
938 if ((tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) != 0)
941 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
942 tp_peer = pci_get_drvdata(tp->pdev_peer);
948 if ((tp->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0 ||
949 (tp_peer->tg3_flags & TG3_FLAG_WOL_ENABLE) != 0) {
950 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
951 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
952 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
953 (GRC_LCLCTRL_GPIO_OE0 |
954 GRC_LCLCTRL_GPIO_OE1 |
955 GRC_LCLCTRL_GPIO_OE2 |
956 GRC_LCLCTRL_GPIO_OUTPUT0 |
957 GRC_LCLCTRL_GPIO_OUTPUT1));
964 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
967 /* On 5753 and variants, GPIO2 cannot be used. */
968 no_gpio2 = tp->nic_sram_data_cfg &
969 NIC_SRAM_DATA_CFG_NO_GPIO2;
971 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
972 GRC_LCLCTRL_GPIO_OE1 |
973 GRC_LCLCTRL_GPIO_OE2 |
974 GRC_LCLCTRL_GPIO_OUTPUT1 |
975 GRC_LCLCTRL_GPIO_OUTPUT2;
977 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
978 GRC_LCLCTRL_GPIO_OUTPUT2);
980 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
984 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
986 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
991 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
992 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
998 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
999 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
1000 if (tp_peer != tp &&
1001 (tp_peer->tg3_flags & TG3_FLAG_INIT_COMPLETE) != 0)
1004 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1005 (GRC_LCLCTRL_GPIO_OE1 |
1006 GRC_LCLCTRL_GPIO_OUTPUT1));
1009 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1010 (GRC_LCLCTRL_GPIO_OE1));
1013 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
1014 (GRC_LCLCTRL_GPIO_OE1 |
1015 GRC_LCLCTRL_GPIO_OUTPUT1));
1021 static int tg3_setup_phy(struct tg3 *, int);
1023 #define RESET_KIND_SHUTDOWN 0
1024 #define RESET_KIND_INIT 1
1025 #define RESET_KIND_SUSPEND 2
1027 static void tg3_write_sig_post_reset(struct tg3 *, int);
1028 static int tg3_halt_cpu(struct tg3 *, u32);
1030 static int tg3_set_power_state(struct tg3 *tp, int state)
1033 u16 power_control, power_caps;
1034 int pm = tp->pm_cap;
1036 /* Make sure register accesses (indirect or otherwise)
1037 * will function correctly.
1039 pci_write_config_dword(tp->pdev,
1040 TG3PCI_MISC_HOST_CTRL,
1041 tp->misc_host_ctrl);
1043 pci_read_config_word(tp->pdev,
1046 power_control |= PCI_PM_CTRL_PME_STATUS;
1047 power_control &= ~(PCI_PM_CTRL_STATE_MASK);
1051 pci_write_config_word(tp->pdev,
1054 udelay(100); /* Delay after power state change */
1056 /* Switch out of Vaux if it is not a LOM */
1057 if (!(tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT)) {
1058 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
1077 printk(KERN_WARNING PFX "%s: Invalid power state (%d) "
1079 tp->dev->name, state);
1083 power_control |= PCI_PM_CTRL_PME_ENABLE;
1085 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
1086 tw32(TG3PCI_MISC_HOST_CTRL,
1087 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
1089 if (tp->link_config.phy_is_low_power == 0) {
1090 tp->link_config.phy_is_low_power = 1;
1091 tp->link_config.orig_speed = tp->link_config.speed;
1092 tp->link_config.orig_duplex = tp->link_config.duplex;
1093 tp->link_config.orig_autoneg = tp->link_config.autoneg;
1096 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
1097 tp->link_config.speed = SPEED_10;
1098 tp->link_config.duplex = DUPLEX_HALF;
1099 tp->link_config.autoneg = AUTONEG_ENABLE;
1100 tg3_setup_phy(tp, 0);
1103 pci_read_config_word(tp->pdev, pm + PCI_PM_PMC, &power_caps);
1105 if (tp->tg3_flags & TG3_FLAG_WOL_ENABLE) {
1108 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
1109 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x5a);
1112 mac_mode = MAC_MODE_PORT_MODE_MII;
1114 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 ||
1115 !(tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB))
1116 mac_mode |= MAC_MODE_LINK_POLARITY;
1118 mac_mode = MAC_MODE_PORT_MODE_TBI;
1121 if (!(tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
1122 tw32(MAC_LED_CTRL, tp->led_ctrl);
1124 if (((power_caps & PCI_PM_CAP_PME_D3cold) &&
1125 (tp->tg3_flags & TG3_FLAG_WOL_ENABLE)))
1126 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
1128 tw32_f(MAC_MODE, mac_mode);
1131 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
1135 if (!(tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB) &&
1136 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1137 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
1140 base_val = tp->pci_clock_ctrl;
1141 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
1142 CLOCK_CTRL_TXCLK_DISABLE);
1144 tw32_f(TG3PCI_CLOCK_CTRL, base_val |
1146 CLOCK_CTRL_PWRDOWN_PLL133);
1148 } else if (!((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
1149 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF))) {
1150 u32 newbits1, newbits2;
1152 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1153 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
1154 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
1155 CLOCK_CTRL_TXCLK_DISABLE |
1157 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
1158 } else if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
1159 newbits1 = CLOCK_CTRL_625_CORE;
1160 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
1162 newbits1 = CLOCK_CTRL_ALTCLK;
1163 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
1166 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1);
1169 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2);
1172 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
1175 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1176 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
1177 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
1178 CLOCK_CTRL_TXCLK_DISABLE |
1179 CLOCK_CTRL_44MHZ_CORE);
1181 newbits3 = CLOCK_CTRL_44MHZ_CORE;
1184 tw32_f(TG3PCI_CLOCK_CTRL,
1185 tp->pci_clock_ctrl | newbits3);
1190 tg3_frob_aux_power(tp);
1192 /* Workaround for unstable PLL clock */
1193 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
1194 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
1195 u32 val = tr32(0x7d00);
1197 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
1199 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
1200 tg3_halt_cpu(tp, RX_CPU_BASE);
1203 /* Finally, set the new power state. */
1204 pci_write_config_word(tp->pdev, pm + PCI_PM_CTRL, power_control);
1205 udelay(100); /* Delay after power state change */
1207 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
1212 static void tg3_link_report(struct tg3 *tp)
1214 if (!netif_carrier_ok(tp->dev)) {
1215 printk(KERN_INFO PFX "%s: Link is down.\n", tp->dev->name);
1217 printk(KERN_INFO PFX "%s: Link is up at %d Mbps, %s duplex.\n",
1219 (tp->link_config.active_speed == SPEED_1000 ?
1221 (tp->link_config.active_speed == SPEED_100 ?
1223 (tp->link_config.active_duplex == DUPLEX_FULL ?
1226 printk(KERN_INFO PFX "%s: Flow control is %s for TX and "
1229 (tp->tg3_flags & TG3_FLAG_TX_PAUSE) ? "on" : "off",
1230 (tp->tg3_flags & TG3_FLAG_RX_PAUSE) ? "on" : "off");
1234 static void tg3_setup_flow_control(struct tg3 *tp, u32 local_adv, u32 remote_adv)
1236 u32 new_tg3_flags = 0;
1237 u32 old_rx_mode = tp->rx_mode;
1238 u32 old_tx_mode = tp->tx_mode;
1240 if (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG) {
1241 if (local_adv & ADVERTISE_PAUSE_CAP) {
1242 if (local_adv & ADVERTISE_PAUSE_ASYM) {
1243 if (remote_adv & LPA_PAUSE_CAP)
1245 (TG3_FLAG_RX_PAUSE |
1247 else if (remote_adv & LPA_PAUSE_ASYM)
1249 (TG3_FLAG_RX_PAUSE);
1251 if (remote_adv & LPA_PAUSE_CAP)
1253 (TG3_FLAG_RX_PAUSE |
1256 } else if (local_adv & ADVERTISE_PAUSE_ASYM) {
1257 if ((remote_adv & LPA_PAUSE_CAP) &&
1258 (remote_adv & LPA_PAUSE_ASYM))
1259 new_tg3_flags |= TG3_FLAG_TX_PAUSE;
1262 tp->tg3_flags &= ~(TG3_FLAG_RX_PAUSE | TG3_FLAG_TX_PAUSE);
1263 tp->tg3_flags |= new_tg3_flags;
1265 new_tg3_flags = tp->tg3_flags;
1268 if (new_tg3_flags & TG3_FLAG_RX_PAUSE)
1269 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1271 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1273 if (old_rx_mode != tp->rx_mode) {
1274 tw32_f(MAC_RX_MODE, tp->rx_mode);
1277 if (new_tg3_flags & TG3_FLAG_TX_PAUSE)
1278 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1280 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1282 if (old_tx_mode != tp->tx_mode) {
1283 tw32_f(MAC_TX_MODE, tp->tx_mode);
1287 static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
1289 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
1290 case MII_TG3_AUX_STAT_10HALF:
1292 *duplex = DUPLEX_HALF;
1295 case MII_TG3_AUX_STAT_10FULL:
1297 *duplex = DUPLEX_FULL;
1300 case MII_TG3_AUX_STAT_100HALF:
1302 *duplex = DUPLEX_HALF;
1305 case MII_TG3_AUX_STAT_100FULL:
1307 *duplex = DUPLEX_FULL;
1310 case MII_TG3_AUX_STAT_1000HALF:
1311 *speed = SPEED_1000;
1312 *duplex = DUPLEX_HALF;
1315 case MII_TG3_AUX_STAT_1000FULL:
1316 *speed = SPEED_1000;
1317 *duplex = DUPLEX_FULL;
1321 *speed = SPEED_INVALID;
1322 *duplex = DUPLEX_INVALID;
1327 static void tg3_phy_copper_begin(struct tg3 *tp)
1332 if (tp->link_config.phy_is_low_power) {
1333 /* Entering low power mode. Disable gigabit and
1334 * 100baseT advertisements.
1336 tg3_writephy(tp, MII_TG3_CTRL, 0);
1338 new_adv = (ADVERTISE_10HALF | ADVERTISE_10FULL |
1339 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1340 if (tp->tg3_flags & TG3_FLAG_WOL_SPEED_100MB)
1341 new_adv |= (ADVERTISE_100HALF | ADVERTISE_100FULL);
1343 tg3_writephy(tp, MII_ADVERTISE, new_adv);
1344 } else if (tp->link_config.speed == SPEED_INVALID) {
1345 tp->link_config.advertising =
1346 (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
1347 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
1348 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full |
1349 ADVERTISED_Autoneg | ADVERTISED_MII);
1351 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
1352 tp->link_config.advertising &=
1353 ~(ADVERTISED_1000baseT_Half |
1354 ADVERTISED_1000baseT_Full);
1356 new_adv = (ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1357 if (tp->link_config.advertising & ADVERTISED_10baseT_Half)
1358 new_adv |= ADVERTISE_10HALF;
1359 if (tp->link_config.advertising & ADVERTISED_10baseT_Full)
1360 new_adv |= ADVERTISE_10FULL;
1361 if (tp->link_config.advertising & ADVERTISED_100baseT_Half)
1362 new_adv |= ADVERTISE_100HALF;
1363 if (tp->link_config.advertising & ADVERTISED_100baseT_Full)
1364 new_adv |= ADVERTISE_100FULL;
1365 tg3_writephy(tp, MII_ADVERTISE, new_adv);
1367 if (tp->link_config.advertising &
1368 (ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full)) {
1370 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
1371 new_adv |= MII_TG3_CTRL_ADV_1000_HALF;
1372 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
1373 new_adv |= MII_TG3_CTRL_ADV_1000_FULL;
1374 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY) &&
1375 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
1376 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0))
1377 new_adv |= (MII_TG3_CTRL_AS_MASTER |
1378 MII_TG3_CTRL_ENABLE_AS_MASTER);
1379 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
1381 tg3_writephy(tp, MII_TG3_CTRL, 0);
1384 /* Asking for a specific link mode. */
1385 if (tp->link_config.speed == SPEED_1000) {
1386 new_adv = ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP;
1387 tg3_writephy(tp, MII_ADVERTISE, new_adv);
1389 if (tp->link_config.duplex == DUPLEX_FULL)
1390 new_adv = MII_TG3_CTRL_ADV_1000_FULL;
1392 new_adv = MII_TG3_CTRL_ADV_1000_HALF;
1393 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
1394 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
1395 new_adv |= (MII_TG3_CTRL_AS_MASTER |
1396 MII_TG3_CTRL_ENABLE_AS_MASTER);
1397 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
1399 tg3_writephy(tp, MII_TG3_CTRL, 0);
1401 new_adv = ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP;
1402 if (tp->link_config.speed == SPEED_100) {
1403 if (tp->link_config.duplex == DUPLEX_FULL)
1404 new_adv |= ADVERTISE_100FULL;
1406 new_adv |= ADVERTISE_100HALF;
1408 if (tp->link_config.duplex == DUPLEX_FULL)
1409 new_adv |= ADVERTISE_10FULL;
1411 new_adv |= ADVERTISE_10HALF;
1413 tg3_writephy(tp, MII_ADVERTISE, new_adv);
1417 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
1418 tp->link_config.speed != SPEED_INVALID) {
1419 u32 bmcr, orig_bmcr;
1421 tp->link_config.active_speed = tp->link_config.speed;
1422 tp->link_config.active_duplex = tp->link_config.duplex;
1425 switch (tp->link_config.speed) {
1431 bmcr |= BMCR_SPEED100;
1435 bmcr |= TG3_BMCR_SPEED1000;
1439 if (tp->link_config.duplex == DUPLEX_FULL)
1440 bmcr |= BMCR_FULLDPLX;
1442 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
1443 (bmcr != orig_bmcr)) {
1444 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
1445 for (i = 0; i < 1500; i++) {
1449 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
1450 tg3_readphy(tp, MII_BMSR, &tmp))
1452 if (!(tmp & BMSR_LSTATUS)) {
1457 tg3_writephy(tp, MII_BMCR, bmcr);
1461 tg3_writephy(tp, MII_BMCR,
1462 BMCR_ANENABLE | BMCR_ANRESTART);
1466 static int tg3_init_5401phy_dsp(struct tg3 *tp)
1470 /* Turn off tap power management. */
1471 /* Set Extended packet length bit */
1472 err = tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
1474 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0012);
1475 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1804);
1477 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x0013);
1478 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x1204);
1480 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
1481 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0132);
1483 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8006);
1484 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0232);
1486 err |= tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x201f);
1487 err |= tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x0a20);
1494 static int tg3_copper_is_advertising_all(struct tg3 *tp)
1496 u32 adv_reg, all_mask;
1498 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
1501 all_mask = (ADVERTISE_10HALF | ADVERTISE_10FULL |
1502 ADVERTISE_100HALF | ADVERTISE_100FULL);
1503 if ((adv_reg & all_mask) != all_mask)
1505 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
1508 if (tg3_readphy(tp, MII_TG3_CTRL, &tg3_ctrl))
1511 all_mask = (MII_TG3_CTRL_ADV_1000_HALF |
1512 MII_TG3_CTRL_ADV_1000_FULL);
1513 if ((tg3_ctrl & all_mask) != all_mask)
1519 static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
1521 int current_link_up;
1530 (MAC_STATUS_SYNC_CHANGED |
1531 MAC_STATUS_CFG_CHANGED |
1532 MAC_STATUS_MI_COMPLETION |
1533 MAC_STATUS_LNKSTATE_CHANGED));
1536 tp->mi_mode = MAC_MI_MODE_BASE;
1537 tw32_f(MAC_MI_MODE, tp->mi_mode);
1540 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x02);
1542 /* Some third-party PHYs need to be reset on link going
1545 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
1546 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
1547 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
1548 netif_carrier_ok(tp->dev)) {
1549 tg3_readphy(tp, MII_BMSR, &bmsr);
1550 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
1551 !(bmsr & BMSR_LSTATUS))
1557 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
1558 tg3_readphy(tp, MII_BMSR, &bmsr);
1559 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
1560 !(tp->tg3_flags & TG3_FLAG_INIT_COMPLETE))
1563 if (!(bmsr & BMSR_LSTATUS)) {
1564 err = tg3_init_5401phy_dsp(tp);
1568 tg3_readphy(tp, MII_BMSR, &bmsr);
1569 for (i = 0; i < 1000; i++) {
1571 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
1572 (bmsr & BMSR_LSTATUS)) {
1578 if ((tp->phy_id & PHY_ID_REV_MASK) == PHY_REV_BCM5401_B0 &&
1579 !(bmsr & BMSR_LSTATUS) &&
1580 tp->link_config.active_speed == SPEED_1000) {
1581 err = tg3_phy_reset(tp);
1583 err = tg3_init_5401phy_dsp(tp);
1588 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
1589 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
1590 /* 5701 {A0,B0} CRC bug workaround */
1591 tg3_writephy(tp, 0x15, 0x0a75);
1592 tg3_writephy(tp, 0x1c, 0x8c68);
1593 tg3_writephy(tp, 0x1c, 0x8d68);
1594 tg3_writephy(tp, 0x1c, 0x8c68);
1597 /* Clear pending interrupts... */
1598 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
1599 tg3_readphy(tp, MII_TG3_ISTAT, &dummy);
1601 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT)
1602 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
1604 tg3_writephy(tp, MII_TG3_IMASK, ~0);
1606 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
1607 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
1608 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
1609 tg3_writephy(tp, MII_TG3_EXT_CTRL,
1610 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
1612 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
1615 current_link_up = 0;
1616 current_speed = SPEED_INVALID;
1617 current_duplex = DUPLEX_INVALID;
1619 if (tp->tg3_flags2 & TG3_FLG2_CAPACITIVE_COUPLING) {
1622 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4007);
1623 tg3_readphy(tp, MII_TG3_AUX_CTRL, &val);
1624 if (!(val & (1 << 10))) {
1626 tg3_writephy(tp, MII_TG3_AUX_CTRL, val);
1632 for (i = 0; i < 100; i++) {
1633 tg3_readphy(tp, MII_BMSR, &bmsr);
1634 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
1635 (bmsr & BMSR_LSTATUS))
1640 if (bmsr & BMSR_LSTATUS) {
1643 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
1644 for (i = 0; i < 2000; i++) {
1646 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
1651 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
1656 for (i = 0; i < 200; i++) {
1657 tg3_readphy(tp, MII_BMCR, &bmcr);
1658 if (tg3_readphy(tp, MII_BMCR, &bmcr))
1660 if (bmcr && bmcr != 0x7fff)
1665 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
1666 if (bmcr & BMCR_ANENABLE) {
1667 current_link_up = 1;
1669 /* Force autoneg restart if we are exiting
1672 if (!tg3_copper_is_advertising_all(tp))
1673 current_link_up = 0;
1675 current_link_up = 0;
1678 if (!(bmcr & BMCR_ANENABLE) &&
1679 tp->link_config.speed == current_speed &&
1680 tp->link_config.duplex == current_duplex) {
1681 current_link_up = 1;
1683 current_link_up = 0;
1687 tp->link_config.active_speed = current_speed;
1688 tp->link_config.active_duplex = current_duplex;
1691 if (current_link_up == 1 &&
1692 (tp->link_config.active_duplex == DUPLEX_FULL) &&
1693 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
1694 u32 local_adv, remote_adv;
1696 if (tg3_readphy(tp, MII_ADVERTISE, &local_adv))
1698 local_adv &= (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
1700 if (tg3_readphy(tp, MII_LPA, &remote_adv))
1703 remote_adv &= (LPA_PAUSE_CAP | LPA_PAUSE_ASYM);
1705 /* If we are not advertising full pause capability,
1706 * something is wrong. Bring the link down and reconfigure.
1708 if (local_adv != ADVERTISE_PAUSE_CAP) {
1709 current_link_up = 0;
1711 tg3_setup_flow_control(tp, local_adv, remote_adv);
1715 if (current_link_up == 0) {
1718 tg3_phy_copper_begin(tp);
1720 tg3_readphy(tp, MII_BMSR, &tmp);
1721 if (!tg3_readphy(tp, MII_BMSR, &tmp) &&
1722 (tmp & BMSR_LSTATUS))
1723 current_link_up = 1;
1726 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
1727 if (current_link_up == 1) {
1728 if (tp->link_config.active_speed == SPEED_100 ||
1729 tp->link_config.active_speed == SPEED_10)
1730 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
1732 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
1734 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
1736 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
1737 if (tp->link_config.active_duplex == DUPLEX_HALF)
1738 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
1740 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
1741 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
1742 if ((tp->led_ctrl == LED_CTRL_MODE_PHY_2) ||
1743 (current_link_up == 1 &&
1744 tp->link_config.active_speed == SPEED_10))
1745 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
1747 if (current_link_up == 1)
1748 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
1751 /* ??? Without this setting Netgear GA302T PHY does not
1752 * ??? send/receive packets...
1754 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5411 &&
1755 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
1756 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
1757 tw32_f(MAC_MI_MODE, tp->mi_mode);
1761 tw32_f(MAC_MODE, tp->mac_mode);
1764 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
1765 /* Polled via timer. */
1766 tw32_f(MAC_EVENT, 0);
1768 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
1772 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
1773 current_link_up == 1 &&
1774 tp->link_config.active_speed == SPEED_1000 &&
1775 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) ||
1776 (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED))) {
1779 (MAC_STATUS_SYNC_CHANGED |
1780 MAC_STATUS_CFG_CHANGED));
1783 NIC_SRAM_FIRMWARE_MBOX,
1784 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
1787 if (current_link_up != netif_carrier_ok(tp->dev)) {
1788 if (current_link_up)
1789 netif_carrier_on(tp->dev);
1791 netif_carrier_off(tp->dev);
1792 tg3_link_report(tp);
1798 struct tg3_fiber_aneginfo {
1800 #define ANEG_STATE_UNKNOWN 0
1801 #define ANEG_STATE_AN_ENABLE 1
1802 #define ANEG_STATE_RESTART_INIT 2
1803 #define ANEG_STATE_RESTART 3
1804 #define ANEG_STATE_DISABLE_LINK_OK 4
1805 #define ANEG_STATE_ABILITY_DETECT_INIT 5
1806 #define ANEG_STATE_ABILITY_DETECT 6
1807 #define ANEG_STATE_ACK_DETECT_INIT 7
1808 #define ANEG_STATE_ACK_DETECT 8
1809 #define ANEG_STATE_COMPLETE_ACK_INIT 9
1810 #define ANEG_STATE_COMPLETE_ACK 10
1811 #define ANEG_STATE_IDLE_DETECT_INIT 11
1812 #define ANEG_STATE_IDLE_DETECT 12
1813 #define ANEG_STATE_LINK_OK 13
1814 #define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
1815 #define ANEG_STATE_NEXT_PAGE_WAIT 15
1818 #define MR_AN_ENABLE 0x00000001
1819 #define MR_RESTART_AN 0x00000002
1820 #define MR_AN_COMPLETE 0x00000004
1821 #define MR_PAGE_RX 0x00000008
1822 #define MR_NP_LOADED 0x00000010
1823 #define MR_TOGGLE_TX 0x00000020
1824 #define MR_LP_ADV_FULL_DUPLEX 0x00000040
1825 #define MR_LP_ADV_HALF_DUPLEX 0x00000080
1826 #define MR_LP_ADV_SYM_PAUSE 0x00000100
1827 #define MR_LP_ADV_ASYM_PAUSE 0x00000200
1828 #define MR_LP_ADV_REMOTE_FAULT1 0x00000400
1829 #define MR_LP_ADV_REMOTE_FAULT2 0x00000800
1830 #define MR_LP_ADV_NEXT_PAGE 0x00001000
1831 #define MR_TOGGLE_RX 0x00002000
1832 #define MR_NP_RX 0x00004000
1834 #define MR_LINK_OK 0x80000000
1836 unsigned long link_time, cur_time;
1838 u32 ability_match_cfg;
1839 int ability_match_count;
1841 char ability_match, idle_match, ack_match;
1843 u32 txconfig, rxconfig;
1844 #define ANEG_CFG_NP 0x00000080
1845 #define ANEG_CFG_ACK 0x00000040
1846 #define ANEG_CFG_RF2 0x00000020
1847 #define ANEG_CFG_RF1 0x00000010
1848 #define ANEG_CFG_PS2 0x00000001
1849 #define ANEG_CFG_PS1 0x00008000
1850 #define ANEG_CFG_HD 0x00004000
1851 #define ANEG_CFG_FD 0x00002000
1852 #define ANEG_CFG_INVAL 0x00001f06
1857 #define ANEG_TIMER_ENAB 2
1858 #define ANEG_FAILED -1
1860 #define ANEG_STATE_SETTLE_TIME 10000
1862 static int tg3_fiber_aneg_smachine(struct tg3 *tp,
1863 struct tg3_fiber_aneginfo *ap)
1865 unsigned long delta;
1869 if (ap->state == ANEG_STATE_UNKNOWN) {
1873 ap->ability_match_cfg = 0;
1874 ap->ability_match_count = 0;
1875 ap->ability_match = 0;
1881 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
1882 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
1884 if (rx_cfg_reg != ap->ability_match_cfg) {
1885 ap->ability_match_cfg = rx_cfg_reg;
1886 ap->ability_match = 0;
1887 ap->ability_match_count = 0;
1889 if (++ap->ability_match_count > 1) {
1890 ap->ability_match = 1;
1891 ap->ability_match_cfg = rx_cfg_reg;
1894 if (rx_cfg_reg & ANEG_CFG_ACK)
1902 ap->ability_match_cfg = 0;
1903 ap->ability_match_count = 0;
1904 ap->ability_match = 0;
1910 ap->rxconfig = rx_cfg_reg;
1914 case ANEG_STATE_UNKNOWN:
1915 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
1916 ap->state = ANEG_STATE_AN_ENABLE;
1919 case ANEG_STATE_AN_ENABLE:
1920 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
1921 if (ap->flags & MR_AN_ENABLE) {
1924 ap->ability_match_cfg = 0;
1925 ap->ability_match_count = 0;
1926 ap->ability_match = 0;
1930 ap->state = ANEG_STATE_RESTART_INIT;
1932 ap->state = ANEG_STATE_DISABLE_LINK_OK;
1936 case ANEG_STATE_RESTART_INIT:
1937 ap->link_time = ap->cur_time;
1938 ap->flags &= ~(MR_NP_LOADED);
1940 tw32(MAC_TX_AUTO_NEG, 0);
1941 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
1942 tw32_f(MAC_MODE, tp->mac_mode);
1945 ret = ANEG_TIMER_ENAB;
1946 ap->state = ANEG_STATE_RESTART;
1949 case ANEG_STATE_RESTART:
1950 delta = ap->cur_time - ap->link_time;
1951 if (delta > ANEG_STATE_SETTLE_TIME) {
1952 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
1954 ret = ANEG_TIMER_ENAB;
1958 case ANEG_STATE_DISABLE_LINK_OK:
1962 case ANEG_STATE_ABILITY_DETECT_INIT:
1963 ap->flags &= ~(MR_TOGGLE_TX);
1964 ap->txconfig = (ANEG_CFG_FD | ANEG_CFG_PS1);
1965 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
1966 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
1967 tw32_f(MAC_MODE, tp->mac_mode);
1970 ap->state = ANEG_STATE_ABILITY_DETECT;
1973 case ANEG_STATE_ABILITY_DETECT:
1974 if (ap->ability_match != 0 && ap->rxconfig != 0) {
1975 ap->state = ANEG_STATE_ACK_DETECT_INIT;
1979 case ANEG_STATE_ACK_DETECT_INIT:
1980 ap->txconfig |= ANEG_CFG_ACK;
1981 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
1982 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
1983 tw32_f(MAC_MODE, tp->mac_mode);
1986 ap->state = ANEG_STATE_ACK_DETECT;
1989 case ANEG_STATE_ACK_DETECT:
1990 if (ap->ack_match != 0) {
1991 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
1992 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
1993 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
1995 ap->state = ANEG_STATE_AN_ENABLE;
1997 } else if (ap->ability_match != 0 &&
1998 ap->rxconfig == 0) {
1999 ap->state = ANEG_STATE_AN_ENABLE;
2003 case ANEG_STATE_COMPLETE_ACK_INIT:
2004 if (ap->rxconfig & ANEG_CFG_INVAL) {
2008 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
2009 MR_LP_ADV_HALF_DUPLEX |
2010 MR_LP_ADV_SYM_PAUSE |
2011 MR_LP_ADV_ASYM_PAUSE |
2012 MR_LP_ADV_REMOTE_FAULT1 |
2013 MR_LP_ADV_REMOTE_FAULT2 |
2014 MR_LP_ADV_NEXT_PAGE |
2017 if (ap->rxconfig & ANEG_CFG_FD)
2018 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
2019 if (ap->rxconfig & ANEG_CFG_HD)
2020 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
2021 if (ap->rxconfig & ANEG_CFG_PS1)
2022 ap->flags |= MR_LP_ADV_SYM_PAUSE;
2023 if (ap->rxconfig & ANEG_CFG_PS2)
2024 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
2025 if (ap->rxconfig & ANEG_CFG_RF1)
2026 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
2027 if (ap->rxconfig & ANEG_CFG_RF2)
2028 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
2029 if (ap->rxconfig & ANEG_CFG_NP)
2030 ap->flags |= MR_LP_ADV_NEXT_PAGE;
2032 ap->link_time = ap->cur_time;
2034 ap->flags ^= (MR_TOGGLE_TX);
2035 if (ap->rxconfig & 0x0008)
2036 ap->flags |= MR_TOGGLE_RX;
2037 if (ap->rxconfig & ANEG_CFG_NP)
2038 ap->flags |= MR_NP_RX;
2039 ap->flags |= MR_PAGE_RX;
2041 ap->state = ANEG_STATE_COMPLETE_ACK;
2042 ret = ANEG_TIMER_ENAB;
2045 case ANEG_STATE_COMPLETE_ACK:
2046 if (ap->ability_match != 0 &&
2047 ap->rxconfig == 0) {
2048 ap->state = ANEG_STATE_AN_ENABLE;
2051 delta = ap->cur_time - ap->link_time;
2052 if (delta > ANEG_STATE_SETTLE_TIME) {
2053 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
2054 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
2056 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
2057 !(ap->flags & MR_NP_RX)) {
2058 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
2066 case ANEG_STATE_IDLE_DETECT_INIT:
2067 ap->link_time = ap->cur_time;
2068 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
2069 tw32_f(MAC_MODE, tp->mac_mode);
2072 ap->state = ANEG_STATE_IDLE_DETECT;
2073 ret = ANEG_TIMER_ENAB;
2076 case ANEG_STATE_IDLE_DETECT:
2077 if (ap->ability_match != 0 &&
2078 ap->rxconfig == 0) {
2079 ap->state = ANEG_STATE_AN_ENABLE;
2082 delta = ap->cur_time - ap->link_time;
2083 if (delta > ANEG_STATE_SETTLE_TIME) {
2084 /* XXX another gem from the Broadcom driver :( */
2085 ap->state = ANEG_STATE_LINK_OK;
2089 case ANEG_STATE_LINK_OK:
2090 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
2094 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
2095 /* ??? unimplemented */
2098 case ANEG_STATE_NEXT_PAGE_WAIT:
2099 /* ??? unimplemented */
2110 static int fiber_autoneg(struct tg3 *tp, u32 *flags)
2113 struct tg3_fiber_aneginfo aninfo;
2114 int status = ANEG_FAILED;
2118 tw32_f(MAC_TX_AUTO_NEG, 0);
2120 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
2121 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
2124 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
2127 memset(&aninfo, 0, sizeof(aninfo));
2128 aninfo.flags |= MR_AN_ENABLE;
2129 aninfo.state = ANEG_STATE_UNKNOWN;
2130 aninfo.cur_time = 0;
2132 while (++tick < 195000) {
2133 status = tg3_fiber_aneg_smachine(tp, &aninfo);
2134 if (status == ANEG_DONE || status == ANEG_FAILED)
2140 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
2141 tw32_f(MAC_MODE, tp->mac_mode);
2144 *flags = aninfo.flags;
2146 if (status == ANEG_DONE &&
2147 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
2148 MR_LP_ADV_FULL_DUPLEX)))
2154 static void tg3_init_bcm8002(struct tg3 *tp)
2156 u32 mac_status = tr32(MAC_STATUS);
2159 /* Reset when initting first time or we have a link. */
2160 if ((tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) &&
2161 !(mac_status & MAC_STATUS_PCS_SYNCED))
2164 /* Set PLL lock range. */
2165 tg3_writephy(tp, 0x16, 0x8007);
2168 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
2170 /* Wait for reset to complete. */
2171 /* XXX schedule_timeout() ... */
2172 for (i = 0; i < 500; i++)
2175 /* Config mode; select PMA/Ch 1 regs. */
2176 tg3_writephy(tp, 0x10, 0x8411);
2178 /* Enable auto-lock and comdet, select txclk for tx. */
2179 tg3_writephy(tp, 0x11, 0x0a10);
2181 tg3_writephy(tp, 0x18, 0x00a0);
2182 tg3_writephy(tp, 0x16, 0x41ff);
2184 /* Assert and deassert POR. */
2185 tg3_writephy(tp, 0x13, 0x0400);
2187 tg3_writephy(tp, 0x13, 0x0000);
2189 tg3_writephy(tp, 0x11, 0x0a50);
2191 tg3_writephy(tp, 0x11, 0x0a10);
2193 /* Wait for signal to stabilize */
2194 /* XXX schedule_timeout() ... */
2195 for (i = 0; i < 15000; i++)
2198 /* Deselect the channel register so we can read the PHYID
2201 tg3_writephy(tp, 0x10, 0x8011);
2204 static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
2206 u32 sg_dig_ctrl, sg_dig_status;
2207 u32 serdes_cfg, expected_sg_dig_ctrl;
2208 int workaround, port_a;
2209 int current_link_up;
2212 expected_sg_dig_ctrl = 0;
2215 current_link_up = 0;
2217 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
2218 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
2220 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
2223 /* preserve bits 0-11,13,14 for signal pre-emphasis */
2224 /* preserve bits 20-23 for voltage regulator */
2225 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
2228 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2230 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
2231 if (sg_dig_ctrl & (1 << 31)) {
2233 u32 val = serdes_cfg;
2239 tw32_f(MAC_SERDES_CFG, val);
2241 tw32_f(SG_DIG_CTRL, 0x01388400);
2243 if (mac_status & MAC_STATUS_PCS_SYNCED) {
2244 tg3_setup_flow_control(tp, 0, 0);
2245 current_link_up = 1;
2250 /* Want auto-negotiation. */
2251 expected_sg_dig_ctrl = 0x81388400;
2253 /* Pause capability */
2254 expected_sg_dig_ctrl |= (1 << 11);
2256 /* Asymettric pause */
2257 expected_sg_dig_ctrl |= (1 << 12);
2259 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
2261 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
2262 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | (1 << 30));
2264 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
2266 tp->tg3_flags2 |= TG3_FLG2_PHY_JUST_INITTED;
2267 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
2268 MAC_STATUS_SIGNAL_DET)) {
2271 /* Giver time to negotiate (~200ms) */
2272 for (i = 0; i < 40000; i++) {
2273 sg_dig_status = tr32(SG_DIG_STATUS);
2274 if (sg_dig_status & (0x3))
2278 mac_status = tr32(MAC_STATUS);
2280 if ((sg_dig_status & (1 << 1)) &&
2281 (mac_status & MAC_STATUS_PCS_SYNCED)) {
2282 u32 local_adv, remote_adv;
2284 local_adv = ADVERTISE_PAUSE_CAP;
2286 if (sg_dig_status & (1 << 19))
2287 remote_adv |= LPA_PAUSE_CAP;
2288 if (sg_dig_status & (1 << 20))
2289 remote_adv |= LPA_PAUSE_ASYM;
2291 tg3_setup_flow_control(tp, local_adv, remote_adv);
2292 current_link_up = 1;
2293 tp->tg3_flags2 &= ~TG3_FLG2_PHY_JUST_INITTED;
2294 } else if (!(sg_dig_status & (1 << 1))) {
2295 if (tp->tg3_flags2 & TG3_FLG2_PHY_JUST_INITTED)
2296 tp->tg3_flags2 &= ~TG3_FLG2_PHY_JUST_INITTED;
2299 u32 val = serdes_cfg;
2306 tw32_f(MAC_SERDES_CFG, val);
2309 tw32_f(SG_DIG_CTRL, 0x01388400);
2312 /* Link parallel detection - link is up */
2313 /* only if we have PCS_SYNC and not */
2314 /* receiving config code words */
2315 mac_status = tr32(MAC_STATUS);
2316 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
2317 !(mac_status & MAC_STATUS_RCVD_CFG)) {
2318 tg3_setup_flow_control(tp, 0, 0);
2319 current_link_up = 1;
2326 return current_link_up;
2329 static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
2331 int current_link_up = 0;
2333 if (!(mac_status & MAC_STATUS_PCS_SYNCED)) {
2334 tp->tg3_flags &= ~TG3_FLAG_GOT_SERDES_FLOWCTL;
2338 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
2342 if (fiber_autoneg(tp, &flags)) {
2343 u32 local_adv, remote_adv;
2345 local_adv = ADVERTISE_PAUSE_CAP;
2347 if (flags & MR_LP_ADV_SYM_PAUSE)
2348 remote_adv |= LPA_PAUSE_CAP;
2349 if (flags & MR_LP_ADV_ASYM_PAUSE)
2350 remote_adv |= LPA_PAUSE_ASYM;
2352 tg3_setup_flow_control(tp, local_adv, remote_adv);
2354 tp->tg3_flags |= TG3_FLAG_GOT_SERDES_FLOWCTL;
2355 current_link_up = 1;
2357 for (i = 0; i < 30; i++) {
2360 (MAC_STATUS_SYNC_CHANGED |
2361 MAC_STATUS_CFG_CHANGED));
2363 if ((tr32(MAC_STATUS) &
2364 (MAC_STATUS_SYNC_CHANGED |
2365 MAC_STATUS_CFG_CHANGED)) == 0)
2369 mac_status = tr32(MAC_STATUS);
2370 if (current_link_up == 0 &&
2371 (mac_status & MAC_STATUS_PCS_SYNCED) &&
2372 !(mac_status & MAC_STATUS_RCVD_CFG))
2373 current_link_up = 1;
2375 /* Forcing 1000FD link up. */
2376 current_link_up = 1;
2377 tp->tg3_flags |= TG3_FLAG_GOT_SERDES_FLOWCTL;
2379 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
2384 return current_link_up;
2387 static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
2390 u16 orig_active_speed;
2391 u8 orig_active_duplex;
2393 int current_link_up;
2397 (tp->tg3_flags & (TG3_FLAG_RX_PAUSE |
2398 TG3_FLAG_TX_PAUSE));
2399 orig_active_speed = tp->link_config.active_speed;
2400 orig_active_duplex = tp->link_config.active_duplex;
2402 if (!(tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG) &&
2403 netif_carrier_ok(tp->dev) &&
2404 (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE)) {
2405 mac_status = tr32(MAC_STATUS);
2406 mac_status &= (MAC_STATUS_PCS_SYNCED |
2407 MAC_STATUS_SIGNAL_DET |
2408 MAC_STATUS_CFG_CHANGED |
2409 MAC_STATUS_RCVD_CFG);
2410 if (mac_status == (MAC_STATUS_PCS_SYNCED |
2411 MAC_STATUS_SIGNAL_DET)) {
2412 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
2413 MAC_STATUS_CFG_CHANGED));
2418 tw32_f(MAC_TX_AUTO_NEG, 0);
2420 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
2421 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
2422 tw32_f(MAC_MODE, tp->mac_mode);
2425 if (tp->phy_id == PHY_ID_BCM8002)
2426 tg3_init_bcm8002(tp);
2428 /* Enable link change event even when serdes polling. */
2429 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
2432 current_link_up = 0;
2433 mac_status = tr32(MAC_STATUS);
2435 if (tp->tg3_flags2 & TG3_FLG2_HW_AUTONEG)
2436 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
2438 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
2440 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
2441 tw32_f(MAC_MODE, tp->mac_mode);
2444 tp->hw_status->status =
2445 (SD_STATUS_UPDATED |
2446 (tp->hw_status->status & ~SD_STATUS_LINK_CHG));
2448 for (i = 0; i < 100; i++) {
2449 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
2450 MAC_STATUS_CFG_CHANGED));
2452 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
2453 MAC_STATUS_CFG_CHANGED)) == 0)
2457 mac_status = tr32(MAC_STATUS);
2458 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
2459 current_link_up = 0;
2460 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
2461 tw32_f(MAC_MODE, (tp->mac_mode |
2462 MAC_MODE_SEND_CONFIGS));
2464 tw32_f(MAC_MODE, tp->mac_mode);
2468 if (current_link_up == 1) {
2469 tp->link_config.active_speed = SPEED_1000;
2470 tp->link_config.active_duplex = DUPLEX_FULL;
2471 tw32(MAC_LED_CTRL, (tp->led_ctrl |
2472 LED_CTRL_LNKLED_OVERRIDE |
2473 LED_CTRL_1000MBPS_ON));
2475 tp->link_config.active_speed = SPEED_INVALID;
2476 tp->link_config.active_duplex = DUPLEX_INVALID;
2477 tw32(MAC_LED_CTRL, (tp->led_ctrl |
2478 LED_CTRL_LNKLED_OVERRIDE |
2479 LED_CTRL_TRAFFIC_OVERRIDE));
2482 if (current_link_up != netif_carrier_ok(tp->dev)) {
2483 if (current_link_up)
2484 netif_carrier_on(tp->dev);
2486 netif_carrier_off(tp->dev);
2487 tg3_link_report(tp);
2490 tp->tg3_flags & (TG3_FLAG_RX_PAUSE |
2492 if (orig_pause_cfg != now_pause_cfg ||
2493 orig_active_speed != tp->link_config.active_speed ||
2494 orig_active_duplex != tp->link_config.active_duplex)
2495 tg3_link_report(tp);
2501 static int tg3_setup_phy(struct tg3 *tp, int force_reset)
2505 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
2506 err = tg3_setup_fiber_phy(tp, force_reset);
2508 err = tg3_setup_copper_phy(tp, force_reset);
2511 if (tp->link_config.active_speed == SPEED_1000 &&
2512 tp->link_config.active_duplex == DUPLEX_HALF)
2513 tw32(MAC_TX_LENGTHS,
2514 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2515 (6 << TX_LENGTHS_IPG_SHIFT) |
2516 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
2518 tw32(MAC_TX_LENGTHS,
2519 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2520 (6 << TX_LENGTHS_IPG_SHIFT) |
2521 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
2523 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
2524 if (netif_carrier_ok(tp->dev)) {
2525 tw32(HOSTCC_STAT_COAL_TICKS,
2526 tp->coal.stats_block_coalesce_usecs);
2528 tw32(HOSTCC_STAT_COAL_TICKS, 0);
2535 /* Tigon3 never reports partial packet sends. So we do not
2536 * need special logic to handle SKBs that have not had all
2537 * of their frags sent yet, like SunGEM does.
2539 static void tg3_tx(struct tg3 *tp)
2541 u32 hw_idx = tp->hw_status->idx[0].tx_consumer;
2542 u32 sw_idx = tp->tx_cons;
2544 while (sw_idx != hw_idx) {
2545 struct tx_ring_info *ri = &tp->tx_buffers[sw_idx];
2546 struct sk_buff *skb = ri->skb;
2549 if (unlikely(skb == NULL))
2552 pci_unmap_single(tp->pdev,
2553 pci_unmap_addr(ri, mapping),
2559 sw_idx = NEXT_TX(sw_idx);
2561 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2562 if (unlikely(sw_idx == hw_idx))
2565 ri = &tp->tx_buffers[sw_idx];
2566 if (unlikely(ri->skb != NULL))
2569 pci_unmap_page(tp->pdev,
2570 pci_unmap_addr(ri, mapping),
2571 skb_shinfo(skb)->frags[i].size,
2574 sw_idx = NEXT_TX(sw_idx);
2580 tp->tx_cons = sw_idx;
2582 if (netif_queue_stopped(tp->dev) &&
2583 (TX_BUFFS_AVAIL(tp) > TG3_TX_WAKEUP_THRESH))
2584 netif_wake_queue(tp->dev);
2587 /* Returns size of skb allocated or < 0 on error.
2589 * We only need to fill in the address because the other members
2590 * of the RX descriptor are invariant, see tg3_init_rings.
2592 * Note the purposeful assymetry of cpu vs. chip accesses. For
2593 * posting buffers we only dirty the first cache line of the RX
2594 * descriptor (containing the address). Whereas for the RX status
2595 * buffers the cpu only reads the last cacheline of the RX descriptor
2596 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
2598 static int tg3_alloc_rx_skb(struct tg3 *tp, u32 opaque_key,
2599 int src_idx, u32 dest_idx_unmasked)
2601 struct tg3_rx_buffer_desc *desc;
2602 struct ring_info *map, *src_map;
2603 struct sk_buff *skb;
2605 int skb_size, dest_idx;
2608 switch (opaque_key) {
2609 case RXD_OPAQUE_RING_STD:
2610 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
2611 desc = &tp->rx_std[dest_idx];
2612 map = &tp->rx_std_buffers[dest_idx];
2614 src_map = &tp->rx_std_buffers[src_idx];
2615 skb_size = RX_PKT_BUF_SZ;
2618 case RXD_OPAQUE_RING_JUMBO:
2619 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
2620 desc = &tp->rx_jumbo[dest_idx];
2621 map = &tp->rx_jumbo_buffers[dest_idx];
2623 src_map = &tp->rx_jumbo_buffers[src_idx];
2624 skb_size = RX_JUMBO_PKT_BUF_SZ;
2631 /* Do not overwrite any of the map or rp information
2632 * until we are sure we can commit to a new buffer.
2634 * Callers depend upon this behavior and assume that
2635 * we leave everything unchanged if we fail.
2637 skb = dev_alloc_skb(skb_size);
2642 skb_reserve(skb, tp->rx_offset);
2644 mapping = pci_map_single(tp->pdev, skb->data,
2645 skb_size - tp->rx_offset,
2646 PCI_DMA_FROMDEVICE);
2649 pci_unmap_addr_set(map, mapping, mapping);
2651 if (src_map != NULL)
2652 src_map->skb = NULL;
2654 desc->addr_hi = ((u64)mapping >> 32);
2655 desc->addr_lo = ((u64)mapping & 0xffffffff);
2660 /* We only need to move over in the address because the other
2661 * members of the RX descriptor are invariant. See notes above
2662 * tg3_alloc_rx_skb for full details.
2664 static void tg3_recycle_rx(struct tg3 *tp, u32 opaque_key,
2665 int src_idx, u32 dest_idx_unmasked)
2667 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
2668 struct ring_info *src_map, *dest_map;
2671 switch (opaque_key) {
2672 case RXD_OPAQUE_RING_STD:
2673 dest_idx = dest_idx_unmasked % TG3_RX_RING_SIZE;
2674 dest_desc = &tp->rx_std[dest_idx];
2675 dest_map = &tp->rx_std_buffers[dest_idx];
2676 src_desc = &tp->rx_std[src_idx];
2677 src_map = &tp->rx_std_buffers[src_idx];
2680 case RXD_OPAQUE_RING_JUMBO:
2681 dest_idx = dest_idx_unmasked % TG3_RX_JUMBO_RING_SIZE;
2682 dest_desc = &tp->rx_jumbo[dest_idx];
2683 dest_map = &tp->rx_jumbo_buffers[dest_idx];
2684 src_desc = &tp->rx_jumbo[src_idx];
2685 src_map = &tp->rx_jumbo_buffers[src_idx];
2692 dest_map->skb = src_map->skb;
2693 pci_unmap_addr_set(dest_map, mapping,
2694 pci_unmap_addr(src_map, mapping));
2695 dest_desc->addr_hi = src_desc->addr_hi;
2696 dest_desc->addr_lo = src_desc->addr_lo;
2698 src_map->skb = NULL;
2701 #if TG3_VLAN_TAG_USED
2702 static int tg3_vlan_rx(struct tg3 *tp, struct sk_buff *skb, u16 vlan_tag)
2704 return vlan_hwaccel_receive_skb(skb, tp->vlgrp, vlan_tag);
2708 /* The RX ring scheme is composed of multiple rings which post fresh
2709 * buffers to the chip, and one special ring the chip uses to report
2710 * status back to the host.
2712 * The special ring reports the status of received packets to the
2713 * host. The chip does not write into the original descriptor the
2714 * RX buffer was obtained from. The chip simply takes the original
2715 * descriptor as provided by the host, updates the status and length
2716 * field, then writes this into the next status ring entry.
2718 * Each ring the host uses to post buffers to the chip is described
2719 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
2720 * it is first placed into the on-chip ram. When the packet's length
2721 * is known, it walks down the TG3_BDINFO entries to select the ring.
2722 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
2723 * which is within the range of the new packet's length is chosen.
2725 * The "separate ring for rx status" scheme may sound queer, but it makes
2726 * sense from a cache coherency perspective. If only the host writes
2727 * to the buffer post rings, and only the chip writes to the rx status
2728 * rings, then cache lines never move beyond shared-modified state.
2729 * If both the host and chip were to write into the same ring, cache line
2730 * eviction could occur since both entities want it in an exclusive state.
2732 static int tg3_rx(struct tg3 *tp, int budget)
2735 u32 sw_idx = tp->rx_rcb_ptr;
2739 hw_idx = tp->hw_status->idx[0].rx_producer;
2741 * We need to order the read of hw_idx and the read of
2742 * the opaque cookie.
2747 while (sw_idx != hw_idx && budget > 0) {
2748 struct tg3_rx_buffer_desc *desc = &tp->rx_rcb[sw_idx];
2750 struct sk_buff *skb;
2751 dma_addr_t dma_addr;
2752 u32 opaque_key, desc_idx, *post_ptr;
2754 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
2755 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
2756 if (opaque_key == RXD_OPAQUE_RING_STD) {
2757 dma_addr = pci_unmap_addr(&tp->rx_std_buffers[desc_idx],
2759 skb = tp->rx_std_buffers[desc_idx].skb;
2760 post_ptr = &tp->rx_std_ptr;
2761 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
2762 dma_addr = pci_unmap_addr(&tp->rx_jumbo_buffers[desc_idx],
2764 skb = tp->rx_jumbo_buffers[desc_idx].skb;
2765 post_ptr = &tp->rx_jumbo_ptr;
2768 goto next_pkt_nopost;
2771 work_mask |= opaque_key;
2773 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
2774 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
2776 tg3_recycle_rx(tp, opaque_key,
2777 desc_idx, *post_ptr);
2779 /* Other statistics kept track of by card. */
2780 tp->net_stats.rx_dropped++;
2784 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) - 4; /* omit crc */
2786 if (len > RX_COPY_THRESHOLD
2787 && tp->rx_offset == 2
2788 /* rx_offset != 2 iff this is a 5701 card running
2789 * in PCI-X mode [see tg3_get_invariants()] */
2793 skb_size = tg3_alloc_rx_skb(tp, opaque_key,
2794 desc_idx, *post_ptr);
2798 pci_unmap_single(tp->pdev, dma_addr,
2799 skb_size - tp->rx_offset,
2800 PCI_DMA_FROMDEVICE);
2804 struct sk_buff *copy_skb;
2806 tg3_recycle_rx(tp, opaque_key,
2807 desc_idx, *post_ptr);
2809 copy_skb = dev_alloc_skb(len + 2);
2810 if (copy_skb == NULL)
2811 goto drop_it_no_recycle;
2813 copy_skb->dev = tp->dev;
2814 skb_reserve(copy_skb, 2);
2815 skb_put(copy_skb, len);
2816 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
2817 memcpy(copy_skb->data, skb->data, len);
2818 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
2820 /* We'll reuse the original ring buffer. */
2824 if ((tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) &&
2825 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
2826 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
2827 >> RXD_TCPCSUM_SHIFT) == 0xffff))
2828 skb->ip_summed = CHECKSUM_UNNECESSARY;
2830 skb->ip_summed = CHECKSUM_NONE;
2832 skb->protocol = eth_type_trans(skb, tp->dev);
2833 #if TG3_VLAN_TAG_USED
2834 if (tp->vlgrp != NULL &&
2835 desc->type_flags & RXD_FLAG_VLAN) {
2836 tg3_vlan_rx(tp, skb,
2837 desc->err_vlan & RXD_VLAN_MASK);
2840 netif_receive_skb(skb);
2842 tp->dev->last_rx = jiffies;
2850 sw_idx %= TG3_RX_RCB_RING_SIZE(tp);
2852 /* Refresh hw_idx to see if there is new work */
2853 if (sw_idx == hw_idx) {
2854 hw_idx = tp->hw_status->idx[0].rx_producer;
2859 /* ACK the status ring. */
2860 tp->rx_rcb_ptr = sw_idx;
2861 tw32_rx_mbox(MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW, sw_idx);
2863 /* Refill RX ring(s). */
2864 if (work_mask & RXD_OPAQUE_RING_STD) {
2865 sw_idx = tp->rx_std_ptr % TG3_RX_RING_SIZE;
2866 tw32_rx_mbox(MAILBOX_RCV_STD_PROD_IDX + TG3_64BIT_REG_LOW,
2869 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
2870 sw_idx = tp->rx_jumbo_ptr % TG3_RX_JUMBO_RING_SIZE;
2871 tw32_rx_mbox(MAILBOX_RCV_JUMBO_PROD_IDX + TG3_64BIT_REG_LOW,
2879 static int tg3_poll(struct net_device *netdev, int *budget)
2881 struct tg3 *tp = netdev_priv(netdev);
2882 struct tg3_hw_status *sblk = tp->hw_status;
2885 /* handle link change and other phy events */
2886 if (!(tp->tg3_flags &
2887 (TG3_FLAG_USE_LINKCHG_REG |
2888 TG3_FLAG_POLL_SERDES))) {
2889 if (sblk->status & SD_STATUS_LINK_CHG) {
2890 sblk->status = SD_STATUS_UPDATED |
2891 (sblk->status & ~SD_STATUS_LINK_CHG);
2892 spin_lock(&tp->lock);
2893 tg3_setup_phy(tp, 0);
2894 spin_unlock(&tp->lock);
2898 /* run TX completion thread */
2899 if (sblk->idx[0].tx_consumer != tp->tx_cons) {
2900 spin_lock(&tp->tx_lock);
2902 spin_unlock(&tp->tx_lock);
2905 /* run RX thread, within the bounds set by NAPI.
2906 * All RX "locking" is done by ensuring outside
2907 * code synchronizes with dev->poll()
2909 if (sblk->idx[0].rx_producer != tp->rx_rcb_ptr) {
2910 int orig_budget = *budget;
2913 if (orig_budget > netdev->quota)
2914 orig_budget = netdev->quota;
2916 work_done = tg3_rx(tp, orig_budget);
2918 *budget -= work_done;
2919 netdev->quota -= work_done;
2922 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
2923 tp->last_tag = sblk->status_tag;
2925 sblk->status &= ~SD_STATUS_UPDATED;
2927 /* if no more work, tell net stack and NIC we're done */
2928 done = !tg3_has_work(tp);
2930 spin_lock(&tp->lock);
2931 netif_rx_complete(netdev);
2932 tg3_restart_ints(tp);
2933 spin_unlock(&tp->lock);
2936 return (done ? 0 : 1);
2939 static void tg3_irq_quiesce(struct tg3 *tp)
2941 BUG_ON(tp->irq_sync);
2946 synchronize_irq(tp->pdev->irq);
2949 static inline int tg3_irq_sync(struct tg3 *tp)
2951 return tp->irq_sync;
2954 /* Fully shutdown all tg3 driver activity elsewhere in the system.
2955 * If irq_sync is non-zero, then the IRQ handler must be synchronized
2956 * with as well. Most of the time, this is not necessary except when
2957 * shutting down the device.
2959 static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
2962 tg3_irq_quiesce(tp);
2963 spin_lock_bh(&tp->lock);
2964 spin_lock(&tp->tx_lock);
2967 static inline void tg3_full_unlock(struct tg3 *tp)
2969 spin_unlock(&tp->tx_lock);
2970 spin_unlock_bh(&tp->lock);
2973 /* MSI ISR - No need to check for interrupt sharing and no need to
2974 * flush status block and interrupt mailbox. PCI ordering rules
2975 * guarantee that MSI will arrive after the status block.
2977 static irqreturn_t tg3_msi(int irq, void *dev_id, struct pt_regs *regs)
2979 struct net_device *dev = dev_id;
2980 struct tg3 *tp = netdev_priv(dev);
2981 struct tg3_hw_status *sblk = tp->hw_status;
2984 * Writing any value to intr-mbox-0 clears PCI INTA# and
2985 * chip-internal interrupt pending events.
2986 * Writing non-zero to intr-mbox-0 additional tells the
2987 * NIC to stop sending us irqs, engaging "in-intr-handler"
2990 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
2991 tp->last_tag = sblk->status_tag;
2993 if (tg3_irq_sync(tp))
2995 sblk->status &= ~SD_STATUS_UPDATED;
2996 if (likely(tg3_has_work(tp)))
2997 netif_rx_schedule(dev); /* schedule NAPI poll */
2999 /* No work, re-enable interrupts. */
3000 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
3001 tp->last_tag << 24);
3004 return IRQ_RETVAL(1);
3007 static irqreturn_t tg3_interrupt(int irq, void *dev_id, struct pt_regs *regs)
3009 struct net_device *dev = dev_id;
3010 struct tg3 *tp = netdev_priv(dev);
3011 struct tg3_hw_status *sblk = tp->hw_status;
3012 unsigned int handled = 1;
3014 /* In INTx mode, it is possible for the interrupt to arrive at
3015 * the CPU before the status block posted prior to the interrupt.
3016 * Reading the PCI State register will confirm whether the
3017 * interrupt is ours and will flush the status block.
3019 if ((sblk->status & SD_STATUS_UPDATED) ||
3020 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
3022 * Writing any value to intr-mbox-0 clears PCI INTA# and
3023 * chip-internal interrupt pending events.
3024 * Writing non-zero to intr-mbox-0 additional tells the
3025 * NIC to stop sending us irqs, engaging "in-intr-handler"
3028 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
3030 if (tg3_irq_sync(tp))
3032 sblk->status &= ~SD_STATUS_UPDATED;
3033 if (likely(tg3_has_work(tp)))
3034 netif_rx_schedule(dev); /* schedule NAPI poll */
3036 /* No work, shared interrupt perhaps? re-enable
3037 * interrupts, and flush that PCI write
3039 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
3041 tr32(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW);
3043 } else { /* shared interrupt */
3047 return IRQ_RETVAL(handled);
3050 static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id, struct pt_regs *regs)
3052 struct net_device *dev = dev_id;
3053 struct tg3 *tp = netdev_priv(dev);
3054 struct tg3_hw_status *sblk = tp->hw_status;
3055 unsigned int handled = 1;
3057 /* In INTx mode, it is possible for the interrupt to arrive at
3058 * the CPU before the status block posted prior to the interrupt.
3059 * Reading the PCI State register will confirm whether the
3060 * interrupt is ours and will flush the status block.
3062 if ((sblk->status & SD_STATUS_UPDATED) ||
3063 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
3065 * writing any value to intr-mbox-0 clears PCI INTA# and
3066 * chip-internal interrupt pending events.
3067 * writing non-zero to intr-mbox-0 additional tells the
3068 * NIC to stop sending us irqs, engaging "in-intr-handler"
3071 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
3073 tp->last_tag = sblk->status_tag;
3075 if (tg3_irq_sync(tp))
3077 sblk->status &= ~SD_STATUS_UPDATED;
3078 if (likely(tg3_has_work(tp)))
3079 netif_rx_schedule(dev); /* schedule NAPI poll */
3081 /* no work, shared interrupt perhaps? re-enable
3082 * interrupts, and flush that PCI write
3084 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
3085 tp->last_tag << 24);
3086 tr32(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW);
3088 } else { /* shared interrupt */
3092 return IRQ_RETVAL(handled);
3095 /* ISR for interrupt test */
3096 static irqreturn_t tg3_test_isr(int irq, void *dev_id,
3097 struct pt_regs *regs)
3099 struct net_device *dev = dev_id;
3100 struct tg3 *tp = netdev_priv(dev);
3101 struct tg3_hw_status *sblk = tp->hw_status;
3103 if (sblk->status & SD_STATUS_UPDATED) {
3104 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
3106 return IRQ_RETVAL(1);
3108 return IRQ_RETVAL(0);
3111 static int tg3_init_hw(struct tg3 *);
3112 static int tg3_halt(struct tg3 *, int, int);
3114 #ifdef CONFIG_NET_POLL_CONTROLLER
3115 static void tg3_poll_controller(struct net_device *dev)
3117 struct tg3 *tp = netdev_priv(dev);
3119 tg3_interrupt(tp->pdev->irq, dev, NULL);
3123 static void tg3_reset_task(void *_data)
3125 struct tg3 *tp = _data;
3126 unsigned int restart_timer;
3130 tg3_full_lock(tp, 1);
3132 restart_timer = tp->tg3_flags2 & TG3_FLG2_RESTART_TIMER;
3133 tp->tg3_flags2 &= ~TG3_FLG2_RESTART_TIMER;
3135 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
3138 tg3_netif_start(tp);
3140 tg3_full_unlock(tp);
3143 mod_timer(&tp->timer, jiffies + 1);
3146 static void tg3_tx_timeout(struct net_device *dev)
3148 struct tg3 *tp = netdev_priv(dev);
3150 printk(KERN_ERR PFX "%s: transmit timed out, resetting\n",
3153 schedule_work(&tp->reset_task);
3156 static void tg3_set_txd(struct tg3 *, int, dma_addr_t, int, u32, u32);
3158 static int tigon3_4gb_hwbug_workaround(struct tg3 *tp, struct sk_buff *skb,
3159 u32 guilty_entry, int guilty_len,
3160 u32 last_plus_one, u32 *start, u32 mss)
3162 struct sk_buff *new_skb = skb_copy(skb, GFP_ATOMIC);
3163 dma_addr_t new_addr;
3172 /* New SKB is guaranteed to be linear. */
3174 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
3176 tg3_set_txd(tp, entry, new_addr, new_skb->len,
3177 (skb->ip_summed == CHECKSUM_HW) ?
3178 TXD_FLAG_TCPUDP_CSUM : 0, 1 | (mss << 1));
3179 *start = NEXT_TX(entry);
3181 /* Now clean up the sw ring entries. */
3183 while (entry != last_plus_one) {
3187 len = skb_headlen(skb);
3189 len = skb_shinfo(skb)->frags[i-1].size;
3190 pci_unmap_single(tp->pdev,
3191 pci_unmap_addr(&tp->tx_buffers[entry], mapping),
3192 len, PCI_DMA_TODEVICE);
3194 tp->tx_buffers[entry].skb = new_skb;
3195 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, new_addr);
3197 tp->tx_buffers[entry].skb = NULL;
3199 entry = NEXT_TX(entry);
3208 static void tg3_set_txd(struct tg3 *tp, int entry,
3209 dma_addr_t mapping, int len, u32 flags,
3212 struct tg3_tx_buffer_desc *txd = &tp->tx_ring[entry];
3213 int is_end = (mss_and_is_end & 0x1);
3214 u32 mss = (mss_and_is_end >> 1);
3218 flags |= TXD_FLAG_END;
3219 if (flags & TXD_FLAG_VLAN) {
3220 vlan_tag = flags >> 16;
3223 vlan_tag |= (mss << TXD_MSS_SHIFT);
3225 txd->addr_hi = ((u64) mapping >> 32);
3226 txd->addr_lo = ((u64) mapping & 0xffffffff);
3227 txd->len_flags = (len << TXD_LEN_SHIFT) | flags;
3228 txd->vlan_tag = vlan_tag << TXD_VLAN_TAG_SHIFT;
3231 static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
3233 u32 base = (u32) mapping & 0xffffffff;
3235 return ((base > 0xffffdcc0) &&
3236 (base + len + 8 < base));
3239 static int tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
3241 struct tg3 *tp = netdev_priv(dev);
3244 u32 len, entry, base_flags, mss;
3245 int would_hit_hwbug;
3247 len = skb_headlen(skb);
3249 /* No BH disabling for tx_lock here. We are running in BH disabled
3250 * context and TX reclaim runs via tp->poll inside of a software
3251 * interrupt. Furthermore, IRQ processing runs lockless so we have
3252 * no IRQ context deadlocks to worry about either. Rejoice!
3254 if (!spin_trylock(&tp->tx_lock))
3255 return NETDEV_TX_LOCKED;
3257 /* This is a hard error, log it. */
3258 if (unlikely(TX_BUFFS_AVAIL(tp) <= (skb_shinfo(skb)->nr_frags + 1))) {
3259 netif_stop_queue(dev);
3260 spin_unlock(&tp->tx_lock);
3261 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when queue awake!\n",
3263 return NETDEV_TX_BUSY;
3266 entry = tp->tx_prod;
3268 if (skb->ip_summed == CHECKSUM_HW)
3269 base_flags |= TXD_FLAG_TCPUDP_CSUM;
3270 #if TG3_TSO_SUPPORT != 0
3272 if (skb->len > (tp->dev->mtu + ETH_HLEN) &&
3273 (mss = skb_shinfo(skb)->tso_size) != 0) {
3274 int tcp_opt_len, ip_tcp_len;
3276 if (skb_header_cloned(skb) &&
3277 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
3282 tcp_opt_len = ((skb->h.th->doff - 5) * 4);
3283 ip_tcp_len = (skb->nh.iph->ihl * 4) + sizeof(struct tcphdr);
3285 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
3286 TXD_FLAG_CPU_POST_DMA);
3288 skb->nh.iph->check = 0;
3289 skb->nh.iph->tot_len = ntohs(mss + ip_tcp_len + tcp_opt_len);
3290 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
3291 skb->h.th->check = 0;
3292 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
3296 ~csum_tcpudp_magic(skb->nh.iph->saddr,
3301 if ((tp->tg3_flags2 & TG3_FLG2_HW_TSO) ||
3302 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)) {
3303 if (tcp_opt_len || skb->nh.iph->ihl > 5) {
3306 tsflags = ((skb->nh.iph->ihl - 5) +
3307 (tcp_opt_len >> 2));
3308 mss |= (tsflags << 11);
3311 if (tcp_opt_len || skb->nh.iph->ihl > 5) {
3314 tsflags = ((skb->nh.iph->ihl - 5) +
3315 (tcp_opt_len >> 2));
3316 base_flags |= tsflags << 12;
3323 #if TG3_VLAN_TAG_USED
3324 if (tp->vlgrp != NULL && vlan_tx_tag_present(skb))
3325 base_flags |= (TXD_FLAG_VLAN |
3326 (vlan_tx_tag_get(skb) << 16));
3329 /* Queue skb data, a.k.a. the main skb fragment. */
3330 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
3332 tp->tx_buffers[entry].skb = skb;
3333 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, mapping);
3335 would_hit_hwbug = 0;
3337 if (tg3_4g_overflow_test(mapping, len))
3338 would_hit_hwbug = entry + 1;
3340 tg3_set_txd(tp, entry, mapping, len, base_flags,
3341 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
3343 entry = NEXT_TX(entry);
3345 /* Now loop through additional data fragments, and queue them. */
3346 if (skb_shinfo(skb)->nr_frags > 0) {
3347 unsigned int i, last;
3349 last = skb_shinfo(skb)->nr_frags - 1;
3350 for (i = 0; i <= last; i++) {
3351 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3354 mapping = pci_map_page(tp->pdev,
3357 len, PCI_DMA_TODEVICE);
3359 tp->tx_buffers[entry].skb = NULL;
3360 pci_unmap_addr_set(&tp->tx_buffers[entry], mapping, mapping);
3362 if (tg3_4g_overflow_test(mapping, len)) {
3363 /* Only one should match. */
3364 if (would_hit_hwbug)
3366 would_hit_hwbug = entry + 1;
3369 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
3370 tg3_set_txd(tp, entry, mapping, len,
3371 base_flags, (i == last)|(mss << 1));
3373 tg3_set_txd(tp, entry, mapping, len,
3374 base_flags, (i == last));
3376 entry = NEXT_TX(entry);
3380 if (would_hit_hwbug) {
3381 u32 last_plus_one = entry;
3383 unsigned int len = 0;
3385 would_hit_hwbug -= 1;
3386 entry = entry - 1 - skb_shinfo(skb)->nr_frags;
3387 entry &= (TG3_TX_RING_SIZE - 1);
3390 while (entry != last_plus_one) {
3392 len = skb_headlen(skb);
3394 len = skb_shinfo(skb)->frags[i-1].size;
3396 if (entry == would_hit_hwbug)
3400 entry = NEXT_TX(entry);
3404 /* If the workaround fails due to memory/mapping
3405 * failure, silently drop this packet.
3407 if (tigon3_4gb_hwbug_workaround(tp, skb,
3416 /* Packets are ready, update Tx producer idx local and on card. */
3417 tw32_tx_mbox((MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW), entry);
3419 tp->tx_prod = entry;
3420 if (TX_BUFFS_AVAIL(tp) <= (MAX_SKB_FRAGS + 1))
3421 netif_stop_queue(dev);
3425 spin_unlock(&tp->tx_lock);
3427 dev->trans_start = jiffies;
3429 return NETDEV_TX_OK;
3432 static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
3437 if (new_mtu > ETH_DATA_LEN)
3438 tp->tg3_flags |= TG3_FLAG_JUMBO_ENABLE;
3440 tp->tg3_flags &= ~TG3_FLAG_JUMBO_ENABLE;
3443 static int tg3_change_mtu(struct net_device *dev, int new_mtu)
3445 struct tg3 *tp = netdev_priv(dev);
3447 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
3450 if (!netif_running(dev)) {
3451 /* We'll just catch it later when the
3454 tg3_set_mtu(dev, tp, new_mtu);
3460 tg3_full_lock(tp, 1);
3462 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
3464 tg3_set_mtu(dev, tp, new_mtu);
3468 tg3_netif_start(tp);
3470 tg3_full_unlock(tp);
3475 /* Free up pending packets in all rx/tx rings.
3477 * The chip has been shut down and the driver detached from
3478 * the networking, so no interrupts or new tx packets will
3479 * end up in the driver. tp->{tx,}lock is not held and we are not
3480 * in an interrupt context and thus may sleep.
3482 static void tg3_free_rings(struct tg3 *tp)
3484 struct ring_info *rxp;
3487 for (i = 0; i < TG3_RX_RING_SIZE; i++) {
3488 rxp = &tp->rx_std_buffers[i];
3490 if (rxp->skb == NULL)
3492 pci_unmap_single(tp->pdev,
3493 pci_unmap_addr(rxp, mapping),
3494 RX_PKT_BUF_SZ - tp->rx_offset,
3495 PCI_DMA_FROMDEVICE);
3496 dev_kfree_skb_any(rxp->skb);
3500 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++) {
3501 rxp = &tp->rx_jumbo_buffers[i];
3503 if (rxp->skb == NULL)
3505 pci_unmap_single(tp->pdev,
3506 pci_unmap_addr(rxp, mapping),
3507 RX_JUMBO_PKT_BUF_SZ - tp->rx_offset,
3508 PCI_DMA_FROMDEVICE);
3509 dev_kfree_skb_any(rxp->skb);
3513 for (i = 0; i < TG3_TX_RING_SIZE; ) {
3514 struct tx_ring_info *txp;
3515 struct sk_buff *skb;
3518 txp = &tp->tx_buffers[i];
3526 pci_unmap_single(tp->pdev,
3527 pci_unmap_addr(txp, mapping),
3534 for (j = 0; j < skb_shinfo(skb)->nr_frags; j++) {
3535 txp = &tp->tx_buffers[i & (TG3_TX_RING_SIZE - 1)];
3536 pci_unmap_page(tp->pdev,
3537 pci_unmap_addr(txp, mapping),
3538 skb_shinfo(skb)->frags[j].size,
3543 dev_kfree_skb_any(skb);
3547 /* Initialize tx/rx rings for packet processing.
3549 * The chip has been shut down and the driver detached from
3550 * the networking, so no interrupts or new tx packets will
3551 * end up in the driver. tp->{tx,}lock are held and thus
3554 static void tg3_init_rings(struct tg3 *tp)
3558 /* Free up all the SKBs. */
3561 /* Zero out all descriptors. */
3562 memset(tp->rx_std, 0, TG3_RX_RING_BYTES);
3563 memset(tp->rx_jumbo, 0, TG3_RX_JUMBO_RING_BYTES);
3564 memset(tp->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
3565 memset(tp->tx_ring, 0, TG3_TX_RING_BYTES);
3567 /* Initialize invariants of the rings, we only set this
3568 * stuff once. This works because the card does not
3569 * write into the rx buffer posting rings.
3571 for (i = 0; i < TG3_RX_RING_SIZE; i++) {
3572 struct tg3_rx_buffer_desc *rxd;
3574 rxd = &tp->rx_std[i];
3575 rxd->idx_len = (RX_PKT_BUF_SZ - tp->rx_offset - 64)
3577 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
3578 rxd->opaque = (RXD_OPAQUE_RING_STD |
3579 (i << RXD_OPAQUE_INDEX_SHIFT));
3582 if (tp->tg3_flags & TG3_FLAG_JUMBO_ENABLE) {
3583 for (i = 0; i < TG3_RX_JUMBO_RING_SIZE; i++) {
3584 struct tg3_rx_buffer_desc *rxd;
3586 rxd = &tp->rx_jumbo[i];
3587 rxd->idx_len = (RX_JUMBO_PKT_BUF_SZ - tp->rx_offset - 64)
3589 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
3591 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
3592 (i << RXD_OPAQUE_INDEX_SHIFT));
3596 /* Now allocate fresh SKBs for each rx ring. */
3597 for (i = 0; i < tp->rx_pending; i++) {
3598 if (tg3_alloc_rx_skb(tp, RXD_OPAQUE_RING_STD,
3603 if (tp->tg3_flags & TG3_FLAG_JUMBO_ENABLE) {
3604 for (i = 0; i < tp->rx_jumbo_pending; i++) {
3605 if (tg3_alloc_rx_skb(tp, RXD_OPAQUE_RING_JUMBO,
3613 * Must not be invoked with interrupt sources disabled and
3614 * the hardware shutdown down.
3616 static void tg3_free_consistent(struct tg3 *tp)
3618 if (tp->rx_std_buffers) {
3619 kfree(tp->rx_std_buffers);
3620 tp->rx_std_buffers = NULL;
3623 pci_free_consistent(tp->pdev, TG3_RX_RING_BYTES,
3624 tp->rx_std, tp->rx_std_mapping);
3628 pci_free_consistent(tp->pdev, TG3_RX_JUMBO_RING_BYTES,
3629 tp->rx_jumbo, tp->rx_jumbo_mapping);
3630 tp->rx_jumbo = NULL;
3633 pci_free_consistent(tp->pdev, TG3_RX_RCB_RING_BYTES(tp),
3634 tp->rx_rcb, tp->rx_rcb_mapping);
3638 pci_free_consistent(tp->pdev, TG3_TX_RING_BYTES,
3639 tp->tx_ring, tp->tx_desc_mapping);
3642 if (tp->hw_status) {
3643 pci_free_consistent(tp->pdev, TG3_HW_STATUS_SIZE,
3644 tp->hw_status, tp->status_mapping);
3645 tp->hw_status = NULL;
3648 pci_free_consistent(tp->pdev, sizeof(struct tg3_hw_stats),
3649 tp->hw_stats, tp->stats_mapping);
3650 tp->hw_stats = NULL;
3655 * Must not be invoked with interrupt sources disabled and
3656 * the hardware shutdown down. Can sleep.
3658 static int tg3_alloc_consistent(struct tg3 *tp)
3660 tp->rx_std_buffers = kmalloc((sizeof(struct ring_info) *
3662 TG3_RX_JUMBO_RING_SIZE)) +
3663 (sizeof(struct tx_ring_info) *
3666 if (!tp->rx_std_buffers)
3669 memset(tp->rx_std_buffers, 0,
3670 (sizeof(struct ring_info) *
3672 TG3_RX_JUMBO_RING_SIZE)) +
3673 (sizeof(struct tx_ring_info) *
3676 tp->rx_jumbo_buffers = &tp->rx_std_buffers[TG3_RX_RING_SIZE];
3677 tp->tx_buffers = (struct tx_ring_info *)
3678 &tp->rx_jumbo_buffers[TG3_RX_JUMBO_RING_SIZE];
3680 tp->rx_std = pci_alloc_consistent(tp->pdev, TG3_RX_RING_BYTES,
3681 &tp->rx_std_mapping);
3685 tp->rx_jumbo = pci_alloc_consistent(tp->pdev, TG3_RX_JUMBO_RING_BYTES,
3686 &tp->rx_jumbo_mapping);
3691 tp->rx_rcb = pci_alloc_consistent(tp->pdev, TG3_RX_RCB_RING_BYTES(tp),
3692 &tp->rx_rcb_mapping);
3696 tp->tx_ring = pci_alloc_consistent(tp->pdev, TG3_TX_RING_BYTES,
3697 &tp->tx_desc_mapping);
3701 tp->hw_status = pci_alloc_consistent(tp->pdev,
3703 &tp->status_mapping);
3707 tp->hw_stats = pci_alloc_consistent(tp->pdev,
3708 sizeof(struct tg3_hw_stats),
3709 &tp->stats_mapping);
3713 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
3714 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
3719 tg3_free_consistent(tp);
3723 #define MAX_WAIT_CNT 1000
3725 /* To stop a block, clear the enable bit and poll till it
3726 * clears. tp->lock is held.
3728 static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
3733 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
3740 /* We can't enable/disable these bits of the
3741 * 5705/5750, just say success.
3754 for (i = 0; i < MAX_WAIT_CNT; i++) {
3757 if ((val & enable_bit) == 0)
3761 if (i == MAX_WAIT_CNT && !silent) {
3762 printk(KERN_ERR PFX "tg3_stop_block timed out, "
3763 "ofs=%lx enable_bit=%x\n",
3771 /* tp->lock is held. */
3772 static int tg3_abort_hw(struct tg3 *tp, int silent)
3776 tg3_disable_ints(tp);
3778 tp->rx_mode &= ~RX_MODE_ENABLE;
3779 tw32_f(MAC_RX_MODE, tp->rx_mode);
3782 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
3783 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
3784 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
3785 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
3786 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
3787 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
3789 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
3790 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
3791 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
3792 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
3793 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
3794 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
3795 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
3797 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
3798 tw32_f(MAC_MODE, tp->mac_mode);
3801 tp->tx_mode &= ~TX_MODE_ENABLE;
3802 tw32_f(MAC_TX_MODE, tp->tx_mode);
3804 for (i = 0; i < MAX_WAIT_CNT; i++) {
3806 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
3809 if (i >= MAX_WAIT_CNT) {
3810 printk(KERN_ERR PFX "tg3_abort_hw timed out for %s, "
3811 "TX_MODE_ENABLE will not clear MAC_TX_MODE=%08x\n",
3812 tp->dev->name, tr32(MAC_TX_MODE));
3816 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
3817 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
3818 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
3820 tw32(FTQ_RESET, 0xffffffff);
3821 tw32(FTQ_RESET, 0x00000000);
3823 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
3824 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
3827 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
3829 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
3834 /* tp->lock is held. */
3835 static int tg3_nvram_lock(struct tg3 *tp)
3837 if (tp->tg3_flags & TG3_FLAG_NVRAM) {
3840 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
3841 for (i = 0; i < 8000; i++) {
3842 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
3852 /* tp->lock is held. */
3853 static void tg3_nvram_unlock(struct tg3 *tp)
3855 if (tp->tg3_flags & TG3_FLAG_NVRAM)
3856 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
3859 /* tp->lock is held. */
3860 static void tg3_enable_nvram_access(struct tg3 *tp)
3862 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
3863 !(tp->tg3_flags2 & TG3_FLG2_PROTECTED_NVRAM)) {
3864 u32 nvaccess = tr32(NVRAM_ACCESS);
3866 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
3870 /* tp->lock is held. */
3871 static void tg3_disable_nvram_access(struct tg3 *tp)
3873 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
3874 !(tp->tg3_flags2 & TG3_FLG2_PROTECTED_NVRAM)) {
3875 u32 nvaccess = tr32(NVRAM_ACCESS);
3877 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
3881 /* tp->lock is held. */
3882 static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
3884 if (!(tp->tg3_flags2 & TG3_FLG2_SUN_570X))
3885 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
3886 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
3888 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
3890 case RESET_KIND_INIT:
3891 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
3895 case RESET_KIND_SHUTDOWN:
3896 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
3900 case RESET_KIND_SUSPEND:
3901 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
3911 /* tp->lock is held. */
3912 static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
3914 if (tp->tg3_flags2 & TG3_FLG2_ASF_NEW_HANDSHAKE) {
3916 case RESET_KIND_INIT:
3917 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
3918 DRV_STATE_START_DONE);
3921 case RESET_KIND_SHUTDOWN:
3922 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
3923 DRV_STATE_UNLOAD_DONE);
3932 /* tp->lock is held. */
3933 static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
3935 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
3937 case RESET_KIND_INIT:
3938 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
3942 case RESET_KIND_SHUTDOWN:
3943 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
3947 case RESET_KIND_SUSPEND:
3948 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
3958 static void tg3_stop_fw(struct tg3 *);
3960 /* tp->lock is held. */
3961 static int tg3_chip_reset(struct tg3 *tp)
3967 if (!(tp->tg3_flags2 & TG3_FLG2_SUN_570X))
3971 * We must avoid the readl() that normally takes place.
3972 * It locks machines, causes machine checks, and other
3973 * fun things. So, temporarily disable the 5701
3974 * hardware workaround, while we do the reset.
3976 flags_save = tp->tg3_flags;
3977 tp->tg3_flags &= ~TG3_FLAG_5701_REG_WRITE_BUG;
3980 val = GRC_MISC_CFG_CORECLK_RESET;
3982 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
3983 if (tr32(0x7e2c) == 0x60) {
3986 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
3987 tw32(GRC_MISC_CFG, (1 << 29));
3992 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
3993 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
3994 tw32(GRC_MISC_CFG, val);
3996 /* restore 5701 hardware bug workaround flag */
3997 tp->tg3_flags = flags_save;
3999 /* Unfortunately, we have to delay before the PCI read back.
4000 * Some 575X chips even will not respond to a PCI cfg access
4001 * when the reset command is given to the chip.
4003 * How do these hardware designers expect things to work
4004 * properly if the PCI write is posted for a long period
4005 * of time? It is always necessary to have some method by
4006 * which a register read back can occur to push the write
4007 * out which does the reset.
4009 * For most tg3 variants the trick below was working.
4014 /* Flush PCI posted writes. The normal MMIO registers
4015 * are inaccessible at this time so this is the only
4016 * way to make this reliably (actually, this is no longer
4017 * the case, see above). I tried to use indirect
4018 * register read/write but this upset some 5701 variants.
4020 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
4024 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
4025 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
4029 /* Wait for link training to complete. */
4030 for (i = 0; i < 5000; i++)
4033 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
4034 pci_write_config_dword(tp->pdev, 0xc4,
4035 cfg_val | (1 << 15));
4037 /* Set PCIE max payload size and clear error status. */
4038 pci_write_config_dword(tp->pdev, 0xd8, 0xf5000);
4041 /* Re-enable indirect register accesses. */
4042 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
4043 tp->misc_host_ctrl);
4045 /* Set MAX PCI retry to zero. */
4046 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
4047 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
4048 (tp->tg3_flags & TG3_FLAG_PCIX_MODE))
4049 val |= PCISTATE_RETRY_SAME_DMA;
4050 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
4052 pci_restore_state(tp->pdev);
4054 /* Make sure PCI-X relaxed ordering bit is clear. */
4055 pci_read_config_dword(tp->pdev, TG3PCI_X_CAPS, &val);
4056 val &= ~PCIX_CAPS_RELAXED_ORDERING;
4057 pci_write_config_dword(tp->pdev, TG3PCI_X_CAPS, val);
4059 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
4061 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
4063 tw32(0x5000, 0x400);
4066 tw32(GRC_MODE, tp->grc_mode);
4068 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
4069 u32 val = tr32(0xc4);
4071 tw32(0xc4, val | (1 << 15));
4074 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
4075 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
4076 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
4077 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
4078 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
4079 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
4082 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
4083 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
4084 tw32_f(MAC_MODE, tp->mac_mode);
4086 tw32_f(MAC_MODE, 0);
4089 if (!(tp->tg3_flags2 & TG3_FLG2_SUN_570X)) {
4090 /* Wait for firmware initialization to complete. */
4091 for (i = 0; i < 100000; i++) {
4092 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
4093 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
4098 printk(KERN_ERR PFX "tg3_reset_hw timed out for %s, "
4099 "firmware will not restart magic=%08x\n",
4100 tp->dev->name, val);
4105 if ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
4106 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
4107 u32 val = tr32(0x7c00);
4109 tw32(0x7c00, val | (1 << 25));
4112 /* Reprobe ASF enable state. */
4113 tp->tg3_flags &= ~TG3_FLAG_ENABLE_ASF;
4114 tp->tg3_flags2 &= ~TG3_FLG2_ASF_NEW_HANDSHAKE;
4115 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
4116 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
4119 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
4120 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
4121 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
4122 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
4123 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
4130 /* tp->lock is held. */
4131 static void tg3_stop_fw(struct tg3 *tp)
4133 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
4137 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
4138 val = tr32(GRC_RX_CPU_EVENT);
4140 tw32(GRC_RX_CPU_EVENT, val);
4142 /* Wait for RX cpu to ACK the event. */
4143 for (i = 0; i < 100; i++) {
4144 if (!(tr32(GRC_RX_CPU_EVENT) & (1 << 14)))
4151 /* tp->lock is held. */
4152 static int tg3_halt(struct tg3 *tp, int kind, int silent)
4158 tg3_write_sig_pre_reset(tp, kind);
4160 tg3_abort_hw(tp, silent);
4161 err = tg3_chip_reset(tp);
4163 tg3_write_sig_legacy(tp, kind);
4164 tg3_write_sig_post_reset(tp, kind);
4172 #define TG3_FW_RELEASE_MAJOR 0x0
4173 #define TG3_FW_RELASE_MINOR 0x0
4174 #define TG3_FW_RELEASE_FIX 0x0
4175 #define TG3_FW_START_ADDR 0x08000000
4176 #define TG3_FW_TEXT_ADDR 0x08000000
4177 #define TG3_FW_TEXT_LEN 0x9c0
4178 #define TG3_FW_RODATA_ADDR 0x080009c0
4179 #define TG3_FW_RODATA_LEN 0x60
4180 #define TG3_FW_DATA_ADDR 0x08000a40
4181 #define TG3_FW_DATA_LEN 0x20
4182 #define TG3_FW_SBSS_ADDR 0x08000a60
4183 #define TG3_FW_SBSS_LEN 0xc
4184 #define TG3_FW_BSS_ADDR 0x08000a70
4185 #define TG3_FW_BSS_LEN 0x10
4187 static u32 tg3FwText[(TG3_FW_TEXT_LEN / sizeof(u32)) + 1] = {
4188 0x00000000, 0x10000003, 0x00000000, 0x0000000d, 0x0000000d, 0x3c1d0800,
4189 0x37bd3ffc, 0x03a0f021, 0x3c100800, 0x26100000, 0x0e000018, 0x00000000,
4190 0x0000000d, 0x3c1d0800, 0x37bd3ffc, 0x03a0f021, 0x3c100800, 0x26100034,
4191 0x0e00021c, 0x00000000, 0x0000000d, 0x00000000, 0x00000000, 0x00000000,
4192 0x27bdffe0, 0x3c1cc000, 0xafbf0018, 0xaf80680c, 0x0e00004c, 0x241b2105,
4193 0x97850000, 0x97870002, 0x9782002c, 0x9783002e, 0x3c040800, 0x248409c0,
4194 0xafa00014, 0x00021400, 0x00621825, 0x00052c00, 0xafa30010, 0x8f860010,
4195 0x00e52825, 0x0e000060, 0x24070102, 0x3c02ac00, 0x34420100, 0x3c03ac01,
4196 0x34630100, 0xaf820490, 0x3c02ffff, 0xaf820494, 0xaf830498, 0xaf82049c,
4197 0x24020001, 0xaf825ce0, 0x0e00003f, 0xaf825d00, 0x0e000140, 0x00000000,
4198 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x2402ffff, 0xaf825404, 0x8f835400,
4199 0x34630400, 0xaf835400, 0xaf825404, 0x3c020800, 0x24420034, 0xaf82541c,
4200 0x03e00008, 0xaf805400, 0x00000000, 0x00000000, 0x3c020800, 0x34423000,
4201 0x3c030800, 0x34633000, 0x3c040800, 0x348437ff, 0x3c010800, 0xac220a64,
4202 0x24020040, 0x3c010800, 0xac220a68, 0x3c010800, 0xac200a60, 0xac600000,
4203 0x24630004, 0x0083102b, 0x5040fffd, 0xac600000, 0x03e00008, 0x00000000,
4204 0x00804821, 0x8faa0010, 0x3c020800, 0x8c420a60, 0x3c040800, 0x8c840a68,
4205 0x8fab0014, 0x24430001, 0x0044102b, 0x3c010800, 0xac230a60, 0x14400003,
4206 0x00004021, 0x3c010800, 0xac200a60, 0x3c020800, 0x8c420a60, 0x3c030800,
4207 0x8c630a64, 0x91240000, 0x00021140, 0x00431021, 0x00481021, 0x25080001,
4208 0xa0440000, 0x29020008, 0x1440fff4, 0x25290001, 0x3c020800, 0x8c420a60,
4209 0x3c030800, 0x8c630a64, 0x8f84680c, 0x00021140, 0x00431021, 0xac440008,
4210 0xac45000c, 0xac460010, 0xac470014, 0xac4a0018, 0x03e00008, 0xac4b001c,
4211 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4212 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4214 0x02000008, 0x00000000, 0x0a0001e3, 0x3c0a0001, 0x0a0001e3, 0x3c0a0002,
4215 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
4216 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
4217 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
4218 0x0a0001e3, 0x3c0a0007, 0x0a0001e3, 0x3c0a0008, 0x0a0001e3, 0x3c0a0009,
4219 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x3c0a000b,
4220 0x0a0001e3, 0x3c0a000c, 0x0a0001e3, 0x3c0a000d, 0x0a0001e3, 0x00000000,
4221 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x3c0a000e, 0x0a0001e3, 0x00000000,
4222 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
4223 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x00000000,
4224 0x0a0001e3, 0x00000000, 0x0a0001e3, 0x3c0a0013, 0x0a0001e3, 0x3c0a0014,
4225 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4226 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4227 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4228 0x27bdffe0, 0x00001821, 0x00001021, 0xafbf0018, 0xafb10014, 0xafb00010,
4229 0x3c010800, 0x00220821, 0xac200a70, 0x3c010800, 0x00220821, 0xac200a74,
4230 0x3c010800, 0x00220821, 0xac200a78, 0x24630001, 0x1860fff5, 0x2442000c,
4231 0x24110001, 0x8f906810, 0x32020004, 0x14400005, 0x24040001, 0x3c020800,
4232 0x8c420a78, 0x18400003, 0x00002021, 0x0e000182, 0x00000000, 0x32020001,
4233 0x10400003, 0x00000000, 0x0e000169, 0x00000000, 0x0a000153, 0xaf915028,
4234 0x8fbf0018, 0x8fb10014, 0x8fb00010, 0x03e00008, 0x27bd0020, 0x3c050800,
4235 0x8ca50a70, 0x3c060800, 0x8cc60a80, 0x3c070800, 0x8ce70a78, 0x27bdffe0,
4236 0x3c040800, 0x248409d0, 0xafbf0018, 0xafa00010, 0x0e000060, 0xafa00014,
4237 0x0e00017b, 0x00002021, 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x24020001,
4238 0x8f836810, 0x00821004, 0x00021027, 0x00621824, 0x03e00008, 0xaf836810,
4239 0x27bdffd8, 0xafbf0024, 0x1080002e, 0xafb00020, 0x8f825cec, 0xafa20018,
4240 0x8f825cec, 0x3c100800, 0x26100a78, 0xafa2001c, 0x34028000, 0xaf825cec,
4241 0x8e020000, 0x18400016, 0x00000000, 0x3c020800, 0x94420a74, 0x8fa3001c,
4242 0x000221c0, 0xac830004, 0x8fa2001c, 0x3c010800, 0x0e000201, 0xac220a74,
4243 0x10400005, 0x00000000, 0x8e020000, 0x24420001, 0x0a0001df, 0xae020000,
4244 0x3c020800, 0x8c420a70, 0x00021c02, 0x000321c0, 0x0a0001c5, 0xafa2001c,
4245 0x0e000201, 0x00000000, 0x1040001f, 0x00000000, 0x8e020000, 0x8fa3001c,
4246 0x24420001, 0x3c010800, 0xac230a70, 0x3c010800, 0xac230a74, 0x0a0001df,
4247 0xae020000, 0x3c100800, 0x26100a78, 0x8e020000, 0x18400028, 0x00000000,
4248 0x0e000201, 0x00000000, 0x14400024, 0x00000000, 0x8e020000, 0x3c030800,
4249 0x8c630a70, 0x2442ffff, 0xafa3001c, 0x18400006, 0xae020000, 0x00031402,
4250 0x000221c0, 0x8c820004, 0x3c010800, 0xac220a70, 0x97a2001e, 0x2442ff00,
4251 0x2c420300, 0x1440000b, 0x24024000, 0x3c040800, 0x248409dc, 0xafa00010,
4252 0xafa00014, 0x8fa6001c, 0x24050008, 0x0e000060, 0x00003821, 0x0a0001df,
4253 0x00000000, 0xaf825cf8, 0x3c020800, 0x8c420a40, 0x8fa3001c, 0x24420001,
4254 0xaf835cf8, 0x3c010800, 0xac220a40, 0x8fbf0024, 0x8fb00020, 0x03e00008,
4255 0x27bd0028, 0x27bdffe0, 0x3c040800, 0x248409e8, 0x00002821, 0x00003021,
4256 0x00003821, 0xafbf0018, 0xafa00010, 0x0e000060, 0xafa00014, 0x8fbf0018,
4257 0x03e00008, 0x27bd0020, 0x8f82680c, 0x8f85680c, 0x00021827, 0x0003182b,
4258 0x00031823, 0x00431024, 0x00441021, 0x00a2282b, 0x10a00006, 0x00000000,
4259 0x00401821, 0x8f82680c, 0x0043102b, 0x1440fffd, 0x00000000, 0x03e00008,
4260 0x00000000, 0x3c040800, 0x8c840000, 0x3c030800, 0x8c630a40, 0x0064102b,
4261 0x54400002, 0x00831023, 0x00641023, 0x2c420008, 0x03e00008, 0x38420001,
4262 0x27bdffe0, 0x00802821, 0x3c040800, 0x24840a00, 0x00003021, 0x00003821,
4263 0xafbf0018, 0xafa00010, 0x0e000060, 0xafa00014, 0x0a000216, 0x00000000,
4264 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x00000000, 0x27bdffe0, 0x3c1cc000,
4265 0xafbf0018, 0x0e00004c, 0xaf80680c, 0x3c040800, 0x24840a10, 0x03802821,
4266 0x00003021, 0x00003821, 0xafa00010, 0x0e000060, 0xafa00014, 0x2402ffff,
4267 0xaf825404, 0x3c0200aa, 0x0e000234, 0xaf825434, 0x8fbf0018, 0x03e00008,
4268 0x27bd0020, 0x00000000, 0x00000000, 0x00000000, 0x27bdffe8, 0xafb00010,
4269 0x24100001, 0xafbf0014, 0x3c01c003, 0xac200000, 0x8f826810, 0x30422000,
4270 0x10400003, 0x00000000, 0x0e000246, 0x00000000, 0x0a00023a, 0xaf905428,
4271 0x8fbf0014, 0x8fb00010, 0x03e00008, 0x27bd0018, 0x27bdfff8, 0x8f845d0c,
4272 0x3c0200ff, 0x3c030800, 0x8c630a50, 0x3442fff8, 0x00821024, 0x1043001e,
4273 0x3c0500ff, 0x34a5fff8, 0x3c06c003, 0x3c074000, 0x00851824, 0x8c620010,
4274 0x3c010800, 0xac230a50, 0x30420008, 0x10400005, 0x00871025, 0x8cc20000,
4275 0x24420001, 0xacc20000, 0x00871025, 0xaf825d0c, 0x8fa20000, 0x24420001,
4276 0xafa20000, 0x8fa20000, 0x8fa20000, 0x24420001, 0xafa20000, 0x8fa20000,
4277 0x8f845d0c, 0x3c030800, 0x8c630a50, 0x00851024, 0x1443ffe8, 0x00851824,
4278 0x27bd0008, 0x03e00008, 0x00000000, 0x00000000, 0x00000000
4281 static u32 tg3FwRodata[(TG3_FW_RODATA_LEN / sizeof(u32)) + 1] = {
4282 0x35373031, 0x726c7341, 0x00000000, 0x00000000, 0x53774576, 0x656e7430,
4283 0x00000000, 0x726c7045, 0x76656e74, 0x31000000, 0x556e6b6e, 0x45766e74,
4284 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x66617461, 0x6c457272,
4285 0x00000000, 0x00000000, 0x4d61696e, 0x43707542, 0x00000000, 0x00000000,
4289 #if 0 /* All zeros, don't eat up space with it. */
4290 u32 tg3FwData[(TG3_FW_DATA_LEN / sizeof(u32)) + 1] = {
4291 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
4292 0x00000000, 0x00000000, 0x00000000, 0x00000000
4296 #define RX_CPU_SCRATCH_BASE 0x30000
4297 #define RX_CPU_SCRATCH_SIZE 0x04000
4298 #define TX_CPU_SCRATCH_BASE 0x34000
4299 #define TX_CPU_SCRATCH_SIZE 0x04000
4301 /* tp->lock is held. */
4302 static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
4306 if (offset == TX_CPU_BASE &&
4307 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
4310 if (offset == RX_CPU_BASE) {
4311 for (i = 0; i < 10000; i++) {
4312 tw32(offset + CPU_STATE, 0xffffffff);
4313 tw32(offset + CPU_MODE, CPU_MODE_HALT);
4314 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
4318 tw32(offset + CPU_STATE, 0xffffffff);
4319 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
4322 for (i = 0; i < 10000; i++) {
4323 tw32(offset + CPU_STATE, 0xffffffff);
4324 tw32(offset + CPU_MODE, CPU_MODE_HALT);
4325 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
4331 printk(KERN_ERR PFX "tg3_reset_cpu timed out for %s, "
4334 (offset == RX_CPU_BASE ? "RX" : "TX"));
4341 unsigned int text_base;
4342 unsigned int text_len;
4344 unsigned int rodata_base;
4345 unsigned int rodata_len;
4347 unsigned int data_base;
4348 unsigned int data_len;
4352 /* tp->lock is held. */
4353 static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
4354 int cpu_scratch_size, struct fw_info *info)
4357 u32 orig_tg3_flags = tp->tg3_flags;
4358 void (*write_op)(struct tg3 *, u32, u32);
4360 if (cpu_base == TX_CPU_BASE &&
4361 (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
4362 printk(KERN_ERR PFX "tg3_load_firmware_cpu: Trying to load "
4363 "TX cpu firmware on %s which is 5705.\n",
4368 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
4369 write_op = tg3_write_mem;
4371 write_op = tg3_write_indirect_reg32;
4373 /* Force use of PCI config space for indirect register
4376 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
4378 /* It is possible that bootcode is still loading at this point.
4379 * Get the nvram lock first before halting the cpu.
4382 err = tg3_halt_cpu(tp, cpu_base);
4383 tg3_nvram_unlock(tp);
4387 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
4388 write_op(tp, cpu_scratch_base + i, 0);
4389 tw32(cpu_base + CPU_STATE, 0xffffffff);
4390 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
4391 for (i = 0; i < (info->text_len / sizeof(u32)); i++)
4392 write_op(tp, (cpu_scratch_base +
4393 (info->text_base & 0xffff) +
4396 info->text_data[i] : 0));
4397 for (i = 0; i < (info->rodata_len / sizeof(u32)); i++)
4398 write_op(tp, (cpu_scratch_base +
4399 (info->rodata_base & 0xffff) +
4401 (info->rodata_data ?
4402 info->rodata_data[i] : 0));
4403 for (i = 0; i < (info->data_len / sizeof(u32)); i++)
4404 write_op(tp, (cpu_scratch_base +
4405 (info->data_base & 0xffff) +
4408 info->data_data[i] : 0));
4413 tp->tg3_flags = orig_tg3_flags;
4417 /* tp->lock is held. */
4418 static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
4420 struct fw_info info;
4423 info.text_base = TG3_FW_TEXT_ADDR;
4424 info.text_len = TG3_FW_TEXT_LEN;
4425 info.text_data = &tg3FwText[0];
4426 info.rodata_base = TG3_FW_RODATA_ADDR;
4427 info.rodata_len = TG3_FW_RODATA_LEN;
4428 info.rodata_data = &tg3FwRodata[0];
4429 info.data_base = TG3_FW_DATA_ADDR;
4430 info.data_len = TG3_FW_DATA_LEN;
4431 info.data_data = NULL;
4433 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
4434 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
4439 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
4440 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
4445 /* Now startup only the RX cpu. */
4446 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
4447 tw32_f(RX_CPU_BASE + CPU_PC, TG3_FW_TEXT_ADDR);
4449 for (i = 0; i < 5; i++) {
4450 if (tr32(RX_CPU_BASE + CPU_PC) == TG3_FW_TEXT_ADDR)
4452 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
4453 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
4454 tw32_f(RX_CPU_BASE + CPU_PC, TG3_FW_TEXT_ADDR);
4458 printk(KERN_ERR PFX "tg3_load_firmware fails for %s "
4459 "to set RX CPU PC, is %08x should be %08x\n",
4460 tp->dev->name, tr32(RX_CPU_BASE + CPU_PC),
4464 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
4465 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
4470 #if TG3_TSO_SUPPORT != 0
4472 #define TG3_TSO_FW_RELEASE_MAJOR 0x1
4473 #define TG3_TSO_FW_RELASE_MINOR 0x6
4474 #define TG3_TSO_FW_RELEASE_FIX 0x0
4475 #define TG3_TSO_FW_START_ADDR 0x08000000
4476 #define TG3_TSO_FW_TEXT_ADDR 0x08000000
4477 #define TG3_TSO_FW_TEXT_LEN 0x1aa0
4478 #define TG3_TSO_FW_RODATA_ADDR 0x08001aa0
4479 #define TG3_TSO_FW_RODATA_LEN 0x60
4480 #define TG3_TSO_FW_DATA_ADDR 0x08001b20
4481 #define TG3_TSO_FW_DATA_LEN 0x30
4482 #define TG3_TSO_FW_SBSS_ADDR 0x08001b50
4483 #define TG3_TSO_FW_SBSS_LEN 0x2c
4484 #define TG3_TSO_FW_BSS_ADDR 0x08001b80
4485 #define TG3_TSO_FW_BSS_LEN 0x894
4487 static u32 tg3TsoFwText[(TG3_TSO_FW_TEXT_LEN / 4) + 1] = {
4488 0x0e000003, 0x00000000, 0x08001b24, 0x00000000, 0x10000003, 0x00000000,
4489 0x0000000d, 0x0000000d, 0x3c1d0800, 0x37bd4000, 0x03a0f021, 0x3c100800,
4490 0x26100000, 0x0e000010, 0x00000000, 0x0000000d, 0x27bdffe0, 0x3c04fefe,
4491 0xafbf0018, 0x0e0005d8, 0x34840002, 0x0e000668, 0x00000000, 0x3c030800,
4492 0x90631b68, 0x24020002, 0x3c040800, 0x24841aac, 0x14620003, 0x24050001,
4493 0x3c040800, 0x24841aa0, 0x24060006, 0x00003821, 0xafa00010, 0x0e00067c,
4494 0xafa00014, 0x8f625c50, 0x34420001, 0xaf625c50, 0x8f625c90, 0x34420001,
4495 0xaf625c90, 0x2402ffff, 0x0e000034, 0xaf625404, 0x8fbf0018, 0x03e00008,
4496 0x27bd0020, 0x00000000, 0x00000000, 0x00000000, 0x27bdffe0, 0xafbf001c,
4497 0xafb20018, 0xafb10014, 0x0e00005b, 0xafb00010, 0x24120002, 0x24110001,
4498 0x8f706820, 0x32020100, 0x10400003, 0x00000000, 0x0e0000bb, 0x00000000,
4499 0x8f706820, 0x32022000, 0x10400004, 0x32020001, 0x0e0001f0, 0x24040001,
4500 0x32020001, 0x10400003, 0x00000000, 0x0e0000a3, 0x00000000, 0x3c020800,
4501 0x90421b98, 0x14520003, 0x00000000, 0x0e0004c0, 0x00000000, 0x0a00003c,
4502 0xaf715028, 0x8fbf001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x03e00008,
4503 0x27bd0020, 0x27bdffe0, 0x3c040800, 0x24841ac0, 0x00002821, 0x00003021,
4504 0x00003821, 0xafbf0018, 0xafa00010, 0x0e00067c, 0xafa00014, 0x3c040800,
4505 0x248423d8, 0xa4800000, 0x3c010800, 0xa0201b98, 0x3c010800, 0xac201b9c,
4506 0x3c010800, 0xac201ba0, 0x3c010800, 0xac201ba4, 0x3c010800, 0xac201bac,
4507 0x3c010800, 0xac201bb8, 0x3c010800, 0xac201bbc, 0x8f624434, 0x3c010800,
4508 0xac221b88, 0x8f624438, 0x3c010800, 0xac221b8c, 0x8f624410, 0xac80f7a8,
4509 0x3c010800, 0xac201b84, 0x3c010800, 0xac2023e0, 0x3c010800, 0xac2023c8,
4510 0x3c010800, 0xac2023cc, 0x3c010800, 0xac202400, 0x3c010800, 0xac221b90,
4511 0x8f620068, 0x24030007, 0x00021702, 0x10430005, 0x00000000, 0x8f620068,
4512 0x00021702, 0x14400004, 0x24020001, 0x3c010800, 0x0a000097, 0xac20240c,
4513 0xac820034, 0x3c040800, 0x24841acc, 0x3c050800, 0x8ca5240c, 0x00003021,
4514 0x00003821, 0xafa00010, 0x0e00067c, 0xafa00014, 0x8fbf0018, 0x03e00008,
4515 0x27bd0020, 0x27bdffe0, 0x3c040800, 0x24841ad8, 0x00002821, 0x00003021,
4516 0x00003821, 0xafbf0018, 0xafa00010, 0x0e00067c, 0xafa00014, 0x0e00005b,
4517 0x00000000, 0x0e0000b4, 0x00002021, 0x8fbf0018, 0x03e00008, 0x27bd0020,
4518 0x24020001, 0x8f636820, 0x00821004, 0x00021027, 0x00621824, 0x03e00008,
4519 0xaf636820, 0x27bdffd0, 0xafbf002c, 0xafb60028, 0xafb50024, 0xafb40020,
4520 0xafb3001c, 0xafb20018, 0xafb10014, 0xafb00010, 0x8f675c5c, 0x3c030800,
4521 0x24631bbc, 0x8c620000, 0x14470005, 0x3c0200ff, 0x3c020800, 0x90421b98,
4522 0x14400119, 0x3c0200ff, 0x3442fff8, 0x00e28824, 0xac670000, 0x00111902,
4523 0x306300ff, 0x30e20003, 0x000211c0, 0x00622825, 0x00a04021, 0x00071602,
4524 0x3c030800, 0x90631b98, 0x3044000f, 0x14600036, 0x00804821, 0x24020001,
4525 0x3c010800, 0xa0221b98, 0x00051100, 0x00821025, 0x3c010800, 0xac201b9c,
4526 0x3c010800, 0xac201ba0, 0x3c010800, 0xac201ba4, 0x3c010800, 0xac201bac,
4527 0x3c010800, 0xac201bb8, 0x3c010800, 0xac201bb0, 0x3c010800, 0xac201bb4,
4528 0x3c010800, 0xa42223d8, 0x9622000c, 0x30437fff, 0x3c010800, 0xa4222410,
4529 0x30428000, 0x3c010800, 0xa4231bc6, 0x10400005, 0x24020001, 0x3c010800,
4530 0xac2223f4, 0x0a000102, 0x2406003e, 0x24060036, 0x3c010800, 0xac2023f4,
4531 0x9622000a, 0x3c030800, 0x94631bc6, 0x3c010800, 0xac2023f0, 0x3c010800,
4532 0xac2023f8, 0x00021302, 0x00021080, 0x00c21021, 0x00621821, 0x3c010800,
4533 0xa42223d0, 0x3c010800, 0x0a000115, 0xa4231b96, 0x9622000c, 0x3c010800,
4534 0xa42223ec, 0x3c040800, 0x24841b9c, 0x8c820000, 0x00021100, 0x3c010800,
4535 0x00220821, 0xac311bc8, 0x8c820000, 0x00021100, 0x3c010800, 0x00220821,
4536 0xac271bcc, 0x8c820000, 0x25030001, 0x306601ff, 0x00021100, 0x3c010800,
4537 0x00220821, 0xac261bd0, 0x8c820000, 0x00021100, 0x3c010800, 0x00220821,
4538 0xac291bd4, 0x96230008, 0x3c020800, 0x8c421bac, 0x00432821, 0x3c010800,
4539 0xac251bac, 0x9622000a, 0x30420004, 0x14400018, 0x00061100, 0x8f630c14,
4540 0x3063000f, 0x2c620002, 0x1440000b, 0x3c02c000, 0x8f630c14, 0x3c020800,
4541 0x8c421b40, 0x3063000f, 0x24420001, 0x3c010800, 0xac221b40, 0x2c620002,
4542 0x1040fff7, 0x3c02c000, 0x00e21825, 0xaf635c5c, 0x8f625c50, 0x30420002,
4543 0x10400014, 0x00000000, 0x0a000147, 0x00000000, 0x3c030800, 0x8c631b80,
4544 0x3c040800, 0x94841b94, 0x01221025, 0x3c010800, 0xa42223da, 0x24020001,
4545 0x3c010800, 0xac221bb8, 0x24630001, 0x0085202a, 0x3c010800, 0x10800003,
4546 0xac231b80, 0x3c010800, 0xa4251b94, 0x3c060800, 0x24c61b9c, 0x8cc20000,
4547 0x24420001, 0xacc20000, 0x28420080, 0x14400005, 0x00000000, 0x0e000656,
4548 0x24040002, 0x0a0001e6, 0x00000000, 0x3c020800, 0x8c421bb8, 0x10400078,
4549 0x24020001, 0x3c050800, 0x90a51b98, 0x14a20072, 0x00000000, 0x3c150800,
4550 0x96b51b96, 0x3c040800, 0x8c841bac, 0x32a3ffff, 0x0083102a, 0x1440006c,
4551 0x00000000, 0x14830003, 0x00000000, 0x3c010800, 0xac2523f0, 0x1060005c,
4552 0x00009021, 0x24d60004, 0x0060a021, 0x24d30014, 0x8ec20000, 0x00028100,
4553 0x3c110800, 0x02308821, 0x0e000625, 0x8e311bc8, 0x00402821, 0x10a00054,
4554 0x00000000, 0x9628000a, 0x31020040, 0x10400005, 0x2407180c, 0x8e22000c,
4555 0x2407188c, 0x00021400, 0xaca20018, 0x3c030800, 0x00701821, 0x8c631bd0,
4556 0x3c020800, 0x00501021, 0x8c421bd4, 0x00031d00, 0x00021400, 0x00621825,
4557 0xaca30014, 0x8ec30004, 0x96220008, 0x00432023, 0x3242ffff, 0x3083ffff,
4558 0x00431021, 0x0282102a, 0x14400002, 0x02b23023, 0x00803021, 0x8e620000,
4559 0x30c4ffff, 0x00441021, 0xae620000, 0x8e220000, 0xaca20000, 0x8e220004,
4560 0x8e63fff4, 0x00431021, 0xaca20004, 0xa4a6000e, 0x8e62fff4, 0x00441021,
4561 0xae62fff4, 0x96230008, 0x0043102a, 0x14400005, 0x02469021, 0x8e62fff0,
4562 0xae60fff4, 0x24420001, 0xae62fff0, 0xaca00008, 0x3242ffff, 0x14540008,
4563 0x24020305, 0x31020080, 0x54400001, 0x34e70010, 0x24020905, 0xa4a2000c,
4564 0x0a0001cb, 0x34e70020, 0xa4a2000c, 0x3c020800, 0x8c4223f0, 0x10400003,
4565 0x3c024b65, 0x0a0001d3, 0x34427654, 0x3c02b49a, 0x344289ab, 0xaca2001c,
4566 0x30e2ffff, 0xaca20010, 0x0e0005a2, 0x00a02021, 0x3242ffff, 0x0054102b,
4567 0x1440ffa9, 0x00000000, 0x24020002, 0x3c010800, 0x0a0001e6, 0xa0221b98,
4568 0x8ec2083c, 0x24420001, 0x0a0001e6, 0xaec2083c, 0x0e0004c0, 0x00000000,
4569 0x8fbf002c, 0x8fb60028, 0x8fb50024, 0x8fb40020, 0x8fb3001c, 0x8fb20018,
4570 0x8fb10014, 0x8fb00010, 0x03e00008, 0x27bd0030, 0x27bdffd0, 0xafbf0028,
4571 0xafb30024, 0xafb20020, 0xafb1001c, 0xafb00018, 0x8f725c9c, 0x3c0200ff,
4572 0x3442fff8, 0x3c070800, 0x24e71bb4, 0x02428824, 0x9623000e, 0x8ce20000,
4573 0x00431021, 0xace20000, 0x8e220010, 0x30420020, 0x14400011, 0x00809821,
4574 0x0e00063b, 0x02202021, 0x3c02c000, 0x02421825, 0xaf635c9c, 0x8f625c90,
4575 0x30420002, 0x1040011e, 0x00000000, 0xaf635c9c, 0x8f625c90, 0x30420002,
4576 0x10400119, 0x00000000, 0x0a00020d, 0x00000000, 0x8e240008, 0x8e230014,
4577 0x00041402, 0x000231c0, 0x00031502, 0x304201ff, 0x2442ffff, 0x3042007f,
4578 0x00031942, 0x30637800, 0x00021100, 0x24424000, 0x00624821, 0x9522000a,
4579 0x3084ffff, 0x30420008, 0x104000b0, 0x000429c0, 0x3c020800, 0x8c422400,
4580 0x14400024, 0x24c50008, 0x94c20014, 0x3c010800, 0xa42223d0, 0x8cc40010,
4581 0x00041402, 0x3c010800, 0xa42223d2, 0x3c010800, 0xa42423d4, 0x94c2000e,
4582 0x3083ffff, 0x00431023, 0x3c010800, 0xac222408, 0x94c2001a, 0x3c010800,
4583 0xac262400, 0x3c010800, 0xac322404, 0x3c010800, 0xac2223fc, 0x3c02c000,
4584 0x02421825, 0xaf635c9c, 0x8f625c90, 0x30420002, 0x104000e5, 0x00000000,
4585 0xaf635c9c, 0x8f625c90, 0x30420002, 0x104000e0, 0x00000000, 0x0a000246,
4586 0x00000000, 0x94c2000e, 0x3c030800, 0x946323d4, 0x00434023, 0x3103ffff,
4587 0x2c620008, 0x1040001c, 0x00000000, 0x94c20014, 0x24420028, 0x00a22821,
4588 0x00031042, 0x1840000b, 0x00002021, 0x24e60848, 0x00403821, 0x94a30000,
4589 0x8cc20000, 0x24840001, 0x00431021, 0xacc20000, 0x0087102a, 0x1440fff9,
4590 0x24a50002, 0x31020001, 0x1040001f, 0x3c024000, 0x3c040800, 0x248423fc,
4591 0xa0a00001, 0x94a30000, 0x8c820000, 0x00431021, 0x0a000285, 0xac820000,
4592 0x8f626800, 0x3c030010, 0x00431024, 0x10400009, 0x00000000, 0x94c2001a,
4593 0x3c030800, 0x8c6323fc, 0x00431021, 0x3c010800, 0xac2223fc, 0x0a000286,
4594 0x3c024000, 0x94c2001a, 0x94c4001c, 0x3c030800, 0x8c6323fc, 0x00441023,
4595 0x00621821, 0x3c010800, 0xac2323fc, 0x3c024000, 0x02421825, 0xaf635c9c,
4596 0x8f625c90, 0x30420002, 0x1440fffc, 0x00000000, 0x9522000a, 0x30420010,
4597 0x1040009b, 0x00000000, 0x3c030800, 0x946323d4, 0x3c070800, 0x24e72400,
4598 0x8ce40000, 0x8f626800, 0x24630030, 0x00832821, 0x3c030010, 0x00431024,
4599 0x1440000a, 0x00000000, 0x94a20004, 0x3c040800, 0x8c842408, 0x3c030800,
4600 0x8c6323fc, 0x00441023, 0x00621821, 0x3c010800, 0xac2323fc, 0x3c040800,
4601 0x8c8423fc, 0x00041c02, 0x3082ffff, 0x00622021, 0x00041402, 0x00822021,
4602 0x00041027, 0xa4a20006, 0x3c030800, 0x8c632404, 0x3c0200ff, 0x3442fff8,
4603 0x00628824, 0x96220008, 0x24050001, 0x24034000, 0x000231c0, 0x00801021,
4604 0xa4c2001a, 0xa4c0001c, 0xace00000, 0x3c010800, 0xac251b60, 0xaf635cb8,
4605 0x8f625cb0, 0x30420002, 0x10400003, 0x00000000, 0x3c010800, 0xac201b60,
4606 0x8e220008, 0xaf625cb8, 0x8f625cb0, 0x30420002, 0x10400003, 0x00000000,
4607 0x3c010800, 0xac201b60, 0x3c020800, 0x8c421b60, 0x1040ffec, 0x00000000,
4608 0x3c040800, 0x0e00063b, 0x8c842404, 0x0a00032a, 0x00000000, 0x3c030800,
4609 0x90631b98, 0x24020002, 0x14620003, 0x3c034b65, 0x0a0002e1, 0x00008021,
4610 0x8e22001c, 0x34637654, 0x10430002, 0x24100002, 0x24100001, 0x00c02021,
4611 0x0e000350, 0x02003021, 0x24020003, 0x3c010800, 0xa0221b98, 0x24020002,
4612 0x1202000a, 0x24020001, 0x3c030800, 0x8c6323f0, 0x10620006, 0x00000000,
4613 0x3c020800, 0x944223d8, 0x00021400, 0x0a00031f, 0xae220014, 0x3c040800,
4614 0x248423da, 0x94820000, 0x00021400, 0xae220014, 0x3c020800, 0x8c421bbc,
4615 0x3c03c000, 0x3c010800, 0xa0201b98, 0x00431025, 0xaf625c5c, 0x8f625c50,
4616 0x30420002, 0x10400009, 0x00000000, 0x2484f7e2, 0x8c820000, 0x00431025,
4617 0xaf625c5c, 0x8f625c50, 0x30420002, 0x1440fffa, 0x00000000, 0x3c020800,
4618 0x24421b84, 0x8c430000, 0x24630001, 0xac430000, 0x8f630c14, 0x3063000f,
4619 0x2c620002, 0x1440000c, 0x3c024000, 0x8f630c14, 0x3c020800, 0x8c421b40,
4620 0x3063000f, 0x24420001, 0x3c010800, 0xac221b40, 0x2c620002, 0x1040fff7,
4621 0x00000000, 0x3c024000, 0x02421825, 0xaf635c9c, 0x8f625c90, 0x30420002,
4622 0x1440fffc, 0x00000000, 0x12600003, 0x00000000, 0x0e0004c0, 0x00000000,
4623 0x8fbf0028, 0x8fb30024, 0x8fb20020, 0x8fb1001c, 0x8fb00018, 0x03e00008,
4624 0x27bd0030, 0x8f634450, 0x3c040800, 0x24841b88, 0x8c820000, 0x00031c02,
4625 0x0043102b, 0x14400007, 0x3c038000, 0x8c840004, 0x8f624450, 0x00021c02,
4626 0x0083102b, 0x1040fffc, 0x3c038000, 0xaf634444, 0x8f624444, 0x00431024,
4627 0x1440fffd, 0x00000000, 0x8f624448, 0x03e00008, 0x3042ffff, 0x3c024000,
4628 0x00822025, 0xaf645c38, 0x8f625c30, 0x30420002, 0x1440fffc, 0x00000000,
4629 0x03e00008, 0x00000000, 0x27bdffe0, 0x00805821, 0x14c00011, 0x256e0008,
4630 0x3c020800, 0x8c4223f4, 0x10400007, 0x24020016, 0x3c010800, 0xa42223d2,
4631 0x2402002a, 0x3c010800, 0x0a000364, 0xa42223d4, 0x8d670010, 0x00071402,
4632 0x3c010800, 0xa42223d2, 0x3c010800, 0xa42723d4, 0x3c040800, 0x948423d4,
4633 0x3c030800, 0x946323d2, 0x95cf0006, 0x3c020800, 0x944223d0, 0x00832023,
4634 0x01e2c023, 0x3065ffff, 0x24a20028, 0x01c24821, 0x3082ffff, 0x14c0001a,
4635 0x01226021, 0x9582000c, 0x3042003f, 0x3c010800, 0xa42223d6, 0x95820004,
4636 0x95830006, 0x3c010800, 0xac2023e4, 0x3c010800, 0xac2023e8, 0x00021400,
4637 0x00431025, 0x3c010800, 0xac221bc0, 0x95220004, 0x3c010800, 0xa4221bc4,
4638 0x95230002, 0x01e51023, 0x0043102a, 0x10400010, 0x24020001, 0x3c010800,
4639 0x0a000398, 0xac2223f8, 0x3c030800, 0x8c6323e8, 0x3c020800, 0x94421bc4,
4640 0x00431021, 0xa5220004, 0x3c020800, 0x94421bc0, 0xa5820004, 0x3c020800,
4641 0x8c421bc0, 0xa5820006, 0x3c020800, 0x8c4223f0, 0x3c0d0800, 0x8dad23e4,
4642 0x3c0a0800, 0x144000e5, 0x8d4a23e8, 0x3c020800, 0x94421bc4, 0x004a1821,
4643 0x3063ffff, 0x0062182b, 0x24020002, 0x10c2000d, 0x01435023, 0x3c020800,
4644 0x944223d6, 0x30420009, 0x10400008, 0x00000000, 0x9582000c, 0x3042fff6,
4645 0xa582000c, 0x3c020800, 0x944223d6, 0x30420009, 0x01a26823, 0x3c020800,
4646 0x8c4223f8, 0x1040004a, 0x01203821, 0x3c020800, 0x944223d2, 0x00004021,
4647 0xa520000a, 0x01e21023, 0xa5220002, 0x3082ffff, 0x00021042, 0x18400008,
4648 0x00003021, 0x00401821, 0x94e20000, 0x25080001, 0x00c23021, 0x0103102a,
4649 0x1440fffb, 0x24e70002, 0x00061c02, 0x30c2ffff, 0x00623021, 0x00061402,
4650 0x00c23021, 0x00c02821, 0x00061027, 0xa522000a, 0x00003021, 0x2527000c,
4651 0x00004021, 0x94e20000, 0x25080001, 0x00c23021, 0x2d020004, 0x1440fffb,
4652 0x24e70002, 0x95220002, 0x00004021, 0x91230009, 0x00442023, 0x01803821,
4653 0x3082ffff, 0xa4e00010, 0x00621821, 0x00021042, 0x18400010, 0x00c33021,
4654 0x00404821, 0x94e20000, 0x24e70002, 0x00c23021, 0x30e2007f, 0x14400006,
4655 0x25080001, 0x8d630000, 0x3c02007f, 0x3442ff80, 0x00625824, 0x25670008,
4656 0x0109102a, 0x1440fff3, 0x00000000, 0x30820001, 0x10400005, 0x00061c02,
4657 0xa0e00001, 0x94e20000, 0x00c23021, 0x00061c02, 0x30c2ffff, 0x00623021,
4658 0x00061402, 0x00c23021, 0x0a00047d, 0x30c6ffff, 0x24020002, 0x14c20081,
4659 0x00000000, 0x3c020800, 0x8c42240c, 0x14400007, 0x00000000, 0x3c020800,
4660 0x944223d2, 0x95230002, 0x01e21023, 0x10620077, 0x00000000, 0x3c020800,
4661 0x944223d2, 0x01e21023, 0xa5220002, 0x3c020800, 0x8c42240c, 0x1040001a,
4662 0x31e3ffff, 0x8dc70010, 0x3c020800, 0x94421b96, 0x00e04021, 0x00072c02,
4663 0x00aa2021, 0x00431023, 0x00823823, 0x00072402, 0x30e2ffff, 0x00823821,
4664 0x00071027, 0xa522000a, 0x3102ffff, 0x3c040800, 0x948423d4, 0x00453023,
4665 0x00e02821, 0x00641823, 0x006d1821, 0x00c33021, 0x00061c02, 0x30c2ffff,
4666 0x0a00047d, 0x00623021, 0x01203821, 0x00004021, 0x3082ffff, 0x00021042,
4667 0x18400008, 0x00003021, 0x00401821, 0x94e20000, 0x25080001, 0x00c23021,
4668 0x0103102a, 0x1440fffb, 0x24e70002, 0x00061c02, 0x30c2ffff, 0x00623021,
4669 0x00061402, 0x00c23021, 0x00c02821, 0x00061027, 0xa522000a, 0x00003021,
4670 0x2527000c, 0x00004021, 0x94e20000, 0x25080001, 0x00c23021, 0x2d020004,
4671 0x1440fffb, 0x24e70002, 0x95220002, 0x00004021, 0x91230009, 0x00442023,
4672 0x01803821, 0x3082ffff, 0xa4e00010, 0x3c040800, 0x948423d4, 0x00621821,
4673 0x00c33021, 0x00061c02, 0x30c2ffff, 0x00623021, 0x00061c02, 0x3c020800,
4674 0x944223d0, 0x00c34821, 0x00441023, 0x00021fc2, 0x00431021, 0x00021043,
4675 0x18400010, 0x00003021, 0x00402021, 0x94e20000, 0x24e70002, 0x00c23021,
4676 0x30e2007f, 0x14400006, 0x25080001, 0x8d630000, 0x3c02007f, 0x3442ff80,
4677 0x00625824, 0x25670008, 0x0104102a, 0x1440fff3, 0x00000000, 0x3c020800,
4678 0x944223ec, 0x00c23021, 0x3122ffff, 0x00c23021, 0x00061c02, 0x30c2ffff,
4679 0x00623021, 0x00061402, 0x00c23021, 0x00c04021, 0x00061027, 0xa5820010,
4680 0xadc00014, 0x0a00049d, 0xadc00000, 0x8dc70010, 0x00e04021, 0x11400007,
4681 0x00072c02, 0x00aa3021, 0x00061402, 0x30c3ffff, 0x00433021, 0x00061402,
4682 0x00c22821, 0x00051027, 0xa522000a, 0x3c030800, 0x946323d4, 0x3102ffff,
4683 0x01e21021, 0x00433023, 0x00cd3021, 0x00061c02, 0x30c2ffff, 0x00623021,
4684 0x00061402, 0x00c23021, 0x00c04021, 0x00061027, 0xa5820010, 0x3102ffff,
4685 0x00051c00, 0x00431025, 0xadc20010, 0x3c020800, 0x8c4223f4, 0x10400005,
4686 0x2de205eb, 0x14400002, 0x25e2fff2, 0x34028870, 0xa5c20034, 0x3c030800,
4687 0x246323e8, 0x8c620000, 0x24420001, 0xac620000, 0x3c040800, 0x8c8423e4,
4688 0x3c020800, 0x8c421bc0, 0x3303ffff, 0x00832021, 0x00431821, 0x0062102b,
4689 0x3c010800, 0xac2423e4, 0x10400003, 0x2482ffff, 0x3c010800, 0xac2223e4,
4690 0x3c010800, 0xac231bc0, 0x03e00008, 0x27bd0020, 0x27bdffb8, 0x3c050800,
4691 0x24a51b96, 0xafbf0044, 0xafbe0040, 0xafb7003c, 0xafb60038, 0xafb50034,
4692 0xafb40030, 0xafb3002c, 0xafb20028, 0xafb10024, 0xafb00020, 0x94a90000,
4693 0x3c020800, 0x944223d0, 0x3c030800, 0x8c631bb0, 0x3c040800, 0x8c841bac,
4694 0x01221023, 0x0064182a, 0xa7a9001e, 0x106000be, 0xa7a20016, 0x24be0022,
4695 0x97b6001e, 0x24b3001a, 0x24b70016, 0x8fc20000, 0x14400008, 0x00000000,
4696 0x8fc2fff8, 0x97a30016, 0x8fc4fff4, 0x00431021, 0x0082202a, 0x148000b0,
4697 0x00000000, 0x97d50818, 0x32a2ffff, 0x104000a3, 0x00009021, 0x0040a021,
4698 0x00008821, 0x0e000625, 0x00000000, 0x00403021, 0x14c00007, 0x00000000,
4699 0x3c020800, 0x8c4223dc, 0x24420001, 0x3c010800, 0x0a000596, 0xac2223dc,
4700 0x3c100800, 0x02118021, 0x8e101bc8, 0x9608000a, 0x31020040, 0x10400005,
4701 0x2407180c, 0x8e02000c, 0x2407188c, 0x00021400, 0xacc20018, 0x31020080,
4702 0x54400001, 0x34e70010, 0x3c020800, 0x00511021, 0x8c421bd0, 0x3c030800,
4703 0x00711821, 0x8c631bd4, 0x00021500, 0x00031c00, 0x00431025, 0xacc20014,
4704 0x96040008, 0x3242ffff, 0x00821021, 0x0282102a, 0x14400002, 0x02b22823,
4705 0x00802821, 0x8e020000, 0x02459021, 0xacc20000, 0x8e020004, 0x00c02021,
4706 0x26310010, 0xac820004, 0x30e2ffff, 0xac800008, 0xa485000e, 0xac820010,
4707 0x24020305, 0x0e0005a2, 0xa482000c, 0x3242ffff, 0x0054102b, 0x1440ffc5,
4708 0x3242ffff, 0x0a00058e, 0x00000000, 0x8e620000, 0x8e63fffc, 0x0043102a,
4709 0x10400067, 0x00000000, 0x8e62fff0, 0x00028900, 0x3c100800, 0x02118021,
4710 0x0e000625, 0x8e101bc8, 0x00403021, 0x14c00005, 0x00000000, 0x8e62082c,
4711 0x24420001, 0x0a000596, 0xae62082c, 0x9608000a, 0x31020040, 0x10400005,
4712 0x2407180c, 0x8e02000c, 0x2407188c, 0x00021400, 0xacc20018, 0x3c020800,
4713 0x00511021, 0x8c421bd0, 0x3c030800, 0x00711821, 0x8c631bd4, 0x00021500,
4714 0x00031c00, 0x00431025, 0xacc20014, 0x8e63fff4, 0x96020008, 0x00432023,
4715 0x3242ffff, 0x3083ffff, 0x00431021, 0x02c2102a, 0x10400003, 0x00802821,
4716 0x97a9001e, 0x01322823, 0x8e620000, 0x30a4ffff, 0x00441021, 0xae620000,
4717 0xa4c5000e, 0x8e020000, 0xacc20000, 0x8e020004, 0x8e63fff4, 0x00431021,
4718 0xacc20004, 0x8e63fff4, 0x96020008, 0x00641821, 0x0062102a, 0x14400006,
4719 0x02459021, 0x8e62fff0, 0xae60fff4, 0x24420001, 0x0a000571, 0xae62fff0,
4720 0xae63fff4, 0xacc00008, 0x3242ffff, 0x10560003, 0x31020004, 0x10400006,
4721 0x24020305, 0x31020080, 0x54400001, 0x34e70010, 0x34e70020, 0x24020905,
4722 0xa4c2000c, 0x8ee30000, 0x8ee20004, 0x14620007, 0x3c02b49a, 0x8ee20860,
4723 0x54400001, 0x34e70400, 0x3c024b65, 0x0a000588, 0x34427654, 0x344289ab,
4724 0xacc2001c, 0x30e2ffff, 0xacc20010, 0x0e0005a2, 0x00c02021, 0x3242ffff,
4725 0x0056102b, 0x1440ff9b, 0x00000000, 0x8e620000, 0x8e63fffc, 0x0043102a,
4726 0x1440ff48, 0x00000000, 0x8fbf0044, 0x8fbe0040, 0x8fb7003c, 0x8fb60038,
4727 0x8fb50034, 0x8fb40030, 0x8fb3002c, 0x8fb20028, 0x8fb10024, 0x8fb00020,
4728 0x03e00008, 0x27bd0048, 0x27bdffe8, 0xafbf0014, 0xafb00010, 0x8f624450,
4729 0x8f634410, 0x0a0005b1, 0x00808021, 0x8f626820, 0x30422000, 0x10400003,
4730 0x00000000, 0x0e0001f0, 0x00002021, 0x8f624450, 0x8f634410, 0x3042ffff,
4731 0x0043102b, 0x1440fff5, 0x00000000, 0x8f630c14, 0x3063000f, 0x2c620002,
4732 0x1440000b, 0x00000000, 0x8f630c14, 0x3c020800, 0x8c421b40, 0x3063000f,
4733 0x24420001, 0x3c010800, 0xac221b40, 0x2c620002, 0x1040fff7, 0x00000000,
4734 0xaf705c18, 0x8f625c10, 0x30420002, 0x10400009, 0x00000000, 0x8f626820,
4735 0x30422000, 0x1040fff8, 0x00000000, 0x0e0001f0, 0x00002021, 0x0a0005c4,
4736 0x00000000, 0x8fbf0014, 0x8fb00010, 0x03e00008, 0x27bd0018, 0x00000000,
4737 0x00000000, 0x00000000, 0x27bdffe8, 0x3c1bc000, 0xafbf0014, 0xafb00010,
4738 0xaf60680c, 0x8f626804, 0x34420082, 0xaf626804, 0x8f634000, 0x24020b50,
4739 0x3c010800, 0xac221b54, 0x24020b78, 0x3c010800, 0xac221b64, 0x34630002,
4740 0xaf634000, 0x0e000605, 0x00808021, 0x3c010800, 0xa0221b68, 0x304200ff,
4741 0x24030002, 0x14430005, 0x00000000, 0x3c020800, 0x8c421b54, 0x0a0005f8,
4742 0xac5000c0, 0x3c020800, 0x8c421b54, 0xac5000bc, 0x8f624434, 0x8f634438,
4743 0x8f644410, 0x3c010800, 0xac221b5c, 0x3c010800, 0xac231b6c, 0x3c010800,
4744 0xac241b58, 0x8fbf0014, 0x8fb00010, 0x03e00008, 0x27bd0018, 0x3c040800,
4745 0x8c870000, 0x3c03aa55, 0x3463aa55, 0x3c06c003, 0xac830000, 0x8cc20000,
4746 0x14430007, 0x24050002, 0x3c0355aa, 0x346355aa, 0xac830000, 0x8cc20000,
4747 0x50430001, 0x24050001, 0x3c020800, 0xac470000, 0x03e00008, 0x00a01021,
4748 0x27bdfff8, 0x18800009, 0x00002821, 0x8f63680c, 0x8f62680c, 0x1043fffe,
4749 0x00000000, 0x24a50001, 0x00a4102a, 0x1440fff9, 0x00000000, 0x03e00008,
4750 0x27bd0008, 0x8f634450, 0x3c020800, 0x8c421b5c, 0x00031c02, 0x0043102b,
4751 0x14400008, 0x3c038000, 0x3c040800, 0x8c841b6c, 0x8f624450, 0x00021c02,
4752 0x0083102b, 0x1040fffc, 0x3c038000, 0xaf634444, 0x8f624444, 0x00431024,
4753 0x1440fffd, 0x00000000, 0x8f624448, 0x03e00008, 0x3042ffff, 0x3082ffff,
4754 0x2442e000, 0x2c422001, 0x14400003, 0x3c024000, 0x0a000648, 0x2402ffff,
4755 0x00822025, 0xaf645c38, 0x8f625c30, 0x30420002, 0x1440fffc, 0x00001021,
4756 0x03e00008, 0x00000000, 0x8f624450, 0x3c030800, 0x8c631b58, 0x0a000651,
4757 0x3042ffff, 0x8f624450, 0x3042ffff, 0x0043102b, 0x1440fffc, 0x00000000,
4758 0x03e00008, 0x00000000, 0x27bdffe0, 0x00802821, 0x3c040800, 0x24841af0,
4759 0x00003021, 0x00003821, 0xafbf0018, 0xafa00010, 0x0e00067c, 0xafa00014,
4760 0x0a000660, 0x00000000, 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x00000000,
4761 0x00000000, 0x00000000, 0x3c020800, 0x34423000, 0x3c030800, 0x34633000,
4762 0x3c040800, 0x348437ff, 0x3c010800, 0xac221b74, 0x24020040, 0x3c010800,
4763 0xac221b78, 0x3c010800, 0xac201b70, 0xac600000, 0x24630004, 0x0083102b,
4764 0x5040fffd, 0xac600000, 0x03e00008, 0x00000000, 0x00804821, 0x8faa0010,
4765 0x3c020800, 0x8c421b70, 0x3c040800, 0x8c841b78, 0x8fab0014, 0x24430001,
4766 0x0044102b, 0x3c010800, 0xac231b70, 0x14400003, 0x00004021, 0x3c010800,
4767 0xac201b70, 0x3c020800, 0x8c421b70, 0x3c030800, 0x8c631b74, 0x91240000,
4768 0x00021140, 0x00431021, 0x00481021, 0x25080001, 0xa0440000, 0x29020008,
4769 0x1440fff4, 0x25290001, 0x3c020800, 0x8c421b70, 0x3c030800, 0x8c631b74,
4770 0x8f64680c, 0x00021140, 0x00431021, 0xac440008, 0xac45000c, 0xac460010,
4771 0xac470014, 0xac4a0018, 0x03e00008, 0xac4b001c, 0x00000000, 0x00000000,
4774 static u32 tg3TsoFwRodata[] = {
4775 0x4d61696e, 0x43707542, 0x00000000, 0x4d61696e, 0x43707541, 0x00000000,
4776 0x00000000, 0x00000000, 0x73746b6f, 0x66666c64, 0x496e0000, 0x73746b6f,
4777 0x66662a2a, 0x00000000, 0x53774576, 0x656e7430, 0x00000000, 0x00000000,
4778 0x00000000, 0x00000000, 0x66617461, 0x6c457272, 0x00000000, 0x00000000,
4782 static u32 tg3TsoFwData[] = {
4783 0x00000000, 0x73746b6f, 0x66666c64, 0x5f76312e, 0x362e3000, 0x00000000,
4784 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
4788 /* 5705 needs a special version of the TSO firmware. */
4789 #define TG3_TSO5_FW_RELEASE_MAJOR 0x1
4790 #define TG3_TSO5_FW_RELASE_MINOR 0x2
4791 #define TG3_TSO5_FW_RELEASE_FIX 0x0
4792 #define TG3_TSO5_FW_START_ADDR 0x00010000
4793 #define TG3_TSO5_FW_TEXT_ADDR 0x00010000
4794 #define TG3_TSO5_FW_TEXT_LEN 0xe90
4795 #define TG3_TSO5_FW_RODATA_ADDR 0x00010e90
4796 #define TG3_TSO5_FW_RODATA_LEN 0x50
4797 #define TG3_TSO5_FW_DATA_ADDR 0x00010f00
4798 #define TG3_TSO5_FW_DATA_LEN 0x20
4799 #define TG3_TSO5_FW_SBSS_ADDR 0x00010f20
4800 #define TG3_TSO5_FW_SBSS_LEN 0x28
4801 #define TG3_TSO5_FW_BSS_ADDR 0x00010f50
4802 #define TG3_TSO5_FW_BSS_LEN 0x88
4804 static u32 tg3Tso5FwText[(TG3_TSO5_FW_TEXT_LEN / 4) + 1] = {
4805 0x0c004003, 0x00000000, 0x00010f04, 0x00000000, 0x10000003, 0x00000000,
4806 0x0000000d, 0x0000000d, 0x3c1d0001, 0x37bde000, 0x03a0f021, 0x3c100001,
4807 0x26100000, 0x0c004010, 0x00000000, 0x0000000d, 0x27bdffe0, 0x3c04fefe,
4808 0xafbf0018, 0x0c0042e8, 0x34840002, 0x0c004364, 0x00000000, 0x3c030001,
4809 0x90630f34, 0x24020002, 0x3c040001, 0x24840e9c, 0x14620003, 0x24050001,
4810 0x3c040001, 0x24840e90, 0x24060002, 0x00003821, 0xafa00010, 0x0c004378,
4811 0xafa00014, 0x0c00402c, 0x00000000, 0x8fbf0018, 0x03e00008, 0x27bd0020,
4812 0x00000000, 0x00000000, 0x27bdffe0, 0xafbf001c, 0xafb20018, 0xafb10014,
4813 0x0c0042d4, 0xafb00010, 0x3c128000, 0x24110001, 0x8f706810, 0x32020400,
4814 0x10400007, 0x00000000, 0x8f641008, 0x00921024, 0x14400003, 0x00000000,
4815 0x0c004064, 0x00000000, 0x3c020001, 0x90420f56, 0x10510003, 0x32020200,
4816 0x1040fff1, 0x00000000, 0x0c0041b4, 0x00000000, 0x08004034, 0x00000000,
4817 0x8fbf001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x03e00008, 0x27bd0020,
4818 0x27bdffe0, 0x3c040001, 0x24840eb0, 0x00002821, 0x00003021, 0x00003821,
4819 0xafbf0018, 0xafa00010, 0x0c004378, 0xafa00014, 0x0000d021, 0x24020130,
4820 0xaf625000, 0x3c010001, 0xa4200f50, 0x3c010001, 0xa0200f57, 0x8fbf0018,
4821 0x03e00008, 0x27bd0020, 0x00000000, 0x00000000, 0x3c030001, 0x24630f60,
4822 0x90620000, 0x27bdfff0, 0x14400003, 0x0080c021, 0x08004073, 0x00004821,
4823 0x3c022000, 0x03021024, 0x10400003, 0x24090002, 0x08004073, 0xa0600000,
4824 0x24090001, 0x00181040, 0x30431f80, 0x346f8008, 0x1520004b, 0x25eb0028,
4825 0x3c040001, 0x00832021, 0x8c848010, 0x3c050001, 0x24a50f7a, 0x00041402,
4826 0xa0a20000, 0x3c010001, 0xa0240f7b, 0x3c020001, 0x00431021, 0x94428014,
4827 0x3c010001, 0xa0220f7c, 0x3c0c0001, 0x01836021, 0x8d8c8018, 0x304200ff,
4828 0x24420008, 0x000220c3, 0x24020001, 0x3c010001, 0xa0220f60, 0x0124102b,
4829 0x1040000c, 0x00003821, 0x24a6000e, 0x01602821, 0x8ca20000, 0x8ca30004,
4830 0x24a50008, 0x24e70001, 0xacc20000, 0xacc30004, 0x00e4102b, 0x1440fff8,
4831 0x24c60008, 0x00003821, 0x3c080001, 0x25080f7b, 0x91060000, 0x3c020001,
4832 0x90420f7c, 0x2503000d, 0x00c32821, 0x00461023, 0x00021fc2, 0x00431021,
4833 0x00021043, 0x1840000c, 0x00002021, 0x91020001, 0x00461023, 0x00021fc2,
4834 0x00431021, 0x00021843, 0x94a20000, 0x24e70001, 0x00822021, 0x00e3102a,
4835 0x1440fffb, 0x24a50002, 0x00041c02, 0x3082ffff, 0x00622021, 0x00041402,
4836 0x00822021, 0x3c02ffff, 0x01821024, 0x3083ffff, 0x00431025, 0x3c010001,
4837 0x080040fa, 0xac220f80, 0x3c050001, 0x24a50f7c, 0x90a20000, 0x3c0c0001,
4838 0x01836021, 0x8d8c8018, 0x000220c2, 0x1080000e, 0x00003821, 0x01603021,
4839 0x24a5000c, 0x8ca20000, 0x8ca30004, 0x24a50008, 0x24e70001, 0xacc20000,
4840 0xacc30004, 0x00e4102b, 0x1440fff8, 0x24c60008, 0x3c050001, 0x24a50f7c,
4841 0x90a20000, 0x30430007, 0x24020004, 0x10620011, 0x28620005, 0x10400005,
4842 0x24020002, 0x10620008, 0x000710c0, 0x080040fa, 0x00000000, 0x24020006,
4843 0x1062000e, 0x000710c0, 0x080040fa, 0x00000000, 0x00a21821, 0x9463000c,
4844 0x004b1021, 0x080040fa, 0xa4430000, 0x000710c0, 0x00a21821, 0x8c63000c,
4845 0x004b1021, 0x080040fa, 0xac430000, 0x00a21821, 0x8c63000c, 0x004b2021,
4846 0x00a21021, 0xac830000, 0x94420010, 0xa4820004, 0x95e70006, 0x3c020001,
4847 0x90420f7c, 0x3c030001, 0x90630f7a, 0x00e2c823, 0x3c020001, 0x90420f7b,
4848 0x24630028, 0x01e34021, 0x24420028, 0x15200012, 0x01e23021, 0x94c2000c,
4849 0x3c010001, 0xa4220f78, 0x94c20004, 0x94c30006, 0x3c010001, 0xa4200f76,
4850 0x3c010001, 0xa4200f72, 0x00021400, 0x00431025, 0x3c010001, 0xac220f6c,
4851 0x95020004, 0x3c010001, 0x08004124, 0xa4220f70, 0x3c020001, 0x94420f70,
4852 0x3c030001, 0x94630f72, 0x00431021, 0xa5020004, 0x3c020001, 0x94420f6c,
4853 0xa4c20004, 0x3c020001, 0x8c420f6c, 0xa4c20006, 0x3c040001, 0x94840f72,
4854 0x3c020001, 0x94420f70, 0x3c0a0001, 0x954a0f76, 0x00441821, 0x3063ffff,
4855 0x0062182a, 0x24020002, 0x1122000b, 0x00832023, 0x3c030001, 0x94630f78,
4856 0x30620009, 0x10400006, 0x3062fff6, 0xa4c2000c, 0x3c020001, 0x94420f78,
4857 0x30420009, 0x01425023, 0x24020001, 0x1122001b, 0x29220002, 0x50400005,
4858 0x24020002, 0x11200007, 0x31a2ffff, 0x08004197, 0x00000000, 0x1122001d,
4859 0x24020016, 0x08004197, 0x31a2ffff, 0x3c0e0001, 0x95ce0f80, 0x10800005,
4860 0x01806821, 0x01c42021, 0x00041c02, 0x3082ffff, 0x00627021, 0x000e1027,
4861 0xa502000a, 0x3c030001, 0x90630f7b, 0x31a2ffff, 0x00e21021, 0x0800418d,
4862 0x00432023, 0x3c020001, 0x94420f80, 0x00442021, 0x00041c02, 0x3082ffff,
4863 0x00622021, 0x00807021, 0x00041027, 0x08004185, 0xa502000a, 0x3c050001,
4864 0x24a50f7a, 0x90a30000, 0x14620002, 0x24e2fff2, 0xa5e20034, 0x90a20000,
4865 0x00e21023, 0xa5020002, 0x3c030001, 0x94630f80, 0x3c020001, 0x94420f5a,
4866 0x30e5ffff, 0x00641821, 0x00451023, 0x00622023, 0x00041c02, 0x3082ffff,
4867 0x00622021, 0x00041027, 0xa502000a, 0x3c030001, 0x90630f7c, 0x24620001,
4868 0x14a20005, 0x00807021, 0x01631021, 0x90420000, 0x08004185, 0x00026200,
4869 0x24620002, 0x14a20003, 0x306200fe, 0x004b1021, 0x944c0000, 0x3c020001,
4870 0x94420f82, 0x3183ffff, 0x3c040001, 0x90840f7b, 0x00431021, 0x00e21021,
4871 0x00442023, 0x008a2021, 0x00041c02, 0x3082ffff, 0x00622021, 0x00041402,
4872 0x00822021, 0x00806821, 0x00041027, 0xa4c20010, 0x31a2ffff, 0x000e1c00,
4873 0x00431025, 0x3c040001, 0x24840f72, 0xade20010, 0x94820000, 0x3c050001,
4874 0x94a50f76, 0x3c030001, 0x8c630f6c, 0x24420001, 0x00b92821, 0xa4820000,
4875 0x3322ffff, 0x00622021, 0x0083182b, 0x3c010001, 0xa4250f76, 0x10600003,
4876 0x24a2ffff, 0x3c010001, 0xa4220f76, 0x3c024000, 0x03021025, 0x3c010001,
4877 0xac240f6c, 0xaf621008, 0x03e00008, 0x27bd0010, 0x3c030001, 0x90630f56,
4878 0x27bdffe8, 0x24020001, 0xafbf0014, 0x10620026, 0xafb00010, 0x8f620cf4,
4879 0x2442ffff, 0x3042007f, 0x00021100, 0x8c434000, 0x3c010001, 0xac230f64,
4880 0x8c434008, 0x24444000, 0x8c5c4004, 0x30620040, 0x14400002, 0x24020088,
4881 0x24020008, 0x3c010001, 0xa4220f68, 0x30620004, 0x10400005, 0x24020001,
4882 0x3c010001, 0xa0220f57, 0x080041d5, 0x00031402, 0x3c010001, 0xa0200f57,
4883 0x00031402, 0x3c010001, 0xa4220f54, 0x9483000c, 0x24020001, 0x3c010001,
4884 0xa4200f50, 0x3c010001, 0xa0220f56, 0x3c010001, 0xa4230f62, 0x24020001,
4885 0x1342001e, 0x00000000, 0x13400005, 0x24020003, 0x13420067, 0x00000000,
4886 0x080042cf, 0x00000000, 0x3c020001, 0x94420f62, 0x241a0001, 0x3c010001,
4887 0xa4200f5e, 0x3c010001, 0xa4200f52, 0x304407ff, 0x00021bc2, 0x00031823,
4888 0x3063003e, 0x34630036, 0x00021242, 0x3042003c, 0x00621821, 0x3c010001,
4889 0xa4240f58, 0x00832021, 0x24630030, 0x3c010001, 0xa4240f5a, 0x3c010001,
4890 0xa4230f5c, 0x3c060001, 0x24c60f52, 0x94c50000, 0x94c30002, 0x3c040001,
4891 0x94840f5a, 0x00651021, 0x0044102a, 0x10400013, 0x3c108000, 0x00a31021,
4892 0xa4c20000, 0x3c02a000, 0xaf620cf4, 0x3c010001, 0xa0200f56, 0x8f641008,
4893 0x00901024, 0x14400003, 0x00000000, 0x0c004064, 0x00000000, 0x8f620cf4,
4894 0x00501024, 0x104000b7, 0x00000000, 0x0800420f, 0x00000000, 0x3c030001,
4895 0x94630f50, 0x00851023, 0xa4c40000, 0x00621821, 0x3042ffff, 0x3c010001,
4896 0xa4230f50, 0xaf620ce8, 0x3c020001, 0x94420f68, 0x34420024, 0xaf620cec,
4897 0x94c30002, 0x3c020001, 0x94420f50, 0x14620012, 0x3c028000, 0x3c108000,
4898 0x3c02a000, 0xaf620cf4, 0x3c010001, 0xa0200f56, 0x8f641008, 0x00901024,
4899 0x14400003, 0x00000000, 0x0c004064, 0x00000000, 0x8f620cf4, 0x00501024,
4900 0x1440fff7, 0x00000000, 0x080042cf, 0x241a0003, 0xaf620cf4, 0x3c108000,
4901 0x8f641008, 0x00901024, 0x14400003, 0x00000000, 0x0c004064, 0x00000000,
4902 0x8f620cf4, 0x00501024, 0x1440fff7, 0x00000000, 0x080042cf, 0x241a0003,
4903 0x3c070001, 0x24e70f50, 0x94e20000, 0x03821021, 0xaf620ce0, 0x3c020001,
4904 0x8c420f64, 0xaf620ce4, 0x3c050001, 0x94a50f54, 0x94e30000, 0x3c040001,
4905 0x94840f58, 0x3c020001, 0x94420f5e, 0x00a32823, 0x00822023, 0x30a6ffff,
4906 0x3083ffff, 0x00c3102b, 0x14400043, 0x00000000, 0x3c020001, 0x94420f5c,
4907 0x00021400, 0x00621025, 0xaf620ce8, 0x94e20000, 0x3c030001, 0x94630f54,
4908 0x00441021, 0xa4e20000, 0x3042ffff, 0x14430021, 0x3c020008, 0x3c020001,
4909 0x90420f57, 0x10400006, 0x3c03000c, 0x3c020001, 0x94420f68, 0x34630624,
4910 0x0800427c, 0x0000d021, 0x3c020001, 0x94420f68, 0x3c030008, 0x34630624,
4911 0x00431025, 0xaf620cec, 0x3c108000, 0x3c02a000, 0xaf620cf4, 0x3c010001,
4912 0xa0200f56, 0x8f641008, 0x00901024, 0x14400003, 0x00000000, 0x0c004064,
4913 0x00000000, 0x8f620cf4, 0x00501024, 0x10400015, 0x00000000, 0x08004283,
4914 0x00000000, 0x3c030001, 0x94630f68, 0x34420624, 0x3c108000, 0x00621825,
4915 0x3c028000, 0xaf630cec, 0xaf620cf4, 0x8f641008, 0x00901024, 0x14400003,
4916 0x00000000, 0x0c004064, 0x00000000, 0x8f620cf4, 0x00501024, 0x1440fff7,
4917 0x00000000, 0x3c010001, 0x080042cf, 0xa4200f5e, 0x3c020001, 0x94420f5c,
4918 0x00021400, 0x00c21025, 0xaf620ce8, 0x3c020001, 0x90420f57, 0x10400009,
4919 0x3c03000c, 0x3c020001, 0x94420f68, 0x34630624, 0x0000d021, 0x00431025,
4920 0xaf620cec, 0x080042c1, 0x3c108000, 0x3c020001, 0x94420f68, 0x3c030008,
4921 0x34630604, 0x00431025, 0xaf620cec, 0x3c020001, 0x94420f5e, 0x00451021,
4922 0x3c010001, 0xa4220f5e, 0x3c108000, 0x3c02a000, 0xaf620cf4, 0x3c010001,
4923 0xa0200f56, 0x8f641008, 0x00901024, 0x14400003, 0x00000000, 0x0c004064,
4924 0x00000000, 0x8f620cf4, 0x00501024, 0x1440fff7, 0x00000000, 0x8fbf0014,
4925 0x8fb00010, 0x03e00008, 0x27bd0018, 0x00000000, 0x27bdffe0, 0x3c040001,
4926 0x24840ec0, 0x00002821, 0x00003021, 0x00003821, 0xafbf0018, 0xafa00010,
4927 0x0c004378, 0xafa00014, 0x0000d021, 0x24020130, 0xaf625000, 0x3c010001,
4928 0xa4200f50, 0x3c010001, 0xa0200f57, 0x8fbf0018, 0x03e00008, 0x27bd0020,
4929 0x27bdffe8, 0x3c1bc000, 0xafbf0014, 0xafb00010, 0xaf60680c, 0x8f626804,
4930 0x34420082, 0xaf626804, 0x8f634000, 0x24020b50, 0x3c010001, 0xac220f20,
4931 0x24020b78, 0x3c010001, 0xac220f30, 0x34630002, 0xaf634000, 0x0c004315,
4932 0x00808021, 0x3c010001, 0xa0220f34, 0x304200ff, 0x24030002, 0x14430005,
4933 0x00000000, 0x3c020001, 0x8c420f20, 0x08004308, 0xac5000c0, 0x3c020001,
4934 0x8c420f20, 0xac5000bc, 0x8f624434, 0x8f634438, 0x8f644410, 0x3c010001,
4935 0xac220f28, 0x3c010001, 0xac230f38, 0x3c010001, 0xac240f24, 0x8fbf0014,
4936 0x8fb00010, 0x03e00008, 0x27bd0018, 0x03e00008, 0x24020001, 0x27bdfff8,
4937 0x18800009, 0x00002821, 0x8f63680c, 0x8f62680c, 0x1043fffe, 0x00000000,
4938 0x24a50001, 0x00a4102a, 0x1440fff9, 0x00000000, 0x03e00008, 0x27bd0008,
4939 0x8f634450, 0x3c020001, 0x8c420f28, 0x00031c02, 0x0043102b, 0x14400008,
4940 0x3c038000, 0x3c040001, 0x8c840f38, 0x8f624450, 0x00021c02, 0x0083102b,
4941 0x1040fffc, 0x3c038000, 0xaf634444, 0x8f624444, 0x00431024, 0x1440fffd,
4942 0x00000000, 0x8f624448, 0x03e00008, 0x3042ffff, 0x3082ffff, 0x2442e000,
4943 0x2c422001, 0x14400003, 0x3c024000, 0x08004347, 0x2402ffff, 0x00822025,
4944 0xaf645c38, 0x8f625c30, 0x30420002, 0x1440fffc, 0x00001021, 0x03e00008,
4945 0x00000000, 0x8f624450, 0x3c030001, 0x8c630f24, 0x08004350, 0x3042ffff,
4946 0x8f624450, 0x3042ffff, 0x0043102b, 0x1440fffc, 0x00000000, 0x03e00008,
4947 0x00000000, 0x27bdffe0, 0x00802821, 0x3c040001, 0x24840ed0, 0x00003021,
4948 0x00003821, 0xafbf0018, 0xafa00010, 0x0c004378, 0xafa00014, 0x0800435f,
4949 0x00000000, 0x8fbf0018, 0x03e00008, 0x27bd0020, 0x3c020001, 0x3442d600,
4950 0x3c030001, 0x3463d600, 0x3c040001, 0x3484ddff, 0x3c010001, 0xac220f40,
4951 0x24020040, 0x3c010001, 0xac220f44, 0x3c010001, 0xac200f3c, 0xac600000,
4952 0x24630004, 0x0083102b, 0x5040fffd, 0xac600000, 0x03e00008, 0x00000000,
4953 0x00804821, 0x8faa0010, 0x3c020001, 0x8c420f3c, 0x3c040001, 0x8c840f44,
4954 0x8fab0014, 0x24430001, 0x0044102b, 0x3c010001, 0xac230f3c, 0x14400003,
4955 0x00004021, 0x3c010001, 0xac200f3c, 0x3c020001, 0x8c420f3c, 0x3c030001,
4956 0x8c630f40, 0x91240000, 0x00021140, 0x00431021, 0x00481021, 0x25080001,
4957 0xa0440000, 0x29020008, 0x1440fff4, 0x25290001, 0x3c020001, 0x8c420f3c,
4958 0x3c030001, 0x8c630f40, 0x8f64680c, 0x00021140, 0x00431021, 0xac440008,
4959 0xac45000c, 0xac460010, 0xac470014, 0xac4a0018, 0x03e00008, 0xac4b001c,
4960 0x00000000, 0x00000000, 0x00000000,
4963 static u32 tg3Tso5FwRodata[(TG3_TSO5_FW_RODATA_LEN / 4) + 1] = {
4964 0x4d61696e, 0x43707542, 0x00000000, 0x4d61696e, 0x43707541, 0x00000000,
4965 0x00000000, 0x00000000, 0x73746b6f, 0x66666c64, 0x00000000, 0x00000000,
4966 0x73746b6f, 0x66666c64, 0x00000000, 0x00000000, 0x66617461, 0x6c457272,
4967 0x00000000, 0x00000000, 0x00000000,
4970 static u32 tg3Tso5FwData[(TG3_TSO5_FW_DATA_LEN / 4) + 1] = {
4971 0x00000000, 0x73746b6f, 0x66666c64, 0x5f76312e, 0x322e3000, 0x00000000,
4972 0x00000000, 0x00000000, 0x00000000,
4975 /* tp->lock is held. */
4976 static int tg3_load_tso_firmware(struct tg3 *tp)
4978 struct fw_info info;
4979 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
4982 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
4985 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
4986 info.text_base = TG3_TSO5_FW_TEXT_ADDR;
4987 info.text_len = TG3_TSO5_FW_TEXT_LEN;
4988 info.text_data = &tg3Tso5FwText[0];
4989 info.rodata_base = TG3_TSO5_FW_RODATA_ADDR;
4990 info.rodata_len = TG3_TSO5_FW_RODATA_LEN;
4991 info.rodata_data = &tg3Tso5FwRodata[0];
4992 info.data_base = TG3_TSO5_FW_DATA_ADDR;
4993 info.data_len = TG3_TSO5_FW_DATA_LEN;
4994 info.data_data = &tg3Tso5FwData[0];
4995 cpu_base = RX_CPU_BASE;
4996 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
4997 cpu_scratch_size = (info.text_len +
5000 TG3_TSO5_FW_SBSS_LEN +
5001 TG3_TSO5_FW_BSS_LEN);
5003 info.text_base = TG3_TSO_FW_TEXT_ADDR;
5004 info.text_len = TG3_TSO_FW_TEXT_LEN;
5005 info.text_data = &tg3TsoFwText[0];
5006 info.rodata_base = TG3_TSO_FW_RODATA_ADDR;
5007 info.rodata_len = TG3_TSO_FW_RODATA_LEN;
5008 info.rodata_data = &tg3TsoFwRodata[0];
5009 info.data_base = TG3_TSO_FW_DATA_ADDR;
5010 info.data_len = TG3_TSO_FW_DATA_LEN;
5011 info.data_data = &tg3TsoFwData[0];
5012 cpu_base = TX_CPU_BASE;
5013 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
5014 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
5017 err = tg3_load_firmware_cpu(tp, cpu_base,
5018 cpu_scratch_base, cpu_scratch_size,
5023 /* Now startup the cpu. */
5024 tw32(cpu_base + CPU_STATE, 0xffffffff);
5025 tw32_f(cpu_base + CPU_PC, info.text_base);
5027 for (i = 0; i < 5; i++) {
5028 if (tr32(cpu_base + CPU_PC) == info.text_base)
5030 tw32(cpu_base + CPU_STATE, 0xffffffff);
5031 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
5032 tw32_f(cpu_base + CPU_PC, info.text_base);
5036 printk(KERN_ERR PFX "tg3_load_tso_firmware fails for %s "
5037 "to set CPU PC, is %08x should be %08x\n",
5038 tp->dev->name, tr32(cpu_base + CPU_PC),
5042 tw32(cpu_base + CPU_STATE, 0xffffffff);
5043 tw32_f(cpu_base + CPU_MODE, 0x00000000);
5047 #endif /* TG3_TSO_SUPPORT != 0 */
5049 /* tp->lock is held. */
5050 static void __tg3_set_mac_addr(struct tg3 *tp)
5052 u32 addr_high, addr_low;
5055 addr_high = ((tp->dev->dev_addr[0] << 8) |
5056 tp->dev->dev_addr[1]);
5057 addr_low = ((tp->dev->dev_addr[2] << 24) |
5058 (tp->dev->dev_addr[3] << 16) |
5059 (tp->dev->dev_addr[4] << 8) |
5060 (tp->dev->dev_addr[5] << 0));
5061 for (i = 0; i < 4; i++) {
5062 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
5063 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
5066 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
5067 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
5068 for (i = 0; i < 12; i++) {
5069 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
5070 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
5074 addr_high = (tp->dev->dev_addr[0] +
5075 tp->dev->dev_addr[1] +
5076 tp->dev->dev_addr[2] +
5077 tp->dev->dev_addr[3] +
5078 tp->dev->dev_addr[4] +
5079 tp->dev->dev_addr[5]) &
5080 TX_BACKOFF_SEED_MASK;
5081 tw32(MAC_TX_BACKOFF_SEED, addr_high);
5084 static int tg3_set_mac_addr(struct net_device *dev, void *p)
5086 struct tg3 *tp = netdev_priv(dev);
5087 struct sockaddr *addr = p;
5089 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
5091 spin_lock_bh(&tp->lock);
5092 __tg3_set_mac_addr(tp);
5093 spin_unlock_bh(&tp->lock);
5098 /* tp->lock is held. */
5099 static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
5100 dma_addr_t mapping, u32 maxlen_flags,
5104 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
5105 ((u64) mapping >> 32));
5107 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
5108 ((u64) mapping & 0xffffffff));
5110 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
5113 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
5115 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
5119 static void __tg3_set_rx_mode(struct net_device *);
5120 static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
5122 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
5123 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
5124 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
5125 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
5126 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
5127 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
5128 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
5130 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
5131 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
5132 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
5133 u32 val = ec->stats_block_coalesce_usecs;
5135 if (!netif_carrier_ok(tp->dev))
5138 tw32(HOSTCC_STAT_COAL_TICKS, val);
5142 /* tp->lock is held. */
5143 static int tg3_reset_hw(struct tg3 *tp)
5145 u32 val, rdmac_mode;
5148 tg3_disable_ints(tp);
5152 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
5154 if (tp->tg3_flags & TG3_FLAG_INIT_COMPLETE) {
5155 tg3_abort_hw(tp, 1);
5158 err = tg3_chip_reset(tp);
5162 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
5164 /* This works around an issue with Athlon chipsets on
5165 * B3 tigon3 silicon. This bit has no effect on any
5166 * other revision. But do not set this on PCI Express
5169 if (!(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
5170 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
5171 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
5173 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
5174 (tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
5175 val = tr32(TG3PCI_PCISTATE);
5176 val |= PCISTATE_RETRY_SAME_DMA;
5177 tw32(TG3PCI_PCISTATE, val);
5180 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
5181 /* Enable some hw fixes. */
5182 val = tr32(TG3PCI_MSI_DATA);
5183 val |= (1 << 26) | (1 << 28) | (1 << 29);
5184 tw32(TG3PCI_MSI_DATA, val);
5187 /* Descriptor ring init may make accesses to the
5188 * NIC SRAM area to setup the TX descriptors, so we
5189 * can only do this after the hardware has been
5190 * successfully reset.
5194 /* This value is determined during the probe time DMA
5195 * engine test, tg3_test_dma.
5197 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
5199 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
5200 GRC_MODE_4X_NIC_SEND_RINGS |
5201 GRC_MODE_NO_TX_PHDR_CSUM |
5202 GRC_MODE_NO_RX_PHDR_CSUM);
5203 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
5204 if (tp->tg3_flags & TG3_FLAG_NO_TX_PSEUDO_CSUM)
5205 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
5206 if (tp->tg3_flags & TG3_FLAG_NO_RX_PSEUDO_CSUM)
5207 tp->grc_mode |= GRC_MODE_NO_RX_PHDR_CSUM;
5211 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
5213 /* Setup the timer prescalar register. Clock is always 66Mhz. */
5214 val = tr32(GRC_MISC_CFG);
5216 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
5217 tw32(GRC_MISC_CFG, val);
5219 /* Initialize MBUF/DESC pool. */
5220 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) {
5222 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
5223 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
5224 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
5225 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
5227 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
5228 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
5229 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
5231 #if TG3_TSO_SUPPORT != 0
5232 else if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
5235 fw_len = (TG3_TSO5_FW_TEXT_LEN +
5236 TG3_TSO5_FW_RODATA_LEN +
5237 TG3_TSO5_FW_DATA_LEN +
5238 TG3_TSO5_FW_SBSS_LEN +
5239 TG3_TSO5_FW_BSS_LEN);
5240 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
5241 tw32(BUFMGR_MB_POOL_ADDR,
5242 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
5243 tw32(BUFMGR_MB_POOL_SIZE,
5244 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
5248 if (!(tp->tg3_flags & TG3_FLAG_JUMBO_ENABLE)) {
5249 tw32(BUFMGR_MB_RDMA_LOW_WATER,
5250 tp->bufmgr_config.mbuf_read_dma_low_water);
5251 tw32(BUFMGR_MB_MACRX_LOW_WATER,
5252 tp->bufmgr_config.mbuf_mac_rx_low_water);
5253 tw32(BUFMGR_MB_HIGH_WATER,
5254 tp->bufmgr_config.mbuf_high_water);
5256 tw32(BUFMGR_MB_RDMA_LOW_WATER,
5257 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
5258 tw32(BUFMGR_MB_MACRX_LOW_WATER,
5259 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
5260 tw32(BUFMGR_MB_HIGH_WATER,
5261 tp->bufmgr_config.mbuf_high_water_jumbo);
5263 tw32(BUFMGR_DMA_LOW_WATER,
5264 tp->bufmgr_config.dma_low_water);
5265 tw32(BUFMGR_DMA_HIGH_WATER,
5266 tp->bufmgr_config.dma_high_water);
5268 tw32(BUFMGR_MODE, BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE);
5269 for (i = 0; i < 2000; i++) {
5270 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
5275 printk(KERN_ERR PFX "tg3_reset_hw cannot enable BUFMGR for %s.\n",
5280 /* Setup replenish threshold. */
5281 tw32(RCVBDI_STD_THRESH, tp->rx_pending / 8);
5283 /* Initialize TG3_BDINFO's at:
5284 * RCVDBDI_STD_BD: standard eth size rx ring
5285 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
5286 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
5289 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
5290 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
5291 * ring attribute flags
5292 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
5294 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
5295 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
5297 * The size of each ring is fixed in the firmware, but the location is
5300 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
5301 ((u64) tp->rx_std_mapping >> 32));
5302 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
5303 ((u64) tp->rx_std_mapping & 0xffffffff));
5304 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
5305 NIC_SRAM_RX_BUFFER_DESC);
5307 /* Don't even try to program the JUMBO/MINI buffer descriptor
5310 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
5311 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS,
5312 RX_STD_MAX_SIZE_5705 << BDINFO_FLAGS_MAXLEN_SHIFT);
5314 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS,
5315 RX_STD_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT);
5317 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
5318 BDINFO_FLAGS_DISABLED);
5320 /* Setup replenish threshold. */
5321 tw32(RCVBDI_JUMBO_THRESH, tp->rx_jumbo_pending / 8);
5323 if (tp->tg3_flags & TG3_FLAG_JUMBO_ENABLE) {
5324 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
5325 ((u64) tp->rx_jumbo_mapping >> 32));
5326 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
5327 ((u64) tp->rx_jumbo_mapping & 0xffffffff));
5328 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
5329 RX_JUMBO_MAX_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT);
5330 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
5331 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
5333 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
5334 BDINFO_FLAGS_DISABLED);
5339 /* There is only one send ring on 5705/5750, no need to explicitly
5340 * disable the others.
5342 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
5343 /* Clear out send RCB ring in SRAM. */
5344 for (i = NIC_SRAM_SEND_RCB; i < NIC_SRAM_RCV_RET_RCB; i += TG3_BDINFO_SIZE)
5345 tg3_write_mem(tp, i + TG3_BDINFO_MAXLEN_FLAGS,
5346 BDINFO_FLAGS_DISABLED);
5351 tw32_mailbox(MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW, 0);
5352 tw32_tx_mbox(MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW, 0);
5354 tg3_set_bdinfo(tp, NIC_SRAM_SEND_RCB,
5355 tp->tx_desc_mapping,
5356 (TG3_TX_RING_SIZE <<
5357 BDINFO_FLAGS_MAXLEN_SHIFT),
5358 NIC_SRAM_TX_BUFFER_DESC);
5360 /* There is only one receive return ring on 5705/5750, no need
5361 * to explicitly disable the others.
5363 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
5364 for (i = NIC_SRAM_RCV_RET_RCB; i < NIC_SRAM_STATS_BLK;
5365 i += TG3_BDINFO_SIZE) {
5366 tg3_write_mem(tp, i + TG3_BDINFO_MAXLEN_FLAGS,
5367 BDINFO_FLAGS_DISABLED);
5372 tw32_rx_mbox(MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW, 0);
5374 tg3_set_bdinfo(tp, NIC_SRAM_RCV_RET_RCB,
5376 (TG3_RX_RCB_RING_SIZE(tp) <<
5377 BDINFO_FLAGS_MAXLEN_SHIFT),
5380 tp->rx_std_ptr = tp->rx_pending;
5381 tw32_rx_mbox(MAILBOX_RCV_STD_PROD_IDX + TG3_64BIT_REG_LOW,
5384 tp->rx_jumbo_ptr = (tp->tg3_flags & TG3_FLAG_JUMBO_ENABLE) ?
5385 tp->rx_jumbo_pending : 0;
5386 tw32_rx_mbox(MAILBOX_RCV_JUMBO_PROD_IDX + TG3_64BIT_REG_LOW,
5389 /* Initialize MAC address and backoff seed. */
5390 __tg3_set_mac_addr(tp);
5392 /* MTU + ethernet header + FCS + optional VLAN tag */
5393 tw32(MAC_RX_MTU_SIZE, tp->dev->mtu + ETH_HLEN + 8);
5395 /* The slot time is changed by tg3_setup_phy if we
5396 * run at gigabit with half duplex.
5398 tw32(MAC_TX_LENGTHS,
5399 (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5400 (6 << TX_LENGTHS_IPG_SHIFT) |
5401 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
5403 /* Receive rules. */
5404 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
5405 tw32(RCVLPC_CONFIG, 0x0181);
5407 /* Calculate RDMAC_MODE setting early, we need it to determine
5408 * the RCVLPC_STATE_ENABLE mask.
5410 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
5411 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
5412 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
5413 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
5414 RDMAC_MODE_LNGREAD_ENAB);
5415 if (tp->tg3_flags & TG3_FLAG_SPLIT_MODE)
5416 rdmac_mode |= RDMAC_MODE_SPLIT_ENABLE;
5418 /* If statement applies to 5705 and 5750 PCI devices only */
5419 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
5420 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
5421 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)) {
5422 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE &&
5423 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
5424 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
5425 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
5426 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
5427 !(tp->tg3_flags2 & TG3_FLG2_IS_5788)) {
5428 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
5432 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)
5433 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
5435 #if TG3_TSO_SUPPORT != 0
5436 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
5437 rdmac_mode |= (1 << 27);
5440 /* Receive/send statistics. */
5441 if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
5442 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
5443 val = tr32(RCVLPC_STATS_ENABLE);
5444 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
5445 tw32(RCVLPC_STATS_ENABLE, val);
5447 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
5449 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
5450 tw32(SNDDATAI_STATSENAB, 0xffffff);
5451 tw32(SNDDATAI_STATSCTRL,
5452 (SNDDATAI_SCTRL_ENABLE |
5453 SNDDATAI_SCTRL_FASTUPD));
5455 /* Setup host coalescing engine. */
5456 tw32(HOSTCC_MODE, 0);
5457 for (i = 0; i < 2000; i++) {
5458 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
5463 __tg3_set_coalesce(tp, &tp->coal);
5465 /* set status block DMA address */
5466 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
5467 ((u64) tp->status_mapping >> 32));
5468 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
5469 ((u64) tp->status_mapping & 0xffffffff));
5471 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
5472 /* Status/statistics block address. See tg3_timer,
5473 * the tg3_periodic_fetch_stats call there, and
5474 * tg3_get_stats to see how this works for 5705/5750 chips.
5476 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
5477 ((u64) tp->stats_mapping >> 32));
5478 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
5479 ((u64) tp->stats_mapping & 0xffffffff));
5480 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
5481 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
5484 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
5486 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
5487 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
5488 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
5489 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
5491 /* Clear statistics/status block in chip, and status block in ram. */
5492 for (i = NIC_SRAM_STATS_BLK;
5493 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
5495 tg3_write_mem(tp, i, 0);
5498 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
5500 tp->mac_mode = MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
5501 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
5502 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
5505 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
5506 * If TG3_FLAG_EEPROM_WRITE_PROT is set, we should read the
5507 * register to preserve the GPIO settings for LOMs. The GPIOs,
5508 * whether used as inputs or outputs, are set by boot code after
5511 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
5514 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE2 |
5515 GRC_LCLCTRL_GPIO_OUTPUT0 | GRC_LCLCTRL_GPIO_OUTPUT2;
5517 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
5518 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
5519 GRC_LCLCTRL_GPIO_OUTPUT3;
5521 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
5523 /* GPIO1 must be driven high for eeprom write protect */
5524 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
5525 GRC_LCLCTRL_GPIO_OUTPUT1);
5527 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
5530 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0);
5531 tr32(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW);
5534 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
5535 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
5539 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
5540 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
5541 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
5542 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
5543 WDMAC_MODE_LNGREAD_ENAB);
5545 /* If statement applies to 5705 and 5750 PCI devices only */
5546 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
5547 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) ||
5548 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) {
5549 if ((tp->tg3_flags & TG3_FLG2_TSO_CAPABLE) &&
5550 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
5551 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
5553 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
5554 !(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
5555 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
5556 val |= WDMAC_MODE_RX_ACCEL;
5560 tw32_f(WDMAC_MODE, val);
5563 if ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) != 0) {
5564 val = tr32(TG3PCI_X_CAPS);
5565 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
5566 val &= ~PCIX_CAPS_BURST_MASK;
5567 val |= (PCIX_CAPS_MAX_BURST_CPIOB << PCIX_CAPS_BURST_SHIFT);
5568 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
5569 val &= ~(PCIX_CAPS_SPLIT_MASK | PCIX_CAPS_BURST_MASK);
5570 val |= (PCIX_CAPS_MAX_BURST_CPIOB << PCIX_CAPS_BURST_SHIFT);
5571 if (tp->tg3_flags & TG3_FLAG_SPLIT_MODE)
5572 val |= (tp->split_mode_max_reqs <<
5573 PCIX_CAPS_SPLIT_SHIFT);
5575 tw32(TG3PCI_X_CAPS, val);
5578 tw32_f(RDMAC_MODE, rdmac_mode);
5581 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
5582 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
5583 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
5584 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
5585 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
5586 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
5587 tw32(RCVDBDI_MODE, RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ);
5588 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
5589 #if TG3_TSO_SUPPORT != 0
5590 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO)
5591 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
5593 tw32(SNDBDI_MODE, SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE);
5594 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
5596 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
5597 err = tg3_load_5701_a0_firmware_fix(tp);
5602 #if TG3_TSO_SUPPORT != 0
5603 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) {
5604 err = tg3_load_tso_firmware(tp);
5610 tp->tx_mode = TX_MODE_ENABLE;
5611 tw32_f(MAC_TX_MODE, tp->tx_mode);
5614 tp->rx_mode = RX_MODE_ENABLE;
5615 tw32_f(MAC_RX_MODE, tp->rx_mode);
5618 if (tp->link_config.phy_is_low_power) {
5619 tp->link_config.phy_is_low_power = 0;
5620 tp->link_config.speed = tp->link_config.orig_speed;
5621 tp->link_config.duplex = tp->link_config.orig_duplex;
5622 tp->link_config.autoneg = tp->link_config.orig_autoneg;
5625 tp->mi_mode = MAC_MI_MODE_BASE;
5626 tw32_f(MAC_MI_MODE, tp->mi_mode);
5629 tw32(MAC_LED_CTRL, tp->led_ctrl);
5631 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
5632 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
5633 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
5636 tw32_f(MAC_RX_MODE, tp->rx_mode);
5639 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
5640 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
5641 !(tp->tg3_flags2 & TG3_FLG2_SERDES_PREEMPHASIS)) {
5642 /* Set drive transmission level to 1.2V */
5643 /* only if the signal pre-emphasis bit is not set */
5644 val = tr32(MAC_SERDES_CFG);
5647 tw32(MAC_SERDES_CFG, val);
5649 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
5650 tw32(MAC_SERDES_CFG, 0x616000);
5653 /* Prevent chip from dropping frames when flow control
5656 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, 2);
5658 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
5659 (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
5660 /* Use hardware link auto-negotiation */
5661 tp->tg3_flags2 |= TG3_FLG2_HW_AUTONEG;
5664 err = tg3_setup_phy(tp, 1);
5668 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
5671 /* Clear CRC stats. */
5672 if (!tg3_readphy(tp, 0x1e, &tmp)) {
5673 tg3_writephy(tp, 0x1e, tmp | 0x8000);
5674 tg3_readphy(tp, 0x14, &tmp);
5678 __tg3_set_rx_mode(tp->dev);
5680 /* Initialize receive rules. */
5681 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
5682 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
5683 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
5684 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
5686 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
5690 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF)
5694 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
5696 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
5698 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
5700 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
5702 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
5704 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
5706 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
5708 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
5710 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
5712 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
5714 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
5716 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
5718 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
5720 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
5728 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
5733 /* Called at device open time to get the chip ready for
5734 * packet processing. Invoked with tp->lock held.
5736 static int tg3_init_hw(struct tg3 *tp)
5740 /* Force the chip into D0. */
5741 err = tg3_set_power_state(tp, 0);
5745 tg3_switch_clocks(tp);
5747 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
5749 err = tg3_reset_hw(tp);
5755 #define TG3_STAT_ADD32(PSTAT, REG) \
5756 do { u32 __val = tr32(REG); \
5757 (PSTAT)->low += __val; \
5758 if ((PSTAT)->low < __val) \
5759 (PSTAT)->high += 1; \
5762 static void tg3_periodic_fetch_stats(struct tg3 *tp)
5764 struct tg3_hw_stats *sp = tp->hw_stats;
5766 if (!netif_carrier_ok(tp->dev))
5769 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
5770 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
5771 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
5772 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
5773 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
5774 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
5775 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
5776 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
5777 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
5778 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
5779 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
5780 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
5781 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
5783 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
5784 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
5785 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
5786 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
5787 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
5788 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
5789 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
5790 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
5791 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
5792 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
5793 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
5794 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
5795 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
5796 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
5799 static void tg3_timer(unsigned long __opaque)
5801 struct tg3 *tp = (struct tg3 *) __opaque;
5803 spin_lock(&tp->lock);
5805 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
5806 /* All of this garbage is because when using non-tagged
5807 * IRQ status the mailbox/status_block protocol the chip
5808 * uses with the cpu is race prone.
5810 if (tp->hw_status->status & SD_STATUS_UPDATED) {
5811 tw32(GRC_LOCAL_CTRL,
5812 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
5814 tw32(HOSTCC_MODE, tp->coalesce_mode |
5815 (HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW));
5818 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
5819 tp->tg3_flags2 |= TG3_FLG2_RESTART_TIMER;
5820 spin_unlock(&tp->lock);
5821 schedule_work(&tp->reset_task);
5826 /* This part only runs once per second. */
5827 if (!--tp->timer_counter) {
5828 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
5829 tg3_periodic_fetch_stats(tp);
5831 if (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) {
5835 mac_stat = tr32(MAC_STATUS);
5838 if (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) {
5839 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
5841 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
5845 tg3_setup_phy(tp, 0);
5846 } else if (tp->tg3_flags & TG3_FLAG_POLL_SERDES) {
5847 u32 mac_stat = tr32(MAC_STATUS);
5850 if (netif_carrier_ok(tp->dev) &&
5851 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
5854 if (! netif_carrier_ok(tp->dev) &&
5855 (mac_stat & (MAC_STATUS_PCS_SYNCED |
5856 MAC_STATUS_SIGNAL_DET))) {
5862 ~MAC_MODE_PORT_MODE_MASK));
5864 tw32_f(MAC_MODE, tp->mac_mode);
5866 tg3_setup_phy(tp, 0);
5870 tp->timer_counter = tp->timer_multiplier;
5873 /* Heartbeat is only sent once every 120 seconds. */
5874 if (!--tp->asf_counter) {
5875 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
5878 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_ALIVE);
5879 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
5880 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, 3);
5881 val = tr32(GRC_RX_CPU_EVENT);
5883 tw32(GRC_RX_CPU_EVENT, val);
5885 tp->asf_counter = tp->asf_multiplier;
5888 spin_unlock(&tp->lock);
5890 tp->timer.expires = jiffies + tp->timer_offset;
5891 add_timer(&tp->timer);
5894 static int tg3_test_interrupt(struct tg3 *tp)
5896 struct net_device *dev = tp->dev;
5900 if (!netif_running(dev))
5903 tg3_disable_ints(tp);
5905 free_irq(tp->pdev->irq, dev);
5907 err = request_irq(tp->pdev->irq, tg3_test_isr,
5908 SA_SHIRQ | SA_SAMPLE_RANDOM, dev->name, dev);
5912 tg3_enable_ints(tp);
5914 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
5917 for (i = 0; i < 5; i++) {
5918 int_mbox = tr32(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW);
5924 tg3_disable_ints(tp);
5926 free_irq(tp->pdev->irq, dev);
5928 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI)
5929 err = request_irq(tp->pdev->irq, tg3_msi,
5930 SA_SAMPLE_RANDOM, dev->name, dev);
5932 irqreturn_t (*fn)(int, void *, struct pt_regs *)=tg3_interrupt;
5933 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
5934 fn = tg3_interrupt_tagged;
5935 err = request_irq(tp->pdev->irq, fn,
5936 SA_SHIRQ | SA_SAMPLE_RANDOM, dev->name, dev);
5948 /* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
5949 * successfully restored
5951 static int tg3_test_msi(struct tg3 *tp)
5953 struct net_device *dev = tp->dev;
5957 if (!(tp->tg3_flags2 & TG3_FLG2_USING_MSI))
5960 /* Turn off SERR reporting in case MSI terminates with Master
5963 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
5964 pci_write_config_word(tp->pdev, PCI_COMMAND,
5965 pci_cmd & ~PCI_COMMAND_SERR);
5967 err = tg3_test_interrupt(tp);
5969 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
5974 /* other failures */
5978 /* MSI test failed, go back to INTx mode */
5979 printk(KERN_WARNING PFX "%s: No interrupt was generated using MSI, "
5980 "switching to INTx mode. Please report this failure to "
5981 "the PCI maintainer and include system chipset information.\n",
5984 free_irq(tp->pdev->irq, dev);
5985 pci_disable_msi(tp->pdev);
5987 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
5990 irqreturn_t (*fn)(int, void *, struct pt_regs *)=tg3_interrupt;
5991 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
5992 fn = tg3_interrupt_tagged;
5994 err = request_irq(tp->pdev->irq, fn,
5995 SA_SHIRQ | SA_SAMPLE_RANDOM, dev->name, dev);
6000 /* Need to reset the chip because the MSI cycle may have terminated
6001 * with Master Abort.
6003 tg3_full_lock(tp, 1);
6005 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
6006 err = tg3_init_hw(tp);
6008 tg3_full_unlock(tp);
6011 free_irq(tp->pdev->irq, dev);
6016 static int tg3_open(struct net_device *dev)
6018 struct tg3 *tp = netdev_priv(dev);
6021 tg3_full_lock(tp, 0);
6023 tg3_disable_ints(tp);
6024 tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE;
6026 tg3_full_unlock(tp);
6028 /* The placement of this call is tied
6029 * to the setup and use of Host TX descriptors.
6031 err = tg3_alloc_consistent(tp);
6035 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
6036 (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5750_AX) &&
6037 (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5750_BX)) {
6038 /* All MSI supporting chips should support tagged
6039 * status. Assert that this is the case.
6041 if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)) {
6042 printk(KERN_WARNING PFX "%s: MSI without TAGGED? "
6043 "Not using MSI.\n", tp->dev->name);
6044 } else if (pci_enable_msi(tp->pdev) == 0) {
6047 msi_mode = tr32(MSGINT_MODE);
6048 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
6049 tp->tg3_flags2 |= TG3_FLG2_USING_MSI;
6052 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI)
6053 err = request_irq(tp->pdev->irq, tg3_msi,
6054 SA_SAMPLE_RANDOM, dev->name, dev);
6056 irqreturn_t (*fn)(int, void *, struct pt_regs *)=tg3_interrupt;
6057 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
6058 fn = tg3_interrupt_tagged;
6060 err = request_irq(tp->pdev->irq, fn,
6061 SA_SHIRQ | SA_SAMPLE_RANDOM, dev->name, dev);
6065 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
6066 pci_disable_msi(tp->pdev);
6067 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
6069 tg3_free_consistent(tp);
6073 tg3_full_lock(tp, 0);
6075 err = tg3_init_hw(tp);
6077 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
6080 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS)
6081 tp->timer_offset = HZ;
6083 tp->timer_offset = HZ / 10;
6085 BUG_ON(tp->timer_offset > HZ);
6086 tp->timer_counter = tp->timer_multiplier =
6087 (HZ / tp->timer_offset);
6088 tp->asf_counter = tp->asf_multiplier =
6089 ((HZ / tp->timer_offset) * 120);
6091 init_timer(&tp->timer);
6092 tp->timer.expires = jiffies + tp->timer_offset;
6093 tp->timer.data = (unsigned long) tp;
6094 tp->timer.function = tg3_timer;
6097 tg3_full_unlock(tp);
6100 free_irq(tp->pdev->irq, dev);
6101 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
6102 pci_disable_msi(tp->pdev);
6103 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
6105 tg3_free_consistent(tp);
6109 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
6110 err = tg3_test_msi(tp);
6113 tg3_full_lock(tp, 0);
6115 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
6116 pci_disable_msi(tp->pdev);
6117 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
6119 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
6121 tg3_free_consistent(tp);
6123 tg3_full_unlock(tp);
6129 tg3_full_lock(tp, 0);
6131 add_timer(&tp->timer);
6132 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
6133 tg3_enable_ints(tp);
6135 tg3_full_unlock(tp);
6137 netif_start_queue(dev);
6143 /*static*/ void tg3_dump_state(struct tg3 *tp)
6145 u32 val32, val32_2, val32_3, val32_4, val32_5;
6149 pci_read_config_word(tp->pdev, PCI_STATUS, &val16);
6150 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE, &val32);
6151 printk("DEBUG: PCI status [%04x] TG3PCI state[%08x]\n",
6155 printk("DEBUG: MAC_MODE[%08x] MAC_STATUS[%08x]\n",
6156 tr32(MAC_MODE), tr32(MAC_STATUS));
6157 printk(" MAC_EVENT[%08x] MAC_LED_CTRL[%08x]\n",
6158 tr32(MAC_EVENT), tr32(MAC_LED_CTRL));
6159 printk("DEBUG: MAC_TX_MODE[%08x] MAC_TX_STATUS[%08x]\n",
6160 tr32(MAC_TX_MODE), tr32(MAC_TX_STATUS));
6161 printk(" MAC_RX_MODE[%08x] MAC_RX_STATUS[%08x]\n",
6162 tr32(MAC_RX_MODE), tr32(MAC_RX_STATUS));
6164 /* Send data initiator control block */
6165 printk("DEBUG: SNDDATAI_MODE[%08x] SNDDATAI_STATUS[%08x]\n",
6166 tr32(SNDDATAI_MODE), tr32(SNDDATAI_STATUS));
6167 printk(" SNDDATAI_STATSCTRL[%08x]\n",
6168 tr32(SNDDATAI_STATSCTRL));
6170 /* Send data completion control block */
6171 printk("DEBUG: SNDDATAC_MODE[%08x]\n", tr32(SNDDATAC_MODE));
6173 /* Send BD ring selector block */
6174 printk("DEBUG: SNDBDS_MODE[%08x] SNDBDS_STATUS[%08x]\n",
6175 tr32(SNDBDS_MODE), tr32(SNDBDS_STATUS));
6177 /* Send BD initiator control block */
6178 printk("DEBUG: SNDBDI_MODE[%08x] SNDBDI_STATUS[%08x]\n",
6179 tr32(SNDBDI_MODE), tr32(SNDBDI_STATUS));
6181 /* Send BD completion control block */
6182 printk("DEBUG: SNDBDC_MODE[%08x]\n", tr32(SNDBDC_MODE));
6184 /* Receive list placement control block */
6185 printk("DEBUG: RCVLPC_MODE[%08x] RCVLPC_STATUS[%08x]\n",
6186 tr32(RCVLPC_MODE), tr32(RCVLPC_STATUS));
6187 printk(" RCVLPC_STATSCTRL[%08x]\n",
6188 tr32(RCVLPC_STATSCTRL));
6190 /* Receive data and receive BD initiator control block */
6191 printk("DEBUG: RCVDBDI_MODE[%08x] RCVDBDI_STATUS[%08x]\n",
6192 tr32(RCVDBDI_MODE), tr32(RCVDBDI_STATUS));
6194 /* Receive data completion control block */
6195 printk("DEBUG: RCVDCC_MODE[%08x]\n",
6198 /* Receive BD initiator control block */
6199 printk("DEBUG: RCVBDI_MODE[%08x] RCVBDI_STATUS[%08x]\n",
6200 tr32(RCVBDI_MODE), tr32(RCVBDI_STATUS));
6202 /* Receive BD completion control block */
6203 printk("DEBUG: RCVCC_MODE[%08x] RCVCC_STATUS[%08x]\n",
6204 tr32(RCVCC_MODE), tr32(RCVCC_STATUS));
6206 /* Receive list selector control block */
6207 printk("DEBUG: RCVLSC_MODE[%08x] RCVLSC_STATUS[%08x]\n",
6208 tr32(RCVLSC_MODE), tr32(RCVLSC_STATUS));
6210 /* Mbuf cluster free block */
6211 printk("DEBUG: MBFREE_MODE[%08x] MBFREE_STATUS[%08x]\n",
6212 tr32(MBFREE_MODE), tr32(MBFREE_STATUS));
6214 /* Host coalescing control block */
6215 printk("DEBUG: HOSTCC_MODE[%08x] HOSTCC_STATUS[%08x]\n",
6216 tr32(HOSTCC_MODE), tr32(HOSTCC_STATUS));
6217 printk("DEBUG: HOSTCC_STATS_BLK_HOST_ADDR[%08x%08x]\n",
6218 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
6219 tr32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
6220 printk("DEBUG: HOSTCC_STATUS_BLK_HOST_ADDR[%08x%08x]\n",
6221 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH),
6222 tr32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW));
6223 printk("DEBUG: HOSTCC_STATS_BLK_NIC_ADDR[%08x]\n",
6224 tr32(HOSTCC_STATS_BLK_NIC_ADDR));
6225 printk("DEBUG: HOSTCC_STATUS_BLK_NIC_ADDR[%08x]\n",
6226 tr32(HOSTCC_STATUS_BLK_NIC_ADDR));
6228 /* Memory arbiter control block */
6229 printk("DEBUG: MEMARB_MODE[%08x] MEMARB_STATUS[%08x]\n",
6230 tr32(MEMARB_MODE), tr32(MEMARB_STATUS));
6232 /* Buffer manager control block */
6233 printk("DEBUG: BUFMGR_MODE[%08x] BUFMGR_STATUS[%08x]\n",
6234 tr32(BUFMGR_MODE), tr32(BUFMGR_STATUS));
6235 printk("DEBUG: BUFMGR_MB_POOL_ADDR[%08x] BUFMGR_MB_POOL_SIZE[%08x]\n",
6236 tr32(BUFMGR_MB_POOL_ADDR), tr32(BUFMGR_MB_POOL_SIZE));
6237 printk("DEBUG: BUFMGR_DMA_DESC_POOL_ADDR[%08x] "
6238 "BUFMGR_DMA_DESC_POOL_SIZE[%08x]\n",
6239 tr32(BUFMGR_DMA_DESC_POOL_ADDR),
6240 tr32(BUFMGR_DMA_DESC_POOL_SIZE));
6242 /* Read DMA control block */
6243 printk("DEBUG: RDMAC_MODE[%08x] RDMAC_STATUS[%08x]\n",
6244 tr32(RDMAC_MODE), tr32(RDMAC_STATUS));
6246 /* Write DMA control block */
6247 printk("DEBUG: WDMAC_MODE[%08x] WDMAC_STATUS[%08x]\n",
6248 tr32(WDMAC_MODE), tr32(WDMAC_STATUS));
6250 /* DMA completion block */
6251 printk("DEBUG: DMAC_MODE[%08x]\n",
6255 printk("DEBUG: GRC_MODE[%08x] GRC_MISC_CFG[%08x]\n",
6256 tr32(GRC_MODE), tr32(GRC_MISC_CFG));
6257 printk("DEBUG: GRC_LOCAL_CTRL[%08x]\n",
6258 tr32(GRC_LOCAL_CTRL));
6261 printk("DEBUG: RCVDBDI_JUMBO_BD[%08x%08x:%08x:%08x]\n",
6262 tr32(RCVDBDI_JUMBO_BD + 0x0),
6263 tr32(RCVDBDI_JUMBO_BD + 0x4),
6264 tr32(RCVDBDI_JUMBO_BD + 0x8),
6265 tr32(RCVDBDI_JUMBO_BD + 0xc));
6266 printk("DEBUG: RCVDBDI_STD_BD[%08x%08x:%08x:%08x]\n",
6267 tr32(RCVDBDI_STD_BD + 0x0),
6268 tr32(RCVDBDI_STD_BD + 0x4),
6269 tr32(RCVDBDI_STD_BD + 0x8),
6270 tr32(RCVDBDI_STD_BD + 0xc));
6271 printk("DEBUG: RCVDBDI_MINI_BD[%08x%08x:%08x:%08x]\n",
6272 tr32(RCVDBDI_MINI_BD + 0x0),
6273 tr32(RCVDBDI_MINI_BD + 0x4),
6274 tr32(RCVDBDI_MINI_BD + 0x8),
6275 tr32(RCVDBDI_MINI_BD + 0xc));
6277 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x0, &val32);
6278 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x4, &val32_2);
6279 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0x8, &val32_3);
6280 tg3_read_mem(tp, NIC_SRAM_SEND_RCB + 0xc, &val32_4);
6281 printk("DEBUG: SRAM_SEND_RCB_0[%08x%08x:%08x:%08x]\n",
6282 val32, val32_2, val32_3, val32_4);
6284 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x0, &val32);
6285 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x4, &val32_2);
6286 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0x8, &val32_3);
6287 tg3_read_mem(tp, NIC_SRAM_RCV_RET_RCB + 0xc, &val32_4);
6288 printk("DEBUG: SRAM_RCV_RET_RCB_0[%08x%08x:%08x:%08x]\n",
6289 val32, val32_2, val32_3, val32_4);
6291 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x0, &val32);
6292 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x4, &val32_2);
6293 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x8, &val32_3);
6294 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0xc, &val32_4);
6295 tg3_read_mem(tp, NIC_SRAM_STATUS_BLK + 0x10, &val32_5);
6296 printk("DEBUG: SRAM_STATUS_BLK[%08x:%08x:%08x:%08x:%08x]\n",
6297 val32, val32_2, val32_3, val32_4, val32_5);
6299 /* SW status block */
6300 printk("DEBUG: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
6301 tp->hw_status->status,
6302 tp->hw_status->status_tag,
6303 tp->hw_status->rx_jumbo_consumer,
6304 tp->hw_status->rx_consumer,
6305 tp->hw_status->rx_mini_consumer,
6306 tp->hw_status->idx[0].rx_producer,
6307 tp->hw_status->idx[0].tx_consumer);
6309 /* SW statistics block */
6310 printk("DEBUG: Host statistics block [%08x:%08x:%08x:%08x]\n",
6311 ((u32 *)tp->hw_stats)[0],
6312 ((u32 *)tp->hw_stats)[1],
6313 ((u32 *)tp->hw_stats)[2],
6314 ((u32 *)tp->hw_stats)[3]);
6317 printk("DEBUG: SNDHOST_PROD[%08x%08x] SNDNIC_PROD[%08x%08x]\n",
6318 tr32(MAILBOX_SNDHOST_PROD_IDX_0 + 0x0),
6319 tr32(MAILBOX_SNDHOST_PROD_IDX_0 + 0x4),
6320 tr32(MAILBOX_SNDNIC_PROD_IDX_0 + 0x0),
6321 tr32(MAILBOX_SNDNIC_PROD_IDX_0 + 0x4));
6323 /* NIC side send descriptors. */
6324 for (i = 0; i < 6; i++) {
6327 txd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_TX_BUFFER_DESC
6328 + (i * sizeof(struct tg3_tx_buffer_desc));
6329 printk("DEBUG: NIC TXD(%d)[%08x:%08x:%08x:%08x]\n",
6331 readl(txd + 0x0), readl(txd + 0x4),
6332 readl(txd + 0x8), readl(txd + 0xc));
6335 /* NIC side RX descriptors. */
6336 for (i = 0; i < 6; i++) {
6339 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_BUFFER_DESC
6340 + (i * sizeof(struct tg3_rx_buffer_desc));
6341 printk("DEBUG: NIC RXD_STD(%d)[0][%08x:%08x:%08x:%08x]\n",
6343 readl(rxd + 0x0), readl(rxd + 0x4),
6344 readl(rxd + 0x8), readl(rxd + 0xc));
6345 rxd += (4 * sizeof(u32));
6346 printk("DEBUG: NIC RXD_STD(%d)[1][%08x:%08x:%08x:%08x]\n",
6348 readl(rxd + 0x0), readl(rxd + 0x4),
6349 readl(rxd + 0x8), readl(rxd + 0xc));
6352 for (i = 0; i < 6; i++) {
6355 rxd = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_RX_JUMBO_BUFFER_DESC
6356 + (i * sizeof(struct tg3_rx_buffer_desc));
6357 printk("DEBUG: NIC RXD_JUMBO(%d)[0][%08x:%08x:%08x:%08x]\n",
6359 readl(rxd + 0x0), readl(rxd + 0x4),
6360 readl(rxd + 0x8), readl(rxd + 0xc));
6361 rxd += (4 * sizeof(u32));
6362 printk("DEBUG: NIC RXD_JUMBO(%d)[1][%08x:%08x:%08x:%08x]\n",
6364 readl(rxd + 0x0), readl(rxd + 0x4),
6365 readl(rxd + 0x8), readl(rxd + 0xc));
6370 static struct net_device_stats *tg3_get_stats(struct net_device *);
6371 static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
6373 static int tg3_close(struct net_device *dev)
6375 struct tg3 *tp = netdev_priv(dev);
6377 netif_stop_queue(dev);
6379 del_timer_sync(&tp->timer);
6381 tg3_full_lock(tp, 1);
6386 tg3_disable_ints(tp);
6388 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
6391 ~(TG3_FLAG_INIT_COMPLETE |
6392 TG3_FLAG_GOT_SERDES_FLOWCTL);
6393 netif_carrier_off(tp->dev);
6395 tg3_full_unlock(tp);
6397 free_irq(tp->pdev->irq, dev);
6398 if (tp->tg3_flags2 & TG3_FLG2_USING_MSI) {
6399 pci_disable_msi(tp->pdev);
6400 tp->tg3_flags2 &= ~TG3_FLG2_USING_MSI;
6403 memcpy(&tp->net_stats_prev, tg3_get_stats(tp->dev),
6404 sizeof(tp->net_stats_prev));
6405 memcpy(&tp->estats_prev, tg3_get_estats(tp),
6406 sizeof(tp->estats_prev));
6408 tg3_free_consistent(tp);
6413 static inline unsigned long get_stat64(tg3_stat64_t *val)
6417 #if (BITS_PER_LONG == 32)
6420 ret = ((u64)val->high << 32) | ((u64)val->low);
6425 static unsigned long calc_crc_errors(struct tg3 *tp)
6427 struct tg3_hw_stats *hw_stats = tp->hw_stats;
6429 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
6430 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
6431 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
6434 spin_lock_bh(&tp->lock);
6435 if (!tg3_readphy(tp, 0x1e, &val)) {
6436 tg3_writephy(tp, 0x1e, val | 0x8000);
6437 tg3_readphy(tp, 0x14, &val);
6440 spin_unlock_bh(&tp->lock);
6442 tp->phy_crc_errors += val;
6444 return tp->phy_crc_errors;
6447 return get_stat64(&hw_stats->rx_fcs_errors);
6450 #define ESTAT_ADD(member) \
6451 estats->member = old_estats->member + \
6452 get_stat64(&hw_stats->member)
6454 static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
6456 struct tg3_ethtool_stats *estats = &tp->estats;
6457 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
6458 struct tg3_hw_stats *hw_stats = tp->hw_stats;
6463 ESTAT_ADD(rx_octets);
6464 ESTAT_ADD(rx_fragments);
6465 ESTAT_ADD(rx_ucast_packets);
6466 ESTAT_ADD(rx_mcast_packets);
6467 ESTAT_ADD(rx_bcast_packets);
6468 ESTAT_ADD(rx_fcs_errors);
6469 ESTAT_ADD(rx_align_errors);
6470 ESTAT_ADD(rx_xon_pause_rcvd);
6471 ESTAT_ADD(rx_xoff_pause_rcvd);
6472 ESTAT_ADD(rx_mac_ctrl_rcvd);
6473 ESTAT_ADD(rx_xoff_entered);
6474 ESTAT_ADD(rx_frame_too_long_errors);
6475 ESTAT_ADD(rx_jabbers);
6476 ESTAT_ADD(rx_undersize_packets);
6477 ESTAT_ADD(rx_in_length_errors);
6478 ESTAT_ADD(rx_out_length_errors);
6479 ESTAT_ADD(rx_64_or_less_octet_packets);
6480 ESTAT_ADD(rx_65_to_127_octet_packets);
6481 ESTAT_ADD(rx_128_to_255_octet_packets);
6482 ESTAT_ADD(rx_256_to_511_octet_packets);
6483 ESTAT_ADD(rx_512_to_1023_octet_packets);
6484 ESTAT_ADD(rx_1024_to_1522_octet_packets);
6485 ESTAT_ADD(rx_1523_to_2047_octet_packets);
6486 ESTAT_ADD(rx_2048_to_4095_octet_packets);
6487 ESTAT_ADD(rx_4096_to_8191_octet_packets);
6488 ESTAT_ADD(rx_8192_to_9022_octet_packets);
6490 ESTAT_ADD(tx_octets);
6491 ESTAT_ADD(tx_collisions);
6492 ESTAT_ADD(tx_xon_sent);
6493 ESTAT_ADD(tx_xoff_sent);
6494 ESTAT_ADD(tx_flow_control);
6495 ESTAT_ADD(tx_mac_errors);
6496 ESTAT_ADD(tx_single_collisions);
6497 ESTAT_ADD(tx_mult_collisions);
6498 ESTAT_ADD(tx_deferred);
6499 ESTAT_ADD(tx_excessive_collisions);
6500 ESTAT_ADD(tx_late_collisions);
6501 ESTAT_ADD(tx_collide_2times);
6502 ESTAT_ADD(tx_collide_3times);
6503 ESTAT_ADD(tx_collide_4times);
6504 ESTAT_ADD(tx_collide_5times);
6505 ESTAT_ADD(tx_collide_6times);
6506 ESTAT_ADD(tx_collide_7times);
6507 ESTAT_ADD(tx_collide_8times);
6508 ESTAT_ADD(tx_collide_9times);
6509 ESTAT_ADD(tx_collide_10times);
6510 ESTAT_ADD(tx_collide_11times);
6511 ESTAT_ADD(tx_collide_12times);
6512 ESTAT_ADD(tx_collide_13times);
6513 ESTAT_ADD(tx_collide_14times);
6514 ESTAT_ADD(tx_collide_15times);
6515 ESTAT_ADD(tx_ucast_packets);
6516 ESTAT_ADD(tx_mcast_packets);
6517 ESTAT_ADD(tx_bcast_packets);
6518 ESTAT_ADD(tx_carrier_sense_errors);
6519 ESTAT_ADD(tx_discards);
6520 ESTAT_ADD(tx_errors);
6522 ESTAT_ADD(dma_writeq_full);
6523 ESTAT_ADD(dma_write_prioq_full);
6524 ESTAT_ADD(rxbds_empty);
6525 ESTAT_ADD(rx_discards);
6526 ESTAT_ADD(rx_errors);
6527 ESTAT_ADD(rx_threshold_hit);
6529 ESTAT_ADD(dma_readq_full);
6530 ESTAT_ADD(dma_read_prioq_full);
6531 ESTAT_ADD(tx_comp_queue_full);
6533 ESTAT_ADD(ring_set_send_prod_index);
6534 ESTAT_ADD(ring_status_update);
6535 ESTAT_ADD(nic_irqs);
6536 ESTAT_ADD(nic_avoided_irqs);
6537 ESTAT_ADD(nic_tx_threshold_hit);
6542 static struct net_device_stats *tg3_get_stats(struct net_device *dev)
6544 struct tg3 *tp = netdev_priv(dev);
6545 struct net_device_stats *stats = &tp->net_stats;
6546 struct net_device_stats *old_stats = &tp->net_stats_prev;
6547 struct tg3_hw_stats *hw_stats = tp->hw_stats;
6552 stats->rx_packets = old_stats->rx_packets +
6553 get_stat64(&hw_stats->rx_ucast_packets) +
6554 get_stat64(&hw_stats->rx_mcast_packets) +
6555 get_stat64(&hw_stats->rx_bcast_packets);
6557 stats->tx_packets = old_stats->tx_packets +
6558 get_stat64(&hw_stats->tx_ucast_packets) +
6559 get_stat64(&hw_stats->tx_mcast_packets) +
6560 get_stat64(&hw_stats->tx_bcast_packets);
6562 stats->rx_bytes = old_stats->rx_bytes +
6563 get_stat64(&hw_stats->rx_octets);
6564 stats->tx_bytes = old_stats->tx_bytes +
6565 get_stat64(&hw_stats->tx_octets);
6567 stats->rx_errors = old_stats->rx_errors +
6568 get_stat64(&hw_stats->rx_errors) +
6569 get_stat64(&hw_stats->rx_discards);
6570 stats->tx_errors = old_stats->tx_errors +
6571 get_stat64(&hw_stats->tx_errors) +
6572 get_stat64(&hw_stats->tx_mac_errors) +
6573 get_stat64(&hw_stats->tx_carrier_sense_errors) +
6574 get_stat64(&hw_stats->tx_discards);
6576 stats->multicast = old_stats->multicast +
6577 get_stat64(&hw_stats->rx_mcast_packets);
6578 stats->collisions = old_stats->collisions +
6579 get_stat64(&hw_stats->tx_collisions);
6581 stats->rx_length_errors = old_stats->rx_length_errors +
6582 get_stat64(&hw_stats->rx_frame_too_long_errors) +
6583 get_stat64(&hw_stats->rx_undersize_packets);
6585 stats->rx_over_errors = old_stats->rx_over_errors +
6586 get_stat64(&hw_stats->rxbds_empty);
6587 stats->rx_frame_errors = old_stats->rx_frame_errors +
6588 get_stat64(&hw_stats->rx_align_errors);
6589 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
6590 get_stat64(&hw_stats->tx_discards);
6591 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
6592 get_stat64(&hw_stats->tx_carrier_sense_errors);
6594 stats->rx_crc_errors = old_stats->rx_crc_errors +
6595 calc_crc_errors(tp);
6600 static inline u32 calc_crc(unsigned char *buf, int len)
6608 for (j = 0; j < len; j++) {
6611 for (k = 0; k < 8; k++) {
6625 static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
6627 /* accept or reject all multicast frames */
6628 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
6629 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
6630 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
6631 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
6634 static void __tg3_set_rx_mode(struct net_device *dev)
6636 struct tg3 *tp = netdev_priv(dev);
6639 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
6640 RX_MODE_KEEP_VLAN_TAG);
6642 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
6645 #if TG3_VLAN_TAG_USED
6647 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
6648 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
6650 /* By definition, VLAN is disabled always in this
6653 if (!(tp->tg3_flags & TG3_FLAG_ENABLE_ASF))
6654 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
6657 if (dev->flags & IFF_PROMISC) {
6658 /* Promiscuous mode. */
6659 rx_mode |= RX_MODE_PROMISC;
6660 } else if (dev->flags & IFF_ALLMULTI) {
6661 /* Accept all multicast. */
6662 tg3_set_multi (tp, 1);
6663 } else if (dev->mc_count < 1) {
6664 /* Reject all multicast. */
6665 tg3_set_multi (tp, 0);
6667 /* Accept one or more multicast(s). */
6668 struct dev_mc_list *mclist;
6670 u32 mc_filter[4] = { 0, };
6675 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
6676 i++, mclist = mclist->next) {
6678 crc = calc_crc (mclist->dmi_addr, ETH_ALEN);
6680 regidx = (bit & 0x60) >> 5;
6682 mc_filter[regidx] |= (1 << bit);
6685 tw32(MAC_HASH_REG_0, mc_filter[0]);
6686 tw32(MAC_HASH_REG_1, mc_filter[1]);
6687 tw32(MAC_HASH_REG_2, mc_filter[2]);
6688 tw32(MAC_HASH_REG_3, mc_filter[3]);
6691 if (rx_mode != tp->rx_mode) {
6692 tp->rx_mode = rx_mode;
6693 tw32_f(MAC_RX_MODE, rx_mode);
6698 static void tg3_set_rx_mode(struct net_device *dev)
6700 struct tg3 *tp = netdev_priv(dev);
6702 tg3_full_lock(tp, 0);
6703 __tg3_set_rx_mode(dev);
6704 tg3_full_unlock(tp);
6707 #define TG3_REGDUMP_LEN (32 * 1024)
6709 static int tg3_get_regs_len(struct net_device *dev)
6711 return TG3_REGDUMP_LEN;
6714 static void tg3_get_regs(struct net_device *dev,
6715 struct ethtool_regs *regs, void *_p)
6718 struct tg3 *tp = netdev_priv(dev);
6724 memset(p, 0, TG3_REGDUMP_LEN);
6726 tg3_full_lock(tp, 0);
6728 #define __GET_REG32(reg) (*(p)++ = tr32(reg))
6729 #define GET_REG32_LOOP(base,len) \
6730 do { p = (u32 *)(orig_p + (base)); \
6731 for (i = 0; i < len; i += 4) \
6732 __GET_REG32((base) + i); \
6734 #define GET_REG32_1(reg) \
6735 do { p = (u32 *)(orig_p + (reg)); \
6736 __GET_REG32((reg)); \
6739 GET_REG32_LOOP(TG3PCI_VENDOR, 0xb0);
6740 GET_REG32_LOOP(MAILBOX_INTERRUPT_0, 0x200);
6741 GET_REG32_LOOP(MAC_MODE, 0x4f0);
6742 GET_REG32_LOOP(SNDDATAI_MODE, 0xe0);
6743 GET_REG32_1(SNDDATAC_MODE);
6744 GET_REG32_LOOP(SNDBDS_MODE, 0x80);
6745 GET_REG32_LOOP(SNDBDI_MODE, 0x48);
6746 GET_REG32_1(SNDBDC_MODE);
6747 GET_REG32_LOOP(RCVLPC_MODE, 0x20);
6748 GET_REG32_LOOP(RCVLPC_SELLST_BASE, 0x15c);
6749 GET_REG32_LOOP(RCVDBDI_MODE, 0x0c);
6750 GET_REG32_LOOP(RCVDBDI_JUMBO_BD, 0x3c);
6751 GET_REG32_LOOP(RCVDBDI_BD_PROD_IDX_0, 0x44);
6752 GET_REG32_1(RCVDCC_MODE);
6753 GET_REG32_LOOP(RCVBDI_MODE, 0x20);
6754 GET_REG32_LOOP(RCVCC_MODE, 0x14);
6755 GET_REG32_LOOP(RCVLSC_MODE, 0x08);
6756 GET_REG32_1(MBFREE_MODE);
6757 GET_REG32_LOOP(HOSTCC_MODE, 0x100);
6758 GET_REG32_LOOP(MEMARB_MODE, 0x10);
6759 GET_REG32_LOOP(BUFMGR_MODE, 0x58);
6760 GET_REG32_LOOP(RDMAC_MODE, 0x08);
6761 GET_REG32_LOOP(WDMAC_MODE, 0x08);
6762 GET_REG32_LOOP(RX_CPU_BASE, 0x280);
6763 GET_REG32_LOOP(TX_CPU_BASE, 0x280);
6764 GET_REG32_LOOP(GRCMBOX_INTERRUPT_0, 0x110);
6765 GET_REG32_LOOP(FTQ_RESET, 0x120);
6766 GET_REG32_LOOP(MSGINT_MODE, 0x0c);
6767 GET_REG32_1(DMAC_MODE);
6768 GET_REG32_LOOP(GRC_MODE, 0x4c);
6769 if (tp->tg3_flags & TG3_FLAG_NVRAM)
6770 GET_REG32_LOOP(NVRAM_CMD, 0x24);
6773 #undef GET_REG32_LOOP
6776 tg3_full_unlock(tp);
6779 static int tg3_get_eeprom_len(struct net_device *dev)
6781 struct tg3 *tp = netdev_priv(dev);
6783 return tp->nvram_size;
6786 static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val);
6788 static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
6790 struct tg3 *tp = netdev_priv(dev);
6793 u32 i, offset, len, val, b_offset, b_count;
6795 offset = eeprom->offset;
6799 eeprom->magic = TG3_EEPROM_MAGIC;
6802 /* adjustments to start on required 4 byte boundary */
6803 b_offset = offset & 3;
6804 b_count = 4 - b_offset;
6805 if (b_count > len) {
6806 /* i.e. offset=1 len=2 */
6809 ret = tg3_nvram_read(tp, offset-b_offset, &val);
6812 val = cpu_to_le32(val);
6813 memcpy(data, ((char*)&val) + b_offset, b_count);
6816 eeprom->len += b_count;
6819 /* read bytes upto the last 4 byte boundary */
6820 pd = &data[eeprom->len];
6821 for (i = 0; i < (len - (len & 3)); i += 4) {
6822 ret = tg3_nvram_read(tp, offset + i, &val);
6827 val = cpu_to_le32(val);
6828 memcpy(pd + i, &val, 4);
6833 /* read last bytes not ending on 4 byte boundary */
6834 pd = &data[eeprom->len];
6836 b_offset = offset + len - b_count;
6837 ret = tg3_nvram_read(tp, b_offset, &val);
6840 val = cpu_to_le32(val);
6841 memcpy(pd, ((char*)&val), b_count);
6842 eeprom->len += b_count;
6847 static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
6849 static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
6851 struct tg3 *tp = netdev_priv(dev);
6853 u32 offset, len, b_offset, odd_len, start, end;
6856 if (eeprom->magic != TG3_EEPROM_MAGIC)
6859 offset = eeprom->offset;
6862 if ((b_offset = (offset & 3))) {
6863 /* adjustments to start on required 4 byte boundary */
6864 ret = tg3_nvram_read(tp, offset-b_offset, &start);
6867 start = cpu_to_le32(start);
6876 /* adjustments to end on required 4 byte boundary */
6878 len = (len + 3) & ~3;
6879 ret = tg3_nvram_read(tp, offset+len-4, &end);
6882 end = cpu_to_le32(end);
6886 if (b_offset || odd_len) {
6887 buf = kmalloc(len, GFP_KERNEL);
6891 memcpy(buf, &start, 4);
6893 memcpy(buf+len-4, &end, 4);
6894 memcpy(buf + b_offset, data, eeprom->len);
6897 ret = tg3_nvram_write_block(tp, offset, len, buf);
6905 static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
6907 struct tg3 *tp = netdev_priv(dev);
6909 cmd->supported = (SUPPORTED_Autoneg);
6911 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
6912 cmd->supported |= (SUPPORTED_1000baseT_Half |
6913 SUPPORTED_1000baseT_Full);
6915 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES))
6916 cmd->supported |= (SUPPORTED_100baseT_Half |
6917 SUPPORTED_100baseT_Full |
6918 SUPPORTED_10baseT_Half |
6919 SUPPORTED_10baseT_Full |
6922 cmd->supported |= SUPPORTED_FIBRE;
6924 cmd->advertising = tp->link_config.advertising;
6925 if (netif_running(dev)) {
6926 cmd->speed = tp->link_config.active_speed;
6927 cmd->duplex = tp->link_config.active_duplex;
6930 cmd->phy_address = PHY_ADDR;
6931 cmd->transceiver = 0;
6932 cmd->autoneg = tp->link_config.autoneg;
6938 static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
6940 struct tg3 *tp = netdev_priv(dev);
6942 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
6943 /* These are the only valid advertisement bits allowed. */
6944 if (cmd->autoneg == AUTONEG_ENABLE &&
6945 (cmd->advertising & ~(ADVERTISED_1000baseT_Half |
6946 ADVERTISED_1000baseT_Full |
6947 ADVERTISED_Autoneg |
6952 tg3_full_lock(tp, 0);
6954 tp->link_config.autoneg = cmd->autoneg;
6955 if (cmd->autoneg == AUTONEG_ENABLE) {
6956 tp->link_config.advertising = cmd->advertising;
6957 tp->link_config.speed = SPEED_INVALID;
6958 tp->link_config.duplex = DUPLEX_INVALID;
6960 tp->link_config.advertising = 0;
6961 tp->link_config.speed = cmd->speed;
6962 tp->link_config.duplex = cmd->duplex;
6965 if (netif_running(dev))
6966 tg3_setup_phy(tp, 1);
6968 tg3_full_unlock(tp);
6973 static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
6975 struct tg3 *tp = netdev_priv(dev);
6977 strcpy(info->driver, DRV_MODULE_NAME);
6978 strcpy(info->version, DRV_MODULE_VERSION);
6979 strcpy(info->bus_info, pci_name(tp->pdev));
6982 static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
6984 struct tg3 *tp = netdev_priv(dev);
6986 wol->supported = WAKE_MAGIC;
6988 if (tp->tg3_flags & TG3_FLAG_WOL_ENABLE)
6989 wol->wolopts = WAKE_MAGIC;
6990 memset(&wol->sopass, 0, sizeof(wol->sopass));
6993 static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
6995 struct tg3 *tp = netdev_priv(dev);
6997 if (wol->wolopts & ~WAKE_MAGIC)
6999 if ((wol->wolopts & WAKE_MAGIC) &&
7000 tp->tg3_flags2 & TG3_FLG2_PHY_SERDES &&
7001 !(tp->tg3_flags & TG3_FLAG_SERDES_WOL_CAP))
7004 spin_lock_bh(&tp->lock);
7005 if (wol->wolopts & WAKE_MAGIC)
7006 tp->tg3_flags |= TG3_FLAG_WOL_ENABLE;
7008 tp->tg3_flags &= ~TG3_FLAG_WOL_ENABLE;
7009 spin_unlock_bh(&tp->lock);
7014 static u32 tg3_get_msglevel(struct net_device *dev)
7016 struct tg3 *tp = netdev_priv(dev);
7017 return tp->msg_enable;
7020 static void tg3_set_msglevel(struct net_device *dev, u32 value)
7022 struct tg3 *tp = netdev_priv(dev);
7023 tp->msg_enable = value;
7026 #if TG3_TSO_SUPPORT != 0
7027 static int tg3_set_tso(struct net_device *dev, u32 value)
7029 struct tg3 *tp = netdev_priv(dev);
7031 if (!(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)) {
7036 return ethtool_op_set_tso(dev, value);
7040 static int tg3_nway_reset(struct net_device *dev)
7042 struct tg3 *tp = netdev_priv(dev);
7046 if (!netif_running(dev))
7049 spin_lock_bh(&tp->lock);
7051 tg3_readphy(tp, MII_BMCR, &bmcr);
7052 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
7053 (bmcr & BMCR_ANENABLE)) {
7054 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART);
7057 spin_unlock_bh(&tp->lock);
7062 static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
7064 struct tg3 *tp = netdev_priv(dev);
7066 ering->rx_max_pending = TG3_RX_RING_SIZE - 1;
7067 ering->rx_mini_max_pending = 0;
7068 ering->rx_jumbo_max_pending = TG3_RX_JUMBO_RING_SIZE - 1;
7070 ering->rx_pending = tp->rx_pending;
7071 ering->rx_mini_pending = 0;
7072 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
7073 ering->tx_pending = tp->tx_pending;
7076 static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
7078 struct tg3 *tp = netdev_priv(dev);
7081 if ((ering->rx_pending > TG3_RX_RING_SIZE - 1) ||
7082 (ering->rx_jumbo_pending > TG3_RX_JUMBO_RING_SIZE - 1) ||
7083 (ering->tx_pending > TG3_TX_RING_SIZE - 1))
7086 if (netif_running(dev)) {
7091 tg3_full_lock(tp, irq_sync);
7093 tp->rx_pending = ering->rx_pending;
7095 if ((tp->tg3_flags2 & TG3_FLG2_MAX_RXPEND_64) &&
7096 tp->rx_pending > 63)
7097 tp->rx_pending = 63;
7098 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
7099 tp->tx_pending = ering->tx_pending;
7101 if (netif_running(dev)) {
7102 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
7104 tg3_netif_start(tp);
7107 tg3_full_unlock(tp);
7112 static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
7114 struct tg3 *tp = netdev_priv(dev);
7116 epause->autoneg = (tp->tg3_flags & TG3_FLAG_PAUSE_AUTONEG) != 0;
7117 epause->rx_pause = (tp->tg3_flags & TG3_FLAG_RX_PAUSE) != 0;
7118 epause->tx_pause = (tp->tg3_flags & TG3_FLAG_TX_PAUSE) != 0;
7121 static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
7123 struct tg3 *tp = netdev_priv(dev);
7126 if (netif_running(dev)) {
7131 tg3_full_lock(tp, irq_sync);
7133 if (epause->autoneg)
7134 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
7136 tp->tg3_flags &= ~TG3_FLAG_PAUSE_AUTONEG;
7137 if (epause->rx_pause)
7138 tp->tg3_flags |= TG3_FLAG_RX_PAUSE;
7140 tp->tg3_flags &= ~TG3_FLAG_RX_PAUSE;
7141 if (epause->tx_pause)
7142 tp->tg3_flags |= TG3_FLAG_TX_PAUSE;
7144 tp->tg3_flags &= ~TG3_FLAG_TX_PAUSE;
7146 if (netif_running(dev)) {
7147 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
7149 tg3_netif_start(tp);
7152 tg3_full_unlock(tp);
7157 static u32 tg3_get_rx_csum(struct net_device *dev)
7159 struct tg3 *tp = netdev_priv(dev);
7160 return (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0;
7163 static int tg3_set_rx_csum(struct net_device *dev, u32 data)
7165 struct tg3 *tp = netdev_priv(dev);
7167 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
7173 spin_lock_bh(&tp->lock);
7175 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
7177 tp->tg3_flags &= ~TG3_FLAG_RX_CHECKSUMS;
7178 spin_unlock_bh(&tp->lock);
7183 static int tg3_set_tx_csum(struct net_device *dev, u32 data)
7185 struct tg3 *tp = netdev_priv(dev);
7187 if (tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) {
7194 dev->features |= NETIF_F_IP_CSUM;
7196 dev->features &= ~NETIF_F_IP_CSUM;
7201 static int tg3_get_stats_count (struct net_device *dev)
7203 return TG3_NUM_STATS;
7206 static int tg3_get_test_count (struct net_device *dev)
7208 return TG3_NUM_TEST;
7211 static void tg3_get_strings (struct net_device *dev, u32 stringset, u8 *buf)
7213 switch (stringset) {
7215 memcpy(buf, ðtool_stats_keys, sizeof(ethtool_stats_keys));
7218 memcpy(buf, ðtool_test_keys, sizeof(ethtool_test_keys));
7221 WARN_ON(1); /* we need a WARN() */
7226 static void tg3_get_ethtool_stats (struct net_device *dev,
7227 struct ethtool_stats *estats, u64 *tmp_stats)
7229 struct tg3 *tp = netdev_priv(dev);
7230 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
7233 #define NVRAM_TEST_SIZE 0x100
7235 static int tg3_test_nvram(struct tg3 *tp)
7240 buf = kmalloc(NVRAM_TEST_SIZE, GFP_KERNEL);
7244 for (i = 0, j = 0; i < NVRAM_TEST_SIZE; i += 4, j++) {
7247 if ((err = tg3_nvram_read(tp, i, &val)) != 0)
7249 buf[j] = cpu_to_le32(val);
7251 if (i < NVRAM_TEST_SIZE)
7255 if (cpu_to_be32(buf[0]) != TG3_EEPROM_MAGIC)
7258 /* Bootstrap checksum at offset 0x10 */
7259 csum = calc_crc((unsigned char *) buf, 0x10);
7260 if(csum != cpu_to_le32(buf[0x10/4]))
7263 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
7264 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
7265 if (csum != cpu_to_le32(buf[0xfc/4]))
7275 #define TG3_SERDES_TIMEOUT_SEC 2
7276 #define TG3_COPPER_TIMEOUT_SEC 6
7278 static int tg3_test_link(struct tg3 *tp)
7282 if (!netif_running(tp->dev))
7285 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
7286 max = TG3_SERDES_TIMEOUT_SEC;
7288 max = TG3_COPPER_TIMEOUT_SEC;
7290 for (i = 0; i < max; i++) {
7291 if (netif_carrier_ok(tp->dev))
7294 if (msleep_interruptible(1000))
7301 /* Only test the commonly used registers */
7302 static int tg3_test_registers(struct tg3 *tp)
7305 u32 offset, read_mask, write_mask, val, save_val, read_val;
7309 #define TG3_FL_5705 0x1
7310 #define TG3_FL_NOT_5705 0x2
7311 #define TG3_FL_NOT_5788 0x4
7315 /* MAC Control Registers */
7316 { MAC_MODE, TG3_FL_NOT_5705,
7317 0x00000000, 0x00ef6f8c },
7318 { MAC_MODE, TG3_FL_5705,
7319 0x00000000, 0x01ef6b8c },
7320 { MAC_STATUS, TG3_FL_NOT_5705,
7321 0x03800107, 0x00000000 },
7322 { MAC_STATUS, TG3_FL_5705,
7323 0x03800100, 0x00000000 },
7324 { MAC_ADDR_0_HIGH, 0x0000,
7325 0x00000000, 0x0000ffff },
7326 { MAC_ADDR_0_LOW, 0x0000,
7327 0x00000000, 0xffffffff },
7328 { MAC_RX_MTU_SIZE, 0x0000,
7329 0x00000000, 0x0000ffff },
7330 { MAC_TX_MODE, 0x0000,
7331 0x00000000, 0x00000070 },
7332 { MAC_TX_LENGTHS, 0x0000,
7333 0x00000000, 0x00003fff },
7334 { MAC_RX_MODE, TG3_FL_NOT_5705,
7335 0x00000000, 0x000007fc },
7336 { MAC_RX_MODE, TG3_FL_5705,
7337 0x00000000, 0x000007dc },
7338 { MAC_HASH_REG_0, 0x0000,
7339 0x00000000, 0xffffffff },
7340 { MAC_HASH_REG_1, 0x0000,
7341 0x00000000, 0xffffffff },
7342 { MAC_HASH_REG_2, 0x0000,
7343 0x00000000, 0xffffffff },
7344 { MAC_HASH_REG_3, 0x0000,
7345 0x00000000, 0xffffffff },
7347 /* Receive Data and Receive BD Initiator Control Registers. */
7348 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
7349 0x00000000, 0xffffffff },
7350 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
7351 0x00000000, 0xffffffff },
7352 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
7353 0x00000000, 0x00000003 },
7354 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
7355 0x00000000, 0xffffffff },
7356 { RCVDBDI_STD_BD+0, 0x0000,
7357 0x00000000, 0xffffffff },
7358 { RCVDBDI_STD_BD+4, 0x0000,
7359 0x00000000, 0xffffffff },
7360 { RCVDBDI_STD_BD+8, 0x0000,
7361 0x00000000, 0xffff0002 },
7362 { RCVDBDI_STD_BD+0xc, 0x0000,
7363 0x00000000, 0xffffffff },
7365 /* Receive BD Initiator Control Registers. */
7366 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
7367 0x00000000, 0xffffffff },
7368 { RCVBDI_STD_THRESH, TG3_FL_5705,
7369 0x00000000, 0x000003ff },
7370 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
7371 0x00000000, 0xffffffff },
7373 /* Host Coalescing Control Registers. */
7374 { HOSTCC_MODE, TG3_FL_NOT_5705,
7375 0x00000000, 0x00000004 },
7376 { HOSTCC_MODE, TG3_FL_5705,
7377 0x00000000, 0x000000f6 },
7378 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
7379 0x00000000, 0xffffffff },
7380 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
7381 0x00000000, 0x000003ff },
7382 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
7383 0x00000000, 0xffffffff },
7384 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
7385 0x00000000, 0x000003ff },
7386 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
7387 0x00000000, 0xffffffff },
7388 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
7389 0x00000000, 0x000000ff },
7390 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
7391 0x00000000, 0xffffffff },
7392 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
7393 0x00000000, 0x000000ff },
7394 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
7395 0x00000000, 0xffffffff },
7396 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
7397 0x00000000, 0xffffffff },
7398 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
7399 0x00000000, 0xffffffff },
7400 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
7401 0x00000000, 0x000000ff },
7402 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
7403 0x00000000, 0xffffffff },
7404 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
7405 0x00000000, 0x000000ff },
7406 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
7407 0x00000000, 0xffffffff },
7408 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
7409 0x00000000, 0xffffffff },
7410 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
7411 0x00000000, 0xffffffff },
7412 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
7413 0x00000000, 0xffffffff },
7414 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
7415 0x00000000, 0xffffffff },
7416 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
7417 0xffffffff, 0x00000000 },
7418 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
7419 0xffffffff, 0x00000000 },
7421 /* Buffer Manager Control Registers. */
7422 { BUFMGR_MB_POOL_ADDR, 0x0000,
7423 0x00000000, 0x007fff80 },
7424 { BUFMGR_MB_POOL_SIZE, 0x0000,
7425 0x00000000, 0x007fffff },
7426 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
7427 0x00000000, 0x0000003f },
7428 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
7429 0x00000000, 0x000001ff },
7430 { BUFMGR_MB_HIGH_WATER, 0x0000,
7431 0x00000000, 0x000001ff },
7432 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
7433 0xffffffff, 0x00000000 },
7434 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
7435 0xffffffff, 0x00000000 },
7437 /* Mailbox Registers */
7438 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
7439 0x00000000, 0x000001ff },
7440 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
7441 0x00000000, 0x000001ff },
7442 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
7443 0x00000000, 0x000007ff },
7444 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
7445 0x00000000, 0x000001ff },
7447 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
7450 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
7455 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
7456 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
7459 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
7462 if ((tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
7463 (reg_tbl[i].flags & TG3_FL_NOT_5788))
7466 offset = (u32) reg_tbl[i].offset;
7467 read_mask = reg_tbl[i].read_mask;
7468 write_mask = reg_tbl[i].write_mask;
7470 /* Save the original register content */
7471 save_val = tr32(offset);
7473 /* Determine the read-only value. */
7474 read_val = save_val & read_mask;
7476 /* Write zero to the register, then make sure the read-only bits
7477 * are not changed and the read/write bits are all zeros.
7483 /* Test the read-only and read/write bits. */
7484 if (((val & read_mask) != read_val) || (val & write_mask))
7487 /* Write ones to all the bits defined by RdMask and WrMask, then
7488 * make sure the read-only bits are not changed and the
7489 * read/write bits are all ones.
7491 tw32(offset, read_mask | write_mask);
7495 /* Test the read-only bits. */
7496 if ((val & read_mask) != read_val)
7499 /* Test the read/write bits. */
7500 if ((val & write_mask) != write_mask)
7503 tw32(offset, save_val);
7509 printk(KERN_ERR PFX "Register test failed at offset %x\n", offset);
7510 tw32(offset, save_val);
7514 static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
7516 static u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
7520 for (i = 0; i < sizeof(test_pattern)/sizeof(u32); i++) {
7521 for (j = 0; j < len; j += 4) {
7524 tg3_write_mem(tp, offset + j, test_pattern[i]);
7525 tg3_read_mem(tp, offset + j, &val);
7526 if (val != test_pattern[i])
7533 static int tg3_test_memory(struct tg3 *tp)
7535 static struct mem_entry {
7538 } mem_tbl_570x[] = {
7539 { 0x00000000, 0x01000},
7540 { 0x00002000, 0x1c000},
7541 { 0xffffffff, 0x00000}
7542 }, mem_tbl_5705[] = {
7543 { 0x00000100, 0x0000c},
7544 { 0x00000200, 0x00008},
7545 { 0x00000b50, 0x00400},
7546 { 0x00004000, 0x00800},
7547 { 0x00006000, 0x01000},
7548 { 0x00008000, 0x02000},
7549 { 0x00010000, 0x0e000},
7550 { 0xffffffff, 0x00000}
7552 struct mem_entry *mem_tbl;
7556 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
7557 mem_tbl = mem_tbl_5705;
7559 mem_tbl = mem_tbl_570x;
7561 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
7562 if ((err = tg3_do_mem_test(tp, mem_tbl[i].offset,
7563 mem_tbl[i].len)) != 0)
7570 static int tg3_test_loopback(struct tg3 *tp)
7572 u32 mac_mode, send_idx, rx_start_idx, rx_idx, tx_idx, opaque_key;
7574 struct sk_buff *skb, *rx_skb;
7577 int num_pkts, tx_len, rx_len, i, err;
7578 struct tg3_rx_buffer_desc *desc;
7580 if (!netif_running(tp->dev))
7585 tg3_abort_hw(tp, 1);
7589 mac_mode = (tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK) |
7590 MAC_MODE_PORT_INT_LPBACK | MAC_MODE_LINK_POLARITY |
7591 MAC_MODE_PORT_MODE_GMII;
7592 tw32(MAC_MODE, mac_mode);
7595 skb = dev_alloc_skb(tx_len);
7596 tx_data = skb_put(skb, tx_len);
7597 memcpy(tx_data, tp->dev->dev_addr, 6);
7598 memset(tx_data + 6, 0x0, 8);
7600 tw32(MAC_RX_MTU_SIZE, tx_len + 4);
7602 for (i = 14; i < tx_len; i++)
7603 tx_data[i] = (u8) (i & 0xff);
7605 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
7607 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
7612 rx_start_idx = tp->hw_status->idx[0].rx_producer;
7617 tg3_set_txd(tp, send_idx, map, tx_len, 0, 1);
7622 tw32_tx_mbox(MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW, send_idx);
7623 tr32(MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW);
7627 for (i = 0; i < 10; i++) {
7628 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
7633 tx_idx = tp->hw_status->idx[0].tx_consumer;
7634 rx_idx = tp->hw_status->idx[0].rx_producer;
7635 if ((tx_idx == send_idx) &&
7636 (rx_idx == (rx_start_idx + num_pkts)))
7640 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
7643 if (tx_idx != send_idx)
7646 if (rx_idx != rx_start_idx + num_pkts)
7649 desc = &tp->rx_rcb[rx_start_idx];
7650 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
7651 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
7652 if (opaque_key != RXD_OPAQUE_RING_STD)
7655 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
7656 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
7659 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) - 4;
7660 if (rx_len != tx_len)
7663 rx_skb = tp->rx_std_buffers[desc_idx].skb;
7665 map = pci_unmap_addr(&tp->rx_std_buffers[desc_idx], mapping);
7666 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len, PCI_DMA_FROMDEVICE);
7668 for (i = 14; i < tx_len; i++) {
7669 if (*(rx_skb->data + i) != (u8) (i & 0xff))
7674 /* tg3_free_rings will unmap and free the rx_skb */
7679 static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
7682 struct tg3 *tp = netdev_priv(dev);
7684 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
7686 if (tg3_test_nvram(tp) != 0) {
7687 etest->flags |= ETH_TEST_FL_FAILED;
7690 if (tg3_test_link(tp) != 0) {
7691 etest->flags |= ETH_TEST_FL_FAILED;
7694 if (etest->flags & ETH_TEST_FL_OFFLINE) {
7697 if (netif_running(dev)) {
7702 tg3_full_lock(tp, irq_sync);
7704 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
7706 tg3_halt_cpu(tp, RX_CPU_BASE);
7707 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7708 tg3_halt_cpu(tp, TX_CPU_BASE);
7709 tg3_nvram_unlock(tp);
7711 if (tg3_test_registers(tp) != 0) {
7712 etest->flags |= ETH_TEST_FL_FAILED;
7715 if (tg3_test_memory(tp) != 0) {
7716 etest->flags |= ETH_TEST_FL_FAILED;
7719 if (tg3_test_loopback(tp) != 0) {
7720 etest->flags |= ETH_TEST_FL_FAILED;
7724 tg3_full_unlock(tp);
7726 if (tg3_test_interrupt(tp) != 0) {
7727 etest->flags |= ETH_TEST_FL_FAILED;
7731 tg3_full_lock(tp, 0);
7733 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
7734 if (netif_running(dev)) {
7735 tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE;
7737 tg3_netif_start(tp);
7740 tg3_full_unlock(tp);
7744 static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
7746 struct mii_ioctl_data *data = if_mii(ifr);
7747 struct tg3 *tp = netdev_priv(dev);
7752 data->phy_id = PHY_ADDR;
7758 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
7759 break; /* We have no PHY */
7761 spin_lock_bh(&tp->lock);
7762 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
7763 spin_unlock_bh(&tp->lock);
7765 data->val_out = mii_regval;
7771 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
7772 break; /* We have no PHY */
7774 if (!capable(CAP_NET_ADMIN))
7777 spin_lock_bh(&tp->lock);
7778 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
7779 spin_unlock_bh(&tp->lock);
7790 #if TG3_VLAN_TAG_USED
7791 static void tg3_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
7793 struct tg3 *tp = netdev_priv(dev);
7795 tg3_full_lock(tp, 0);
7799 /* Update RX_MODE_KEEP_VLAN_TAG bit in RX_MODE register. */
7800 __tg3_set_rx_mode(dev);
7802 tg3_full_unlock(tp);
7805 static void tg3_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
7807 struct tg3 *tp = netdev_priv(dev);
7809 tg3_full_lock(tp, 0);
7811 tp->vlgrp->vlan_devices[vid] = NULL;
7812 tg3_full_unlock(tp);
7816 static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
7818 struct tg3 *tp = netdev_priv(dev);
7820 memcpy(ec, &tp->coal, sizeof(*ec));
7824 static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
7826 struct tg3 *tp = netdev_priv(dev);
7827 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
7828 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
7830 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) {
7831 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
7832 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
7833 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
7834 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
7837 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
7838 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
7839 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
7840 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
7841 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
7842 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
7843 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
7844 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
7845 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
7846 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
7849 /* No rx interrupts will be generated if both are zero */
7850 if ((ec->rx_coalesce_usecs == 0) &&
7851 (ec->rx_max_coalesced_frames == 0))
7854 /* No tx interrupts will be generated if both are zero */
7855 if ((ec->tx_coalesce_usecs == 0) &&
7856 (ec->tx_max_coalesced_frames == 0))
7859 /* Only copy relevant parameters, ignore all others. */
7860 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
7861 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
7862 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
7863 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
7864 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
7865 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
7866 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
7867 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
7868 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
7870 if (netif_running(dev)) {
7871 tg3_full_lock(tp, 0);
7872 __tg3_set_coalesce(tp, &tp->coal);
7873 tg3_full_unlock(tp);
7878 static struct ethtool_ops tg3_ethtool_ops = {
7879 .get_settings = tg3_get_settings,
7880 .set_settings = tg3_set_settings,
7881 .get_drvinfo = tg3_get_drvinfo,
7882 .get_regs_len = tg3_get_regs_len,
7883 .get_regs = tg3_get_regs,
7884 .get_wol = tg3_get_wol,
7885 .set_wol = tg3_set_wol,
7886 .get_msglevel = tg3_get_msglevel,
7887 .set_msglevel = tg3_set_msglevel,
7888 .nway_reset = tg3_nway_reset,
7889 .get_link = ethtool_op_get_link,
7890 .get_eeprom_len = tg3_get_eeprom_len,
7891 .get_eeprom = tg3_get_eeprom,
7892 .set_eeprom = tg3_set_eeprom,
7893 .get_ringparam = tg3_get_ringparam,
7894 .set_ringparam = tg3_set_ringparam,
7895 .get_pauseparam = tg3_get_pauseparam,
7896 .set_pauseparam = tg3_set_pauseparam,
7897 .get_rx_csum = tg3_get_rx_csum,
7898 .set_rx_csum = tg3_set_rx_csum,
7899 .get_tx_csum = ethtool_op_get_tx_csum,
7900 .set_tx_csum = tg3_set_tx_csum,
7901 .get_sg = ethtool_op_get_sg,
7902 .set_sg = ethtool_op_set_sg,
7903 #if TG3_TSO_SUPPORT != 0
7904 .get_tso = ethtool_op_get_tso,
7905 .set_tso = tg3_set_tso,
7907 .self_test_count = tg3_get_test_count,
7908 .self_test = tg3_self_test,
7909 .get_strings = tg3_get_strings,
7910 .get_stats_count = tg3_get_stats_count,
7911 .get_ethtool_stats = tg3_get_ethtool_stats,
7912 .get_coalesce = tg3_get_coalesce,
7913 .set_coalesce = tg3_set_coalesce,
7916 static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
7920 tp->nvram_size = EEPROM_CHIP_SIZE;
7922 if (tg3_nvram_read(tp, 0, &val) != 0)
7925 if (swab32(val) != TG3_EEPROM_MAGIC)
7929 * Size the chip by reading offsets at increasing powers of two.
7930 * When we encounter our validation signature, we know the addressing
7931 * has wrapped around, and thus have our chip size.
7935 while (cursize < tp->nvram_size) {
7936 if (tg3_nvram_read(tp, cursize, &val) != 0)
7939 if (swab32(val) == TG3_EEPROM_MAGIC)
7945 tp->nvram_size = cursize;
7948 static void __devinit tg3_get_nvram_size(struct tg3 *tp)
7952 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
7954 tp->nvram_size = (val >> 16) * 1024;
7958 tp->nvram_size = 0x20000;
7961 static void __devinit tg3_get_nvram_info(struct tg3 *tp)
7965 nvcfg1 = tr32(NVRAM_CFG1);
7966 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
7967 tp->tg3_flags2 |= TG3_FLG2_FLASH;
7970 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
7971 tw32(NVRAM_CFG1, nvcfg1);
7974 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) {
7975 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
7976 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
7977 tp->nvram_jedecnum = JEDEC_ATMEL;
7978 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
7979 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
7981 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
7982 tp->nvram_jedecnum = JEDEC_ATMEL;
7983 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
7985 case FLASH_VENDOR_ATMEL_EEPROM:
7986 tp->nvram_jedecnum = JEDEC_ATMEL;
7987 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
7988 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
7990 case FLASH_VENDOR_ST:
7991 tp->nvram_jedecnum = JEDEC_ST;
7992 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
7993 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
7995 case FLASH_VENDOR_SAIFUN:
7996 tp->nvram_jedecnum = JEDEC_SAIFUN;
7997 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
7999 case FLASH_VENDOR_SST_SMALL:
8000 case FLASH_VENDOR_SST_LARGE:
8001 tp->nvram_jedecnum = JEDEC_SST;
8002 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
8007 tp->nvram_jedecnum = JEDEC_ATMEL;
8008 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
8009 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
8013 static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
8017 nvcfg1 = tr32(NVRAM_CFG1);
8019 /* NVRAM protection for TPM */
8020 if (nvcfg1 & (1 << 27))
8021 tp->tg3_flags2 |= TG3_FLG2_PROTECTED_NVRAM;
8023 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
8024 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
8025 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
8026 tp->nvram_jedecnum = JEDEC_ATMEL;
8027 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
8029 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
8030 tp->nvram_jedecnum = JEDEC_ATMEL;
8031 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
8032 tp->tg3_flags2 |= TG3_FLG2_FLASH;
8034 case FLASH_5752VENDOR_ST_M45PE10:
8035 case FLASH_5752VENDOR_ST_M45PE20:
8036 case FLASH_5752VENDOR_ST_M45PE40:
8037 tp->nvram_jedecnum = JEDEC_ST;
8038 tp->tg3_flags |= TG3_FLAG_NVRAM_BUFFERED;
8039 tp->tg3_flags2 |= TG3_FLG2_FLASH;
8043 if (tp->tg3_flags2 & TG3_FLG2_FLASH) {
8044 switch (nvcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
8045 case FLASH_5752PAGE_SIZE_256:
8046 tp->nvram_pagesize = 256;
8048 case FLASH_5752PAGE_SIZE_512:
8049 tp->nvram_pagesize = 512;
8051 case FLASH_5752PAGE_SIZE_1K:
8052 tp->nvram_pagesize = 1024;
8054 case FLASH_5752PAGE_SIZE_2K:
8055 tp->nvram_pagesize = 2048;
8057 case FLASH_5752PAGE_SIZE_4K:
8058 tp->nvram_pagesize = 4096;
8060 case FLASH_5752PAGE_SIZE_264:
8061 tp->nvram_pagesize = 264;
8066 /* For eeprom, set pagesize to maximum eeprom size */
8067 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
8069 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
8070 tw32(NVRAM_CFG1, nvcfg1);
8074 /* Chips other than 5700/5701 use the NVRAM for fetching info. */
8075 static void __devinit tg3_nvram_init(struct tg3 *tp)
8079 if (tp->tg3_flags2 & TG3_FLG2_SUN_570X)
8082 tw32_f(GRC_EEPROM_ADDR,
8083 (EEPROM_ADDR_FSM_RESET |
8084 (EEPROM_DEFAULT_CLOCK_PERIOD <<
8085 EEPROM_ADDR_CLKPERD_SHIFT)));
8087 /* XXX schedule_timeout() ... */
8088 for (j = 0; j < 100; j++)
8091 /* Enable seeprom accesses. */
8092 tw32_f(GRC_LOCAL_CTRL,
8093 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
8096 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
8097 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
8098 tp->tg3_flags |= TG3_FLAG_NVRAM;
8100 tg3_enable_nvram_access(tp);
8102 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8103 tg3_get_5752_nvram_info(tp);
8105 tg3_get_nvram_info(tp);
8107 tg3_get_nvram_size(tp);
8109 tg3_disable_nvram_access(tp);
8112 tp->tg3_flags &= ~(TG3_FLAG_NVRAM | TG3_FLAG_NVRAM_BUFFERED);
8114 tg3_get_eeprom_size(tp);
8118 static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
8119 u32 offset, u32 *val)
8124 if (offset > EEPROM_ADDR_ADDR_MASK ||
8128 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
8129 EEPROM_ADDR_DEVID_MASK |
8131 tw32(GRC_EEPROM_ADDR,
8133 (0 << EEPROM_ADDR_DEVID_SHIFT) |
8134 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
8135 EEPROM_ADDR_ADDR_MASK) |
8136 EEPROM_ADDR_READ | EEPROM_ADDR_START);
8138 for (i = 0; i < 10000; i++) {
8139 tmp = tr32(GRC_EEPROM_ADDR);
8141 if (tmp & EEPROM_ADDR_COMPLETE)
8145 if (!(tmp & EEPROM_ADDR_COMPLETE))
8148 *val = tr32(GRC_EEPROM_DATA);
8152 #define NVRAM_CMD_TIMEOUT 10000
8154 static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
8158 tw32(NVRAM_CMD, nvram_cmd);
8159 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
8161 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
8166 if (i == NVRAM_CMD_TIMEOUT) {
8172 static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
8176 if (tp->tg3_flags2 & TG3_FLG2_SUN_570X) {
8177 printk(KERN_ERR PFX "Attempt to do nvram_read on Sun 570X\n");
8181 if (!(tp->tg3_flags & TG3_FLAG_NVRAM))
8182 return tg3_nvram_read_using_eeprom(tp, offset, val);
8184 if ((tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) &&
8185 (tp->tg3_flags2 & TG3_FLG2_FLASH) &&
8186 (tp->nvram_jedecnum == JEDEC_ATMEL)) {
8188 offset = ((offset / tp->nvram_pagesize) <<
8189 ATMEL_AT45DB0X1B_PAGE_POS) +
8190 (offset % tp->nvram_pagesize);
8193 if (offset > NVRAM_ADDR_MSK)
8198 tg3_enable_nvram_access(tp);
8200 tw32(NVRAM_ADDR, offset);
8201 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
8202 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
8205 *val = swab32(tr32(NVRAM_RDDATA));
8207 tg3_nvram_unlock(tp);
8209 tg3_disable_nvram_access(tp);
8214 static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
8215 u32 offset, u32 len, u8 *buf)
8220 for (i = 0; i < len; i += 4) {
8225 memcpy(&data, buf + i, 4);
8227 tw32(GRC_EEPROM_DATA, cpu_to_le32(data));
8229 val = tr32(GRC_EEPROM_ADDR);
8230 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
8232 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
8234 tw32(GRC_EEPROM_ADDR, val |
8235 (0 << EEPROM_ADDR_DEVID_SHIFT) |
8236 (addr & EEPROM_ADDR_ADDR_MASK) |
8240 for (j = 0; j < 10000; j++) {
8241 val = tr32(GRC_EEPROM_ADDR);
8243 if (val & EEPROM_ADDR_COMPLETE)
8247 if (!(val & EEPROM_ADDR_COMPLETE)) {
8256 /* offset and length are dword aligned */
8257 static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
8261 u32 pagesize = tp->nvram_pagesize;
8262 u32 pagemask = pagesize - 1;
8266 tmp = kmalloc(pagesize, GFP_KERNEL);
8272 u32 phy_addr, page_off, size;
8274 phy_addr = offset & ~pagemask;
8276 for (j = 0; j < pagesize; j += 4) {
8277 if ((ret = tg3_nvram_read(tp, phy_addr + j,
8278 (u32 *) (tmp + j))))
8284 page_off = offset & pagemask;
8291 memcpy(tmp + page_off, buf, size);
8293 offset = offset + (pagesize - page_off);
8295 tg3_enable_nvram_access(tp);
8298 * Before we can erase the flash page, we need
8299 * to issue a special "write enable" command.
8301 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
8303 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
8306 /* Erase the target page */
8307 tw32(NVRAM_ADDR, phy_addr);
8309 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
8310 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
8312 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
8315 /* Issue another write enable to start the write. */
8316 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
8318 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
8321 for (j = 0; j < pagesize; j += 4) {
8324 data = *((u32 *) (tmp + j));
8325 tw32(NVRAM_WRDATA, cpu_to_be32(data));
8327 tw32(NVRAM_ADDR, phy_addr + j);
8329 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
8333 nvram_cmd |= NVRAM_CMD_FIRST;
8334 else if (j == (pagesize - 4))
8335 nvram_cmd |= NVRAM_CMD_LAST;
8337 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
8344 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
8345 tg3_nvram_exec_cmd(tp, nvram_cmd);
8352 /* offset and length are dword aligned */
8353 static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
8358 for (i = 0; i < len; i += 4, offset += 4) {
8359 u32 data, page_off, phy_addr, nvram_cmd;
8361 memcpy(&data, buf + i, 4);
8362 tw32(NVRAM_WRDATA, cpu_to_be32(data));
8364 page_off = offset % tp->nvram_pagesize;
8366 if ((tp->tg3_flags2 & TG3_FLG2_FLASH) &&
8367 (tp->nvram_jedecnum == JEDEC_ATMEL)) {
8369 phy_addr = ((offset / tp->nvram_pagesize) <<
8370 ATMEL_AT45DB0X1B_PAGE_POS) + page_off;
8376 tw32(NVRAM_ADDR, phy_addr);
8378 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
8380 if ((page_off == 0) || (i == 0))
8381 nvram_cmd |= NVRAM_CMD_FIRST;
8382 else if (page_off == (tp->nvram_pagesize - 4))
8383 nvram_cmd |= NVRAM_CMD_LAST;
8386 nvram_cmd |= NVRAM_CMD_LAST;
8388 if ((tp->nvram_jedecnum == JEDEC_ST) &&
8389 (nvram_cmd & NVRAM_CMD_FIRST)) {
8391 if ((ret = tg3_nvram_exec_cmd(tp,
8392 NVRAM_CMD_WREN | NVRAM_CMD_GO |
8397 if (!(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
8398 /* We always do complete word writes to eeprom. */
8399 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
8402 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
8408 /* offset and length are dword aligned */
8409 static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
8413 if (tp->tg3_flags2 & TG3_FLG2_SUN_570X) {
8414 printk(KERN_ERR PFX "Attempt to do nvram_write on Sun 570X\n");
8418 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
8419 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
8420 ~GRC_LCLCTRL_GPIO_OUTPUT1);
8424 if (!(tp->tg3_flags & TG3_FLAG_NVRAM)) {
8425 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
8432 tg3_enable_nvram_access(tp);
8433 if ((tp->tg3_flags2 & TG3_FLG2_5750_PLUS) &&
8434 !(tp->tg3_flags2 & TG3_FLG2_PROTECTED_NVRAM))
8435 tw32(NVRAM_WRITE1, 0x406);
8437 grc_mode = tr32(GRC_MODE);
8438 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
8440 if ((tp->tg3_flags & TG3_FLAG_NVRAM_BUFFERED) ||
8441 !(tp->tg3_flags2 & TG3_FLG2_FLASH)) {
8443 ret = tg3_nvram_write_block_buffered(tp, offset, len,
8447 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
8451 grc_mode = tr32(GRC_MODE);
8452 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
8454 tg3_disable_nvram_access(tp);
8455 tg3_nvram_unlock(tp);
8458 if (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT) {
8459 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8466 struct subsys_tbl_ent {
8467 u16 subsys_vendor, subsys_devid;
8471 static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
8472 /* Broadcom boards. */
8473 { PCI_VENDOR_ID_BROADCOM, 0x1644, PHY_ID_BCM5401 }, /* BCM95700A6 */
8474 { PCI_VENDOR_ID_BROADCOM, 0x0001, PHY_ID_BCM5701 }, /* BCM95701A5 */
8475 { PCI_VENDOR_ID_BROADCOM, 0x0002, PHY_ID_BCM8002 }, /* BCM95700T6 */
8476 { PCI_VENDOR_ID_BROADCOM, 0x0003, 0 }, /* BCM95700A9 */
8477 { PCI_VENDOR_ID_BROADCOM, 0x0005, PHY_ID_BCM5701 }, /* BCM95701T1 */
8478 { PCI_VENDOR_ID_BROADCOM, 0x0006, PHY_ID_BCM5701 }, /* BCM95701T8 */
8479 { PCI_VENDOR_ID_BROADCOM, 0x0007, 0 }, /* BCM95701A7 */
8480 { PCI_VENDOR_ID_BROADCOM, 0x0008, PHY_ID_BCM5701 }, /* BCM95701A10 */
8481 { PCI_VENDOR_ID_BROADCOM, 0x8008, PHY_ID_BCM5701 }, /* BCM95701A12 */
8482 { PCI_VENDOR_ID_BROADCOM, 0x0009, PHY_ID_BCM5703 }, /* BCM95703Ax1 */
8483 { PCI_VENDOR_ID_BROADCOM, 0x8009, PHY_ID_BCM5703 }, /* BCM95703Ax2 */
8486 { PCI_VENDOR_ID_3COM, 0x1000, PHY_ID_BCM5401 }, /* 3C996T */
8487 { PCI_VENDOR_ID_3COM, 0x1006, PHY_ID_BCM5701 }, /* 3C996BT */
8488 { PCI_VENDOR_ID_3COM, 0x1004, 0 }, /* 3C996SX */
8489 { PCI_VENDOR_ID_3COM, 0x1007, PHY_ID_BCM5701 }, /* 3C1000T */
8490 { PCI_VENDOR_ID_3COM, 0x1008, PHY_ID_BCM5701 }, /* 3C940BR01 */
8493 { PCI_VENDOR_ID_DELL, 0x00d1, PHY_ID_BCM5401 }, /* VIPER */
8494 { PCI_VENDOR_ID_DELL, 0x0106, PHY_ID_BCM5401 }, /* JAGUAR */
8495 { PCI_VENDOR_ID_DELL, 0x0109, PHY_ID_BCM5411 }, /* MERLOT */
8496 { PCI_VENDOR_ID_DELL, 0x010a, PHY_ID_BCM5411 }, /* SLIM_MERLOT */
8498 /* Compaq boards. */
8499 { PCI_VENDOR_ID_COMPAQ, 0x007c, PHY_ID_BCM5701 }, /* BANSHEE */
8500 { PCI_VENDOR_ID_COMPAQ, 0x009a, PHY_ID_BCM5701 }, /* BANSHEE_2 */
8501 { PCI_VENDOR_ID_COMPAQ, 0x007d, 0 }, /* CHANGELING */
8502 { PCI_VENDOR_ID_COMPAQ, 0x0085, PHY_ID_BCM5701 }, /* NC7780 */
8503 { PCI_VENDOR_ID_COMPAQ, 0x0099, PHY_ID_BCM5701 }, /* NC7780_2 */
8506 { PCI_VENDOR_ID_IBM, 0x0281, 0 } /* IBM??? */
8509 static inline struct subsys_tbl_ent *lookup_by_subsys(struct tg3 *tp)
8513 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
8514 if ((subsys_id_to_phy_id[i].subsys_vendor ==
8515 tp->pdev->subsystem_vendor) &&
8516 (subsys_id_to_phy_id[i].subsys_devid ==
8517 tp->pdev->subsystem_device))
8518 return &subsys_id_to_phy_id[i];
8523 /* Since this function may be called in D3-hot power state during
8524 * tg3_init_one(), only config cycles are allowed.
8526 static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
8530 /* Make sure register accesses (indirect or otherwise)
8531 * will function correctly.
8533 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
8534 tp->misc_host_ctrl);
8536 tp->phy_id = PHY_ID_INVALID;
8537 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
8539 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
8540 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
8541 u32 nic_cfg, led_cfg;
8542 u32 nic_phy_id, ver, cfg2 = 0, eeprom_phy_id;
8543 int eeprom_phy_serdes = 0;
8545 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
8546 tp->nic_sram_data_cfg = nic_cfg;
8548 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
8549 ver >>= NIC_SRAM_DATA_VER_SHIFT;
8550 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
8551 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
8552 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703) &&
8553 (ver > 0) && (ver < 0x100))
8554 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
8556 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
8557 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
8558 eeprom_phy_serdes = 1;
8560 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
8561 if (nic_phy_id != 0) {
8562 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
8563 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
8565 eeprom_phy_id = (id1 >> 16) << 10;
8566 eeprom_phy_id |= (id2 & 0xfc00) << 16;
8567 eeprom_phy_id |= (id2 & 0x03ff) << 0;
8571 tp->phy_id = eeprom_phy_id;
8572 if (eeprom_phy_serdes)
8573 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
8575 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
8576 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
8577 SHASTA_EXT_LED_MODE_MASK);
8579 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
8583 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
8584 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
8587 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
8588 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
8591 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
8592 tp->led_ctrl = LED_CTRL_MODE_MAC;
8594 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
8595 * read on some older 5700/5701 bootcode.
8597 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
8599 GET_ASIC_REV(tp->pci_chip_rev_id) ==
8601 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
8605 case SHASTA_EXT_LED_SHARED:
8606 tp->led_ctrl = LED_CTRL_MODE_SHARED;
8607 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
8608 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
8609 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
8610 LED_CTRL_MODE_PHY_2);
8613 case SHASTA_EXT_LED_MAC:
8614 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
8617 case SHASTA_EXT_LED_COMBO:
8618 tp->led_ctrl = LED_CTRL_MODE_COMBO;
8619 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
8620 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
8621 LED_CTRL_MODE_PHY_2);
8626 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
8627 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
8628 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
8629 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
8631 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
8632 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
8633 (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP))
8634 tp->tg3_flags |= TG3_FLAG_EEPROM_WRITE_PROT;
8636 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
8637 tp->tg3_flags |= TG3_FLAG_ENABLE_ASF;
8638 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
8639 tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE;
8641 if (nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL)
8642 tp->tg3_flags |= TG3_FLAG_SERDES_WOL_CAP;
8644 if (cfg2 & (1 << 17))
8645 tp->tg3_flags2 |= TG3_FLG2_CAPACITIVE_COUPLING;
8647 /* serdes signal pre-emphasis in register 0x590 set by */
8648 /* bootcode if bit 18 is set */
8649 if (cfg2 & (1 << 18))
8650 tp->tg3_flags2 |= TG3_FLG2_SERDES_PREEMPHASIS;
8654 static int __devinit tg3_phy_probe(struct tg3 *tp)
8656 u32 hw_phy_id_1, hw_phy_id_2;
8657 u32 hw_phy_id, hw_phy_id_masked;
8660 /* Reading the PHY ID register can conflict with ASF
8661 * firwmare access to the PHY hardware.
8664 if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) {
8665 hw_phy_id = hw_phy_id_masked = PHY_ID_INVALID;
8667 /* Now read the physical PHY_ID from the chip and verify
8668 * that it is sane. If it doesn't look good, we fall back
8669 * to either the hard-coded table based PHY_ID and failing
8670 * that the value found in the eeprom area.
8672 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
8673 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
8675 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
8676 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
8677 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
8679 hw_phy_id_masked = hw_phy_id & PHY_ID_MASK;
8682 if (!err && KNOWN_PHY_ID(hw_phy_id_masked)) {
8683 tp->phy_id = hw_phy_id;
8684 if (hw_phy_id_masked == PHY_ID_BCM8002)
8685 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
8687 if (tp->phy_id != PHY_ID_INVALID) {
8688 /* Do nothing, phy ID already set up in
8689 * tg3_get_eeprom_hw_cfg().
8692 struct subsys_tbl_ent *p;
8694 /* No eeprom signature? Try the hardcoded
8695 * subsys device table.
8697 p = lookup_by_subsys(tp);
8701 tp->phy_id = p->phy_id;
8703 tp->phy_id == PHY_ID_BCM8002)
8704 tp->tg3_flags2 |= TG3_FLG2_PHY_SERDES;
8708 if (!(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) &&
8709 !(tp->tg3_flags & TG3_FLAG_ENABLE_ASF)) {
8710 u32 bmsr, adv_reg, tg3_ctrl;
8712 tg3_readphy(tp, MII_BMSR, &bmsr);
8713 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
8714 (bmsr & BMSR_LSTATUS))
8715 goto skip_phy_reset;
8717 err = tg3_phy_reset(tp);
8721 adv_reg = (ADVERTISE_10HALF | ADVERTISE_10FULL |
8722 ADVERTISE_100HALF | ADVERTISE_100FULL |
8723 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
8725 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY)) {
8726 tg3_ctrl = (MII_TG3_CTRL_ADV_1000_HALF |
8727 MII_TG3_CTRL_ADV_1000_FULL);
8728 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
8729 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
8730 tg3_ctrl |= (MII_TG3_CTRL_AS_MASTER |
8731 MII_TG3_CTRL_ENABLE_AS_MASTER);
8734 if (!tg3_copper_is_advertising_all(tp)) {
8735 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
8737 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
8738 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
8740 tg3_writephy(tp, MII_BMCR,
8741 BMCR_ANENABLE | BMCR_ANRESTART);
8743 tg3_phy_set_wirespeed(tp);
8745 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
8746 if (!(tp->tg3_flags & TG3_FLAG_10_100_ONLY))
8747 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
8751 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
8752 err = tg3_init_5401phy_dsp(tp);
8757 if (!err && ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401)) {
8758 err = tg3_init_5401phy_dsp(tp);
8761 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
8762 tp->link_config.advertising =
8763 (ADVERTISED_1000baseT_Half |
8764 ADVERTISED_1000baseT_Full |
8765 ADVERTISED_Autoneg |
8767 if (tp->tg3_flags & TG3_FLAG_10_100_ONLY)
8768 tp->link_config.advertising &=
8769 ~(ADVERTISED_1000baseT_Half |
8770 ADVERTISED_1000baseT_Full);
8775 static void __devinit tg3_read_partno(struct tg3 *tp)
8777 unsigned char vpd_data[256];
8780 if (tp->tg3_flags2 & TG3_FLG2_SUN_570X) {
8781 /* Sun decided not to put the necessary bits in the
8782 * NVRAM of their onboard tg3 parts :(
8784 strcpy(tp->board_part_number, "Sun 570X");
8788 for (i = 0; i < 256; i += 4) {
8791 if (tg3_nvram_read(tp, 0x100 + i, &tmp))
8794 vpd_data[i + 0] = ((tmp >> 0) & 0xff);
8795 vpd_data[i + 1] = ((tmp >> 8) & 0xff);
8796 vpd_data[i + 2] = ((tmp >> 16) & 0xff);
8797 vpd_data[i + 3] = ((tmp >> 24) & 0xff);
8800 /* Now parse and find the part number. */
8801 for (i = 0; i < 256; ) {
8802 unsigned char val = vpd_data[i];
8805 if (val == 0x82 || val == 0x91) {
8808 (vpd_data[i + 2] << 8)));
8815 block_end = (i + 3 +
8817 (vpd_data[i + 2] << 8)));
8819 while (i < block_end) {
8820 if (vpd_data[i + 0] == 'P' &&
8821 vpd_data[i + 1] == 'N') {
8822 int partno_len = vpd_data[i + 2];
8824 if (partno_len > 24)
8827 memcpy(tp->board_part_number,
8836 /* Part number not found. */
8841 strcpy(tp->board_part_number, "none");
8844 #ifdef CONFIG_SPARC64
8845 static int __devinit tg3_is_sun_570X(struct tg3 *tp)
8847 struct pci_dev *pdev = tp->pdev;
8848 struct pcidev_cookie *pcp = pdev->sysdata;
8851 int node = pcp->prom_node;
8855 err = prom_getproperty(node, "subsystem-vendor-id",
8856 (char *) &venid, sizeof(venid));
8857 if (err == 0 || err == -1)
8859 if (venid == PCI_VENDOR_ID_SUN)
8866 static int __devinit tg3_get_invariants(struct tg3 *tp)
8868 static struct pci_device_id write_reorder_chipsets[] = {
8869 { PCI_DEVICE(PCI_VENDOR_ID_INTEL,
8870 PCI_DEVICE_ID_INTEL_82801AA_8) },
8871 { PCI_DEVICE(PCI_VENDOR_ID_INTEL,
8872 PCI_DEVICE_ID_INTEL_82801AB_8) },
8873 { PCI_DEVICE(PCI_VENDOR_ID_INTEL,
8874 PCI_DEVICE_ID_INTEL_82801BA_11) },
8875 { PCI_DEVICE(PCI_VENDOR_ID_INTEL,
8876 PCI_DEVICE_ID_INTEL_82801BA_6) },
8877 { PCI_DEVICE(PCI_VENDOR_ID_AMD,
8878 PCI_DEVICE_ID_AMD_FE_GATE_700C) },
8882 u32 cacheline_sz_reg;
8883 u32 pci_state_reg, grc_misc_cfg;
8888 #ifdef CONFIG_SPARC64
8889 if (tg3_is_sun_570X(tp))
8890 tp->tg3_flags2 |= TG3_FLG2_SUN_570X;
8893 /* If we have an AMD 762 or Intel ICH/ICH0/ICH2 chipset, write
8894 * reordering to the mailbox registers done by the host
8895 * controller can cause major troubles. We read back from
8896 * every mailbox register write to force the writes to be
8897 * posted to the chip in order.
8899 if (pci_dev_present(write_reorder_chipsets))
8900 tp->tg3_flags |= TG3_FLAG_MBOX_WRITE_REORDER;
8902 /* Force memory write invalidate off. If we leave it on,
8903 * then on 5700_BX chips we have to enable a workaround.
8904 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
8905 * to match the cacheline size. The Broadcom driver have this
8906 * workaround but turns MWI off all the times so never uses
8907 * it. This seems to suggest that the workaround is insufficient.
8909 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
8910 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
8911 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
8913 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
8914 * has the register indirect write enable bit set before
8915 * we try to access any of the MMIO registers. It is also
8916 * critical that the PCI-X hw workaround situation is decided
8917 * before that as well.
8919 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
8922 tp->pci_chip_rev_id = (misc_ctrl_reg >>
8923 MISC_HOST_CTRL_CHIPREV_SHIFT);
8925 /* Wrong chip ID in 5752 A0. This code can be removed later
8926 * as A0 is not in production.
8928 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
8929 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
8931 /* Initialize misc host control in PCI block. */
8932 tp->misc_host_ctrl |= (misc_ctrl_reg &
8933 MISC_HOST_CTRL_CHIPREV);
8934 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
8935 tp->misc_host_ctrl);
8937 pci_read_config_dword(tp->pdev, TG3PCI_CACHELINESZ,
8940 tp->pci_cacheline_sz = (cacheline_sz_reg >> 0) & 0xff;
8941 tp->pci_lat_timer = (cacheline_sz_reg >> 8) & 0xff;
8942 tp->pci_hdr_type = (cacheline_sz_reg >> 16) & 0xff;
8943 tp->pci_bist = (cacheline_sz_reg >> 24) & 0xff;
8945 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
8946 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8947 tp->tg3_flags2 |= TG3_FLG2_5750_PLUS;
8949 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) ||
8950 (tp->tg3_flags2 & TG3_FLG2_5750_PLUS))
8951 tp->tg3_flags2 |= TG3_FLG2_5705_PLUS;
8953 if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)
8954 tp->tg3_flags2 |= TG3_FLG2_HW_TSO;
8956 if (pci_find_capability(tp->pdev, PCI_CAP_ID_EXP) != 0)
8957 tp->tg3_flags2 |= TG3_FLG2_PCI_EXPRESS;
8959 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
8960 tp->pci_lat_timer < 64) {
8961 tp->pci_lat_timer = 64;
8963 cacheline_sz_reg = ((tp->pci_cacheline_sz & 0xff) << 0);
8964 cacheline_sz_reg |= ((tp->pci_lat_timer & 0xff) << 8);
8965 cacheline_sz_reg |= ((tp->pci_hdr_type & 0xff) << 16);
8966 cacheline_sz_reg |= ((tp->pci_bist & 0xff) << 24);
8968 pci_write_config_dword(tp->pdev, TG3PCI_CACHELINESZ,
8972 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
8975 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0) {
8976 tp->tg3_flags |= TG3_FLAG_PCIX_MODE;
8978 /* If this is a 5700 BX chipset, and we are in PCI-X
8979 * mode, enable register write workaround.
8981 * The workaround is to use indirect register accesses
8982 * for all chip writes not to mailbox registers.
8984 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
8988 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
8990 /* The chip can have it's power management PCI config
8991 * space registers clobbered due to this bug.
8992 * So explicitly force the chip into D0 here.
8994 pci_read_config_dword(tp->pdev, TG3PCI_PM_CTRL_STAT,
8996 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
8997 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
8998 pci_write_config_dword(tp->pdev, TG3PCI_PM_CTRL_STAT,
9001 /* Also, force SERR#/PERR# in PCI command. */
9002 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9003 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
9004 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9008 /* Back to back register writes can cause problems on this chip,
9009 * the workaround is to read back all reg writes except those to
9010 * mailbox regs. See tg3_write_indirect_reg32().
9012 * PCI Express 5750_A0 rev chips need this workaround too.
9014 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
9015 ((tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) &&
9016 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0))
9017 tp->tg3_flags |= TG3_FLAG_5701_REG_WRITE_BUG;
9019 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
9020 tp->tg3_flags |= TG3_FLAG_PCI_HIGH_SPEED;
9021 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
9022 tp->tg3_flags |= TG3_FLAG_PCI_32BIT;
9024 /* Chip-specific fixup from Broadcom driver */
9025 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
9026 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
9027 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
9028 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
9031 /* Get eeprom hw config before calling tg3_set_power_state().
9032 * In particular, the TG3_FLAG_EEPROM_WRITE_PROT flag must be
9033 * determined before calling tg3_set_power_state() so that
9034 * we know whether or not to switch out of Vaux power.
9035 * When the flag is set, it means that GPIO1 is used for eeprom
9036 * write protect and also implies that it is a LOM where GPIOs
9037 * are not used to switch power.
9039 tg3_get_eeprom_hw_cfg(tp);
9041 /* Set up tp->grc_local_ctrl before calling tg3_set_power_state().
9042 * GPIO1 driven high will bring 5700's external PHY out of reset.
9043 * It is also used as eeprom write protect on LOMs.
9045 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
9046 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
9047 (tp->tg3_flags & TG3_FLAG_EEPROM_WRITE_PROT))
9048 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
9049 GRC_LCLCTRL_GPIO_OUTPUT1);
9050 /* Unused GPIO3 must be driven as output on 5752 because there
9051 * are no pull-up resistors on unused GPIO pins.
9053 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
9054 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
9056 /* Force the chip into D0. */
9057 err = tg3_set_power_state(tp, 0);
9059 printk(KERN_ERR PFX "(%s) transition to D0 failed\n",
9060 pci_name(tp->pdev));
9064 /* 5700 B0 chips do not support checksumming correctly due
9067 if (tp->pci_chip_rev_id == CHIPREV_ID_5700_B0)
9068 tp->tg3_flags |= TG3_FLAG_BROKEN_CHECKSUMS;
9070 /* Pseudo-header checksum is done by hardware logic and not
9071 * the offload processers, so make the chip do the pseudo-
9072 * header checksums on receive. For transmit it is more
9073 * convenient to do the pseudo-header checksum in software
9074 * as Linux does that on transmit for us in all cases.
9076 tp->tg3_flags |= TG3_FLAG_NO_TX_PSEUDO_CSUM;
9077 tp->tg3_flags &= ~TG3_FLAG_NO_RX_PSEUDO_CSUM;
9079 /* Derive initial jumbo mode from MTU assigned in
9080 * ether_setup() via the alloc_etherdev() call
9082 if (tp->dev->mtu > ETH_DATA_LEN)
9083 tp->tg3_flags |= TG3_FLAG_JUMBO_ENABLE;
9085 /* Determine WakeOnLan speed to use. */
9086 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9087 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
9088 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
9089 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
9090 tp->tg3_flags &= ~(TG3_FLAG_WOL_SPEED_100MB);
9092 tp->tg3_flags |= TG3_FLAG_WOL_SPEED_100MB;
9095 /* A few boards don't want Ethernet@WireSpeed phy feature */
9096 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
9097 ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
9098 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
9099 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)))
9100 tp->tg3_flags2 |= TG3_FLG2_NO_ETH_WIRE_SPEED;
9102 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
9103 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
9104 tp->tg3_flags2 |= TG3_FLG2_PHY_ADC_BUG;
9105 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
9106 tp->tg3_flags2 |= TG3_FLG2_PHY_5704_A0_BUG;
9108 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS)
9109 tp->tg3_flags2 |= TG3_FLG2_PHY_BER_BUG;
9111 tp->coalesce_mode = 0;
9112 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
9113 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
9114 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
9116 /* Initialize MAC MI mode, polling disabled. */
9117 tw32_f(MAC_MI_MODE, tp->mi_mode);
9120 /* Initialize data/descriptor byte/word swapping. */
9121 val = tr32(GRC_MODE);
9122 val &= GRC_MODE_HOST_STACKUP;
9123 tw32(GRC_MODE, val | tp->grc_mode);
9125 tg3_switch_clocks(tp);
9127 /* Clear this out for sanity. */
9128 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
9130 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
9132 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
9133 (tp->tg3_flags & TG3_FLAG_PCIX_TARGET_HWBUG) == 0) {
9134 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
9136 if (chiprevid == CHIPREV_ID_5701_A0 ||
9137 chiprevid == CHIPREV_ID_5701_B0 ||
9138 chiprevid == CHIPREV_ID_5701_B2 ||
9139 chiprevid == CHIPREV_ID_5701_B5) {
9140 void __iomem *sram_base;
9142 /* Write some dummy words into the SRAM status block
9143 * area, see if it reads back correctly. If the return
9144 * value is bad, force enable the PCIX workaround.
9146 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
9148 writel(0x00000000, sram_base);
9149 writel(0x00000000, sram_base + 4);
9150 writel(0xffffffff, sram_base + 4);
9151 if (readl(sram_base) != 0x00000000)
9152 tp->tg3_flags |= TG3_FLAG_PCIX_TARGET_HWBUG;
9159 grc_misc_cfg = tr32(GRC_MISC_CFG);
9160 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
9162 /* Broadcom's driver says that CIOBE multisplit has a bug */
9164 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
9165 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5704CIOBE) {
9166 tp->tg3_flags |= TG3_FLAG_SPLIT_MODE;
9167 tp->split_mode_max_reqs = SPLIT_MODE_5704_MAX_REQ;
9170 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
9171 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
9172 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
9173 tp->tg3_flags2 |= TG3_FLG2_IS_5788;
9175 if (!(tp->tg3_flags2 & TG3_FLG2_IS_5788) &&
9176 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700))
9177 tp->tg3_flags |= TG3_FLAG_TAGGED_STATUS;
9178 if (tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) {
9179 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
9180 HOSTCC_MODE_CLRTICK_TXBD);
9182 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
9183 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
9184 tp->misc_host_ctrl);
9187 /* these are limited to 10/100 only */
9188 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
9189 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
9190 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
9191 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
9192 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
9193 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
9194 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
9195 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
9196 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
9197 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F)))
9198 tp->tg3_flags |= TG3_FLAG_10_100_ONLY;
9200 err = tg3_phy_probe(tp);
9202 printk(KERN_ERR PFX "(%s) phy probe failed, err %d\n",
9203 pci_name(tp->pdev), err);
9204 /* ... but do not return immediately ... */
9207 tg3_read_partno(tp);
9209 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES) {
9210 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
9212 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
9213 tp->tg3_flags |= TG3_FLAG_USE_MI_INTERRUPT;
9215 tp->tg3_flags &= ~TG3_FLAG_USE_MI_INTERRUPT;
9218 /* 5700 {AX,BX} chips have a broken status block link
9219 * change bit implementation, so we must use the
9220 * status register in those cases.
9222 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
9223 tp->tg3_flags |= TG3_FLAG_USE_LINKCHG_REG;
9225 tp->tg3_flags &= ~TG3_FLAG_USE_LINKCHG_REG;
9227 /* The led_ctrl is set during tg3_phy_probe, here we might
9228 * have to force the link status polling mechanism based
9229 * upon subsystem IDs.
9231 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
9232 !(tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)) {
9233 tp->tg3_flags |= (TG3_FLAG_USE_MI_INTERRUPT |
9234 TG3_FLAG_USE_LINKCHG_REG);
9237 /* For all SERDES we poll the MAC status register. */
9238 if (tp->tg3_flags2 & TG3_FLG2_PHY_SERDES)
9239 tp->tg3_flags |= TG3_FLAG_POLL_SERDES;
9241 tp->tg3_flags &= ~TG3_FLAG_POLL_SERDES;
9243 /* 5700 BX chips need to have their TX producer index mailboxes
9244 * written twice to workaround a bug.
9246 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX)
9247 tp->tg3_flags |= TG3_FLAG_TXD_MBOX_HWBUG;
9249 tp->tg3_flags &= ~TG3_FLAG_TXD_MBOX_HWBUG;
9251 /* It seems all chips can get confused if TX buffers
9252 * straddle the 4GB address boundary in some cases.
9254 tp->dev->hard_start_xmit = tg3_start_xmit;
9257 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
9258 (tp->tg3_flags & TG3_FLAG_PCIX_MODE) != 0)
9261 /* By default, disable wake-on-lan. User can change this
9262 * using ETHTOOL_SWOL.
9264 tp->tg3_flags &= ~TG3_FLAG_WOL_ENABLE;
9269 #ifdef CONFIG_SPARC64
9270 static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
9272 struct net_device *dev = tp->dev;
9273 struct pci_dev *pdev = tp->pdev;
9274 struct pcidev_cookie *pcp = pdev->sysdata;
9277 int node = pcp->prom_node;
9279 if (prom_getproplen(node, "local-mac-address") == 6) {
9280 prom_getproperty(node, "local-mac-address",
9288 static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
9290 struct net_device *dev = tp->dev;
9292 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
9297 static int __devinit tg3_get_device_address(struct tg3 *tp)
9299 struct net_device *dev = tp->dev;
9300 u32 hi, lo, mac_offset;
9302 #ifdef CONFIG_SPARC64
9303 if (!tg3_get_macaddr_sparc(tp))
9308 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
9309 !(tp->tg3_flags & TG3_FLG2_SUN_570X)) {
9310 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
9312 if (tg3_nvram_lock(tp))
9313 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
9315 tg3_nvram_unlock(tp);
9318 /* First try to get it from MAC address mailbox. */
9319 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
9320 if ((hi >> 16) == 0x484b) {
9321 dev->dev_addr[0] = (hi >> 8) & 0xff;
9322 dev->dev_addr[1] = (hi >> 0) & 0xff;
9324 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
9325 dev->dev_addr[2] = (lo >> 24) & 0xff;
9326 dev->dev_addr[3] = (lo >> 16) & 0xff;
9327 dev->dev_addr[4] = (lo >> 8) & 0xff;
9328 dev->dev_addr[5] = (lo >> 0) & 0xff;
9330 /* Next, try NVRAM. */
9331 else if (!(tp->tg3_flags & TG3_FLG2_SUN_570X) &&
9332 !tg3_nvram_read(tp, mac_offset + 0, &hi) &&
9333 !tg3_nvram_read(tp, mac_offset + 4, &lo)) {
9334 dev->dev_addr[0] = ((hi >> 16) & 0xff);
9335 dev->dev_addr[1] = ((hi >> 24) & 0xff);
9336 dev->dev_addr[2] = ((lo >> 0) & 0xff);
9337 dev->dev_addr[3] = ((lo >> 8) & 0xff);
9338 dev->dev_addr[4] = ((lo >> 16) & 0xff);
9339 dev->dev_addr[5] = ((lo >> 24) & 0xff);
9341 /* Finally just fetch it out of the MAC control regs. */
9343 hi = tr32(MAC_ADDR_0_HIGH);
9344 lo = tr32(MAC_ADDR_0_LOW);
9346 dev->dev_addr[5] = lo & 0xff;
9347 dev->dev_addr[4] = (lo >> 8) & 0xff;
9348 dev->dev_addr[3] = (lo >> 16) & 0xff;
9349 dev->dev_addr[2] = (lo >> 24) & 0xff;
9350 dev->dev_addr[1] = hi & 0xff;
9351 dev->dev_addr[0] = (hi >> 8) & 0xff;
9354 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
9355 #ifdef CONFIG_SPARC64
9356 if (!tg3_get_default_macaddr_sparc(tp))
9364 #define BOUNDARY_SINGLE_CACHELINE 1
9365 #define BOUNDARY_MULTI_CACHELINE 2
9367 static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
9373 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
9375 cacheline_size = 1024;
9377 cacheline_size = (int) byte * 4;
9379 /* On 5703 and later chips, the boundary bits have no
9382 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
9383 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
9384 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS))
9387 #if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
9388 goal = BOUNDARY_MULTI_CACHELINE;
9390 #if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
9391 goal = BOUNDARY_SINGLE_CACHELINE;
9400 /* PCI controllers on most RISC systems tend to disconnect
9401 * when a device tries to burst across a cache-line boundary.
9402 * Therefore, letting tg3 do so just wastes PCI bandwidth.
9404 * Unfortunately, for PCI-E there are only limited
9405 * write-side controls for this, and thus for reads
9406 * we will still get the disconnects. We'll also waste
9407 * these PCI cycles for both read and write for chips
9408 * other than 5700 and 5701 which do not implement the
9411 if ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) &&
9412 !(tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS)) {
9413 switch (cacheline_size) {
9418 if (goal == BOUNDARY_SINGLE_CACHELINE) {
9419 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
9420 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
9422 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
9423 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
9428 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
9429 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
9433 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
9434 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
9437 } else if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
9438 switch (cacheline_size) {
9442 if (goal == BOUNDARY_SINGLE_CACHELINE) {
9443 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
9444 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
9450 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
9451 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
9455 switch (cacheline_size) {
9457 if (goal == BOUNDARY_SINGLE_CACHELINE) {
9458 val |= (DMA_RWCTRL_READ_BNDRY_16 |
9459 DMA_RWCTRL_WRITE_BNDRY_16);
9464 if (goal == BOUNDARY_SINGLE_CACHELINE) {
9465 val |= (DMA_RWCTRL_READ_BNDRY_32 |
9466 DMA_RWCTRL_WRITE_BNDRY_32);
9471 if (goal == BOUNDARY_SINGLE_CACHELINE) {
9472 val |= (DMA_RWCTRL_READ_BNDRY_64 |
9473 DMA_RWCTRL_WRITE_BNDRY_64);
9478 if (goal == BOUNDARY_SINGLE_CACHELINE) {
9479 val |= (DMA_RWCTRL_READ_BNDRY_128 |
9480 DMA_RWCTRL_WRITE_BNDRY_128);
9485 val |= (DMA_RWCTRL_READ_BNDRY_256 |
9486 DMA_RWCTRL_WRITE_BNDRY_256);
9489 val |= (DMA_RWCTRL_READ_BNDRY_512 |
9490 DMA_RWCTRL_WRITE_BNDRY_512);
9494 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
9495 DMA_RWCTRL_WRITE_BNDRY_1024);
9504 static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
9506 struct tg3_internal_buffer_desc test_desc;
9510 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
9512 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
9513 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
9514 tw32(RDMAC_STATUS, 0);
9515 tw32(WDMAC_STATUS, 0);
9517 tw32(BUFMGR_MODE, 0);
9520 test_desc.addr_hi = ((u64) buf_dma) >> 32;
9521 test_desc.addr_lo = buf_dma & 0xffffffff;
9522 test_desc.nic_mbuf = 0x00002100;
9523 test_desc.len = size;
9526 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
9527 * the *second* time the tg3 driver was getting loaded after an
9530 * Broadcom tells me:
9531 * ...the DMA engine is connected to the GRC block and a DMA
9532 * reset may affect the GRC block in some unpredictable way...
9533 * The behavior of resets to individual blocks has not been tested.
9535 * Broadcom noted the GRC reset will also reset all sub-components.
9538 test_desc.cqid_sqid = (13 << 8) | 2;
9540 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
9543 test_desc.cqid_sqid = (16 << 8) | 7;
9545 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
9548 test_desc.flags = 0x00000005;
9550 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
9553 val = *(((u32 *)&test_desc) + i);
9554 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
9555 sram_dma_descs + (i * sizeof(u32)));
9556 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
9558 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
9561 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
9563 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
9567 for (i = 0; i < 40; i++) {
9571 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
9573 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
9574 if ((val & 0xffff) == sram_dma_descs) {
9585 #define TEST_BUFFER_SIZE 0x2000
9587 static int __devinit tg3_test_dma(struct tg3 *tp)
9590 u32 *buf, saved_dma_rwctrl;
9593 buf = pci_alloc_consistent(tp->pdev, TEST_BUFFER_SIZE, &buf_dma);
9599 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
9600 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
9602 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
9604 if (tp->tg3_flags2 & TG3_FLG2_PCI_EXPRESS) {
9605 /* DMA read watermark not used on PCIE */
9606 tp->dma_rwctrl |= 0x00180000;
9607 } else if (!(tp->tg3_flags & TG3_FLAG_PCIX_MODE)) {
9608 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
9609 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
9610 tp->dma_rwctrl |= 0x003f0000;
9612 tp->dma_rwctrl |= 0x003f000f;
9614 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
9615 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
9616 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
9618 if (ccval == 0x6 || ccval == 0x7)
9619 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
9621 /* Set bit 23 to enable PCIX hw bug fix */
9622 tp->dma_rwctrl |= 0x009f0000;
9624 tp->dma_rwctrl |= 0x001b000f;
9628 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
9629 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
9630 tp->dma_rwctrl &= 0xfffffff0;
9632 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9633 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
9634 /* Remove this if it causes problems for some boards. */
9635 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
9637 /* On 5700/5701 chips, we need to set this bit.
9638 * Otherwise the chip will issue cacheline transactions
9639 * to streamable DMA memory with not all the byte
9640 * enables turned on. This is an error on several
9641 * RISC PCI controllers, in particular sparc64.
9643 * On 5703/5704 chips, this bit has been reassigned
9644 * a different meaning. In particular, it is used
9645 * on those chips to enable a PCI-X workaround.
9647 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
9650 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
9653 /* Unneeded, already done by tg3_get_invariants. */
9654 tg3_switch_clocks(tp);
9658 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
9659 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
9662 /* It is best to perform DMA test with maximum write burst size
9663 * to expose the 5700/5701 write DMA bug.
9665 saved_dma_rwctrl = tp->dma_rwctrl;
9666 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
9667 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
9672 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
9675 /* Send the buffer to the chip. */
9676 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
9678 printk(KERN_ERR "tg3_test_dma() Write the buffer failed %d\n", ret);
9683 /* validate data reached card RAM correctly. */
9684 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
9686 tg3_read_mem(tp, 0x2100 + (i*4), &val);
9687 if (le32_to_cpu(val) != p[i]) {
9688 printk(KERN_ERR " tg3_test_dma() Card buffer corrupted on write! (%d != %d)\n", val, i);
9689 /* ret = -ENODEV here? */
9694 /* Now read it back. */
9695 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
9697 printk(KERN_ERR "tg3_test_dma() Read the buffer failed %d\n", ret);
9703 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
9707 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
9708 DMA_RWCTRL_WRITE_BNDRY_16) {
9709 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
9710 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
9711 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
9714 printk(KERN_ERR "tg3_test_dma() buffer corrupted on read back! (%d != %d)\n", p[i], i);
9720 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
9726 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
9727 DMA_RWCTRL_WRITE_BNDRY_16) {
9728 static struct pci_device_id dma_wait_state_chipsets[] = {
9729 { PCI_DEVICE(PCI_VENDOR_ID_APPLE,
9730 PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
9734 /* DMA test passed without adjusting DMA boundary,
9735 * now look for chipsets that are known to expose the
9736 * DMA bug without failing the test.
9738 if (pci_dev_present(dma_wait_state_chipsets)) {
9739 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
9740 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
9743 /* Safe to use the calculated DMA boundary. */
9744 tp->dma_rwctrl = saved_dma_rwctrl;
9746 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
9750 pci_free_consistent(tp->pdev, TEST_BUFFER_SIZE, buf, buf_dma);
9755 static void __devinit tg3_init_link_config(struct tg3 *tp)
9757 tp->link_config.advertising =
9758 (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
9759 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
9760 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full |
9761 ADVERTISED_Autoneg | ADVERTISED_MII);
9762 tp->link_config.speed = SPEED_INVALID;
9763 tp->link_config.duplex = DUPLEX_INVALID;
9764 tp->link_config.autoneg = AUTONEG_ENABLE;
9765 netif_carrier_off(tp->dev);
9766 tp->link_config.active_speed = SPEED_INVALID;
9767 tp->link_config.active_duplex = DUPLEX_INVALID;
9768 tp->link_config.phy_is_low_power = 0;
9769 tp->link_config.orig_speed = SPEED_INVALID;
9770 tp->link_config.orig_duplex = DUPLEX_INVALID;
9771 tp->link_config.orig_autoneg = AUTONEG_INVALID;
9774 static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
9776 tp->bufmgr_config.mbuf_read_dma_low_water =
9777 DEFAULT_MB_RDMA_LOW_WATER;
9778 tp->bufmgr_config.mbuf_mac_rx_low_water =
9779 DEFAULT_MB_MACRX_LOW_WATER;
9780 tp->bufmgr_config.mbuf_high_water =
9781 DEFAULT_MB_HIGH_WATER;
9783 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
9784 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
9785 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
9786 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
9787 tp->bufmgr_config.mbuf_high_water_jumbo =
9788 DEFAULT_MB_HIGH_WATER_JUMBO;
9790 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
9791 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
9794 static char * __devinit tg3_phy_string(struct tg3 *tp)
9796 switch (tp->phy_id & PHY_ID_MASK) {
9797 case PHY_ID_BCM5400: return "5400";
9798 case PHY_ID_BCM5401: return "5401";
9799 case PHY_ID_BCM5411: return "5411";
9800 case PHY_ID_BCM5701: return "5701";
9801 case PHY_ID_BCM5703: return "5703";
9802 case PHY_ID_BCM5704: return "5704";
9803 case PHY_ID_BCM5705: return "5705";
9804 case PHY_ID_BCM5750: return "5750";
9805 case PHY_ID_BCM5752: return "5752";
9806 case PHY_ID_BCM8002: return "8002/serdes";
9807 case 0: return "serdes";
9808 default: return "unknown";
9812 static struct pci_dev * __devinit tg3_find_5704_peer(struct tg3 *tp)
9814 struct pci_dev *peer;
9815 unsigned int func, devnr = tp->pdev->devfn & ~7;
9817 for (func = 0; func < 8; func++) {
9818 peer = pci_get_slot(tp->pdev->bus, devnr | func);
9819 if (peer && peer != tp->pdev)
9823 if (!peer || peer == tp->pdev)
9827 * We don't need to keep the refcount elevated; there's no way
9828 * to remove one half of this device without removing the other
9835 static void __devinit tg3_init_coal(struct tg3 *tp)
9837 struct ethtool_coalesce *ec = &tp->coal;
9839 memset(ec, 0, sizeof(*ec));
9840 ec->cmd = ETHTOOL_GCOALESCE;
9841 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
9842 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
9843 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
9844 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
9845 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
9846 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
9847 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
9848 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
9849 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
9851 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
9852 HOSTCC_MODE_CLRTICK_TXBD)) {
9853 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
9854 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
9855 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
9856 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
9859 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
9860 ec->rx_coalesce_usecs_irq = 0;
9861 ec->tx_coalesce_usecs_irq = 0;
9862 ec->stats_block_coalesce_usecs = 0;
9866 static int __devinit tg3_init_one(struct pci_dev *pdev,
9867 const struct pci_device_id *ent)
9869 static int tg3_version_printed = 0;
9870 unsigned long tg3reg_base, tg3reg_len;
9871 struct net_device *dev;
9873 int i, err, pci_using_dac, pm_cap;
9875 if (tg3_version_printed++ == 0)
9876 printk(KERN_INFO "%s", version);
9878 err = pci_enable_device(pdev);
9880 printk(KERN_ERR PFX "Cannot enable PCI device, "
9885 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
9886 printk(KERN_ERR PFX "Cannot find proper PCI device "
9887 "base address, aborting.\n");
9889 goto err_out_disable_pdev;
9892 err = pci_request_regions(pdev, DRV_MODULE_NAME);
9894 printk(KERN_ERR PFX "Cannot obtain PCI resources, "
9896 goto err_out_disable_pdev;
9899 pci_set_master(pdev);
9901 /* Find power-management capability. */
9902 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
9904 printk(KERN_ERR PFX "Cannot find PowerManagement capability, "
9907 goto err_out_free_res;
9910 /* Configure DMA attributes. */
9911 err = pci_set_dma_mask(pdev, 0xffffffffffffffffULL);
9914 err = pci_set_consistent_dma_mask(pdev, 0xffffffffffffffffULL);
9916 printk(KERN_ERR PFX "Unable to obtain 64 bit DMA "
9917 "for consistent allocations\n");
9918 goto err_out_free_res;
9921 err = pci_set_dma_mask(pdev, 0xffffffffULL);
9923 printk(KERN_ERR PFX "No usable DMA configuration, "
9925 goto err_out_free_res;
9930 tg3reg_base = pci_resource_start(pdev, 0);
9931 tg3reg_len = pci_resource_len(pdev, 0);
9933 dev = alloc_etherdev(sizeof(*tp));
9935 printk(KERN_ERR PFX "Etherdev alloc failed, aborting.\n");
9937 goto err_out_free_res;
9940 SET_MODULE_OWNER(dev);
9941 SET_NETDEV_DEV(dev, &pdev->dev);
9944 dev->features |= NETIF_F_HIGHDMA;
9945 dev->features |= NETIF_F_LLTX;
9946 #if TG3_VLAN_TAG_USED
9947 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
9948 dev->vlan_rx_register = tg3_vlan_rx_register;
9949 dev->vlan_rx_kill_vid = tg3_vlan_rx_kill_vid;
9952 tp = netdev_priv(dev);
9955 tp->pm_cap = pm_cap;
9956 tp->mac_mode = TG3_DEF_MAC_MODE;
9957 tp->rx_mode = TG3_DEF_RX_MODE;
9958 tp->tx_mode = TG3_DEF_TX_MODE;
9959 tp->mi_mode = MAC_MI_MODE_BASE;
9961 tp->msg_enable = tg3_debug;
9963 tp->msg_enable = TG3_DEF_MSG_ENABLE;
9965 /* The word/byte swap controls here control register access byte
9966 * swapping. DMA data byte swapping is controlled in the GRC_MODE
9969 tp->misc_host_ctrl =
9970 MISC_HOST_CTRL_MASK_PCI_INT |
9971 MISC_HOST_CTRL_WORD_SWAP |
9972 MISC_HOST_CTRL_INDIR_ACCESS |
9973 MISC_HOST_CTRL_PCISTATE_RW;
9975 /* The NONFRM (non-frame) byte/word swap controls take effect
9976 * on descriptor entries, anything which isn't packet data.
9978 * The StrongARM chips on the board (one for tx, one for rx)
9979 * are running in big-endian mode.
9981 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
9982 GRC_MODE_WSWAP_NONFRM_DATA);
9984 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
9986 spin_lock_init(&tp->lock);
9987 spin_lock_init(&tp->tx_lock);
9988 spin_lock_init(&tp->indirect_lock);
9989 INIT_WORK(&tp->reset_task, tg3_reset_task, tp);
9991 tp->regs = ioremap_nocache(tg3reg_base, tg3reg_len);
9992 if (tp->regs == 0UL) {
9993 printk(KERN_ERR PFX "Cannot map device registers, "
9996 goto err_out_free_dev;
9999 tg3_init_link_config(tp);
10001 tg3_init_bufmgr_config(tp);
10003 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
10004 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
10005 tp->tx_pending = TG3_DEF_TX_RING_PENDING;
10007 dev->open = tg3_open;
10008 dev->stop = tg3_close;
10009 dev->get_stats = tg3_get_stats;
10010 dev->set_multicast_list = tg3_set_rx_mode;
10011 dev->set_mac_address = tg3_set_mac_addr;
10012 dev->do_ioctl = tg3_ioctl;
10013 dev->tx_timeout = tg3_tx_timeout;
10014 dev->poll = tg3_poll;
10015 dev->ethtool_ops = &tg3_ethtool_ops;
10017 dev->watchdog_timeo = TG3_TX_TIMEOUT;
10018 dev->change_mtu = tg3_change_mtu;
10019 dev->irq = pdev->irq;
10020 #ifdef CONFIG_NET_POLL_CONTROLLER
10021 dev->poll_controller = tg3_poll_controller;
10024 err = tg3_get_invariants(tp);
10026 printk(KERN_ERR PFX "Problem fetching invariants of chip, "
10028 goto err_out_iounmap;
10031 if (tp->tg3_flags2 & TG3_FLG2_5705_PLUS) {
10032 tp->bufmgr_config.mbuf_read_dma_low_water =
10033 DEFAULT_MB_RDMA_LOW_WATER_5705;
10034 tp->bufmgr_config.mbuf_mac_rx_low_water =
10035 DEFAULT_MB_MACRX_LOW_WATER_5705;
10036 tp->bufmgr_config.mbuf_high_water =
10037 DEFAULT_MB_HIGH_WATER_5705;
10040 #if TG3_TSO_SUPPORT != 0
10041 if (tp->tg3_flags2 & TG3_FLG2_HW_TSO) {
10042 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
10044 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
10045 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
10046 tp->pci_chip_rev_id == CHIPREV_ID_5705_A0 ||
10047 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0) {
10048 tp->tg3_flags2 &= ~TG3_FLG2_TSO_CAPABLE;
10050 tp->tg3_flags2 |= TG3_FLG2_TSO_CAPABLE;
10053 /* TSO is off by default, user can enable using ethtool. */
10055 if (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE)
10056 dev->features |= NETIF_F_TSO;
10061 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
10062 !(tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) &&
10063 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
10064 tp->tg3_flags2 |= TG3_FLG2_MAX_RXPEND_64;
10065 tp->rx_pending = 63;
10068 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
10069 tp->pdev_peer = tg3_find_5704_peer(tp);
10071 err = tg3_get_device_address(tp);
10073 printk(KERN_ERR PFX "Could not obtain valid ethernet address, "
10075 goto err_out_iounmap;
10079 * Reset chip in case UNDI or EFI driver did not shutdown
10080 * DMA self test will enable WDMAC and we'll see (spurious)
10081 * pending DMA on the PCI bus at that point.
10083 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
10084 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
10085 pci_save_state(tp->pdev);
10086 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
10087 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10090 err = tg3_test_dma(tp);
10092 printk(KERN_ERR PFX "DMA engine test failed, aborting.\n");
10093 goto err_out_iounmap;
10096 /* Tigon3 can do ipv4 only... and some chips have buggy
10099 if ((tp->tg3_flags & TG3_FLAG_BROKEN_CHECKSUMS) == 0) {
10100 dev->features |= NETIF_F_SG | NETIF_F_IP_CSUM;
10101 tp->tg3_flags |= TG3_FLAG_RX_CHECKSUMS;
10103 tp->tg3_flags &= ~TG3_FLAG_RX_CHECKSUMS;
10105 if (tp->tg3_flags2 & TG3_FLG2_IS_5788)
10106 dev->features &= ~NETIF_F_HIGHDMA;
10108 /* flow control autonegotiation is default behavior */
10109 tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG;
10113 err = register_netdev(dev);
10115 printk(KERN_ERR PFX "Cannot register net device, "
10117 goto err_out_iounmap;
10120 pci_set_drvdata(pdev, dev);
10122 /* Now that we have fully setup the chip, save away a snapshot
10123 * of the PCI config space. We need to restore this after
10124 * GRC_MISC_CFG core clock resets and some resume events.
10126 pci_save_state(tp->pdev);
10128 printk(KERN_INFO "%s: Tigon3 [partno(%s) rev %04x PHY(%s)] (PCI%s:%s:%s) %sBaseT Ethernet ",
10130 tp->board_part_number,
10131 tp->pci_chip_rev_id,
10132 tg3_phy_string(tp),
10133 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) ? "X" : ""),
10134 ((tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED) ?
10135 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) ? "133MHz" : "66MHz") :
10136 ((tp->tg3_flags & TG3_FLAG_PCIX_MODE) ? "100MHz" : "33MHz")),
10137 ((tp->tg3_flags & TG3_FLAG_PCI_32BIT) ? "32-bit" : "64-bit"),
10138 (tp->tg3_flags & TG3_FLAG_10_100_ONLY) ? "10/100" : "10/100/1000");
10140 for (i = 0; i < 6; i++)
10141 printk("%2.2x%c", dev->dev_addr[i],
10142 i == 5 ? '\n' : ':');
10144 printk(KERN_INFO "%s: RXcsums[%d] LinkChgREG[%d] "
10145 "MIirq[%d] ASF[%d] Split[%d] WireSpeed[%d] "
10148 (tp->tg3_flags & TG3_FLAG_RX_CHECKSUMS) != 0,
10149 (tp->tg3_flags & TG3_FLAG_USE_LINKCHG_REG) != 0,
10150 (tp->tg3_flags & TG3_FLAG_USE_MI_INTERRUPT) != 0,
10151 (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) != 0,
10152 (tp->tg3_flags & TG3_FLAG_SPLIT_MODE) != 0,
10153 (tp->tg3_flags2 & TG3_FLG2_NO_ETH_WIRE_SPEED) == 0,
10154 (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) != 0);
10155 printk(KERN_INFO "%s: dma_rwctrl[%08x]\n",
10156 dev->name, tp->dma_rwctrl);
10167 pci_release_regions(pdev);
10169 err_out_disable_pdev:
10170 pci_disable_device(pdev);
10171 pci_set_drvdata(pdev, NULL);
10175 static void __devexit tg3_remove_one(struct pci_dev *pdev)
10177 struct net_device *dev = pci_get_drvdata(pdev);
10180 struct tg3 *tp = netdev_priv(dev);
10182 unregister_netdev(dev);
10185 pci_release_regions(pdev);
10186 pci_disable_device(pdev);
10187 pci_set_drvdata(pdev, NULL);
10191 static int tg3_suspend(struct pci_dev *pdev, pm_message_t state)
10193 struct net_device *dev = pci_get_drvdata(pdev);
10194 struct tg3 *tp = netdev_priv(dev);
10197 if (!netif_running(dev))
10200 tg3_netif_stop(tp);
10202 del_timer_sync(&tp->timer);
10204 tg3_full_lock(tp, 1);
10205 tg3_disable_ints(tp);
10206 tg3_full_unlock(tp);
10208 netif_device_detach(dev);
10210 tg3_full_lock(tp, 0);
10211 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10212 tg3_full_unlock(tp);
10214 err = tg3_set_power_state(tp, pci_choose_state(pdev, state));
10216 tg3_full_lock(tp, 0);
10220 tp->timer.expires = jiffies + tp->timer_offset;
10221 add_timer(&tp->timer);
10223 netif_device_attach(dev);
10224 tg3_netif_start(tp);
10226 tg3_full_unlock(tp);
10232 static int tg3_resume(struct pci_dev *pdev)
10234 struct net_device *dev = pci_get_drvdata(pdev);
10235 struct tg3 *tp = netdev_priv(dev);
10238 if (!netif_running(dev))
10241 pci_restore_state(tp->pdev);
10243 err = tg3_set_power_state(tp, 0);
10247 netif_device_attach(dev);
10249 tg3_full_lock(tp, 0);
10253 tp->timer.expires = jiffies + tp->timer_offset;
10254 add_timer(&tp->timer);
10256 tg3_netif_start(tp);
10258 tg3_full_unlock(tp);
10263 static struct pci_driver tg3_driver = {
10264 .name = DRV_MODULE_NAME,
10265 .id_table = tg3_pci_tbl,
10266 .probe = tg3_init_one,
10267 .remove = __devexit_p(tg3_remove_one),
10268 .suspend = tg3_suspend,
10269 .resume = tg3_resume
10272 static int __init tg3_init(void)
10274 return pci_module_init(&tg3_driver);
10277 static void __exit tg3_cleanup(void)
10279 pci_unregister_driver(&tg3_driver);
10282 module_init(tg3_init);
10283 module_exit(tg3_cleanup);