1 /*************************************************************************
 
   2  * myri10ge.c: Myricom Myri-10G Ethernet driver.
 
   4  * Copyright (C) 2005, 2006 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 REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
  20  * 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 REGENTS OR CONTRIBUTORS BE LIABLE
 
  23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
  24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
  25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
  26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
  27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
  28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
  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>
 
  52 #include <linux/inet.h>
 
  54 #include <linux/ethtool.h>
 
  55 #include <linux/firmware.h>
 
  56 #include <linux/delay.h>
 
  57 #include <linux/version.h>
 
  58 #include <linux/timer.h>
 
  59 #include <linux/vmalloc.h>
 
  60 #include <linux/crc32.h>
 
  61 #include <linux/moduleparam.h>
 
  63 #include <net/checksum.h>
 
  64 #include <asm/byteorder.h>
 
  66 #include <asm/processor.h>
 
  71 #include "myri10ge_mcp.h"
 
  72 #include "myri10ge_mcp_gen_header.h"
 
  74 #define MYRI10GE_VERSION_STR "1.0.0"
 
  76 MODULE_DESCRIPTION("Myricom 10G driver (10GbE)");
 
  77 MODULE_AUTHOR("Maintainer: help@myri.com");
 
  78 MODULE_VERSION(MYRI10GE_VERSION_STR);
 
  79 MODULE_LICENSE("Dual BSD/GPL");
 
  81 #define MYRI10GE_MAX_ETHER_MTU 9014
 
  83 #define MYRI10GE_ETH_STOPPED 0
 
  84 #define MYRI10GE_ETH_STOPPING 1
 
  85 #define MYRI10GE_ETH_STARTING 2
 
  86 #define MYRI10GE_ETH_RUNNING 3
 
  87 #define MYRI10GE_ETH_OPEN_FAILED 4
 
  89 #define MYRI10GE_EEPROM_STRINGS_SIZE 256
 
  90 #define MYRI10GE_MAX_SEND_DESC_TSO ((65536 / 2048) * 2)
 
  92 #define MYRI10GE_NO_CONFIRM_DATA 0xffffffff
 
  93 #define MYRI10GE_NO_RESPONSE_RESULT 0xffffffff
 
  95 struct myri10ge_rx_buffer_state {
 
  97          DECLARE_PCI_UNMAP_ADDR(bus)
 
  98          DECLARE_PCI_UNMAP_LEN(len)
 
 101 struct myri10ge_tx_buffer_state {
 
 104          DECLARE_PCI_UNMAP_ADDR(bus)
 
 105          DECLARE_PCI_UNMAP_LEN(len)
 
 108 struct myri10ge_cmd {
 
 114 struct myri10ge_rx_buf {
 
 115         struct mcp_kreq_ether_recv __iomem *lanai;      /* lanai ptr for recv ring */
 
 116         u8 __iomem *wc_fifo;    /* w/c rx dma addr fifo address */
 
 117         struct mcp_kreq_ether_recv *shadow;     /* host shadow of recv ring */
 
 118         struct myri10ge_rx_buffer_state *info;
 
 121         int mask;               /* number of rx slots -1 */
 
 124 struct myri10ge_tx_buf {
 
 125         struct mcp_kreq_ether_send __iomem *lanai;      /* lanai ptr for sendq */
 
 126         u8 __iomem *wc_fifo;    /* w/c send fifo address */
 
 127         struct mcp_kreq_ether_send *req_list;   /* host shadow of sendq */
 
 129         struct myri10ge_tx_buffer_state *info;
 
 130         int mask;               /* number of transmit slots -1  */
 
 131         int boundary;           /* boundary transmits cannot cross */
 
 132         int req ____cacheline_aligned;  /* transmit slots submitted     */
 
 133         int pkt_start;          /* packets started */
 
 134         int done ____cacheline_aligned; /* transmit slots completed     */
 
 135         int pkt_done;           /* packets completed */
 
 138 struct myri10ge_rx_done {
 
 139         struct mcp_slot *entry;
 
 145 struct myri10ge_priv {
 
 146         int running;            /* running?             */
 
 147         int csum_flag;          /* rx_csums?            */
 
 148         struct myri10ge_tx_buf tx;      /* transmit ring        */
 
 149         struct myri10ge_rx_buf rx_small;
 
 150         struct myri10ge_rx_buf rx_big;
 
 151         struct myri10ge_rx_done rx_done;
 
 153         struct net_device *dev;
 
 154         struct net_device_stats stats;
 
 157         unsigned long board_span;
 
 158         unsigned long iomem_base;
 
 159         u32 __iomem *irq_claim;
 
 160         u32 __iomem *irq_deassert;
 
 161         char *mac_addr_string;
 
 162         struct mcp_cmd_response *cmd;
 
 164         struct mcp_irq_data *fw_stats;
 
 165         dma_addr_t fw_stats_bus;
 
 166         struct pci_dev *pdev;
 
 168         unsigned int link_state;
 
 169         unsigned int rdma_tags_available;
 
 171         u32 __iomem *intr_coal_delay_ptr;
 
 176         wait_queue_head_t down_wq;
 
 177         struct work_struct watchdog_work;
 
 178         struct timer_list watchdog_timer;
 
 179         int watchdog_tx_done;
 
 185         char eeprom_strings[MYRI10GE_EEPROM_STRINGS_SIZE];
 
 186         char fw_version[128];
 
 187         u8 mac_addr[6];         /* eeprom mac address */
 
 188         unsigned long serial_number;
 
 189         int vendor_specific_offset;
 
 190         int fw_multicast_support;
 
 200 static char *myri10ge_fw_unaligned = "myri10ge_ethp_z8e.dat";
 
 201 static char *myri10ge_fw_aligned = "myri10ge_eth_z8e.dat";
 
 203 static char *myri10ge_fw_name = NULL;
 
 204 module_param(myri10ge_fw_name, charp, S_IRUGO | S_IWUSR);
 
 205 MODULE_PARM_DESC(myri10ge_fw_name, "Firmware image name\n");
 
 207 static int myri10ge_ecrc_enable = 1;
 
 208 module_param(myri10ge_ecrc_enable, int, S_IRUGO);
 
 209 MODULE_PARM_DESC(myri10ge_ecrc_enable, "Enable Extended CRC on PCI-E\n");
 
 211 static int myri10ge_max_intr_slots = 1024;
 
 212 module_param(myri10ge_max_intr_slots, int, S_IRUGO);
 
 213 MODULE_PARM_DESC(myri10ge_max_intr_slots, "Interrupt queue slots\n");
 
 215 static int myri10ge_small_bytes = -1;   /* -1 == auto */
 
 216 module_param(myri10ge_small_bytes, int, S_IRUGO | S_IWUSR);
 
 217 MODULE_PARM_DESC(myri10ge_small_bytes, "Threshold of small packets\n");
 
 219 static int myri10ge_msi = 1;    /* enable msi by default */
 
 220 module_param(myri10ge_msi, int, S_IRUGO);
 
 221 MODULE_PARM_DESC(myri10ge_msi, "Enable Message Signalled Interrupts\n");
 
 223 static int myri10ge_intr_coal_delay = 25;
 
 224 module_param(myri10ge_intr_coal_delay, int, S_IRUGO);
 
 225 MODULE_PARM_DESC(myri10ge_intr_coal_delay, "Interrupt coalescing delay\n");
 
 227 static int myri10ge_flow_control = 1;
 
 228 module_param(myri10ge_flow_control, int, S_IRUGO);
 
 229 MODULE_PARM_DESC(myri10ge_flow_control, "Pause parameter\n");
 
 231 static int myri10ge_deassert_wait = 1;
 
 232 module_param(myri10ge_deassert_wait, int, S_IRUGO | S_IWUSR);
 
 233 MODULE_PARM_DESC(myri10ge_deassert_wait,
 
 234                  "Wait when deasserting legacy interrupts\n");
 
 236 static int myri10ge_force_firmware = 0;
 
 237 module_param(myri10ge_force_firmware, int, S_IRUGO);
 
 238 MODULE_PARM_DESC(myri10ge_force_firmware,
 
 239                  "Force firmware to assume aligned completions\n");
 
 241 static int myri10ge_skb_cross_4k = 0;
 
 242 module_param(myri10ge_skb_cross_4k, int, S_IRUGO | S_IWUSR);
 
 243 MODULE_PARM_DESC(myri10ge_skb_cross_4k,
 
 244                  "Can a small skb cross a 4KB boundary?\n");
 
 246 static int myri10ge_initial_mtu = MYRI10GE_MAX_ETHER_MTU - ETH_HLEN;
 
 247 module_param(myri10ge_initial_mtu, int, S_IRUGO);
 
 248 MODULE_PARM_DESC(myri10ge_initial_mtu, "Initial MTU\n");
 
 250 static int myri10ge_napi_weight = 64;
 
 251 module_param(myri10ge_napi_weight, int, S_IRUGO);
 
 252 MODULE_PARM_DESC(myri10ge_napi_weight, "Set NAPI weight\n");
 
 254 static int myri10ge_watchdog_timeout = 1;
 
 255 module_param(myri10ge_watchdog_timeout, int, S_IRUGO);
 
 256 MODULE_PARM_DESC(myri10ge_watchdog_timeout, "Set watchdog timeout\n");
 
 258 static int myri10ge_max_irq_loops = 1048576;
 
 259 module_param(myri10ge_max_irq_loops, int, S_IRUGO);
 
 260 MODULE_PARM_DESC(myri10ge_max_irq_loops,
 
 261                  "Set stuck legacy IRQ detection threshold\n");
 
 263 #define MYRI10GE_MSG_DEFAULT NETIF_MSG_LINK
 
 265 static int myri10ge_debug = -1; /* defaults above */
 
 266 module_param(myri10ge_debug, int, 0);
 
 267 MODULE_PARM_DESC(myri10ge_debug, "Debug level (0=none,...,16=all)");
 
 269 #define MYRI10GE_FW_OFFSET 1024*1024
 
 270 #define MYRI10GE_HIGHPART_TO_U32(X) \
 
 271 (sizeof (X) == 8) ? ((u32)((u64)(X) >> 32)) : (0)
 
 272 #define MYRI10GE_LOWPART_TO_U32(X) ((u32)(X))
 
 274 #define myri10ge_pio_copy(to,from,size) __iowrite64_copy(to,from,size/8)
 
 277 myri10ge_send_cmd(struct myri10ge_priv *mgp, u32 cmd,
 
 278                   struct myri10ge_cmd *data, int atomic)
 
 281         char buf_bytes[sizeof(*buf) + 8];
 
 282         struct mcp_cmd_response *response = mgp->cmd;
 
 283         char __iomem *cmd_addr = mgp->sram + MXGEFW_ETH_CMD;
 
 284         u32 dma_low, dma_high, result, value;
 
 287         /* ensure buf is aligned to 8 bytes */
 
 288         buf = (struct mcp_cmd *)ALIGN((unsigned long)buf_bytes, 8);
 
 290         buf->data0 = htonl(data->data0);
 
 291         buf->data1 = htonl(data->data1);
 
 292         buf->data2 = htonl(data->data2);
 
 293         buf->cmd = htonl(cmd);
 
 294         dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
 
 295         dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
 
 297         buf->response_addr.low = htonl(dma_low);
 
 298         buf->response_addr.high = htonl(dma_high);
 
 299         response->result = MYRI10GE_NO_RESPONSE_RESULT;
 
 301         myri10ge_pio_copy(cmd_addr, buf, sizeof(*buf));
 
 303         /* wait up to 15ms. Longest command is the DMA benchmark,
 
 304          * which is capped at 5ms, but runs from a timeout handler
 
 305          * that runs every 7.8ms. So a 15ms timeout leaves us with
 
 309                 /* if atomic is set, do not sleep,
 
 310                  * and try to get the completion quickly
 
 311                  * (1ms will be enough for those commands) */
 
 312                 for (sleep_total = 0;
 
 314                      && response->result == MYRI10GE_NO_RESPONSE_RESULT;
 
 318                 /* use msleep for most command */
 
 319                 for (sleep_total = 0;
 
 321                      && response->result == MYRI10GE_NO_RESPONSE_RESULT;
 
 326         result = ntohl(response->result);
 
 327         value = ntohl(response->data);
 
 328         if (result != MYRI10GE_NO_RESPONSE_RESULT) {
 
 332                 } else if (result == MXGEFW_CMD_UNKNOWN) {
 
 335                         dev_err(&mgp->pdev->dev,
 
 336                                 "command %d failed, result = %d\n",
 
 342         dev_err(&mgp->pdev->dev, "command %d timed out, result = %d\n",
 
 348  * The eeprom strings on the lanaiX have the format
 
 351  * PT:ddd mmm xx xx:xx:xx xx\0
 
 352  * PV:ddd mmm xx xx:xx:xx xx\0
 
 354 static int myri10ge_read_mac_addr(struct myri10ge_priv *mgp)
 
 359         ptr = mgp->eeprom_strings;
 
 360         limit = mgp->eeprom_strings + MYRI10GE_EEPROM_STRINGS_SIZE;
 
 362         while (*ptr != '\0' && ptr < limit) {
 
 363                 if (memcmp(ptr, "MAC=", 4) == 0) {
 
 365                         mgp->mac_addr_string = ptr;
 
 366                         for (i = 0; i < 6; i++) {
 
 367                                 if ((ptr + 2) > limit)
 
 370                                     simple_strtoul(ptr, &ptr, 16);
 
 374                 if (memcmp((const void *)ptr, "SN=", 3) == 0) {
 
 376                         mgp->serial_number = simple_strtoul(ptr, &ptr, 10);
 
 378                 while (ptr < limit && *ptr++) ;
 
 384         dev_err(&mgp->pdev->dev, "failed to parse eeprom_strings\n");
 
 389  * Enable or disable periodic RDMAs from the host to make certain
 
 390  * chipsets resend dropped PCIe messages
 
 393 static void myri10ge_dummy_rdma(struct myri10ge_priv *mgp, int enable)
 
 395         char __iomem *submit;
 
 397         u32 dma_low, dma_high;
 
 400         /* clear confirmation addr */
 
 404         /* send a rdma command to the PCIe engine, and wait for the
 
 405          * response in the confirmation address.  The firmware should
 
 406          * write a -1 there to indicate it is alive and well
 
 408         dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
 
 409         dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
 
 411         buf[0] = htonl(dma_high);       /* confirm addr MSW */
 
 412         buf[1] = htonl(dma_low);        /* confirm addr LSW */
 
 413         buf[2] = htonl(MYRI10GE_NO_CONFIRM_DATA);       /* confirm data */
 
 414         buf[3] = htonl(dma_high);       /* dummy addr MSW */
 
 415         buf[4] = htonl(dma_low);        /* dummy addr LSW */
 
 416         buf[5] = htonl(enable); /* enable? */
 
 418         submit = mgp->sram + MXGEFW_BOOT_DUMMY_RDMA;
 
 420         myri10ge_pio_copy(submit, &buf, sizeof(buf));
 
 421         for (i = 0; mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA && i < 20; i++)
 
 423         if (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA)
 
 424                 dev_err(&mgp->pdev->dev, "dummy rdma %s failed\n",
 
 425                         (enable ? "enable" : "disable"));
 
 429 myri10ge_validate_firmware(struct myri10ge_priv *mgp,
 
 430                            struct mcp_gen_header *hdr)
 
 432         struct device *dev = &mgp->pdev->dev;
 
 435         /* check firmware type */
 
 436         if (ntohl(hdr->mcp_type) != MCP_TYPE_ETH) {
 
 437                 dev_err(dev, "Bad firmware type: 0x%x\n", ntohl(hdr->mcp_type));
 
 441         /* save firmware version for ethtool */
 
 442         strncpy(mgp->fw_version, hdr->version, sizeof(mgp->fw_version));
 
 444         sscanf(mgp->fw_version, "%d.%d", &major, &minor);
 
 446         if (!(major == MXGEFW_VERSION_MAJOR && minor == MXGEFW_VERSION_MINOR)) {
 
 447                 dev_err(dev, "Found firmware version %s\n", mgp->fw_version);
 
 448                 dev_err(dev, "Driver needs %d.%d\n", MXGEFW_VERSION_MAJOR,
 
 449                         MXGEFW_VERSION_MINOR);
 
 455 static int myri10ge_load_hotplug_firmware(struct myri10ge_priv *mgp, u32 * size)
 
 457         unsigned crc, reread_crc;
 
 458         const struct firmware *fw;
 
 459         struct device *dev = &mgp->pdev->dev;
 
 460         struct mcp_gen_header *hdr;
 
 465         if ((status = request_firmware(&fw, mgp->fw_name, dev)) < 0) {
 
 466                 dev_err(dev, "Unable to load %s firmware image via hotplug\n",
 
 469                 goto abort_with_nothing;
 
 474         if (fw->size >= mgp->sram_size - MYRI10GE_FW_OFFSET ||
 
 475             fw->size < MCP_HEADER_PTR_OFFSET + 4) {
 
 476                 dev_err(dev, "Firmware size invalid:%d\n", (int)fw->size);
 
 482         hdr_offset = ntohl(*(u32 *) (fw->data + MCP_HEADER_PTR_OFFSET));
 
 483         if ((hdr_offset & 3) || hdr_offset + sizeof(*hdr) > fw->size) {
 
 484                 dev_err(dev, "Bad firmware file\n");
 
 488         hdr = (void *)(fw->data + hdr_offset);
 
 490         status = myri10ge_validate_firmware(mgp, hdr);
 
 494         crc = crc32(~0, fw->data, fw->size);
 
 495         for (i = 0; i < fw->size; i += 256) {
 
 496                 myri10ge_pio_copy(mgp->sram + MYRI10GE_FW_OFFSET + i,
 
 498                                   min(256U, (unsigned)(fw->size - i)));
 
 502         /* corruption checking is good for parity recovery and buggy chipset */
 
 503         memcpy_fromio(fw->data, mgp->sram + MYRI10GE_FW_OFFSET, fw->size);
 
 504         reread_crc = crc32(~0, fw->data, fw->size);
 
 505         if (crc != reread_crc) {
 
 506                 dev_err(dev, "CRC failed(fw-len=%u), got 0x%x (expect 0x%x)\n",
 
 507                         (unsigned)fw->size, reread_crc, crc);
 
 511         *size = (u32) fw->size;
 
 514         release_firmware(fw);
 
 520 static int myri10ge_adopt_running_firmware(struct myri10ge_priv *mgp)
 
 522         struct mcp_gen_header *hdr;
 
 523         struct device *dev = &mgp->pdev->dev;
 
 524         const size_t bytes = sizeof(struct mcp_gen_header);
 
 528         /* find running firmware header */
 
 529         hdr_offset = ntohl(__raw_readl(mgp->sram + MCP_HEADER_PTR_OFFSET));
 
 531         if ((hdr_offset & 3) || hdr_offset + sizeof(*hdr) > mgp->sram_size) {
 
 532                 dev_err(dev, "Running firmware has bad header offset (%d)\n",
 
 537         /* copy header of running firmware from SRAM to host memory to
 
 538          * validate firmware */
 
 539         hdr = kmalloc(bytes, GFP_KERNEL);
 
 541                 dev_err(dev, "could not malloc firmware hdr\n");
 
 544         memcpy_fromio(hdr, mgp->sram + hdr_offset, bytes);
 
 545         status = myri10ge_validate_firmware(mgp, hdr);
 
 550 static int myri10ge_load_firmware(struct myri10ge_priv *mgp)
 
 552         char __iomem *submit;
 
 554         u32 dma_low, dma_high, size;
 
 558         status = myri10ge_load_hotplug_firmware(mgp, &size);
 
 560                 dev_warn(&mgp->pdev->dev, "hotplug firmware loading failed\n");
 
 562                 /* Do not attempt to adopt firmware if there
 
 567                 status = myri10ge_adopt_running_firmware(mgp);
 
 569                         dev_err(&mgp->pdev->dev,
 
 570                                 "failed to adopt running firmware\n");
 
 573                 dev_info(&mgp->pdev->dev,
 
 574                          "Successfully adopted running firmware\n");
 
 575                 if (mgp->tx.boundary == 4096) {
 
 576                         dev_warn(&mgp->pdev->dev,
 
 577                                  "Using firmware currently running on NIC"
 
 579                         dev_warn(&mgp->pdev->dev,
 
 580                                  "performance consider loading optimized "
 
 582                         dev_warn(&mgp->pdev->dev, "via hotplug\n");
 
 585                 mgp->fw_name = "adopted";
 
 586                 mgp->tx.boundary = 2048;
 
 590         /* clear confirmation addr */
 
 594         /* send a reload command to the bootstrap MCP, and wait for the
 
 595          *  response in the confirmation address.  The firmware should
 
 596          * write a -1 there to indicate it is alive and well
 
 598         dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
 
 599         dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
 
 601         buf[0] = htonl(dma_high);       /* confirm addr MSW */
 
 602         buf[1] = htonl(dma_low);        /* confirm addr LSW */
 
 603         buf[2] = htonl(MYRI10GE_NO_CONFIRM_DATA);       /* confirm data */
 
 605         /* FIX: All newest firmware should un-protect the bottom of
 
 606          * the sram before handoff. However, the very first interfaces
 
 607          * do not. Therefore the handoff copy must skip the first 8 bytes
 
 609         buf[3] = htonl(MYRI10GE_FW_OFFSET + 8); /* where the code starts */
 
 610         buf[4] = htonl(size - 8);       /* length of code */
 
 611         buf[5] = htonl(8);      /* where to copy to */
 
 612         buf[6] = htonl(0);      /* where to jump to */
 
 614         submit = mgp->sram + MXGEFW_BOOT_HANDOFF;
 
 616         myri10ge_pio_copy(submit, &buf, sizeof(buf));
 
 621         while (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA && i < 20) {
 
 625         if (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA) {
 
 626                 dev_err(&mgp->pdev->dev, "handoff failed\n");
 
 629         dev_info(&mgp->pdev->dev, "handoff confirmed\n");
 
 630         myri10ge_dummy_rdma(mgp, 1);
 
 635 static int myri10ge_update_mac_address(struct myri10ge_priv *mgp, u8 * addr)
 
 637         struct myri10ge_cmd cmd;
 
 640         cmd.data0 = ((addr[0] << 24) | (addr[1] << 16)
 
 641                      | (addr[2] << 8) | addr[3]);
 
 643         cmd.data1 = ((addr[4] << 8) | (addr[5]));
 
 645         status = myri10ge_send_cmd(mgp, MXGEFW_SET_MAC_ADDRESS, &cmd, 0);
 
 649 static int myri10ge_change_pause(struct myri10ge_priv *mgp, int pause)
 
 651         struct myri10ge_cmd cmd;
 
 654         ctl = pause ? MXGEFW_ENABLE_FLOW_CONTROL : MXGEFW_DISABLE_FLOW_CONTROL;
 
 655         status = myri10ge_send_cmd(mgp, ctl, &cmd, 0);
 
 659                        "myri10ge: %s: Failed to set flow control mode\n",
 
 668 myri10ge_change_promisc(struct myri10ge_priv *mgp, int promisc, int atomic)
 
 670         struct myri10ge_cmd cmd;
 
 673         ctl = promisc ? MXGEFW_ENABLE_PROMISC : MXGEFW_DISABLE_PROMISC;
 
 674         status = myri10ge_send_cmd(mgp, ctl, &cmd, atomic);
 
 676                 printk(KERN_ERR "myri10ge: %s: Failed to set promisc mode\n",
 
 680 static int myri10ge_reset(struct myri10ge_priv *mgp)
 
 682         struct myri10ge_cmd cmd;
 
 687         /* try to send a reset command to the card to see if it
 
 689         memset(&cmd, 0, sizeof(cmd));
 
 690         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_RESET, &cmd, 0);
 
 692                 dev_err(&mgp->pdev->dev, "failed reset\n");
 
 696         /* Now exchange information about interrupts  */
 
 698         bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
 
 699         memset(mgp->rx_done.entry, 0, bytes);
 
 700         cmd.data0 = (u32) bytes;
 
 701         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_SIZE, &cmd, 0);
 
 702         cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->rx_done.bus);
 
 703         cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->rx_done.bus);
 
 704         status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_DMA, &cmd, 0);
 
 707             myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_IRQ_ACK_OFFSET, &cmd, 0);
 
 708         mgp->irq_claim = (__iomem u32 *) (mgp->sram + cmd.data0);
 
 709         if (!mgp->msi_enabled) {
 
 710                 status |= myri10ge_send_cmd
 
 711                     (mgp, MXGEFW_CMD_GET_IRQ_DEASSERT_OFFSET, &cmd, 0);
 
 712                 mgp->irq_deassert = (__iomem u32 *) (mgp->sram + cmd.data0);
 
 715         status |= myri10ge_send_cmd
 
 716             (mgp, MXGEFW_CMD_GET_INTR_COAL_DELAY_OFFSET, &cmd, 0);
 
 717         mgp->intr_coal_delay_ptr = (__iomem u32 *) (mgp->sram + cmd.data0);
 
 719                 dev_err(&mgp->pdev->dev, "failed set interrupt parameters\n");
 
 722         __raw_writel(htonl(mgp->intr_coal_delay), mgp->intr_coal_delay_ptr);
 
 724         /* Run a small DMA test.
 
 725          * The magic multipliers to the length tell the firmware
 
 726          * to do DMA read, write, or read+write tests.  The
 
 727          * results are returned in cmd.data0.  The upper 16
 
 728          * bits or the return is the number of transfers completed.
 
 729          * The lower 16 bits is the time in 0.5us ticks that the
 
 730          * transfers took to complete.
 
 733         len = mgp->tx.boundary;
 
 735         cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->rx_done.bus);
 
 736         cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->rx_done.bus);
 
 737         cmd.data2 = len * 0x10000;
 
 738         status = myri10ge_send_cmd(mgp, MXGEFW_DMA_TEST, &cmd, 0);
 
 740                 mgp->read_dma = ((cmd.data0 >> 16) * len * 2) /
 
 741                     (cmd.data0 & 0xffff);
 
 743                 dev_warn(&mgp->pdev->dev, "DMA read benchmark failed: %d\n",
 
 745         cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->rx_done.bus);
 
 746         cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->rx_done.bus);
 
 747         cmd.data2 = len * 0x1;
 
 748         status = myri10ge_send_cmd(mgp, MXGEFW_DMA_TEST, &cmd, 0);
 
 750                 mgp->write_dma = ((cmd.data0 >> 16) * len * 2) /
 
 751                     (cmd.data0 & 0xffff);
 
 753                 dev_warn(&mgp->pdev->dev, "DMA write benchmark failed: %d\n",
 
 756         cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->rx_done.bus);
 
 757         cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->rx_done.bus);
 
 758         cmd.data2 = len * 0x10001;
 
 759         status = myri10ge_send_cmd(mgp, MXGEFW_DMA_TEST, &cmd, 0);
 
 761                 mgp->read_write_dma = ((cmd.data0 >> 16) * len * 2 * 2) /
 
 762                     (cmd.data0 & 0xffff);
 
 764                 dev_warn(&mgp->pdev->dev,
 
 765                          "DMA read/write benchmark failed: %d\n", status);
 
 767         memset(mgp->rx_done.entry, 0, bytes);
 
 769         /* reset mcp/driver shared state back to 0 */
 
 772         mgp->tx.pkt_start = 0;
 
 773         mgp->tx.pkt_done = 0;
 
 775         mgp->rx_small.cnt = 0;
 
 776         mgp->rx_done.idx = 0;
 
 777         mgp->rx_done.cnt = 0;
 
 778         mgp->link_changes = 0;
 
 779         status = myri10ge_update_mac_address(mgp, mgp->dev->dev_addr);
 
 780         myri10ge_change_promisc(mgp, 0, 0);
 
 781         myri10ge_change_pause(mgp, mgp->pause);
 
 786 myri10ge_submit_8rx(struct mcp_kreq_ether_recv __iomem * dst,
 
 787                     struct mcp_kreq_ether_recv *src)
 
 792         src->addr_low = DMA_32BIT_MASK;
 
 793         myri10ge_pio_copy(dst, src, 8 * sizeof(*src));
 
 796         __raw_writel(low, &dst->addr_low);
 
 801  * Set of routines to get a new receive buffer.  Any buffer which
 
 802  * crosses a 4KB boundary must start on a 4KB boundary due to PCIe
 
 803  * wdma restrictions. We also try to align any smaller allocation to
 
 804  * at least a 16 byte boundary for efficiency.  We assume the linux
 
 805  * memory allocator works by powers of 2, and will not return memory
 
 806  * smaller than 2KB which crosses a 4KB boundary.  If it does, we fall
 
 807  * back to allocating 2x as much space as required.
 
 809  * We intend to replace large (>4KB) skb allocations by using
 
 810  * pages directly and building a fraglist in the near future.
 
 813 static inline struct sk_buff *myri10ge_alloc_big(struct net_device *dev,
 
 817         unsigned long data, roundup;
 
 819         skb = netdev_alloc_skb(dev, bytes + 4096 + MXGEFW_PAD);
 
 823         /* Correct skb->truesize so that socket buffer
 
 824          * accounting is not confused the rounding we must
 
 825          * do to satisfy alignment constraints.
 
 827         skb->truesize -= 4096;
 
 829         data = (unsigned long)(skb->data);
 
 830         roundup = (-data) & (4095);
 
 831         skb_reserve(skb, roundup);
 
 835 /* Allocate 2x as much space as required and use whichever portion
 
 836  * does not cross a 4KB boundary */
 
 837 static inline struct sk_buff *myri10ge_alloc_small_safe(struct net_device *dev,
 
 841         unsigned long data, boundary;
 
 843         skb = netdev_alloc_skb(dev, 2 * (bytes + MXGEFW_PAD) - 1);
 
 844         if (unlikely(skb == NULL))
 
 847         /* Correct skb->truesize so that socket buffer
 
 848          * accounting is not confused the rounding we must
 
 849          * do to satisfy alignment constraints.
 
 851         skb->truesize -= bytes + MXGEFW_PAD;
 
 853         data = (unsigned long)(skb->data);
 
 854         boundary = (data + 4095UL) & ~4095UL;
 
 855         if ((boundary - data) >= (bytes + MXGEFW_PAD))
 
 858         skb_reserve(skb, boundary - data);
 
 862 /* Allocate just enough space, and verify that the allocated
 
 863  * space does not cross a 4KB boundary */
 
 864 static inline struct sk_buff *myri10ge_alloc_small(struct net_device *dev,
 
 868         unsigned long roundup, data, end;
 
 870         skb = netdev_alloc_skb(dev, bytes + 16 + MXGEFW_PAD);
 
 871         if (unlikely(skb == NULL))
 
 874         /* Round allocated buffer to 16 byte boundary */
 
 875         data = (unsigned long)(skb->data);
 
 876         roundup = (-data) & 15UL;
 
 877         skb_reserve(skb, roundup);
 
 878         /* Verify that the data buffer does not cross a page boundary */
 
 879         data = (unsigned long)(skb->data);
 
 880         end = data + bytes + MXGEFW_PAD - 1;
 
 881         if (unlikely(((end >> 12) != (data >> 12)) && (data & 4095UL))) {
 
 883                        "myri10ge_alloc_small: small skb crossed 4KB boundary\n");
 
 884                 myri10ge_skb_cross_4k = 1;
 
 885                 dev_kfree_skb_any(skb);
 
 886                 skb = myri10ge_alloc_small_safe(dev, bytes);
 
 892 myri10ge_getbuf(struct myri10ge_rx_buf *rx, struct myri10ge_priv *mgp,
 
 895         struct net_device *dev = mgp->dev;
 
 896         struct pci_dev *pdev = mgp->pdev;
 
 901         bytes += VLAN_HLEN;     /* account for 802.1q vlan tag */
 
 903         if ((bytes + MXGEFW_PAD) > (4096 - 16) /* linux overhead */ )
 
 904                 skb = myri10ge_alloc_big(dev, bytes);
 
 905         else if (myri10ge_skb_cross_4k)
 
 906                 skb = myri10ge_alloc_small_safe(dev, bytes);
 
 908                 skb = myri10ge_alloc_small(dev, bytes);
 
 910         if (unlikely(skb == NULL)) {
 
 916         /* set len so that it only covers the area we
 
 917          * need mapped for DMA */
 
 918         len = bytes + MXGEFW_PAD;
 
 920         bus = pci_map_single(pdev, skb->data, len, PCI_DMA_FROMDEVICE);
 
 921         rx->info[idx].skb = skb;
 
 922         pci_unmap_addr_set(&rx->info[idx], bus, bus);
 
 923         pci_unmap_len_set(&rx->info[idx], len, len);
 
 924         rx->shadow[idx].addr_low = htonl(MYRI10GE_LOWPART_TO_U32(bus));
 
 925         rx->shadow[idx].addr_high = htonl(MYRI10GE_HIGHPART_TO_U32(bus));
 
 928         /* copy 8 descriptors (64-bytes) to the mcp at a time */
 
 929         if ((idx & 7) == 7) {
 
 930                 if (rx->wc_fifo == NULL)
 
 931                         myri10ge_submit_8rx(&rx->lanai[idx - 7],
 
 932                                             &rx->shadow[idx - 7]);
 
 935                         myri10ge_pio_copy(rx->wc_fifo,
 
 936                                           &rx->shadow[idx - 7], 64);
 
 942 static inline void myri10ge_vlan_ip_csum(struct sk_buff *skb, u16 hw_csum)
 
 944         struct vlan_hdr *vh = (struct vlan_hdr *)(skb->data);
 
 946         if ((skb->protocol == ntohs(ETH_P_8021Q)) &&
 
 947             (vh->h_vlan_encapsulated_proto == htons(ETH_P_IP) ||
 
 948              vh->h_vlan_encapsulated_proto == htons(ETH_P_IPV6))) {
 
 950                 skb->ip_summed = CHECKSUM_COMPLETE;
 
 954 static inline unsigned long
 
 955 myri10ge_rx_done(struct myri10ge_priv *mgp, struct myri10ge_rx_buf *rx,
 
 956                  int bytes, int len, int csum)
 
 962         idx = rx->cnt & rx->mask;
 
 965         /* save a pointer to the received skb */
 
 966         skb = rx->info[idx].skb;
 
 967         bus = pci_unmap_addr(&rx->info[idx], bus);
 
 968         unmap_len = pci_unmap_len(&rx->info[idx], len);
 
 970         /* try to replace the received skb */
 
 971         if (myri10ge_getbuf(rx, mgp, bytes, idx)) {
 
 972                 /* drop the frame -- the old skbuf is re-cycled */
 
 973                 mgp->stats.rx_dropped += 1;
 
 977         /* unmap the recvd skb */
 
 978         pci_unmap_single(mgp->pdev, bus, unmap_len, PCI_DMA_FROMDEVICE);
 
 980         /* mcp implicitly skips 1st bytes so that packet is properly
 
 982         skb_reserve(skb, MXGEFW_PAD);
 
 984         /* set the length of the frame */
 
 987         skb->protocol = eth_type_trans(skb, mgp->dev);
 
 988         if (mgp->csum_flag) {
 
 989                 if ((skb->protocol == ntohs(ETH_P_IP)) ||
 
 990                     (skb->protocol == ntohs(ETH_P_IPV6))) {
 
 991                         skb->csum = ntohs((u16) csum);
 
 992                         skb->ip_summed = CHECKSUM_COMPLETE;
 
 994                         myri10ge_vlan_ip_csum(skb, ntohs((u16) csum));
 
 997         netif_receive_skb(skb);
 
 998         mgp->dev->last_rx = jiffies;
 
1002 static inline void myri10ge_tx_done(struct myri10ge_priv *mgp, int mcp_index)
 
1004         struct pci_dev *pdev = mgp->pdev;
 
1005         struct myri10ge_tx_buf *tx = &mgp->tx;
 
1006         struct sk_buff *skb;
 
1010         while (tx->pkt_done != mcp_index) {
 
1011                 idx = tx->done & tx->mask;
 
1012                 skb = tx->info[idx].skb;
 
1015                 tx->info[idx].skb = NULL;
 
1016                 if (tx->info[idx].last) {
 
1018                         tx->info[idx].last = 0;
 
1021                 len = pci_unmap_len(&tx->info[idx], len);
 
1022                 pci_unmap_len_set(&tx->info[idx], len, 0);
 
1024                         mgp->stats.tx_bytes += skb->len;
 
1025                         mgp->stats.tx_packets++;
 
1026                         dev_kfree_skb_irq(skb);
 
1028                                 pci_unmap_single(pdev,
 
1029                                                  pci_unmap_addr(&tx->info[idx],
 
1034                                 pci_unmap_page(pdev,
 
1035                                                pci_unmap_addr(&tx->info[idx],
 
1040                 /* limit potential for livelock by only handling
 
1041                  * 2 full tx rings per call */
 
1042                 if (unlikely(++limit > 2 * tx->mask))
 
1045         /* start the queue if we've stopped it */
 
1046         if (netif_queue_stopped(mgp->dev)
 
1047             && tx->req - tx->done < (tx->mask >> 1)) {
 
1049                 netif_wake_queue(mgp->dev);
 
1053 static inline void myri10ge_clean_rx_done(struct myri10ge_priv *mgp, int *limit)
 
1055         struct myri10ge_rx_done *rx_done = &mgp->rx_done;
 
1056         unsigned long rx_bytes = 0;
 
1057         unsigned long rx_packets = 0;
 
1058         unsigned long rx_ok;
 
1060         int idx = rx_done->idx;
 
1061         int cnt = rx_done->cnt;
 
1065         while (rx_done->entry[idx].length != 0 && *limit != 0) {
 
1066                 length = ntohs(rx_done->entry[idx].length);
 
1067                 rx_done->entry[idx].length = 0;
 
1068                 checksum = ntohs(rx_done->entry[idx].checksum);
 
1069                 if (length <= mgp->small_bytes)
 
1070                         rx_ok = myri10ge_rx_done(mgp, &mgp->rx_small,
 
1074                         rx_ok = myri10ge_rx_done(mgp, &mgp->rx_big,
 
1075                                                  mgp->dev->mtu + ETH_HLEN,
 
1077                 rx_packets += rx_ok;
 
1078                 rx_bytes += rx_ok * (unsigned long)length;
 
1080                 idx = cnt & (myri10ge_max_intr_slots - 1);
 
1082                 /* limit potential for livelock by only handling a
 
1083                  * limited number of frames. */
 
1088         mgp->stats.rx_packets += rx_packets;
 
1089         mgp->stats.rx_bytes += rx_bytes;
 
1092 static inline void myri10ge_check_statblock(struct myri10ge_priv *mgp)
 
1094         struct mcp_irq_data *stats = mgp->fw_stats;
 
1096         if (unlikely(stats->stats_updated)) {
 
1097                 if (mgp->link_state != stats->link_up) {
 
1098                         mgp->link_state = stats->link_up;
 
1099                         if (mgp->link_state) {
 
1100                                 if (netif_msg_link(mgp))
 
1102                                                "myri10ge: %s: link up\n",
 
1104                                 netif_carrier_on(mgp->dev);
 
1105                                 mgp->link_changes++;
 
1107                                 if (netif_msg_link(mgp))
 
1109                                                "myri10ge: %s: link down\n",
 
1111                                 netif_carrier_off(mgp->dev);
 
1112                                 mgp->link_changes++;
 
1115                 if (mgp->rdma_tags_available !=
 
1116                     ntohl(mgp->fw_stats->rdma_tags_available)) {
 
1117                         mgp->rdma_tags_available =
 
1118                             ntohl(mgp->fw_stats->rdma_tags_available);
 
1119                         printk(KERN_WARNING "myri10ge: %s: RDMA timed out! "
 
1120                                "%d tags left\n", mgp->dev->name,
 
1121                                mgp->rdma_tags_available);
 
1123                 mgp->down_cnt += stats->link_down;
 
1124                 if (stats->link_down)
 
1125                         wake_up(&mgp->down_wq);
 
1129 static int myri10ge_poll(struct net_device *netdev, int *budget)
 
1131         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1132         struct myri10ge_rx_done *rx_done = &mgp->rx_done;
 
1133         int limit, orig_limit, work_done;
 
1135         /* process as many rx events as NAPI will allow */
 
1136         limit = min(*budget, netdev->quota);
 
1138         myri10ge_clean_rx_done(mgp, &limit);
 
1139         work_done = orig_limit - limit;
 
1140         *budget -= work_done;
 
1141         netdev->quota -= work_done;
 
1143         if (rx_done->entry[rx_done->idx].length == 0 || !netif_running(netdev)) {
 
1144                 netif_rx_complete(netdev);
 
1145                 __raw_writel(htonl(3), mgp->irq_claim);
 
1151 static irqreturn_t myri10ge_intr(int irq, void *arg)
 
1153         struct myri10ge_priv *mgp = arg;
 
1154         struct mcp_irq_data *stats = mgp->fw_stats;
 
1155         struct myri10ge_tx_buf *tx = &mgp->tx;
 
1156         u32 send_done_count;
 
1159         /* make sure it is our IRQ, and that the DMA has finished */
 
1160         if (unlikely(!stats->valid))
 
1163         /* low bit indicates receives are present, so schedule
 
1164          * napi poll handler */
 
1165         if (stats->valid & 1)
 
1166                 netif_rx_schedule(mgp->dev);
 
1168         if (!mgp->msi_enabled) {
 
1169                 __raw_writel(0, mgp->irq_deassert);
 
1170                 if (!myri10ge_deassert_wait)
 
1176         /* Wait for IRQ line to go low, if using INTx */
 
1180                 /* check for transmit completes and receives */
 
1181                 send_done_count = ntohl(stats->send_done_count);
 
1182                 if (send_done_count != tx->pkt_done)
 
1183                         myri10ge_tx_done(mgp, (int)send_done_count);
 
1184                 if (unlikely(i > myri10ge_max_irq_loops)) {
 
1185                         printk(KERN_WARNING "myri10ge: %s: irq stuck?\n",
 
1188                         schedule_work(&mgp->watchdog_work);
 
1190                 if (likely(stats->valid == 0))
 
1196         myri10ge_check_statblock(mgp);
 
1198         __raw_writel(htonl(3), mgp->irq_claim + 1);
 
1199         return (IRQ_HANDLED);
 
1203 myri10ge_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
 
1205         cmd->autoneg = AUTONEG_DISABLE;
 
1206         cmd->speed = SPEED_10000;
 
1207         cmd->duplex = DUPLEX_FULL;
 
1212 myri10ge_get_drvinfo(struct net_device *netdev, struct ethtool_drvinfo *info)
 
1214         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1216         strlcpy(info->driver, "myri10ge", sizeof(info->driver));
 
1217         strlcpy(info->version, MYRI10GE_VERSION_STR, sizeof(info->version));
 
1218         strlcpy(info->fw_version, mgp->fw_version, sizeof(info->fw_version));
 
1219         strlcpy(info->bus_info, pci_name(mgp->pdev), sizeof(info->bus_info));
 
1223 myri10ge_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *coal)
 
1225         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1226         coal->rx_coalesce_usecs = mgp->intr_coal_delay;
 
1231 myri10ge_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *coal)
 
1233         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1235         mgp->intr_coal_delay = coal->rx_coalesce_usecs;
 
1236         __raw_writel(htonl(mgp->intr_coal_delay), mgp->intr_coal_delay_ptr);
 
1241 myri10ge_get_pauseparam(struct net_device *netdev,
 
1242                         struct ethtool_pauseparam *pause)
 
1244         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1247         pause->rx_pause = mgp->pause;
 
1248         pause->tx_pause = mgp->pause;
 
1252 myri10ge_set_pauseparam(struct net_device *netdev,
 
1253                         struct ethtool_pauseparam *pause)
 
1255         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1257         if (pause->tx_pause != mgp->pause)
 
1258                 return myri10ge_change_pause(mgp, pause->tx_pause);
 
1259         if (pause->rx_pause != mgp->pause)
 
1260                 return myri10ge_change_pause(mgp, pause->tx_pause);
 
1261         if (pause->autoneg != 0)
 
1267 myri10ge_get_ringparam(struct net_device *netdev,
 
1268                        struct ethtool_ringparam *ring)
 
1270         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1272         ring->rx_mini_max_pending = mgp->rx_small.mask + 1;
 
1273         ring->rx_max_pending = mgp->rx_big.mask + 1;
 
1274         ring->rx_jumbo_max_pending = 0;
 
1275         ring->tx_max_pending = mgp->rx_small.mask + 1;
 
1276         ring->rx_mini_pending = ring->rx_mini_max_pending;
 
1277         ring->rx_pending = ring->rx_max_pending;
 
1278         ring->rx_jumbo_pending = ring->rx_jumbo_max_pending;
 
1279         ring->tx_pending = ring->tx_max_pending;
 
1282 static u32 myri10ge_get_rx_csum(struct net_device *netdev)
 
1284         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1291 static int myri10ge_set_rx_csum(struct net_device *netdev, u32 csum_enabled)
 
1293         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1295                 mgp->csum_flag = MXGEFW_FLAGS_CKSUM;
 
1301 static const char myri10ge_gstrings_stats[][ETH_GSTRING_LEN] = {
 
1302         "rx_packets", "tx_packets", "rx_bytes", "tx_bytes", "rx_errors",
 
1303         "tx_errors", "rx_dropped", "tx_dropped", "multicast", "collisions",
 
1304         "rx_length_errors", "rx_over_errors", "rx_crc_errors",
 
1305         "rx_frame_errors", "rx_fifo_errors", "rx_missed_errors",
 
1306         "tx_aborted_errors", "tx_carrier_errors", "tx_fifo_errors",
 
1307         "tx_heartbeat_errors", "tx_window_errors",
 
1308         /* device-specific stats */
 
1309         "tx_boundary", "WC", "irq", "MSI",
 
1310         "read_dma_bw_MBs", "write_dma_bw_MBs", "read_write_dma_bw_MBs",
 
1311         "serial_number", "tx_pkt_start", "tx_pkt_done",
 
1312         "tx_req", "tx_done", "rx_small_cnt", "rx_big_cnt",
 
1313         "wake_queue", "stop_queue", "watchdog_resets", "tx_linearized",
 
1314         "link_changes", "link_up", "dropped_link_overflow",
 
1315         "dropped_link_error_or_filtered", "dropped_multicast_filtered",
 
1316         "dropped_runt", "dropped_overrun", "dropped_no_small_buffer",
 
1317         "dropped_no_big_buffer"
 
1320 #define MYRI10GE_NET_STATS_LEN      21
 
1321 #define MYRI10GE_STATS_LEN  sizeof(myri10ge_gstrings_stats) / ETH_GSTRING_LEN
 
1324 myri10ge_get_strings(struct net_device *netdev, u32 stringset, u8 * data)
 
1326         switch (stringset) {
 
1328                 memcpy(data, *myri10ge_gstrings_stats,
 
1329                        sizeof(myri10ge_gstrings_stats));
 
1334 static int myri10ge_get_stats_count(struct net_device *netdev)
 
1336         return MYRI10GE_STATS_LEN;
 
1340 myri10ge_get_ethtool_stats(struct net_device *netdev,
 
1341                            struct ethtool_stats *stats, u64 * data)
 
1343         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1346         for (i = 0; i < MYRI10GE_NET_STATS_LEN; i++)
 
1347                 data[i] = ((unsigned long *)&mgp->stats)[i];
 
1349         data[i++] = (unsigned int)mgp->tx.boundary;
 
1350         data[i++] = (unsigned int)(mgp->mtrr >= 0);
 
1351         data[i++] = (unsigned int)mgp->pdev->irq;
 
1352         data[i++] = (unsigned int)mgp->msi_enabled;
 
1353         data[i++] = (unsigned int)mgp->read_dma;
 
1354         data[i++] = (unsigned int)mgp->write_dma;
 
1355         data[i++] = (unsigned int)mgp->read_write_dma;
 
1356         data[i++] = (unsigned int)mgp->serial_number;
 
1357         data[i++] = (unsigned int)mgp->tx.pkt_start;
 
1358         data[i++] = (unsigned int)mgp->tx.pkt_done;
 
1359         data[i++] = (unsigned int)mgp->tx.req;
 
1360         data[i++] = (unsigned int)mgp->tx.done;
 
1361         data[i++] = (unsigned int)mgp->rx_small.cnt;
 
1362         data[i++] = (unsigned int)mgp->rx_big.cnt;
 
1363         data[i++] = (unsigned int)mgp->wake_queue;
 
1364         data[i++] = (unsigned int)mgp->stop_queue;
 
1365         data[i++] = (unsigned int)mgp->watchdog_resets;
 
1366         data[i++] = (unsigned int)mgp->tx_linearized;
 
1367         data[i++] = (unsigned int)mgp->link_changes;
 
1368         data[i++] = (unsigned int)ntohl(mgp->fw_stats->link_up);
 
1369         data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_link_overflow);
 
1371             (unsigned int)ntohl(mgp->fw_stats->dropped_link_error_or_filtered);
 
1373             (unsigned int)ntohl(mgp->fw_stats->dropped_multicast_filtered);
 
1374         data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_runt);
 
1375         data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_overrun);
 
1376         data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_no_small_buffer);
 
1377         data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_no_big_buffer);
 
1380 static void myri10ge_set_msglevel(struct net_device *netdev, u32 value)
 
1382         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1383         mgp->msg_enable = value;
 
1386 static u32 myri10ge_get_msglevel(struct net_device *netdev)
 
1388         struct myri10ge_priv *mgp = netdev_priv(netdev);
 
1389         return mgp->msg_enable;
 
1392 static const struct ethtool_ops myri10ge_ethtool_ops = {
 
1393         .get_settings = myri10ge_get_settings,
 
1394         .get_drvinfo = myri10ge_get_drvinfo,
 
1395         .get_coalesce = myri10ge_get_coalesce,
 
1396         .set_coalesce = myri10ge_set_coalesce,
 
1397         .get_pauseparam = myri10ge_get_pauseparam,
 
1398         .set_pauseparam = myri10ge_set_pauseparam,
 
1399         .get_ringparam = myri10ge_get_ringparam,
 
1400         .get_rx_csum = myri10ge_get_rx_csum,
 
1401         .set_rx_csum = myri10ge_set_rx_csum,
 
1402         .get_tx_csum = ethtool_op_get_tx_csum,
 
1403         .set_tx_csum = ethtool_op_set_tx_hw_csum,
 
1404         .get_sg = ethtool_op_get_sg,
 
1405         .set_sg = ethtool_op_set_sg,
 
1407         .get_tso = ethtool_op_get_tso,
 
1408         .set_tso = ethtool_op_set_tso,
 
1410         .get_strings = myri10ge_get_strings,
 
1411         .get_stats_count = myri10ge_get_stats_count,
 
1412         .get_ethtool_stats = myri10ge_get_ethtool_stats,
 
1413         .set_msglevel = myri10ge_set_msglevel,
 
1414         .get_msglevel = myri10ge_get_msglevel
 
1417 static int myri10ge_allocate_rings(struct net_device *dev)
 
1419         struct myri10ge_priv *mgp;
 
1420         struct myri10ge_cmd cmd;
 
1421         int tx_ring_size, rx_ring_size;
 
1422         int tx_ring_entries, rx_ring_entries;
 
1426         mgp = netdev_priv(dev);
 
1428         /* get ring sizes */
 
1430         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SEND_RING_SIZE, &cmd, 0);
 
1431         tx_ring_size = cmd.data0;
 
1432         status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_RX_RING_SIZE, &cmd, 0);
 
1433         rx_ring_size = cmd.data0;
 
1435         tx_ring_entries = tx_ring_size / sizeof(struct mcp_kreq_ether_send);
 
1436         rx_ring_entries = rx_ring_size / sizeof(struct mcp_dma_addr);
 
1437         mgp->tx.mask = tx_ring_entries - 1;
 
1438         mgp->rx_small.mask = mgp->rx_big.mask = rx_ring_entries - 1;
 
1440         /* allocate the host shadow rings */
 
1442         bytes = 8 + (MYRI10GE_MAX_SEND_DESC_TSO + 4)
 
1443             * sizeof(*mgp->tx.req_list);
 
1444         mgp->tx.req_bytes = kzalloc(bytes, GFP_KERNEL);
 
1445         if (mgp->tx.req_bytes == NULL)
 
1446                 goto abort_with_nothing;
 
1448         /* ensure req_list entries are aligned to 8 bytes */
 
1449         mgp->tx.req_list = (struct mcp_kreq_ether_send *)
 
1450             ALIGN((unsigned long)mgp->tx.req_bytes, 8);
 
1452         bytes = rx_ring_entries * sizeof(*mgp->rx_small.shadow);
 
1453         mgp->rx_small.shadow = kzalloc(bytes, GFP_KERNEL);
 
1454         if (mgp->rx_small.shadow == NULL)
 
1455                 goto abort_with_tx_req_bytes;
 
1457         bytes = rx_ring_entries * sizeof(*mgp->rx_big.shadow);
 
1458         mgp->rx_big.shadow = kzalloc(bytes, GFP_KERNEL);
 
1459         if (mgp->rx_big.shadow == NULL)
 
1460                 goto abort_with_rx_small_shadow;
 
1462         /* allocate the host info rings */
 
1464         bytes = tx_ring_entries * sizeof(*mgp->tx.info);
 
1465         mgp->tx.info = kzalloc(bytes, GFP_KERNEL);
 
1466         if (mgp->tx.info == NULL)
 
1467                 goto abort_with_rx_big_shadow;
 
1469         bytes = rx_ring_entries * sizeof(*mgp->rx_small.info);
 
1470         mgp->rx_small.info = kzalloc(bytes, GFP_KERNEL);
 
1471         if (mgp->rx_small.info == NULL)
 
1472                 goto abort_with_tx_info;
 
1474         bytes = rx_ring_entries * sizeof(*mgp->rx_big.info);
 
1475         mgp->rx_big.info = kzalloc(bytes, GFP_KERNEL);
 
1476         if (mgp->rx_big.info == NULL)
 
1477                 goto abort_with_rx_small_info;
 
1479         /* Fill the receive rings */
 
1481         for (i = 0; i <= mgp->rx_small.mask; i++) {
 
1482                 status = myri10ge_getbuf(&mgp->rx_small, mgp,
 
1483                                          mgp->small_bytes, i);
 
1486                                "myri10ge: %s: alloced only %d small bufs\n",
 
1488                         goto abort_with_rx_small_ring;
 
1492         for (i = 0; i <= mgp->rx_big.mask; i++) {
 
1494                     myri10ge_getbuf(&mgp->rx_big, mgp, dev->mtu + ETH_HLEN, i);
 
1497                                "myri10ge: %s: alloced only %d big bufs\n",
 
1499                         goto abort_with_rx_big_ring;
 
1505 abort_with_rx_big_ring:
 
1506         for (i = 0; i <= mgp->rx_big.mask; i++) {
 
1507                 if (mgp->rx_big.info[i].skb != NULL)
 
1508                         dev_kfree_skb_any(mgp->rx_big.info[i].skb);
 
1509                 if (pci_unmap_len(&mgp->rx_big.info[i], len))
 
1510                         pci_unmap_single(mgp->pdev,
 
1511                                          pci_unmap_addr(&mgp->rx_big.info[i],
 
1513                                          pci_unmap_len(&mgp->rx_big.info[i],
 
1515                                          PCI_DMA_FROMDEVICE);
 
1518 abort_with_rx_small_ring:
 
1519         for (i = 0; i <= mgp->rx_small.mask; i++) {
 
1520                 if (mgp->rx_small.info[i].skb != NULL)
 
1521                         dev_kfree_skb_any(mgp->rx_small.info[i].skb);
 
1522                 if (pci_unmap_len(&mgp->rx_small.info[i], len))
 
1523                         pci_unmap_single(mgp->pdev,
 
1524                                          pci_unmap_addr(&mgp->rx_small.info[i],
 
1526                                          pci_unmap_len(&mgp->rx_small.info[i],
 
1528                                          PCI_DMA_FROMDEVICE);
 
1530         kfree(mgp->rx_big.info);
 
1532 abort_with_rx_small_info:
 
1533         kfree(mgp->rx_small.info);
 
1536         kfree(mgp->tx.info);
 
1538 abort_with_rx_big_shadow:
 
1539         kfree(mgp->rx_big.shadow);
 
1541 abort_with_rx_small_shadow:
 
1542         kfree(mgp->rx_small.shadow);
 
1544 abort_with_tx_req_bytes:
 
1545         kfree(mgp->tx.req_bytes);
 
1546         mgp->tx.req_bytes = NULL;
 
1547         mgp->tx.req_list = NULL;
 
1553 static void myri10ge_free_rings(struct net_device *dev)
 
1555         struct myri10ge_priv *mgp;
 
1556         struct sk_buff *skb;
 
1557         struct myri10ge_tx_buf *tx;
 
1560         mgp = netdev_priv(dev);
 
1562         for (i = 0; i <= mgp->rx_big.mask; i++) {
 
1563                 if (mgp->rx_big.info[i].skb != NULL)
 
1564                         dev_kfree_skb_any(mgp->rx_big.info[i].skb);
 
1565                 if (pci_unmap_len(&mgp->rx_big.info[i], len))
 
1566                         pci_unmap_single(mgp->pdev,
 
1567                                          pci_unmap_addr(&mgp->rx_big.info[i],
 
1569                                          pci_unmap_len(&mgp->rx_big.info[i],
 
1571                                          PCI_DMA_FROMDEVICE);
 
1574         for (i = 0; i <= mgp->rx_small.mask; i++) {
 
1575                 if (mgp->rx_small.info[i].skb != NULL)
 
1576                         dev_kfree_skb_any(mgp->rx_small.info[i].skb);
 
1577                 if (pci_unmap_len(&mgp->rx_small.info[i], len))
 
1578                         pci_unmap_single(mgp->pdev,
 
1579                                          pci_unmap_addr(&mgp->rx_small.info[i],
 
1581                                          pci_unmap_len(&mgp->rx_small.info[i],
 
1583                                          PCI_DMA_FROMDEVICE);
 
1587         while (tx->done != tx->req) {
 
1588                 idx = tx->done & tx->mask;
 
1589                 skb = tx->info[idx].skb;
 
1592                 tx->info[idx].skb = NULL;
 
1594                 len = pci_unmap_len(&tx->info[idx], len);
 
1595                 pci_unmap_len_set(&tx->info[idx], len, 0);
 
1597                         mgp->stats.tx_dropped++;
 
1598                         dev_kfree_skb_any(skb);
 
1600                                 pci_unmap_single(mgp->pdev,
 
1601                                                  pci_unmap_addr(&tx->info[idx],
 
1606                                 pci_unmap_page(mgp->pdev,
 
1607                                                pci_unmap_addr(&tx->info[idx],
 
1612         kfree(mgp->rx_big.info);
 
1614         kfree(mgp->rx_small.info);
 
1616         kfree(mgp->tx.info);
 
1618         kfree(mgp->rx_big.shadow);
 
1620         kfree(mgp->rx_small.shadow);
 
1622         kfree(mgp->tx.req_bytes);
 
1623         mgp->tx.req_bytes = NULL;
 
1624         mgp->tx.req_list = NULL;
 
1627 static int myri10ge_open(struct net_device *dev)
 
1629         struct myri10ge_priv *mgp;
 
1630         struct myri10ge_cmd cmd;
 
1631         int status, big_pow2;
 
1633         mgp = netdev_priv(dev);
 
1635         if (mgp->running != MYRI10GE_ETH_STOPPED)
 
1638         mgp->running = MYRI10GE_ETH_STARTING;
 
1639         status = myri10ge_reset(mgp);
 
1641                 printk(KERN_ERR "myri10ge: %s: failed reset\n", dev->name);
 
1642                 mgp->running = MYRI10GE_ETH_STOPPED;
 
1646         /* decide what small buffer size to use.  For good TCP rx
 
1647          * performance, it is important to not receive 1514 byte
 
1648          * frames into jumbo buffers, as it confuses the socket buffer
 
1649          * accounting code, leading to drops and erratic performance.
 
1652         if (dev->mtu <= ETH_DATA_LEN)
 
1653                 mgp->small_bytes = 128; /* enough for a TCP header */
 
1655                 mgp->small_bytes = ETH_FRAME_LEN;       /* enough for an ETH_DATA_LEN frame */
 
1657         /* Override the small buffer size? */
 
1658         if (myri10ge_small_bytes > 0)
 
1659                 mgp->small_bytes = myri10ge_small_bytes;
 
1661         /* If the user sets an obscenely small MTU, adjust the small
 
1662          * bytes down to nearly nothing */
 
1663         if (mgp->small_bytes >= (dev->mtu + ETH_HLEN))
 
1664                 mgp->small_bytes = 64;
 
1666         /* get the lanai pointers to the send and receive rings */
 
1668         status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SEND_OFFSET, &cmd, 0);
 
1670             (struct mcp_kreq_ether_send __iomem *)(mgp->sram + cmd.data0);
 
1673             myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SMALL_RX_OFFSET, &cmd, 0);
 
1674         mgp->rx_small.lanai =
 
1675             (struct mcp_kreq_ether_recv __iomem *)(mgp->sram + cmd.data0);
 
1677         status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_BIG_RX_OFFSET, &cmd, 0);
 
1679             (struct mcp_kreq_ether_recv __iomem *)(mgp->sram + cmd.data0);
 
1683                        "myri10ge: %s: failed to get ring sizes or locations\n",
 
1685                 mgp->running = MYRI10GE_ETH_STOPPED;
 
1689         if (mgp->mtrr >= 0) {
 
1690                 mgp->tx.wc_fifo = (u8 __iomem *) mgp->sram + MXGEFW_ETH_SEND_4;
 
1691                 mgp->rx_small.wc_fifo =
 
1692                     (u8 __iomem *) mgp->sram + MXGEFW_ETH_RECV_SMALL;
 
1693                 mgp->rx_big.wc_fifo =
 
1694                     (u8 __iomem *) mgp->sram + MXGEFW_ETH_RECV_BIG;
 
1696                 mgp->tx.wc_fifo = NULL;
 
1697                 mgp->rx_small.wc_fifo = NULL;
 
1698                 mgp->rx_big.wc_fifo = NULL;
 
1701         status = myri10ge_allocate_rings(dev);
 
1703                 goto abort_with_nothing;
 
1705         /* Firmware needs the big buff size as a power of 2.  Lie and
 
1706          * tell him the buffer is larger, because we only use 1
 
1707          * buffer/pkt, and the mtu will prevent overruns.
 
1709         big_pow2 = dev->mtu + ETH_HLEN + MXGEFW_PAD;
 
1710         while ((big_pow2 & (big_pow2 - 1)) != 0)
 
1713         /* now give firmware buffers sizes, and MTU */
 
1714         cmd.data0 = dev->mtu + ETH_HLEN + VLAN_HLEN;
 
1715         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_MTU, &cmd, 0);
 
1716         cmd.data0 = mgp->small_bytes;
 
1718             myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_SMALL_BUFFER_SIZE, &cmd, 0);
 
1719         cmd.data0 = big_pow2;
 
1721             myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_BIG_BUFFER_SIZE, &cmd, 0);
 
1723                 printk(KERN_ERR "myri10ge: %s: Couldn't set buffer sizes\n",
 
1725                 goto abort_with_rings;
 
1728         cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->fw_stats_bus);
 
1729         cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->fw_stats_bus);
 
1730         cmd.data2 = sizeof(struct mcp_irq_data);
 
1731         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_STATS_DMA_V2, &cmd, 0);
 
1732         if (status == -ENOSYS) {
 
1733                 dma_addr_t bus = mgp->fw_stats_bus;
 
1734                 bus += offsetof(struct mcp_irq_data, send_done_count);
 
1735                 cmd.data0 = MYRI10GE_LOWPART_TO_U32(bus);
 
1736                 cmd.data1 = MYRI10GE_HIGHPART_TO_U32(bus);
 
1737                 status = myri10ge_send_cmd(mgp,
 
1738                                            MXGEFW_CMD_SET_STATS_DMA_OBSOLETE,
 
1740                 /* Firmware cannot support multicast without STATS_DMA_V2 */
 
1741                 mgp->fw_multicast_support = 0;
 
1743                 mgp->fw_multicast_support = 1;
 
1746                 printk(KERN_ERR "myri10ge: %s: Couldn't set stats DMA\n",
 
1748                 goto abort_with_rings;
 
1751         mgp->link_state = -1;
 
1752         mgp->rdma_tags_available = 15;
 
1754         netif_poll_enable(mgp->dev);    /* must happen prior to any irq */
 
1756         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ETHERNET_UP, &cmd, 0);
 
1758                 printk(KERN_ERR "myri10ge: %s: Couldn't bring up link\n",
 
1760                 goto abort_with_rings;
 
1763         mgp->wake_queue = 0;
 
1764         mgp->stop_queue = 0;
 
1765         mgp->running = MYRI10GE_ETH_RUNNING;
 
1766         mgp->watchdog_timer.expires = jiffies + myri10ge_watchdog_timeout * HZ;
 
1767         add_timer(&mgp->watchdog_timer);
 
1768         netif_wake_queue(dev);
 
1772         myri10ge_free_rings(dev);
 
1775         mgp->running = MYRI10GE_ETH_STOPPED;
 
1779 static int myri10ge_close(struct net_device *dev)
 
1781         struct myri10ge_priv *mgp;
 
1782         struct myri10ge_cmd cmd;
 
1783         int status, old_down_cnt;
 
1785         mgp = netdev_priv(dev);
 
1787         if (mgp->running != MYRI10GE_ETH_RUNNING)
 
1790         if (mgp->tx.req_bytes == NULL)
 
1793         del_timer_sync(&mgp->watchdog_timer);
 
1794         mgp->running = MYRI10GE_ETH_STOPPING;
 
1795         netif_poll_disable(mgp->dev);
 
1796         netif_carrier_off(dev);
 
1797         netif_stop_queue(dev);
 
1798         old_down_cnt = mgp->down_cnt;
 
1800         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ETHERNET_DOWN, &cmd, 0);
 
1802                 printk(KERN_ERR "myri10ge: %s: Couldn't bring down link\n",
 
1805         wait_event_timeout(mgp->down_wq, old_down_cnt != mgp->down_cnt, HZ);
 
1806         if (old_down_cnt == mgp->down_cnt)
 
1807                 printk(KERN_ERR "myri10ge: %s never got down irq\n", dev->name);
 
1809         netif_tx_disable(dev);
 
1811         myri10ge_free_rings(dev);
 
1813         mgp->running = MYRI10GE_ETH_STOPPED;
 
1817 /* copy an array of struct mcp_kreq_ether_send's to the mcp.  Copy
 
1818  * backwards one at a time and handle ring wraps */
 
1821 myri10ge_submit_req_backwards(struct myri10ge_tx_buf *tx,
 
1822                               struct mcp_kreq_ether_send *src, int cnt)
 
1824         int idx, starting_slot;
 
1825         starting_slot = tx->req;
 
1828                 idx = (starting_slot + cnt) & tx->mask;
 
1829                 myri10ge_pio_copy(&tx->lanai[idx], &src[cnt], sizeof(*src));
 
1835  * copy an array of struct mcp_kreq_ether_send's to the mcp.  Copy
 
1836  * at most 32 bytes at a time, so as to avoid involving the software
 
1837  * pio handler in the nic.   We re-write the first segment's flags
 
1838  * to mark them valid only after writing the entire chain.
 
1842 myri10ge_submit_req(struct myri10ge_tx_buf *tx, struct mcp_kreq_ether_send *src,
 
1846         struct mcp_kreq_ether_send __iomem *dstp, *dst;
 
1847         struct mcp_kreq_ether_send *srcp;
 
1850         idx = tx->req & tx->mask;
 
1852         last_flags = src->flags;
 
1855         dst = dstp = &tx->lanai[idx];
 
1858         if ((idx + cnt) < tx->mask) {
 
1859                 for (i = 0; i < (cnt - 1); i += 2) {
 
1860                         myri10ge_pio_copy(dstp, srcp, 2 * sizeof(*src));
 
1861                         mb();   /* force write every 32 bytes */
 
1866                 /* submit all but the first request, and ensure
 
1867                  * that it is submitted below */
 
1868                 myri10ge_submit_req_backwards(tx, src, cnt);
 
1872                 /* submit the first request */
 
1873                 myri10ge_pio_copy(dstp, srcp, sizeof(*src));
 
1874                 mb();           /* barrier before setting valid flag */
 
1877         /* re-write the last 32-bits with the valid flags */
 
1878         src->flags = last_flags;
 
1879         __raw_writel(*((u32 *) src + 3), (u32 __iomem *) dst + 3);
 
1885 myri10ge_submit_req_wc(struct myri10ge_tx_buf *tx,
 
1886                        struct mcp_kreq_ether_send *src, int cnt)
 
1891                 myri10ge_pio_copy(tx->wc_fifo, src, 64);
 
1897                 /* pad it to 64 bytes.  The src is 64 bytes bigger than it
 
1898                  * needs to be so that we don't overrun it */
 
1899                 myri10ge_pio_copy(tx->wc_fifo + MXGEFW_ETH_SEND_OFFSET(cnt),
 
1906  * Transmit a packet.  We need to split the packet so that a single
 
1907  * segment does not cross myri10ge->tx.boundary, so this makes segment
 
1908  * counting tricky.  So rather than try to count segments up front, we
 
1909  * just give up if there are too few segments to hold a reasonably
 
1910  * fragmented packet currently available.  If we run
 
1911  * out of segments while preparing a packet for DMA, we just linearize
 
1915 static int myri10ge_xmit(struct sk_buff *skb, struct net_device *dev)
 
1917         struct myri10ge_priv *mgp = netdev_priv(dev);
 
1918         struct mcp_kreq_ether_send *req;
 
1919         struct myri10ge_tx_buf *tx = &mgp->tx;
 
1920         struct skb_frag_struct *frag;
 
1922         u32 low, high_swapped;
 
1924         int idx, last_idx, avail, frag_cnt, frag_idx, count, mss, max_segments;
 
1925         u16 pseudo_hdr_offset, cksum_offset;
 
1926         int cum_len, seglen, boundary, rdma_count;
 
1931         avail = tx->mask - 1 - (tx->req - tx->done);
 
1934         max_segments = MXGEFW_MAX_SEND_DESC;
 
1937         if (skb->len > (dev->mtu + ETH_HLEN)) {
 
1938                 mss = skb_shinfo(skb)->gso_size;
 
1940                         max_segments = MYRI10GE_MAX_SEND_DESC_TSO;
 
1942 #endif                          /*NETIF_F_TSO */
 
1944         if ((unlikely(avail < max_segments))) {
 
1945                 /* we are out of transmit resources */
 
1947                 netif_stop_queue(dev);
 
1951         /* Setup checksum offloading, if needed */
 
1953         pseudo_hdr_offset = 0;
 
1955         flags = (MXGEFW_FLAGS_NO_TSO | MXGEFW_FLAGS_FIRST);
 
1956         if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
 
1957                 cksum_offset = (skb->h.raw - skb->data);
 
1958                 pseudo_hdr_offset = (skb->h.raw + skb->csum) - skb->data;
 
1959                 /* If the headers are excessively large, then we must
 
1960                  * fall back to a software checksum */
 
1961                 if (unlikely(cksum_offset > 255 || pseudo_hdr_offset > 127)) {
 
1962                         if (skb_checksum_help(skb))
 
1965                         pseudo_hdr_offset = 0;
 
1967                         pseudo_hdr_offset = htons(pseudo_hdr_offset);
 
1968                         odd_flag = MXGEFW_FLAGS_ALIGN_ODD;
 
1969                         flags |= MXGEFW_FLAGS_CKSUM;
 
1976         if (mss) {              /* TSO */
 
1977                 /* this removes any CKSUM flag from before */
 
1978                 flags = (MXGEFW_FLAGS_TSO_HDR | MXGEFW_FLAGS_FIRST);
 
1980                 /* negative cum_len signifies to the
 
1981                  * send loop that we are still in the
 
1982                  * header portion of the TSO packet.
 
1983                  * TSO header must be at most 134 bytes long */
 
1984                 cum_len = -((skb->h.raw - skb->data) + (skb->h.th->doff << 2));
 
1986                 /* for TSO, pseudo_hdr_offset holds mss.
 
1987                  * The firmware figures out where to put
 
1988                  * the checksum by parsing the header. */
 
1989                 pseudo_hdr_offset = htons(mss);
 
1991 #endif                          /*NETIF_F_TSO */
 
1992                 /* Mark small packets, and pad out tiny packets */
 
1993         if (skb->len <= MXGEFW_SEND_SMALL_SIZE) {
 
1994                 flags |= MXGEFW_FLAGS_SMALL;
 
1996                 /* pad frames to at least ETH_ZLEN bytes */
 
1997                 if (unlikely(skb->len < ETH_ZLEN)) {
 
1998                         if (skb_padto(skb, ETH_ZLEN)) {
 
1999                                 /* The packet is gone, so we must
 
2001                                 mgp->stats.tx_dropped += 1;
 
2004                         /* adjust the len to account for the zero pad
 
2005                          * so that the nic can know how long it is */
 
2006                         skb->len = ETH_ZLEN;
 
2010         /* map the skb for DMA */
 
2011         len = skb->len - skb->data_len;
 
2012         idx = tx->req & tx->mask;
 
2013         tx->info[idx].skb = skb;
 
2014         bus = pci_map_single(mgp->pdev, skb->data, len, PCI_DMA_TODEVICE);
 
2015         pci_unmap_addr_set(&tx->info[idx], bus, bus);
 
2016         pci_unmap_len_set(&tx->info[idx], len, len);
 
2018         frag_cnt = skb_shinfo(skb)->nr_frags;
 
2023         /* "rdma_count" is the number of RDMAs belonging to the
 
2024          * current packet BEFORE the current send request. For
 
2025          * non-TSO packets, this is equal to "count".
 
2026          * For TSO packets, rdma_count needs to be reset
 
2027          * to 0 after a segment cut.
 
2029          * The rdma_count field of the send request is
 
2030          * the number of RDMAs of the packet starting at
 
2031          * that request. For TSO send requests with one ore more cuts
 
2032          * in the middle, this is the number of RDMAs starting
 
2033          * after the last cut in the request. All previous
 
2034          * segments before the last cut implicitly have 1 RDMA.
 
2036          * Since the number of RDMAs is not known beforehand,
 
2037          * it must be filled-in retroactively - after each
 
2038          * segmentation cut or at the end of the entire packet.
 
2042                 /* Break the SKB or Fragment up into pieces which
 
2043                  * do not cross mgp->tx.boundary */
 
2044                 low = MYRI10GE_LOWPART_TO_U32(bus);
 
2045                 high_swapped = htonl(MYRI10GE_HIGHPART_TO_U32(bus));
 
2050                         if (unlikely(count == max_segments))
 
2051                                 goto abort_linearize;
 
2053                         boundary = (low + tx->boundary) & ~(tx->boundary - 1);
 
2054                         seglen = boundary - low;
 
2057                         flags_next = flags & ~MXGEFW_FLAGS_FIRST;
 
2058                         cum_len_next = cum_len + seglen;
 
2060                         if (mss) {      /* TSO */
 
2061                                 (req - rdma_count)->rdma_count = rdma_count + 1;
 
2063                                 if (likely(cum_len >= 0)) {     /* payload */
 
2064                                         int next_is_first, chop;
 
2066                                         chop = (cum_len_next > mss);
 
2067                                         cum_len_next = cum_len_next % mss;
 
2068                                         next_is_first = (cum_len_next == 0);
 
2069                                         flags |= chop * MXGEFW_FLAGS_TSO_CHOP;
 
2070                                         flags_next |= next_is_first *
 
2072                                         rdma_count |= -(chop | next_is_first);
 
2073                                         rdma_count += chop & !next_is_first;
 
2074                                 } else if (likely(cum_len_next >= 0)) { /* header ends */
 
2080                                         small = (mss <= MXGEFW_SEND_SMALL_SIZE);
 
2081                                         flags_next = MXGEFW_FLAGS_TSO_PLD |
 
2082                                             MXGEFW_FLAGS_FIRST |
 
2083                                             (small * MXGEFW_FLAGS_SMALL);
 
2086 #endif                          /* NETIF_F_TSO */
 
2087                         req->addr_high = high_swapped;
 
2088                         req->addr_low = htonl(low);
 
2089                         req->pseudo_hdr_offset = pseudo_hdr_offset;
 
2090                         req->pad = 0;   /* complete solid 16-byte block; does this matter? */
 
2091                         req->rdma_count = 1;
 
2092                         req->length = htons(seglen);
 
2093                         req->cksum_offset = cksum_offset;
 
2094                         req->flags = flags | ((cum_len & 1) * odd_flag);
 
2098                         cum_len = cum_len_next;
 
2103                         if (unlikely(cksum_offset > seglen))
 
2104                                 cksum_offset -= seglen;
 
2108                 if (frag_idx == frag_cnt)
 
2111                 /* map next fragment for DMA */
 
2112                 idx = (count + tx->req) & tx->mask;
 
2113                 frag = &skb_shinfo(skb)->frags[frag_idx];
 
2116                 bus = pci_map_page(mgp->pdev, frag->page, frag->page_offset,
 
2117                                    len, PCI_DMA_TODEVICE);
 
2118                 pci_unmap_addr_set(&tx->info[idx], bus, bus);
 
2119                 pci_unmap_len_set(&tx->info[idx], len, len);
 
2122         (req - rdma_count)->rdma_count = rdma_count;
 
2127                         req->flags |= MXGEFW_FLAGS_TSO_LAST;
 
2128                 } while (!(req->flags & (MXGEFW_FLAGS_TSO_CHOP |
 
2129                                          MXGEFW_FLAGS_FIRST)));
 
2131         idx = ((count - 1) + tx->req) & tx->mask;
 
2132         tx->info[idx].last = 1;
 
2133         if (tx->wc_fifo == NULL)
 
2134                 myri10ge_submit_req(tx, tx->req_list, count);
 
2136                 myri10ge_submit_req_wc(tx, tx->req_list, count);
 
2138         if ((avail - count) < MXGEFW_MAX_SEND_DESC) {
 
2140                 netif_stop_queue(dev);
 
2142         dev->trans_start = jiffies;
 
2146         /* Free any DMA resources we've alloced and clear out the skb
 
2147          * slot so as to not trip up assertions, and to avoid a
 
2148          * double-free if linearizing fails */
 
2150         last_idx = (idx + 1) & tx->mask;
 
2151         idx = tx->req & tx->mask;
 
2152         tx->info[idx].skb = NULL;
 
2154                 len = pci_unmap_len(&tx->info[idx], len);
 
2156                         if (tx->info[idx].skb != NULL)
 
2157                                 pci_unmap_single(mgp->pdev,
 
2158                                                  pci_unmap_addr(&tx->info[idx],
 
2162                                 pci_unmap_page(mgp->pdev,
 
2163                                                pci_unmap_addr(&tx->info[idx],
 
2166                         pci_unmap_len_set(&tx->info[idx], len, 0);
 
2167                         tx->info[idx].skb = NULL;
 
2169                 idx = (idx + 1) & tx->mask;
 
2170         } while (idx != last_idx);
 
2171         if (skb_is_gso(skb)) {
 
2173                        "myri10ge: %s: TSO but wanted to linearize?!?!?\n",
 
2178         if (skb_linearize(skb))
 
2181         mgp->tx_linearized++;
 
2185         dev_kfree_skb_any(skb);
 
2186         mgp->stats.tx_dropped += 1;
 
2191 static struct net_device_stats *myri10ge_get_stats(struct net_device *dev)
 
2193         struct myri10ge_priv *mgp = netdev_priv(dev);
 
2197 static void myri10ge_set_multicast_list(struct net_device *dev)
 
2199         struct myri10ge_cmd cmd;
 
2200         struct myri10ge_priv *mgp;
 
2201         struct dev_mc_list *mc_list;
 
2204         mgp = netdev_priv(dev);
 
2205         /* can be called from atomic contexts,
 
2206          * pass 1 to force atomicity in myri10ge_send_cmd() */
 
2207         myri10ge_change_promisc(mgp, dev->flags & IFF_PROMISC, 1);
 
2209         /* This firmware is known to not support multicast */
 
2210         if (!mgp->fw_multicast_support)
 
2213         /* Disable multicast filtering */
 
2215         err = myri10ge_send_cmd(mgp, MXGEFW_ENABLE_ALLMULTI, &cmd, 1);
 
2217                 printk(KERN_ERR "myri10ge: %s: Failed MXGEFW_ENABLE_ALLMULTI,"
 
2218                        " error status: %d\n", dev->name, err);
 
2222         if (dev->flags & IFF_ALLMULTI) {
 
2223                 /* request to disable multicast filtering, so quit here */
 
2227         /* Flush the filters */
 
2229         err = myri10ge_send_cmd(mgp, MXGEFW_LEAVE_ALL_MULTICAST_GROUPS,
 
2233                        "myri10ge: %s: Failed MXGEFW_LEAVE_ALL_MULTICAST_GROUPS"
 
2234                        ", error status: %d\n", dev->name, err);
 
2238         /* Walk the multicast list, and add each address */
 
2239         for (mc_list = dev->mc_list; mc_list != NULL; mc_list = mc_list->next) {
 
2240                 memcpy(&cmd.data0, &mc_list->dmi_addr, 4);
 
2241                 memcpy(&cmd.data1, ((char *)&mc_list->dmi_addr) + 4, 2);
 
2242                 cmd.data0 = htonl(cmd.data0);
 
2243                 cmd.data1 = htonl(cmd.data1);
 
2244                 err = myri10ge_send_cmd(mgp, MXGEFW_JOIN_MULTICAST_GROUP,
 
2248                         printk(KERN_ERR "myri10ge: %s: Failed "
 
2249                                "MXGEFW_JOIN_MULTICAST_GROUP, error status:"
 
2250                                "%d\t", dev->name, err);
 
2251                         printk(KERN_ERR "MAC %02x:%02x:%02x:%02x:%02x:%02x\n",
 
2252                                ((unsigned char *)&mc_list->dmi_addr)[0],
 
2253                                ((unsigned char *)&mc_list->dmi_addr)[1],
 
2254                                ((unsigned char *)&mc_list->dmi_addr)[2],
 
2255                                ((unsigned char *)&mc_list->dmi_addr)[3],
 
2256                                ((unsigned char *)&mc_list->dmi_addr)[4],
 
2257                                ((unsigned char *)&mc_list->dmi_addr)[5]
 
2262         /* Enable multicast filtering */
 
2263         err = myri10ge_send_cmd(mgp, MXGEFW_DISABLE_ALLMULTI, &cmd, 1);
 
2265                 printk(KERN_ERR "myri10ge: %s: Failed MXGEFW_DISABLE_ALLMULTI,"
 
2266                        "error status: %d\n", dev->name, err);
 
2276 static int myri10ge_set_mac_address(struct net_device *dev, void *addr)
 
2278         struct sockaddr *sa = addr;
 
2279         struct myri10ge_priv *mgp = netdev_priv(dev);
 
2282         if (!is_valid_ether_addr(sa->sa_data))
 
2283                 return -EADDRNOTAVAIL;
 
2285         status = myri10ge_update_mac_address(mgp, sa->sa_data);
 
2288                        "myri10ge: %s: changing mac address failed with %d\n",
 
2293         /* change the dev structure */
 
2294         memcpy(dev->dev_addr, sa->sa_data, 6);
 
2298 static int myri10ge_change_mtu(struct net_device *dev, int new_mtu)
 
2300         struct myri10ge_priv *mgp = netdev_priv(dev);
 
2303         if ((new_mtu < 68) || (ETH_HLEN + new_mtu > MYRI10GE_MAX_ETHER_MTU)) {
 
2304                 printk(KERN_ERR "myri10ge: %s: new mtu (%d) is not valid\n",
 
2305                        dev->name, new_mtu);
 
2308         printk(KERN_INFO "%s: changing mtu from %d to %d\n",
 
2309                dev->name, dev->mtu, new_mtu);
 
2311                 /* if we change the mtu on an active device, we must
 
2312                  * reset the device so the firmware sees the change */
 
2313                 myri10ge_close(dev);
 
2323  * Enable ECRC to align PCI-E Completion packets on an 8-byte boundary.
 
2324  * Only do it if the bridge is a root port since we don't want to disturb
 
2325  * any other device, except if forced with myri10ge_ecrc_enable > 1.
 
2328 static void myri10ge_enable_ecrc(struct myri10ge_priv *mgp)
 
2330         struct pci_dev *bridge = mgp->pdev->bus->self;
 
2331         struct device *dev = &mgp->pdev->dev;
 
2338         if (!myri10ge_ecrc_enable || !bridge)
 
2341         /* check that the bridge is a root port */
 
2342         cap = pci_find_capability(bridge, PCI_CAP_ID_EXP);
 
2343         pci_read_config_word(bridge, cap + PCI_CAP_FLAGS, &val);
 
2344         ext_type = (val & PCI_EXP_FLAGS_TYPE) >> 4;
 
2345         if (ext_type != PCI_EXP_TYPE_ROOT_PORT) {
 
2346                 if (myri10ge_ecrc_enable > 1) {
 
2347                         struct pci_dev *old_bridge = bridge;
 
2349                         /* Walk the hierarchy up to the root port
 
2350                          * where ECRC has to be enabled */
 
2352                                 bridge = bridge->bus->self;
 
2355                                                 "Failed to find root port"
 
2356                                                 " to force ECRC\n");
 
2360                                     pci_find_capability(bridge, PCI_CAP_ID_EXP);
 
2361                                 pci_read_config_word(bridge,
 
2362                                                      cap + PCI_CAP_FLAGS, &val);
 
2363                                 ext_type = (val & PCI_EXP_FLAGS_TYPE) >> 4;
 
2364                         } while (ext_type != PCI_EXP_TYPE_ROOT_PORT);
 
2367                                  "Forcing ECRC on non-root port %s"
 
2368                                  " (enabling on root port %s)\n",
 
2369                                  pci_name(old_bridge), pci_name(bridge));
 
2372                                 "Not enabling ECRC on non-root port %s\n",
 
2378         cap = pci_find_ext_capability(bridge, PCI_EXT_CAP_ID_ERR);
 
2382         ret = pci_read_config_dword(bridge, cap + PCI_ERR_CAP, &err_cap);
 
2384                 dev_err(dev, "failed reading ext-conf-space of %s\n",
 
2386                 dev_err(dev, "\t pci=nommconf in use? "
 
2387                         "or buggy/incomplete/absent ACPI MCFG attr?\n");
 
2390         if (!(err_cap & PCI_ERR_CAP_ECRC_GENC))
 
2393         err_cap |= PCI_ERR_CAP_ECRC_GENE;
 
2394         pci_write_config_dword(bridge, cap + PCI_ERR_CAP, err_cap);
 
2395         dev_info(dev, "Enabled ECRC on upstream bridge %s\n", pci_name(bridge));
 
2396         mgp->tx.boundary = 4096;
 
2397         mgp->fw_name = myri10ge_fw_aligned;
 
2401  * The Lanai Z8E PCI-E interface achieves higher Read-DMA throughput
 
2402  * when the PCI-E Completion packets are aligned on an 8-byte
 
2403  * boundary.  Some PCI-E chip sets always align Completion packets; on
 
2404  * the ones that do not, the alignment can be enforced by enabling
 
2405  * ECRC generation (if supported).
 
2407  * When PCI-E Completion packets are not aligned, it is actually more
 
2408  * efficient to limit Read-DMA transactions to 2KB, rather than 4KB.
 
2410  * If the driver can neither enable ECRC nor verify that it has
 
2411  * already been enabled, then it must use a firmware image which works
 
2412  * around unaligned completion packets (myri10ge_ethp_z8e.dat), and it
 
2413  * should also ensure that it never gives the device a Read-DMA which is
 
2414  * larger than 2KB by setting the tx.boundary to 2KB.  If ECRC is
 
2415  * enabled, then the driver should use the aligned (myri10ge_eth_z8e.dat)
 
2416  * firmware image, and set tx.boundary to 4KB.
 
2419 #define PCI_DEVICE_ID_INTEL_E5000_PCIE23 0x25f7
 
2420 #define PCI_DEVICE_ID_INTEL_E5000_PCIE47 0x25fa
 
2422 static void myri10ge_select_firmware(struct myri10ge_priv *mgp)
 
2424         struct pci_dev *bridge = mgp->pdev->bus->self;
 
2426         mgp->tx.boundary = 2048;
 
2427         mgp->fw_name = myri10ge_fw_unaligned;
 
2429         if (myri10ge_force_firmware == 0) {
 
2430                 int link_width, exp_cap;
 
2433                 exp_cap = pci_find_capability(mgp->pdev, PCI_CAP_ID_EXP);
 
2434                 pci_read_config_word(mgp->pdev, exp_cap + PCI_EXP_LNKSTA, &lnk);
 
2435                 link_width = (lnk >> 4) & 0x3f;
 
2437                 myri10ge_enable_ecrc(mgp);
 
2439                 /* Check to see if Link is less than 8 or if the
 
2440                  * upstream bridge is known to provide aligned
 
2442                 if (link_width < 8) {
 
2443                         dev_info(&mgp->pdev->dev, "PCIE x%d Link\n",
 
2445                         mgp->tx.boundary = 4096;
 
2446                         mgp->fw_name = myri10ge_fw_aligned;
 
2447                 } else if (bridge &&
 
2448                            /* ServerWorks HT2000/HT1000 */
 
2449                            ((bridge->vendor == PCI_VENDOR_ID_SERVERWORKS
 
2450                              && bridge->device ==
 
2451                              PCI_DEVICE_ID_SERVERWORKS_HT2000_PCIE)
 
2452                             /* All Intel E5000 PCIE ports */
 
2453                             || (bridge->vendor == PCI_VENDOR_ID_INTEL
 
2454                                 && bridge->device >=
 
2455                                 PCI_DEVICE_ID_INTEL_E5000_PCIE23
 
2456                                 && bridge->device <=
 
2457                                 PCI_DEVICE_ID_INTEL_E5000_PCIE47))) {
 
2458                         dev_info(&mgp->pdev->dev,
 
2459                                  "Assuming aligned completions (0x%x:0x%x)\n",
 
2460                                  bridge->vendor, bridge->device);
 
2461                         mgp->tx.boundary = 4096;
 
2462                         mgp->fw_name = myri10ge_fw_aligned;
 
2465                 if (myri10ge_force_firmware == 1) {
 
2466                         dev_info(&mgp->pdev->dev,
 
2467                                  "Assuming aligned completions (forced)\n");
 
2468                         mgp->tx.boundary = 4096;
 
2469                         mgp->fw_name = myri10ge_fw_aligned;
 
2471                         dev_info(&mgp->pdev->dev,
 
2472                                  "Assuming unaligned completions (forced)\n");
 
2473                         mgp->tx.boundary = 2048;
 
2474                         mgp->fw_name = myri10ge_fw_unaligned;
 
2477         if (myri10ge_fw_name != NULL) {
 
2478                 dev_info(&mgp->pdev->dev, "overriding firmware to %s\n",
 
2480                 mgp->fw_name = myri10ge_fw_name;
 
2484 static void myri10ge_save_state(struct myri10ge_priv *mgp)
 
2486         struct pci_dev *pdev = mgp->pdev;
 
2489         pci_save_state(pdev);
 
2490         /* now save PCIe and MSI state that Linux will not
 
2492         cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
 
2493         pci_read_config_dword(pdev, cap + PCI_EXP_DEVCTL, &mgp->devctl);
 
2494         cap = pci_find_capability(pdev, PCI_CAP_ID_MSI);
 
2495         pci_read_config_word(pdev, cap + PCI_MSI_FLAGS, &mgp->msi_flags);
 
2498 static void myri10ge_restore_state(struct myri10ge_priv *mgp)
 
2500         struct pci_dev *pdev = mgp->pdev;
 
2503         /* restore PCIe and MSI state that linux will not */
 
2504         cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
 
2505         pci_write_config_dword(pdev, cap + PCI_CAP_ID_EXP, mgp->devctl);
 
2506         cap = pci_find_capability(pdev, PCI_CAP_ID_MSI);
 
2507         pci_write_config_word(pdev, cap + PCI_MSI_FLAGS, mgp->msi_flags);
 
2509         pci_restore_state(pdev);
 
2514 static int myri10ge_suspend(struct pci_dev *pdev, pm_message_t state)
 
2516         struct myri10ge_priv *mgp;
 
2517         struct net_device *netdev;
 
2519         mgp = pci_get_drvdata(pdev);
 
2524         netif_device_detach(netdev);
 
2525         if (netif_running(netdev)) {
 
2526                 printk(KERN_INFO "myri10ge: closing %s\n", netdev->name);
 
2528                 myri10ge_close(netdev);
 
2531         myri10ge_dummy_rdma(mgp, 0);
 
2532         free_irq(pdev->irq, mgp);
 
2533         myri10ge_save_state(mgp);
 
2534         pci_disable_device(pdev);
 
2535         pci_set_power_state(pdev, pci_choose_state(pdev, state));
 
2539 static int myri10ge_resume(struct pci_dev *pdev)
 
2541         struct myri10ge_priv *mgp;
 
2542         struct net_device *netdev;
 
2546         mgp = pci_get_drvdata(pdev);
 
2550         pci_set_power_state(pdev, 0);   /* zeros conf space as a side effect */
 
2551         msleep(5);              /* give card time to respond */
 
2552         pci_read_config_word(mgp->pdev, PCI_VENDOR_ID, &vendor);
 
2553         if (vendor == 0xffff) {
 
2554                 printk(KERN_ERR "myri10ge: %s: device disappeared!\n",
 
2558         myri10ge_restore_state(mgp);
 
2560         status = pci_enable_device(pdev);
 
2562                 dev_err(&pdev->dev, "failed to enable device\n");
 
2566         pci_set_master(pdev);
 
2568         status = request_irq(pdev->irq, myri10ge_intr, IRQF_SHARED,
 
2571                 dev_err(&pdev->dev, "failed to allocate IRQ\n");
 
2572                 goto abort_with_enabled;
 
2575         myri10ge_reset(mgp);
 
2576         myri10ge_dummy_rdma(mgp, 1);
 
2578         /* Save configuration space to be restored if the
 
2579          * nic resets due to a parity error */
 
2580         myri10ge_save_state(mgp);
 
2582         if (netif_running(netdev)) {
 
2584                 myri10ge_open(netdev);
 
2587         netif_device_attach(netdev);
 
2592         pci_disable_device(pdev);
 
2597 #endif                          /* CONFIG_PM */
 
2599 static u32 myri10ge_read_reboot(struct myri10ge_priv *mgp)
 
2601         struct pci_dev *pdev = mgp->pdev;
 
2602         int vs = mgp->vendor_specific_offset;
 
2605         /*enter read32 mode */
 
2606         pci_write_config_byte(pdev, vs + 0x10, 0x3);
 
2608         /*read REBOOT_STATUS (0xfffffff0) */
 
2609         pci_write_config_dword(pdev, vs + 0x18, 0xfffffff0);
 
2610         pci_read_config_dword(pdev, vs + 0x14, &reboot);
 
2615  * This watchdog is used to check whether the board has suffered
 
2616  * from a parity error and needs to be recovered.
 
2618 static void myri10ge_watchdog(void *arg)
 
2620         struct myri10ge_priv *mgp = arg;
 
2625         mgp->watchdog_resets++;
 
2626         pci_read_config_word(mgp->pdev, PCI_COMMAND, &cmd);
 
2627         if ((cmd & PCI_COMMAND_MASTER) == 0) {
 
2628                 /* Bus master DMA disabled?  Check to see
 
2629                  * if the card rebooted due to a parity error
 
2630                  * For now, just report it */
 
2631                 reboot = myri10ge_read_reboot(mgp);
 
2633                        "myri10ge: %s: NIC rebooted (0x%x), resetting\n",
 
2634                        mgp->dev->name, reboot);
 
2636                  * A rebooted nic will come back with config space as
 
2637                  * it was after power was applied to PCIe bus.
 
2638                  * Attempt to restore config space which was saved
 
2639                  * when the driver was loaded, or the last time the
 
2640                  * nic was resumed from power saving mode.
 
2642                 myri10ge_restore_state(mgp);
 
2644                 /* if we get back -1's from our slot, perhaps somebody
 
2645                  * powered off our card.  Don't try to reset it in
 
2647                 if (cmd == 0xffff) {
 
2648                         pci_read_config_word(mgp->pdev, PCI_VENDOR_ID, &vendor);
 
2649                         if (vendor == 0xffff) {
 
2651                                        "myri10ge: %s: device disappeared!\n",
 
2656                 /* Perhaps it is a software error.  Try to reset */
 
2658                 printk(KERN_ERR "myri10ge: %s: device timeout, resetting\n",
 
2660                 printk(KERN_INFO "myri10ge: %s: %d %d %d %d %d\n",
 
2661                        mgp->dev->name, mgp->tx.req, mgp->tx.done,
 
2662                        mgp->tx.pkt_start, mgp->tx.pkt_done,
 
2663                        (int)ntohl(mgp->fw_stats->send_done_count));
 
2665                 printk(KERN_INFO "myri10ge: %s: %d %d %d %d %d\n",
 
2666                        mgp->dev->name, mgp->tx.req, mgp->tx.done,
 
2667                        mgp->tx.pkt_start, mgp->tx.pkt_done,
 
2668                        (int)ntohl(mgp->fw_stats->send_done_count));
 
2671         myri10ge_close(mgp->dev);
 
2672         status = myri10ge_load_firmware(mgp);
 
2674                 printk(KERN_ERR "myri10ge: %s: failed to load firmware\n",
 
2677                 myri10ge_open(mgp->dev);
 
2682  * We use our own timer routine rather than relying upon
 
2683  * netdev->tx_timeout because we have a very large hardware transmit
 
2684  * queue.  Due to the large queue, the netdev->tx_timeout function
 
2685  * cannot detect a NIC with a parity error in a timely fashion if the
 
2686  * NIC is lightly loaded.
 
2688 static void myri10ge_watchdog_timer(unsigned long arg)
 
2690         struct myri10ge_priv *mgp;
 
2692         mgp = (struct myri10ge_priv *)arg;
 
2693         if (mgp->tx.req != mgp->tx.done &&
 
2694             mgp->tx.done == mgp->watchdog_tx_done &&
 
2695             mgp->watchdog_tx_req != mgp->watchdog_tx_done)
 
2696                 /* nic seems like it might be stuck.. */
 
2697                 schedule_work(&mgp->watchdog_work);
 
2700                 mod_timer(&mgp->watchdog_timer,
 
2701                           jiffies + myri10ge_watchdog_timeout * HZ);
 
2703         mgp->watchdog_tx_done = mgp->tx.done;
 
2704         mgp->watchdog_tx_req = mgp->tx.req;
 
2707 static int myri10ge_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
 
2709         struct net_device *netdev;
 
2710         struct myri10ge_priv *mgp;
 
2711         struct device *dev = &pdev->dev;
 
2714         int status = -ENXIO;
 
2719         netdev = alloc_etherdev(sizeof(*mgp));
 
2720         if (netdev == NULL) {
 
2721                 dev_err(dev, "Could not allocate ethernet device\n");
 
2725         mgp = netdev_priv(netdev);
 
2726         memset(mgp, 0, sizeof(*mgp));
 
2729         mgp->csum_flag = MXGEFW_FLAGS_CKSUM;
 
2730         mgp->pause = myri10ge_flow_control;
 
2731         mgp->intr_coal_delay = myri10ge_intr_coal_delay;
 
2732         mgp->msg_enable = netif_msg_init(myri10ge_debug, MYRI10GE_MSG_DEFAULT);
 
2733         init_waitqueue_head(&mgp->down_wq);
 
2735         if (pci_enable_device(pdev)) {
 
2736                 dev_err(&pdev->dev, "pci_enable_device call failed\n");
 
2738                 goto abort_with_netdev;
 
2740         myri10ge_select_firmware(mgp);
 
2742         /* Find the vendor-specific cap so we can check
 
2743          * the reboot register later on */
 
2744         mgp->vendor_specific_offset
 
2745             = pci_find_capability(pdev, PCI_CAP_ID_VNDR);
 
2747         /* Set our max read request to 4KB */
 
2748         cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
 
2750                 dev_err(&pdev->dev, "Bad PCI_CAP_ID_EXP location %d\n", cap);
 
2751                 goto abort_with_netdev;
 
2753         status = pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &val);
 
2755                 dev_err(&pdev->dev, "Error %d reading PCI_EXP_DEVCTL\n",
 
2757                 goto abort_with_netdev;
 
2759         val = (val & ~PCI_EXP_DEVCTL_READRQ) | (5 << 12);
 
2760         status = pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, val);
 
2762                 dev_err(&pdev->dev, "Error %d writing PCI_EXP_DEVCTL\n",
 
2764                 goto abort_with_netdev;
 
2767         pci_set_master(pdev);
 
2769         status = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
 
2773                         "64-bit pci address mask was refused, trying 32-bit");
 
2774                 status = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
 
2777                 dev_err(&pdev->dev, "Error %d setting DMA mask\n", status);
 
2778                 goto abort_with_netdev;
 
2780         mgp->cmd = dma_alloc_coherent(&pdev->dev, sizeof(*mgp->cmd),
 
2781                                       &mgp->cmd_bus, GFP_KERNEL);
 
2782         if (mgp->cmd == NULL)
 
2783                 goto abort_with_netdev;
 
2785         mgp->fw_stats = dma_alloc_coherent(&pdev->dev, sizeof(*mgp->fw_stats),
 
2786                                            &mgp->fw_stats_bus, GFP_KERNEL);
 
2787         if (mgp->fw_stats == NULL)
 
2788                 goto abort_with_cmd;
 
2790         mgp->board_span = pci_resource_len(pdev, 0);
 
2791         mgp->iomem_base = pci_resource_start(pdev, 0);
 
2794         mgp->mtrr = mtrr_add(mgp->iomem_base, mgp->board_span,
 
2795                              MTRR_TYPE_WRCOMB, 1);
 
2797         /* Hack.  need to get rid of these magic numbers */
 
2799             2 * 1024 * 1024 - (2 * (48 * 1024) + (32 * 1024)) - 0x100;
 
2800         if (mgp->sram_size > mgp->board_span) {
 
2801                 dev_err(&pdev->dev, "board span %ld bytes too small\n",
 
2805         mgp->sram = ioremap(mgp->iomem_base, mgp->board_span);
 
2806         if (mgp->sram == NULL) {
 
2807                 dev_err(&pdev->dev, "ioremap failed for %ld bytes at 0x%lx\n",
 
2808                         mgp->board_span, mgp->iomem_base);
 
2812         memcpy_fromio(mgp->eeprom_strings,
 
2813                       mgp->sram + mgp->sram_size - MYRI10GE_EEPROM_STRINGS_SIZE,
 
2814                       MYRI10GE_EEPROM_STRINGS_SIZE);
 
2815         memset(mgp->eeprom_strings + MYRI10GE_EEPROM_STRINGS_SIZE - 2, 0, 2);
 
2816         status = myri10ge_read_mac_addr(mgp);
 
2818                 goto abort_with_ioremap;
 
2820         for (i = 0; i < ETH_ALEN; i++)
 
2821                 netdev->dev_addr[i] = mgp->mac_addr[i];
 
2823         /* allocate rx done ring */
 
2824         bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
 
2825         mgp->rx_done.entry = dma_alloc_coherent(&pdev->dev, bytes,
 
2826                                                 &mgp->rx_done.bus, GFP_KERNEL);
 
2827         if (mgp->rx_done.entry == NULL)
 
2828                 goto abort_with_ioremap;
 
2829         memset(mgp->rx_done.entry, 0, bytes);
 
2831         status = myri10ge_load_firmware(mgp);
 
2833                 dev_err(&pdev->dev, "failed to load firmware\n");
 
2834                 goto abort_with_rx_done;
 
2837         status = myri10ge_reset(mgp);
 
2839                 dev_err(&pdev->dev, "failed reset\n");
 
2840                 goto abort_with_firmware;
 
2844                 status = pci_enable_msi(pdev);
 
2847                                 "Error %d setting up MSI; falling back to xPIC\n",
 
2850                         mgp->msi_enabled = 1;
 
2853         status = request_irq(pdev->irq, myri10ge_intr, IRQF_SHARED,
 
2856                 dev_err(&pdev->dev, "failed to allocate IRQ\n");
 
2857                 goto abort_with_firmware;
 
2860         pci_set_drvdata(pdev, mgp);
 
2861         if ((myri10ge_initial_mtu + ETH_HLEN) > MYRI10GE_MAX_ETHER_MTU)
 
2862                 myri10ge_initial_mtu = MYRI10GE_MAX_ETHER_MTU - ETH_HLEN;
 
2863         if ((myri10ge_initial_mtu + ETH_HLEN) < 68)
 
2864                 myri10ge_initial_mtu = 68;
 
2865         netdev->mtu = myri10ge_initial_mtu;
 
2866         netdev->open = myri10ge_open;
 
2867         netdev->stop = myri10ge_close;
 
2868         netdev->hard_start_xmit = myri10ge_xmit;
 
2869         netdev->get_stats = myri10ge_get_stats;
 
2870         netdev->base_addr = mgp->iomem_base;
 
2871         netdev->irq = pdev->irq;
 
2872         netdev->change_mtu = myri10ge_change_mtu;
 
2873         netdev->set_multicast_list = myri10ge_set_multicast_list;
 
2874         netdev->set_mac_address = myri10ge_set_mac_address;
 
2875         netdev->features = NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_TSO;
 
2877                 netdev->features |= NETIF_F_HIGHDMA;
 
2878         netdev->poll = myri10ge_poll;
 
2879         netdev->weight = myri10ge_napi_weight;
 
2881         /* Save configuration space to be restored if the
 
2882          * nic resets due to a parity error */
 
2883         myri10ge_save_state(mgp);
 
2885         /* Setup the watchdog timer */
 
2886         setup_timer(&mgp->watchdog_timer, myri10ge_watchdog_timer,
 
2887                     (unsigned long)mgp);
 
2889         SET_ETHTOOL_OPS(netdev, &myri10ge_ethtool_ops);
 
2890         INIT_WORK(&mgp->watchdog_work, myri10ge_watchdog, mgp);
 
2891         status = register_netdev(netdev);
 
2893                 dev_err(&pdev->dev, "register_netdev failed: %d\n", status);
 
2894                 goto abort_with_irq;
 
2896         dev_info(dev, "%s IRQ %d, tx bndry %d, fw %s, WC %s\n",
 
2897                  (mgp->msi_enabled ? "MSI" : "xPIC"),
 
2898                  pdev->irq, mgp->tx.boundary, mgp->fw_name,
 
2899                  (mgp->mtrr >= 0 ? "Enabled" : "Disabled"));
 
2904         free_irq(pdev->irq, mgp);
 
2905         if (mgp->msi_enabled)
 
2906                 pci_disable_msi(pdev);
 
2908 abort_with_firmware:
 
2909         myri10ge_dummy_rdma(mgp, 0);
 
2912         bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
 
2913         dma_free_coherent(&pdev->dev, bytes,
 
2914                           mgp->rx_done.entry, mgp->rx_done.bus);
 
2922                 mtrr_del(mgp->mtrr, mgp->iomem_base, mgp->board_span);
 
2924         dma_free_coherent(&pdev->dev, sizeof(*mgp->fw_stats),
 
2925                           mgp->fw_stats, mgp->fw_stats_bus);
 
2928         dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
 
2929                           mgp->cmd, mgp->cmd_bus);
 
2933         free_netdev(netdev);
 
2940  * Does what is necessary to shutdown one Myrinet device. Called
 
2941  *   once for each Myrinet card by the kernel when a module is
 
2944 static void myri10ge_remove(struct pci_dev *pdev)
 
2946         struct myri10ge_priv *mgp;
 
2947         struct net_device *netdev;
 
2950         mgp = pci_get_drvdata(pdev);
 
2954         flush_scheduled_work();
 
2956         unregister_netdev(netdev);
 
2957         free_irq(pdev->irq, mgp);
 
2958         if (mgp->msi_enabled)
 
2959                 pci_disable_msi(pdev);
 
2961         myri10ge_dummy_rdma(mgp, 0);
 
2963         bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
 
2964         dma_free_coherent(&pdev->dev, bytes,
 
2965                           mgp->rx_done.entry, mgp->rx_done.bus);
 
2971                 mtrr_del(mgp->mtrr, mgp->iomem_base, mgp->board_span);
 
2973         dma_free_coherent(&pdev->dev, sizeof(*mgp->fw_stats),
 
2974                           mgp->fw_stats, mgp->fw_stats_bus);
 
2976         dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
 
2977                           mgp->cmd, mgp->cmd_bus);
 
2979         free_netdev(netdev);
 
2980         pci_set_drvdata(pdev, NULL);
 
2983 #define PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E      0x0008
 
2985 static struct pci_device_id myri10ge_pci_tbl[] = {
 
2986         {PCI_DEVICE(PCI_VENDOR_ID_MYRICOM, PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E)},
 
2990 static struct pci_driver myri10ge_driver = {
 
2992         .probe = myri10ge_probe,
 
2993         .remove = myri10ge_remove,
 
2994         .id_table = myri10ge_pci_tbl,
 
2996         .suspend = myri10ge_suspend,
 
2997         .resume = myri10ge_resume,
 
3001 static __init int myri10ge_init_module(void)
 
3003         printk(KERN_INFO "%s: Version %s\n", myri10ge_driver.name,
 
3004                MYRI10GE_VERSION_STR);
 
3005         return pci_register_driver(&myri10ge_driver);
 
3008 module_init(myri10ge_init_module);
 
3010 static __exit void myri10ge_cleanup_module(void)
 
3012         pci_unregister_driver(&myri10ge_driver);
 
3015 module_exit(myri10ge_cleanup_module);