1 /*************************************************************************
2 * myri10ge.c: Myricom Myri-10G Ethernet driver.
4 * Copyright (C) 2005 - 2007 Myricom, Inc.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of Myricom, Inc. nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 * If the eeprom on your board is not recent enough, you will need to get a
33 * newer firmware image at:
34 * http://www.myri.com/scs/download-Myri10GE.html
36 * Contact Information:
38 * Myricom, Inc., 325N Santa Anita Avenue, Arcadia, CA 91006
39 *************************************************************************/
41 #include <linux/tcp.h>
42 #include <linux/netdevice.h>
43 #include <linux/skbuff.h>
44 #include <linux/string.h>
45 #include <linux/module.h>
46 #include <linux/pci.h>
47 #include <linux/dma-mapping.h>
48 #include <linux/etherdevice.h>
49 #include <linux/if_ether.h>
50 #include <linux/if_vlan.h>
51 #include <linux/inet_lro.h>
53 #include <linux/inet.h>
55 #include <linux/ethtool.h>
56 #include <linux/firmware.h>
57 #include <linux/delay.h>
58 #include <linux/version.h>
59 #include <linux/timer.h>
60 #include <linux/vmalloc.h>
61 #include <linux/crc32.h>
62 #include <linux/moduleparam.h>
64 #include <linux/log2.h>
65 #include <net/checksum.h>
68 #include <asm/byteorder.h>
70 #include <asm/processor.h>
75 #include "myri10ge_mcp.h"
76 #include "myri10ge_mcp_gen_header.h"
78 #define MYRI10GE_VERSION_STR "1.3.2-1.287"
80 MODULE_DESCRIPTION("Myricom 10G driver (10GbE)");
81 MODULE_AUTHOR("Maintainer: help@myri.com");
82 MODULE_VERSION(MYRI10GE_VERSION_STR);
83 MODULE_LICENSE("Dual BSD/GPL");
85 #define MYRI10GE_MAX_ETHER_MTU 9014
87 #define MYRI10GE_ETH_STOPPED 0
88 #define MYRI10GE_ETH_STOPPING 1
89 #define MYRI10GE_ETH_STARTING 2
90 #define MYRI10GE_ETH_RUNNING 3
91 #define MYRI10GE_ETH_OPEN_FAILED 4
93 #define MYRI10GE_EEPROM_STRINGS_SIZE 256
94 #define MYRI10GE_MAX_SEND_DESC_TSO ((65536 / 2048) * 2)
95 #define MYRI10GE_MAX_LRO_DESCRIPTORS 8
96 #define MYRI10GE_LRO_MAX_PKTS 64
98 #define MYRI10GE_NO_CONFIRM_DATA htonl(0xffffffff)
99 #define MYRI10GE_NO_RESPONSE_RESULT 0xffffffff
101 #define MYRI10GE_ALLOC_ORDER 0
102 #define MYRI10GE_ALLOC_SIZE ((1 << MYRI10GE_ALLOC_ORDER) * PAGE_SIZE)
103 #define MYRI10GE_MAX_FRAGS_PER_FRAME (MYRI10GE_MAX_ETHER_MTU/MYRI10GE_ALLOC_SIZE + 1)
105 struct myri10ge_rx_buffer_state {
108 DECLARE_PCI_UNMAP_ADDR(bus)
109 DECLARE_PCI_UNMAP_LEN(len)
112 struct myri10ge_tx_buffer_state {
115 DECLARE_PCI_UNMAP_ADDR(bus)
116 DECLARE_PCI_UNMAP_LEN(len)
119 struct myri10ge_cmd {
125 struct myri10ge_rx_buf {
126 struct mcp_kreq_ether_recv __iomem *lanai; /* lanai ptr for recv ring */
127 u8 __iomem *wc_fifo; /* w/c rx dma addr fifo address */
128 struct mcp_kreq_ether_recv *shadow; /* host shadow of recv ring */
129 struct myri10ge_rx_buffer_state *info;
136 int mask; /* number of rx slots -1 */
140 struct myri10ge_tx_buf {
141 struct mcp_kreq_ether_send __iomem *lanai; /* lanai ptr for sendq */
142 u8 __iomem *wc_fifo; /* w/c send fifo address */
143 struct mcp_kreq_ether_send *req_list; /* host shadow of sendq */
145 struct myri10ge_tx_buffer_state *info;
146 int mask; /* number of transmit slots -1 */
147 int boundary; /* boundary transmits cannot cross */
148 int req ____cacheline_aligned; /* transmit slots submitted */
149 int pkt_start; /* packets started */
150 int done ____cacheline_aligned; /* transmit slots completed */
151 int pkt_done; /* packets completed */
154 struct myri10ge_rx_done {
155 struct mcp_slot *entry;
159 struct net_lro_mgr lro_mgr;
160 struct net_lro_desc lro_desc[MYRI10GE_MAX_LRO_DESCRIPTORS];
163 struct myri10ge_priv {
164 int running; /* running? */
165 int csum_flag; /* rx_csums? */
166 struct myri10ge_tx_buf tx; /* transmit ring */
167 struct myri10ge_rx_buf rx_small;
168 struct myri10ge_rx_buf rx_big;
169 struct myri10ge_rx_done rx_done;
172 struct net_device *dev;
173 struct napi_struct napi;
174 struct net_device_stats stats;
177 unsigned long board_span;
178 unsigned long iomem_base;
179 __be32 __iomem *irq_claim;
180 __be32 __iomem *irq_deassert;
181 char *mac_addr_string;
182 struct mcp_cmd_response *cmd;
184 struct mcp_irq_data *fw_stats;
185 dma_addr_t fw_stats_bus;
186 struct pci_dev *pdev;
189 unsigned int rdma_tags_available;
191 __be32 __iomem *intr_coal_delay_ptr;
197 wait_queue_head_t down_wq;
198 struct work_struct watchdog_work;
199 struct timer_list watchdog_timer;
200 int watchdog_tx_done;
207 char eeprom_strings[MYRI10GE_EEPROM_STRINGS_SIZE];
208 char fw_version[128];
212 int adopted_rx_filter_bug;
213 u8 mac_addr[6]; /* eeprom mac address */
214 unsigned long serial_number;
215 int vendor_specific_offset;
216 int fw_multicast_support;
217 unsigned long features;
226 static char *myri10ge_fw_unaligned = "myri10ge_ethp_z8e.dat";
227 static char *myri10ge_fw_aligned = "myri10ge_eth_z8e.dat";
229 static char *myri10ge_fw_name = NULL;
230 module_param(myri10ge_fw_name, charp, S_IRUGO | S_IWUSR);
231 MODULE_PARM_DESC(myri10ge_fw_name, "Firmware image name\n");
233 static int myri10ge_ecrc_enable = 1;
234 module_param(myri10ge_ecrc_enable, int, S_IRUGO);
235 MODULE_PARM_DESC(myri10ge_ecrc_enable, "Enable Extended CRC on PCI-E\n");
237 static int myri10ge_max_intr_slots = 1024;
238 module_param(myri10ge_max_intr_slots, int, S_IRUGO);
239 MODULE_PARM_DESC(myri10ge_max_intr_slots, "Interrupt queue slots\n");
241 static int myri10ge_small_bytes = -1; /* -1 == auto */
242 module_param(myri10ge_small_bytes, int, S_IRUGO | S_IWUSR);
243 MODULE_PARM_DESC(myri10ge_small_bytes, "Threshold of small packets\n");
245 static int myri10ge_msi = 1; /* enable msi by default */
246 module_param(myri10ge_msi, int, S_IRUGO | S_IWUSR);
247 MODULE_PARM_DESC(myri10ge_msi, "Enable Message Signalled Interrupts\n");
249 static int myri10ge_intr_coal_delay = 75;
250 module_param(myri10ge_intr_coal_delay, int, S_IRUGO);
251 MODULE_PARM_DESC(myri10ge_intr_coal_delay, "Interrupt coalescing delay\n");
253 static int myri10ge_flow_control = 1;
254 module_param(myri10ge_flow_control, int, S_IRUGO);
255 MODULE_PARM_DESC(myri10ge_flow_control, "Pause parameter\n");
257 static int myri10ge_deassert_wait = 1;
258 module_param(myri10ge_deassert_wait, int, S_IRUGO | S_IWUSR);
259 MODULE_PARM_DESC(myri10ge_deassert_wait,
260 "Wait when deasserting legacy interrupts\n");
262 static int myri10ge_force_firmware = 0;
263 module_param(myri10ge_force_firmware, int, S_IRUGO);
264 MODULE_PARM_DESC(myri10ge_force_firmware,
265 "Force firmware to assume aligned completions\n");
267 static int myri10ge_initial_mtu = MYRI10GE_MAX_ETHER_MTU - ETH_HLEN;
268 module_param(myri10ge_initial_mtu, int, S_IRUGO);
269 MODULE_PARM_DESC(myri10ge_initial_mtu, "Initial MTU\n");
271 static int myri10ge_napi_weight = 64;
272 module_param(myri10ge_napi_weight, int, S_IRUGO);
273 MODULE_PARM_DESC(myri10ge_napi_weight, "Set NAPI weight\n");
275 static int myri10ge_watchdog_timeout = 1;
276 module_param(myri10ge_watchdog_timeout, int, S_IRUGO);
277 MODULE_PARM_DESC(myri10ge_watchdog_timeout, "Set watchdog timeout\n");
279 static int myri10ge_max_irq_loops = 1048576;
280 module_param(myri10ge_max_irq_loops, int, S_IRUGO);
281 MODULE_PARM_DESC(myri10ge_max_irq_loops,
282 "Set stuck legacy IRQ detection threshold\n");
284 #define MYRI10GE_MSG_DEFAULT NETIF_MSG_LINK
286 static int myri10ge_debug = -1; /* defaults above */
287 module_param(myri10ge_debug, int, 0);
288 MODULE_PARM_DESC(myri10ge_debug, "Debug level (0=none,...,16=all)");
290 static int myri10ge_lro = 1;
291 module_param(myri10ge_lro, int, S_IRUGO);
292 MODULE_PARM_DESC(myri10ge_lro, "Enable large receive offload\n");
294 static int myri10ge_lro_max_pkts = MYRI10GE_LRO_MAX_PKTS;
295 module_param(myri10ge_lro_max_pkts, int, S_IRUGO);
296 MODULE_PARM_DESC(myri10ge_lro, "Number of LRO packets to be aggregated\n");
298 static int myri10ge_fill_thresh = 256;
299 module_param(myri10ge_fill_thresh, int, S_IRUGO | S_IWUSR);
300 MODULE_PARM_DESC(myri10ge_fill_thresh, "Number of empty rx slots allowed\n");
302 static int myri10ge_reset_recover = 1;
304 static int myri10ge_wcfifo = 0;
305 module_param(myri10ge_wcfifo, int, S_IRUGO);
306 MODULE_PARM_DESC(myri10ge_wcfifo, "Enable WC Fifo when WC is enabled\n");
308 #define MYRI10GE_FW_OFFSET 1024*1024
309 #define MYRI10GE_HIGHPART_TO_U32(X) \
310 (sizeof (X) == 8) ? ((u32)((u64)(X) >> 32)) : (0)
311 #define MYRI10GE_LOWPART_TO_U32(X) ((u32)(X))
313 #define myri10ge_pio_copy(to,from,size) __iowrite64_copy(to,from,size/8)
315 static void myri10ge_set_multicast_list(struct net_device *dev);
316 static int myri10ge_sw_tso(struct sk_buff *skb, struct net_device *dev);
318 static inline void put_be32(__be32 val, __be32 __iomem * p)
320 __raw_writel((__force __u32) val, (__force void __iomem *)p);
324 myri10ge_send_cmd(struct myri10ge_priv *mgp, u32 cmd,
325 struct myri10ge_cmd *data, int atomic)
328 char buf_bytes[sizeof(*buf) + 8];
329 struct mcp_cmd_response *response = mgp->cmd;
330 char __iomem *cmd_addr = mgp->sram + MXGEFW_ETH_CMD;
331 u32 dma_low, dma_high, result, value;
334 /* ensure buf is aligned to 8 bytes */
335 buf = (struct mcp_cmd *)ALIGN((unsigned long)buf_bytes, 8);
337 buf->data0 = htonl(data->data0);
338 buf->data1 = htonl(data->data1);
339 buf->data2 = htonl(data->data2);
340 buf->cmd = htonl(cmd);
341 dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
342 dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
344 buf->response_addr.low = htonl(dma_low);
345 buf->response_addr.high = htonl(dma_high);
346 response->result = htonl(MYRI10GE_NO_RESPONSE_RESULT);
348 myri10ge_pio_copy(cmd_addr, buf, sizeof(*buf));
350 /* wait up to 15ms. Longest command is the DMA benchmark,
351 * which is capped at 5ms, but runs from a timeout handler
352 * that runs every 7.8ms. So a 15ms timeout leaves us with
356 /* if atomic is set, do not sleep,
357 * and try to get the completion quickly
358 * (1ms will be enough for those commands) */
359 for (sleep_total = 0;
361 && response->result == htonl(MYRI10GE_NO_RESPONSE_RESULT);
365 /* use msleep for most command */
366 for (sleep_total = 0;
368 && response->result == htonl(MYRI10GE_NO_RESPONSE_RESULT);
373 result = ntohl(response->result);
374 value = ntohl(response->data);
375 if (result != MYRI10GE_NO_RESPONSE_RESULT) {
379 } else if (result == MXGEFW_CMD_UNKNOWN) {
381 } else if (result == MXGEFW_CMD_ERROR_UNALIGNED) {
384 dev_err(&mgp->pdev->dev,
385 "command %d failed, result = %d\n",
391 dev_err(&mgp->pdev->dev, "command %d timed out, result = %d\n",
397 * The eeprom strings on the lanaiX have the format
400 * PT:ddd mmm xx xx:xx:xx xx\0
401 * PV:ddd mmm xx xx:xx:xx xx\0
403 static int myri10ge_read_mac_addr(struct myri10ge_priv *mgp)
408 ptr = mgp->eeprom_strings;
409 limit = mgp->eeprom_strings + MYRI10GE_EEPROM_STRINGS_SIZE;
411 while (*ptr != '\0' && ptr < limit) {
412 if (memcmp(ptr, "MAC=", 4) == 0) {
414 mgp->mac_addr_string = ptr;
415 for (i = 0; i < 6; i++) {
416 if ((ptr + 2) > limit)
419 simple_strtoul(ptr, &ptr, 16);
423 if (memcmp((const void *)ptr, "SN=", 3) == 0) {
425 mgp->serial_number = simple_strtoul(ptr, &ptr, 10);
427 while (ptr < limit && *ptr++) ;
433 dev_err(&mgp->pdev->dev, "failed to parse eeprom_strings\n");
438 * Enable or disable periodic RDMAs from the host to make certain
439 * chipsets resend dropped PCIe messages
442 static void myri10ge_dummy_rdma(struct myri10ge_priv *mgp, int enable)
444 char __iomem *submit;
446 u32 dma_low, dma_high;
449 /* clear confirmation addr */
453 /* send a rdma command to the PCIe engine, and wait for the
454 * response in the confirmation address. The firmware should
455 * write a -1 there to indicate it is alive and well
457 dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
458 dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
460 buf[0] = htonl(dma_high); /* confirm addr MSW */
461 buf[1] = htonl(dma_low); /* confirm addr LSW */
462 buf[2] = MYRI10GE_NO_CONFIRM_DATA; /* confirm data */
463 buf[3] = htonl(dma_high); /* dummy addr MSW */
464 buf[4] = htonl(dma_low); /* dummy addr LSW */
465 buf[5] = htonl(enable); /* enable? */
467 submit = mgp->sram + MXGEFW_BOOT_DUMMY_RDMA;
469 myri10ge_pio_copy(submit, &buf, sizeof(buf));
470 for (i = 0; mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA && i < 20; i++)
472 if (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA)
473 dev_err(&mgp->pdev->dev, "dummy rdma %s failed\n",
474 (enable ? "enable" : "disable"));
478 myri10ge_validate_firmware(struct myri10ge_priv *mgp,
479 struct mcp_gen_header *hdr)
481 struct device *dev = &mgp->pdev->dev;
483 /* check firmware type */
484 if (ntohl(hdr->mcp_type) != MCP_TYPE_ETH) {
485 dev_err(dev, "Bad firmware type: 0x%x\n", ntohl(hdr->mcp_type));
489 /* save firmware version for ethtool */
490 strncpy(mgp->fw_version, hdr->version, sizeof(mgp->fw_version));
492 sscanf(mgp->fw_version, "%d.%d.%d", &mgp->fw_ver_major,
493 &mgp->fw_ver_minor, &mgp->fw_ver_tiny);
495 if (!(mgp->fw_ver_major == MXGEFW_VERSION_MAJOR
496 && mgp->fw_ver_minor == MXGEFW_VERSION_MINOR)) {
497 dev_err(dev, "Found firmware version %s\n", mgp->fw_version);
498 dev_err(dev, "Driver needs %d.%d\n", MXGEFW_VERSION_MAJOR,
499 MXGEFW_VERSION_MINOR);
505 static int myri10ge_load_hotplug_firmware(struct myri10ge_priv *mgp, u32 * size)
507 unsigned crc, reread_crc;
508 const struct firmware *fw;
509 struct device *dev = &mgp->pdev->dev;
510 struct mcp_gen_header *hdr;
515 if ((status = request_firmware(&fw, mgp->fw_name, dev)) < 0) {
516 dev_err(dev, "Unable to load %s firmware image via hotplug\n",
519 goto abort_with_nothing;
524 if (fw->size >= mgp->sram_size - MYRI10GE_FW_OFFSET ||
525 fw->size < MCP_HEADER_PTR_OFFSET + 4) {
526 dev_err(dev, "Firmware size invalid:%d\n", (int)fw->size);
532 hdr_offset = ntohl(*(__be32 *) (fw->data + MCP_HEADER_PTR_OFFSET));
533 if ((hdr_offset & 3) || hdr_offset + sizeof(*hdr) > fw->size) {
534 dev_err(dev, "Bad firmware file\n");
538 hdr = (void *)(fw->data + hdr_offset);
540 status = myri10ge_validate_firmware(mgp, hdr);
544 crc = crc32(~0, fw->data, fw->size);
545 for (i = 0; i < fw->size; i += 256) {
546 myri10ge_pio_copy(mgp->sram + MYRI10GE_FW_OFFSET + i,
548 min(256U, (unsigned)(fw->size - i)));
552 /* corruption checking is good for parity recovery and buggy chipset */
553 memcpy_fromio(fw->data, mgp->sram + MYRI10GE_FW_OFFSET, fw->size);
554 reread_crc = crc32(~0, fw->data, fw->size);
555 if (crc != reread_crc) {
556 dev_err(dev, "CRC failed(fw-len=%u), got 0x%x (expect 0x%x)\n",
557 (unsigned)fw->size, reread_crc, crc);
561 *size = (u32) fw->size;
564 release_firmware(fw);
570 static int myri10ge_adopt_running_firmware(struct myri10ge_priv *mgp)
572 struct mcp_gen_header *hdr;
573 struct device *dev = &mgp->pdev->dev;
574 const size_t bytes = sizeof(struct mcp_gen_header);
578 /* find running firmware header */
579 hdr_offset = ntohl(__raw_readl(mgp->sram + MCP_HEADER_PTR_OFFSET));
581 if ((hdr_offset & 3) || hdr_offset + sizeof(*hdr) > mgp->sram_size) {
582 dev_err(dev, "Running firmware has bad header offset (%d)\n",
587 /* copy header of running firmware from SRAM to host memory to
588 * validate firmware */
589 hdr = kmalloc(bytes, GFP_KERNEL);
591 dev_err(dev, "could not malloc firmware hdr\n");
594 memcpy_fromio(hdr, mgp->sram + hdr_offset, bytes);
595 status = myri10ge_validate_firmware(mgp, hdr);
598 /* check to see if adopted firmware has bug where adopting
599 * it will cause broadcasts to be filtered unless the NIC
600 * is kept in ALLMULTI mode */
601 if (mgp->fw_ver_major == 1 && mgp->fw_ver_minor == 4 &&
602 mgp->fw_ver_tiny >= 4 && mgp->fw_ver_tiny <= 11) {
603 mgp->adopted_rx_filter_bug = 1;
604 dev_warn(dev, "Adopting fw %d.%d.%d: "
605 "working around rx filter bug\n",
606 mgp->fw_ver_major, mgp->fw_ver_minor,
612 static int myri10ge_load_firmware(struct myri10ge_priv *mgp)
614 char __iomem *submit;
616 u32 dma_low, dma_high, size;
618 struct myri10ge_cmd cmd;
621 status = myri10ge_load_hotplug_firmware(mgp, &size);
623 dev_warn(&mgp->pdev->dev, "hotplug firmware loading failed\n");
625 /* Do not attempt to adopt firmware if there
630 status = myri10ge_adopt_running_firmware(mgp);
632 dev_err(&mgp->pdev->dev,
633 "failed to adopt running firmware\n");
636 dev_info(&mgp->pdev->dev,
637 "Successfully adopted running firmware\n");
638 if (mgp->tx.boundary == 4096) {
639 dev_warn(&mgp->pdev->dev,
640 "Using firmware currently running on NIC"
642 dev_warn(&mgp->pdev->dev,
643 "performance consider loading optimized "
645 dev_warn(&mgp->pdev->dev, "via hotplug\n");
648 mgp->fw_name = "adopted";
649 mgp->tx.boundary = 2048;
653 /* clear confirmation addr */
657 /* send a reload command to the bootstrap MCP, and wait for the
658 * response in the confirmation address. The firmware should
659 * write a -1 there to indicate it is alive and well
661 dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
662 dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
664 buf[0] = htonl(dma_high); /* confirm addr MSW */
665 buf[1] = htonl(dma_low); /* confirm addr LSW */
666 buf[2] = MYRI10GE_NO_CONFIRM_DATA; /* confirm data */
668 /* FIX: All newest firmware should un-protect the bottom of
669 * the sram before handoff. However, the very first interfaces
670 * do not. Therefore the handoff copy must skip the first 8 bytes
672 buf[3] = htonl(MYRI10GE_FW_OFFSET + 8); /* where the code starts */
673 buf[4] = htonl(size - 8); /* length of code */
674 buf[5] = htonl(8); /* where to copy to */
675 buf[6] = htonl(0); /* where to jump to */
677 submit = mgp->sram + MXGEFW_BOOT_HANDOFF;
679 myri10ge_pio_copy(submit, &buf, sizeof(buf));
684 while (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA && i < 20) {
688 if (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA) {
689 dev_err(&mgp->pdev->dev, "handoff failed\n");
692 dev_info(&mgp->pdev->dev, "handoff confirmed\n");
693 myri10ge_dummy_rdma(mgp, 1);
695 /* probe for IPv6 TSO support */
696 mgp->features = NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_TSO;
697 status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_MAX_TSO6_HDR_SIZE,
700 mgp->max_tso6 = cmd.data0;
701 mgp->features |= NETIF_F_TSO6;
706 static int myri10ge_update_mac_address(struct myri10ge_priv *mgp, u8 * addr)
708 struct myri10ge_cmd cmd;
711 cmd.data0 = ((addr[0] << 24) | (addr[1] << 16)
712 | (addr[2] << 8) | addr[3]);
714 cmd.data1 = ((addr[4] << 8) | (addr[5]));
716 status = myri10ge_send_cmd(mgp, MXGEFW_SET_MAC_ADDRESS, &cmd, 0);
720 static int myri10ge_change_pause(struct myri10ge_priv *mgp, int pause)
722 struct myri10ge_cmd cmd;
725 ctl = pause ? MXGEFW_ENABLE_FLOW_CONTROL : MXGEFW_DISABLE_FLOW_CONTROL;
726 status = myri10ge_send_cmd(mgp, ctl, &cmd, 0);
730 "myri10ge: %s: Failed to set flow control mode\n",
739 myri10ge_change_promisc(struct myri10ge_priv *mgp, int promisc, int atomic)
741 struct myri10ge_cmd cmd;
744 ctl = promisc ? MXGEFW_ENABLE_PROMISC : MXGEFW_DISABLE_PROMISC;
745 status = myri10ge_send_cmd(mgp, ctl, &cmd, atomic);
747 printk(KERN_ERR "myri10ge: %s: Failed to set promisc mode\n",
751 static int myri10ge_dma_test(struct myri10ge_priv *mgp, int test_type)
753 struct myri10ge_cmd cmd;
756 struct page *dmatest_page;
757 dma_addr_t dmatest_bus;
760 dmatest_page = alloc_page(GFP_KERNEL);
763 dmatest_bus = pci_map_page(mgp->pdev, dmatest_page, 0, PAGE_SIZE,
766 /* Run a small DMA test.
767 * The magic multipliers to the length tell the firmware
768 * to do DMA read, write, or read+write tests. The
769 * results are returned in cmd.data0. The upper 16
770 * bits or the return is the number of transfers completed.
771 * The lower 16 bits is the time in 0.5us ticks that the
772 * transfers took to complete.
775 len = mgp->tx.boundary;
777 cmd.data0 = MYRI10GE_LOWPART_TO_U32(dmatest_bus);
778 cmd.data1 = MYRI10GE_HIGHPART_TO_U32(dmatest_bus);
779 cmd.data2 = len * 0x10000;
780 status = myri10ge_send_cmd(mgp, test_type, &cmd, 0);
785 mgp->read_dma = ((cmd.data0 >> 16) * len * 2) / (cmd.data0 & 0xffff);
786 cmd.data0 = MYRI10GE_LOWPART_TO_U32(dmatest_bus);
787 cmd.data1 = MYRI10GE_HIGHPART_TO_U32(dmatest_bus);
788 cmd.data2 = len * 0x1;
789 status = myri10ge_send_cmd(mgp, test_type, &cmd, 0);
794 mgp->write_dma = ((cmd.data0 >> 16) * len * 2) / (cmd.data0 & 0xffff);
796 cmd.data0 = MYRI10GE_LOWPART_TO_U32(dmatest_bus);
797 cmd.data1 = MYRI10GE_HIGHPART_TO_U32(dmatest_bus);
798 cmd.data2 = len * 0x10001;
799 status = myri10ge_send_cmd(mgp, test_type, &cmd, 0);
804 mgp->read_write_dma = ((cmd.data0 >> 16) * len * 2 * 2) /
805 (cmd.data0 & 0xffff);
808 pci_unmap_page(mgp->pdev, dmatest_bus, PAGE_SIZE, DMA_BIDIRECTIONAL);
809 put_page(dmatest_page);
811 if (status != 0 && test_type != MXGEFW_CMD_UNALIGNED_TEST)
812 dev_warn(&mgp->pdev->dev, "DMA %s benchmark failed: %d\n",
818 static int myri10ge_reset(struct myri10ge_priv *mgp)
820 struct myri10ge_cmd cmd;
824 /* try to send a reset command to the card to see if it
826 memset(&cmd, 0, sizeof(cmd));
827 status = myri10ge_send_cmd(mgp, MXGEFW_CMD_RESET, &cmd, 0);
829 dev_err(&mgp->pdev->dev, "failed reset\n");
833 (void)myri10ge_dma_test(mgp, MXGEFW_DMA_TEST);
835 /* Now exchange information about interrupts */
837 bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
838 memset(mgp->rx_done.entry, 0, bytes);
839 cmd.data0 = (u32) bytes;
840 status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_SIZE, &cmd, 0);
841 cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->rx_done.bus);
842 cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->rx_done.bus);
843 status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_DMA, &cmd, 0);
846 myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_IRQ_ACK_OFFSET, &cmd, 0);
847 mgp->irq_claim = (__iomem __be32 *) (mgp->sram + cmd.data0);
848 status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_IRQ_DEASSERT_OFFSET,
850 mgp->irq_deassert = (__iomem __be32 *) (mgp->sram + cmd.data0);
852 status |= myri10ge_send_cmd
853 (mgp, MXGEFW_CMD_GET_INTR_COAL_DELAY_OFFSET, &cmd, 0);
854 mgp->intr_coal_delay_ptr = (__iomem __be32 *) (mgp->sram + cmd.data0);
856 dev_err(&mgp->pdev->dev, "failed set interrupt parameters\n");
859 put_be32(htonl(mgp->intr_coal_delay), mgp->intr_coal_delay_ptr);
861 memset(mgp->rx_done.entry, 0, bytes);
863 /* reset mcp/driver shared state back to 0 */
866 mgp->tx.pkt_start = 0;
867 mgp->tx.pkt_done = 0;
869 mgp->rx_small.cnt = 0;
870 mgp->rx_done.idx = 0;
871 mgp->rx_done.cnt = 0;
872 mgp->link_changes = 0;
873 status = myri10ge_update_mac_address(mgp, mgp->dev->dev_addr);
874 myri10ge_change_pause(mgp, mgp->pause);
875 myri10ge_set_multicast_list(mgp->dev);
880 myri10ge_submit_8rx(struct mcp_kreq_ether_recv __iomem * dst,
881 struct mcp_kreq_ether_recv *src)
886 src->addr_low = htonl(DMA_32BIT_MASK);
887 myri10ge_pio_copy(dst, src, 4 * sizeof(*src));
889 myri10ge_pio_copy(dst + 4, src + 4, 4 * sizeof(*src));
892 put_be32(low, &dst->addr_low);
896 static inline void myri10ge_vlan_ip_csum(struct sk_buff *skb, __wsum hw_csum)
898 struct vlan_hdr *vh = (struct vlan_hdr *)(skb->data);
900 if ((skb->protocol == htons(ETH_P_8021Q)) &&
901 (vh->h_vlan_encapsulated_proto == htons(ETH_P_IP) ||
902 vh->h_vlan_encapsulated_proto == htons(ETH_P_IPV6))) {
904 skb->ip_summed = CHECKSUM_COMPLETE;
909 myri10ge_rx_skb_build(struct sk_buff *skb, u8 * va,
910 struct skb_frag_struct *rx_frags, int len, int hlen)
912 struct skb_frag_struct *skb_frags;
914 skb->len = skb->data_len = len;
915 skb->truesize = len + sizeof(struct sk_buff);
916 /* attach the page(s) */
918 skb_frags = skb_shinfo(skb)->frags;
920 memcpy(skb_frags, rx_frags, sizeof(*skb_frags));
921 len -= rx_frags->size;
924 skb_shinfo(skb)->nr_frags++;
927 /* pskb_may_pull is not available in irq context, but
928 * skb_pull() (for ether_pad and eth_type_trans()) requires
929 * the beginning of the packet in skb_headlen(), move it
931 skb_copy_to_linear_data(skb, va, hlen);
932 skb_shinfo(skb)->frags[0].page_offset += hlen;
933 skb_shinfo(skb)->frags[0].size -= hlen;
934 skb->data_len -= hlen;
936 skb_pull(skb, MXGEFW_PAD);
940 myri10ge_alloc_rx_pages(struct myri10ge_priv *mgp, struct myri10ge_rx_buf *rx,
941 int bytes, int watchdog)
946 if (unlikely(rx->watchdog_needed && !watchdog))
949 /* try to refill entire ring */
950 while (rx->fill_cnt != (rx->cnt + rx->mask + 1)) {
951 idx = rx->fill_cnt & rx->mask;
952 if (rx->page_offset + bytes <= MYRI10GE_ALLOC_SIZE) {
953 /* we can use part of previous page */
956 /* we need a new page */
958 alloc_pages(GFP_ATOMIC | __GFP_COMP,
959 MYRI10GE_ALLOC_ORDER);
960 if (unlikely(page == NULL)) {
961 if (rx->fill_cnt - rx->cnt < 16)
962 rx->watchdog_needed = 1;
967 rx->bus = pci_map_page(mgp->pdev, page, 0,
971 rx->info[idx].page = rx->page;
972 rx->info[idx].page_offset = rx->page_offset;
973 /* note that this is the address of the start of the
975 pci_unmap_addr_set(&rx->info[idx], bus, rx->bus);
976 rx->shadow[idx].addr_low =
977 htonl(MYRI10GE_LOWPART_TO_U32(rx->bus) + rx->page_offset);
978 rx->shadow[idx].addr_high =
979 htonl(MYRI10GE_HIGHPART_TO_U32(rx->bus));
981 /* start next packet on a cacheline boundary */
982 rx->page_offset += SKB_DATA_ALIGN(bytes);
984 #if MYRI10GE_ALLOC_SIZE > 4096
985 /* don't cross a 4KB boundary */
986 if ((rx->page_offset >> 12) !=
987 ((rx->page_offset + bytes - 1) >> 12))
988 rx->page_offset = (rx->page_offset + 4096) & ~4095;
992 /* copy 8 descriptors to the firmware at a time */
993 if ((idx & 7) == 7) {
994 if (rx->wc_fifo == NULL)
995 myri10ge_submit_8rx(&rx->lanai[idx - 7],
996 &rx->shadow[idx - 7]);
999 myri10ge_pio_copy(rx->wc_fifo,
1000 &rx->shadow[idx - 7], 64);
1007 myri10ge_unmap_rx_page(struct pci_dev *pdev,
1008 struct myri10ge_rx_buffer_state *info, int bytes)
1010 /* unmap the recvd page if we're the only or last user of it */
1011 if (bytes >= MYRI10GE_ALLOC_SIZE / 2 ||
1012 (info->page_offset + 2 * bytes) > MYRI10GE_ALLOC_SIZE) {
1013 pci_unmap_page(pdev, (pci_unmap_addr(info, bus)
1014 & ~(MYRI10GE_ALLOC_SIZE - 1)),
1015 MYRI10GE_ALLOC_SIZE, PCI_DMA_FROMDEVICE);
1019 #define MYRI10GE_HLEN 64 /* The number of bytes to copy from a
1020 * page into an skb */
1023 myri10ge_rx_done(struct myri10ge_priv *mgp, struct myri10ge_rx_buf *rx,
1024 int bytes, int len, __wsum csum)
1026 struct sk_buff *skb;
1027 struct skb_frag_struct rx_frags[MYRI10GE_MAX_FRAGS_PER_FRAME];
1028 int i, idx, hlen, remainder;
1029 struct pci_dev *pdev = mgp->pdev;
1030 struct net_device *dev = mgp->dev;
1034 idx = rx->cnt & rx->mask;
1035 va = page_address(rx->info[idx].page) + rx->info[idx].page_offset;
1037 /* Fill skb_frag_struct(s) with data from our receive */
1038 for (i = 0, remainder = len; remainder > 0; i++) {
1039 myri10ge_unmap_rx_page(pdev, &rx->info[idx], bytes);
1040 rx_frags[i].page = rx->info[idx].page;
1041 rx_frags[i].page_offset = rx->info[idx].page_offset;
1042 if (remainder < MYRI10GE_ALLOC_SIZE)
1043 rx_frags[i].size = remainder;
1045 rx_frags[i].size = MYRI10GE_ALLOC_SIZE;
1047 idx = rx->cnt & rx->mask;
1048 remainder -= MYRI10GE_ALLOC_SIZE;
1051 if (mgp->csum_flag && myri10ge_lro) {
1052 rx_frags[0].page_offset += MXGEFW_PAD;
1053 rx_frags[0].size -= MXGEFW_PAD;
1055 lro_receive_frags(&mgp->rx_done.lro_mgr, rx_frags,
1056 len, len, (void *)(unsigned long)csum, csum);
1060 hlen = MYRI10GE_HLEN > len ? len : MYRI10GE_HLEN;
1062 /* allocate an skb to attach the page(s) to. This is done
1063 * after trying LRO, so as to avoid skb allocation overheads */
1065 skb = netdev_alloc_skb(dev, MYRI10GE_HLEN + 16);
1066 if (unlikely(skb == NULL)) {
1067 mgp->stats.rx_dropped++;
1070 put_page(rx_frags[i].page);
1075 /* Attach the pages to the skb, and trim off any padding */
1076 myri10ge_rx_skb_build(skb, va, rx_frags, len, hlen);
1077 if (skb_shinfo(skb)->frags[0].size <= 0) {
1078 put_page(skb_shinfo(skb)->frags[0].page);
1079 skb_shinfo(skb)->nr_frags = 0;
1081 skb->protocol = eth_type_trans(skb, dev);
1083 if (mgp->csum_flag) {
1084 if ((skb->protocol == htons(ETH_P_IP)) ||
1085 (skb->protocol == htons(ETH_P_IPV6))) {
1087 skb->ip_summed = CHECKSUM_COMPLETE;
1089 myri10ge_vlan_ip_csum(skb, csum);
1091 netif_receive_skb(skb);
1092 dev->last_rx = jiffies;
1096 static inline void myri10ge_tx_done(struct myri10ge_priv *mgp, int mcp_index)
1098 struct pci_dev *pdev = mgp->pdev;
1099 struct myri10ge_tx_buf *tx = &mgp->tx;
1100 struct sk_buff *skb;
1103 while (tx->pkt_done != mcp_index) {
1104 idx = tx->done & tx->mask;
1105 skb = tx->info[idx].skb;
1108 tx->info[idx].skb = NULL;
1109 if (tx->info[idx].last) {
1111 tx->info[idx].last = 0;
1114 len = pci_unmap_len(&tx->info[idx], len);
1115 pci_unmap_len_set(&tx->info[idx], len, 0);
1117 mgp->stats.tx_bytes += skb->len;
1118 mgp->stats.tx_packets++;
1119 dev_kfree_skb_irq(skb);
1121 pci_unmap_single(pdev,
1122 pci_unmap_addr(&tx->info[idx],
1127 pci_unmap_page(pdev,
1128 pci_unmap_addr(&tx->info[idx],
1133 /* start the queue if we've stopped it */
1134 if (netif_queue_stopped(mgp->dev)
1135 && tx->req - tx->done < (tx->mask >> 1)) {
1137 netif_wake_queue(mgp->dev);
1141 static inline int myri10ge_clean_rx_done(struct myri10ge_priv *mgp, int budget)
1143 struct myri10ge_rx_done *rx_done = &mgp->rx_done;
1144 unsigned long rx_bytes = 0;
1145 unsigned long rx_packets = 0;
1146 unsigned long rx_ok;
1148 int idx = rx_done->idx;
1149 int cnt = rx_done->cnt;
1154 while (rx_done->entry[idx].length != 0 && work_done < budget) {
1155 length = ntohs(rx_done->entry[idx].length);
1156 rx_done->entry[idx].length = 0;
1157 checksum = csum_unfold(rx_done->entry[idx].checksum);
1158 if (length <= mgp->small_bytes)
1159 rx_ok = myri10ge_rx_done(mgp, &mgp->rx_small,
1163 rx_ok = myri10ge_rx_done(mgp, &mgp->rx_big,
1166 rx_packets += rx_ok;
1167 rx_bytes += rx_ok * (unsigned long)length;
1169 idx = cnt & (myri10ge_max_intr_slots - 1);
1174 mgp->stats.rx_packets += rx_packets;
1175 mgp->stats.rx_bytes += rx_bytes;
1178 lro_flush_all(&rx_done->lro_mgr);
1180 /* restock receive rings if needed */
1181 if (mgp->rx_small.fill_cnt - mgp->rx_small.cnt < myri10ge_fill_thresh)
1182 myri10ge_alloc_rx_pages(mgp, &mgp->rx_small,
1183 mgp->small_bytes + MXGEFW_PAD, 0);
1184 if (mgp->rx_big.fill_cnt - mgp->rx_big.cnt < myri10ge_fill_thresh)
1185 myri10ge_alloc_rx_pages(mgp, &mgp->rx_big, mgp->big_bytes, 0);
1190 static inline void myri10ge_check_statblock(struct myri10ge_priv *mgp)
1192 struct mcp_irq_data *stats = mgp->fw_stats;
1194 if (unlikely(stats->stats_updated)) {
1195 unsigned link_up = ntohl(stats->link_up);
1196 if (mgp->link_state != link_up) {
1197 mgp->link_state = link_up;
1199 if (mgp->link_state == MXGEFW_LINK_UP) {
1200 if (netif_msg_link(mgp))
1202 "myri10ge: %s: link up\n",
1204 netif_carrier_on(mgp->dev);
1205 mgp->link_changes++;
1207 if (netif_msg_link(mgp))
1209 "myri10ge: %s: link %s\n",
1211 (link_up == MXGEFW_LINK_MYRINET ?
1212 "mismatch (Myrinet detected)" :
1214 netif_carrier_off(mgp->dev);
1215 mgp->link_changes++;
1218 if (mgp->rdma_tags_available !=
1219 ntohl(mgp->fw_stats->rdma_tags_available)) {
1220 mgp->rdma_tags_available =
1221 ntohl(mgp->fw_stats->rdma_tags_available);
1222 printk(KERN_WARNING "myri10ge: %s: RDMA timed out! "
1223 "%d tags left\n", mgp->dev->name,
1224 mgp->rdma_tags_available);
1226 mgp->down_cnt += stats->link_down;
1227 if (stats->link_down)
1228 wake_up(&mgp->down_wq);
1232 static int myri10ge_poll(struct napi_struct *napi, int budget)
1234 struct myri10ge_priv *mgp =
1235 container_of(napi, struct myri10ge_priv, napi);
1236 struct net_device *netdev = mgp->dev;
1239 /* process as many rx events as NAPI will allow */
1240 work_done = myri10ge_clean_rx_done(mgp, budget);
1242 if (work_done < budget || !netif_running(netdev)) {
1243 netif_rx_complete(netdev, napi);
1244 put_be32(htonl(3), mgp->irq_claim);
1249 static irqreturn_t myri10ge_intr(int irq, void *arg)
1251 struct myri10ge_priv *mgp = arg;
1252 struct mcp_irq_data *stats = mgp->fw_stats;
1253 struct myri10ge_tx_buf *tx = &mgp->tx;
1254 u32 send_done_count;
1257 /* make sure it is our IRQ, and that the DMA has finished */
1258 if (unlikely(!stats->valid))
1261 /* low bit indicates receives are present, so schedule
1262 * napi poll handler */
1263 if (stats->valid & 1)
1264 netif_rx_schedule(mgp->dev, &mgp->napi);
1266 if (!mgp->msi_enabled) {
1267 put_be32(0, mgp->irq_deassert);
1268 if (!myri10ge_deassert_wait)
1274 /* Wait for IRQ line to go low, if using INTx */
1278 /* check for transmit completes and receives */
1279 send_done_count = ntohl(stats->send_done_count);
1280 if (send_done_count != tx->pkt_done)
1281 myri10ge_tx_done(mgp, (int)send_done_count);
1282 if (unlikely(i > myri10ge_max_irq_loops)) {
1283 printk(KERN_WARNING "myri10ge: %s: irq stuck?\n",
1286 schedule_work(&mgp->watchdog_work);
1288 if (likely(stats->valid == 0))
1294 myri10ge_check_statblock(mgp);
1296 put_be32(htonl(3), mgp->irq_claim + 1);
1297 return (IRQ_HANDLED);
1301 myri10ge_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
1303 cmd->autoneg = AUTONEG_DISABLE;
1304 cmd->speed = SPEED_10000;
1305 cmd->duplex = DUPLEX_FULL;
1310 myri10ge_get_drvinfo(struct net_device *netdev, struct ethtool_drvinfo *info)
1312 struct myri10ge_priv *mgp = netdev_priv(netdev);
1314 strlcpy(info->driver, "myri10ge", sizeof(info->driver));
1315 strlcpy(info->version, MYRI10GE_VERSION_STR, sizeof(info->version));
1316 strlcpy(info->fw_version, mgp->fw_version, sizeof(info->fw_version));
1317 strlcpy(info->bus_info, pci_name(mgp->pdev), sizeof(info->bus_info));
1321 myri10ge_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *coal)
1323 struct myri10ge_priv *mgp = netdev_priv(netdev);
1324 coal->rx_coalesce_usecs = mgp->intr_coal_delay;
1329 myri10ge_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *coal)
1331 struct myri10ge_priv *mgp = netdev_priv(netdev);
1333 mgp->intr_coal_delay = coal->rx_coalesce_usecs;
1334 put_be32(htonl(mgp->intr_coal_delay), mgp->intr_coal_delay_ptr);
1339 myri10ge_get_pauseparam(struct net_device *netdev,
1340 struct ethtool_pauseparam *pause)
1342 struct myri10ge_priv *mgp = netdev_priv(netdev);
1345 pause->rx_pause = mgp->pause;
1346 pause->tx_pause = mgp->pause;
1350 myri10ge_set_pauseparam(struct net_device *netdev,
1351 struct ethtool_pauseparam *pause)
1353 struct myri10ge_priv *mgp = netdev_priv(netdev);
1355 if (pause->tx_pause != mgp->pause)
1356 return myri10ge_change_pause(mgp, pause->tx_pause);
1357 if (pause->rx_pause != mgp->pause)
1358 return myri10ge_change_pause(mgp, pause->tx_pause);
1359 if (pause->autoneg != 0)
1365 myri10ge_get_ringparam(struct net_device *netdev,
1366 struct ethtool_ringparam *ring)
1368 struct myri10ge_priv *mgp = netdev_priv(netdev);
1370 ring->rx_mini_max_pending = mgp->rx_small.mask + 1;
1371 ring->rx_max_pending = mgp->rx_big.mask + 1;
1372 ring->rx_jumbo_max_pending = 0;
1373 ring->tx_max_pending = mgp->rx_small.mask + 1;
1374 ring->rx_mini_pending = ring->rx_mini_max_pending;
1375 ring->rx_pending = ring->rx_max_pending;
1376 ring->rx_jumbo_pending = ring->rx_jumbo_max_pending;
1377 ring->tx_pending = ring->tx_max_pending;
1380 static u32 myri10ge_get_rx_csum(struct net_device *netdev)
1382 struct myri10ge_priv *mgp = netdev_priv(netdev);
1389 static int myri10ge_set_rx_csum(struct net_device *netdev, u32 csum_enabled)
1391 struct myri10ge_priv *mgp = netdev_priv(netdev);
1393 mgp->csum_flag = MXGEFW_FLAGS_CKSUM;
1399 static int myri10ge_set_tso(struct net_device *netdev, u32 tso_enabled)
1401 struct myri10ge_priv *mgp = netdev_priv(netdev);
1402 unsigned long flags = mgp->features & (NETIF_F_TSO6 | NETIF_F_TSO);
1405 netdev->features |= flags;
1407 netdev->features &= ~flags;
1411 static const char myri10ge_gstrings_stats[][ETH_GSTRING_LEN] = {
1412 "rx_packets", "tx_packets", "rx_bytes", "tx_bytes", "rx_errors",
1413 "tx_errors", "rx_dropped", "tx_dropped", "multicast", "collisions",
1414 "rx_length_errors", "rx_over_errors", "rx_crc_errors",
1415 "rx_frame_errors", "rx_fifo_errors", "rx_missed_errors",
1416 "tx_aborted_errors", "tx_carrier_errors", "tx_fifo_errors",
1417 "tx_heartbeat_errors", "tx_window_errors",
1418 /* device-specific stats */
1419 "tx_boundary", "WC", "irq", "MSI",
1420 "read_dma_bw_MBs", "write_dma_bw_MBs", "read_write_dma_bw_MBs",
1421 "serial_number", "tx_pkt_start", "tx_pkt_done",
1422 "tx_req", "tx_done", "rx_small_cnt", "rx_big_cnt",
1423 "wake_queue", "stop_queue", "watchdog_resets", "tx_linearized",
1424 "link_changes", "link_up", "dropped_link_overflow",
1425 "dropped_link_error_or_filtered",
1426 "dropped_pause", "dropped_bad_phy", "dropped_bad_crc32",
1427 "dropped_unicast_filtered", "dropped_multicast_filtered",
1428 "dropped_runt", "dropped_overrun", "dropped_no_small_buffer",
1429 "dropped_no_big_buffer", "LRO aggregated", "LRO flushed",
1430 "LRO avg aggr", "LRO no_desc"
1433 #define MYRI10GE_NET_STATS_LEN 21
1434 #define MYRI10GE_STATS_LEN sizeof(myri10ge_gstrings_stats) / ETH_GSTRING_LEN
1437 myri10ge_get_strings(struct net_device *netdev, u32 stringset, u8 * data)
1439 switch (stringset) {
1441 memcpy(data, *myri10ge_gstrings_stats,
1442 sizeof(myri10ge_gstrings_stats));
1447 static int myri10ge_get_sset_count(struct net_device *netdev, int sset)
1451 return MYRI10GE_STATS_LEN;
1458 myri10ge_get_ethtool_stats(struct net_device *netdev,
1459 struct ethtool_stats *stats, u64 * data)
1461 struct myri10ge_priv *mgp = netdev_priv(netdev);
1464 for (i = 0; i < MYRI10GE_NET_STATS_LEN; i++)
1465 data[i] = ((unsigned long *)&mgp->stats)[i];
1467 data[i++] = (unsigned int)mgp->tx.boundary;
1468 data[i++] = (unsigned int)mgp->wc_enabled;
1469 data[i++] = (unsigned int)mgp->pdev->irq;
1470 data[i++] = (unsigned int)mgp->msi_enabled;
1471 data[i++] = (unsigned int)mgp->read_dma;
1472 data[i++] = (unsigned int)mgp->write_dma;
1473 data[i++] = (unsigned int)mgp->read_write_dma;
1474 data[i++] = (unsigned int)mgp->serial_number;
1475 data[i++] = (unsigned int)mgp->tx.pkt_start;
1476 data[i++] = (unsigned int)mgp->tx.pkt_done;
1477 data[i++] = (unsigned int)mgp->tx.req;
1478 data[i++] = (unsigned int)mgp->tx.done;
1479 data[i++] = (unsigned int)mgp->rx_small.cnt;
1480 data[i++] = (unsigned int)mgp->rx_big.cnt;
1481 data[i++] = (unsigned int)mgp->wake_queue;
1482 data[i++] = (unsigned int)mgp->stop_queue;
1483 data[i++] = (unsigned int)mgp->watchdog_resets;
1484 data[i++] = (unsigned int)mgp->tx_linearized;
1485 data[i++] = (unsigned int)mgp->link_changes;
1486 data[i++] = (unsigned int)ntohl(mgp->fw_stats->link_up);
1487 data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_link_overflow);
1489 (unsigned int)ntohl(mgp->fw_stats->dropped_link_error_or_filtered);
1490 data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_pause);
1491 data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_bad_phy);
1492 data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_bad_crc32);
1494 (unsigned int)ntohl(mgp->fw_stats->dropped_unicast_filtered);
1496 (unsigned int)ntohl(mgp->fw_stats->dropped_multicast_filtered);
1497 data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_runt);
1498 data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_overrun);
1499 data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_no_small_buffer);
1500 data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_no_big_buffer);
1501 data[i++] = mgp->rx_done.lro_mgr.stats.aggregated;
1502 data[i++] = mgp->rx_done.lro_mgr.stats.flushed;
1503 if (mgp->rx_done.lro_mgr.stats.flushed)
1504 data[i++] = mgp->rx_done.lro_mgr.stats.aggregated /
1505 mgp->rx_done.lro_mgr.stats.flushed;
1508 data[i++] = mgp->rx_done.lro_mgr.stats.no_desc;
1511 static void myri10ge_set_msglevel(struct net_device *netdev, u32 value)
1513 struct myri10ge_priv *mgp = netdev_priv(netdev);
1514 mgp->msg_enable = value;
1517 static u32 myri10ge_get_msglevel(struct net_device *netdev)
1519 struct myri10ge_priv *mgp = netdev_priv(netdev);
1520 return mgp->msg_enable;
1523 static const struct ethtool_ops myri10ge_ethtool_ops = {
1524 .get_settings = myri10ge_get_settings,
1525 .get_drvinfo = myri10ge_get_drvinfo,
1526 .get_coalesce = myri10ge_get_coalesce,
1527 .set_coalesce = myri10ge_set_coalesce,
1528 .get_pauseparam = myri10ge_get_pauseparam,
1529 .set_pauseparam = myri10ge_set_pauseparam,
1530 .get_ringparam = myri10ge_get_ringparam,
1531 .get_rx_csum = myri10ge_get_rx_csum,
1532 .set_rx_csum = myri10ge_set_rx_csum,
1533 .set_tx_csum = ethtool_op_set_tx_hw_csum,
1534 .set_sg = ethtool_op_set_sg,
1535 .set_tso = myri10ge_set_tso,
1536 .get_link = ethtool_op_get_link,
1537 .get_strings = myri10ge_get_strings,
1538 .get_sset_count = myri10ge_get_sset_count,
1539 .get_ethtool_stats = myri10ge_get_ethtool_stats,
1540 .set_msglevel = myri10ge_set_msglevel,
1541 .get_msglevel = myri10ge_get_msglevel
1544 static int myri10ge_allocate_rings(struct net_device *dev)
1546 struct myri10ge_priv *mgp;
1547 struct myri10ge_cmd cmd;
1548 int tx_ring_size, rx_ring_size;
1549 int tx_ring_entries, rx_ring_entries;
1553 mgp = netdev_priv(dev);
1555 /* get ring sizes */
1557 status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SEND_RING_SIZE, &cmd, 0);
1558 tx_ring_size = cmd.data0;
1559 status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_RX_RING_SIZE, &cmd, 0);
1562 rx_ring_size = cmd.data0;
1564 tx_ring_entries = tx_ring_size / sizeof(struct mcp_kreq_ether_send);
1565 rx_ring_entries = rx_ring_size / sizeof(struct mcp_dma_addr);
1566 mgp->tx.mask = tx_ring_entries - 1;
1567 mgp->rx_small.mask = mgp->rx_big.mask = rx_ring_entries - 1;
1571 /* allocate the host shadow rings */
1573 bytes = 8 + (MYRI10GE_MAX_SEND_DESC_TSO + 4)
1574 * sizeof(*mgp->tx.req_list);
1575 mgp->tx.req_bytes = kzalloc(bytes, GFP_KERNEL);
1576 if (mgp->tx.req_bytes == NULL)
1577 goto abort_with_nothing;
1579 /* ensure req_list entries are aligned to 8 bytes */
1580 mgp->tx.req_list = (struct mcp_kreq_ether_send *)
1581 ALIGN((unsigned long)mgp->tx.req_bytes, 8);
1583 bytes = rx_ring_entries * sizeof(*mgp->rx_small.shadow);
1584 mgp->rx_small.shadow = kzalloc(bytes, GFP_KERNEL);
1585 if (mgp->rx_small.shadow == NULL)
1586 goto abort_with_tx_req_bytes;
1588 bytes = rx_ring_entries * sizeof(*mgp->rx_big.shadow);
1589 mgp->rx_big.shadow = kzalloc(bytes, GFP_KERNEL);
1590 if (mgp->rx_big.shadow == NULL)
1591 goto abort_with_rx_small_shadow;
1593 /* allocate the host info rings */
1595 bytes = tx_ring_entries * sizeof(*mgp->tx.info);
1596 mgp->tx.info = kzalloc(bytes, GFP_KERNEL);
1597 if (mgp->tx.info == NULL)
1598 goto abort_with_rx_big_shadow;
1600 bytes = rx_ring_entries * sizeof(*mgp->rx_small.info);
1601 mgp->rx_small.info = kzalloc(bytes, GFP_KERNEL);
1602 if (mgp->rx_small.info == NULL)
1603 goto abort_with_tx_info;
1605 bytes = rx_ring_entries * sizeof(*mgp->rx_big.info);
1606 mgp->rx_big.info = kzalloc(bytes, GFP_KERNEL);
1607 if (mgp->rx_big.info == NULL)
1608 goto abort_with_rx_small_info;
1610 /* Fill the receive rings */
1611 mgp->rx_big.cnt = 0;
1612 mgp->rx_small.cnt = 0;
1613 mgp->rx_big.fill_cnt = 0;
1614 mgp->rx_small.fill_cnt = 0;
1615 mgp->rx_small.page_offset = MYRI10GE_ALLOC_SIZE;
1616 mgp->rx_big.page_offset = MYRI10GE_ALLOC_SIZE;
1617 mgp->rx_small.watchdog_needed = 0;
1618 mgp->rx_big.watchdog_needed = 0;
1619 myri10ge_alloc_rx_pages(mgp, &mgp->rx_small,
1620 mgp->small_bytes + MXGEFW_PAD, 0);
1622 if (mgp->rx_small.fill_cnt < mgp->rx_small.mask + 1) {
1623 printk(KERN_ERR "myri10ge: %s: alloced only %d small bufs\n",
1624 dev->name, mgp->rx_small.fill_cnt);
1625 goto abort_with_rx_small_ring;
1628 myri10ge_alloc_rx_pages(mgp, &mgp->rx_big, mgp->big_bytes, 0);
1629 if (mgp->rx_big.fill_cnt < mgp->rx_big.mask + 1) {
1630 printk(KERN_ERR "myri10ge: %s: alloced only %d big bufs\n",
1631 dev->name, mgp->rx_big.fill_cnt);
1632 goto abort_with_rx_big_ring;
1637 abort_with_rx_big_ring:
1638 for (i = mgp->rx_big.cnt; i < mgp->rx_big.fill_cnt; i++) {
1639 int idx = i & mgp->rx_big.mask;
1640 myri10ge_unmap_rx_page(mgp->pdev, &mgp->rx_big.info[idx],
1642 put_page(mgp->rx_big.info[idx].page);
1645 abort_with_rx_small_ring:
1646 for (i = mgp->rx_small.cnt; i < mgp->rx_small.fill_cnt; i++) {
1647 int idx = i & mgp->rx_small.mask;
1648 myri10ge_unmap_rx_page(mgp->pdev, &mgp->rx_small.info[idx],
1649 mgp->small_bytes + MXGEFW_PAD);
1650 put_page(mgp->rx_small.info[idx].page);
1653 kfree(mgp->rx_big.info);
1655 abort_with_rx_small_info:
1656 kfree(mgp->rx_small.info);
1659 kfree(mgp->tx.info);
1661 abort_with_rx_big_shadow:
1662 kfree(mgp->rx_big.shadow);
1664 abort_with_rx_small_shadow:
1665 kfree(mgp->rx_small.shadow);
1667 abort_with_tx_req_bytes:
1668 kfree(mgp->tx.req_bytes);
1669 mgp->tx.req_bytes = NULL;
1670 mgp->tx.req_list = NULL;
1676 static void myri10ge_free_rings(struct net_device *dev)
1678 struct myri10ge_priv *mgp;
1679 struct sk_buff *skb;
1680 struct myri10ge_tx_buf *tx;
1683 mgp = netdev_priv(dev);
1685 for (i = mgp->rx_big.cnt; i < mgp->rx_big.fill_cnt; i++) {
1686 idx = i & mgp->rx_big.mask;
1687 if (i == mgp->rx_big.fill_cnt - 1)
1688 mgp->rx_big.info[idx].page_offset = MYRI10GE_ALLOC_SIZE;
1689 myri10ge_unmap_rx_page(mgp->pdev, &mgp->rx_big.info[idx],
1691 put_page(mgp->rx_big.info[idx].page);
1694 for (i = mgp->rx_small.cnt; i < mgp->rx_small.fill_cnt; i++) {
1695 idx = i & mgp->rx_small.mask;
1696 if (i == mgp->rx_small.fill_cnt - 1)
1697 mgp->rx_small.info[idx].page_offset =
1698 MYRI10GE_ALLOC_SIZE;
1699 myri10ge_unmap_rx_page(mgp->pdev, &mgp->rx_small.info[idx],
1700 mgp->small_bytes + MXGEFW_PAD);
1701 put_page(mgp->rx_small.info[idx].page);
1704 while (tx->done != tx->req) {
1705 idx = tx->done & tx->mask;
1706 skb = tx->info[idx].skb;
1709 tx->info[idx].skb = NULL;
1711 len = pci_unmap_len(&tx->info[idx], len);
1712 pci_unmap_len_set(&tx->info[idx], len, 0);
1714 mgp->stats.tx_dropped++;
1715 dev_kfree_skb_any(skb);
1717 pci_unmap_single(mgp->pdev,
1718 pci_unmap_addr(&tx->info[idx],
1723 pci_unmap_page(mgp->pdev,
1724 pci_unmap_addr(&tx->info[idx],
1729 kfree(mgp->rx_big.info);
1731 kfree(mgp->rx_small.info);
1733 kfree(mgp->tx.info);
1735 kfree(mgp->rx_big.shadow);
1737 kfree(mgp->rx_small.shadow);
1739 kfree(mgp->tx.req_bytes);
1740 mgp->tx.req_bytes = NULL;
1741 mgp->tx.req_list = NULL;
1744 static int myri10ge_request_irq(struct myri10ge_priv *mgp)
1746 struct pci_dev *pdev = mgp->pdev;
1750 status = pci_enable_msi(pdev);
1753 "Error %d setting up MSI; falling back to xPIC\n",
1756 mgp->msi_enabled = 1;
1758 mgp->msi_enabled = 0;
1760 status = request_irq(pdev->irq, myri10ge_intr, IRQF_SHARED,
1761 mgp->dev->name, mgp);
1763 dev_err(&pdev->dev, "failed to allocate IRQ\n");
1764 if (mgp->msi_enabled)
1765 pci_disable_msi(pdev);
1770 static void myri10ge_free_irq(struct myri10ge_priv *mgp)
1772 struct pci_dev *pdev = mgp->pdev;
1774 free_irq(pdev->irq, mgp);
1775 if (mgp->msi_enabled)
1776 pci_disable_msi(pdev);
1780 myri10ge_get_frag_header(struct skb_frag_struct *frag, void **mac_hdr,
1781 void **ip_hdr, void **tcpudp_hdr,
1782 u64 * hdr_flags, void *priv)
1785 struct vlan_ethhdr *veh;
1787 u8 *va = page_address(frag->page) + frag->page_offset;
1788 unsigned long ll_hlen;
1789 __wsum csum = (__wsum) (unsigned long)priv;
1791 /* find the mac header, aborting if not IPv4 */
1793 eh = (struct ethhdr *)va;
1796 if (eh->h_proto != htons(ETH_P_IP)) {
1797 if (eh->h_proto == htons(ETH_P_8021Q)) {
1798 veh = (struct vlan_ethhdr *)va;
1799 if (veh->h_vlan_encapsulated_proto != htons(ETH_P_IP))
1802 ll_hlen += VLAN_HLEN;
1805 * HW checksum starts ETH_HLEN bytes into
1806 * frame, so we must subtract off the VLAN
1807 * header's checksum before csum can be used
1809 csum = csum_sub(csum, csum_partial(va + ETH_HLEN,
1815 *hdr_flags = LRO_IPV4;
1817 iph = (struct iphdr *)(va + ll_hlen);
1819 if (iph->protocol != IPPROTO_TCP)
1821 *hdr_flags |= LRO_TCP;
1822 *tcpudp_hdr = (u8 *) (*ip_hdr) + (iph->ihl << 2);
1824 /* verify the IP checksum */
1825 if (unlikely(ip_fast_csum((u8 *) iph, iph->ihl)))
1828 /* verify the checksum */
1829 if (unlikely(csum_tcpudp_magic(iph->saddr, iph->daddr,
1830 ntohs(iph->tot_len) - (iph->ihl << 2),
1831 IPPROTO_TCP, csum)))
1837 static int myri10ge_open(struct net_device *dev)
1839 struct myri10ge_priv *mgp;
1840 struct myri10ge_cmd cmd;
1841 struct net_lro_mgr *lro_mgr;
1842 int status, big_pow2;
1844 mgp = netdev_priv(dev);
1846 if (mgp->running != MYRI10GE_ETH_STOPPED)
1849 mgp->running = MYRI10GE_ETH_STARTING;
1850 status = myri10ge_reset(mgp);
1852 printk(KERN_ERR "myri10ge: %s: failed reset\n", dev->name);
1853 goto abort_with_nothing;
1856 status = myri10ge_request_irq(mgp);
1858 goto abort_with_nothing;
1860 /* decide what small buffer size to use. For good TCP rx
1861 * performance, it is important to not receive 1514 byte
1862 * frames into jumbo buffers, as it confuses the socket buffer
1863 * accounting code, leading to drops and erratic performance.
1866 if (dev->mtu <= ETH_DATA_LEN)
1867 /* enough for a TCP header */
1868 mgp->small_bytes = (128 > SMP_CACHE_BYTES)
1869 ? (128 - MXGEFW_PAD)
1870 : (SMP_CACHE_BYTES - MXGEFW_PAD);
1872 /* enough for a vlan encapsulated ETH_DATA_LEN frame */
1873 mgp->small_bytes = VLAN_ETH_FRAME_LEN;
1875 /* Override the small buffer size? */
1876 if (myri10ge_small_bytes > 0)
1877 mgp->small_bytes = myri10ge_small_bytes;
1879 /* get the lanai pointers to the send and receive rings */
1881 status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SEND_OFFSET, &cmd, 0);
1883 (struct mcp_kreq_ether_send __iomem *)(mgp->sram + cmd.data0);
1886 myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SMALL_RX_OFFSET, &cmd, 0);
1887 mgp->rx_small.lanai =
1888 (struct mcp_kreq_ether_recv __iomem *)(mgp->sram + cmd.data0);
1890 status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_BIG_RX_OFFSET, &cmd, 0);
1892 (struct mcp_kreq_ether_recv __iomem *)(mgp->sram + cmd.data0);
1896 "myri10ge: %s: failed to get ring sizes or locations\n",
1898 mgp->running = MYRI10GE_ETH_STOPPED;
1899 goto abort_with_irq;
1902 if (myri10ge_wcfifo && mgp->wc_enabled) {
1903 mgp->tx.wc_fifo = (u8 __iomem *) mgp->sram + MXGEFW_ETH_SEND_4;
1904 mgp->rx_small.wc_fifo =
1905 (u8 __iomem *) mgp->sram + MXGEFW_ETH_RECV_SMALL;
1906 mgp->rx_big.wc_fifo =
1907 (u8 __iomem *) mgp->sram + MXGEFW_ETH_RECV_BIG;
1909 mgp->tx.wc_fifo = NULL;
1910 mgp->rx_small.wc_fifo = NULL;
1911 mgp->rx_big.wc_fifo = NULL;
1914 /* Firmware needs the big buff size as a power of 2. Lie and
1915 * tell him the buffer is larger, because we only use 1
1916 * buffer/pkt, and the mtu will prevent overruns.
1918 big_pow2 = dev->mtu + ETH_HLEN + VLAN_HLEN + MXGEFW_PAD;
1919 if (big_pow2 < MYRI10GE_ALLOC_SIZE / 2) {
1920 while (!is_power_of_2(big_pow2))
1922 mgp->big_bytes = dev->mtu + ETH_HLEN + VLAN_HLEN + MXGEFW_PAD;
1924 big_pow2 = MYRI10GE_ALLOC_SIZE;
1925 mgp->big_bytes = big_pow2;
1928 status = myri10ge_allocate_rings(dev);
1930 goto abort_with_irq;
1932 /* now give firmware buffers sizes, and MTU */
1933 cmd.data0 = dev->mtu + ETH_HLEN + VLAN_HLEN;
1934 status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_MTU, &cmd, 0);
1935 cmd.data0 = mgp->small_bytes;
1937 myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_SMALL_BUFFER_SIZE, &cmd, 0);
1938 cmd.data0 = big_pow2;
1940 myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_BIG_BUFFER_SIZE, &cmd, 0);
1942 printk(KERN_ERR "myri10ge: %s: Couldn't set buffer sizes\n",
1944 goto abort_with_rings;
1947 cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->fw_stats_bus);
1948 cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->fw_stats_bus);
1949 cmd.data2 = sizeof(struct mcp_irq_data);
1950 status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_STATS_DMA_V2, &cmd, 0);
1951 if (status == -ENOSYS) {
1952 dma_addr_t bus = mgp->fw_stats_bus;
1953 bus += offsetof(struct mcp_irq_data, send_done_count);
1954 cmd.data0 = MYRI10GE_LOWPART_TO_U32(bus);
1955 cmd.data1 = MYRI10GE_HIGHPART_TO_U32(bus);
1956 status = myri10ge_send_cmd(mgp,
1957 MXGEFW_CMD_SET_STATS_DMA_OBSOLETE,
1959 /* Firmware cannot support multicast without STATS_DMA_V2 */
1960 mgp->fw_multicast_support = 0;
1962 mgp->fw_multicast_support = 1;
1965 printk(KERN_ERR "myri10ge: %s: Couldn't set stats DMA\n",
1967 goto abort_with_rings;
1970 mgp->link_state = htonl(~0U);
1971 mgp->rdma_tags_available = 15;
1973 lro_mgr = &mgp->rx_done.lro_mgr;
1975 lro_mgr->features = LRO_F_NAPI;
1976 lro_mgr->ip_summed = CHECKSUM_COMPLETE;
1977 lro_mgr->ip_summed_aggr = CHECKSUM_UNNECESSARY;
1978 lro_mgr->max_desc = MYRI10GE_MAX_LRO_DESCRIPTORS;
1979 lro_mgr->lro_arr = mgp->rx_done.lro_desc;
1980 lro_mgr->get_frag_header = myri10ge_get_frag_header;
1981 lro_mgr->max_aggr = myri10ge_lro_max_pkts;
1982 lro_mgr->frag_align_pad = 2;
1983 if (lro_mgr->max_aggr > MAX_SKB_FRAGS)
1984 lro_mgr->max_aggr = MAX_SKB_FRAGS;
1986 napi_enable(&mgp->napi); /* must happen prior to any irq */
1988 status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ETHERNET_UP, &cmd, 0);
1990 printk(KERN_ERR "myri10ge: %s: Couldn't bring up link\n",
1992 goto abort_with_rings;
1995 mgp->wake_queue = 0;
1996 mgp->stop_queue = 0;
1997 mgp->running = MYRI10GE_ETH_RUNNING;
1998 mgp->watchdog_timer.expires = jiffies + myri10ge_watchdog_timeout * HZ;
1999 add_timer(&mgp->watchdog_timer);
2000 netif_wake_queue(dev);
2004 myri10ge_free_rings(dev);
2007 myri10ge_free_irq(mgp);
2010 mgp->running = MYRI10GE_ETH_STOPPED;
2014 static int myri10ge_close(struct net_device *dev)
2016 struct myri10ge_priv *mgp;
2017 struct myri10ge_cmd cmd;
2018 int status, old_down_cnt;
2020 mgp = netdev_priv(dev);
2022 if (mgp->running != MYRI10GE_ETH_RUNNING)
2025 if (mgp->tx.req_bytes == NULL)
2028 del_timer_sync(&mgp->watchdog_timer);
2029 mgp->running = MYRI10GE_ETH_STOPPING;
2030 napi_disable(&mgp->napi);
2031 netif_carrier_off(dev);
2032 netif_stop_queue(dev);
2033 old_down_cnt = mgp->down_cnt;
2035 status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ETHERNET_DOWN, &cmd, 0);
2037 printk(KERN_ERR "myri10ge: %s: Couldn't bring down link\n",
2040 wait_event_timeout(mgp->down_wq, old_down_cnt != mgp->down_cnt, HZ);
2041 if (old_down_cnt == mgp->down_cnt)
2042 printk(KERN_ERR "myri10ge: %s never got down irq\n", dev->name);
2044 netif_tx_disable(dev);
2045 myri10ge_free_irq(mgp);
2046 myri10ge_free_rings(dev);
2048 mgp->running = MYRI10GE_ETH_STOPPED;
2052 /* copy an array of struct mcp_kreq_ether_send's to the mcp. Copy
2053 * backwards one at a time and handle ring wraps */
2056 myri10ge_submit_req_backwards(struct myri10ge_tx_buf *tx,
2057 struct mcp_kreq_ether_send *src, int cnt)
2059 int idx, starting_slot;
2060 starting_slot = tx->req;
2063 idx = (starting_slot + cnt) & tx->mask;
2064 myri10ge_pio_copy(&tx->lanai[idx], &src[cnt], sizeof(*src));
2070 * copy an array of struct mcp_kreq_ether_send's to the mcp. Copy
2071 * at most 32 bytes at a time, so as to avoid involving the software
2072 * pio handler in the nic. We re-write the first segment's flags
2073 * to mark them valid only after writing the entire chain.
2077 myri10ge_submit_req(struct myri10ge_tx_buf *tx, struct mcp_kreq_ether_send *src,
2081 struct mcp_kreq_ether_send __iomem *dstp, *dst;
2082 struct mcp_kreq_ether_send *srcp;
2085 idx = tx->req & tx->mask;
2087 last_flags = src->flags;
2090 dst = dstp = &tx->lanai[idx];
2093 if ((idx + cnt) < tx->mask) {
2094 for (i = 0; i < (cnt - 1); i += 2) {
2095 myri10ge_pio_copy(dstp, srcp, 2 * sizeof(*src));
2096 mb(); /* force write every 32 bytes */
2101 /* submit all but the first request, and ensure
2102 * that it is submitted below */
2103 myri10ge_submit_req_backwards(tx, src, cnt);
2107 /* submit the first request */
2108 myri10ge_pio_copy(dstp, srcp, sizeof(*src));
2109 mb(); /* barrier before setting valid flag */
2112 /* re-write the last 32-bits with the valid flags */
2113 src->flags = last_flags;
2114 put_be32(*((__be32 *) src + 3), (__be32 __iomem *) dst + 3);
2120 myri10ge_submit_req_wc(struct myri10ge_tx_buf *tx,
2121 struct mcp_kreq_ether_send *src, int cnt)
2126 myri10ge_pio_copy(tx->wc_fifo, src, 64);
2132 /* pad it to 64 bytes. The src is 64 bytes bigger than it
2133 * needs to be so that we don't overrun it */
2134 myri10ge_pio_copy(tx->wc_fifo + MXGEFW_ETH_SEND_OFFSET(cnt),
2141 * Transmit a packet. We need to split the packet so that a single
2142 * segment does not cross myri10ge->tx.boundary, so this makes segment
2143 * counting tricky. So rather than try to count segments up front, we
2144 * just give up if there are too few segments to hold a reasonably
2145 * fragmented packet currently available. If we run
2146 * out of segments while preparing a packet for DMA, we just linearize
2150 static int myri10ge_xmit(struct sk_buff *skb, struct net_device *dev)
2152 struct myri10ge_priv *mgp = netdev_priv(dev);
2153 struct mcp_kreq_ether_send *req;
2154 struct myri10ge_tx_buf *tx = &mgp->tx;
2155 struct skb_frag_struct *frag;
2158 __be32 high_swapped;
2160 int idx, last_idx, avail, frag_cnt, frag_idx, count, mss, max_segments;
2161 u16 pseudo_hdr_offset, cksum_offset;
2162 int cum_len, seglen, boundary, rdma_count;
2167 avail = tx->mask - 1 - (tx->req - tx->done);
2170 max_segments = MXGEFW_MAX_SEND_DESC;
2172 if (skb_is_gso(skb)) {
2173 mss = skb_shinfo(skb)->gso_size;
2174 max_segments = MYRI10GE_MAX_SEND_DESC_TSO;
2177 if ((unlikely(avail < max_segments))) {
2178 /* we are out of transmit resources */
2180 netif_stop_queue(dev);
2184 /* Setup checksum offloading, if needed */
2186 pseudo_hdr_offset = 0;
2188 flags = (MXGEFW_FLAGS_NO_TSO | MXGEFW_FLAGS_FIRST);
2189 if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
2190 cksum_offset = skb_transport_offset(skb);
2191 pseudo_hdr_offset = cksum_offset + skb->csum_offset;
2192 /* If the headers are excessively large, then we must
2193 * fall back to a software checksum */
2194 if (unlikely(!mss && (cksum_offset > 255 ||
2195 pseudo_hdr_offset > 127))) {
2196 if (skb_checksum_help(skb))
2199 pseudo_hdr_offset = 0;
2201 odd_flag = MXGEFW_FLAGS_ALIGN_ODD;
2202 flags |= MXGEFW_FLAGS_CKSUM;
2208 if (mss) { /* TSO */
2209 /* this removes any CKSUM flag from before */
2210 flags = (MXGEFW_FLAGS_TSO_HDR | MXGEFW_FLAGS_FIRST);
2212 /* negative cum_len signifies to the
2213 * send loop that we are still in the
2214 * header portion of the TSO packet.
2215 * TSO header can be at most 1KB long */
2216 cum_len = -(skb_transport_offset(skb) + tcp_hdrlen(skb));
2218 /* for IPv6 TSO, the checksum offset stores the
2219 * TCP header length, to save the firmware from
2220 * the need to parse the headers */
2221 if (skb_is_gso_v6(skb)) {
2222 cksum_offset = tcp_hdrlen(skb);
2223 /* Can only handle headers <= max_tso6 long */
2224 if (unlikely(-cum_len > mgp->max_tso6))
2225 return myri10ge_sw_tso(skb, dev);
2227 /* for TSO, pseudo_hdr_offset holds mss.
2228 * The firmware figures out where to put
2229 * the checksum by parsing the header. */
2230 pseudo_hdr_offset = mss;
2232 /* Mark small packets, and pad out tiny packets */
2233 if (skb->len <= MXGEFW_SEND_SMALL_SIZE) {
2234 flags |= MXGEFW_FLAGS_SMALL;
2236 /* pad frames to at least ETH_ZLEN bytes */
2237 if (unlikely(skb->len < ETH_ZLEN)) {
2238 if (skb_padto(skb, ETH_ZLEN)) {
2239 /* The packet is gone, so we must
2241 mgp->stats.tx_dropped += 1;
2244 /* adjust the len to account for the zero pad
2245 * so that the nic can know how long it is */
2246 skb->len = ETH_ZLEN;
2250 /* map the skb for DMA */
2251 len = skb->len - skb->data_len;
2252 idx = tx->req & tx->mask;
2253 tx->info[idx].skb = skb;
2254 bus = pci_map_single(mgp->pdev, skb->data, len, PCI_DMA_TODEVICE);
2255 pci_unmap_addr_set(&tx->info[idx], bus, bus);
2256 pci_unmap_len_set(&tx->info[idx], len, len);
2258 frag_cnt = skb_shinfo(skb)->nr_frags;
2263 /* "rdma_count" is the number of RDMAs belonging to the
2264 * current packet BEFORE the current send request. For
2265 * non-TSO packets, this is equal to "count".
2266 * For TSO packets, rdma_count needs to be reset
2267 * to 0 after a segment cut.
2269 * The rdma_count field of the send request is
2270 * the number of RDMAs of the packet starting at
2271 * that request. For TSO send requests with one ore more cuts
2272 * in the middle, this is the number of RDMAs starting
2273 * after the last cut in the request. All previous
2274 * segments before the last cut implicitly have 1 RDMA.
2276 * Since the number of RDMAs is not known beforehand,
2277 * it must be filled-in retroactively - after each
2278 * segmentation cut or at the end of the entire packet.
2282 /* Break the SKB or Fragment up into pieces which
2283 * do not cross mgp->tx.boundary */
2284 low = MYRI10GE_LOWPART_TO_U32(bus);
2285 high_swapped = htonl(MYRI10GE_HIGHPART_TO_U32(bus));
2290 if (unlikely(count == max_segments))
2291 goto abort_linearize;
2293 boundary = (low + tx->boundary) & ~(tx->boundary - 1);
2294 seglen = boundary - low;
2297 flags_next = flags & ~MXGEFW_FLAGS_FIRST;
2298 cum_len_next = cum_len + seglen;
2299 if (mss) { /* TSO */
2300 (req - rdma_count)->rdma_count = rdma_count + 1;
2302 if (likely(cum_len >= 0)) { /* payload */
2303 int next_is_first, chop;
2305 chop = (cum_len_next > mss);
2306 cum_len_next = cum_len_next % mss;
2307 next_is_first = (cum_len_next == 0);
2308 flags |= chop * MXGEFW_FLAGS_TSO_CHOP;
2309 flags_next |= next_is_first *
2311 rdma_count |= -(chop | next_is_first);
2312 rdma_count += chop & !next_is_first;
2313 } else if (likely(cum_len_next >= 0)) { /* header ends */
2319 small = (mss <= MXGEFW_SEND_SMALL_SIZE);
2320 flags_next = MXGEFW_FLAGS_TSO_PLD |
2321 MXGEFW_FLAGS_FIRST |
2322 (small * MXGEFW_FLAGS_SMALL);
2325 req->addr_high = high_swapped;
2326 req->addr_low = htonl(low);
2327 req->pseudo_hdr_offset = htons(pseudo_hdr_offset);
2328 req->pad = 0; /* complete solid 16-byte block; does this matter? */
2329 req->rdma_count = 1;
2330 req->length = htons(seglen);
2331 req->cksum_offset = cksum_offset;
2332 req->flags = flags | ((cum_len & 1) * odd_flag);
2336 cum_len = cum_len_next;
2341 if (cksum_offset != 0 && !(mss && skb_is_gso_v6(skb))) {
2342 if (unlikely(cksum_offset > seglen))
2343 cksum_offset -= seglen;
2348 if (frag_idx == frag_cnt)
2351 /* map next fragment for DMA */
2352 idx = (count + tx->req) & tx->mask;
2353 frag = &skb_shinfo(skb)->frags[frag_idx];
2356 bus = pci_map_page(mgp->pdev, frag->page, frag->page_offset,
2357 len, PCI_DMA_TODEVICE);
2358 pci_unmap_addr_set(&tx->info[idx], bus, bus);
2359 pci_unmap_len_set(&tx->info[idx], len, len);
2362 (req - rdma_count)->rdma_count = rdma_count;
2366 req->flags |= MXGEFW_FLAGS_TSO_LAST;
2367 } while (!(req->flags & (MXGEFW_FLAGS_TSO_CHOP |
2368 MXGEFW_FLAGS_FIRST)));
2369 idx = ((count - 1) + tx->req) & tx->mask;
2370 tx->info[idx].last = 1;
2371 if (tx->wc_fifo == NULL)
2372 myri10ge_submit_req(tx, tx->req_list, count);
2374 myri10ge_submit_req_wc(tx, tx->req_list, count);
2376 if ((avail - count) < MXGEFW_MAX_SEND_DESC) {
2378 netif_stop_queue(dev);
2380 dev->trans_start = jiffies;
2384 /* Free any DMA resources we've alloced and clear out the skb
2385 * slot so as to not trip up assertions, and to avoid a
2386 * double-free if linearizing fails */
2388 last_idx = (idx + 1) & tx->mask;
2389 idx = tx->req & tx->mask;
2390 tx->info[idx].skb = NULL;
2392 len = pci_unmap_len(&tx->info[idx], len);
2394 if (tx->info[idx].skb != NULL)
2395 pci_unmap_single(mgp->pdev,
2396 pci_unmap_addr(&tx->info[idx],
2400 pci_unmap_page(mgp->pdev,
2401 pci_unmap_addr(&tx->info[idx],
2404 pci_unmap_len_set(&tx->info[idx], len, 0);
2405 tx->info[idx].skb = NULL;
2407 idx = (idx + 1) & tx->mask;
2408 } while (idx != last_idx);
2409 if (skb_is_gso(skb)) {
2411 "myri10ge: %s: TSO but wanted to linearize?!?!?\n",
2416 if (skb_linearize(skb))
2419 mgp->tx_linearized++;
2423 dev_kfree_skb_any(skb);
2424 mgp->stats.tx_dropped += 1;
2429 static int myri10ge_sw_tso(struct sk_buff *skb, struct net_device *dev)
2431 struct sk_buff *segs, *curr;
2432 struct myri10ge_priv *mgp = dev->priv;
2435 segs = skb_gso_segment(skb, dev->features & ~NETIF_F_TSO6);
2436 if (unlikely(IS_ERR(segs)))
2443 status = myri10ge_xmit(curr, dev);
2445 dev_kfree_skb_any(curr);
2450 dev_kfree_skb_any(segs);
2455 dev_kfree_skb_any(skb);
2459 dev_kfree_skb_any(skb);
2460 mgp->stats.tx_dropped += 1;
2464 static struct net_device_stats *myri10ge_get_stats(struct net_device *dev)
2466 struct myri10ge_priv *mgp = netdev_priv(dev);
2470 static void myri10ge_set_multicast_list(struct net_device *dev)
2472 struct myri10ge_cmd cmd;
2473 struct myri10ge_priv *mgp;
2474 struct dev_mc_list *mc_list;
2475 __be32 data[2] = { 0, 0 };
2477 DECLARE_MAC_BUF(mac);
2479 mgp = netdev_priv(dev);
2480 /* can be called from atomic contexts,
2481 * pass 1 to force atomicity in myri10ge_send_cmd() */
2482 myri10ge_change_promisc(mgp, dev->flags & IFF_PROMISC, 1);
2484 /* This firmware is known to not support multicast */
2485 if (!mgp->fw_multicast_support)
2488 /* Disable multicast filtering */
2490 err = myri10ge_send_cmd(mgp, MXGEFW_ENABLE_ALLMULTI, &cmd, 1);
2492 printk(KERN_ERR "myri10ge: %s: Failed MXGEFW_ENABLE_ALLMULTI,"
2493 " error status: %d\n", dev->name, err);
2497 if ((dev->flags & IFF_ALLMULTI) || mgp->adopted_rx_filter_bug) {
2498 /* request to disable multicast filtering, so quit here */
2502 /* Flush the filters */
2504 err = myri10ge_send_cmd(mgp, MXGEFW_LEAVE_ALL_MULTICAST_GROUPS,
2508 "myri10ge: %s: Failed MXGEFW_LEAVE_ALL_MULTICAST_GROUPS"
2509 ", error status: %d\n", dev->name, err);
2513 /* Walk the multicast list, and add each address */
2514 for (mc_list = dev->mc_list; mc_list != NULL; mc_list = mc_list->next) {
2515 memcpy(data, &mc_list->dmi_addr, 6);
2516 cmd.data0 = ntohl(data[0]);
2517 cmd.data1 = ntohl(data[1]);
2518 err = myri10ge_send_cmd(mgp, MXGEFW_JOIN_MULTICAST_GROUP,
2522 printk(KERN_ERR "myri10ge: %s: Failed "
2523 "MXGEFW_JOIN_MULTICAST_GROUP, error status:"
2524 "%d\t", dev->name, err);
2525 printk(KERN_ERR "MAC %s\n",
2526 print_mac(mac, mc_list->dmi_addr));
2530 /* Enable multicast filtering */
2531 err = myri10ge_send_cmd(mgp, MXGEFW_DISABLE_ALLMULTI, &cmd, 1);
2533 printk(KERN_ERR "myri10ge: %s: Failed MXGEFW_DISABLE_ALLMULTI,"
2534 "error status: %d\n", dev->name, err);
2544 static int myri10ge_set_mac_address(struct net_device *dev, void *addr)
2546 struct sockaddr *sa = addr;
2547 struct myri10ge_priv *mgp = netdev_priv(dev);
2550 if (!is_valid_ether_addr(sa->sa_data))
2551 return -EADDRNOTAVAIL;
2553 status = myri10ge_update_mac_address(mgp, sa->sa_data);
2556 "myri10ge: %s: changing mac address failed with %d\n",
2561 /* change the dev structure */
2562 memcpy(dev->dev_addr, sa->sa_data, 6);
2566 static int myri10ge_change_mtu(struct net_device *dev, int new_mtu)
2568 struct myri10ge_priv *mgp = netdev_priv(dev);
2571 if ((new_mtu < 68) || (ETH_HLEN + new_mtu > MYRI10GE_MAX_ETHER_MTU)) {
2572 printk(KERN_ERR "myri10ge: %s: new mtu (%d) is not valid\n",
2573 dev->name, new_mtu);
2576 printk(KERN_INFO "%s: changing mtu from %d to %d\n",
2577 dev->name, dev->mtu, new_mtu);
2579 /* if we change the mtu on an active device, we must
2580 * reset the device so the firmware sees the change */
2581 myri10ge_close(dev);
2591 * Enable ECRC to align PCI-E Completion packets on an 8-byte boundary.
2592 * Only do it if the bridge is a root port since we don't want to disturb
2593 * any other device, except if forced with myri10ge_ecrc_enable > 1.
2596 static void myri10ge_enable_ecrc(struct myri10ge_priv *mgp)
2598 struct pci_dev *bridge = mgp->pdev->bus->self;
2599 struct device *dev = &mgp->pdev->dev;
2606 if (!myri10ge_ecrc_enable || !bridge)
2609 /* check that the bridge is a root port */
2610 cap = pci_find_capability(bridge, PCI_CAP_ID_EXP);
2611 pci_read_config_word(bridge, cap + PCI_CAP_FLAGS, &val);
2612 ext_type = (val & PCI_EXP_FLAGS_TYPE) >> 4;
2613 if (ext_type != PCI_EXP_TYPE_ROOT_PORT) {
2614 if (myri10ge_ecrc_enable > 1) {
2615 struct pci_dev *old_bridge = bridge;
2617 /* Walk the hierarchy up to the root port
2618 * where ECRC has to be enabled */
2620 bridge = bridge->bus->self;
2623 "Failed to find root port"
2624 " to force ECRC\n");
2628 pci_find_capability(bridge, PCI_CAP_ID_EXP);
2629 pci_read_config_word(bridge,
2630 cap + PCI_CAP_FLAGS, &val);
2631 ext_type = (val & PCI_EXP_FLAGS_TYPE) >> 4;
2632 } while (ext_type != PCI_EXP_TYPE_ROOT_PORT);
2635 "Forcing ECRC on non-root port %s"
2636 " (enabling on root port %s)\n",
2637 pci_name(old_bridge), pci_name(bridge));
2640 "Not enabling ECRC on non-root port %s\n",
2646 cap = pci_find_ext_capability(bridge, PCI_EXT_CAP_ID_ERR);
2650 ret = pci_read_config_dword(bridge, cap + PCI_ERR_CAP, &err_cap);
2652 dev_err(dev, "failed reading ext-conf-space of %s\n",
2654 dev_err(dev, "\t pci=nommconf in use? "
2655 "or buggy/incomplete/absent ACPI MCFG attr?\n");
2658 if (!(err_cap & PCI_ERR_CAP_ECRC_GENC))
2661 err_cap |= PCI_ERR_CAP_ECRC_GENE;
2662 pci_write_config_dword(bridge, cap + PCI_ERR_CAP, err_cap);
2663 dev_info(dev, "Enabled ECRC on upstream bridge %s\n", pci_name(bridge));
2667 * The Lanai Z8E PCI-E interface achieves higher Read-DMA throughput
2668 * when the PCI-E Completion packets are aligned on an 8-byte
2669 * boundary. Some PCI-E chip sets always align Completion packets; on
2670 * the ones that do not, the alignment can be enforced by enabling
2671 * ECRC generation (if supported).
2673 * When PCI-E Completion packets are not aligned, it is actually more
2674 * efficient to limit Read-DMA transactions to 2KB, rather than 4KB.
2676 * If the driver can neither enable ECRC nor verify that it has
2677 * already been enabled, then it must use a firmware image which works
2678 * around unaligned completion packets (myri10ge_ethp_z8e.dat), and it
2679 * should also ensure that it never gives the device a Read-DMA which is
2680 * larger than 2KB by setting the tx.boundary to 2KB. If ECRC is
2681 * enabled, then the driver should use the aligned (myri10ge_eth_z8e.dat)
2682 * firmware image, and set tx.boundary to 4KB.
2685 static void myri10ge_firmware_probe(struct myri10ge_priv *mgp)
2687 struct pci_dev *pdev = mgp->pdev;
2688 struct device *dev = &pdev->dev;
2691 mgp->tx.boundary = 4096;
2693 * Verify the max read request size was set to 4KB
2694 * before trying the test with 4KB.
2696 status = pcie_get_readrq(pdev);
2698 dev_err(dev, "Couldn't read max read req size: %d\n", status);
2701 if (status != 4096) {
2702 dev_warn(dev, "Max Read Request size != 4096 (%d)\n", status);
2703 mgp->tx.boundary = 2048;
2706 * load the optimized firmware (which assumes aligned PCIe
2707 * completions) in order to see if it works on this host.
2709 mgp->fw_name = myri10ge_fw_aligned;
2710 status = myri10ge_load_firmware(mgp);
2716 * Enable ECRC if possible
2718 myri10ge_enable_ecrc(mgp);
2721 * Run a DMA test which watches for unaligned completions and
2722 * aborts on the first one seen.
2725 status = myri10ge_dma_test(mgp, MXGEFW_CMD_UNALIGNED_TEST);
2727 return; /* keep the aligned firmware */
2729 if (status != -E2BIG)
2730 dev_warn(dev, "DMA test failed: %d\n", status);
2731 if (status == -ENOSYS)
2732 dev_warn(dev, "Falling back to ethp! "
2733 "Please install up to date fw\n");
2735 /* fall back to using the unaligned firmware */
2736 mgp->tx.boundary = 2048;
2737 mgp->fw_name = myri10ge_fw_unaligned;
2741 static void myri10ge_select_firmware(struct myri10ge_priv *mgp)
2743 if (myri10ge_force_firmware == 0) {
2744 int link_width, exp_cap;
2747 exp_cap = pci_find_capability(mgp->pdev, PCI_CAP_ID_EXP);
2748 pci_read_config_word(mgp->pdev, exp_cap + PCI_EXP_LNKSTA, &lnk);
2749 link_width = (lnk >> 4) & 0x3f;
2751 /* Check to see if Link is less than 8 or if the
2752 * upstream bridge is known to provide aligned
2754 if (link_width < 8) {
2755 dev_info(&mgp->pdev->dev, "PCIE x%d Link\n",
2757 mgp->tx.boundary = 4096;
2758 mgp->fw_name = myri10ge_fw_aligned;
2760 myri10ge_firmware_probe(mgp);
2763 if (myri10ge_force_firmware == 1) {
2764 dev_info(&mgp->pdev->dev,
2765 "Assuming aligned completions (forced)\n");
2766 mgp->tx.boundary = 4096;
2767 mgp->fw_name = myri10ge_fw_aligned;
2769 dev_info(&mgp->pdev->dev,
2770 "Assuming unaligned completions (forced)\n");
2771 mgp->tx.boundary = 2048;
2772 mgp->fw_name = myri10ge_fw_unaligned;
2775 if (myri10ge_fw_name != NULL) {
2776 dev_info(&mgp->pdev->dev, "overriding firmware to %s\n",
2778 mgp->fw_name = myri10ge_fw_name;
2783 static int myri10ge_suspend(struct pci_dev *pdev, pm_message_t state)
2785 struct myri10ge_priv *mgp;
2786 struct net_device *netdev;
2788 mgp = pci_get_drvdata(pdev);
2793 netif_device_detach(netdev);
2794 if (netif_running(netdev)) {
2795 printk(KERN_INFO "myri10ge: closing %s\n", netdev->name);
2797 myri10ge_close(netdev);
2800 myri10ge_dummy_rdma(mgp, 0);
2801 pci_save_state(pdev);
2802 pci_disable_device(pdev);
2804 return pci_set_power_state(pdev, pci_choose_state(pdev, state));
2807 static int myri10ge_resume(struct pci_dev *pdev)
2809 struct myri10ge_priv *mgp;
2810 struct net_device *netdev;
2814 mgp = pci_get_drvdata(pdev);
2818 pci_set_power_state(pdev, 0); /* zeros conf space as a side effect */
2819 msleep(5); /* give card time to respond */
2820 pci_read_config_word(mgp->pdev, PCI_VENDOR_ID, &vendor);
2821 if (vendor == 0xffff) {
2822 printk(KERN_ERR "myri10ge: %s: device disappeared!\n",
2827 status = pci_restore_state(pdev);
2831 status = pci_enable_device(pdev);
2833 dev_err(&pdev->dev, "failed to enable device\n");
2837 pci_set_master(pdev);
2839 myri10ge_reset(mgp);
2840 myri10ge_dummy_rdma(mgp, 1);
2842 /* Save configuration space to be restored if the
2843 * nic resets due to a parity error */
2844 pci_save_state(pdev);
2846 if (netif_running(netdev)) {
2848 status = myri10ge_open(netdev);
2851 goto abort_with_enabled;
2854 netif_device_attach(netdev);
2859 pci_disable_device(pdev);
2863 #endif /* CONFIG_PM */
2865 static u32 myri10ge_read_reboot(struct myri10ge_priv *mgp)
2867 struct pci_dev *pdev = mgp->pdev;
2868 int vs = mgp->vendor_specific_offset;
2871 /*enter read32 mode */
2872 pci_write_config_byte(pdev, vs + 0x10, 0x3);
2874 /*read REBOOT_STATUS (0xfffffff0) */
2875 pci_write_config_dword(pdev, vs + 0x18, 0xfffffff0);
2876 pci_read_config_dword(pdev, vs + 0x14, &reboot);
2881 * This watchdog is used to check whether the board has suffered
2882 * from a parity error and needs to be recovered.
2884 static void myri10ge_watchdog(struct work_struct *work)
2886 struct myri10ge_priv *mgp =
2887 container_of(work, struct myri10ge_priv, watchdog_work);
2892 mgp->watchdog_resets++;
2893 pci_read_config_word(mgp->pdev, PCI_COMMAND, &cmd);
2894 if ((cmd & PCI_COMMAND_MASTER) == 0) {
2895 /* Bus master DMA disabled? Check to see
2896 * if the card rebooted due to a parity error
2897 * For now, just report it */
2898 reboot = myri10ge_read_reboot(mgp);
2900 "myri10ge: %s: NIC rebooted (0x%x),%s resetting\n",
2901 mgp->dev->name, reboot,
2902 myri10ge_reset_recover ? " " : " not");
2903 if (myri10ge_reset_recover == 0)
2906 myri10ge_reset_recover--;
2909 * A rebooted nic will come back with config space as
2910 * it was after power was applied to PCIe bus.
2911 * Attempt to restore config space which was saved
2912 * when the driver was loaded, or the last time the
2913 * nic was resumed from power saving mode.
2915 pci_restore_state(mgp->pdev);
2917 /* save state again for accounting reasons */
2918 pci_save_state(mgp->pdev);
2921 /* if we get back -1's from our slot, perhaps somebody
2922 * powered off our card. Don't try to reset it in
2924 if (cmd == 0xffff) {
2925 pci_read_config_word(mgp->pdev, PCI_VENDOR_ID, &vendor);
2926 if (vendor == 0xffff) {
2928 "myri10ge: %s: device disappeared!\n",
2933 /* Perhaps it is a software error. Try to reset */
2935 printk(KERN_ERR "myri10ge: %s: device timeout, resetting\n",
2937 printk(KERN_INFO "myri10ge: %s: %d %d %d %d %d\n",
2938 mgp->dev->name, mgp->tx.req, mgp->tx.done,
2939 mgp->tx.pkt_start, mgp->tx.pkt_done,
2940 (int)ntohl(mgp->fw_stats->send_done_count));
2942 printk(KERN_INFO "myri10ge: %s: %d %d %d %d %d\n",
2943 mgp->dev->name, mgp->tx.req, mgp->tx.done,
2944 mgp->tx.pkt_start, mgp->tx.pkt_done,
2945 (int)ntohl(mgp->fw_stats->send_done_count));
2948 myri10ge_close(mgp->dev);
2949 status = myri10ge_load_firmware(mgp);
2951 printk(KERN_ERR "myri10ge: %s: failed to load firmware\n",
2954 myri10ge_open(mgp->dev);
2959 * We use our own timer routine rather than relying upon
2960 * netdev->tx_timeout because we have a very large hardware transmit
2961 * queue. Due to the large queue, the netdev->tx_timeout function
2962 * cannot detect a NIC with a parity error in a timely fashion if the
2963 * NIC is lightly loaded.
2965 static void myri10ge_watchdog_timer(unsigned long arg)
2967 struct myri10ge_priv *mgp;
2970 mgp = (struct myri10ge_priv *)arg;
2972 if (mgp->rx_small.watchdog_needed) {
2973 myri10ge_alloc_rx_pages(mgp, &mgp->rx_small,
2974 mgp->small_bytes + MXGEFW_PAD, 1);
2975 if (mgp->rx_small.fill_cnt - mgp->rx_small.cnt >=
2976 myri10ge_fill_thresh)
2977 mgp->rx_small.watchdog_needed = 0;
2979 if (mgp->rx_big.watchdog_needed) {
2980 myri10ge_alloc_rx_pages(mgp, &mgp->rx_big, mgp->big_bytes, 1);
2981 if (mgp->rx_big.fill_cnt - mgp->rx_big.cnt >=
2982 myri10ge_fill_thresh)
2983 mgp->rx_big.watchdog_needed = 0;
2985 rx_pause_cnt = ntohl(mgp->fw_stats->dropped_pause);
2987 if (mgp->tx.req != mgp->tx.done &&
2988 mgp->tx.done == mgp->watchdog_tx_done &&
2989 mgp->watchdog_tx_req != mgp->watchdog_tx_done) {
2990 /* nic seems like it might be stuck.. */
2991 if (rx_pause_cnt != mgp->watchdog_pause) {
2992 if (net_ratelimit())
2993 printk(KERN_WARNING "myri10ge %s:"
2994 "TX paused, check link partner\n",
2997 schedule_work(&mgp->watchdog_work);
3002 mod_timer(&mgp->watchdog_timer,
3003 jiffies + myri10ge_watchdog_timeout * HZ);
3004 mgp->watchdog_tx_done = mgp->tx.done;
3005 mgp->watchdog_tx_req = mgp->tx.req;
3006 mgp->watchdog_pause = rx_pause_cnt;
3009 static int myri10ge_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
3011 struct net_device *netdev;
3012 struct myri10ge_priv *mgp;
3013 struct device *dev = &pdev->dev;
3016 int status = -ENXIO;
3019 netdev = alloc_etherdev(sizeof(*mgp));
3020 if (netdev == NULL) {
3021 dev_err(dev, "Could not allocate ethernet device\n");
3025 SET_NETDEV_DEV(netdev, &pdev->dev);
3027 mgp = netdev_priv(netdev);
3029 netif_napi_add(netdev, &mgp->napi, myri10ge_poll, myri10ge_napi_weight);
3031 mgp->csum_flag = MXGEFW_FLAGS_CKSUM;
3032 mgp->pause = myri10ge_flow_control;
3033 mgp->intr_coal_delay = myri10ge_intr_coal_delay;
3034 mgp->msg_enable = netif_msg_init(myri10ge_debug, MYRI10GE_MSG_DEFAULT);
3035 init_waitqueue_head(&mgp->down_wq);
3037 if (pci_enable_device(pdev)) {
3038 dev_err(&pdev->dev, "pci_enable_device call failed\n");
3040 goto abort_with_netdev;
3043 /* Find the vendor-specific cap so we can check
3044 * the reboot register later on */
3045 mgp->vendor_specific_offset
3046 = pci_find_capability(pdev, PCI_CAP_ID_VNDR);
3048 /* Set our max read request to 4KB */
3049 status = pcie_set_readrq(pdev, 4096);
3051 dev_err(&pdev->dev, "Error %d writing PCI_EXP_DEVCTL\n",
3053 goto abort_with_netdev;
3056 pci_set_master(pdev);
3058 status = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
3062 "64-bit pci address mask was refused, "
3064 status = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
3067 dev_err(&pdev->dev, "Error %d setting DMA mask\n", status);
3068 goto abort_with_netdev;
3070 mgp->cmd = dma_alloc_coherent(&pdev->dev, sizeof(*mgp->cmd),
3071 &mgp->cmd_bus, GFP_KERNEL);
3072 if (mgp->cmd == NULL)
3073 goto abort_with_netdev;
3075 mgp->fw_stats = dma_alloc_coherent(&pdev->dev, sizeof(*mgp->fw_stats),
3076 &mgp->fw_stats_bus, GFP_KERNEL);
3077 if (mgp->fw_stats == NULL)
3078 goto abort_with_cmd;
3080 mgp->board_span = pci_resource_len(pdev, 0);
3081 mgp->iomem_base = pci_resource_start(pdev, 0);
3083 mgp->wc_enabled = 0;
3085 mgp->mtrr = mtrr_add(mgp->iomem_base, mgp->board_span,
3086 MTRR_TYPE_WRCOMB, 1);
3088 mgp->wc_enabled = 1;
3090 /* Hack. need to get rid of these magic numbers */
3092 2 * 1024 * 1024 - (2 * (48 * 1024) + (32 * 1024)) - 0x100;
3093 if (mgp->sram_size > mgp->board_span) {
3094 dev_err(&pdev->dev, "board span %ld bytes too small\n",
3098 mgp->sram = ioremap(mgp->iomem_base, mgp->board_span);
3099 if (mgp->sram == NULL) {
3100 dev_err(&pdev->dev, "ioremap failed for %ld bytes at 0x%lx\n",
3101 mgp->board_span, mgp->iomem_base);
3105 memcpy_fromio(mgp->eeprom_strings,
3106 mgp->sram + mgp->sram_size - MYRI10GE_EEPROM_STRINGS_SIZE,
3107 MYRI10GE_EEPROM_STRINGS_SIZE);
3108 memset(mgp->eeprom_strings + MYRI10GE_EEPROM_STRINGS_SIZE - 2, 0, 2);
3109 status = myri10ge_read_mac_addr(mgp);
3111 goto abort_with_ioremap;
3113 for (i = 0; i < ETH_ALEN; i++)
3114 netdev->dev_addr[i] = mgp->mac_addr[i];
3116 /* allocate rx done ring */
3117 bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
3118 mgp->rx_done.entry = dma_alloc_coherent(&pdev->dev, bytes,
3119 &mgp->rx_done.bus, GFP_KERNEL);
3120 if (mgp->rx_done.entry == NULL)
3121 goto abort_with_ioremap;
3122 memset(mgp->rx_done.entry, 0, bytes);
3124 myri10ge_select_firmware(mgp);
3126 status = myri10ge_load_firmware(mgp);
3128 dev_err(&pdev->dev, "failed to load firmware\n");
3129 goto abort_with_rx_done;
3132 status = myri10ge_reset(mgp);
3134 dev_err(&pdev->dev, "failed reset\n");
3135 goto abort_with_firmware;
3138 pci_set_drvdata(pdev, mgp);
3139 if ((myri10ge_initial_mtu + ETH_HLEN) > MYRI10GE_MAX_ETHER_MTU)
3140 myri10ge_initial_mtu = MYRI10GE_MAX_ETHER_MTU - ETH_HLEN;
3141 if ((myri10ge_initial_mtu + ETH_HLEN) < 68)
3142 myri10ge_initial_mtu = 68;
3143 netdev->mtu = myri10ge_initial_mtu;
3144 netdev->open = myri10ge_open;
3145 netdev->stop = myri10ge_close;
3146 netdev->hard_start_xmit = myri10ge_xmit;
3147 netdev->get_stats = myri10ge_get_stats;
3148 netdev->base_addr = mgp->iomem_base;
3149 netdev->change_mtu = myri10ge_change_mtu;
3150 netdev->set_multicast_list = myri10ge_set_multicast_list;
3151 netdev->set_mac_address = myri10ge_set_mac_address;
3152 netdev->features = mgp->features;
3154 netdev->features |= NETIF_F_HIGHDMA;
3156 /* make sure we can get an irq, and that MSI can be
3157 * setup (if available). Also ensure netdev->irq
3158 * is set to correct value if MSI is enabled */
3159 status = myri10ge_request_irq(mgp);
3161 goto abort_with_firmware;
3162 netdev->irq = pdev->irq;
3163 myri10ge_free_irq(mgp);
3165 /* Save configuration space to be restored if the
3166 * nic resets due to a parity error */
3167 pci_save_state(pdev);
3169 /* Setup the watchdog timer */
3170 setup_timer(&mgp->watchdog_timer, myri10ge_watchdog_timer,
3171 (unsigned long)mgp);
3173 SET_ETHTOOL_OPS(netdev, &myri10ge_ethtool_ops);
3174 INIT_WORK(&mgp->watchdog_work, myri10ge_watchdog);
3175 status = register_netdev(netdev);
3177 dev_err(&pdev->dev, "register_netdev failed: %d\n", status);
3178 goto abort_with_state;
3180 dev_info(dev, "%s IRQ %d, tx bndry %d, fw %s, WC %s\n",
3181 (mgp->msi_enabled ? "MSI" : "xPIC"),
3182 netdev->irq, mgp->tx.boundary, mgp->fw_name,
3183 (mgp->wc_enabled ? "Enabled" : "Disabled"));
3188 pci_restore_state(pdev);
3190 abort_with_firmware:
3191 myri10ge_dummy_rdma(mgp, 0);
3194 bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
3195 dma_free_coherent(&pdev->dev, bytes,
3196 mgp->rx_done.entry, mgp->rx_done.bus);
3204 mtrr_del(mgp->mtrr, mgp->iomem_base, mgp->board_span);
3206 dma_free_coherent(&pdev->dev, sizeof(*mgp->fw_stats),
3207 mgp->fw_stats, mgp->fw_stats_bus);
3210 dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
3211 mgp->cmd, mgp->cmd_bus);
3215 free_netdev(netdev);
3222 * Does what is necessary to shutdown one Myrinet device. Called
3223 * once for each Myrinet card by the kernel when a module is
3226 static void myri10ge_remove(struct pci_dev *pdev)
3228 struct myri10ge_priv *mgp;
3229 struct net_device *netdev;
3232 mgp = pci_get_drvdata(pdev);
3236 flush_scheduled_work();
3238 unregister_netdev(netdev);
3240 myri10ge_dummy_rdma(mgp, 0);
3242 /* avoid a memory leak */
3243 pci_restore_state(pdev);
3245 bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
3246 dma_free_coherent(&pdev->dev, bytes,
3247 mgp->rx_done.entry, mgp->rx_done.bus);
3253 mtrr_del(mgp->mtrr, mgp->iomem_base, mgp->board_span);
3255 dma_free_coherent(&pdev->dev, sizeof(*mgp->fw_stats),
3256 mgp->fw_stats, mgp->fw_stats_bus);
3258 dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
3259 mgp->cmd, mgp->cmd_bus);
3261 free_netdev(netdev);
3262 pci_set_drvdata(pdev, NULL);
3265 #define PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E 0x0008
3266 #define PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E_9 0x0009
3268 static struct pci_device_id myri10ge_pci_tbl[] = {
3269 {PCI_DEVICE(PCI_VENDOR_ID_MYRICOM, PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E)},
3271 (PCI_VENDOR_ID_MYRICOM, PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E_9)},
3275 static struct pci_driver myri10ge_driver = {
3277 .probe = myri10ge_probe,
3278 .remove = myri10ge_remove,
3279 .id_table = myri10ge_pci_tbl,
3281 .suspend = myri10ge_suspend,
3282 .resume = myri10ge_resume,
3286 static __init int myri10ge_init_module(void)
3288 printk(KERN_INFO "%s: Version %s\n", myri10ge_driver.name,
3289 MYRI10GE_VERSION_STR);
3290 return pci_register_driver(&myri10ge_driver);
3293 module_init(myri10ge_init_module);
3295 static __exit void myri10ge_cleanup_module(void)
3297 pci_unregister_driver(&myri10ge_driver);
3300 module_exit(myri10ge_cleanup_module);