linux/drivers/net/ethernet/myricom/myri10ge/myri10ge.c
<<
>>
Prefs
   1/*************************************************************************
   2 * myri10ge.c: Myricom Myri-10G Ethernet driver.
   3 *
   4 * Copyright (C) 2005 - 2011 Myricom, Inc.
   5 * All rights reserved.
   6 *
   7 * Redistribution and use in source and binary forms, with or without
   8 * modification, are permitted provided that the following conditions
   9 * are met:
  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.
  18 *
  19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29 * POSSIBILITY OF SUCH DAMAGE.
  30 *
  31 *
  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
  35 *
  36 * Contact Information:
  37 *   <help@myri.com>
  38 *   Myricom, Inc., 325N Santa Anita Avenue, Arcadia, CA 91006
  39 *************************************************************************/
  40
  41#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  42
  43#include <linux/tcp.h>
  44#include <linux/netdevice.h>
  45#include <linux/skbuff.h>
  46#include <linux/string.h>
  47#include <linux/module.h>
  48#include <linux/pci.h>
  49#include <linux/dma-mapping.h>
  50#include <linux/etherdevice.h>
  51#include <linux/if_ether.h>
  52#include <linux/if_vlan.h>
  53#include <linux/dca.h>
  54#include <linux/ip.h>
  55#include <linux/inet.h>
  56#include <linux/in.h>
  57#include <linux/ethtool.h>
  58#include <linux/firmware.h>
  59#include <linux/delay.h>
  60#include <linux/timer.h>
  61#include <linux/vmalloc.h>
  62#include <linux/crc32.h>
  63#include <linux/moduleparam.h>
  64#include <linux/io.h>
  65#include <linux/log2.h>
  66#include <linux/slab.h>
  67#include <linux/prefetch.h>
  68#include <net/checksum.h>
  69#include <net/ip.h>
  70#include <net/tcp.h>
  71#include <asm/byteorder.h>
  72#include <asm/processor.h>
  73#include <net/busy_poll.h>
  74
  75#include "myri10ge_mcp.h"
  76#include "myri10ge_mcp_gen_header.h"
  77
  78#define MYRI10GE_VERSION_STR "1.5.3-1.534"
  79
  80MODULE_DESCRIPTION("Myricom 10G driver (10GbE)");
  81MODULE_AUTHOR("Maintainer: help@myri.com");
  82MODULE_VERSION(MYRI10GE_VERSION_STR);
  83MODULE_LICENSE("Dual BSD/GPL");
  84
  85#define MYRI10GE_MAX_ETHER_MTU 9014
  86
  87#define MYRI10GE_ETH_STOPPED 0
  88#define MYRI10GE_ETH_STOPPING 1
  89#define MYRI10GE_ETH_STARTING 2
  90#define MYRI10GE_ETH_RUNNING 3
  91#define MYRI10GE_ETH_OPEN_FAILED 4
  92
  93#define MYRI10GE_EEPROM_STRINGS_SIZE 256
  94#define MYRI10GE_MAX_SEND_DESC_TSO ((65536 / 2048) * 2)
  95
  96#define MYRI10GE_NO_CONFIRM_DATA htonl(0xffffffff)
  97#define MYRI10GE_NO_RESPONSE_RESULT 0xffffffff
  98
  99#define MYRI10GE_ALLOC_ORDER 0
 100#define MYRI10GE_ALLOC_SIZE ((1 << MYRI10GE_ALLOC_ORDER) * PAGE_SIZE)
 101#define MYRI10GE_MAX_FRAGS_PER_FRAME (MYRI10GE_MAX_ETHER_MTU/MYRI10GE_ALLOC_SIZE + 1)
 102
 103#define MYRI10GE_MAX_SLICES 32
 104
 105struct myri10ge_rx_buffer_state {
 106        struct page *page;
 107        int page_offset;
 108        DEFINE_DMA_UNMAP_ADDR(bus);
 109        DEFINE_DMA_UNMAP_LEN(len);
 110};
 111
 112struct myri10ge_tx_buffer_state {
 113        struct sk_buff *skb;
 114        int last;
 115        DEFINE_DMA_UNMAP_ADDR(bus);
 116        DEFINE_DMA_UNMAP_LEN(len);
 117};
 118
 119struct myri10ge_cmd {
 120        u32 data0;
 121        u32 data1;
 122        u32 data2;
 123};
 124
 125struct myri10ge_rx_buf {
 126        struct mcp_kreq_ether_recv __iomem *lanai;      /* lanai ptr for recv ring */
 127        struct mcp_kreq_ether_recv *shadow;     /* host shadow of recv ring */
 128        struct myri10ge_rx_buffer_state *info;
 129        struct page *page;
 130        dma_addr_t bus;
 131        int page_offset;
 132        int cnt;
 133        int fill_cnt;
 134        int alloc_fail;
 135        int mask;               /* number of rx slots -1 */
 136        int watchdog_needed;
 137};
 138
 139struct myri10ge_tx_buf {
 140        struct mcp_kreq_ether_send __iomem *lanai;      /* lanai ptr for sendq */
 141        __be32 __iomem *send_go;        /* "go" doorbell ptr */
 142        __be32 __iomem *send_stop;      /* "stop" doorbell ptr */
 143        struct mcp_kreq_ether_send *req_list;   /* host shadow of sendq */
 144        char *req_bytes;
 145        struct myri10ge_tx_buffer_state *info;
 146        int mask;               /* number of transmit slots -1  */
 147        int req ____cacheline_aligned;  /* transmit slots submitted     */
 148        int pkt_start;          /* packets started */
 149        int stop_queue;
 150        int linearized;
 151        int done ____cacheline_aligned; /* transmit slots completed     */
 152        int pkt_done;           /* packets completed */
 153        int wake_queue;
 154        int queue_active;
 155};
 156
 157struct myri10ge_rx_done {
 158        struct mcp_slot *entry;
 159        dma_addr_t bus;
 160        int cnt;
 161        int idx;
 162};
 163
 164struct myri10ge_slice_netstats {
 165        unsigned long rx_packets;
 166        unsigned long tx_packets;
 167        unsigned long rx_bytes;
 168        unsigned long tx_bytes;
 169        unsigned long rx_dropped;
 170        unsigned long tx_dropped;
 171};
 172
 173struct myri10ge_slice_state {
 174        struct myri10ge_tx_buf tx;      /* transmit ring        */
 175        struct myri10ge_rx_buf rx_small;
 176        struct myri10ge_rx_buf rx_big;
 177        struct myri10ge_rx_done rx_done;
 178        struct net_device *dev;
 179        struct napi_struct napi;
 180        struct myri10ge_priv *mgp;
 181        struct myri10ge_slice_netstats stats;
 182        __be32 __iomem *irq_claim;
 183        struct mcp_irq_data *fw_stats;
 184        dma_addr_t fw_stats_bus;
 185        int watchdog_tx_done;
 186        int watchdog_tx_req;
 187        int watchdog_rx_done;
 188        int stuck;
 189#ifdef CONFIG_MYRI10GE_DCA
 190        int cached_dca_tag;
 191        int cpu;
 192        __be32 __iomem *dca_tag;
 193#endif
 194        char irq_desc[32];
 195};
 196
 197struct myri10ge_priv {
 198        struct myri10ge_slice_state *ss;
 199        int tx_boundary;        /* boundary transmits cannot cross */
 200        int num_slices;
 201        int running;            /* running?             */
 202        int small_bytes;
 203        int big_bytes;
 204        int max_intr_slots;
 205        struct net_device *dev;
 206        u8 __iomem *sram;
 207        int sram_size;
 208        unsigned long board_span;
 209        unsigned long iomem_base;
 210        __be32 __iomem *irq_deassert;
 211        char *mac_addr_string;
 212        struct mcp_cmd_response *cmd;
 213        dma_addr_t cmd_bus;
 214        struct pci_dev *pdev;
 215        int msi_enabled;
 216        int msix_enabled;
 217        struct msix_entry *msix_vectors;
 218#ifdef CONFIG_MYRI10GE_DCA
 219        int dca_enabled;
 220        int relaxed_order;
 221#endif
 222        u32 link_state;
 223        unsigned int rdma_tags_available;
 224        int intr_coal_delay;
 225        __be32 __iomem *intr_coal_delay_ptr;
 226        int wc_cookie;
 227        int down_cnt;
 228        wait_queue_head_t down_wq;
 229        struct work_struct watchdog_work;
 230        struct timer_list watchdog_timer;
 231        int watchdog_resets;
 232        int watchdog_pause;
 233        int pause;
 234        bool fw_name_allocated;
 235        char *fw_name;
 236        char eeprom_strings[MYRI10GE_EEPROM_STRINGS_SIZE];
 237        char *product_code_string;
 238        char fw_version[128];
 239        int fw_ver_major;
 240        int fw_ver_minor;
 241        int fw_ver_tiny;
 242        int adopted_rx_filter_bug;
 243        u8 mac_addr[ETH_ALEN];          /* eeprom mac address */
 244        unsigned long serial_number;
 245        int vendor_specific_offset;
 246        int fw_multicast_support;
 247        u32 features;
 248        u32 max_tso6;
 249        u32 read_dma;
 250        u32 write_dma;
 251        u32 read_write_dma;
 252        u32 link_changes;
 253        u32 msg_enable;
 254        unsigned int board_number;
 255        int rebooted;
 256};
 257
 258static char *myri10ge_fw_unaligned = "myri10ge_ethp_z8e.dat";
 259static char *myri10ge_fw_aligned = "myri10ge_eth_z8e.dat";
 260static char *myri10ge_fw_rss_unaligned = "myri10ge_rss_ethp_z8e.dat";
 261static char *myri10ge_fw_rss_aligned = "myri10ge_rss_eth_z8e.dat";
 262MODULE_FIRMWARE("myri10ge_ethp_z8e.dat");
 263MODULE_FIRMWARE("myri10ge_eth_z8e.dat");
 264MODULE_FIRMWARE("myri10ge_rss_ethp_z8e.dat");
 265MODULE_FIRMWARE("myri10ge_rss_eth_z8e.dat");
 266
 267/* Careful: must be accessed under kernel_param_lock() */
 268static char *myri10ge_fw_name = NULL;
 269module_param(myri10ge_fw_name, charp, 0644);
 270MODULE_PARM_DESC(myri10ge_fw_name, "Firmware image name");
 271
 272#define MYRI10GE_MAX_BOARDS 8
 273static char *myri10ge_fw_names[MYRI10GE_MAX_BOARDS] =
 274    {[0 ... (MYRI10GE_MAX_BOARDS - 1)] = NULL };
 275module_param_array_named(myri10ge_fw_names, myri10ge_fw_names, charp, NULL,
 276                         0444);
 277MODULE_PARM_DESC(myri10ge_fw_names, "Firmware image names per board");
 278
 279static int myri10ge_ecrc_enable = 1;
 280module_param(myri10ge_ecrc_enable, int, 0444);
 281MODULE_PARM_DESC(myri10ge_ecrc_enable, "Enable Extended CRC on PCI-E");
 282
 283static int myri10ge_small_bytes = -1;   /* -1 == auto */
 284module_param(myri10ge_small_bytes, int, 0644);
 285MODULE_PARM_DESC(myri10ge_small_bytes, "Threshold of small packets");
 286
 287static int myri10ge_msi = 1;    /* enable msi by default */
 288module_param(myri10ge_msi, int, 0644);
 289MODULE_PARM_DESC(myri10ge_msi, "Enable Message Signalled Interrupts");
 290
 291static int myri10ge_intr_coal_delay = 75;
 292module_param(myri10ge_intr_coal_delay, int, 0444);
 293MODULE_PARM_DESC(myri10ge_intr_coal_delay, "Interrupt coalescing delay");
 294
 295static int myri10ge_flow_control = 1;
 296module_param(myri10ge_flow_control, int, 0444);
 297MODULE_PARM_DESC(myri10ge_flow_control, "Pause parameter");
 298
 299static int myri10ge_deassert_wait = 1;
 300module_param(myri10ge_deassert_wait, int, 0644);
 301MODULE_PARM_DESC(myri10ge_deassert_wait,
 302                 "Wait when deasserting legacy interrupts");
 303
 304static int myri10ge_force_firmware = 0;
 305module_param(myri10ge_force_firmware, int, 0444);
 306MODULE_PARM_DESC(myri10ge_force_firmware,
 307                 "Force firmware to assume aligned completions");
 308
 309static int myri10ge_initial_mtu = MYRI10GE_MAX_ETHER_MTU - ETH_HLEN;
 310module_param(myri10ge_initial_mtu, int, 0444);
 311MODULE_PARM_DESC(myri10ge_initial_mtu, "Initial MTU");
 312
 313static int myri10ge_napi_weight = 64;
 314module_param(myri10ge_napi_weight, int, 0444);
 315MODULE_PARM_DESC(myri10ge_napi_weight, "Set NAPI weight");
 316
 317static int myri10ge_watchdog_timeout = 1;
 318module_param(myri10ge_watchdog_timeout, int, 0444);
 319MODULE_PARM_DESC(myri10ge_watchdog_timeout, "Set watchdog timeout");
 320
 321static int myri10ge_max_irq_loops = 1048576;
 322module_param(myri10ge_max_irq_loops, int, 0444);
 323MODULE_PARM_DESC(myri10ge_max_irq_loops,
 324                 "Set stuck legacy IRQ detection threshold");
 325
 326#define MYRI10GE_MSG_DEFAULT NETIF_MSG_LINK
 327
 328static int myri10ge_debug = -1; /* defaults above */
 329module_param(myri10ge_debug, int, 0);
 330MODULE_PARM_DESC(myri10ge_debug, "Debug level (0=none,...,16=all)");
 331
 332static int myri10ge_fill_thresh = 256;
 333module_param(myri10ge_fill_thresh, int, 0644);
 334MODULE_PARM_DESC(myri10ge_fill_thresh, "Number of empty rx slots allowed");
 335
 336static int myri10ge_reset_recover = 1;
 337
 338static int myri10ge_max_slices = 1;
 339module_param(myri10ge_max_slices, int, 0444);
 340MODULE_PARM_DESC(myri10ge_max_slices, "Max tx/rx queues");
 341
 342static int myri10ge_rss_hash = MXGEFW_RSS_HASH_TYPE_SRC_DST_PORT;
 343module_param(myri10ge_rss_hash, int, 0444);
 344MODULE_PARM_DESC(myri10ge_rss_hash, "Type of RSS hashing to do");
 345
 346static int myri10ge_dca = 1;
 347module_param(myri10ge_dca, int, 0444);
 348MODULE_PARM_DESC(myri10ge_dca, "Enable DCA if possible");
 349
 350#define MYRI10GE_FW_OFFSET 1024*1024
 351#define MYRI10GE_HIGHPART_TO_U32(X) \
 352(sizeof (X) == 8) ? ((u32)((u64)(X) >> 32)) : (0)
 353#define MYRI10GE_LOWPART_TO_U32(X) ((u32)(X))
 354
 355#define myri10ge_pio_copy(to,from,size) __iowrite64_copy(to,from,size/8)
 356
 357static void myri10ge_set_multicast_list(struct net_device *dev);
 358static netdev_tx_t myri10ge_sw_tso(struct sk_buff *skb,
 359                                         struct net_device *dev);
 360
 361static inline void put_be32(__be32 val, __be32 __iomem * p)
 362{
 363        __raw_writel((__force __u32) val, (__force void __iomem *)p);
 364}
 365
 366static void myri10ge_get_stats(struct net_device *dev,
 367                               struct rtnl_link_stats64 *stats);
 368
 369static void set_fw_name(struct myri10ge_priv *mgp, char *name, bool allocated)
 370{
 371        if (mgp->fw_name_allocated)
 372                kfree(mgp->fw_name);
 373        mgp->fw_name = name;
 374        mgp->fw_name_allocated = allocated;
 375}
 376
 377static int
 378myri10ge_send_cmd(struct myri10ge_priv *mgp, u32 cmd,
 379                  struct myri10ge_cmd *data, int atomic)
 380{
 381        struct mcp_cmd *buf;
 382        char buf_bytes[sizeof(*buf) + 8];
 383        struct mcp_cmd_response *response = mgp->cmd;
 384        char __iomem *cmd_addr = mgp->sram + MXGEFW_ETH_CMD;
 385        u32 dma_low, dma_high, result, value;
 386        int sleep_total = 0;
 387
 388        /* ensure buf is aligned to 8 bytes */
 389        buf = (struct mcp_cmd *)ALIGN((unsigned long)buf_bytes, 8);
 390
 391        buf->data0 = htonl(data->data0);
 392        buf->data1 = htonl(data->data1);
 393        buf->data2 = htonl(data->data2);
 394        buf->cmd = htonl(cmd);
 395        dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
 396        dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
 397
 398        buf->response_addr.low = htonl(dma_low);
 399        buf->response_addr.high = htonl(dma_high);
 400        response->result = htonl(MYRI10GE_NO_RESPONSE_RESULT);
 401        mb();
 402        myri10ge_pio_copy(cmd_addr, buf, sizeof(*buf));
 403
 404        /* wait up to 15ms. Longest command is the DMA benchmark,
 405         * which is capped at 5ms, but runs from a timeout handler
 406         * that runs every 7.8ms. So a 15ms timeout leaves us with
 407         * a 2.2ms margin
 408         */
 409        if (atomic) {
 410                /* if atomic is set, do not sleep,
 411                 * and try to get the completion quickly
 412                 * (1ms will be enough for those commands) */
 413                for (sleep_total = 0;
 414                     sleep_total < 1000 &&
 415                     response->result == htonl(MYRI10GE_NO_RESPONSE_RESULT);
 416                     sleep_total += 10) {
 417                        udelay(10);
 418                        mb();
 419                }
 420        } else {
 421                /* use msleep for most command */
 422                for (sleep_total = 0;
 423                     sleep_total < 15 &&
 424                     response->result == htonl(MYRI10GE_NO_RESPONSE_RESULT);
 425                     sleep_total++)
 426                        msleep(1);
 427        }
 428
 429        result = ntohl(response->result);
 430        value = ntohl(response->data);
 431        if (result != MYRI10GE_NO_RESPONSE_RESULT) {
 432                if (result == 0) {
 433                        data->data0 = value;
 434                        return 0;
 435                } else if (result == MXGEFW_CMD_UNKNOWN) {
 436                        return -ENOSYS;
 437                } else if (result == MXGEFW_CMD_ERROR_UNALIGNED) {
 438                        return -E2BIG;
 439                } else if (result == MXGEFW_CMD_ERROR_RANGE &&
 440                           cmd == MXGEFW_CMD_ENABLE_RSS_QUEUES &&
 441                           (data->
 442                            data1 & MXGEFW_SLICE_ENABLE_MULTIPLE_TX_QUEUES) !=
 443                           0) {
 444                        return -ERANGE;
 445                } else {
 446                        dev_err(&mgp->pdev->dev,
 447                                "command %d failed, result = %d\n",
 448                                cmd, result);
 449                        return -ENXIO;
 450                }
 451        }
 452
 453        dev_err(&mgp->pdev->dev, "command %d timed out, result = %d\n",
 454                cmd, result);
 455        return -EAGAIN;
 456}
 457
 458/*
 459 * The eeprom strings on the lanaiX have the format
 460 * SN=x\0
 461 * MAC=x:x:x:x:x:x\0
 462 * PT:ddd mmm xx xx:xx:xx xx\0
 463 * PV:ddd mmm xx xx:xx:xx xx\0
 464 */
 465static int myri10ge_read_mac_addr(struct myri10ge_priv *mgp)
 466{
 467        char *ptr, *limit;
 468        int i;
 469
 470        ptr = mgp->eeprom_strings;
 471        limit = mgp->eeprom_strings + MYRI10GE_EEPROM_STRINGS_SIZE;
 472
 473        while (*ptr != '\0' && ptr < limit) {
 474                if (memcmp(ptr, "MAC=", 4) == 0) {
 475                        ptr += 4;
 476                        mgp->mac_addr_string = ptr;
 477                        for (i = 0; i < 6; i++) {
 478                                if ((ptr + 2) > limit)
 479                                        goto abort;
 480                                mgp->mac_addr[i] =
 481                                    simple_strtoul(ptr, &ptr, 16);
 482                                ptr += 1;
 483                        }
 484                }
 485                if (memcmp(ptr, "PC=", 3) == 0) {
 486                        ptr += 3;
 487                        mgp->product_code_string = ptr;
 488                }
 489                if (memcmp((const void *)ptr, "SN=", 3) == 0) {
 490                        ptr += 3;
 491                        mgp->serial_number = simple_strtoul(ptr, &ptr, 10);
 492                }
 493                while (ptr < limit && *ptr++) ;
 494        }
 495
 496        return 0;
 497
 498abort:
 499        dev_err(&mgp->pdev->dev, "failed to parse eeprom_strings\n");
 500        return -ENXIO;
 501}
 502
 503/*
 504 * Enable or disable periodic RDMAs from the host to make certain
 505 * chipsets resend dropped PCIe messages
 506 */
 507
 508static void myri10ge_dummy_rdma(struct myri10ge_priv *mgp, int enable)
 509{
 510        char __iomem *submit;
 511        __be32 buf[16] __attribute__ ((__aligned__(8)));
 512        u32 dma_low, dma_high;
 513        int i;
 514
 515        /* clear confirmation addr */
 516        mgp->cmd->data = 0;
 517        mb();
 518
 519        /* send a rdma command to the PCIe engine, and wait for the
 520         * response in the confirmation address.  The firmware should
 521         * write a -1 there to indicate it is alive and well
 522         */
 523        dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
 524        dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
 525
 526        buf[0] = htonl(dma_high);       /* confirm addr MSW */
 527        buf[1] = htonl(dma_low);        /* confirm addr LSW */
 528        buf[2] = MYRI10GE_NO_CONFIRM_DATA;      /* confirm data */
 529        buf[3] = htonl(dma_high);       /* dummy addr MSW */
 530        buf[4] = htonl(dma_low);        /* dummy addr LSW */
 531        buf[5] = htonl(enable); /* enable? */
 532
 533        submit = mgp->sram + MXGEFW_BOOT_DUMMY_RDMA;
 534
 535        myri10ge_pio_copy(submit, &buf, sizeof(buf));
 536        for (i = 0; mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA && i < 20; i++)
 537                msleep(1);
 538        if (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA)
 539                dev_err(&mgp->pdev->dev, "dummy rdma %s failed\n",
 540                        (enable ? "enable" : "disable"));
 541}
 542
 543static int
 544myri10ge_validate_firmware(struct myri10ge_priv *mgp,
 545                           struct mcp_gen_header *hdr)
 546{
 547        struct device *dev = &mgp->pdev->dev;
 548
 549        /* check firmware type */
 550        if (ntohl(hdr->mcp_type) != MCP_TYPE_ETH) {
 551                dev_err(dev, "Bad firmware type: 0x%x\n", ntohl(hdr->mcp_type));
 552                return -EINVAL;
 553        }
 554
 555        /* save firmware version for ethtool */
 556        strncpy(mgp->fw_version, hdr->version, sizeof(mgp->fw_version));
 557        mgp->fw_version[sizeof(mgp->fw_version) - 1] = '\0';
 558
 559        sscanf(mgp->fw_version, "%d.%d.%d", &mgp->fw_ver_major,
 560               &mgp->fw_ver_minor, &mgp->fw_ver_tiny);
 561
 562        if (!(mgp->fw_ver_major == MXGEFW_VERSION_MAJOR &&
 563              mgp->fw_ver_minor == MXGEFW_VERSION_MINOR)) {
 564                dev_err(dev, "Found firmware version %s\n", mgp->fw_version);
 565                dev_err(dev, "Driver needs %d.%d\n", MXGEFW_VERSION_MAJOR,
 566                        MXGEFW_VERSION_MINOR);
 567                return -EINVAL;
 568        }
 569        return 0;
 570}
 571
 572static int myri10ge_load_hotplug_firmware(struct myri10ge_priv *mgp, u32 * size)
 573{
 574        unsigned crc, reread_crc;
 575        const struct firmware *fw;
 576        struct device *dev = &mgp->pdev->dev;
 577        unsigned char *fw_readback;
 578        struct mcp_gen_header *hdr;
 579        size_t hdr_offset;
 580        int status;
 581        unsigned i;
 582
 583        if ((status = request_firmware(&fw, mgp->fw_name, dev)) < 0) {
 584                dev_err(dev, "Unable to load %s firmware image via hotplug\n",
 585                        mgp->fw_name);
 586                status = -EINVAL;
 587                goto abort_with_nothing;
 588        }
 589
 590        /* check size */
 591
 592        if (fw->size >= mgp->sram_size - MYRI10GE_FW_OFFSET ||
 593            fw->size < MCP_HEADER_PTR_OFFSET + 4) {
 594                dev_err(dev, "Firmware size invalid:%d\n", (int)fw->size);
 595                status = -EINVAL;
 596                goto abort_with_fw;
 597        }
 598
 599        /* check id */
 600        hdr_offset = ntohl(*(__be32 *) (fw->data + MCP_HEADER_PTR_OFFSET));
 601        if ((hdr_offset & 3) || hdr_offset + sizeof(*hdr) > fw->size) {
 602                dev_err(dev, "Bad firmware file\n");
 603                status = -EINVAL;
 604                goto abort_with_fw;
 605        }
 606        hdr = (void *)(fw->data + hdr_offset);
 607
 608        status = myri10ge_validate_firmware(mgp, hdr);
 609        if (status != 0)
 610                goto abort_with_fw;
 611
 612        crc = crc32(~0, fw->data, fw->size);
 613        for (i = 0; i < fw->size; i += 256) {
 614                myri10ge_pio_copy(mgp->sram + MYRI10GE_FW_OFFSET + i,
 615                                  fw->data + i,
 616                                  min(256U, (unsigned)(fw->size - i)));
 617                mb();
 618                readb(mgp->sram);
 619        }
 620        fw_readback = vmalloc(fw->size);
 621        if (!fw_readback) {
 622                status = -ENOMEM;
 623                goto abort_with_fw;
 624        }
 625        /* corruption checking is good for parity recovery and buggy chipset */
 626        memcpy_fromio(fw_readback, mgp->sram + MYRI10GE_FW_OFFSET, fw->size);
 627        reread_crc = crc32(~0, fw_readback, fw->size);
 628        vfree(fw_readback);
 629        if (crc != reread_crc) {
 630                dev_err(dev, "CRC failed(fw-len=%u), got 0x%x (expect 0x%x)\n",
 631                        (unsigned)fw->size, reread_crc, crc);
 632                status = -EIO;
 633                goto abort_with_fw;
 634        }
 635        *size = (u32) fw->size;
 636
 637abort_with_fw:
 638        release_firmware(fw);
 639
 640abort_with_nothing:
 641        return status;
 642}
 643
 644static int myri10ge_adopt_running_firmware(struct myri10ge_priv *mgp)
 645{
 646        struct mcp_gen_header *hdr;
 647        struct device *dev = &mgp->pdev->dev;
 648        const size_t bytes = sizeof(struct mcp_gen_header);
 649        size_t hdr_offset;
 650        int status;
 651
 652        /* find running firmware header */
 653        hdr_offset = swab32(readl(mgp->sram + MCP_HEADER_PTR_OFFSET));
 654
 655        if ((hdr_offset & 3) || hdr_offset + sizeof(*hdr) > mgp->sram_size) {
 656                dev_err(dev, "Running firmware has bad header offset (%d)\n",
 657                        (int)hdr_offset);
 658                return -EIO;
 659        }
 660
 661        /* copy header of running firmware from SRAM to host memory to
 662         * validate firmware */
 663        hdr = kmalloc(bytes, GFP_KERNEL);
 664        if (hdr == NULL)
 665                return -ENOMEM;
 666
 667        memcpy_fromio(hdr, mgp->sram + hdr_offset, bytes);
 668        status = myri10ge_validate_firmware(mgp, hdr);
 669        kfree(hdr);
 670
 671        /* check to see if adopted firmware has bug where adopting
 672         * it will cause broadcasts to be filtered unless the NIC
 673         * is kept in ALLMULTI mode */
 674        if (mgp->fw_ver_major == 1 && mgp->fw_ver_minor == 4 &&
 675            mgp->fw_ver_tiny >= 4 && mgp->fw_ver_tiny <= 11) {
 676                mgp->adopted_rx_filter_bug = 1;
 677                dev_warn(dev, "Adopting fw %d.%d.%d: "
 678                         "working around rx filter bug\n",
 679                         mgp->fw_ver_major, mgp->fw_ver_minor,
 680                         mgp->fw_ver_tiny);
 681        }
 682        return status;
 683}
 684
 685static int myri10ge_get_firmware_capabilities(struct myri10ge_priv *mgp)
 686{
 687        struct myri10ge_cmd cmd;
 688        int status;
 689
 690        /* probe for IPv6 TSO support */
 691        mgp->features = NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_TSO;
 692        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_MAX_TSO6_HDR_SIZE,
 693                                   &cmd, 0);
 694        if (status == 0) {
 695                mgp->max_tso6 = cmd.data0;
 696                mgp->features |= NETIF_F_TSO6;
 697        }
 698
 699        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_RX_RING_SIZE, &cmd, 0);
 700        if (status != 0) {
 701                dev_err(&mgp->pdev->dev,
 702                        "failed MXGEFW_CMD_GET_RX_RING_SIZE\n");
 703                return -ENXIO;
 704        }
 705
 706        mgp->max_intr_slots = 2 * (cmd.data0 / sizeof(struct mcp_dma_addr));
 707
 708        return 0;
 709}
 710
 711static int myri10ge_load_firmware(struct myri10ge_priv *mgp, int adopt)
 712{
 713        char __iomem *submit;
 714        __be32 buf[16] __attribute__ ((__aligned__(8)));
 715        u32 dma_low, dma_high, size;
 716        int status, i;
 717
 718        size = 0;
 719        status = myri10ge_load_hotplug_firmware(mgp, &size);
 720        if (status) {
 721                if (!adopt)
 722                        return status;
 723                dev_warn(&mgp->pdev->dev, "hotplug firmware loading failed\n");
 724
 725                /* Do not attempt to adopt firmware if there
 726                 * was a bad crc */
 727                if (status == -EIO)
 728                        return status;
 729
 730                status = myri10ge_adopt_running_firmware(mgp);
 731                if (status != 0) {
 732                        dev_err(&mgp->pdev->dev,
 733                                "failed to adopt running firmware\n");
 734                        return status;
 735                }
 736                dev_info(&mgp->pdev->dev,
 737                         "Successfully adopted running firmware\n");
 738                if (mgp->tx_boundary == 4096) {
 739                        dev_warn(&mgp->pdev->dev,
 740                                 "Using firmware currently running on NIC"
 741                                 ".  For optimal\n");
 742                        dev_warn(&mgp->pdev->dev,
 743                                 "performance consider loading optimized "
 744                                 "firmware\n");
 745                        dev_warn(&mgp->pdev->dev, "via hotplug\n");
 746                }
 747
 748                set_fw_name(mgp, "adopted", false);
 749                mgp->tx_boundary = 2048;
 750                myri10ge_dummy_rdma(mgp, 1);
 751                status = myri10ge_get_firmware_capabilities(mgp);
 752                return status;
 753        }
 754
 755        /* clear confirmation addr */
 756        mgp->cmd->data = 0;
 757        mb();
 758
 759        /* send a reload command to the bootstrap MCP, and wait for the
 760         *  response in the confirmation address.  The firmware should
 761         * write a -1 there to indicate it is alive and well
 762         */
 763        dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
 764        dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
 765
 766        buf[0] = htonl(dma_high);       /* confirm addr MSW */
 767        buf[1] = htonl(dma_low);        /* confirm addr LSW */
 768        buf[2] = MYRI10GE_NO_CONFIRM_DATA;      /* confirm data */
 769
 770        /* FIX: All newest firmware should un-protect the bottom of
 771         * the sram before handoff. However, the very first interfaces
 772         * do not. Therefore the handoff copy must skip the first 8 bytes
 773         */
 774        buf[3] = htonl(MYRI10GE_FW_OFFSET + 8); /* where the code starts */
 775        buf[4] = htonl(size - 8);       /* length of code */
 776        buf[5] = htonl(8);      /* where to copy to */
 777        buf[6] = htonl(0);      /* where to jump to */
 778
 779        submit = mgp->sram + MXGEFW_BOOT_HANDOFF;
 780
 781        myri10ge_pio_copy(submit, &buf, sizeof(buf));
 782        mb();
 783        msleep(1);
 784        mb();
 785        i = 0;
 786        while (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA && i < 9) {
 787                msleep(1 << i);
 788                i++;
 789        }
 790        if (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA) {
 791                dev_err(&mgp->pdev->dev, "handoff failed\n");
 792                return -ENXIO;
 793        }
 794        myri10ge_dummy_rdma(mgp, 1);
 795        status = myri10ge_get_firmware_capabilities(mgp);
 796
 797        return status;
 798}
 799
 800static int myri10ge_update_mac_address(struct myri10ge_priv *mgp, u8 * addr)
 801{
 802        struct myri10ge_cmd cmd;
 803        int status;
 804
 805        cmd.data0 = ((addr[0] << 24) | (addr[1] << 16)
 806                     | (addr[2] << 8) | addr[3]);
 807
 808        cmd.data1 = ((addr[4] << 8) | (addr[5]));
 809
 810        status = myri10ge_send_cmd(mgp, MXGEFW_SET_MAC_ADDRESS, &cmd, 0);
 811        return status;
 812}
 813
 814static int myri10ge_change_pause(struct myri10ge_priv *mgp, int pause)
 815{
 816        struct myri10ge_cmd cmd;
 817        int status, ctl;
 818
 819        ctl = pause ? MXGEFW_ENABLE_FLOW_CONTROL : MXGEFW_DISABLE_FLOW_CONTROL;
 820        status = myri10ge_send_cmd(mgp, ctl, &cmd, 0);
 821
 822        if (status) {
 823                netdev_err(mgp->dev, "Failed to set flow control mode\n");
 824                return status;
 825        }
 826        mgp->pause = pause;
 827        return 0;
 828}
 829
 830static void
 831myri10ge_change_promisc(struct myri10ge_priv *mgp, int promisc, int atomic)
 832{
 833        struct myri10ge_cmd cmd;
 834        int status, ctl;
 835
 836        ctl = promisc ? MXGEFW_ENABLE_PROMISC : MXGEFW_DISABLE_PROMISC;
 837        status = myri10ge_send_cmd(mgp, ctl, &cmd, atomic);
 838        if (status)
 839                netdev_err(mgp->dev, "Failed to set promisc mode\n");
 840}
 841
 842static int myri10ge_dma_test(struct myri10ge_priv *mgp, int test_type)
 843{
 844        struct myri10ge_cmd cmd;
 845        int status;
 846        u32 len;
 847        struct page *dmatest_page;
 848        dma_addr_t dmatest_bus;
 849        char *test = " ";
 850
 851        dmatest_page = alloc_page(GFP_KERNEL);
 852        if (!dmatest_page)
 853                return -ENOMEM;
 854        dmatest_bus = pci_map_page(mgp->pdev, dmatest_page, 0, PAGE_SIZE,
 855                                   DMA_BIDIRECTIONAL);
 856        if (unlikely(pci_dma_mapping_error(mgp->pdev, dmatest_bus))) {
 857                __free_page(dmatest_page);
 858                return -ENOMEM;
 859        }
 860
 861        /* Run a small DMA test.
 862         * The magic multipliers to the length tell the firmware
 863         * to do DMA read, write, or read+write tests.  The
 864         * results are returned in cmd.data0.  The upper 16
 865         * bits or the return is the number of transfers completed.
 866         * The lower 16 bits is the time in 0.5us ticks that the
 867         * transfers took to complete.
 868         */
 869
 870        len = mgp->tx_boundary;
 871
 872        cmd.data0 = MYRI10GE_LOWPART_TO_U32(dmatest_bus);
 873        cmd.data1 = MYRI10GE_HIGHPART_TO_U32(dmatest_bus);
 874        cmd.data2 = len * 0x10000;
 875        status = myri10ge_send_cmd(mgp, test_type, &cmd, 0);
 876        if (status != 0) {
 877                test = "read";
 878                goto abort;
 879        }
 880        mgp->read_dma = ((cmd.data0 >> 16) * len * 2) / (cmd.data0 & 0xffff);
 881        cmd.data0 = MYRI10GE_LOWPART_TO_U32(dmatest_bus);
 882        cmd.data1 = MYRI10GE_HIGHPART_TO_U32(dmatest_bus);
 883        cmd.data2 = len * 0x1;
 884        status = myri10ge_send_cmd(mgp, test_type, &cmd, 0);
 885        if (status != 0) {
 886                test = "write";
 887                goto abort;
 888        }
 889        mgp->write_dma = ((cmd.data0 >> 16) * len * 2) / (cmd.data0 & 0xffff);
 890
 891        cmd.data0 = MYRI10GE_LOWPART_TO_U32(dmatest_bus);
 892        cmd.data1 = MYRI10GE_HIGHPART_TO_U32(dmatest_bus);
 893        cmd.data2 = len * 0x10001;
 894        status = myri10ge_send_cmd(mgp, test_type, &cmd, 0);
 895        if (status != 0) {
 896                test = "read/write";
 897                goto abort;
 898        }
 899        mgp->read_write_dma = ((cmd.data0 >> 16) * len * 2 * 2) /
 900            (cmd.data0 & 0xffff);
 901
 902abort:
 903        pci_unmap_page(mgp->pdev, dmatest_bus, PAGE_SIZE, DMA_BIDIRECTIONAL);
 904        put_page(dmatest_page);
 905
 906        if (status != 0 && test_type != MXGEFW_CMD_UNALIGNED_TEST)
 907                dev_warn(&mgp->pdev->dev, "DMA %s benchmark failed: %d\n",
 908                         test, status);
 909
 910        return status;
 911}
 912
 913static int myri10ge_reset(struct myri10ge_priv *mgp)
 914{
 915        struct myri10ge_cmd cmd;
 916        struct myri10ge_slice_state *ss;
 917        int i, status;
 918        size_t bytes;
 919#ifdef CONFIG_MYRI10GE_DCA
 920        unsigned long dca_tag_off;
 921#endif
 922
 923        /* try to send a reset command to the card to see if it
 924         * is alive */
 925        memset(&cmd, 0, sizeof(cmd));
 926        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_RESET, &cmd, 0);
 927        if (status != 0) {
 928                dev_err(&mgp->pdev->dev, "failed reset\n");
 929                return -ENXIO;
 930        }
 931
 932        (void)myri10ge_dma_test(mgp, MXGEFW_DMA_TEST);
 933        /*
 934         * Use non-ndis mcp_slot (eg, 4 bytes total,
 935         * no toeplitz hash value returned.  Older firmware will
 936         * not understand this command, but will use the correct
 937         * sized mcp_slot, so we ignore error returns
 938         */
 939        cmd.data0 = MXGEFW_RSS_MCP_SLOT_TYPE_MIN;
 940        (void)myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_RSS_MCP_SLOT_TYPE, &cmd, 0);
 941
 942        /* Now exchange information about interrupts  */
 943
 944        bytes = mgp->max_intr_slots * sizeof(*mgp->ss[0].rx_done.entry);
 945        cmd.data0 = (u32) bytes;
 946        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_SIZE, &cmd, 0);
 947
 948        /*
 949         * Even though we already know how many slices are supported
 950         * via myri10ge_probe_slices() MXGEFW_CMD_GET_MAX_RSS_QUEUES
 951         * has magic side effects, and must be called after a reset.
 952         * It must be called prior to calling any RSS related cmds,
 953         * including assigning an interrupt queue for anything but
 954         * slice 0.  It must also be called *after*
 955         * MXGEFW_CMD_SET_INTRQ_SIZE, since the intrq size is used by
 956         * the firmware to compute offsets.
 957         */
 958
 959        if (mgp->num_slices > 1) {
 960
 961                /* ask the maximum number of slices it supports */
 962                status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_MAX_RSS_QUEUES,
 963                                           &cmd, 0);
 964                if (status != 0) {
 965                        dev_err(&mgp->pdev->dev,
 966                                "failed to get number of slices\n");
 967                }
 968
 969                /*
 970                 * MXGEFW_CMD_ENABLE_RSS_QUEUES must be called prior
 971                 * to setting up the interrupt queue DMA
 972                 */
 973
 974                cmd.data0 = mgp->num_slices;
 975                cmd.data1 = MXGEFW_SLICE_INTR_MODE_ONE_PER_SLICE;
 976                if (mgp->dev->real_num_tx_queues > 1)
 977                        cmd.data1 |= MXGEFW_SLICE_ENABLE_MULTIPLE_TX_QUEUES;
 978                status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ENABLE_RSS_QUEUES,
 979                                           &cmd, 0);
 980
 981                /* Firmware older than 1.4.32 only supports multiple
 982                 * RX queues, so if we get an error, first retry using a
 983                 * single TX queue before giving up */
 984                if (status != 0 && mgp->dev->real_num_tx_queues > 1) {
 985                        netif_set_real_num_tx_queues(mgp->dev, 1);
 986                        cmd.data0 = mgp->num_slices;
 987                        cmd.data1 = MXGEFW_SLICE_INTR_MODE_ONE_PER_SLICE;
 988                        status = myri10ge_send_cmd(mgp,
 989                                                   MXGEFW_CMD_ENABLE_RSS_QUEUES,
 990                                                   &cmd, 0);
 991                }
 992
 993                if (status != 0) {
 994                        dev_err(&mgp->pdev->dev,
 995                                "failed to set number of slices\n");
 996
 997                        return status;
 998                }
 999        }
1000        for (i = 0; i < mgp->num_slices; i++) {
1001                ss = &mgp->ss[i];
1002                cmd.data0 = MYRI10GE_LOWPART_TO_U32(ss->rx_done.bus);
1003                cmd.data1 = MYRI10GE_HIGHPART_TO_U32(ss->rx_done.bus);
1004                cmd.data2 = i;
1005                status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_DMA,
1006                                            &cmd, 0);
1007        }
1008
1009        status |=
1010            myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_IRQ_ACK_OFFSET, &cmd, 0);
1011        for (i = 0; i < mgp->num_slices; i++) {
1012                ss = &mgp->ss[i];
1013                ss->irq_claim =
1014                    (__iomem __be32 *) (mgp->sram + cmd.data0 + 8 * i);
1015        }
1016        status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_IRQ_DEASSERT_OFFSET,
1017                                    &cmd, 0);
1018        mgp->irq_deassert = (__iomem __be32 *) (mgp->sram + cmd.data0);
1019
1020        status |= myri10ge_send_cmd
1021            (mgp, MXGEFW_CMD_GET_INTR_COAL_DELAY_OFFSET, &cmd, 0);
1022        mgp->intr_coal_delay_ptr = (__iomem __be32 *) (mgp->sram + cmd.data0);
1023        if (status != 0) {
1024                dev_err(&mgp->pdev->dev, "failed set interrupt parameters\n");
1025                return status;
1026        }
1027        put_be32(htonl(mgp->intr_coal_delay), mgp->intr_coal_delay_ptr);
1028
1029#ifdef CONFIG_MYRI10GE_DCA
1030        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_DCA_OFFSET, &cmd, 0);
1031        dca_tag_off = cmd.data0;
1032        for (i = 0; i < mgp->num_slices; i++) {
1033                ss = &mgp->ss[i];
1034                if (status == 0) {
1035                        ss->dca_tag = (__iomem __be32 *)
1036                            (mgp->sram + dca_tag_off + 4 * i);
1037                } else {
1038                        ss->dca_tag = NULL;
1039                }
1040        }
1041#endif                          /* CONFIG_MYRI10GE_DCA */
1042
1043        /* reset mcp/driver shared state back to 0 */
1044
1045        mgp->link_changes = 0;
1046        for (i = 0; i < mgp->num_slices; i++) {
1047                ss = &mgp->ss[i];
1048
1049                memset(ss->rx_done.entry, 0, bytes);
1050                ss->tx.req = 0;
1051                ss->tx.done = 0;
1052                ss->tx.pkt_start = 0;
1053                ss->tx.pkt_done = 0;
1054                ss->rx_big.cnt = 0;
1055                ss->rx_small.cnt = 0;
1056                ss->rx_done.idx = 0;
1057                ss->rx_done.cnt = 0;
1058                ss->tx.wake_queue = 0;
1059                ss->tx.stop_queue = 0;
1060        }
1061
1062        status = myri10ge_update_mac_address(mgp, mgp->dev->dev_addr);
1063        myri10ge_change_pause(mgp, mgp->pause);
1064        myri10ge_set_multicast_list(mgp->dev);
1065        return status;
1066}
1067
1068#ifdef CONFIG_MYRI10GE_DCA
1069static int myri10ge_toggle_relaxed(struct pci_dev *pdev, int on)
1070{
1071        int ret;
1072        u16 ctl;
1073
1074        pcie_capability_read_word(pdev, PCI_EXP_DEVCTL, &ctl);
1075
1076        ret = (ctl & PCI_EXP_DEVCTL_RELAX_EN) >> 4;
1077        if (ret != on) {
1078                ctl &= ~PCI_EXP_DEVCTL_RELAX_EN;
1079                ctl |= (on << 4);
1080                pcie_capability_write_word(pdev, PCI_EXP_DEVCTL, ctl);
1081        }
1082        return ret;
1083}
1084
1085static void
1086myri10ge_write_dca(struct myri10ge_slice_state *ss, int cpu, int tag)
1087{
1088        ss->cached_dca_tag = tag;
1089        put_be32(htonl(tag), ss->dca_tag);
1090}
1091
1092static inline void myri10ge_update_dca(struct myri10ge_slice_state *ss)
1093{
1094        int cpu = get_cpu();
1095        int tag;
1096
1097        if (cpu != ss->cpu) {
1098                tag = dca3_get_tag(&ss->mgp->pdev->dev, cpu);
1099                if (ss->cached_dca_tag != tag)
1100                        myri10ge_write_dca(ss, cpu, tag);
1101                ss->cpu = cpu;
1102        }
1103        put_cpu();
1104}
1105
1106static void myri10ge_setup_dca(struct myri10ge_priv *mgp)
1107{
1108        int err, i;
1109        struct pci_dev *pdev = mgp->pdev;
1110
1111        if (mgp->ss[0].dca_tag == NULL || mgp->dca_enabled)
1112                return;
1113        if (!myri10ge_dca) {
1114                dev_err(&pdev->dev, "dca disabled by administrator\n");
1115                return;
1116        }
1117        err = dca_add_requester(&pdev->dev);
1118        if (err) {
1119                if (err != -ENODEV)
1120                        dev_err(&pdev->dev,
1121                                "dca_add_requester() failed, err=%d\n", err);
1122                return;
1123        }
1124        mgp->relaxed_order = myri10ge_toggle_relaxed(pdev, 0);
1125        mgp->dca_enabled = 1;
1126        for (i = 0; i < mgp->num_slices; i++) {
1127                mgp->ss[i].cpu = -1;
1128                mgp->ss[i].cached_dca_tag = -1;
1129                myri10ge_update_dca(&mgp->ss[i]);
1130        }
1131}
1132
1133static void myri10ge_teardown_dca(struct myri10ge_priv *mgp)
1134{
1135        struct pci_dev *pdev = mgp->pdev;
1136
1137        if (!mgp->dca_enabled)
1138                return;
1139        mgp->dca_enabled = 0;
1140        if (mgp->relaxed_order)
1141                myri10ge_toggle_relaxed(pdev, 1);
1142        dca_remove_requester(&pdev->dev);
1143}
1144
1145static int myri10ge_notify_dca_device(struct device *dev, void *data)
1146{
1147        struct myri10ge_priv *mgp;
1148        unsigned long event;
1149
1150        mgp = dev_get_drvdata(dev);
1151        event = *(unsigned long *)data;
1152
1153        if (event == DCA_PROVIDER_ADD)
1154                myri10ge_setup_dca(mgp);
1155        else if (event == DCA_PROVIDER_REMOVE)
1156                myri10ge_teardown_dca(mgp);
1157        return 0;
1158}
1159#endif                          /* CONFIG_MYRI10GE_DCA */
1160
1161static inline void
1162myri10ge_submit_8rx(struct mcp_kreq_ether_recv __iomem * dst,
1163                    struct mcp_kreq_ether_recv *src)
1164{
1165        __be32 low;
1166
1167        low = src->addr_low;
1168        src->addr_low = htonl(DMA_BIT_MASK(32));
1169        myri10ge_pio_copy(dst, src, 4 * sizeof(*src));
1170        mb();
1171        myri10ge_pio_copy(dst + 4, src + 4, 4 * sizeof(*src));
1172        mb();
1173        src->addr_low = low;
1174        put_be32(low, &dst->addr_low);
1175        mb();
1176}
1177
1178static inline void myri10ge_vlan_ip_csum(struct sk_buff *skb, __wsum hw_csum)
1179{
1180        struct vlan_hdr *vh = (struct vlan_hdr *)(skb->data);
1181
1182        if ((skb->protocol == htons(ETH_P_8021Q)) &&
1183            (vh->h_vlan_encapsulated_proto == htons(ETH_P_IP) ||
1184             vh->h_vlan_encapsulated_proto == htons(ETH_P_IPV6))) {
1185                skb->csum = hw_csum;
1186                skb->ip_summed = CHECKSUM_COMPLETE;
1187        }
1188}
1189
1190static void
1191myri10ge_alloc_rx_pages(struct myri10ge_priv *mgp, struct myri10ge_rx_buf *rx,
1192                        int bytes, int watchdog)
1193{
1194        struct page *page;
1195        dma_addr_t bus;
1196        int idx;
1197#if MYRI10GE_ALLOC_SIZE > 4096
1198        int end_offset;
1199#endif
1200
1201        if (unlikely(rx->watchdog_needed && !watchdog))
1202                return;
1203
1204        /* try to refill entire ring */
1205        while (rx->fill_cnt != (rx->cnt + rx->mask + 1)) {
1206                idx = rx->fill_cnt & rx->mask;
1207                if (rx->page_offset + bytes <= MYRI10GE_ALLOC_SIZE) {
1208                        /* we can use part of previous page */
1209                        get_page(rx->page);
1210                } else {
1211                        /* we need a new page */
1212                        page =
1213                            alloc_pages(GFP_ATOMIC | __GFP_COMP,
1214                                        MYRI10GE_ALLOC_ORDER);
1215                        if (unlikely(page == NULL)) {
1216                                if (rx->fill_cnt - rx->cnt < 16)
1217                                        rx->watchdog_needed = 1;
1218                                return;
1219                        }
1220
1221                        bus = pci_map_page(mgp->pdev, page, 0,
1222                                           MYRI10GE_ALLOC_SIZE,
1223                                           PCI_DMA_FROMDEVICE);
1224                        if (unlikely(pci_dma_mapping_error(mgp->pdev, bus))) {
1225                                __free_pages(page, MYRI10GE_ALLOC_ORDER);
1226                                if (rx->fill_cnt - rx->cnt < 16)
1227                                        rx->watchdog_needed = 1;
1228                                return;
1229                        }
1230
1231                        rx->page = page;
1232                        rx->page_offset = 0;
1233                        rx->bus = bus;
1234
1235                }
1236                rx->info[idx].page = rx->page;
1237                rx->info[idx].page_offset = rx->page_offset;
1238                /* note that this is the address of the start of the
1239                 * page */
1240                dma_unmap_addr_set(&rx->info[idx], bus, rx->bus);
1241                rx->shadow[idx].addr_low =
1242                    htonl(MYRI10GE_LOWPART_TO_U32(rx->bus) + rx->page_offset);
1243                rx->shadow[idx].addr_high =
1244                    htonl(MYRI10GE_HIGHPART_TO_U32(rx->bus));
1245
1246                /* start next packet on a cacheline boundary */
1247                rx->page_offset += SKB_DATA_ALIGN(bytes);
1248
1249#if MYRI10GE_ALLOC_SIZE > 4096
1250                /* don't cross a 4KB boundary */
1251                end_offset = rx->page_offset + bytes - 1;
1252                if ((unsigned)(rx->page_offset ^ end_offset) > 4095)
1253                        rx->page_offset = end_offset & ~4095;
1254#endif
1255                rx->fill_cnt++;
1256
1257                /* copy 8 descriptors to the firmware at a time */
1258                if ((idx & 7) == 7) {
1259                        myri10ge_submit_8rx(&rx->lanai[idx - 7],
1260                                            &rx->shadow[idx - 7]);
1261                }
1262        }
1263}
1264
1265static inline void
1266myri10ge_unmap_rx_page(struct pci_dev *pdev,
1267                       struct myri10ge_rx_buffer_state *info, int bytes)
1268{
1269        /* unmap the recvd page if we're the only or last user of it */
1270        if (bytes >= MYRI10GE_ALLOC_SIZE / 2 ||
1271            (info->page_offset + 2 * bytes) > MYRI10GE_ALLOC_SIZE) {
1272                pci_unmap_page(pdev, (dma_unmap_addr(info, bus)
1273                                      & ~(MYRI10GE_ALLOC_SIZE - 1)),
1274                               MYRI10GE_ALLOC_SIZE, PCI_DMA_FROMDEVICE);
1275        }
1276}
1277
1278/*
1279 * GRO does not support acceleration of tagged vlan frames, and
1280 * this NIC does not support vlan tag offload, so we must pop
1281 * the tag ourselves to be able to achieve GRO performance that
1282 * is comparable to LRO.
1283 */
1284
1285static inline void
1286myri10ge_vlan_rx(struct net_device *dev, void *addr, struct sk_buff *skb)
1287{
1288        u8 *va;
1289        struct vlan_ethhdr *veh;
1290        struct skb_frag_struct *frag;
1291        __wsum vsum;
1292
1293        va = addr;
1294        va += MXGEFW_PAD;
1295        veh = (struct vlan_ethhdr *)va;
1296        if ((dev->features & NETIF_F_HW_VLAN_CTAG_RX) ==
1297            NETIF_F_HW_VLAN_CTAG_RX &&
1298            veh->h_vlan_proto == htons(ETH_P_8021Q)) {
1299                /* fixup csum if needed */
1300                if (skb->ip_summed == CHECKSUM_COMPLETE) {
1301                        vsum = csum_partial(va + ETH_HLEN, VLAN_HLEN, 0);
1302                        skb->csum = csum_sub(skb->csum, vsum);
1303                }
1304                /* pop tag */
1305                __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(veh->h_vlan_TCI));
1306                memmove(va + VLAN_HLEN, va, 2 * ETH_ALEN);
1307                skb->len -= VLAN_HLEN;
1308                skb->data_len -= VLAN_HLEN;
1309                frag = skb_shinfo(skb)->frags;
1310                frag->page_offset += VLAN_HLEN;
1311                skb_frag_size_set(frag, skb_frag_size(frag) - VLAN_HLEN);
1312        }
1313}
1314
1315#define MYRI10GE_HLEN 64 /* Bytes to copy from page to skb linear memory */
1316
1317static inline int
1318myri10ge_rx_done(struct myri10ge_slice_state *ss, int len, __wsum csum)
1319{
1320        struct myri10ge_priv *mgp = ss->mgp;
1321        struct sk_buff *skb;
1322        struct skb_frag_struct *rx_frags;
1323        struct myri10ge_rx_buf *rx;
1324        int i, idx, remainder, bytes;
1325        struct pci_dev *pdev = mgp->pdev;
1326        struct net_device *dev = mgp->dev;
1327        u8 *va;
1328
1329        if (len <= mgp->small_bytes) {
1330                rx = &ss->rx_small;
1331                bytes = mgp->small_bytes;
1332        } else {
1333                rx = &ss->rx_big;
1334                bytes = mgp->big_bytes;
1335        }
1336
1337        len += MXGEFW_PAD;
1338        idx = rx->cnt & rx->mask;
1339        va = page_address(rx->info[idx].page) + rx->info[idx].page_offset;
1340        prefetch(va);
1341
1342        skb = napi_get_frags(&ss->napi);
1343        if (unlikely(skb == NULL)) {
1344                ss->stats.rx_dropped++;
1345                for (i = 0, remainder = len; remainder > 0; i++) {
1346                        myri10ge_unmap_rx_page(pdev, &rx->info[idx], bytes);
1347                        put_page(rx->info[idx].page);
1348                        rx->cnt++;
1349                        idx = rx->cnt & rx->mask;
1350                        remainder -= MYRI10GE_ALLOC_SIZE;
1351                }
1352                return 0;
1353        }
1354        rx_frags = skb_shinfo(skb)->frags;
1355        /* Fill skb_frag_struct(s) with data from our receive */
1356        for (i = 0, remainder = len; remainder > 0; i++) {
1357                myri10ge_unmap_rx_page(pdev, &rx->info[idx], bytes);
1358                skb_fill_page_desc(skb, i, rx->info[idx].page,
1359                                   rx->info[idx].page_offset,
1360                                   remainder < MYRI10GE_ALLOC_SIZE ?
1361                                   remainder : MYRI10GE_ALLOC_SIZE);
1362                rx->cnt++;
1363                idx = rx->cnt & rx->mask;
1364                remainder -= MYRI10GE_ALLOC_SIZE;
1365        }
1366
1367        /* remove padding */
1368        rx_frags[0].page_offset += MXGEFW_PAD;
1369        rx_frags[0].size -= MXGEFW_PAD;
1370        len -= MXGEFW_PAD;
1371
1372        skb->len = len;
1373        skb->data_len = len;
1374        skb->truesize += len;
1375        if (dev->features & NETIF_F_RXCSUM) {
1376                skb->ip_summed = CHECKSUM_COMPLETE;
1377                skb->csum = csum;
1378        }
1379        myri10ge_vlan_rx(mgp->dev, va, skb);
1380        skb_record_rx_queue(skb, ss - &mgp->ss[0]);
1381
1382        napi_gro_frags(&ss->napi);
1383
1384        return 1;
1385}
1386
1387static inline void
1388myri10ge_tx_done(struct myri10ge_slice_state *ss, int mcp_index)
1389{
1390        struct pci_dev *pdev = ss->mgp->pdev;
1391        struct myri10ge_tx_buf *tx = &ss->tx;
1392        struct netdev_queue *dev_queue;
1393        struct sk_buff *skb;
1394        int idx, len;
1395
1396        while (tx->pkt_done != mcp_index) {
1397                idx = tx->done & tx->mask;
1398                skb = tx->info[idx].skb;
1399
1400                /* Mark as free */
1401                tx->info[idx].skb = NULL;
1402                if (tx->info[idx].last) {
1403                        tx->pkt_done++;
1404                        tx->info[idx].last = 0;
1405                }
1406                tx->done++;
1407                len = dma_unmap_len(&tx->info[idx], len);
1408                dma_unmap_len_set(&tx->info[idx], len, 0);
1409                if (skb) {
1410                        ss->stats.tx_bytes += skb->len;
1411                        ss->stats.tx_packets++;
1412                        dev_kfree_skb_irq(skb);
1413                        if (len)
1414                                pci_unmap_single(pdev,
1415                                                 dma_unmap_addr(&tx->info[idx],
1416                                                                bus), len,
1417                                                 PCI_DMA_TODEVICE);
1418                } else {
1419                        if (len)
1420                                pci_unmap_page(pdev,
1421                                               dma_unmap_addr(&tx->info[idx],
1422                                                              bus), len,
1423                                               PCI_DMA_TODEVICE);
1424                }
1425        }
1426
1427        dev_queue = netdev_get_tx_queue(ss->dev, ss - ss->mgp->ss);
1428        /*
1429         * Make a minimal effort to prevent the NIC from polling an
1430         * idle tx queue.  If we can't get the lock we leave the queue
1431         * active. In this case, either a thread was about to start
1432         * using the queue anyway, or we lost a race and the NIC will
1433         * waste some of its resources polling an inactive queue for a
1434         * while.
1435         */
1436
1437        if ((ss->mgp->dev->real_num_tx_queues > 1) &&
1438            __netif_tx_trylock(dev_queue)) {
1439                if (tx->req == tx->done) {
1440                        tx->queue_active = 0;
1441                        put_be32(htonl(1), tx->send_stop);
1442                        mb();
1443                }
1444                __netif_tx_unlock(dev_queue);
1445        }
1446
1447        /* start the queue if we've stopped it */
1448        if (netif_tx_queue_stopped(dev_queue) &&
1449            tx->req - tx->done < (tx->mask >> 1) &&
1450            ss->mgp->running == MYRI10GE_ETH_RUNNING) {
1451                tx->wake_queue++;
1452                netif_tx_wake_queue(dev_queue);
1453        }
1454}
1455
1456static inline int
1457myri10ge_clean_rx_done(struct myri10ge_slice_state *ss, int budget)
1458{
1459        struct myri10ge_rx_done *rx_done = &ss->rx_done;
1460        struct myri10ge_priv *mgp = ss->mgp;
1461        unsigned long rx_bytes = 0;
1462        unsigned long rx_packets = 0;
1463        unsigned long rx_ok;
1464        int idx = rx_done->idx;
1465        int cnt = rx_done->cnt;
1466        int work_done = 0;
1467        u16 length;
1468        __wsum checksum;
1469
1470        while (rx_done->entry[idx].length != 0 && work_done < budget) {
1471                length = ntohs(rx_done->entry[idx].length);
1472                rx_done->entry[idx].length = 0;
1473                checksum = csum_unfold(rx_done->entry[idx].checksum);
1474                rx_ok = myri10ge_rx_done(ss, length, checksum);
1475                rx_packets += rx_ok;
1476                rx_bytes += rx_ok * (unsigned long)length;
1477                cnt++;
1478                idx = cnt & (mgp->max_intr_slots - 1);
1479                work_done++;
1480        }
1481        rx_done->idx = idx;
1482        rx_done->cnt = cnt;
1483        ss->stats.rx_packets += rx_packets;
1484        ss->stats.rx_bytes += rx_bytes;
1485
1486        /* restock receive rings if needed */
1487        if (ss->rx_small.fill_cnt - ss->rx_small.cnt < myri10ge_fill_thresh)
1488                myri10ge_alloc_rx_pages(mgp, &ss->rx_small,
1489                                        mgp->small_bytes + MXGEFW_PAD, 0);
1490        if (ss->rx_big.fill_cnt - ss->rx_big.cnt < myri10ge_fill_thresh)
1491                myri10ge_alloc_rx_pages(mgp, &ss->rx_big, mgp->big_bytes, 0);
1492
1493        return work_done;
1494}
1495
1496static inline void myri10ge_check_statblock(struct myri10ge_priv *mgp)
1497{
1498        struct mcp_irq_data *stats = mgp->ss[0].fw_stats;
1499
1500        if (unlikely(stats->stats_updated)) {
1501                unsigned link_up = ntohl(stats->link_up);
1502                if (mgp->link_state != link_up) {
1503                        mgp->link_state = link_up;
1504
1505                        if (mgp->link_state == MXGEFW_LINK_UP) {
1506                                netif_info(mgp, link, mgp->dev, "link up\n");
1507                                netif_carrier_on(mgp->dev);
1508                                mgp->link_changes++;
1509                        } else {
1510                                netif_info(mgp, link, mgp->dev, "link %s\n",
1511                                           (link_up == MXGEFW_LINK_MYRINET ?
1512                                            "mismatch (Myrinet detected)" :
1513                                            "down"));
1514                                netif_carrier_off(mgp->dev);
1515                                mgp->link_changes++;
1516                        }
1517                }
1518                if (mgp->rdma_tags_available !=
1519                    ntohl(stats->rdma_tags_available)) {
1520                        mgp->rdma_tags_available =
1521                            ntohl(stats->rdma_tags_available);
1522                        netdev_warn(mgp->dev, "RDMA timed out! %d tags left\n",
1523                                    mgp->rdma_tags_available);
1524                }
1525                mgp->down_cnt += stats->link_down;
1526                if (stats->link_down)
1527                        wake_up(&mgp->down_wq);
1528        }
1529}
1530
1531static int myri10ge_poll(struct napi_struct *napi, int budget)
1532{
1533        struct myri10ge_slice_state *ss =
1534            container_of(napi, struct myri10ge_slice_state, napi);
1535        int work_done;
1536
1537#ifdef CONFIG_MYRI10GE_DCA
1538        if (ss->mgp->dca_enabled)
1539                myri10ge_update_dca(ss);
1540#endif
1541        /* process as many rx events as NAPI will allow */
1542        work_done = myri10ge_clean_rx_done(ss, budget);
1543
1544        if (work_done < budget) {
1545                napi_complete_done(napi, work_done);
1546                put_be32(htonl(3), ss->irq_claim);
1547        }
1548        return work_done;
1549}
1550
1551static irqreturn_t myri10ge_intr(int irq, void *arg)
1552{
1553        struct myri10ge_slice_state *ss = arg;
1554        struct myri10ge_priv *mgp = ss->mgp;
1555        struct mcp_irq_data *stats = ss->fw_stats;
1556        struct myri10ge_tx_buf *tx = &ss->tx;
1557        u32 send_done_count;
1558        int i;
1559
1560        /* an interrupt on a non-zero receive-only slice is implicitly
1561         * valid  since MSI-X irqs are not shared */
1562        if ((mgp->dev->real_num_tx_queues == 1) && (ss != mgp->ss)) {
1563                napi_schedule(&ss->napi);
1564                return IRQ_HANDLED;
1565        }
1566
1567        /* make sure it is our IRQ, and that the DMA has finished */
1568        if (unlikely(!stats->valid))
1569                return IRQ_NONE;
1570
1571        /* low bit indicates receives are present, so schedule
1572         * napi poll handler */
1573        if (stats->valid & 1)
1574                napi_schedule(&ss->napi);
1575
1576        if (!mgp->msi_enabled && !mgp->msix_enabled) {
1577                put_be32(0, mgp->irq_deassert);
1578                if (!myri10ge_deassert_wait)
1579                        stats->valid = 0;
1580                mb();
1581        } else
1582                stats->valid = 0;
1583
1584        /* Wait for IRQ line to go low, if using INTx */
1585        i = 0;
1586        while (1) {
1587                i++;
1588                /* check for transmit completes and receives */
1589                send_done_count = ntohl(stats->send_done_count);
1590                if (send_done_count != tx->pkt_done)
1591                        myri10ge_tx_done(ss, (int)send_done_count);
1592                if (unlikely(i > myri10ge_max_irq_loops)) {
1593                        netdev_warn(mgp->dev, "irq stuck?\n");
1594                        stats->valid = 0;
1595                        schedule_work(&mgp->watchdog_work);
1596                }
1597                if (likely(stats->valid == 0))
1598                        break;
1599                cpu_relax();
1600                barrier();
1601        }
1602
1603        /* Only slice 0 updates stats */
1604        if (ss == mgp->ss)
1605                myri10ge_check_statblock(mgp);
1606
1607        put_be32(htonl(3), ss->irq_claim + 1);
1608        return IRQ_HANDLED;
1609}
1610
1611static int
1612myri10ge_get_link_ksettings(struct net_device *netdev,
1613                            struct ethtool_link_ksettings *cmd)
1614{
1615        struct myri10ge_priv *mgp = netdev_priv(netdev);
1616        char *ptr;
1617        int i;
1618
1619        cmd->base.autoneg = AUTONEG_DISABLE;
1620        cmd->base.speed = SPEED_10000;
1621        cmd->base.duplex = DUPLEX_FULL;
1622
1623        /*
1624         * parse the product code to deterimine the interface type
1625         * (CX4, XFP, Quad Ribbon Fiber) by looking at the character
1626         * after the 3rd dash in the driver's cached copy of the
1627         * EEPROM's product code string.
1628         */
1629        ptr = mgp->product_code_string;
1630        if (ptr == NULL) {
1631                netdev_err(netdev, "Missing product code\n");
1632                return 0;
1633        }
1634        for (i = 0; i < 3; i++, ptr++) {
1635                ptr = strchr(ptr, '-');
1636                if (ptr == NULL) {
1637                        netdev_err(netdev, "Invalid product code %s\n",
1638                                   mgp->product_code_string);
1639                        return 0;
1640                }
1641        }
1642        if (*ptr == '2')
1643                ptr++;
1644        if (*ptr == 'R' || *ptr == 'Q' || *ptr == 'S') {
1645                /* We've found either an XFP, quad ribbon fiber, or SFP+ */
1646                cmd->base.port = PORT_FIBRE;
1647                ethtool_link_ksettings_add_link_mode(cmd, supported, FIBRE);
1648                ethtool_link_ksettings_add_link_mode(cmd, advertising, FIBRE);
1649        } else {
1650                cmd->base.port = PORT_OTHER;
1651        }
1652
1653        return 0;
1654}
1655
1656static void
1657myri10ge_get_drvinfo(struct net_device *netdev, struct ethtool_drvinfo *info)
1658{
1659        struct myri10ge_priv *mgp = netdev_priv(netdev);
1660
1661        strlcpy(info->driver, "myri10ge", sizeof(info->driver));
1662        strlcpy(info->version, MYRI10GE_VERSION_STR, sizeof(info->version));
1663        strlcpy(info->fw_version, mgp->fw_version, sizeof(info->fw_version));
1664        strlcpy(info->bus_info, pci_name(mgp->pdev), sizeof(info->bus_info));
1665}
1666
1667static int
1668myri10ge_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *coal)
1669{
1670        struct myri10ge_priv *mgp = netdev_priv(netdev);
1671
1672        coal->rx_coalesce_usecs = mgp->intr_coal_delay;
1673        return 0;
1674}
1675
1676static int
1677myri10ge_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *coal)
1678{
1679        struct myri10ge_priv *mgp = netdev_priv(netdev);
1680
1681        mgp->intr_coal_delay = coal->rx_coalesce_usecs;
1682        put_be32(htonl(mgp->intr_coal_delay), mgp->intr_coal_delay_ptr);
1683        return 0;
1684}
1685
1686static void
1687myri10ge_get_pauseparam(struct net_device *netdev,
1688                        struct ethtool_pauseparam *pause)
1689{
1690        struct myri10ge_priv *mgp = netdev_priv(netdev);
1691
1692        pause->autoneg = 0;
1693        pause->rx_pause = mgp->pause;
1694        pause->tx_pause = mgp->pause;
1695}
1696
1697static int
1698myri10ge_set_pauseparam(struct net_device *netdev,
1699                        struct ethtool_pauseparam *pause)
1700{
1701        struct myri10ge_priv *mgp = netdev_priv(netdev);
1702
1703        if (pause->tx_pause != mgp->pause)
1704                return myri10ge_change_pause(mgp, pause->tx_pause);
1705        if (pause->rx_pause != mgp->pause)
1706                return myri10ge_change_pause(mgp, pause->rx_pause);
1707        if (pause->autoneg != 0)
1708                return -EINVAL;
1709        return 0;
1710}
1711
1712static void
1713myri10ge_get_ringparam(struct net_device *netdev,
1714                       struct ethtool_ringparam *ring)
1715{
1716        struct myri10ge_priv *mgp = netdev_priv(netdev);
1717
1718        ring->rx_mini_max_pending = mgp->ss[0].rx_small.mask + 1;
1719        ring->rx_max_pending = mgp->ss[0].rx_big.mask + 1;
1720        ring->rx_jumbo_max_pending = 0;
1721        ring->tx_max_pending = mgp->ss[0].tx.mask + 1;
1722        ring->rx_mini_pending = ring->rx_mini_max_pending;
1723        ring->rx_pending = ring->rx_max_pending;
1724        ring->rx_jumbo_pending = ring->rx_jumbo_max_pending;
1725        ring->tx_pending = ring->tx_max_pending;
1726}
1727
1728static const char myri10ge_gstrings_main_stats[][ETH_GSTRING_LEN] = {
1729        "rx_packets", "tx_packets", "rx_bytes", "tx_bytes", "rx_errors",
1730        "tx_errors", "rx_dropped", "tx_dropped", "multicast", "collisions",
1731        "rx_length_errors", "rx_over_errors", "rx_crc_errors",
1732        "rx_frame_errors", "rx_fifo_errors", "rx_missed_errors",
1733        "tx_aborted_errors", "tx_carrier_errors", "tx_fifo_errors",
1734        "tx_heartbeat_errors", "tx_window_errors",
1735        /* device-specific stats */
1736        "tx_boundary", "irq", "MSI", "MSIX",
1737        "read_dma_bw_MBs", "write_dma_bw_MBs", "read_write_dma_bw_MBs",
1738        "serial_number", "watchdog_resets",
1739#ifdef CONFIG_MYRI10GE_DCA
1740        "dca_capable_firmware", "dca_device_present",
1741#endif
1742        "link_changes", "link_up", "dropped_link_overflow",
1743        "dropped_link_error_or_filtered",
1744        "dropped_pause", "dropped_bad_phy", "dropped_bad_crc32",
1745        "dropped_unicast_filtered", "dropped_multicast_filtered",
1746        "dropped_runt", "dropped_overrun", "dropped_no_small_buffer",
1747        "dropped_no_big_buffer"
1748};
1749
1750static const char myri10ge_gstrings_slice_stats[][ETH_GSTRING_LEN] = {
1751        "----------- slice ---------",
1752        "tx_pkt_start", "tx_pkt_done", "tx_req", "tx_done",
1753        "rx_small_cnt", "rx_big_cnt",
1754        "wake_queue", "stop_queue", "tx_linearized",
1755};
1756
1757#define MYRI10GE_NET_STATS_LEN      21
1758#define MYRI10GE_MAIN_STATS_LEN  ARRAY_SIZE(myri10ge_gstrings_main_stats)
1759#define MYRI10GE_SLICE_STATS_LEN  ARRAY_SIZE(myri10ge_gstrings_slice_stats)
1760
1761static void
1762myri10ge_get_strings(struct net_device *netdev, u32 stringset, u8 * data)
1763{
1764        struct myri10ge_priv *mgp = netdev_priv(netdev);
1765        int i;
1766
1767        switch (stringset) {
1768        case ETH_SS_STATS:
1769                memcpy(data, *myri10ge_gstrings_main_stats,
1770                       sizeof(myri10ge_gstrings_main_stats));
1771                data += sizeof(myri10ge_gstrings_main_stats);
1772                for (i = 0; i < mgp->num_slices; i++) {
1773                        memcpy(data, *myri10ge_gstrings_slice_stats,
1774                               sizeof(myri10ge_gstrings_slice_stats));
1775                        data += sizeof(myri10ge_gstrings_slice_stats);
1776                }
1777                break;
1778        }
1779}
1780
1781static int myri10ge_get_sset_count(struct net_device *netdev, int sset)
1782{
1783        struct myri10ge_priv *mgp = netdev_priv(netdev);
1784
1785        switch (sset) {
1786        case ETH_SS_STATS:
1787                return MYRI10GE_MAIN_STATS_LEN +
1788                    mgp->num_slices * MYRI10GE_SLICE_STATS_LEN;
1789        default:
1790                return -EOPNOTSUPP;
1791        }
1792}
1793
1794static void
1795myri10ge_get_ethtool_stats(struct net_device *netdev,
1796                           struct ethtool_stats *stats, u64 * data)
1797{
1798        struct myri10ge_priv *mgp = netdev_priv(netdev);
1799        struct myri10ge_slice_state *ss;
1800        struct rtnl_link_stats64 link_stats;
1801        int slice;
1802        int i;
1803
1804        /* force stats update */
1805        memset(&link_stats, 0, sizeof(link_stats));
1806        (void)myri10ge_get_stats(netdev, &link_stats);
1807        for (i = 0; i < MYRI10GE_NET_STATS_LEN; i++)
1808                data[i] = ((u64 *)&link_stats)[i];
1809
1810        data[i++] = (unsigned int)mgp->tx_boundary;
1811        data[i++] = (unsigned int)mgp->pdev->irq;
1812        data[i++] = (unsigned int)mgp->msi_enabled;
1813        data[i++] = (unsigned int)mgp->msix_enabled;
1814        data[i++] = (unsigned int)mgp->read_dma;
1815        data[i++] = (unsigned int)mgp->write_dma;
1816        data[i++] = (unsigned int)mgp->read_write_dma;
1817        data[i++] = (unsigned int)mgp->serial_number;
1818        data[i++] = (unsigned int)mgp->watchdog_resets;
1819#ifdef CONFIG_MYRI10GE_DCA
1820        data[i++] = (unsigned int)(mgp->ss[0].dca_tag != NULL);
1821        data[i++] = (unsigned int)(mgp->dca_enabled);
1822#endif
1823        data[i++] = (unsigned int)mgp->link_changes;
1824
1825        /* firmware stats are useful only in the first slice */
1826        ss = &mgp->ss[0];
1827        data[i++] = (unsigned int)ntohl(ss->fw_stats->link_up);
1828        data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_link_overflow);
1829        data[i++] =
1830            (unsigned int)ntohl(ss->fw_stats->dropped_link_error_or_filtered);
1831        data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_pause);
1832        data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_bad_phy);
1833        data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_bad_crc32);
1834        data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_unicast_filtered);
1835        data[i++] =
1836            (unsigned int)ntohl(ss->fw_stats->dropped_multicast_filtered);
1837        data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_runt);
1838        data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_overrun);
1839        data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_no_small_buffer);
1840        data[i++] = (unsigned int)ntohl(ss->fw_stats->dropped_no_big_buffer);
1841
1842        for (slice = 0; slice < mgp->num_slices; slice++) {
1843                ss = &mgp->ss[slice];
1844                data[i++] = slice;
1845                data[i++] = (unsigned int)ss->tx.pkt_start;
1846                data[i++] = (unsigned int)ss->tx.pkt_done;
1847                data[i++] = (unsigned int)ss->tx.req;
1848                data[i++] = (unsigned int)ss->tx.done;
1849                data[i++] = (unsigned int)ss->rx_small.cnt;
1850                data[i++] = (unsigned int)ss->rx_big.cnt;
1851                data[i++] = (unsigned int)ss->tx.wake_queue;
1852                data[i++] = (unsigned int)ss->tx.stop_queue;
1853                data[i++] = (unsigned int)ss->tx.linearized;
1854        }
1855}
1856
1857static void myri10ge_set_msglevel(struct net_device *netdev, u32 value)
1858{
1859        struct myri10ge_priv *mgp = netdev_priv(netdev);
1860        mgp->msg_enable = value;
1861}
1862
1863static u32 myri10ge_get_msglevel(struct net_device *netdev)
1864{
1865        struct myri10ge_priv *mgp = netdev_priv(netdev);
1866        return mgp->msg_enable;
1867}
1868
1869/*
1870 * Use a low-level command to change the LED behavior. Rather than
1871 * blinking (which is the normal case), when identify is used, the
1872 * yellow LED turns solid.
1873 */
1874static int myri10ge_led(struct myri10ge_priv *mgp, int on)
1875{
1876        struct mcp_gen_header *hdr;
1877        struct device *dev = &mgp->pdev->dev;
1878        size_t hdr_off, pattern_off, hdr_len;
1879        u32 pattern = 0xfffffffe;
1880
1881        /* find running firmware header */
1882        hdr_off = swab32(readl(mgp->sram + MCP_HEADER_PTR_OFFSET));
1883        if ((hdr_off & 3) || hdr_off + sizeof(*hdr) > mgp->sram_size) {
1884                dev_err(dev, "Running firmware has bad header offset (%d)\n",
1885                        (int)hdr_off);
1886                return -EIO;
1887        }
1888        hdr_len = swab32(readl(mgp->sram + hdr_off +
1889                               offsetof(struct mcp_gen_header, header_length)));
1890        pattern_off = hdr_off + offsetof(struct mcp_gen_header, led_pattern);
1891        if (pattern_off >= (hdr_len + hdr_off)) {
1892                dev_info(dev, "Firmware does not support LED identification\n");
1893                return -EINVAL;
1894        }
1895        if (!on)
1896                pattern = swab32(readl(mgp->sram + pattern_off + 4));
1897        writel(swab32(pattern), mgp->sram + pattern_off);
1898        return 0;
1899}
1900
1901static int
1902myri10ge_phys_id(struct net_device *netdev, enum ethtool_phys_id_state state)
1903{
1904        struct myri10ge_priv *mgp = netdev_priv(netdev);
1905        int rc;
1906
1907        switch (state) {
1908        case ETHTOOL_ID_ACTIVE:
1909                rc = myri10ge_led(mgp, 1);
1910                break;
1911
1912        case ETHTOOL_ID_INACTIVE:
1913                rc =  myri10ge_led(mgp, 0);
1914                break;
1915
1916        default:
1917                rc = -EINVAL;
1918        }
1919
1920        return rc;
1921}
1922
1923static const struct ethtool_ops myri10ge_ethtool_ops = {
1924        .get_drvinfo = myri10ge_get_drvinfo,
1925        .get_coalesce = myri10ge_get_coalesce,
1926        .set_coalesce = myri10ge_set_coalesce,
1927        .get_pauseparam = myri10ge_get_pauseparam,
1928        .set_pauseparam = myri10ge_set_pauseparam,
1929        .get_ringparam = myri10ge_get_ringparam,
1930        .get_link = ethtool_op_get_link,
1931        .get_strings = myri10ge_get_strings,
1932        .get_sset_count = myri10ge_get_sset_count,
1933        .get_ethtool_stats = myri10ge_get_ethtool_stats,
1934        .set_msglevel = myri10ge_set_msglevel,
1935        .get_msglevel = myri10ge_get_msglevel,
1936        .set_phys_id = myri10ge_phys_id,
1937        .get_link_ksettings = myri10ge_get_link_ksettings,
1938};
1939
1940static int myri10ge_allocate_rings(struct myri10ge_slice_state *ss)
1941{
1942        struct myri10ge_priv *mgp = ss->mgp;
1943        struct myri10ge_cmd cmd;
1944        struct net_device *dev = mgp->dev;
1945        int tx_ring_size, rx_ring_size;
1946        int tx_ring_entries, rx_ring_entries;
1947        int i, slice, status;
1948        size_t bytes;
1949
1950        /* get ring sizes */
1951        slice = ss - mgp->ss;
1952        cmd.data0 = slice;
1953        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SEND_RING_SIZE, &cmd, 0);
1954        tx_ring_size = cmd.data0;
1955        cmd.data0 = slice;
1956        status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_RX_RING_SIZE, &cmd, 0);
1957        if (status != 0)
1958                return status;
1959        rx_ring_size = cmd.data0;
1960
1961        tx_ring_entries = tx_ring_size / sizeof(struct mcp_kreq_ether_send);
1962        rx_ring_entries = rx_ring_size / sizeof(struct mcp_dma_addr);
1963        ss->tx.mask = tx_ring_entries - 1;
1964        ss->rx_small.mask = ss->rx_big.mask = rx_ring_entries - 1;
1965
1966        status = -ENOMEM;
1967
1968        /* allocate the host shadow rings */
1969
1970        bytes = 8 + (MYRI10GE_MAX_SEND_DESC_TSO + 4)
1971            * sizeof(*ss->tx.req_list);
1972        ss->tx.req_bytes = kzalloc(bytes, GFP_KERNEL);
1973        if (ss->tx.req_bytes == NULL)
1974                goto abort_with_nothing;
1975
1976        /* ensure req_list entries are aligned to 8 bytes */
1977        ss->tx.req_list = (struct mcp_kreq_ether_send *)
1978            ALIGN((unsigned long)ss->tx.req_bytes, 8);
1979        ss->tx.queue_active = 0;
1980
1981        bytes = rx_ring_entries * sizeof(*ss->rx_small.shadow);
1982        ss->rx_small.shadow = kzalloc(bytes, GFP_KERNEL);
1983        if (ss->rx_small.shadow == NULL)
1984                goto abort_with_tx_req_bytes;
1985
1986        bytes = rx_ring_entries * sizeof(*ss->rx_big.shadow);
1987        ss->rx_big.shadow = kzalloc(bytes, GFP_KERNEL);
1988        if (ss->rx_big.shadow == NULL)
1989                goto abort_with_rx_small_shadow;
1990
1991        /* allocate the host info rings */
1992
1993        bytes = tx_ring_entries * sizeof(*ss->tx.info);
1994        ss->tx.info = kzalloc(bytes, GFP_KERNEL);
1995        if (ss->tx.info == NULL)
1996                goto abort_with_rx_big_shadow;
1997
1998        bytes = rx_ring_entries * sizeof(*ss->rx_small.info);
1999        ss->rx_small.info = kzalloc(bytes, GFP_KERNEL);
2000        if (ss->rx_small.info == NULL)
2001                goto abort_with_tx_info;
2002
2003        bytes = rx_ring_entries * sizeof(*ss->rx_big.info);
2004        ss->rx_big.info = kzalloc(bytes, GFP_KERNEL);
2005        if (ss->rx_big.info == NULL)
2006                goto abort_with_rx_small_info;
2007
2008        /* Fill the receive rings */
2009        ss->rx_big.cnt = 0;
2010        ss->rx_small.cnt = 0;
2011        ss->rx_big.fill_cnt = 0;
2012        ss->rx_small.fill_cnt = 0;
2013        ss->rx_small.page_offset = MYRI10GE_ALLOC_SIZE;
2014        ss->rx_big.page_offset = MYRI10GE_ALLOC_SIZE;
2015        ss->rx_small.watchdog_needed = 0;
2016        ss->rx_big.watchdog_needed = 0;
2017        if (mgp->small_bytes == 0) {
2018                ss->rx_small.fill_cnt = ss->rx_small.mask + 1;
2019        } else {
2020                myri10ge_alloc_rx_pages(mgp, &ss->rx_small,
2021                                        mgp->small_bytes + MXGEFW_PAD, 0);
2022        }
2023
2024        if (ss->rx_small.fill_cnt < ss->rx_small.mask + 1) {
2025                netdev_err(dev, "slice-%d: alloced only %d small bufs\n",
2026                           slice, ss->rx_small.fill_cnt);
2027                goto abort_with_rx_small_ring;
2028        }
2029
2030        myri10ge_alloc_rx_pages(mgp, &ss->rx_big, mgp->big_bytes, 0);
2031        if (ss->rx_big.fill_cnt < ss->rx_big.mask + 1) {
2032                netdev_err(dev, "slice-%d: alloced only %d big bufs\n",
2033                           slice, ss->rx_big.fill_cnt);
2034                goto abort_with_rx_big_ring;
2035        }
2036
2037        return 0;
2038
2039abort_with_rx_big_ring:
2040        for (i = ss->rx_big.cnt; i < ss->rx_big.fill_cnt; i++) {
2041                int idx = i & ss->rx_big.mask;
2042                myri10ge_unmap_rx_page(mgp->pdev, &ss->rx_big.info[idx],
2043                                       mgp->big_bytes);
2044                put_page(ss->rx_big.info[idx].page);
2045        }
2046
2047abort_with_rx_small_ring:
2048        if (mgp->small_bytes == 0)
2049                ss->rx_small.fill_cnt = ss->rx_small.cnt;
2050        for (i = ss->rx_small.cnt; i < ss->rx_small.fill_cnt; i++) {
2051                int idx = i & ss->rx_small.mask;
2052                myri10ge_unmap_rx_page(mgp->pdev, &ss->rx_small.info[idx],
2053                                       mgp->small_bytes + MXGEFW_PAD);
2054                put_page(ss->rx_small.info[idx].page);
2055        }
2056
2057        kfree(ss->rx_big.info);
2058
2059abort_with_rx_small_info:
2060        kfree(ss->rx_small.info);
2061
2062abort_with_tx_info:
2063        kfree(ss->tx.info);
2064
2065abort_with_rx_big_shadow:
2066        kfree(ss->rx_big.shadow);
2067
2068abort_with_rx_small_shadow:
2069        kfree(ss->rx_small.shadow);
2070
2071abort_with_tx_req_bytes:
2072        kfree(ss->tx.req_bytes);
2073        ss->tx.req_bytes = NULL;
2074        ss->tx.req_list = NULL;
2075
2076abort_with_nothing:
2077        return status;
2078}
2079
2080static void myri10ge_free_rings(struct myri10ge_slice_state *ss)
2081{
2082        struct myri10ge_priv *mgp = ss->mgp;
2083        struct sk_buff *skb;
2084        struct myri10ge_tx_buf *tx;
2085        int i, len, idx;
2086
2087        /* If not allocated, skip it */
2088        if (ss->tx.req_list == NULL)
2089                return;
2090
2091        for (i = ss->rx_big.cnt; i < ss->rx_big.fill_cnt; i++) {
2092                idx = i & ss->rx_big.mask;
2093                if (i == ss->rx_big.fill_cnt - 1)
2094                        ss->rx_big.info[idx].page_offset = MYRI10GE_ALLOC_SIZE;
2095                myri10ge_unmap_rx_page(mgp->pdev, &ss->rx_big.info[idx],
2096                                       mgp->big_bytes);
2097                put_page(ss->rx_big.info[idx].page);
2098        }
2099
2100        if (mgp->small_bytes == 0)
2101                ss->rx_small.fill_cnt = ss->rx_small.cnt;
2102        for (i = ss->rx_small.cnt; i < ss->rx_small.fill_cnt; i++) {
2103                idx = i & ss->rx_small.mask;
2104                if (i == ss->rx_small.fill_cnt - 1)
2105                        ss->rx_small.info[idx].page_offset =
2106                            MYRI10GE_ALLOC_SIZE;
2107                myri10ge_unmap_rx_page(mgp->pdev, &ss->rx_small.info[idx],
2108                                       mgp->small_bytes + MXGEFW_PAD);
2109                put_page(ss->rx_small.info[idx].page);
2110        }
2111        tx = &ss->tx;
2112        while (tx->done != tx->req) {
2113                idx = tx->done & tx->mask;
2114                skb = tx->info[idx].skb;
2115
2116                /* Mark as free */
2117                tx->info[idx].skb = NULL;
2118                tx->done++;
2119                len = dma_unmap_len(&tx->info[idx], len);
2120                dma_unmap_len_set(&tx->info[idx], len, 0);
2121                if (skb) {
2122                        ss->stats.tx_dropped++;
2123                        dev_kfree_skb_any(skb);
2124                        if (len)
2125                                pci_unmap_single(mgp->pdev,
2126                                                 dma_unmap_addr(&tx->info[idx],
2127                                                                bus), len,
2128                                                 PCI_DMA_TODEVICE);
2129                } else {
2130                        if (len)
2131                                pci_unmap_page(mgp->pdev,
2132                                               dma_unmap_addr(&tx->info[idx],
2133                                                              bus), len,
2134                                               PCI_DMA_TODEVICE);
2135                }
2136        }
2137        kfree(ss->rx_big.info);
2138
2139        kfree(ss->rx_small.info);
2140
2141        kfree(ss->tx.info);
2142
2143        kfree(ss->rx_big.shadow);
2144
2145        kfree(ss->rx_small.shadow);
2146
2147        kfree(ss->tx.req_bytes);
2148        ss->tx.req_bytes = NULL;
2149        ss->tx.req_list = NULL;
2150}
2151
2152static int myri10ge_request_irq(struct myri10ge_priv *mgp)
2153{
2154        struct pci_dev *pdev = mgp->pdev;
2155        struct myri10ge_slice_state *ss;
2156        struct net_device *netdev = mgp->dev;
2157        int i;
2158        int status;
2159
2160        mgp->msi_enabled = 0;
2161        mgp->msix_enabled = 0;
2162        status = 0;
2163        if (myri10ge_msi) {
2164                if (mgp->num_slices > 1) {
2165                        status = pci_enable_msix_range(pdev, mgp->msix_vectors,
2166                                        mgp->num_slices, mgp->num_slices);
2167                        if (status < 0) {
2168                                dev_err(&pdev->dev,
2169                                        "Error %d setting up MSI-X\n", status);
2170                                return status;
2171                        }
2172                        mgp->msix_enabled = 1;
2173                }
2174                if (mgp->msix_enabled == 0) {
2175                        status = pci_enable_msi(pdev);
2176                        if (status != 0) {
2177                                dev_err(&pdev->dev,
2178                                        "Error %d setting up MSI; falling back to xPIC\n",
2179                                        status);
2180                        } else {
2181                                mgp->msi_enabled = 1;
2182                        }
2183                }
2184        }
2185        if (mgp->msix_enabled) {
2186                for (i = 0; i < mgp->num_slices; i++) {
2187                        ss = &mgp->ss[i];
2188                        snprintf(ss->irq_desc, sizeof(ss->irq_desc),
2189                                 "%s:slice-%d", netdev->name, i);
2190                        status = request_irq(mgp->msix_vectors[i].vector,
2191                                             myri10ge_intr, 0, ss->irq_desc,
2192                                             ss);
2193                        if (status != 0) {
2194                                dev_err(&pdev->dev,
2195                                        "slice %d failed to allocate IRQ\n", i);
2196                                i--;
2197                                while (i >= 0) {
2198                                        free_irq(mgp->msix_vectors[i].vector,
2199                                                 &mgp->ss[i]);
2200                                        i--;
2201                                }
2202                                pci_disable_msix(pdev);
2203                                return status;
2204                        }
2205                }
2206        } else {
2207                status = request_irq(pdev->irq, myri10ge_intr, IRQF_SHARED,
2208                                     mgp->dev->name, &mgp->ss[0]);
2209                if (status != 0) {
2210                        dev_err(&pdev->dev, "failed to allocate IRQ\n");
2211                        if (mgp->msi_enabled)
2212                                pci_disable_msi(pdev);
2213                }
2214        }
2215        return status;
2216}
2217
2218static void myri10ge_free_irq(struct myri10ge_priv *mgp)
2219{
2220        struct pci_dev *pdev = mgp->pdev;
2221        int i;
2222
2223        if (mgp->msix_enabled) {
2224                for (i = 0; i < mgp->num_slices; i++)
2225                        free_irq(mgp->msix_vectors[i].vector, &mgp->ss[i]);
2226        } else {
2227                free_irq(pdev->irq, &mgp->ss[0]);
2228        }
2229        if (mgp->msi_enabled)
2230                pci_disable_msi(pdev);
2231        if (mgp->msix_enabled)
2232                pci_disable_msix(pdev);
2233}
2234
2235static int myri10ge_get_txrx(struct myri10ge_priv *mgp, int slice)
2236{
2237        struct myri10ge_cmd cmd;
2238        struct myri10ge_slice_state *ss;
2239        int status;
2240
2241        ss = &mgp->ss[slice];
2242        status = 0;
2243        if (slice == 0 || (mgp->dev->real_num_tx_queues > 1)) {
2244                cmd.data0 = slice;
2245                status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SEND_OFFSET,
2246                                           &cmd, 0);
2247                ss->tx.lanai = (struct mcp_kreq_ether_send __iomem *)
2248                    (mgp->sram + cmd.data0);
2249        }
2250        cmd.data0 = slice;
2251        status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SMALL_RX_OFFSET,
2252                                    &cmd, 0);
2253        ss->rx_small.lanai = (struct mcp_kreq_ether_recv __iomem *)
2254            (mgp->sram + cmd.data0);
2255
2256        cmd.data0 = slice;
2257        status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_BIG_RX_OFFSET, &cmd, 0);
2258        ss->rx_big.lanai = (struct mcp_kreq_ether_recv __iomem *)
2259            (mgp->sram + cmd.data0);
2260
2261        ss->tx.send_go = (__iomem __be32 *)
2262            (mgp->sram + MXGEFW_ETH_SEND_GO + 64 * slice);
2263        ss->tx.send_stop = (__iomem __be32 *)
2264            (mgp->sram + MXGEFW_ETH_SEND_STOP + 64 * slice);
2265        return status;
2266
2267}
2268
2269static int myri10ge_set_stats(struct myri10ge_priv *mgp, int slice)
2270{
2271        struct myri10ge_cmd cmd;
2272        struct myri10ge_slice_state *ss;
2273        int status;
2274
2275        ss = &mgp->ss[slice];
2276        cmd.data0 = MYRI10GE_LOWPART_TO_U32(ss->fw_stats_bus);
2277        cmd.data1 = MYRI10GE_HIGHPART_TO_U32(ss->fw_stats_bus);
2278        cmd.data2 = sizeof(struct mcp_irq_data) | (slice << 16);
2279        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_STATS_DMA_V2, &cmd, 0);
2280        if (status == -ENOSYS) {
2281                dma_addr_t bus = ss->fw_stats_bus;
2282                if (slice != 0)
2283                        return -EINVAL;
2284                bus += offsetof(struct mcp_irq_data, send_done_count);
2285                cmd.data0 = MYRI10GE_LOWPART_TO_U32(bus);
2286                cmd.data1 = MYRI10GE_HIGHPART_TO_U32(bus);
2287                status = myri10ge_send_cmd(mgp,
2288                                           MXGEFW_CMD_SET_STATS_DMA_OBSOLETE,
2289                                           &cmd, 0);
2290                /* Firmware cannot support multicast without STATS_DMA_V2 */
2291                mgp->fw_multicast_support = 0;
2292        } else {
2293                mgp->fw_multicast_support = 1;
2294        }
2295        return 0;
2296}
2297
2298static int myri10ge_open(struct net_device *dev)
2299{
2300        struct myri10ge_slice_state *ss;
2301        struct myri10ge_priv *mgp = netdev_priv(dev);
2302        struct myri10ge_cmd cmd;
2303        int i, status, big_pow2, slice;
2304        u8 __iomem *itable;
2305
2306        if (mgp->running != MYRI10GE_ETH_STOPPED)
2307                return -EBUSY;
2308
2309        mgp->running = MYRI10GE_ETH_STARTING;
2310        status = myri10ge_reset(mgp);
2311        if (status != 0) {
2312                netdev_err(dev, "failed reset\n");
2313                goto abort_with_nothing;
2314        }
2315
2316        if (mgp->num_slices > 1) {
2317                cmd.data0 = mgp->num_slices;
2318                cmd.data1 = MXGEFW_SLICE_INTR_MODE_ONE_PER_SLICE;
2319                if (mgp->dev->real_num_tx_queues > 1)
2320                        cmd.data1 |= MXGEFW_SLICE_ENABLE_MULTIPLE_TX_QUEUES;
2321                status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ENABLE_RSS_QUEUES,
2322                                           &cmd, 0);
2323                if (status != 0) {
2324                        netdev_err(dev, "failed to set number of slices\n");
2325                        goto abort_with_nothing;
2326                }
2327                /* setup the indirection table */
2328                cmd.data0 = mgp->num_slices;
2329                status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_RSS_TABLE_SIZE,
2330                                           &cmd, 0);
2331
2332                status |= myri10ge_send_cmd(mgp,
2333                                            MXGEFW_CMD_GET_RSS_TABLE_OFFSET,
2334                                            &cmd, 0);
2335                if (status != 0) {
2336                        netdev_err(dev, "failed to setup rss tables\n");
2337                        goto abort_with_nothing;
2338                }
2339
2340                /* just enable an identity mapping */
2341                itable = mgp->sram + cmd.data0;
2342                for (i = 0; i < mgp->num_slices; i++)
2343                        __raw_writeb(i, &itable[i]);
2344
2345                cmd.data0 = 1;
2346                cmd.data1 = myri10ge_rss_hash;
2347                status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_RSS_ENABLE,
2348                                           &cmd, 0);
2349                if (status != 0) {
2350                        netdev_err(dev, "failed to enable slices\n");
2351                        goto abort_with_nothing;
2352                }
2353        }
2354
2355        status = myri10ge_request_irq(mgp);
2356        if (status != 0)
2357                goto abort_with_nothing;
2358
2359        /* decide what small buffer size to use.  For good TCP rx
2360         * performance, it is important to not receive 1514 byte
2361         * frames into jumbo buffers, as it confuses the socket buffer
2362         * accounting code, leading to drops and erratic performance.
2363         */
2364
2365        if (dev->mtu <= ETH_DATA_LEN)
2366                /* enough for a TCP header */
2367                mgp->small_bytes = (128 > SMP_CACHE_BYTES)
2368                    ? (128 - MXGEFW_PAD)
2369                    : (SMP_CACHE_BYTES - MXGEFW_PAD);
2370        else
2371                /* enough for a vlan encapsulated ETH_DATA_LEN frame */
2372                mgp->small_bytes = VLAN_ETH_FRAME_LEN;
2373
2374        /* Override the small buffer size? */
2375        if (myri10ge_small_bytes >= 0)
2376                mgp->small_bytes = myri10ge_small_bytes;
2377
2378        /* Firmware needs the big buff size as a power of 2.  Lie and
2379         * tell him the buffer is larger, because we only use 1
2380         * buffer/pkt, and the mtu will prevent overruns.
2381         */
2382        big_pow2 = dev->mtu + ETH_HLEN + VLAN_HLEN + MXGEFW_PAD;
2383        if (big_pow2 < MYRI10GE_ALLOC_SIZE / 2) {
2384                while (!is_power_of_2(big_pow2))
2385                        big_pow2++;
2386                mgp->big_bytes = dev->mtu + ETH_HLEN + VLAN_HLEN + MXGEFW_PAD;
2387        } else {
2388                big_pow2 = MYRI10GE_ALLOC_SIZE;
2389                mgp->big_bytes = big_pow2;
2390        }
2391
2392        /* setup the per-slice data structures */
2393        for (slice = 0; slice < mgp->num_slices; slice++) {
2394                ss = &mgp->ss[slice];
2395
2396                status = myri10ge_get_txrx(mgp, slice);
2397                if (status != 0) {
2398                        netdev_err(dev, "failed to get ring sizes or locations\n");
2399                        goto abort_with_rings;
2400                }
2401                status = myri10ge_allocate_rings(ss);
2402                if (status != 0)
2403                        goto abort_with_rings;
2404
2405                /* only firmware which supports multiple TX queues
2406                 * supports setting up the tx stats on non-zero
2407                 * slices */
2408                if (slice == 0 || mgp->dev->real_num_tx_queues > 1)
2409                        status = myri10ge_set_stats(mgp, slice);
2410                if (status) {
2411                        netdev_err(dev, "Couldn't set stats DMA\n");
2412                        goto abort_with_rings;
2413                }
2414
2415                /* must happen prior to any irq */
2416                napi_enable(&(ss)->napi);
2417        }
2418
2419        /* now give firmware buffers sizes, and MTU */
2420        cmd.data0 = dev->mtu + ETH_HLEN + VLAN_HLEN;
2421        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_MTU, &cmd, 0);
2422        cmd.data0 = mgp->small_bytes;
2423        status |=
2424            myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_SMALL_BUFFER_SIZE, &cmd, 0);
2425        cmd.data0 = big_pow2;
2426        status |=
2427            myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_BIG_BUFFER_SIZE, &cmd, 0);
2428        if (status) {
2429                netdev_err(dev, "Couldn't set buffer sizes\n");
2430                goto abort_with_rings;
2431        }
2432
2433        /*
2434         * Set Linux style TSO mode; this is needed only on newer
2435         *  firmware versions.  Older versions default to Linux
2436         *  style TSO
2437         */
2438        cmd.data0 = 0;
2439        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_TSO_MODE, &cmd, 0);
2440        if (status && status != -ENOSYS) {
2441                netdev_err(dev, "Couldn't set TSO mode\n");
2442                goto abort_with_rings;
2443        }
2444
2445        mgp->link_state = ~0U;
2446        mgp->rdma_tags_available = 15;
2447
2448        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ETHERNET_UP, &cmd, 0);
2449        if (status) {
2450                netdev_err(dev, "Couldn't bring up link\n");
2451                goto abort_with_rings;
2452        }
2453
2454        mgp->running = MYRI10GE_ETH_RUNNING;
2455        mgp->watchdog_timer.expires = jiffies + myri10ge_watchdog_timeout * HZ;
2456        add_timer(&mgp->watchdog_timer);
2457        netif_tx_wake_all_queues(dev);
2458
2459        return 0;
2460
2461abort_with_rings:
2462        while (slice) {
2463                slice--;
2464                napi_disable(&mgp->ss[slice].napi);
2465        }
2466        for (i = 0; i < mgp->num_slices; i++)
2467                myri10ge_free_rings(&mgp->ss[i]);
2468
2469        myri10ge_free_irq(mgp);
2470
2471abort_with_nothing:
2472        mgp->running = MYRI10GE_ETH_STOPPED;
2473        return -ENOMEM;
2474}
2475
2476static int myri10ge_close(struct net_device *dev)
2477{
2478        struct myri10ge_priv *mgp = netdev_priv(dev);
2479        struct myri10ge_cmd cmd;
2480        int status, old_down_cnt;
2481        int i;
2482
2483        if (mgp->running != MYRI10GE_ETH_RUNNING)
2484                return 0;
2485
2486        if (mgp->ss[0].tx.req_bytes == NULL)
2487                return 0;
2488
2489        del_timer_sync(&mgp->watchdog_timer);
2490        mgp->running = MYRI10GE_ETH_STOPPING;
2491        for (i = 0; i < mgp->num_slices; i++)
2492                napi_disable(&mgp->ss[i].napi);
2493
2494        netif_carrier_off(dev);
2495
2496        netif_tx_stop_all_queues(dev);
2497        if (mgp->rebooted == 0) {
2498                old_down_cnt = mgp->down_cnt;
2499                mb();
2500                status =
2501                    myri10ge_send_cmd(mgp, MXGEFW_CMD_ETHERNET_DOWN, &cmd, 0);
2502                if (status)
2503                        netdev_err(dev, "Couldn't bring down link\n");
2504
2505                wait_event_timeout(mgp->down_wq, old_down_cnt != mgp->down_cnt,
2506                                   HZ);
2507                if (old_down_cnt == mgp->down_cnt)
2508                        netdev_err(dev, "never got down irq\n");
2509        }
2510        netif_tx_disable(dev);
2511        myri10ge_free_irq(mgp);
2512        for (i = 0; i < mgp->num_slices; i++)
2513                myri10ge_free_rings(&mgp->ss[i]);
2514
2515        mgp->running = MYRI10GE_ETH_STOPPED;
2516        return 0;
2517}
2518
2519/* copy an array of struct mcp_kreq_ether_send's to the mcp.  Copy
2520 * backwards one at a time and handle ring wraps */
2521
2522static inline void
2523myri10ge_submit_req_backwards(struct myri10ge_tx_buf *tx,
2524                              struct mcp_kreq_ether_send *src, int cnt)
2525{
2526        int idx, starting_slot;
2527        starting_slot = tx->req;
2528        while (cnt > 1) {
2529                cnt--;
2530                idx = (starting_slot + cnt) & tx->mask;
2531                myri10ge_pio_copy(&tx->lanai[idx], &src[cnt], sizeof(*src));
2532                mb();
2533        }
2534}
2535
2536/*
2537 * copy an array of struct mcp_kreq_ether_send's to the mcp.  Copy
2538 * at most 32 bytes at a time, so as to avoid involving the software
2539 * pio handler in the nic.   We re-write the first segment's flags
2540 * to mark them valid only after writing the entire chain.
2541 */
2542
2543static inline void
2544myri10ge_submit_req(struct myri10ge_tx_buf *tx, struct mcp_kreq_ether_send *src,
2545                    int cnt)
2546{
2547        int idx, i;
2548        struct mcp_kreq_ether_send __iomem *dstp, *dst;
2549        struct mcp_kreq_ether_send *srcp;
2550        u8 last_flags;
2551
2552        idx = tx->req & tx->mask;
2553
2554        last_flags = src->flags;
2555        src->flags = 0;
2556        mb();
2557        dst = dstp = &tx->lanai[idx];
2558        srcp = src;
2559
2560        if ((idx + cnt) < tx->mask) {
2561                for (i = 0; i < (cnt - 1); i += 2) {
2562                        myri10ge_pio_copy(dstp, srcp, 2 * sizeof(*src));
2563                        mb();   /* force write every 32 bytes */
2564                        srcp += 2;
2565                        dstp += 2;
2566                }
2567        } else {
2568                /* submit all but the first request, and ensure
2569                 * that it is submitted below */
2570                myri10ge_submit_req_backwards(tx, src, cnt);
2571                i = 0;
2572        }
2573        if (i < cnt) {
2574                /* submit the first request */
2575                myri10ge_pio_copy(dstp, srcp, sizeof(*src));
2576                mb();           /* barrier before setting valid flag */
2577        }
2578
2579        /* re-write the last 32-bits with the valid flags */
2580        src->flags = last_flags;
2581        put_be32(*((__be32 *) src + 3), (__be32 __iomem *) dst + 3);
2582        tx->req += cnt;
2583        mb();
2584}
2585
2586static void myri10ge_unmap_tx_dma(struct myri10ge_priv *mgp,
2587                                  struct myri10ge_tx_buf *tx, int idx)
2588{
2589        unsigned int len;
2590        int last_idx;
2591
2592        /* Free any DMA resources we've alloced and clear out the skb slot */
2593        last_idx = (idx + 1) & tx->mask;
2594        idx = tx->req & tx->mask;
2595        do {
2596                len = dma_unmap_len(&tx->info[idx], len);
2597                if (len) {
2598                        if (tx->info[idx].skb != NULL)
2599                                pci_unmap_single(mgp->pdev,
2600                                                 dma_unmap_addr(&tx->info[idx],
2601                                                                bus), len,
2602                                                 PCI_DMA_TODEVICE);
2603                        else
2604                                pci_unmap_page(mgp->pdev,
2605                                               dma_unmap_addr(&tx->info[idx],
2606                                                              bus), len,
2607                                               PCI_DMA_TODEVICE);
2608                        dma_unmap_len_set(&tx->info[idx], len, 0);
2609                        tx->info[idx].skb = NULL;
2610                }
2611                idx = (idx + 1) & tx->mask;
2612        } while (idx != last_idx);
2613}
2614
2615/*
2616 * Transmit a packet.  We need to split the packet so that a single
2617 * segment does not cross myri10ge->tx_boundary, so this makes segment
2618 * counting tricky.  So rather than try to count segments up front, we
2619 * just give up if there are too few segments to hold a reasonably
2620 * fragmented packet currently available.  If we run
2621 * out of segments while preparing a packet for DMA, we just linearize
2622 * it and try again.
2623 */
2624
2625static netdev_tx_t myri10ge_xmit(struct sk_buff *skb,
2626                                       struct net_device *dev)
2627{
2628        struct myri10ge_priv *mgp = netdev_priv(dev);
2629        struct myri10ge_slice_state *ss;
2630        struct mcp_kreq_ether_send *req;
2631        struct myri10ge_tx_buf *tx;
2632        struct skb_frag_struct *frag;
2633        struct netdev_queue *netdev_queue;
2634        dma_addr_t bus;
2635        u32 low;
2636        __be32 high_swapped;
2637        unsigned int len;
2638        int idx, avail, frag_cnt, frag_idx, count, mss, max_segments;
2639        u16 pseudo_hdr_offset, cksum_offset, queue;
2640        int cum_len, seglen, boundary, rdma_count;
2641        u8 flags, odd_flag;
2642
2643        queue = skb_get_queue_mapping(skb);
2644        ss = &mgp->ss[queue];
2645        netdev_queue = netdev_get_tx_queue(mgp->dev, queue);
2646        tx = &ss->tx;
2647
2648again:
2649        req = tx->req_list;
2650        avail = tx->mask - 1 - (tx->req - tx->done);
2651
2652        mss = 0;
2653        max_segments = MXGEFW_MAX_SEND_DESC;
2654
2655        if (skb_is_gso(skb)) {
2656                mss = skb_shinfo(skb)->gso_size;
2657                max_segments = MYRI10GE_MAX_SEND_DESC_TSO;
2658        }
2659
2660        if ((unlikely(avail < max_segments))) {
2661                /* we are out of transmit resources */
2662                tx->stop_queue++;
2663                netif_tx_stop_queue(netdev_queue);
2664                return NETDEV_TX_BUSY;
2665        }
2666
2667        /* Setup checksum offloading, if needed */
2668        cksum_offset = 0;
2669        pseudo_hdr_offset = 0;
2670        odd_flag = 0;
2671        flags = (MXGEFW_FLAGS_NO_TSO | MXGEFW_FLAGS_FIRST);
2672        if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
2673                cksum_offset = skb_checksum_start_offset(skb);
2674                pseudo_hdr_offset = cksum_offset + skb->csum_offset;
2675                /* If the headers are excessively large, then we must
2676                 * fall back to a software checksum */
2677                if (unlikely(!mss && (cksum_offset > 255 ||
2678                                      pseudo_hdr_offset > 127))) {
2679                        if (skb_checksum_help(skb))
2680                                goto drop;
2681                        cksum_offset = 0;
2682                        pseudo_hdr_offset = 0;
2683                } else {
2684                        odd_flag = MXGEFW_FLAGS_ALIGN_ODD;
2685                        flags |= MXGEFW_FLAGS_CKSUM;
2686                }
2687        }
2688
2689        cum_len = 0;
2690
2691        if (mss) {              /* TSO */
2692                /* this removes any CKSUM flag from before */
2693                flags = (MXGEFW_FLAGS_TSO_HDR | MXGEFW_FLAGS_FIRST);
2694
2695                /* negative cum_len signifies to the
2696                 * send loop that we are still in the
2697                 * header portion of the TSO packet.
2698                 * TSO header can be at most 1KB long */
2699                cum_len = -(skb_transport_offset(skb) + tcp_hdrlen(skb));
2700
2701                /* for IPv6 TSO, the checksum offset stores the
2702                 * TCP header length, to save the firmware from
2703                 * the need to parse the headers */
2704                if (skb_is_gso_v6(skb)) {
2705                        cksum_offset = tcp_hdrlen(skb);
2706                        /* Can only handle headers <= max_tso6 long */
2707                        if (unlikely(-cum_len > mgp->max_tso6))
2708                                return myri10ge_sw_tso(skb, dev);
2709                }
2710                /* for TSO, pseudo_hdr_offset holds mss.
2711                 * The firmware figures out where to put
2712                 * the checksum by parsing the header. */
2713                pseudo_hdr_offset = mss;
2714        } else
2715                /* Mark small packets, and pad out tiny packets */
2716        if (skb->len <= MXGEFW_SEND_SMALL_SIZE) {
2717                flags |= MXGEFW_FLAGS_SMALL;
2718
2719                /* pad frames to at least ETH_ZLEN bytes */
2720                if (eth_skb_pad(skb)) {
2721                        /* The packet is gone, so we must
2722                         * return 0 */
2723                        ss->stats.tx_dropped += 1;
2724                        return NETDEV_TX_OK;
2725                }
2726        }
2727
2728        /* map the skb for DMA */
2729        len = skb_headlen(skb);
2730        bus = pci_map_single(mgp->pdev, skb->data, len, PCI_DMA_TODEVICE);
2731        if (unlikely(pci_dma_mapping_error(mgp->pdev, bus)))
2732                goto drop;
2733
2734        idx = tx->req & tx->mask;
2735        tx->info[idx].skb = skb;
2736        dma_unmap_addr_set(&tx->info[idx], bus, bus);
2737        dma_unmap_len_set(&tx->info[idx], len, len);
2738
2739        frag_cnt = skb_shinfo(skb)->nr_frags;
2740        frag_idx = 0;
2741        count = 0;
2742        rdma_count = 0;
2743
2744        /* "rdma_count" is the number of RDMAs belonging to the
2745         * current packet BEFORE the current send request. For
2746         * non-TSO packets, this is equal to "count".
2747         * For TSO packets, rdma_count needs to be reset
2748         * to 0 after a segment cut.
2749         *
2750         * The rdma_count field of the send request is
2751         * the number of RDMAs of the packet starting at
2752         * that request. For TSO send requests with one ore more cuts
2753         * in the middle, this is the number of RDMAs starting
2754         * after the last cut in the request. All previous
2755         * segments before the last cut implicitly have 1 RDMA.
2756         *
2757         * Since the number of RDMAs is not known beforehand,
2758         * it must be filled-in retroactively - after each
2759         * segmentation cut or at the end of the entire packet.
2760         */
2761
2762        while (1) {
2763                /* Break the SKB or Fragment up into pieces which
2764                 * do not cross mgp->tx_boundary */
2765                low = MYRI10GE_LOWPART_TO_U32(bus);
2766                high_swapped = htonl(MYRI10GE_HIGHPART_TO_U32(bus));
2767                while (len) {
2768                        u8 flags_next;
2769                        int cum_len_next;
2770
2771                        if (unlikely(count == max_segments))
2772                                goto abort_linearize;
2773
2774                        boundary =
2775                            (low + mgp->tx_boundary) & ~(mgp->tx_boundary - 1);
2776                        seglen = boundary - low;
2777                        if (seglen > len)
2778                                seglen = len;
2779                        flags_next = flags & ~MXGEFW_FLAGS_FIRST;
2780                        cum_len_next = cum_len + seglen;
2781                        if (mss) {      /* TSO */
2782                                (req - rdma_count)->rdma_count = rdma_count + 1;
2783
2784                                if (likely(cum_len >= 0)) {     /* payload */
2785                                        int next_is_first, chop;
2786
2787                                        chop = (cum_len_next > mss);
2788                                        cum_len_next = cum_len_next % mss;
2789                                        next_is_first = (cum_len_next == 0);
2790                                        flags |= chop * MXGEFW_FLAGS_TSO_CHOP;
2791                                        flags_next |= next_is_first *
2792                                            MXGEFW_FLAGS_FIRST;
2793                                        rdma_count |= -(chop | next_is_first);
2794                                        rdma_count += chop & ~next_is_first;
2795                                } else if (likely(cum_len_next >= 0)) { /* header ends */
2796                                        int small;
2797
2798                                        rdma_count = -1;
2799                                        cum_len_next = 0;
2800                                        seglen = -cum_len;
2801                                        small = (mss <= MXGEFW_SEND_SMALL_SIZE);
2802                                        flags_next = MXGEFW_FLAGS_TSO_PLD |
2803                                            MXGEFW_FLAGS_FIRST |
2804                                            (small * MXGEFW_FLAGS_SMALL);
2805                                }
2806                        }
2807                        req->addr_high = high_swapped;
2808                        req->addr_low = htonl(low);
2809                        req->pseudo_hdr_offset = htons(pseudo_hdr_offset);
2810                        req->pad = 0;   /* complete solid 16-byte block; does this matter? */
2811                        req->rdma_count = 1;
2812                        req->length = htons(seglen);
2813                        req->cksum_offset = cksum_offset;
2814                        req->flags = flags | ((cum_len & 1) * odd_flag);
2815
2816                        low += seglen;
2817                        len -= seglen;
2818                        cum_len = cum_len_next;
2819                        flags = flags_next;
2820                        req++;
2821                        count++;
2822                        rdma_count++;
2823                        if (cksum_offset != 0 && !(mss && skb_is_gso_v6(skb))) {
2824                                if (unlikely(cksum_offset > seglen))
2825                                        cksum_offset -= seglen;
2826                                else
2827                                        cksum_offset = 0;
2828                        }
2829                }
2830                if (frag_idx == frag_cnt)
2831                        break;
2832
2833                /* map next fragment for DMA */
2834                frag = &skb_shinfo(skb)->frags[frag_idx];
2835                frag_idx++;
2836                len = skb_frag_size(frag);
2837                bus = skb_frag_dma_map(&mgp->pdev->dev, frag, 0, len,
2838                                       DMA_TO_DEVICE);
2839                if (unlikely(pci_dma_mapping_error(mgp->pdev, bus))) {
2840                        myri10ge_unmap_tx_dma(mgp, tx, idx);
2841                        goto drop;
2842                }
2843                idx = (count + tx->req) & tx->mask;
2844                dma_unmap_addr_set(&tx->info[idx], bus, bus);
2845                dma_unmap_len_set(&tx->info[idx], len, len);
2846        }
2847
2848        (req - rdma_count)->rdma_count = rdma_count;
2849        if (mss)
2850                do {
2851                        req--;
2852                        req->flags |= MXGEFW_FLAGS_TSO_LAST;
2853                } while (!(req->flags & (MXGEFW_FLAGS_TSO_CHOP |
2854                                         MXGEFW_FLAGS_FIRST)));
2855        idx = ((count - 1) + tx->req) & tx->mask;
2856        tx->info[idx].last = 1;
2857        myri10ge_submit_req(tx, tx->req_list, count);
2858        /* if using multiple tx queues, make sure NIC polls the
2859         * current slice */
2860        if ((mgp->dev->real_num_tx_queues > 1) && tx->queue_active == 0) {
2861                tx->queue_active = 1;
2862                put_be32(htonl(1), tx->send_go);
2863                mb();
2864        }
2865        tx->pkt_start++;
2866        if ((avail - count) < MXGEFW_MAX_SEND_DESC) {
2867                tx->stop_queue++;
2868                netif_tx_stop_queue(netdev_queue);
2869        }
2870        return NETDEV_TX_OK;
2871
2872abort_linearize:
2873        myri10ge_unmap_tx_dma(mgp, tx, idx);
2874
2875        if (skb_is_gso(skb)) {
2876                netdev_err(mgp->dev, "TSO but wanted to linearize?!?!?\n");
2877                goto drop;
2878        }
2879
2880        if (skb_linearize(skb))
2881                goto drop;
2882
2883        tx->linearized++;
2884        goto again;
2885
2886drop:
2887        dev_kfree_skb_any(skb);
2888        ss->stats.tx_dropped += 1;
2889        return NETDEV_TX_OK;
2890
2891}
2892
2893static netdev_tx_t myri10ge_sw_tso(struct sk_buff *skb,
2894                                         struct net_device *dev)
2895{
2896        struct sk_buff *segs, *curr;
2897        struct myri10ge_priv *mgp = netdev_priv(dev);
2898        struct myri10ge_slice_state *ss;
2899        netdev_tx_t status;
2900
2901        segs = skb_gso_segment(skb, dev->features & ~NETIF_F_TSO6);
2902        if (IS_ERR(segs))
2903                goto drop;
2904
2905        while (segs) {
2906                curr = segs;
2907                segs = segs->next;
2908                curr->next = NULL;
2909                status = myri10ge_xmit(curr, dev);
2910                if (status != 0) {
2911                        dev_kfree_skb_any(curr);
2912                        if (segs != NULL) {
2913                                curr = segs;
2914                                segs = segs->next;
2915                                curr->next = NULL;
2916                                dev_kfree_skb_any(segs);
2917                        }
2918                        goto drop;
2919                }
2920        }
2921        dev_kfree_skb_any(skb);
2922        return NETDEV_TX_OK;
2923
2924drop:
2925        ss = &mgp->ss[skb_get_queue_mapping(skb)];
2926        dev_kfree_skb_any(skb);
2927        ss->stats.tx_dropped += 1;
2928        return NETDEV_TX_OK;
2929}
2930
2931static void myri10ge_get_stats(struct net_device *dev,
2932                               struct rtnl_link_stats64 *stats)
2933{
2934        const struct myri10ge_priv *mgp = netdev_priv(dev);
2935        const struct myri10ge_slice_netstats *slice_stats;
2936        int i;
2937
2938        for (i = 0; i < mgp->num_slices; i++) {
2939                slice_stats = &mgp->ss[i].stats;
2940                stats->rx_packets += slice_stats->rx_packets;
2941                stats->tx_packets += slice_stats->tx_packets;
2942                stats->rx_bytes += slice_stats->rx_bytes;
2943                stats->tx_bytes += slice_stats->tx_bytes;
2944                stats->rx_dropped += slice_stats->rx_dropped;
2945                stats->tx_dropped += slice_stats->tx_dropped;
2946        }
2947}
2948
2949static void myri10ge_set_multicast_list(struct net_device *dev)
2950{
2951        struct myri10ge_priv *mgp = netdev_priv(dev);
2952        struct myri10ge_cmd cmd;
2953        struct netdev_hw_addr *ha;
2954        __be32 data[2] = { 0, 0 };
2955        int err;
2956
2957        /* can be called from atomic contexts,
2958         * pass 1 to force atomicity in myri10ge_send_cmd() */
2959        myri10ge_change_promisc(mgp, dev->flags & IFF_PROMISC, 1);
2960
2961        /* This firmware is known to not support multicast */
2962        if (!mgp->fw_multicast_support)
2963                return;
2964
2965        /* Disable multicast filtering */
2966
2967        err = myri10ge_send_cmd(mgp, MXGEFW_ENABLE_ALLMULTI, &cmd, 1);
2968        if (err != 0) {
2969                netdev_err(dev, "Failed MXGEFW_ENABLE_ALLMULTI, error status: %d\n",
2970                           err);
2971                goto abort;
2972        }
2973
2974        if ((dev->flags & IFF_ALLMULTI) || mgp->adopted_rx_filter_bug) {
2975                /* request to disable multicast filtering, so quit here */
2976                return;
2977        }
2978
2979        /* Flush the filters */
2980
2981        err = myri10ge_send_cmd(mgp, MXGEFW_LEAVE_ALL_MULTICAST_GROUPS,
2982                                &cmd, 1);
2983        if (err != 0) {
2984                netdev_err(dev, "Failed MXGEFW_LEAVE_ALL_MULTICAST_GROUPS, error status: %d\n",
2985                           err);
2986                goto abort;
2987        }
2988
2989        /* Walk the multicast list, and add each address */
2990        netdev_for_each_mc_addr(ha, dev) {
2991                memcpy(data, &ha->addr, ETH_ALEN);
2992                cmd.data0 = ntohl(data[0]);
2993                cmd.data1 = ntohl(data[1]);
2994                err = myri10ge_send_cmd(mgp, MXGEFW_JOIN_MULTICAST_GROUP,
2995                                        &cmd, 1);
2996
2997                if (err != 0) {
2998                        netdev_err(dev, "Failed MXGEFW_JOIN_MULTICAST_GROUP, error status:%d %pM\n",
2999                                   err, ha->addr);
3000                        goto abort;
3001                }
3002        }
3003        /* Enable multicast filtering */
3004        err = myri10ge_send_cmd(mgp, MXGEFW_DISABLE_ALLMULTI, &cmd, 1);
3005        if (err != 0) {
3006                netdev_err(dev, "Failed MXGEFW_DISABLE_ALLMULTI, error status: %d\n",
3007                           err);
3008                goto abort;
3009        }
3010
3011        return;
3012
3013abort:
3014        return;
3015}
3016
3017static int myri10ge_set_mac_address(struct net_device *dev, void *addr)
3018{
3019        struct sockaddr *sa = addr;
3020        struct myri10ge_priv *mgp = netdev_priv(dev);
3021        int status;
3022
3023        if (!is_valid_ether_addr(sa->sa_data))
3024                return -EADDRNOTAVAIL;
3025
3026        status = myri10ge_update_mac_address(mgp, sa->sa_data);
3027        if (status != 0) {
3028                netdev_err(dev, "changing mac address failed with %d\n",
3029                           status);
3030                return status;
3031        }
3032
3033        /* change the dev structure */
3034        memcpy(dev->dev_addr, sa->sa_data, ETH_ALEN);
3035        return 0;
3036}
3037
3038static int myri10ge_change_mtu(struct net_device *dev, int new_mtu)
3039{
3040        struct myri10ge_priv *mgp = netdev_priv(dev);
3041        int error = 0;
3042
3043        netdev_info(dev, "changing mtu from %d to %d\n", dev->mtu, new_mtu);
3044        if (mgp->running) {
3045                /* if we change the mtu on an active device, we must
3046                 * reset the device so the firmware sees the change */
3047                myri10ge_close(dev);
3048                dev->mtu = new_mtu;
3049                myri10ge_open(dev);
3050        } else
3051                dev->mtu = new_mtu;
3052
3053        return error;
3054}
3055
3056/*
3057 * Enable ECRC to align PCI-E Completion packets on an 8-byte boundary.
3058 * Only do it if the bridge is a root port since we don't want to disturb
3059 * any other device, except if forced with myri10ge_ecrc_enable > 1.
3060 */
3061
3062static void myri10ge_enable_ecrc(struct myri10ge_priv *mgp)
3063{
3064        struct pci_dev *bridge = mgp->pdev->bus->self;
3065        struct device *dev = &mgp->pdev->dev;
3066        int cap;
3067        unsigned err_cap;
3068        int ret;
3069
3070        if (!myri10ge_ecrc_enable || !bridge)
3071                return;
3072
3073        /* check that the bridge is a root port */
3074        if (pci_pcie_type(bridge) != PCI_EXP_TYPE_ROOT_PORT) {
3075                if (myri10ge_ecrc_enable > 1) {
3076                        struct pci_dev *prev_bridge, *old_bridge = bridge;
3077
3078                        /* Walk the hierarchy up to the root port
3079                         * where ECRC has to be enabled */
3080                        do {
3081                                prev_bridge = bridge;
3082                                bridge = bridge->bus->self;
3083                                if (!bridge || prev_bridge == bridge) {
3084                                        dev_err(dev,
3085                                                "Failed to find root port"
3086                                                " to force ECRC\n");
3087                                        return;
3088                                }
3089                        } while (pci_pcie_type(bridge) !=
3090                                 PCI_EXP_TYPE_ROOT_PORT);
3091
3092                        dev_info(dev,
3093                                 "Forcing ECRC on non-root port %s"
3094                                 " (enabling on root port %s)\n",
3095                                 pci_name(old_bridge), pci_name(bridge));
3096                } else {
3097                        dev_err(dev,
3098                                "Not enabling ECRC on non-root port %s\n",
3099                                pci_name(bridge));
3100                        return;
3101                }
3102        }
3103
3104        cap = pci_find_ext_capability(bridge, PCI_EXT_CAP_ID_ERR);
3105        if (!cap)
3106                return;
3107
3108        ret = pci_read_config_dword(bridge, cap + PCI_ERR_CAP, &err_cap);
3109        if (ret) {
3110                dev_err(dev, "failed reading ext-conf-space of %s\n",
3111                        pci_name(bridge));
3112                dev_err(dev, "\t pci=nommconf in use? "
3113                        "or buggy/incomplete/absent ACPI MCFG attr?\n");
3114                return;
3115        }
3116        if (!(err_cap & PCI_ERR_CAP_ECRC_GENC))
3117                return;
3118
3119        err_cap |= PCI_ERR_CAP_ECRC_GENE;
3120        pci_write_config_dword(bridge, cap + PCI_ERR_CAP, err_cap);
3121        dev_info(dev, "Enabled ECRC on upstream bridge %s\n", pci_name(bridge));
3122}
3123
3124/*
3125 * The Lanai Z8E PCI-E interface achieves higher Read-DMA throughput
3126 * when the PCI-E Completion packets are aligned on an 8-byte
3127 * boundary.  Some PCI-E chip sets always align Completion packets; on
3128 * the ones that do not, the alignment can be enforced by enabling
3129 * ECRC generation (if supported).
3130 *
3131 * When PCI-E Completion packets are not aligned, it is actually more
3132 * efficient to limit Read-DMA transactions to 2KB, rather than 4KB.
3133 *
3134 * If the driver can neither enable ECRC nor verify that it has
3135 * already been enabled, then it must use a firmware image which works
3136 * around unaligned completion packets (myri10ge_rss_ethp_z8e.dat), and it
3137 * should also ensure that it never gives the device a Read-DMA which is
3138 * larger than 2KB by setting the tx_boundary to 2KB.  If ECRC is
3139 * enabled, then the driver should use the aligned (myri10ge_rss_eth_z8e.dat)
3140 * firmware image, and set tx_boundary to 4KB.
3141 */
3142
3143static void myri10ge_firmware_probe(struct myri10ge_priv *mgp)
3144{
3145        struct pci_dev *pdev = mgp->pdev;
3146        struct device *dev = &pdev->dev;
3147        int status;
3148
3149        mgp->tx_boundary = 4096;
3150        /*
3151         * Verify the max read request size was set to 4KB
3152         * before trying the test with 4KB.
3153         */
3154        status = pcie_get_readrq(pdev);
3155        if (status < 0) {
3156                dev_err(dev, "Couldn't read max read req size: %d\n", status);
3157                goto abort;
3158        }
3159        if (status != 4096) {
3160                dev_warn(dev, "Max Read Request size != 4096 (%d)\n", status);
3161                mgp->tx_boundary = 2048;
3162        }
3163        /*
3164         * load the optimized firmware (which assumes aligned PCIe
3165         * completions) in order to see if it works on this host.
3166         */
3167        set_fw_name(mgp, myri10ge_fw_aligned, false);
3168        status = myri10ge_load_firmware(mgp, 1);
3169        if (status != 0) {
3170                goto abort;
3171        }
3172
3173        /*
3174         * Enable ECRC if possible
3175         */
3176        myri10ge_enable_ecrc(mgp);
3177
3178        /*
3179         * Run a DMA test which watches for unaligned completions and
3180         * aborts on the first one seen.
3181         */
3182
3183        status = myri10ge_dma_test(mgp, MXGEFW_CMD_UNALIGNED_TEST);
3184        if (status == 0)
3185                return;         /* keep the aligned firmware */
3186
3187        if (status != -E2BIG)
3188                dev_warn(dev, "DMA test failed: %d\n", status);
3189        if (status == -ENOSYS)
3190                dev_warn(dev, "Falling back to ethp! "
3191                         "Please install up to date fw\n");
3192abort:
3193        /* fall back to using the unaligned firmware */
3194        mgp->tx_boundary = 2048;
3195        set_fw_name(mgp, myri10ge_fw_unaligned, false);
3196}
3197
3198static void myri10ge_select_firmware(struct myri10ge_priv *mgp)
3199{
3200        int overridden = 0;
3201
3202        if (myri10ge_force_firmware == 0) {
3203                int link_width;
3204                u16 lnk;
3205
3206                pcie_capability_read_word(mgp->pdev, PCI_EXP_LNKSTA, &lnk);
3207                link_width = (lnk >> 4) & 0x3f;
3208
3209                /* Check to see if Link is less than 8 or if the
3210                 * upstream bridge is known to provide aligned
3211                 * completions */
3212                if (link_width < 8) {
3213                        dev_info(&mgp->pdev->dev, "PCIE x%d Link\n",
3214                                 link_width);
3215                        mgp->tx_boundary = 4096;
3216                        set_fw_name(mgp, myri10ge_fw_aligned, false);
3217                } else {
3218                        myri10ge_firmware_probe(mgp);
3219                }
3220        } else {
3221                if (myri10ge_force_firmware == 1) {
3222                        dev_info(&mgp->pdev->dev,
3223                                 "Assuming aligned completions (forced)\n");
3224                        mgp->tx_boundary = 4096;
3225                        set_fw_name(mgp, myri10ge_fw_aligned, false);
3226                } else {
3227                        dev_info(&mgp->pdev->dev,
3228                                 "Assuming unaligned completions (forced)\n");
3229                        mgp->tx_boundary = 2048;
3230                        set_fw_name(mgp, myri10ge_fw_unaligned, false);
3231                }
3232        }
3233
3234        kernel_param_lock(THIS_MODULE);
3235        if (myri10ge_fw_name != NULL) {
3236                char *fw_name = kstrdup(myri10ge_fw_name, GFP_KERNEL);
3237                if (fw_name) {
3238                        overridden = 1;
3239                        set_fw_name(mgp, fw_name, true);
3240                }
3241        }
3242        kernel_param_unlock(THIS_MODULE);
3243
3244        if (mgp->board_number < MYRI10GE_MAX_BOARDS &&
3245            myri10ge_fw_names[mgp->board_number] != NULL &&
3246            strlen(myri10ge_fw_names[mgp->board_number])) {
3247                set_fw_name(mgp, myri10ge_fw_names[mgp->board_number], false);
3248                overridden = 1;
3249        }
3250        if (overridden)
3251                dev_info(&mgp->pdev->dev, "overriding firmware to %s\n",
3252                         mgp->fw_name);
3253}
3254
3255static void myri10ge_mask_surprise_down(struct pci_dev *pdev)
3256{
3257        struct pci_dev *bridge = pdev->bus->self;
3258        int cap;
3259        u32 mask;
3260
3261        if (bridge == NULL)
3262                return;
3263
3264        cap = pci_find_ext_capability(bridge, PCI_EXT_CAP_ID_ERR);
3265        if (cap) {
3266                /* a sram parity error can cause a surprise link
3267                 * down; since we expect and can recover from sram
3268                 * parity errors, mask surprise link down events */
3269                pci_read_config_dword(bridge, cap + PCI_ERR_UNCOR_MASK, &mask);
3270                mask |= 0x20;
3271                pci_write_config_dword(bridge, cap + PCI_ERR_UNCOR_MASK, mask);
3272        }
3273}
3274
3275#ifdef CONFIG_PM
3276static int myri10ge_suspend(struct pci_dev *pdev, pm_message_t state)
3277{
3278        struct myri10ge_priv *mgp;
3279        struct net_device *netdev;
3280
3281        mgp = pci_get_drvdata(pdev);
3282        if (mgp == NULL)
3283                return -EINVAL;
3284        netdev = mgp->dev;
3285
3286        netif_device_detach(netdev);
3287        if (netif_running(netdev)) {
3288                netdev_info(netdev, "closing\n");
3289                rtnl_lock();
3290                myri10ge_close(netdev);
3291                rtnl_unlock();
3292        }
3293        myri10ge_dummy_rdma(mgp, 0);
3294        pci_save_state(pdev);
3295        pci_disable_device(pdev);
3296
3297        return pci_set_power_state(pdev, pci_choose_state(pdev, state));
3298}
3299
3300static int myri10ge_resume(struct pci_dev *pdev)
3301{
3302        struct myri10ge_priv *mgp;
3303        struct net_device *netdev;
3304        int status;
3305        u16 vendor;
3306
3307        mgp = pci_get_drvdata(pdev);
3308        if (mgp == NULL)
3309                return -EINVAL;
3310        netdev = mgp->dev;
3311        pci_set_power_state(pdev, PCI_D0);      /* zeros conf space as a side effect */
3312        msleep(5);              /* give card time to respond */
3313        pci_read_config_word(mgp->pdev, PCI_VENDOR_ID, &vendor);
3314        if (vendor == 0xffff) {
3315                netdev_err(mgp->dev, "device disappeared!\n");
3316                return -EIO;
3317        }
3318
3319        pci_restore_state(pdev);
3320
3321        status = pci_enable_device(pdev);
3322        if (status) {
3323                dev_err(&pdev->dev, "failed to enable device\n");
3324                return status;
3325        }
3326
3327        pci_set_master(pdev);
3328
3329        myri10ge_reset(mgp);
3330        myri10ge_dummy_rdma(mgp, 1);
3331
3332        /* Save configuration space to be restored if the
3333         * nic resets due to a parity error */
3334        pci_save_state(pdev);
3335
3336        if (netif_running(netdev)) {
3337                rtnl_lock();
3338                status = myri10ge_open(netdev);
3339                rtnl_unlock();
3340                if (status != 0)
3341                        goto abort_with_enabled;
3342
3343        }
3344        netif_device_attach(netdev);
3345
3346        return 0;
3347
3348abort_with_enabled:
3349        pci_disable_device(pdev);
3350        return -EIO;
3351
3352}
3353#endif                          /* CONFIG_PM */
3354
3355static u32 myri10ge_read_reboot(struct myri10ge_priv *mgp)
3356{
3357        struct pci_dev *pdev = mgp->pdev;
3358        int vs = mgp->vendor_specific_offset;
3359        u32 reboot;
3360
3361        /*enter read32 mode */
3362        pci_write_config_byte(pdev, vs + 0x10, 0x3);
3363
3364        /*read REBOOT_STATUS (0xfffffff0) */
3365        pci_write_config_dword(pdev, vs + 0x18, 0xfffffff0);
3366        pci_read_config_dword(pdev, vs + 0x14, &reboot);
3367        return reboot;
3368}
3369
3370static void
3371myri10ge_check_slice(struct myri10ge_slice_state *ss, int *reset_needed,
3372                     int *busy_slice_cnt, u32 rx_pause_cnt)
3373{
3374        struct myri10ge_priv *mgp = ss->mgp;
3375        int slice = ss - mgp->ss;
3376
3377        if (ss->tx.req != ss->tx.done &&
3378            ss->tx.done == ss->watchdog_tx_done &&
3379            ss->watchdog_tx_req != ss->watchdog_tx_done) {
3380                /* nic seems like it might be stuck.. */
3381                if (rx_pause_cnt != mgp->watchdog_pause) {
3382                        if (net_ratelimit())
3383                                netdev_warn(mgp->dev, "slice %d: TX paused, "
3384                                            "check link partner\n", slice);
3385                } else {
3386                        netdev_warn(mgp->dev,
3387                                    "slice %d: TX stuck %d %d %d %d %d %d\n",
3388                                    slice, ss->tx.queue_active, ss->tx.req,
3389                                    ss->tx.done, ss->tx.pkt_start,
3390                                    ss->tx.pkt_done,
3391                                    (int)ntohl(mgp->ss[slice].fw_stats->
3392                                               send_done_count));
3393                        *reset_needed = 1;
3394                        ss->stuck = 1;
3395                }
3396        }
3397        if (ss->watchdog_tx_done != ss->tx.done ||
3398            ss->watchdog_rx_done != ss->rx_done.cnt) {
3399                *busy_slice_cnt += 1;
3400        }
3401        ss->watchdog_tx_done = ss->tx.done;
3402        ss->watchdog_tx_req = ss->tx.req;
3403        ss->watchdog_rx_done = ss->rx_done.cnt;
3404}
3405
3406/*
3407 * This watchdog is used to check whether the board has suffered
3408 * from a parity error and needs to be recovered.
3409 */
3410static void myri10ge_watchdog(struct work_struct *work)
3411{
3412        struct myri10ge_priv *mgp =
3413            container_of(work, struct myri10ge_priv, watchdog_work);
3414        struct myri10ge_slice_state *ss;
3415        u32 reboot, rx_pause_cnt;
3416        int status, rebooted;
3417        int i;
3418        int reset_needed = 0;
3419        int busy_slice_cnt = 0;
3420        u16 cmd, vendor;
3421
3422        mgp->watchdog_resets++;
3423        pci_read_config_word(mgp->pdev, PCI_COMMAND, &cmd);
3424        rebooted = 0;
3425        if ((cmd & PCI_COMMAND_MASTER) == 0) {
3426                /* Bus master DMA disabled?  Check to see
3427                 * if the card rebooted due to a parity error
3428                 * For now, just report it */
3429                reboot = myri10ge_read_reboot(mgp);
3430                netdev_err(mgp->dev, "NIC rebooted (0x%x),%s resetting\n",
3431                           reboot, myri10ge_reset_recover ? "" : " not");
3432                if (myri10ge_reset_recover == 0)
3433                        return;
3434                rtnl_lock();
3435                mgp->rebooted = 1;
3436                rebooted = 1;
3437                myri10ge_close(mgp->dev);
3438                myri10ge_reset_recover--;
3439                mgp->rebooted = 0;
3440                /*
3441                 * A rebooted nic will come back with config space as
3442                 * it was after power was applied to PCIe bus.
3443                 * Attempt to restore config space which was saved
3444                 * when the driver was loaded, or the last time the
3445                 * nic was resumed from power saving mode.
3446                 */
3447                pci_restore_state(mgp->pdev);
3448
3449                /* save state again for accounting reasons */
3450                pci_save_state(mgp->pdev);
3451
3452        } else {
3453                /* if we get back -1's from our slot, perhaps somebody
3454                 * powered off our card.  Don't try to reset it in
3455                 * this case */
3456                if (cmd == 0xffff) {
3457                        pci_read_config_word(mgp->pdev, PCI_VENDOR_ID, &vendor);
3458                        if (vendor == 0xffff) {
3459                                netdev_err(mgp->dev, "device disappeared!\n");
3460                                return;
3461                        }
3462                }
3463                /* Perhaps it is a software error. See if stuck slice
3464                 * has recovered, reset if not */
3465                rx_pause_cnt = ntohl(mgp->ss[0].fw_stats->dropped_pause);
3466                for (i = 0; i < mgp->num_slices; i++) {
3467                        ss = mgp->ss;
3468                        if (ss->stuck) {
3469                                myri10ge_check_slice(ss, &reset_needed,
3470                                                     &busy_slice_cnt,
3471                                                     rx_pause_cnt);
3472                                ss->stuck = 0;
3473                        }
3474                }
3475                if (!reset_needed) {
3476                        netdev_dbg(mgp->dev, "not resetting\n");
3477                        return;
3478                }
3479
3480                netdev_err(mgp->dev, "device timeout, resetting\n");
3481        }
3482
3483        if (!rebooted) {
3484                rtnl_lock();
3485                myri10ge_close(mgp->dev);
3486        }
3487        status = myri10ge_load_firmware(mgp, 1);
3488        if (status != 0)
3489                netdev_err(mgp->dev, "failed to load firmware\n");
3490        else
3491                myri10ge_open(mgp->dev);
3492        rtnl_unlock();
3493}
3494
3495/*
3496 * We use our own timer routine rather than relying upon
3497 * netdev->tx_timeout because we have a very large hardware transmit
3498 * queue.  Due to the large queue, the netdev->tx_timeout function
3499 * cannot detect a NIC with a parity error in a timely fashion if the
3500 * NIC is lightly loaded.
3501 */
3502static void myri10ge_watchdog_timer(struct timer_list *t)
3503{
3504        struct myri10ge_priv *mgp;
3505        struct myri10ge_slice_state *ss;
3506        int i, reset_needed, busy_slice_cnt;
3507        u32 rx_pause_cnt;
3508        u16 cmd;
3509
3510        mgp = from_timer(mgp, t, watchdog_timer);
3511
3512        rx_pause_cnt = ntohl(mgp->ss[0].fw_stats->dropped_pause);
3513        busy_slice_cnt = 0;
3514        for (i = 0, reset_needed = 0;
3515             i < mgp->num_slices && reset_needed == 0; ++i) {
3516
3517                ss = &mgp->ss[i];
3518                if (ss->rx_small.watchdog_needed) {
3519                        myri10ge_alloc_rx_pages(mgp, &ss->rx_small,
3520                                                mgp->small_bytes + MXGEFW_PAD,
3521                                                1);
3522                        if (ss->rx_small.fill_cnt - ss->rx_small.cnt >=
3523                            myri10ge_fill_thresh)
3524                                ss->rx_small.watchdog_needed = 0;
3525                }
3526                if (ss->rx_big.watchdog_needed) {
3527                        myri10ge_alloc_rx_pages(mgp, &ss->rx_big,
3528                                                mgp->big_bytes, 1);
3529                        if (ss->rx_big.fill_cnt - ss->rx_big.cnt >=
3530                            myri10ge_fill_thresh)
3531                                ss->rx_big.watchdog_needed = 0;
3532                }
3533                myri10ge_check_slice(ss, &reset_needed, &busy_slice_cnt,
3534                                     rx_pause_cnt);
3535        }
3536        /* if we've sent or received no traffic, poll the NIC to
3537         * ensure it is still there.  Otherwise, we risk not noticing
3538         * an error in a timely fashion */
3539        if (busy_slice_cnt == 0) {
3540                pci_read_config_word(mgp->pdev, PCI_COMMAND, &cmd);
3541                if ((cmd & PCI_COMMAND_MASTER) == 0) {
3542                        reset_needed = 1;
3543                }
3544        }
3545        mgp->watchdog_pause = rx_pause_cnt;
3546
3547        if (reset_needed) {
3548                schedule_work(&mgp->watchdog_work);
3549        } else {
3550                /* rearm timer */
3551                mod_timer(&mgp->watchdog_timer,
3552                          jiffies + myri10ge_watchdog_timeout * HZ);
3553        }
3554}
3555
3556static void myri10ge_free_slices(struct myri10ge_priv *mgp)
3557{
3558        struct myri10ge_slice_state *ss;
3559        struct pci_dev *pdev = mgp->pdev;
3560        size_t bytes;
3561        int i;
3562
3563        if (mgp->ss == NULL)
3564                return;
3565
3566        for (i = 0; i < mgp->num_slices; i++) {
3567                ss = &mgp->ss[i];
3568                if (ss->rx_done.entry != NULL) {
3569                        bytes = mgp->max_intr_slots *
3570                            sizeof(*ss->rx_done.entry);
3571                        dma_free_coherent(&pdev->dev, bytes,
3572                                          ss->rx_done.entry, ss->rx_done.bus);
3573                        ss->rx_done.entry = NULL;
3574                }
3575                if (ss->fw_stats != NULL) {
3576                        bytes = sizeof(*ss->fw_stats);
3577                        dma_free_coherent(&pdev->dev, bytes,
3578                                          ss->fw_stats, ss->fw_stats_bus);
3579                        ss->fw_stats = NULL;
3580                }
3581                napi_hash_del(&ss->napi);
3582                netif_napi_del(&ss->napi);
3583        }
3584        /* Wait till napi structs are no longer used, and then free ss. */
3585        synchronize_rcu();
3586        kfree(mgp->ss);
3587        mgp->ss = NULL;
3588}
3589
3590static int myri10ge_alloc_slices(struct myri10ge_priv *mgp)
3591{
3592        struct myri10ge_slice_state *ss;
3593        struct pci_dev *pdev = mgp->pdev;
3594        size_t bytes;
3595        int i;
3596
3597        bytes = sizeof(*mgp->ss) * mgp->num_slices;
3598        mgp->ss = kzalloc(bytes, GFP_KERNEL);
3599        if (mgp->ss == NULL) {
3600                return -ENOMEM;
3601        }
3602
3603        for (i = 0; i < mgp->num_slices; i++) {
3604                ss = &mgp->ss[i];
3605                bytes = mgp->max_intr_slots * sizeof(*ss->rx_done.entry);
3606                ss->rx_done.entry = dma_zalloc_coherent(&pdev->dev, bytes,
3607                                                        &ss->rx_done.bus,
3608                                                        GFP_KERNEL);
3609                if (ss->rx_done.entry == NULL)
3610                        goto abort;
3611                bytes = sizeof(*ss->fw_stats);
3612                ss->fw_stats = dma_alloc_coherent(&pdev->dev, bytes,
3613                                                  &ss->fw_stats_bus,
3614                                                  GFP_KERNEL);
3615                if (ss->fw_stats == NULL)
3616                        goto abort;
3617                ss->mgp = mgp;
3618                ss->dev = mgp->dev;
3619                netif_napi_add(ss->dev, &ss->napi, myri10ge_poll,
3620                               myri10ge_napi_weight);
3621        }
3622        return 0;
3623abort:
3624        myri10ge_free_slices(mgp);
3625        return -ENOMEM;
3626}
3627
3628/*
3629 * This function determines the number of slices supported.
3630 * The number slices is the minimum of the number of CPUS,
3631 * the number of MSI-X irqs supported, the number of slices
3632 * supported by the firmware
3633 */
3634static void myri10ge_probe_slices(struct myri10ge_priv *mgp)
3635{
3636        struct myri10ge_cmd cmd;
3637        struct pci_dev *pdev = mgp->pdev;
3638        char *old_fw;
3639        bool old_allocated;
3640        int i, status, ncpus;
3641
3642        mgp->num_slices = 1;
3643        ncpus = netif_get_num_default_rss_queues();
3644
3645        if (myri10ge_max_slices == 1 || !pdev->msix_cap ||
3646            (myri10ge_max_slices == -1 && ncpus < 2))
3647                return;
3648
3649        /* try to load the slice aware rss firmware */
3650        old_fw = mgp->fw_name;
3651        old_allocated = mgp->fw_name_allocated;
3652        /* don't free old_fw if we override it. */
3653        mgp->fw_name_allocated = false;
3654
3655        if (myri10ge_fw_name != NULL) {
3656                dev_info(&mgp->pdev->dev, "overriding rss firmware to %s\n",
3657                         myri10ge_fw_name);
3658                set_fw_name(mgp, myri10ge_fw_name, false);
3659        } else if (old_fw == myri10ge_fw_aligned)
3660                set_fw_name(mgp, myri10ge_fw_rss_aligned, false);
3661        else
3662                set_fw_name(mgp, myri10ge_fw_rss_unaligned, false);
3663        status = myri10ge_load_firmware(mgp, 0);
3664        if (status != 0) {
3665                dev_info(&pdev->dev, "Rss firmware not found\n");
3666                if (old_allocated)
3667                        kfree(old_fw);
3668                return;
3669        }
3670
3671        /* hit the board with a reset to ensure it is alive */
3672        memset(&cmd, 0, sizeof(cmd));
3673        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_RESET, &cmd, 0);
3674        if (status != 0) {
3675                dev_err(&mgp->pdev->dev, "failed reset\n");
3676                goto abort_with_fw;
3677        }
3678
3679        mgp->max_intr_slots = cmd.data0 / sizeof(struct mcp_slot);
3680
3681        /* tell it the size of the interrupt queues */
3682        cmd.data0 = mgp->max_intr_slots * sizeof(struct mcp_slot);
3683        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_SIZE, &cmd, 0);
3684        if (status != 0) {
3685                dev_err(&mgp->pdev->dev, "failed MXGEFW_CMD_SET_INTRQ_SIZE\n");
3686                goto abort_with_fw;
3687        }
3688
3689        /* ask the maximum number of slices it supports */
3690        status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_MAX_RSS_QUEUES, &cmd, 0);
3691        if (status != 0)
3692                goto abort_with_fw;
3693        else
3694                mgp->num_slices = cmd.data0;
3695
3696        /* Only allow multiple slices if MSI-X is usable */
3697        if (!myri10ge_msi) {
3698                goto abort_with_fw;
3699        }
3700
3701        /* if the admin did not specify a limit to how many
3702         * slices we should use, cap it automatically to the
3703         * number of CPUs currently online */
3704        if (myri10ge_max_slices == -1)
3705                myri10ge_max_slices = ncpus;
3706
3707        if (mgp->num_slices > myri10ge_max_slices)
3708                mgp->num_slices = myri10ge_max_slices;
3709
3710        /* Now try to allocate as many MSI-X vectors as we have
3711         * slices. We give up on MSI-X if we can only get a single
3712         * vector. */
3713
3714        mgp->msix_vectors = kcalloc(mgp->num_slices, sizeof(*mgp->msix_vectors),
3715                                    GFP_KERNEL);
3716        if (mgp->msix_vectors == NULL)
3717                goto no_msix;
3718        for (i = 0; i < mgp->num_slices; i++) {
3719                mgp->msix_vectors[i].entry = i;
3720        }
3721
3722        while (mgp->num_slices > 1) {
3723                mgp->num_slices = rounddown_pow_of_two(mgp->num_slices);
3724                if (mgp->num_slices == 1)
3725                        goto no_msix;
3726                status = pci_enable_msix_range(pdev,
3727                                               mgp->msix_vectors,
3728                                               mgp->num_slices,
3729                                               mgp->num_slices);
3730                if (status < 0)
3731                        goto no_msix;
3732
3733                pci_disable_msix(pdev);
3734
3735                if (status == mgp->num_slices) {
3736                        if (old_allocated)
3737                                kfree(old_fw);
3738                        return;
3739                } else {
3740                        mgp->num_slices = status;
3741                }
3742        }
3743
3744no_msix:
3745        if (mgp->msix_vectors != NULL) {
3746                kfree(mgp->msix_vectors);
3747                mgp->msix_vectors = NULL;
3748        }
3749
3750abort_with_fw:
3751        mgp->num_slices = 1;
3752        set_fw_name(mgp, old_fw, old_allocated);
3753        myri10ge_load_firmware(mgp, 0);
3754}
3755
3756static const struct net_device_ops myri10ge_netdev_ops = {
3757        .ndo_open               = myri10ge_open,
3758        .ndo_stop               = myri10ge_close,
3759        .ndo_start_xmit         = myri10ge_xmit,
3760        .ndo_get_stats64        = myri10ge_get_stats,
3761        .ndo_validate_addr      = eth_validate_addr,
3762        .ndo_change_mtu         = myri10ge_change_mtu,
3763        .ndo_set_rx_mode        = myri10ge_set_multicast_list,
3764        .ndo_set_mac_address    = myri10ge_set_mac_address,
3765};
3766
3767static int myri10ge_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
3768{
3769        struct net_device *netdev;
3770        struct myri10ge_priv *mgp;
3771        struct device *dev = &pdev->dev;
3772        int i;
3773        int status = -ENXIO;
3774        int dac_enabled;
3775        unsigned hdr_offset, ss_offset;
3776        static int board_number;
3777
3778        netdev = alloc_etherdev_mq(sizeof(*mgp), MYRI10GE_MAX_SLICES);
3779        if (netdev == NULL)
3780                return -ENOMEM;
3781
3782        SET_NETDEV_DEV(netdev, &pdev->dev);
3783
3784        mgp = netdev_priv(netdev);
3785        mgp->dev = netdev;
3786        mgp->pdev = pdev;
3787        mgp->pause = myri10ge_flow_control;
3788        mgp->intr_coal_delay = myri10ge_intr_coal_delay;
3789        mgp->msg_enable = netif_msg_init(myri10ge_debug, MYRI10GE_MSG_DEFAULT);
3790        mgp->board_number = board_number;
3791        init_waitqueue_head(&mgp->down_wq);
3792
3793        if (pci_enable_device(pdev)) {
3794                dev_err(&pdev->dev, "pci_enable_device call failed\n");
3795                status = -ENODEV;
3796                goto abort_with_netdev;
3797        }
3798
3799        /* Find the vendor-specific cap so we can check
3800         * the reboot register later on */
3801        mgp->vendor_specific_offset
3802            = pci_find_capability(pdev, PCI_CAP_ID_VNDR);
3803
3804        /* Set our max read request to 4KB */
3805        status = pcie_set_readrq(pdev, 4096);
3806        if (status != 0) {
3807                dev_err(&pdev->dev, "Error %d writing PCI_EXP_DEVCTL\n",
3808                        status);
3809                goto abort_with_enabled;
3810        }
3811
3812        myri10ge_mask_surprise_down(pdev);
3813        pci_set_master(pdev);
3814        dac_enabled = 1;
3815        status = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
3816        if (status != 0) {
3817                dac_enabled = 0;
3818                dev_err(&pdev->dev,
3819                        "64-bit pci address mask was refused, "
3820                        "trying 32-bit\n");
3821                status = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
3822        }
3823        if (status != 0) {
3824                dev_err(&pdev->dev, "Error %d setting DMA mask\n", status);
3825                goto abort_with_enabled;
3826        }
3827        (void)pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
3828        mgp->cmd = dma_alloc_coherent(&pdev->dev, sizeof(*mgp->cmd),
3829                                      &mgp->cmd_bus, GFP_KERNEL);
3830        if (!mgp->cmd) {
3831                status = -ENOMEM;
3832                goto abort_with_enabled;
3833        }
3834
3835        mgp->board_span = pci_resource_len(pdev, 0);
3836        mgp->iomem_base = pci_resource_start(pdev, 0);
3837        mgp->wc_cookie = arch_phys_wc_add(mgp->iomem_base, mgp->board_span);
3838        mgp->sram = ioremap_wc(mgp->iomem_base, mgp->board_span);
3839        if (mgp->sram == NULL) {
3840                dev_err(&pdev->dev, "ioremap failed for %ld bytes at 0x%lx\n",
3841                        mgp->board_span, mgp->iomem_base);
3842                status = -ENXIO;
3843                goto abort_with_mtrr;
3844        }
3845        hdr_offset =
3846            swab32(readl(mgp->sram + MCP_HEADER_PTR_OFFSET)) & 0xffffc;
3847        ss_offset = hdr_offset + offsetof(struct mcp_gen_header, string_specs);
3848        mgp->sram_size = swab32(readl(mgp->sram + ss_offset));
3849        if (mgp->sram_size > mgp->board_span ||
3850            mgp->sram_size <= MYRI10GE_FW_OFFSET) {
3851                dev_err(&pdev->dev,
3852                        "invalid sram_size %dB or board span %ldB\n",
3853                        mgp->sram_size, mgp->board_span);
3854                goto abort_with_ioremap;
3855        }
3856        memcpy_fromio(mgp->eeprom_strings,
3857                      mgp->sram + mgp->sram_size, MYRI10GE_EEPROM_STRINGS_SIZE);
3858        memset(mgp->eeprom_strings + MYRI10GE_EEPROM_STRINGS_SIZE - 2, 0, 2);
3859        status = myri10ge_read_mac_addr(mgp);
3860        if (status)
3861                goto abort_with_ioremap;
3862
3863        for (i = 0; i < ETH_ALEN; i++)
3864                netdev->dev_addr[i] = mgp->mac_addr[i];
3865
3866        myri10ge_select_firmware(mgp);
3867
3868        status = myri10ge_load_firmware(mgp, 1);
3869        if (status != 0) {
3870                dev_err(&pdev->dev, "failed to load firmware\n");
3871                goto abort_with_ioremap;
3872        }
3873        myri10ge_probe_slices(mgp);
3874        status = myri10ge_alloc_slices(mgp);
3875        if (status != 0) {
3876                dev_err(&pdev->dev, "failed to alloc slice state\n");
3877                goto abort_with_firmware;
3878        }
3879        netif_set_real_num_tx_queues(netdev, mgp->num_slices);
3880        netif_set_real_num_rx_queues(netdev, mgp->num_slices);
3881        status = myri10ge_reset(mgp);
3882        if (status != 0) {
3883                dev_err(&pdev->dev, "failed reset\n");
3884                goto abort_with_slices;
3885        }
3886#ifdef CONFIG_MYRI10GE_DCA
3887        myri10ge_setup_dca(mgp);
3888#endif
3889        pci_set_drvdata(pdev, mgp);
3890
3891        /* MTU range: 68 - 9000 */
3892        netdev->min_mtu = ETH_MIN_MTU;
3893        netdev->max_mtu = MYRI10GE_MAX_ETHER_MTU - ETH_HLEN;
3894
3895        if (myri10ge_initial_mtu > netdev->max_mtu)
3896                myri10ge_initial_mtu = netdev->max_mtu;
3897        if (myri10ge_initial_mtu < netdev->min_mtu)
3898                myri10ge_initial_mtu = netdev->min_mtu;
3899
3900        netdev->mtu = myri10ge_initial_mtu;
3901
3902        netdev->netdev_ops = &myri10ge_netdev_ops;
3903        netdev->hw_features = mgp->features | NETIF_F_RXCSUM;
3904
3905        /* fake NETIF_F_HW_VLAN_CTAG_RX for good GRO performance */
3906        netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX;
3907
3908        netdev->features = netdev->hw_features;
3909
3910        if (dac_enabled)
3911                netdev->features |= NETIF_F_HIGHDMA;
3912
3913        netdev->vlan_features |= mgp->features;
3914        if (mgp->fw_ver_tiny < 37)
3915                netdev->vlan_features &= ~NETIF_F_TSO6;
3916        if (mgp->fw_ver_tiny < 32)
3917                netdev->vlan_features &= ~NETIF_F_TSO;
3918
3919        /* make sure we can get an irq, and that MSI can be
3920         * setup (if available). */
3921        status = myri10ge_request_irq(mgp);
3922        if (status != 0)
3923                goto abort_with_firmware;
3924        myri10ge_free_irq(mgp);
3925
3926        /* Save configuration space to be restored if the
3927         * nic resets due to a parity error */
3928        pci_save_state(pdev);
3929
3930        /* Setup the watchdog timer */
3931        timer_setup(&mgp->watchdog_timer, myri10ge_watchdog_timer, 0);
3932
3933        netdev->ethtool_ops = &myri10ge_ethtool_ops;
3934        INIT_WORK(&mgp->watchdog_work, myri10ge_watchdog);
3935        status = register_netdev(netdev);
3936        if (status != 0) {
3937                dev_err(&pdev->dev, "register_netdev failed: %d\n", status);
3938                goto abort_with_state;
3939        }
3940        if (mgp->msix_enabled)
3941                dev_info(dev, "%d MSI-X IRQs, tx bndry %d, fw %s, MTRR %s, WC Enabled\n",
3942                         mgp->num_slices, mgp->tx_boundary, mgp->fw_name,
3943                         (mgp->wc_cookie > 0 ? "Enabled" : "Disabled"));
3944        else
3945                dev_info(dev, "%s IRQ %d, tx bndry %d, fw %s, MTRR %s, WC Enabled\n",
3946                         mgp->msi_enabled ? "MSI" : "xPIC",
3947                         pdev->irq, mgp->tx_boundary, mgp->fw_name,
3948                         (mgp->wc_cookie > 0 ? "Enabled" : "Disabled"));
3949
3950        board_number++;
3951        return 0;
3952
3953abort_with_state:
3954        pci_restore_state(pdev);
3955
3956abort_with_slices:
3957        myri10ge_free_slices(mgp);
3958
3959abort_with_firmware:
3960        myri10ge_dummy_rdma(mgp, 0);
3961
3962abort_with_ioremap:
3963        if (mgp->mac_addr_string != NULL)
3964                dev_err(&pdev->dev,
3965                        "myri10ge_probe() failed: MAC=%s, SN=%ld\n",
3966                        mgp->mac_addr_string, mgp->serial_number);
3967        iounmap(mgp->sram);
3968
3969abort_with_mtrr:
3970        arch_phys_wc_del(mgp->wc_cookie);
3971        dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
3972                          mgp->cmd, mgp->cmd_bus);
3973
3974abort_with_enabled:
3975        pci_disable_device(pdev);
3976
3977abort_with_netdev:
3978        set_fw_name(mgp, NULL, false);
3979        free_netdev(netdev);
3980        return status;
3981}
3982
3983/*
3984 * myri10ge_remove
3985 *
3986 * Does what is necessary to shutdown one Myrinet device. Called
3987 *   once for each Myrinet card by the kernel when a module is
3988 *   unloaded.
3989 */
3990static void myri10ge_remove(struct pci_dev *pdev)
3991{
3992        struct myri10ge_priv *mgp;
3993        struct net_device *netdev;
3994
3995        mgp = pci_get_drvdata(pdev);
3996        if (mgp == NULL)
3997                return;
3998
3999        cancel_work_sync(&mgp->watchdog_work);
4000        netdev = mgp->dev;
4001        unregister_netdev(netdev);
4002
4003#ifdef CONFIG_MYRI10GE_DCA
4004        myri10ge_teardown_dca(mgp);
4005#endif
4006        myri10ge_dummy_rdma(mgp, 0);
4007
4008        /* avoid a memory leak */
4009        pci_restore_state(pdev);
4010
4011        iounmap(mgp->sram);
4012        arch_phys_wc_del(mgp->wc_cookie);
4013        myri10ge_free_slices(mgp);
4014        kfree(mgp->msix_vectors);
4015        dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
4016                          mgp->cmd, mgp->cmd_bus);
4017
4018        set_fw_name(mgp, NULL, false);
4019        free_netdev(netdev);
4020        pci_disable_device(pdev);
4021}
4022
4023#define PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E      0x0008
4024#define PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E_9    0x0009
4025
4026static const struct pci_device_id myri10ge_pci_tbl[] = {
4027        {PCI_DEVICE(PCI_VENDOR_ID_MYRICOM, PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E)},
4028        {PCI_DEVICE
4029         (PCI_VENDOR_ID_MYRICOM, PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E_9)},
4030        {0},
4031};
4032
4033MODULE_DEVICE_TABLE(pci, myri10ge_pci_tbl);
4034
4035static struct pci_driver myri10ge_driver = {
4036        .name = "myri10ge",
4037        .probe = myri10ge_probe,
4038        .remove = myri10ge_remove,
4039        .id_table = myri10ge_pci_tbl,
4040#ifdef CONFIG_PM
4041        .suspend = myri10ge_suspend,
4042        .resume = myri10ge_resume,
4043#endif
4044};
4045
4046#ifdef CONFIG_MYRI10GE_DCA
4047static int
4048myri10ge_notify_dca(struct notifier_block *nb, unsigned long event, void *p)
4049{
4050        int err = driver_for_each_device(&myri10ge_driver.driver,
4051                                         NULL, &event,
4052                                         myri10ge_notify_dca_device);
4053
4054        if (err)
4055                return NOTIFY_BAD;
4056        return NOTIFY_DONE;
4057}
4058
4059static struct notifier_block myri10ge_dca_notifier = {
4060        .notifier_call = myri10ge_notify_dca,
4061        .next = NULL,
4062        .priority = 0,
4063};
4064#endif                          /* CONFIG_MYRI10GE_DCA */
4065
4066static __init int myri10ge_init_module(void)
4067{
4068        pr_info("Version %s\n", MYRI10GE_VERSION_STR);
4069
4070        if (myri10ge_rss_hash > MXGEFW_RSS_HASH_TYPE_MAX) {
4071                pr_err("Illegal rssh hash type %d, defaulting to source port\n",
4072                       myri10ge_rss_hash);
4073                myri10ge_rss_hash = MXGEFW_RSS_HASH_TYPE_SRC_PORT;
4074        }
4075#ifdef CONFIG_MYRI10GE_DCA
4076        dca_register_notify(&myri10ge_dca_notifier);
4077#endif
4078        if (myri10ge_max_slices > MYRI10GE_MAX_SLICES)
4079                myri10ge_max_slices = MYRI10GE_MAX_SLICES;
4080
4081        return pci_register_driver(&myri10ge_driver);
4082}
4083
4084module_init(myri10ge_init_module);
4085
4086static __exit void myri10ge_cleanup_module(void)
4087{
4088#ifdef CONFIG_MYRI10GE_DCA
4089        dca_unregister_notify(&myri10ge_dca_notifier);
4090#endif
4091        pci_unregister_driver(&myri10ge_driver);
4092}
4093
4094module_exit(myri10ge_cleanup_module);
4095