OSDN Git Service

[PATCH] myri10ge - Use dev_info() when printing parameters after probe
[tomoyo/tomoyo-test1.git] / drivers / net / myri10ge / myri10ge.c
1 /*************************************************************************
2  * myri10ge.c: Myricom Myri-10G Ethernet driver.
3  *
4  * Copyright (C) 2005, 2006 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 REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * 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 #include <linux/tcp.h>
42 #include <linux/netdevice.h>
43 #include <linux/skbuff.h>
44 #include <linux/string.h>
45 #include <linux/module.h>
46 #include <linux/pci.h>
47 #include <linux/dma-mapping.h>
48 #include <linux/etherdevice.h>
49 #include <linux/if_ether.h>
50 #include <linux/if_vlan.h>
51 #include <linux/ip.h>
52 #include <linux/inet.h>
53 #include <linux/in.h>
54 #include <linux/ethtool.h>
55 #include <linux/firmware.h>
56 #include <linux/delay.h>
57 #include <linux/version.h>
58 #include <linux/timer.h>
59 #include <linux/vmalloc.h>
60 #include <linux/crc32.h>
61 #include <linux/moduleparam.h>
62 #include <linux/io.h>
63 #include <net/checksum.h>
64 #include <asm/byteorder.h>
65 #include <asm/io.h>
66 #include <asm/processor.h>
67 #ifdef CONFIG_MTRR
68 #include <asm/mtrr.h>
69 #endif
70
71 #include "myri10ge_mcp.h"
72 #include "myri10ge_mcp_gen_header.h"
73
74 #define MYRI10GE_VERSION_STR "1.0.0"
75
76 MODULE_DESCRIPTION("Myricom 10G driver (10GbE)");
77 MODULE_AUTHOR("Maintainer: help@myri.com");
78 MODULE_VERSION(MYRI10GE_VERSION_STR);
79 MODULE_LICENSE("Dual BSD/GPL");
80
81 #define MYRI10GE_MAX_ETHER_MTU 9014
82
83 #define MYRI10GE_ETH_STOPPED 0
84 #define MYRI10GE_ETH_STOPPING 1
85 #define MYRI10GE_ETH_STARTING 2
86 #define MYRI10GE_ETH_RUNNING 3
87 #define MYRI10GE_ETH_OPEN_FAILED 4
88
89 #define MYRI10GE_EEPROM_STRINGS_SIZE 256
90 #define MYRI10GE_MAX_SEND_DESC_TSO ((65536 / 2048) * 2)
91
92 #define MYRI10GE_NO_CONFIRM_DATA 0xffffffff
93 #define MYRI10GE_NO_RESPONSE_RESULT 0xffffffff
94
95 struct myri10ge_rx_buffer_state {
96         struct sk_buff *skb;
97          DECLARE_PCI_UNMAP_ADDR(bus)
98          DECLARE_PCI_UNMAP_LEN(len)
99 };
100
101 struct myri10ge_tx_buffer_state {
102         struct sk_buff *skb;
103         int last;
104          DECLARE_PCI_UNMAP_ADDR(bus)
105          DECLARE_PCI_UNMAP_LEN(len)
106 };
107
108 struct myri10ge_cmd {
109         u32 data0;
110         u32 data1;
111         u32 data2;
112 };
113
114 struct myri10ge_rx_buf {
115         struct mcp_kreq_ether_recv __iomem *lanai;      /* lanai ptr for recv ring */
116         u8 __iomem *wc_fifo;    /* w/c rx dma addr fifo address */
117         struct mcp_kreq_ether_recv *shadow;     /* host shadow of recv ring */
118         struct myri10ge_rx_buffer_state *info;
119         int cnt;
120         int alloc_fail;
121         int mask;               /* number of rx slots -1 */
122 };
123
124 struct myri10ge_tx_buf {
125         struct mcp_kreq_ether_send __iomem *lanai;      /* lanai ptr for sendq */
126         u8 __iomem *wc_fifo;    /* w/c send fifo address */
127         struct mcp_kreq_ether_send *req_list;   /* host shadow of sendq */
128         char *req_bytes;
129         struct myri10ge_tx_buffer_state *info;
130         int mask;               /* number of transmit slots -1  */
131         int boundary;           /* boundary transmits cannot cross */
132         int req ____cacheline_aligned;  /* transmit slots submitted     */
133         int pkt_start;          /* packets started */
134         int done ____cacheline_aligned; /* transmit slots completed     */
135         int pkt_done;           /* packets completed */
136 };
137
138 struct myri10ge_rx_done {
139         struct mcp_slot *entry;
140         dma_addr_t bus;
141         int cnt;
142         int idx;
143 };
144
145 struct myri10ge_priv {
146         int running;            /* running?             */
147         int csum_flag;          /* rx_csums?            */
148         struct myri10ge_tx_buf tx;      /* transmit ring        */
149         struct myri10ge_rx_buf rx_small;
150         struct myri10ge_rx_buf rx_big;
151         struct myri10ge_rx_done rx_done;
152         int small_bytes;
153         struct net_device *dev;
154         struct net_device_stats stats;
155         u8 __iomem *sram;
156         int sram_size;
157         unsigned long board_span;
158         unsigned long iomem_base;
159         u32 __iomem *irq_claim;
160         u32 __iomem *irq_deassert;
161         char *mac_addr_string;
162         struct mcp_cmd_response *cmd;
163         dma_addr_t cmd_bus;
164         struct mcp_irq_data *fw_stats;
165         dma_addr_t fw_stats_bus;
166         struct pci_dev *pdev;
167         int msi_enabled;
168         unsigned int link_state;
169         unsigned int rdma_tags_available;
170         int intr_coal_delay;
171         u32 __iomem *intr_coal_delay_ptr;
172         int mtrr;
173         int wake_queue;
174         int stop_queue;
175         int down_cnt;
176         wait_queue_head_t down_wq;
177         struct work_struct watchdog_work;
178         struct timer_list watchdog_timer;
179         int watchdog_tx_done;
180         int watchdog_resets;
181         int tx_linearized;
182         int pause;
183         char *fw_name;
184         char eeprom_strings[MYRI10GE_EEPROM_STRINGS_SIZE];
185         char fw_version[128];
186         u8 mac_addr[6];         /* eeprom mac address */
187         unsigned long serial_number;
188         int vendor_specific_offset;
189         u32 devctl;
190         u16 msi_flags;
191         u32 read_dma;
192         u32 write_dma;
193         u32 read_write_dma;
194 };
195
196 static char *myri10ge_fw_unaligned = "myri10ge_ethp_z8e.dat";
197 static char *myri10ge_fw_aligned = "myri10ge_eth_z8e.dat";
198
199 static char *myri10ge_fw_name = NULL;
200 module_param(myri10ge_fw_name, charp, S_IRUGO | S_IWUSR);
201 MODULE_PARM_DESC(myri10ge_fw_name, "Firmware image name\n");
202
203 static int myri10ge_ecrc_enable = 1;
204 module_param(myri10ge_ecrc_enable, int, S_IRUGO);
205 MODULE_PARM_DESC(myri10ge_ecrc_enable, "Enable Extended CRC on PCI-E\n");
206
207 static int myri10ge_max_intr_slots = 1024;
208 module_param(myri10ge_max_intr_slots, int, S_IRUGO);
209 MODULE_PARM_DESC(myri10ge_max_intr_slots, "Interrupt queue slots\n");
210
211 static int myri10ge_small_bytes = -1;   /* -1 == auto */
212 module_param(myri10ge_small_bytes, int, S_IRUGO | S_IWUSR);
213 MODULE_PARM_DESC(myri10ge_small_bytes, "Threshold of small packets\n");
214
215 static int myri10ge_msi = 1;    /* enable msi by default */
216 module_param(myri10ge_msi, int, S_IRUGO);
217 MODULE_PARM_DESC(myri10ge_msi, "Enable Message Signalled Interrupts\n");
218
219 static int myri10ge_intr_coal_delay = 25;
220 module_param(myri10ge_intr_coal_delay, int, S_IRUGO);
221 MODULE_PARM_DESC(myri10ge_intr_coal_delay, "Interrupt coalescing delay\n");
222
223 static int myri10ge_flow_control = 1;
224 module_param(myri10ge_flow_control, int, S_IRUGO);
225 MODULE_PARM_DESC(myri10ge_flow_control, "Pause parameter\n");
226
227 static int myri10ge_deassert_wait = 1;
228 module_param(myri10ge_deassert_wait, int, S_IRUGO | S_IWUSR);
229 MODULE_PARM_DESC(myri10ge_deassert_wait,
230                  "Wait when deasserting legacy interrupts\n");
231
232 static int myri10ge_force_firmware = 0;
233 module_param(myri10ge_force_firmware, int, S_IRUGO);
234 MODULE_PARM_DESC(myri10ge_force_firmware,
235                  "Force firmware to assume aligned completions\n");
236
237 static int myri10ge_skb_cross_4k = 0;
238 module_param(myri10ge_skb_cross_4k, int, S_IRUGO | S_IWUSR);
239 MODULE_PARM_DESC(myri10ge_skb_cross_4k,
240                  "Can a small skb cross a 4KB boundary?\n");
241
242 static int myri10ge_initial_mtu = MYRI10GE_MAX_ETHER_MTU - ETH_HLEN;
243 module_param(myri10ge_initial_mtu, int, S_IRUGO);
244 MODULE_PARM_DESC(myri10ge_initial_mtu, "Initial MTU\n");
245
246 static int myri10ge_napi_weight = 64;
247 module_param(myri10ge_napi_weight, int, S_IRUGO);
248 MODULE_PARM_DESC(myri10ge_napi_weight, "Set NAPI weight\n");
249
250 static int myri10ge_watchdog_timeout = 1;
251 module_param(myri10ge_watchdog_timeout, int, S_IRUGO);
252 MODULE_PARM_DESC(myri10ge_watchdog_timeout, "Set watchdog timeout\n");
253
254 static int myri10ge_max_irq_loops = 1048576;
255 module_param(myri10ge_max_irq_loops, int, S_IRUGO);
256 MODULE_PARM_DESC(myri10ge_max_irq_loops,
257                  "Set stuck legacy IRQ detection threshold\n");
258
259 #define MYRI10GE_FW_OFFSET 1024*1024
260 #define MYRI10GE_HIGHPART_TO_U32(X) \
261 (sizeof (X) == 8) ? ((u32)((u64)(X) >> 32)) : (0)
262 #define MYRI10GE_LOWPART_TO_U32(X) ((u32)(X))
263
264 #define myri10ge_pio_copy(to,from,size) __iowrite64_copy(to,from,size/8)
265
266 static int
267 myri10ge_send_cmd(struct myri10ge_priv *mgp, u32 cmd,
268                   struct myri10ge_cmd *data, int atomic)
269 {
270         struct mcp_cmd *buf;
271         char buf_bytes[sizeof(*buf) + 8];
272         struct mcp_cmd_response *response = mgp->cmd;
273         char __iomem *cmd_addr = mgp->sram + MXGEFW_CMD_OFFSET;
274         u32 dma_low, dma_high, result, value;
275         int sleep_total = 0;
276
277         /* ensure buf is aligned to 8 bytes */
278         buf = (struct mcp_cmd *)ALIGN((unsigned long)buf_bytes, 8);
279
280         buf->data0 = htonl(data->data0);
281         buf->data1 = htonl(data->data1);
282         buf->data2 = htonl(data->data2);
283         buf->cmd = htonl(cmd);
284         dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
285         dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
286
287         buf->response_addr.low = htonl(dma_low);
288         buf->response_addr.high = htonl(dma_high);
289         response->result = MYRI10GE_NO_RESPONSE_RESULT;
290         mb();
291         myri10ge_pio_copy(cmd_addr, buf, sizeof(*buf));
292
293         /* wait up to 15ms. Longest command is the DMA benchmark,
294          * which is capped at 5ms, but runs from a timeout handler
295          * that runs every 7.8ms. So a 15ms timeout leaves us with
296          * a 2.2ms margin
297          */
298         if (atomic) {
299                 /* if atomic is set, do not sleep,
300                  * and try to get the completion quickly
301                  * (1ms will be enough for those commands) */
302                 for (sleep_total = 0;
303                      sleep_total < 1000
304                      && response->result == MYRI10GE_NO_RESPONSE_RESULT;
305                      sleep_total += 10)
306                         udelay(10);
307         } else {
308                 /* use msleep for most command */
309                 for (sleep_total = 0;
310                      sleep_total < 15
311                      && response->result == MYRI10GE_NO_RESPONSE_RESULT;
312                      sleep_total++)
313                         msleep(1);
314         }
315
316         result = ntohl(response->result);
317         value = ntohl(response->data);
318         if (result != MYRI10GE_NO_RESPONSE_RESULT) {
319                 if (result == 0) {
320                         data->data0 = value;
321                         return 0;
322                 } else {
323                         dev_err(&mgp->pdev->dev,
324                                 "command %d failed, result = %d\n",
325                                 cmd, result);
326                         return -ENXIO;
327                 }
328         }
329
330         dev_err(&mgp->pdev->dev, "command %d timed out, result = %d\n",
331                 cmd, result);
332         return -EAGAIN;
333 }
334
335 /*
336  * The eeprom strings on the lanaiX have the format
337  * SN=x\0
338  * MAC=x:x:x:x:x:x\0
339  * PT:ddd mmm xx xx:xx:xx xx\0
340  * PV:ddd mmm xx xx:xx:xx xx\0
341  */
342 static int myri10ge_read_mac_addr(struct myri10ge_priv *mgp)
343 {
344         char *ptr, *limit;
345         int i;
346
347         ptr = mgp->eeprom_strings;
348         limit = mgp->eeprom_strings + MYRI10GE_EEPROM_STRINGS_SIZE;
349
350         while (*ptr != '\0' && ptr < limit) {
351                 if (memcmp(ptr, "MAC=", 4) == 0) {
352                         ptr += 4;
353                         mgp->mac_addr_string = ptr;
354                         for (i = 0; i < 6; i++) {
355                                 if ((ptr + 2) > limit)
356                                         goto abort;
357                                 mgp->mac_addr[i] =
358                                     simple_strtoul(ptr, &ptr, 16);
359                                 ptr += 1;
360                         }
361                 }
362                 if (memcmp((const void *)ptr, "SN=", 3) == 0) {
363                         ptr += 3;
364                         mgp->serial_number = simple_strtoul(ptr, &ptr, 10);
365                 }
366                 while (ptr < limit && *ptr++) ;
367         }
368
369         return 0;
370
371 abort:
372         dev_err(&mgp->pdev->dev, "failed to parse eeprom_strings\n");
373         return -ENXIO;
374 }
375
376 /*
377  * Enable or disable periodic RDMAs from the host to make certain
378  * chipsets resend dropped PCIe messages
379  */
380
381 static void myri10ge_dummy_rdma(struct myri10ge_priv *mgp, int enable)
382 {
383         char __iomem *submit;
384         u32 buf[16];
385         u32 dma_low, dma_high;
386         int i;
387
388         /* clear confirmation addr */
389         mgp->cmd->data = 0;
390         mb();
391
392         /* send a rdma command to the PCIe engine, and wait for the
393          * response in the confirmation address.  The firmware should
394          * write a -1 there to indicate it is alive and well
395          */
396         dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
397         dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
398
399         buf[0] = htonl(dma_high);       /* confirm addr MSW */
400         buf[1] = htonl(dma_low);        /* confirm addr LSW */
401         buf[2] = htonl(MYRI10GE_NO_CONFIRM_DATA);       /* confirm data */
402         buf[3] = htonl(dma_high);       /* dummy addr MSW */
403         buf[4] = htonl(dma_low);        /* dummy addr LSW */
404         buf[5] = htonl(enable); /* enable? */
405
406         submit = mgp->sram + 0xfc01c0;
407
408         myri10ge_pio_copy(submit, &buf, sizeof(buf));
409         for (i = 0; mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA && i < 20; i++)
410                 msleep(1);
411         if (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA)
412                 dev_err(&mgp->pdev->dev, "dummy rdma %s failed\n",
413                         (enable ? "enable" : "disable"));
414 }
415
416 static int
417 myri10ge_validate_firmware(struct myri10ge_priv *mgp,
418                            struct mcp_gen_header *hdr)
419 {
420         struct device *dev = &mgp->pdev->dev;
421         int major, minor;
422
423         /* check firmware type */
424         if (ntohl(hdr->mcp_type) != MCP_TYPE_ETH) {
425                 dev_err(dev, "Bad firmware type: 0x%x\n", ntohl(hdr->mcp_type));
426                 return -EINVAL;
427         }
428
429         /* save firmware version for ethtool */
430         strncpy(mgp->fw_version, hdr->version, sizeof(mgp->fw_version));
431
432         sscanf(mgp->fw_version, "%d.%d", &major, &minor);
433
434         if (!(major == MXGEFW_VERSION_MAJOR && minor == MXGEFW_VERSION_MINOR)) {
435                 dev_err(dev, "Found firmware version %s\n", mgp->fw_version);
436                 dev_err(dev, "Driver needs %d.%d\n", MXGEFW_VERSION_MAJOR,
437                         MXGEFW_VERSION_MINOR);
438                 return -EINVAL;
439         }
440         return 0;
441 }
442
443 static int myri10ge_load_hotplug_firmware(struct myri10ge_priv *mgp, u32 * size)
444 {
445         unsigned crc, reread_crc;
446         const struct firmware *fw;
447         struct device *dev = &mgp->pdev->dev;
448         struct mcp_gen_header *hdr;
449         size_t hdr_offset;
450         int status;
451
452         if ((status = request_firmware(&fw, mgp->fw_name, dev)) < 0) {
453                 dev_err(dev, "Unable to load %s firmware image via hotplug\n",
454                         mgp->fw_name);
455                 status = -EINVAL;
456                 goto abort_with_nothing;
457         }
458
459         /* check size */
460
461         if (fw->size >= mgp->sram_size - MYRI10GE_FW_OFFSET ||
462             fw->size < MCP_HEADER_PTR_OFFSET + 4) {
463                 dev_err(dev, "Firmware size invalid:%d\n", (int)fw->size);
464                 status = -EINVAL;
465                 goto abort_with_fw;
466         }
467
468         /* check id */
469         hdr_offset = ntohl(*(u32 *) (fw->data + MCP_HEADER_PTR_OFFSET));
470         if ((hdr_offset & 3) || hdr_offset + sizeof(*hdr) > fw->size) {
471                 dev_err(dev, "Bad firmware file\n");
472                 status = -EINVAL;
473                 goto abort_with_fw;
474         }
475         hdr = (void *)(fw->data + hdr_offset);
476
477         status = myri10ge_validate_firmware(mgp, hdr);
478         if (status != 0)
479                 goto abort_with_fw;
480
481         crc = crc32(~0, fw->data, fw->size);
482         if (mgp->tx.boundary == 2048) {
483                 /* Avoid PCI burst on chipset with unaligned completions. */
484                 int i;
485                 __iomem u32 *ptr = (__iomem u32 *) (mgp->sram +
486                                                     MYRI10GE_FW_OFFSET);
487                 for (i = 0; i < fw->size / 4; i++) {
488                         __raw_writel(((u32 *) fw->data)[i], ptr + i);
489                         wmb();
490                 }
491         } else {
492                 myri10ge_pio_copy(mgp->sram + MYRI10GE_FW_OFFSET, fw->data,
493                                   fw->size);
494         }
495         /* corruption checking is good for parity recovery and buggy chipset */
496         memcpy_fromio(fw->data, mgp->sram + MYRI10GE_FW_OFFSET, fw->size);
497         reread_crc = crc32(~0, fw->data, fw->size);
498         if (crc != reread_crc) {
499                 dev_err(dev, "CRC failed(fw-len=%u), got 0x%x (expect 0x%x)\n",
500                         (unsigned)fw->size, reread_crc, crc);
501                 status = -EIO;
502                 goto abort_with_fw;
503         }
504         *size = (u32) fw->size;
505
506 abort_with_fw:
507         release_firmware(fw);
508
509 abort_with_nothing:
510         return status;
511 }
512
513 static int myri10ge_adopt_running_firmware(struct myri10ge_priv *mgp)
514 {
515         struct mcp_gen_header *hdr;
516         struct device *dev = &mgp->pdev->dev;
517         const size_t bytes = sizeof(struct mcp_gen_header);
518         size_t hdr_offset;
519         int status;
520
521         /* find running firmware header */
522         hdr_offset = ntohl(__raw_readl(mgp->sram + MCP_HEADER_PTR_OFFSET));
523
524         if ((hdr_offset & 3) || hdr_offset + sizeof(*hdr) > mgp->sram_size) {
525                 dev_err(dev, "Running firmware has bad header offset (%d)\n",
526                         (int)hdr_offset);
527                 return -EIO;
528         }
529
530         /* copy header of running firmware from SRAM to host memory to
531          * validate firmware */
532         hdr = kmalloc(bytes, GFP_KERNEL);
533         if (hdr == NULL) {
534                 dev_err(dev, "could not malloc firmware hdr\n");
535                 return -ENOMEM;
536         }
537         memcpy_fromio(hdr, mgp->sram + hdr_offset, bytes);
538         status = myri10ge_validate_firmware(mgp, hdr);
539         kfree(hdr);
540         return status;
541 }
542
543 static int myri10ge_load_firmware(struct myri10ge_priv *mgp)
544 {
545         char __iomem *submit;
546         u32 buf[16];
547         u32 dma_low, dma_high, size;
548         int status, i;
549
550         size = 0;
551         status = myri10ge_load_hotplug_firmware(mgp, &size);
552         if (status) {
553                 dev_warn(&mgp->pdev->dev, "hotplug firmware loading failed\n");
554
555                 /* Do not attempt to adopt firmware if there
556                  * was a bad crc */
557                 if (status == -EIO)
558                         return status;
559
560                 status = myri10ge_adopt_running_firmware(mgp);
561                 if (status != 0) {
562                         dev_err(&mgp->pdev->dev,
563                                 "failed to adopt running firmware\n");
564                         return status;
565                 }
566                 dev_info(&mgp->pdev->dev,
567                          "Successfully adopted running firmware\n");
568                 if (mgp->tx.boundary == 4096) {
569                         dev_warn(&mgp->pdev->dev,
570                                  "Using firmware currently running on NIC"
571                                  ".  For optimal\n");
572                         dev_warn(&mgp->pdev->dev,
573                                  "performance consider loading optimized "
574                                  "firmware\n");
575                         dev_warn(&mgp->pdev->dev, "via hotplug\n");
576                 }
577
578                 mgp->fw_name = "adopted";
579                 mgp->tx.boundary = 2048;
580                 return status;
581         }
582
583         /* clear confirmation addr */
584         mgp->cmd->data = 0;
585         mb();
586
587         /* send a reload command to the bootstrap MCP, and wait for the
588          *  response in the confirmation address.  The firmware should
589          * write a -1 there to indicate it is alive and well
590          */
591         dma_low = MYRI10GE_LOWPART_TO_U32(mgp->cmd_bus);
592         dma_high = MYRI10GE_HIGHPART_TO_U32(mgp->cmd_bus);
593
594         buf[0] = htonl(dma_high);       /* confirm addr MSW */
595         buf[1] = htonl(dma_low);        /* confirm addr LSW */
596         buf[2] = htonl(MYRI10GE_NO_CONFIRM_DATA);       /* confirm data */
597
598         /* FIX: All newest firmware should un-protect the bottom of
599          * the sram before handoff. However, the very first interfaces
600          * do not. Therefore the handoff copy must skip the first 8 bytes
601          */
602         buf[3] = htonl(MYRI10GE_FW_OFFSET + 8); /* where the code starts */
603         buf[4] = htonl(size - 8);       /* length of code */
604         buf[5] = htonl(8);      /* where to copy to */
605         buf[6] = htonl(0);      /* where to jump to */
606
607         submit = mgp->sram + 0xfc0000;
608
609         myri10ge_pio_copy(submit, &buf, sizeof(buf));
610         mb();
611         msleep(1);
612         mb();
613         i = 0;
614         while (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA && i < 20) {
615                 msleep(1);
616                 i++;
617         }
618         if (mgp->cmd->data != MYRI10GE_NO_CONFIRM_DATA) {
619                 dev_err(&mgp->pdev->dev, "handoff failed\n");
620                 return -ENXIO;
621         }
622         dev_info(&mgp->pdev->dev, "handoff confirmed\n");
623         myri10ge_dummy_rdma(mgp, mgp->tx.boundary != 4096);
624
625         return 0;
626 }
627
628 static int myri10ge_update_mac_address(struct myri10ge_priv *mgp, u8 * addr)
629 {
630         struct myri10ge_cmd cmd;
631         int status;
632
633         cmd.data0 = ((addr[0] << 24) | (addr[1] << 16)
634                      | (addr[2] << 8) | addr[3]);
635
636         cmd.data1 = ((addr[4] << 8) | (addr[5]));
637
638         status = myri10ge_send_cmd(mgp, MXGEFW_SET_MAC_ADDRESS, &cmd, 0);
639         return status;
640 }
641
642 static int myri10ge_change_pause(struct myri10ge_priv *mgp, int pause)
643 {
644         struct myri10ge_cmd cmd;
645         int status, ctl;
646
647         ctl = pause ? MXGEFW_ENABLE_FLOW_CONTROL : MXGEFW_DISABLE_FLOW_CONTROL;
648         status = myri10ge_send_cmd(mgp, ctl, &cmd, 0);
649
650         if (status) {
651                 printk(KERN_ERR
652                        "myri10ge: %s: Failed to set flow control mode\n",
653                        mgp->dev->name);
654                 return status;
655         }
656         mgp->pause = pause;
657         return 0;
658 }
659
660 static void
661 myri10ge_change_promisc(struct myri10ge_priv *mgp, int promisc, int atomic)
662 {
663         struct myri10ge_cmd cmd;
664         int status, ctl;
665
666         ctl = promisc ? MXGEFW_ENABLE_PROMISC : MXGEFW_DISABLE_PROMISC;
667         status = myri10ge_send_cmd(mgp, ctl, &cmd, atomic);
668         if (status)
669                 printk(KERN_ERR "myri10ge: %s: Failed to set promisc mode\n",
670                        mgp->dev->name);
671 }
672
673 static int myri10ge_reset(struct myri10ge_priv *mgp)
674 {
675         struct myri10ge_cmd cmd;
676         int status;
677         size_t bytes;
678         u32 len;
679
680         /* try to send a reset command to the card to see if it
681          * is alive */
682         memset(&cmd, 0, sizeof(cmd));
683         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_RESET, &cmd, 0);
684         if (status != 0) {
685                 dev_err(&mgp->pdev->dev, "failed reset\n");
686                 return -ENXIO;
687         }
688
689         /* Now exchange information about interrupts  */
690
691         bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
692         memset(mgp->rx_done.entry, 0, bytes);
693         cmd.data0 = (u32) bytes;
694         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_SIZE, &cmd, 0);
695         cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->rx_done.bus);
696         cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->rx_done.bus);
697         status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_INTRQ_DMA, &cmd, 0);
698
699         status |=
700             myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_IRQ_ACK_OFFSET, &cmd, 0);
701         mgp->irq_claim = (__iomem u32 *) (mgp->sram + cmd.data0);
702         if (!mgp->msi_enabled) {
703                 status |= myri10ge_send_cmd
704                     (mgp, MXGEFW_CMD_GET_IRQ_DEASSERT_OFFSET, &cmd, 0);
705                 mgp->irq_deassert = (__iomem u32 *) (mgp->sram + cmd.data0);
706
707         }
708         status |= myri10ge_send_cmd
709             (mgp, MXGEFW_CMD_GET_INTR_COAL_DELAY_OFFSET, &cmd, 0);
710         mgp->intr_coal_delay_ptr = (__iomem u32 *) (mgp->sram + cmd.data0);
711         if (status != 0) {
712                 dev_err(&mgp->pdev->dev, "failed set interrupt parameters\n");
713                 return status;
714         }
715         __raw_writel(htonl(mgp->intr_coal_delay), mgp->intr_coal_delay_ptr);
716
717         /* Run a small DMA test.
718          * The magic multipliers to the length tell the firmware
719          * to do DMA read, write, or read+write tests.  The
720          * results are returned in cmd.data0.  The upper 16
721          * bits or the return is the number of transfers completed.
722          * The lower 16 bits is the time in 0.5us ticks that the
723          * transfers took to complete.
724          */
725
726         len = mgp->tx.boundary;
727
728         cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->rx_done.bus);
729         cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->rx_done.bus);
730         cmd.data2 = len * 0x10000;
731         status = myri10ge_send_cmd(mgp, MXGEFW_DMA_TEST, &cmd, 0);
732         if (status == 0)
733                 mgp->read_dma = ((cmd.data0 >> 16) * len * 2) /
734                     (cmd.data0 & 0xffff);
735         else
736                 dev_warn(&mgp->pdev->dev, "DMA read benchmark failed: %d\n",
737                          status);
738         cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->rx_done.bus);
739         cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->rx_done.bus);
740         cmd.data2 = len * 0x1;
741         status = myri10ge_send_cmd(mgp, MXGEFW_DMA_TEST, &cmd, 0);
742         if (status == 0)
743                 mgp->write_dma = ((cmd.data0 >> 16) * len * 2) /
744                     (cmd.data0 & 0xffff);
745         else
746                 dev_warn(&mgp->pdev->dev, "DMA write benchmark failed: %d\n",
747                          status);
748
749         cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->rx_done.bus);
750         cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->rx_done.bus);
751         cmd.data2 = len * 0x10001;
752         status = myri10ge_send_cmd(mgp, MXGEFW_DMA_TEST, &cmd, 0);
753         if (status == 0)
754                 mgp->read_write_dma = ((cmd.data0 >> 16) * len * 2 * 2) /
755                     (cmd.data0 & 0xffff);
756         else
757                 dev_warn(&mgp->pdev->dev,
758                          "DMA read/write benchmark failed: %d\n", status);
759
760         memset(mgp->rx_done.entry, 0, bytes);
761
762         /* reset mcp/driver shared state back to 0 */
763         mgp->tx.req = 0;
764         mgp->tx.done = 0;
765         mgp->tx.pkt_start = 0;
766         mgp->tx.pkt_done = 0;
767         mgp->rx_big.cnt = 0;
768         mgp->rx_small.cnt = 0;
769         mgp->rx_done.idx = 0;
770         mgp->rx_done.cnt = 0;
771         status = myri10ge_update_mac_address(mgp, mgp->dev->dev_addr);
772         myri10ge_change_promisc(mgp, 0, 0);
773         myri10ge_change_pause(mgp, mgp->pause);
774         return status;
775 }
776
777 static inline void
778 myri10ge_submit_8rx(struct mcp_kreq_ether_recv __iomem * dst,
779                     struct mcp_kreq_ether_recv *src)
780 {
781         u32 low;
782
783         low = src->addr_low;
784         src->addr_low = DMA_32BIT_MASK;
785         myri10ge_pio_copy(dst, src, 8 * sizeof(*src));
786         mb();
787         src->addr_low = low;
788         __raw_writel(low, &dst->addr_low);
789         mb();
790 }
791
792 /*
793  * Set of routines to get a new receive buffer.  Any buffer which
794  * crosses a 4KB boundary must start on a 4KB boundary due to PCIe
795  * wdma restrictions. We also try to align any smaller allocation to
796  * at least a 16 byte boundary for efficiency.  We assume the linux
797  * memory allocator works by powers of 2, and will not return memory
798  * smaller than 2KB which crosses a 4KB boundary.  If it does, we fall
799  * back to allocating 2x as much space as required.
800  *
801  * We intend to replace large (>4KB) skb allocations by using
802  * pages directly and building a fraglist in the near future.
803  */
804
805 static inline struct sk_buff *myri10ge_alloc_big(int bytes)
806 {
807         struct sk_buff *skb;
808         unsigned long data, roundup;
809
810         skb = dev_alloc_skb(bytes + 4096 + MXGEFW_PAD);
811         if (skb == NULL)
812                 return NULL;
813
814         /* Correct skb->truesize so that socket buffer
815          * accounting is not confused the rounding we must
816          * do to satisfy alignment constraints.
817          */
818         skb->truesize -= 4096;
819
820         data = (unsigned long)(skb->data);
821         roundup = (-data) & (4095);
822         skb_reserve(skb, roundup);
823         return skb;
824 }
825
826 /* Allocate 2x as much space as required and use whichever portion
827  * does not cross a 4KB boundary */
828 static inline struct sk_buff *myri10ge_alloc_small_safe(unsigned int bytes)
829 {
830         struct sk_buff *skb;
831         unsigned long data, boundary;
832
833         skb = dev_alloc_skb(2 * (bytes + MXGEFW_PAD) - 1);
834         if (unlikely(skb == NULL))
835                 return NULL;
836
837         /* Correct skb->truesize so that socket buffer
838          * accounting is not confused the rounding we must
839          * do to satisfy alignment constraints.
840          */
841         skb->truesize -= bytes + MXGEFW_PAD;
842
843         data = (unsigned long)(skb->data);
844         boundary = (data + 4095UL) & ~4095UL;
845         if ((boundary - data) >= (bytes + MXGEFW_PAD))
846                 return skb;
847
848         skb_reserve(skb, boundary - data);
849         return skb;
850 }
851
852 /* Allocate just enough space, and verify that the allocated
853  * space does not cross a 4KB boundary */
854 static inline struct sk_buff *myri10ge_alloc_small(int bytes)
855 {
856         struct sk_buff *skb;
857         unsigned long roundup, data, end;
858
859         skb = dev_alloc_skb(bytes + 16 + MXGEFW_PAD);
860         if (unlikely(skb == NULL))
861                 return NULL;
862
863         /* Round allocated buffer to 16 byte boundary */
864         data = (unsigned long)(skb->data);
865         roundup = (-data) & 15UL;
866         skb_reserve(skb, roundup);
867         /* Verify that the data buffer does not cross a page boundary */
868         data = (unsigned long)(skb->data);
869         end = data + bytes + MXGEFW_PAD - 1;
870         if (unlikely(((end >> 12) != (data >> 12)) && (data & 4095UL))) {
871                 printk(KERN_NOTICE
872                        "myri10ge_alloc_small: small skb crossed 4KB boundary\n");
873                 myri10ge_skb_cross_4k = 1;
874                 dev_kfree_skb_any(skb);
875                 skb = myri10ge_alloc_small_safe(bytes);
876         }
877         return skb;
878 }
879
880 static inline int
881 myri10ge_getbuf(struct myri10ge_rx_buf *rx, struct pci_dev *pdev, int bytes,
882                 int idx)
883 {
884         struct sk_buff *skb;
885         dma_addr_t bus;
886         int len, retval = 0;
887
888         bytes += VLAN_HLEN;     /* account for 802.1q vlan tag */
889
890         if ((bytes + MXGEFW_PAD) > (4096 - 16) /* linux overhead */ )
891                 skb = myri10ge_alloc_big(bytes);
892         else if (myri10ge_skb_cross_4k)
893                 skb = myri10ge_alloc_small_safe(bytes);
894         else
895                 skb = myri10ge_alloc_small(bytes);
896
897         if (unlikely(skb == NULL)) {
898                 rx->alloc_fail++;
899                 retval = -ENOBUFS;
900                 goto done;
901         }
902
903         /* set len so that it only covers the area we
904          * need mapped for DMA */
905         len = bytes + MXGEFW_PAD;
906
907         bus = pci_map_single(pdev, skb->data, len, PCI_DMA_FROMDEVICE);
908         rx->info[idx].skb = skb;
909         pci_unmap_addr_set(&rx->info[idx], bus, bus);
910         pci_unmap_len_set(&rx->info[idx], len, len);
911         rx->shadow[idx].addr_low = htonl(MYRI10GE_LOWPART_TO_U32(bus));
912         rx->shadow[idx].addr_high = htonl(MYRI10GE_HIGHPART_TO_U32(bus));
913
914 done:
915         /* copy 8 descriptors (64-bytes) to the mcp at a time */
916         if ((idx & 7) == 7) {
917                 if (rx->wc_fifo == NULL)
918                         myri10ge_submit_8rx(&rx->lanai[idx - 7],
919                                             &rx->shadow[idx - 7]);
920                 else {
921                         mb();
922                         myri10ge_pio_copy(rx->wc_fifo,
923                                           &rx->shadow[idx - 7], 64);
924                 }
925         }
926         return retval;
927 }
928
929 static inline void myri10ge_vlan_ip_csum(struct sk_buff *skb, u16 hw_csum)
930 {
931         struct vlan_hdr *vh = (struct vlan_hdr *)(skb->data);
932
933         if ((skb->protocol == ntohs(ETH_P_8021Q)) &&
934             (vh->h_vlan_encapsulated_proto == htons(ETH_P_IP) ||
935              vh->h_vlan_encapsulated_proto == htons(ETH_P_IPV6))) {
936                 skb->csum = hw_csum;
937                 skb->ip_summed = CHECKSUM_HW;
938         }
939 }
940
941 static inline unsigned long
942 myri10ge_rx_done(struct myri10ge_priv *mgp, struct myri10ge_rx_buf *rx,
943                  int bytes, int len, int csum)
944 {
945         dma_addr_t bus;
946         struct sk_buff *skb;
947         int idx, unmap_len;
948
949         idx = rx->cnt & rx->mask;
950         rx->cnt++;
951
952         /* save a pointer to the received skb */
953         skb = rx->info[idx].skb;
954         bus = pci_unmap_addr(&rx->info[idx], bus);
955         unmap_len = pci_unmap_len(&rx->info[idx], len);
956
957         /* try to replace the received skb */
958         if (myri10ge_getbuf(rx, mgp->pdev, bytes, idx)) {
959                 /* drop the frame -- the old skbuf is re-cycled */
960                 mgp->stats.rx_dropped += 1;
961                 return 0;
962         }
963
964         /* unmap the recvd skb */
965         pci_unmap_single(mgp->pdev, bus, unmap_len, PCI_DMA_FROMDEVICE);
966
967         /* mcp implicitly skips 1st bytes so that packet is properly
968          * aligned */
969         skb_reserve(skb, MXGEFW_PAD);
970
971         /* set the length of the frame */
972         skb_put(skb, len);
973
974         skb->protocol = eth_type_trans(skb, mgp->dev);
975         skb->dev = mgp->dev;
976         if (mgp->csum_flag) {
977                 if ((skb->protocol == ntohs(ETH_P_IP)) ||
978                     (skb->protocol == ntohs(ETH_P_IPV6))) {
979                         skb->csum = ntohs((u16) csum);
980                         skb->ip_summed = CHECKSUM_HW;
981                 } else
982                         myri10ge_vlan_ip_csum(skb, ntohs((u16) csum));
983         }
984
985         netif_receive_skb(skb);
986         mgp->dev->last_rx = jiffies;
987         return 1;
988 }
989
990 static inline void myri10ge_tx_done(struct myri10ge_priv *mgp, int mcp_index)
991 {
992         struct pci_dev *pdev = mgp->pdev;
993         struct myri10ge_tx_buf *tx = &mgp->tx;
994         struct sk_buff *skb;
995         int idx, len;
996         int limit = 0;
997
998         while (tx->pkt_done != mcp_index) {
999                 idx = tx->done & tx->mask;
1000                 skb = tx->info[idx].skb;
1001
1002                 /* Mark as free */
1003                 tx->info[idx].skb = NULL;
1004                 if (tx->info[idx].last) {
1005                         tx->pkt_done++;
1006                         tx->info[idx].last = 0;
1007                 }
1008                 tx->done++;
1009                 len = pci_unmap_len(&tx->info[idx], len);
1010                 pci_unmap_len_set(&tx->info[idx], len, 0);
1011                 if (skb) {
1012                         mgp->stats.tx_bytes += skb->len;
1013                         mgp->stats.tx_packets++;
1014                         dev_kfree_skb_irq(skb);
1015                         if (len)
1016                                 pci_unmap_single(pdev,
1017                                                  pci_unmap_addr(&tx->info[idx],
1018                                                                 bus), len,
1019                                                  PCI_DMA_TODEVICE);
1020                 } else {
1021                         if (len)
1022                                 pci_unmap_page(pdev,
1023                                                pci_unmap_addr(&tx->info[idx],
1024                                                               bus), len,
1025                                                PCI_DMA_TODEVICE);
1026                 }
1027
1028                 /* limit potential for livelock by only handling
1029                  * 2 full tx rings per call */
1030                 if (unlikely(++limit > 2 * tx->mask))
1031                         break;
1032         }
1033         /* start the queue if we've stopped it */
1034         if (netif_queue_stopped(mgp->dev)
1035             && tx->req - tx->done < (tx->mask >> 1)) {
1036                 mgp->wake_queue++;
1037                 netif_wake_queue(mgp->dev);
1038         }
1039 }
1040
1041 static inline void myri10ge_clean_rx_done(struct myri10ge_priv *mgp, int *limit)
1042 {
1043         struct myri10ge_rx_done *rx_done = &mgp->rx_done;
1044         unsigned long rx_bytes = 0;
1045         unsigned long rx_packets = 0;
1046         unsigned long rx_ok;
1047
1048         int idx = rx_done->idx;
1049         int cnt = rx_done->cnt;
1050         u16 length;
1051         u16 checksum;
1052
1053         while (rx_done->entry[idx].length != 0 && *limit != 0) {
1054                 length = ntohs(rx_done->entry[idx].length);
1055                 rx_done->entry[idx].length = 0;
1056                 checksum = ntohs(rx_done->entry[idx].checksum);
1057                 if (length <= mgp->small_bytes)
1058                         rx_ok = myri10ge_rx_done(mgp, &mgp->rx_small,
1059                                                  mgp->small_bytes,
1060                                                  length, checksum);
1061                 else
1062                         rx_ok = myri10ge_rx_done(mgp, &mgp->rx_big,
1063                                                  mgp->dev->mtu + ETH_HLEN,
1064                                                  length, checksum);
1065                 rx_packets += rx_ok;
1066                 rx_bytes += rx_ok * (unsigned long)length;
1067                 cnt++;
1068                 idx = cnt & (myri10ge_max_intr_slots - 1);
1069
1070                 /* limit potential for livelock by only handling a
1071                  * limited number of frames. */
1072                 (*limit)--;
1073         }
1074         rx_done->idx = idx;
1075         rx_done->cnt = cnt;
1076         mgp->stats.rx_packets += rx_packets;
1077         mgp->stats.rx_bytes += rx_bytes;
1078 }
1079
1080 static inline void myri10ge_check_statblock(struct myri10ge_priv *mgp)
1081 {
1082         struct mcp_irq_data *stats = mgp->fw_stats;
1083
1084         if (unlikely(stats->stats_updated)) {
1085                 if (mgp->link_state != stats->link_up) {
1086                         mgp->link_state = stats->link_up;
1087                         if (mgp->link_state) {
1088                                 printk(KERN_INFO "myri10ge: %s: link up\n",
1089                                        mgp->dev->name);
1090                                 netif_carrier_on(mgp->dev);
1091                         } else {
1092                                 printk(KERN_INFO "myri10ge: %s: link down\n",
1093                                        mgp->dev->name);
1094                                 netif_carrier_off(mgp->dev);
1095                         }
1096                 }
1097                 if (mgp->rdma_tags_available !=
1098                     ntohl(mgp->fw_stats->rdma_tags_available)) {
1099                         mgp->rdma_tags_available =
1100                             ntohl(mgp->fw_stats->rdma_tags_available);
1101                         printk(KERN_WARNING "myri10ge: %s: RDMA timed out! "
1102                                "%d tags left\n", mgp->dev->name,
1103                                mgp->rdma_tags_available);
1104                 }
1105                 mgp->down_cnt += stats->link_down;
1106                 if (stats->link_down)
1107                         wake_up(&mgp->down_wq);
1108         }
1109 }
1110
1111 static int myri10ge_poll(struct net_device *netdev, int *budget)
1112 {
1113         struct myri10ge_priv *mgp = netdev_priv(netdev);
1114         struct myri10ge_rx_done *rx_done = &mgp->rx_done;
1115         int limit, orig_limit, work_done;
1116
1117         /* process as many rx events as NAPI will allow */
1118         limit = min(*budget, netdev->quota);
1119         orig_limit = limit;
1120         myri10ge_clean_rx_done(mgp, &limit);
1121         work_done = orig_limit - limit;
1122         *budget -= work_done;
1123         netdev->quota -= work_done;
1124
1125         if (rx_done->entry[rx_done->idx].length == 0 || !netif_running(netdev)) {
1126                 netif_rx_complete(netdev);
1127                 __raw_writel(htonl(3), mgp->irq_claim);
1128                 return 0;
1129         }
1130         return 1;
1131 }
1132
1133 static irqreturn_t myri10ge_intr(int irq, void *arg, struct pt_regs *regs)
1134 {
1135         struct myri10ge_priv *mgp = arg;
1136         struct mcp_irq_data *stats = mgp->fw_stats;
1137         struct myri10ge_tx_buf *tx = &mgp->tx;
1138         u32 send_done_count;
1139         int i;
1140
1141         /* make sure it is our IRQ, and that the DMA has finished */
1142         if (unlikely(!stats->valid))
1143                 return (IRQ_NONE);
1144
1145         /* low bit indicates receives are present, so schedule
1146          * napi poll handler */
1147         if (stats->valid & 1)
1148                 netif_rx_schedule(mgp->dev);
1149
1150         if (!mgp->msi_enabled) {
1151                 __raw_writel(0, mgp->irq_deassert);
1152                 if (!myri10ge_deassert_wait)
1153                         stats->valid = 0;
1154                 mb();
1155         } else
1156                 stats->valid = 0;
1157
1158         /* Wait for IRQ line to go low, if using INTx */
1159         i = 0;
1160         while (1) {
1161                 i++;
1162                 /* check for transmit completes and receives */
1163                 send_done_count = ntohl(stats->send_done_count);
1164                 if (send_done_count != tx->pkt_done)
1165                         myri10ge_tx_done(mgp, (int)send_done_count);
1166                 if (unlikely(i > myri10ge_max_irq_loops)) {
1167                         printk(KERN_WARNING "myri10ge: %s: irq stuck?\n",
1168                                mgp->dev->name);
1169                         stats->valid = 0;
1170                         schedule_work(&mgp->watchdog_work);
1171                 }
1172                 if (likely(stats->valid == 0))
1173                         break;
1174                 cpu_relax();
1175                 barrier();
1176         }
1177
1178         myri10ge_check_statblock(mgp);
1179
1180         __raw_writel(htonl(3), mgp->irq_claim + 1);
1181         return (IRQ_HANDLED);
1182 }
1183
1184 static int
1185 myri10ge_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
1186 {
1187         cmd->autoneg = AUTONEG_DISABLE;
1188         cmd->speed = SPEED_10000;
1189         cmd->duplex = DUPLEX_FULL;
1190         return 0;
1191 }
1192
1193 static void
1194 myri10ge_get_drvinfo(struct net_device *netdev, struct ethtool_drvinfo *info)
1195 {
1196         struct myri10ge_priv *mgp = netdev_priv(netdev);
1197
1198         strlcpy(info->driver, "myri10ge", sizeof(info->driver));
1199         strlcpy(info->version, MYRI10GE_VERSION_STR, sizeof(info->version));
1200         strlcpy(info->fw_version, mgp->fw_version, sizeof(info->fw_version));
1201         strlcpy(info->bus_info, pci_name(mgp->pdev), sizeof(info->bus_info));
1202 }
1203
1204 static int
1205 myri10ge_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *coal)
1206 {
1207         struct myri10ge_priv *mgp = netdev_priv(netdev);
1208         coal->rx_coalesce_usecs = mgp->intr_coal_delay;
1209         return 0;
1210 }
1211
1212 static int
1213 myri10ge_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *coal)
1214 {
1215         struct myri10ge_priv *mgp = netdev_priv(netdev);
1216
1217         mgp->intr_coal_delay = coal->rx_coalesce_usecs;
1218         __raw_writel(htonl(mgp->intr_coal_delay), mgp->intr_coal_delay_ptr);
1219         return 0;
1220 }
1221
1222 static void
1223 myri10ge_get_pauseparam(struct net_device *netdev,
1224                         struct ethtool_pauseparam *pause)
1225 {
1226         struct myri10ge_priv *mgp = netdev_priv(netdev);
1227
1228         pause->autoneg = 0;
1229         pause->rx_pause = mgp->pause;
1230         pause->tx_pause = mgp->pause;
1231 }
1232
1233 static int
1234 myri10ge_set_pauseparam(struct net_device *netdev,
1235                         struct ethtool_pauseparam *pause)
1236 {
1237         struct myri10ge_priv *mgp = netdev_priv(netdev);
1238
1239         if (pause->tx_pause != mgp->pause)
1240                 return myri10ge_change_pause(mgp, pause->tx_pause);
1241         if (pause->rx_pause != mgp->pause)
1242                 return myri10ge_change_pause(mgp, pause->tx_pause);
1243         if (pause->autoneg != 0)
1244                 return -EINVAL;
1245         return 0;
1246 }
1247
1248 static void
1249 myri10ge_get_ringparam(struct net_device *netdev,
1250                        struct ethtool_ringparam *ring)
1251 {
1252         struct myri10ge_priv *mgp = netdev_priv(netdev);
1253
1254         ring->rx_mini_max_pending = mgp->rx_small.mask + 1;
1255         ring->rx_max_pending = mgp->rx_big.mask + 1;
1256         ring->rx_jumbo_max_pending = 0;
1257         ring->tx_max_pending = mgp->rx_small.mask + 1;
1258         ring->rx_mini_pending = ring->rx_mini_max_pending;
1259         ring->rx_pending = ring->rx_max_pending;
1260         ring->rx_jumbo_pending = ring->rx_jumbo_max_pending;
1261         ring->tx_pending = ring->tx_max_pending;
1262 }
1263
1264 static u32 myri10ge_get_rx_csum(struct net_device *netdev)
1265 {
1266         struct myri10ge_priv *mgp = netdev_priv(netdev);
1267         if (mgp->csum_flag)
1268                 return 1;
1269         else
1270                 return 0;
1271 }
1272
1273 static int myri10ge_set_rx_csum(struct net_device *netdev, u32 csum_enabled)
1274 {
1275         struct myri10ge_priv *mgp = netdev_priv(netdev);
1276         if (csum_enabled)
1277                 mgp->csum_flag = MXGEFW_FLAGS_CKSUM;
1278         else
1279                 mgp->csum_flag = 0;
1280         return 0;
1281 }
1282
1283 static const char myri10ge_gstrings_stats[][ETH_GSTRING_LEN] = {
1284         "rx_packets", "tx_packets", "rx_bytes", "tx_bytes", "rx_errors",
1285         "tx_errors", "rx_dropped", "tx_dropped", "multicast", "collisions",
1286         "rx_length_errors", "rx_over_errors", "rx_crc_errors",
1287         "rx_frame_errors", "rx_fifo_errors", "rx_missed_errors",
1288         "tx_aborted_errors", "tx_carrier_errors", "tx_fifo_errors",
1289         "tx_heartbeat_errors", "tx_window_errors",
1290         /* device-specific stats */
1291         "read_dma_bw_MBs", "write_dma_bw_MBs", "read_write_dma_bw_MBs",
1292         "serial_number", "tx_pkt_start", "tx_pkt_done",
1293         "tx_req", "tx_done", "rx_small_cnt", "rx_big_cnt",
1294         "wake_queue", "stop_queue", "watchdog_resets", "tx_linearized",
1295         "link_up", "dropped_link_overflow", "dropped_link_error_or_filtered",
1296         "dropped_runt", "dropped_overrun", "dropped_no_small_buffer",
1297         "dropped_no_big_buffer"
1298 };
1299
1300 #define MYRI10GE_NET_STATS_LEN      21
1301 #define MYRI10GE_STATS_LEN  sizeof(myri10ge_gstrings_stats) / ETH_GSTRING_LEN
1302
1303 static void
1304 myri10ge_get_strings(struct net_device *netdev, u32 stringset, u8 * data)
1305 {
1306         switch (stringset) {
1307         case ETH_SS_STATS:
1308                 memcpy(data, *myri10ge_gstrings_stats,
1309                        sizeof(myri10ge_gstrings_stats));
1310                 break;
1311         }
1312 }
1313
1314 static int myri10ge_get_stats_count(struct net_device *netdev)
1315 {
1316         return MYRI10GE_STATS_LEN;
1317 }
1318
1319 static void
1320 myri10ge_get_ethtool_stats(struct net_device *netdev,
1321                            struct ethtool_stats *stats, u64 * data)
1322 {
1323         struct myri10ge_priv *mgp = netdev_priv(netdev);
1324         int i;
1325
1326         for (i = 0; i < MYRI10GE_NET_STATS_LEN; i++)
1327                 data[i] = ((unsigned long *)&mgp->stats)[i];
1328
1329         data[i++] = (unsigned int)mgp->read_dma;
1330         data[i++] = (unsigned int)mgp->write_dma;
1331         data[i++] = (unsigned int)mgp->read_write_dma;
1332         data[i++] = (unsigned int)mgp->serial_number;
1333         data[i++] = (unsigned int)mgp->tx.pkt_start;
1334         data[i++] = (unsigned int)mgp->tx.pkt_done;
1335         data[i++] = (unsigned int)mgp->tx.req;
1336         data[i++] = (unsigned int)mgp->tx.done;
1337         data[i++] = (unsigned int)mgp->rx_small.cnt;
1338         data[i++] = (unsigned int)mgp->rx_big.cnt;
1339         data[i++] = (unsigned int)mgp->wake_queue;
1340         data[i++] = (unsigned int)mgp->stop_queue;
1341         data[i++] = (unsigned int)mgp->watchdog_resets;
1342         data[i++] = (unsigned int)mgp->tx_linearized;
1343         data[i++] = (unsigned int)ntohl(mgp->fw_stats->link_up);
1344         data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_link_overflow);
1345         data[i++] =
1346             (unsigned int)ntohl(mgp->fw_stats->dropped_link_error_or_filtered);
1347         data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_runt);
1348         data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_overrun);
1349         data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_no_small_buffer);
1350         data[i++] = (unsigned int)ntohl(mgp->fw_stats->dropped_no_big_buffer);
1351 }
1352
1353 static struct ethtool_ops myri10ge_ethtool_ops = {
1354         .get_settings = myri10ge_get_settings,
1355         .get_drvinfo = myri10ge_get_drvinfo,
1356         .get_coalesce = myri10ge_get_coalesce,
1357         .set_coalesce = myri10ge_set_coalesce,
1358         .get_pauseparam = myri10ge_get_pauseparam,
1359         .set_pauseparam = myri10ge_set_pauseparam,
1360         .get_ringparam = myri10ge_get_ringparam,
1361         .get_rx_csum = myri10ge_get_rx_csum,
1362         .set_rx_csum = myri10ge_set_rx_csum,
1363         .get_tx_csum = ethtool_op_get_tx_csum,
1364         .set_tx_csum = ethtool_op_set_tx_hw_csum,
1365         .get_sg = ethtool_op_get_sg,
1366         .set_sg = ethtool_op_set_sg,
1367 #ifdef NETIF_F_TSO
1368         .get_tso = ethtool_op_get_tso,
1369         .set_tso = ethtool_op_set_tso,
1370 #endif
1371         .get_strings = myri10ge_get_strings,
1372         .get_stats_count = myri10ge_get_stats_count,
1373         .get_ethtool_stats = myri10ge_get_ethtool_stats
1374 };
1375
1376 static int myri10ge_allocate_rings(struct net_device *dev)
1377 {
1378         struct myri10ge_priv *mgp;
1379         struct myri10ge_cmd cmd;
1380         int tx_ring_size, rx_ring_size;
1381         int tx_ring_entries, rx_ring_entries;
1382         int i, status;
1383         size_t bytes;
1384
1385         mgp = netdev_priv(dev);
1386
1387         /* get ring sizes */
1388
1389         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SEND_RING_SIZE, &cmd, 0);
1390         tx_ring_size = cmd.data0;
1391         status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_RX_RING_SIZE, &cmd, 0);
1392         rx_ring_size = cmd.data0;
1393
1394         tx_ring_entries = tx_ring_size / sizeof(struct mcp_kreq_ether_send);
1395         rx_ring_entries = rx_ring_size / sizeof(struct mcp_dma_addr);
1396         mgp->tx.mask = tx_ring_entries - 1;
1397         mgp->rx_small.mask = mgp->rx_big.mask = rx_ring_entries - 1;
1398
1399         /* allocate the host shadow rings */
1400
1401         bytes = 8 + (MYRI10GE_MAX_SEND_DESC_TSO + 4)
1402             * sizeof(*mgp->tx.req_list);
1403         mgp->tx.req_bytes = kzalloc(bytes, GFP_KERNEL);
1404         if (mgp->tx.req_bytes == NULL)
1405                 goto abort_with_nothing;
1406
1407         /* ensure req_list entries are aligned to 8 bytes */
1408         mgp->tx.req_list = (struct mcp_kreq_ether_send *)
1409             ALIGN((unsigned long)mgp->tx.req_bytes, 8);
1410
1411         bytes = rx_ring_entries * sizeof(*mgp->rx_small.shadow);
1412         mgp->rx_small.shadow = kzalloc(bytes, GFP_KERNEL);
1413         if (mgp->rx_small.shadow == NULL)
1414                 goto abort_with_tx_req_bytes;
1415
1416         bytes = rx_ring_entries * sizeof(*mgp->rx_big.shadow);
1417         mgp->rx_big.shadow = kzalloc(bytes, GFP_KERNEL);
1418         if (mgp->rx_big.shadow == NULL)
1419                 goto abort_with_rx_small_shadow;
1420
1421         /* allocate the host info rings */
1422
1423         bytes = tx_ring_entries * sizeof(*mgp->tx.info);
1424         mgp->tx.info = kzalloc(bytes, GFP_KERNEL);
1425         if (mgp->tx.info == NULL)
1426                 goto abort_with_rx_big_shadow;
1427
1428         bytes = rx_ring_entries * sizeof(*mgp->rx_small.info);
1429         mgp->rx_small.info = kzalloc(bytes, GFP_KERNEL);
1430         if (mgp->rx_small.info == NULL)
1431                 goto abort_with_tx_info;
1432
1433         bytes = rx_ring_entries * sizeof(*mgp->rx_big.info);
1434         mgp->rx_big.info = kzalloc(bytes, GFP_KERNEL);
1435         if (mgp->rx_big.info == NULL)
1436                 goto abort_with_rx_small_info;
1437
1438         /* Fill the receive rings */
1439
1440         for (i = 0; i <= mgp->rx_small.mask; i++) {
1441                 status = myri10ge_getbuf(&mgp->rx_small, mgp->pdev,
1442                                          mgp->small_bytes, i);
1443                 if (status) {
1444                         printk(KERN_ERR
1445                                "myri10ge: %s: alloced only %d small bufs\n",
1446                                dev->name, i);
1447                         goto abort_with_rx_small_ring;
1448                 }
1449         }
1450
1451         for (i = 0; i <= mgp->rx_big.mask; i++) {
1452                 status =
1453                     myri10ge_getbuf(&mgp->rx_big, mgp->pdev,
1454                                     dev->mtu + ETH_HLEN, i);
1455                 if (status) {
1456                         printk(KERN_ERR
1457                                "myri10ge: %s: alloced only %d big bufs\n",
1458                                dev->name, i);
1459                         goto abort_with_rx_big_ring;
1460                 }
1461         }
1462
1463         return 0;
1464
1465 abort_with_rx_big_ring:
1466         for (i = 0; i <= mgp->rx_big.mask; i++) {
1467                 if (mgp->rx_big.info[i].skb != NULL)
1468                         dev_kfree_skb_any(mgp->rx_big.info[i].skb);
1469                 if (pci_unmap_len(&mgp->rx_big.info[i], len))
1470                         pci_unmap_single(mgp->pdev,
1471                                          pci_unmap_addr(&mgp->rx_big.info[i],
1472                                                         bus),
1473                                          pci_unmap_len(&mgp->rx_big.info[i],
1474                                                        len),
1475                                          PCI_DMA_FROMDEVICE);
1476         }
1477
1478 abort_with_rx_small_ring:
1479         for (i = 0; i <= mgp->rx_small.mask; i++) {
1480                 if (mgp->rx_small.info[i].skb != NULL)
1481                         dev_kfree_skb_any(mgp->rx_small.info[i].skb);
1482                 if (pci_unmap_len(&mgp->rx_small.info[i], len))
1483                         pci_unmap_single(mgp->pdev,
1484                                          pci_unmap_addr(&mgp->rx_small.info[i],
1485                                                         bus),
1486                                          pci_unmap_len(&mgp->rx_small.info[i],
1487                                                        len),
1488                                          PCI_DMA_FROMDEVICE);
1489         }
1490         kfree(mgp->rx_big.info);
1491
1492 abort_with_rx_small_info:
1493         kfree(mgp->rx_small.info);
1494
1495 abort_with_tx_info:
1496         kfree(mgp->tx.info);
1497
1498 abort_with_rx_big_shadow:
1499         kfree(mgp->rx_big.shadow);
1500
1501 abort_with_rx_small_shadow:
1502         kfree(mgp->rx_small.shadow);
1503
1504 abort_with_tx_req_bytes:
1505         kfree(mgp->tx.req_bytes);
1506         mgp->tx.req_bytes = NULL;
1507         mgp->tx.req_list = NULL;
1508
1509 abort_with_nothing:
1510         return status;
1511 }
1512
1513 static void myri10ge_free_rings(struct net_device *dev)
1514 {
1515         struct myri10ge_priv *mgp;
1516         struct sk_buff *skb;
1517         struct myri10ge_tx_buf *tx;
1518         int i, len, idx;
1519
1520         mgp = netdev_priv(dev);
1521
1522         for (i = 0; i <= mgp->rx_big.mask; i++) {
1523                 if (mgp->rx_big.info[i].skb != NULL)
1524                         dev_kfree_skb_any(mgp->rx_big.info[i].skb);
1525                 if (pci_unmap_len(&mgp->rx_big.info[i], len))
1526                         pci_unmap_single(mgp->pdev,
1527                                          pci_unmap_addr(&mgp->rx_big.info[i],
1528                                                         bus),
1529                                          pci_unmap_len(&mgp->rx_big.info[i],
1530                                                        len),
1531                                          PCI_DMA_FROMDEVICE);
1532         }
1533
1534         for (i = 0; i <= mgp->rx_small.mask; i++) {
1535                 if (mgp->rx_small.info[i].skb != NULL)
1536                         dev_kfree_skb_any(mgp->rx_small.info[i].skb);
1537                 if (pci_unmap_len(&mgp->rx_small.info[i], len))
1538                         pci_unmap_single(mgp->pdev,
1539                                          pci_unmap_addr(&mgp->rx_small.info[i],
1540                                                         bus),
1541                                          pci_unmap_len(&mgp->rx_small.info[i],
1542                                                        len),
1543                                          PCI_DMA_FROMDEVICE);
1544         }
1545
1546         tx = &mgp->tx;
1547         while (tx->done != tx->req) {
1548                 idx = tx->done & tx->mask;
1549                 skb = tx->info[idx].skb;
1550
1551                 /* Mark as free */
1552                 tx->info[idx].skb = NULL;
1553                 tx->done++;
1554                 len = pci_unmap_len(&tx->info[idx], len);
1555                 pci_unmap_len_set(&tx->info[idx], len, 0);
1556                 if (skb) {
1557                         mgp->stats.tx_dropped++;
1558                         dev_kfree_skb_any(skb);
1559                         if (len)
1560                                 pci_unmap_single(mgp->pdev,
1561                                                  pci_unmap_addr(&tx->info[idx],
1562                                                                 bus), len,
1563                                                  PCI_DMA_TODEVICE);
1564                 } else {
1565                         if (len)
1566                                 pci_unmap_page(mgp->pdev,
1567                                                pci_unmap_addr(&tx->info[idx],
1568                                                               bus), len,
1569                                                PCI_DMA_TODEVICE);
1570                 }
1571         }
1572         kfree(mgp->rx_big.info);
1573
1574         kfree(mgp->rx_small.info);
1575
1576         kfree(mgp->tx.info);
1577
1578         kfree(mgp->rx_big.shadow);
1579
1580         kfree(mgp->rx_small.shadow);
1581
1582         kfree(mgp->tx.req_bytes);
1583         mgp->tx.req_bytes = NULL;
1584         mgp->tx.req_list = NULL;
1585 }
1586
1587 static int myri10ge_open(struct net_device *dev)
1588 {
1589         struct myri10ge_priv *mgp;
1590         struct myri10ge_cmd cmd;
1591         int status, big_pow2;
1592
1593         mgp = netdev_priv(dev);
1594
1595         if (mgp->running != MYRI10GE_ETH_STOPPED)
1596                 return -EBUSY;
1597
1598         mgp->running = MYRI10GE_ETH_STARTING;
1599         status = myri10ge_reset(mgp);
1600         if (status != 0) {
1601                 printk(KERN_ERR "myri10ge: %s: failed reset\n", dev->name);
1602                 mgp->running = MYRI10GE_ETH_STOPPED;
1603                 return -ENXIO;
1604         }
1605
1606         /* decide what small buffer size to use.  For good TCP rx
1607          * performance, it is important to not receive 1514 byte
1608          * frames into jumbo buffers, as it confuses the socket buffer
1609          * accounting code, leading to drops and erratic performance.
1610          */
1611
1612         if (dev->mtu <= ETH_DATA_LEN)
1613                 mgp->small_bytes = 128; /* enough for a TCP header */
1614         else
1615                 mgp->small_bytes = ETH_FRAME_LEN;       /* enough for an ETH_DATA_LEN frame */
1616
1617         /* Override the small buffer size? */
1618         if (myri10ge_small_bytes > 0)
1619                 mgp->small_bytes = myri10ge_small_bytes;
1620
1621         /* If the user sets an obscenely small MTU, adjust the small
1622          * bytes down to nearly nothing */
1623         if (mgp->small_bytes >= (dev->mtu + ETH_HLEN))
1624                 mgp->small_bytes = 64;
1625
1626         /* get the lanai pointers to the send and receive rings */
1627
1628         status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SEND_OFFSET, &cmd, 0);
1629         mgp->tx.lanai =
1630             (struct mcp_kreq_ether_send __iomem *)(mgp->sram + cmd.data0);
1631
1632         status |=
1633             myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_SMALL_RX_OFFSET, &cmd, 0);
1634         mgp->rx_small.lanai =
1635             (struct mcp_kreq_ether_recv __iomem *)(mgp->sram + cmd.data0);
1636
1637         status |= myri10ge_send_cmd(mgp, MXGEFW_CMD_GET_BIG_RX_OFFSET, &cmd, 0);
1638         mgp->rx_big.lanai =
1639             (struct mcp_kreq_ether_recv __iomem *)(mgp->sram + cmd.data0);
1640
1641         if (status != 0) {
1642                 printk(KERN_ERR
1643                        "myri10ge: %s: failed to get ring sizes or locations\n",
1644                        dev->name);
1645                 mgp->running = MYRI10GE_ETH_STOPPED;
1646                 return -ENXIO;
1647         }
1648
1649         if (mgp->mtrr >= 0) {
1650                 mgp->tx.wc_fifo = (u8 __iomem *) mgp->sram + 0x200000;
1651                 mgp->rx_small.wc_fifo = (u8 __iomem *) mgp->sram + 0x300000;
1652                 mgp->rx_big.wc_fifo = (u8 __iomem *) mgp->sram + 0x340000;
1653         } else {
1654                 mgp->tx.wc_fifo = NULL;
1655                 mgp->rx_small.wc_fifo = NULL;
1656                 mgp->rx_big.wc_fifo = NULL;
1657         }
1658
1659         status = myri10ge_allocate_rings(dev);
1660         if (status != 0)
1661                 goto abort_with_nothing;
1662
1663         /* Firmware needs the big buff size as a power of 2.  Lie and
1664          * tell him the buffer is larger, because we only use 1
1665          * buffer/pkt, and the mtu will prevent overruns.
1666          */
1667         big_pow2 = dev->mtu + ETH_HLEN + MXGEFW_PAD;
1668         while ((big_pow2 & (big_pow2 - 1)) != 0)
1669                 big_pow2++;
1670
1671         /* now give firmware buffers sizes, and MTU */
1672         cmd.data0 = dev->mtu + ETH_HLEN + VLAN_HLEN;
1673         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_MTU, &cmd, 0);
1674         cmd.data0 = mgp->small_bytes;
1675         status |=
1676             myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_SMALL_BUFFER_SIZE, &cmd, 0);
1677         cmd.data0 = big_pow2;
1678         status |=
1679             myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_BIG_BUFFER_SIZE, &cmd, 0);
1680         if (status) {
1681                 printk(KERN_ERR "myri10ge: %s: Couldn't set buffer sizes\n",
1682                        dev->name);
1683                 goto abort_with_rings;
1684         }
1685
1686         cmd.data0 = MYRI10GE_LOWPART_TO_U32(mgp->fw_stats_bus);
1687         cmd.data1 = MYRI10GE_HIGHPART_TO_U32(mgp->fw_stats_bus);
1688         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_SET_STATS_DMA, &cmd, 0);
1689         if (status) {
1690                 printk(KERN_ERR "myri10ge: %s: Couldn't set stats DMA\n",
1691                        dev->name);
1692                 goto abort_with_rings;
1693         }
1694
1695         mgp->link_state = -1;
1696         mgp->rdma_tags_available = 15;
1697
1698         netif_poll_enable(mgp->dev);    /* must happen prior to any irq */
1699
1700         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ETHERNET_UP, &cmd, 0);
1701         if (status) {
1702                 printk(KERN_ERR "myri10ge: %s: Couldn't bring up link\n",
1703                        dev->name);
1704                 goto abort_with_rings;
1705         }
1706
1707         mgp->wake_queue = 0;
1708         mgp->stop_queue = 0;
1709         mgp->running = MYRI10GE_ETH_RUNNING;
1710         mgp->watchdog_timer.expires = jiffies + myri10ge_watchdog_timeout * HZ;
1711         add_timer(&mgp->watchdog_timer);
1712         netif_wake_queue(dev);
1713         return 0;
1714
1715 abort_with_rings:
1716         myri10ge_free_rings(dev);
1717
1718 abort_with_nothing:
1719         mgp->running = MYRI10GE_ETH_STOPPED;
1720         return -ENOMEM;
1721 }
1722
1723 static int myri10ge_close(struct net_device *dev)
1724 {
1725         struct myri10ge_priv *mgp;
1726         struct myri10ge_cmd cmd;
1727         int status, old_down_cnt;
1728
1729         mgp = netdev_priv(dev);
1730
1731         if (mgp->running != MYRI10GE_ETH_RUNNING)
1732                 return 0;
1733
1734         if (mgp->tx.req_bytes == NULL)
1735                 return 0;
1736
1737         del_timer_sync(&mgp->watchdog_timer);
1738         mgp->running = MYRI10GE_ETH_STOPPING;
1739         netif_poll_disable(mgp->dev);
1740         netif_carrier_off(dev);
1741         netif_stop_queue(dev);
1742         old_down_cnt = mgp->down_cnt;
1743         mb();
1744         status = myri10ge_send_cmd(mgp, MXGEFW_CMD_ETHERNET_DOWN, &cmd, 0);
1745         if (status)
1746                 printk(KERN_ERR "myri10ge: %s: Couldn't bring down link\n",
1747                        dev->name);
1748
1749         wait_event_timeout(mgp->down_wq, old_down_cnt != mgp->down_cnt, HZ);
1750         if (old_down_cnt == mgp->down_cnt)
1751                 printk(KERN_ERR "myri10ge: %s never got down irq\n", dev->name);
1752
1753         netif_tx_disable(dev);
1754
1755         myri10ge_free_rings(dev);
1756
1757         mgp->running = MYRI10GE_ETH_STOPPED;
1758         return 0;
1759 }
1760
1761 /* copy an array of struct mcp_kreq_ether_send's to the mcp.  Copy
1762  * backwards one at a time and handle ring wraps */
1763
1764 static inline void
1765 myri10ge_submit_req_backwards(struct myri10ge_tx_buf *tx,
1766                               struct mcp_kreq_ether_send *src, int cnt)
1767 {
1768         int idx, starting_slot;
1769         starting_slot = tx->req;
1770         while (cnt > 1) {
1771                 cnt--;
1772                 idx = (starting_slot + cnt) & tx->mask;
1773                 myri10ge_pio_copy(&tx->lanai[idx], &src[cnt], sizeof(*src));
1774                 mb();
1775         }
1776 }
1777
1778 /*
1779  * copy an array of struct mcp_kreq_ether_send's to the mcp.  Copy
1780  * at most 32 bytes at a time, so as to avoid involving the software
1781  * pio handler in the nic.   We re-write the first segment's flags
1782  * to mark them valid only after writing the entire chain.
1783  */
1784
1785 static inline void
1786 myri10ge_submit_req(struct myri10ge_tx_buf *tx, struct mcp_kreq_ether_send *src,
1787                     int cnt)
1788 {
1789         int idx, i;
1790         struct mcp_kreq_ether_send __iomem *dstp, *dst;
1791         struct mcp_kreq_ether_send *srcp;
1792         u8 last_flags;
1793
1794         idx = tx->req & tx->mask;
1795
1796         last_flags = src->flags;
1797         src->flags = 0;
1798         mb();
1799         dst = dstp = &tx->lanai[idx];
1800         srcp = src;
1801
1802         if ((idx + cnt) < tx->mask) {
1803                 for (i = 0; i < (cnt - 1); i += 2) {
1804                         myri10ge_pio_copy(dstp, srcp, 2 * sizeof(*src));
1805                         mb();   /* force write every 32 bytes */
1806                         srcp += 2;
1807                         dstp += 2;
1808                 }
1809         } else {
1810                 /* submit all but the first request, and ensure
1811                  * that it is submitted below */
1812                 myri10ge_submit_req_backwards(tx, src, cnt);
1813                 i = 0;
1814         }
1815         if (i < cnt) {
1816                 /* submit the first request */
1817                 myri10ge_pio_copy(dstp, srcp, sizeof(*src));
1818                 mb();           /* barrier before setting valid flag */
1819         }
1820
1821         /* re-write the last 32-bits with the valid flags */
1822         src->flags = last_flags;
1823         __raw_writel(*((u32 *) src + 3), (u32 __iomem *) dst + 3);
1824         tx->req += cnt;
1825         mb();
1826 }
1827
1828 static inline void
1829 myri10ge_submit_req_wc(struct myri10ge_tx_buf *tx,
1830                        struct mcp_kreq_ether_send *src, int cnt)
1831 {
1832         tx->req += cnt;
1833         mb();
1834         while (cnt >= 4) {
1835                 myri10ge_pio_copy(tx->wc_fifo, src, 64);
1836                 mb();
1837                 src += 4;
1838                 cnt -= 4;
1839         }
1840         if (cnt > 0) {
1841                 /* pad it to 64 bytes.  The src is 64 bytes bigger than it
1842                  * needs to be so that we don't overrun it */
1843                 myri10ge_pio_copy(tx->wc_fifo + (cnt << 18), src, 64);
1844                 mb();
1845         }
1846 }
1847
1848 /*
1849  * Transmit a packet.  We need to split the packet so that a single
1850  * segment does not cross myri10ge->tx.boundary, so this makes segment
1851  * counting tricky.  So rather than try to count segments up front, we
1852  * just give up if there are too few segments to hold a reasonably
1853  * fragmented packet currently available.  If we run
1854  * out of segments while preparing a packet for DMA, we just linearize
1855  * it and try again.
1856  */
1857
1858 static int myri10ge_xmit(struct sk_buff *skb, struct net_device *dev)
1859 {
1860         struct myri10ge_priv *mgp = netdev_priv(dev);
1861         struct mcp_kreq_ether_send *req;
1862         struct myri10ge_tx_buf *tx = &mgp->tx;
1863         struct skb_frag_struct *frag;
1864         dma_addr_t bus;
1865         u32 low, high_swapped;
1866         unsigned int len;
1867         int idx, last_idx, avail, frag_cnt, frag_idx, count, mss, max_segments;
1868         u16 pseudo_hdr_offset, cksum_offset;
1869         int cum_len, seglen, boundary, rdma_count;
1870         u8 flags, odd_flag;
1871
1872 again:
1873         req = tx->req_list;
1874         avail = tx->mask - 1 - (tx->req - tx->done);
1875
1876         mss = 0;
1877         max_segments = MXGEFW_MAX_SEND_DESC;
1878
1879 #ifdef NETIF_F_TSO
1880         if (skb->len > (dev->mtu + ETH_HLEN)) {
1881                 mss = skb_shinfo(skb)->gso_size;
1882                 if (mss != 0)
1883                         max_segments = MYRI10GE_MAX_SEND_DESC_TSO;
1884         }
1885 #endif                          /*NETIF_F_TSO */
1886
1887         if ((unlikely(avail < max_segments))) {
1888                 /* we are out of transmit resources */
1889                 mgp->stop_queue++;
1890                 netif_stop_queue(dev);
1891                 return 1;
1892         }
1893
1894         /* Setup checksum offloading, if needed */
1895         cksum_offset = 0;
1896         pseudo_hdr_offset = 0;
1897         odd_flag = 0;
1898         flags = (MXGEFW_FLAGS_NO_TSO | MXGEFW_FLAGS_FIRST);
1899         if (likely(skb->ip_summed == CHECKSUM_HW)) {
1900                 cksum_offset = (skb->h.raw - skb->data);
1901                 pseudo_hdr_offset = (skb->h.raw + skb->csum) - skb->data;
1902                 /* If the headers are excessively large, then we must
1903                  * fall back to a software checksum */
1904                 if (unlikely(cksum_offset > 255 || pseudo_hdr_offset > 127)) {
1905                         if (skb_checksum_help(skb, 0))
1906                                 goto drop;
1907                         cksum_offset = 0;
1908                         pseudo_hdr_offset = 0;
1909                 } else {
1910                         pseudo_hdr_offset = htons(pseudo_hdr_offset);
1911                         odd_flag = MXGEFW_FLAGS_ALIGN_ODD;
1912                         flags |= MXGEFW_FLAGS_CKSUM;
1913                 }
1914         }
1915
1916         cum_len = 0;
1917
1918 #ifdef NETIF_F_TSO
1919         if (mss) {              /* TSO */
1920                 /* this removes any CKSUM flag from before */
1921                 flags = (MXGEFW_FLAGS_TSO_HDR | MXGEFW_FLAGS_FIRST);
1922
1923                 /* negative cum_len signifies to the
1924                  * send loop that we are still in the
1925                  * header portion of the TSO packet.
1926                  * TSO header must be at most 134 bytes long */
1927                 cum_len = -((skb->h.raw - skb->data) + (skb->h.th->doff << 2));
1928
1929                 /* for TSO, pseudo_hdr_offset holds mss.
1930                  * The firmware figures out where to put
1931                  * the checksum by parsing the header. */
1932                 pseudo_hdr_offset = htons(mss);
1933         } else
1934 #endif                          /*NETIF_F_TSO */
1935                 /* Mark small packets, and pad out tiny packets */
1936         if (skb->len <= MXGEFW_SEND_SMALL_SIZE) {
1937                 flags |= MXGEFW_FLAGS_SMALL;
1938
1939                 /* pad frames to at least ETH_ZLEN bytes */
1940                 if (unlikely(skb->len < ETH_ZLEN)) {
1941                         if (skb_padto(skb, ETH_ZLEN)) {
1942                                 /* The packet is gone, so we must
1943                                  * return 0 */
1944                                 mgp->stats.tx_dropped += 1;
1945                                 return 0;
1946                         }
1947                         /* adjust the len to account for the zero pad
1948                          * so that the nic can know how long it is */
1949                         skb->len = ETH_ZLEN;
1950                 }
1951         }
1952
1953         /* map the skb for DMA */
1954         len = skb->len - skb->data_len;
1955         idx = tx->req & tx->mask;
1956         tx->info[idx].skb = skb;
1957         bus = pci_map_single(mgp->pdev, skb->data, len, PCI_DMA_TODEVICE);
1958         pci_unmap_addr_set(&tx->info[idx], bus, bus);
1959         pci_unmap_len_set(&tx->info[idx], len, len);
1960
1961         frag_cnt = skb_shinfo(skb)->nr_frags;
1962         frag_idx = 0;
1963         count = 0;
1964         rdma_count = 0;
1965
1966         /* "rdma_count" is the number of RDMAs belonging to the
1967          * current packet BEFORE the current send request. For
1968          * non-TSO packets, this is equal to "count".
1969          * For TSO packets, rdma_count needs to be reset
1970          * to 0 after a segment cut.
1971          *
1972          * The rdma_count field of the send request is
1973          * the number of RDMAs of the packet starting at
1974          * that request. For TSO send requests with one ore more cuts
1975          * in the middle, this is the number of RDMAs starting
1976          * after the last cut in the request. All previous
1977          * segments before the last cut implicitly have 1 RDMA.
1978          *
1979          * Since the number of RDMAs is not known beforehand,
1980          * it must be filled-in retroactively - after each
1981          * segmentation cut or at the end of the entire packet.
1982          */
1983
1984         while (1) {
1985                 /* Break the SKB or Fragment up into pieces which
1986                  * do not cross mgp->tx.boundary */
1987                 low = MYRI10GE_LOWPART_TO_U32(bus);
1988                 high_swapped = htonl(MYRI10GE_HIGHPART_TO_U32(bus));
1989                 while (len) {
1990                         u8 flags_next;
1991                         int cum_len_next;
1992
1993                         if (unlikely(count == max_segments))
1994                                 goto abort_linearize;
1995
1996                         boundary = (low + tx->boundary) & ~(tx->boundary - 1);
1997                         seglen = boundary - low;
1998                         if (seglen > len)
1999                                 seglen = len;
2000                         flags_next = flags & ~MXGEFW_FLAGS_FIRST;
2001                         cum_len_next = cum_len + seglen;
2002 #ifdef NETIF_F_TSO
2003                         if (mss) {      /* TSO */
2004                                 (req - rdma_count)->rdma_count = rdma_count + 1;
2005
2006                                 if (likely(cum_len >= 0)) {     /* payload */
2007                                         int next_is_first, chop;
2008
2009                                         chop = (cum_len_next > mss);
2010                                         cum_len_next = cum_len_next % mss;
2011                                         next_is_first = (cum_len_next == 0);
2012                                         flags |= chop * MXGEFW_FLAGS_TSO_CHOP;
2013                                         flags_next |= next_is_first *
2014                                             MXGEFW_FLAGS_FIRST;
2015                                         rdma_count |= -(chop | next_is_first);
2016                                         rdma_count += chop & !next_is_first;
2017                                 } else if (likely(cum_len_next >= 0)) { /* header ends */
2018                                         int small;
2019
2020                                         rdma_count = -1;
2021                                         cum_len_next = 0;
2022                                         seglen = -cum_len;
2023                                         small = (mss <= MXGEFW_SEND_SMALL_SIZE);
2024                                         flags_next = MXGEFW_FLAGS_TSO_PLD |
2025                                             MXGEFW_FLAGS_FIRST |
2026                                             (small * MXGEFW_FLAGS_SMALL);
2027                                 }
2028                         }
2029 #endif                          /* NETIF_F_TSO */
2030                         req->addr_high = high_swapped;
2031                         req->addr_low = htonl(low);
2032                         req->pseudo_hdr_offset = pseudo_hdr_offset;
2033                         req->pad = 0;   /* complete solid 16-byte block; does this matter? */
2034                         req->rdma_count = 1;
2035                         req->length = htons(seglen);
2036                         req->cksum_offset = cksum_offset;
2037                         req->flags = flags | ((cum_len & 1) * odd_flag);
2038
2039                         low += seglen;
2040                         len -= seglen;
2041                         cum_len = cum_len_next;
2042                         flags = flags_next;
2043                         req++;
2044                         count++;
2045                         rdma_count++;
2046                         if (unlikely(cksum_offset > seglen))
2047                                 cksum_offset -= seglen;
2048                         else
2049                                 cksum_offset = 0;
2050                 }
2051                 if (frag_idx == frag_cnt)
2052                         break;
2053
2054                 /* map next fragment for DMA */
2055                 idx = (count + tx->req) & tx->mask;
2056                 frag = &skb_shinfo(skb)->frags[frag_idx];
2057                 frag_idx++;
2058                 len = frag->size;
2059                 bus = pci_map_page(mgp->pdev, frag->page, frag->page_offset,
2060                                    len, PCI_DMA_TODEVICE);
2061                 pci_unmap_addr_set(&tx->info[idx], bus, bus);
2062                 pci_unmap_len_set(&tx->info[idx], len, len);
2063         }
2064
2065         (req - rdma_count)->rdma_count = rdma_count;
2066 #ifdef NETIF_F_TSO
2067         if (mss)
2068                 do {
2069                         req--;
2070                         req->flags |= MXGEFW_FLAGS_TSO_LAST;
2071                 } while (!(req->flags & (MXGEFW_FLAGS_TSO_CHOP |
2072                                          MXGEFW_FLAGS_FIRST)));
2073 #endif
2074         idx = ((count - 1) + tx->req) & tx->mask;
2075         tx->info[idx].last = 1;
2076         if (tx->wc_fifo == NULL)
2077                 myri10ge_submit_req(tx, tx->req_list, count);
2078         else
2079                 myri10ge_submit_req_wc(tx, tx->req_list, count);
2080         tx->pkt_start++;
2081         if ((avail - count) < MXGEFW_MAX_SEND_DESC) {
2082                 mgp->stop_queue++;
2083                 netif_stop_queue(dev);
2084         }
2085         dev->trans_start = jiffies;
2086         return 0;
2087
2088 abort_linearize:
2089         /* Free any DMA resources we've alloced and clear out the skb
2090          * slot so as to not trip up assertions, and to avoid a
2091          * double-free if linearizing fails */
2092
2093         last_idx = (idx + 1) & tx->mask;
2094         idx = tx->req & tx->mask;
2095         tx->info[idx].skb = NULL;
2096         do {
2097                 len = pci_unmap_len(&tx->info[idx], len);
2098                 if (len) {
2099                         if (tx->info[idx].skb != NULL)
2100                                 pci_unmap_single(mgp->pdev,
2101                                                  pci_unmap_addr(&tx->info[idx],
2102                                                                 bus), len,
2103                                                  PCI_DMA_TODEVICE);
2104                         else
2105                                 pci_unmap_page(mgp->pdev,
2106                                                pci_unmap_addr(&tx->info[idx],
2107                                                               bus), len,
2108                                                PCI_DMA_TODEVICE);
2109                         pci_unmap_len_set(&tx->info[idx], len, 0);
2110                         tx->info[idx].skb = NULL;
2111                 }
2112                 idx = (idx + 1) & tx->mask;
2113         } while (idx != last_idx);
2114         if (skb_shinfo(skb)->gso_size) {
2115                 printk(KERN_ERR
2116                        "myri10ge: %s: TSO but wanted to linearize?!?!?\n",
2117                        mgp->dev->name);
2118                 goto drop;
2119         }
2120
2121         if (skb_linearize(skb))
2122                 goto drop;
2123
2124         mgp->tx_linearized++;
2125         goto again;
2126
2127 drop:
2128         dev_kfree_skb_any(skb);
2129         mgp->stats.tx_dropped += 1;
2130         return 0;
2131
2132 }
2133
2134 static struct net_device_stats *myri10ge_get_stats(struct net_device *dev)
2135 {
2136         struct myri10ge_priv *mgp = netdev_priv(dev);
2137         return &mgp->stats;
2138 }
2139
2140 static void myri10ge_set_multicast_list(struct net_device *dev)
2141 {
2142         /* can be called from atomic contexts,
2143          * pass 1 to force atomicity in myri10ge_send_cmd() */
2144         myri10ge_change_promisc(netdev_priv(dev), dev->flags & IFF_PROMISC, 1);
2145 }
2146
2147 static int myri10ge_set_mac_address(struct net_device *dev, void *addr)
2148 {
2149         struct sockaddr *sa = addr;
2150         struct myri10ge_priv *mgp = netdev_priv(dev);
2151         int status;
2152
2153         if (!is_valid_ether_addr(sa->sa_data))
2154                 return -EADDRNOTAVAIL;
2155
2156         status = myri10ge_update_mac_address(mgp, sa->sa_data);
2157         if (status != 0) {
2158                 printk(KERN_ERR
2159                        "myri10ge: %s: changing mac address failed with %d\n",
2160                        dev->name, status);
2161                 return status;
2162         }
2163
2164         /* change the dev structure */
2165         memcpy(dev->dev_addr, sa->sa_data, 6);
2166         return 0;
2167 }
2168
2169 static int myri10ge_change_mtu(struct net_device *dev, int new_mtu)
2170 {
2171         struct myri10ge_priv *mgp = netdev_priv(dev);
2172         int error = 0;
2173
2174         if ((new_mtu < 68) || (ETH_HLEN + new_mtu > MYRI10GE_MAX_ETHER_MTU)) {
2175                 printk(KERN_ERR "myri10ge: %s: new mtu (%d) is not valid\n",
2176                        dev->name, new_mtu);
2177                 return -EINVAL;
2178         }
2179         printk(KERN_INFO "%s: changing mtu from %d to %d\n",
2180                dev->name, dev->mtu, new_mtu);
2181         if (mgp->running) {
2182                 /* if we change the mtu on an active device, we must
2183                  * reset the device so the firmware sees the change */
2184                 myri10ge_close(dev);
2185                 dev->mtu = new_mtu;
2186                 myri10ge_open(dev);
2187         } else
2188                 dev->mtu = new_mtu;
2189
2190         return error;
2191 }
2192
2193 /*
2194  * Enable ECRC to align PCI-E Completion packets on an 8-byte boundary.
2195  * Only do it if the bridge is a root port since we don't want to disturb
2196  * any other device, except if forced with myri10ge_ecrc_enable > 1.
2197  */
2198
2199 static void myri10ge_enable_ecrc(struct myri10ge_priv *mgp)
2200 {
2201         struct pci_dev *bridge = mgp->pdev->bus->self;
2202         struct device *dev = &mgp->pdev->dev;
2203         unsigned cap;
2204         unsigned err_cap;
2205         u16 val;
2206         u8 ext_type;
2207         int ret;
2208
2209         if (!myri10ge_ecrc_enable || !bridge)
2210                 return;
2211
2212         /* check that the bridge is a root port */
2213         cap = pci_find_capability(bridge, PCI_CAP_ID_EXP);
2214         pci_read_config_word(bridge, cap + PCI_CAP_FLAGS, &val);
2215         ext_type = (val & PCI_EXP_FLAGS_TYPE) >> 4;
2216         if (ext_type != PCI_EXP_TYPE_ROOT_PORT) {
2217                 if (myri10ge_ecrc_enable > 1) {
2218                         struct pci_dev *old_bridge = bridge;
2219
2220                         /* Walk the hierarchy up to the root port
2221                          * where ECRC has to be enabled */
2222                         do {
2223                                 bridge = bridge->bus->self;
2224                                 if (!bridge) {
2225                                         dev_err(dev,
2226                                                 "Failed to find root port"
2227                                                 " to force ECRC\n");
2228                                         return;
2229                                 }
2230                                 cap =
2231                                     pci_find_capability(bridge, PCI_CAP_ID_EXP);
2232                                 pci_read_config_word(bridge,
2233                                                      cap + PCI_CAP_FLAGS, &val);
2234                                 ext_type = (val & PCI_EXP_FLAGS_TYPE) >> 4;
2235                         } while (ext_type != PCI_EXP_TYPE_ROOT_PORT);
2236
2237                         dev_info(dev,
2238                                  "Forcing ECRC on non-root port %s"
2239                                  " (enabling on root port %s)\n",
2240                                  pci_name(old_bridge), pci_name(bridge));
2241                 } else {
2242                         dev_err(dev,
2243                                 "Not enabling ECRC on non-root port %s\n",
2244                                 pci_name(bridge));
2245                         return;
2246                 }
2247         }
2248
2249         cap = pci_find_ext_capability(bridge, PCI_EXT_CAP_ID_ERR);
2250         if (!cap)
2251                 return;
2252
2253         ret = pci_read_config_dword(bridge, cap + PCI_ERR_CAP, &err_cap);
2254         if (ret) {
2255                 dev_err(dev, "failed reading ext-conf-space of %s\n",
2256                         pci_name(bridge));
2257                 dev_err(dev, "\t pci=nommconf in use? "
2258                         "or buggy/incomplete/absent ACPI MCFG attr?\n");
2259                 return;
2260         }
2261         if (!(err_cap & PCI_ERR_CAP_ECRC_GENC))
2262                 return;
2263
2264         err_cap |= PCI_ERR_CAP_ECRC_GENE;
2265         pci_write_config_dword(bridge, cap + PCI_ERR_CAP, err_cap);
2266         dev_info(dev, "Enabled ECRC on upstream bridge %s\n", pci_name(bridge));
2267         mgp->tx.boundary = 4096;
2268         mgp->fw_name = myri10ge_fw_aligned;
2269 }
2270
2271 /*
2272  * The Lanai Z8E PCI-E interface achieves higher Read-DMA throughput
2273  * when the PCI-E Completion packets are aligned on an 8-byte
2274  * boundary.  Some PCI-E chip sets always align Completion packets; on
2275  * the ones that do not, the alignment can be enforced by enabling
2276  * ECRC generation (if supported).
2277  *
2278  * When PCI-E Completion packets are not aligned, it is actually more
2279  * efficient to limit Read-DMA transactions to 2KB, rather than 4KB.
2280  *
2281  * If the driver can neither enable ECRC nor verify that it has
2282  * already been enabled, then it must use a firmware image which works
2283  * around unaligned completion packets (myri10ge_ethp_z8e.dat), and it
2284  * should also ensure that it never gives the device a Read-DMA which is
2285  * larger than 2KB by setting the tx.boundary to 2KB.  If ECRC is
2286  * enabled, then the driver should use the aligned (myri10ge_eth_z8e.dat)
2287  * firmware image, and set tx.boundary to 4KB.
2288  */
2289
2290 #define PCI_DEVICE_ID_SERVERWORKS_HT2000_PCIE   0x0132
2291
2292 static void myri10ge_select_firmware(struct myri10ge_priv *mgp)
2293 {
2294         struct pci_dev *bridge = mgp->pdev->bus->self;
2295
2296         mgp->tx.boundary = 2048;
2297         mgp->fw_name = myri10ge_fw_unaligned;
2298
2299         if (myri10ge_force_firmware == 0) {
2300                 myri10ge_enable_ecrc(mgp);
2301
2302                 /* Check to see if the upstream bridge is known to
2303                  * provide aligned completions */
2304                 if (bridge
2305                     /* ServerWorks HT2000/HT1000 */
2306                     && bridge->vendor == PCI_VENDOR_ID_SERVERWORKS
2307                     && bridge->device ==
2308                     PCI_DEVICE_ID_SERVERWORKS_HT2000_PCIE) {
2309                         dev_info(&mgp->pdev->dev,
2310                                  "Assuming aligned completions (0x%x:0x%x)\n",
2311                                  bridge->vendor, bridge->device);
2312                         mgp->tx.boundary = 4096;
2313                         mgp->fw_name = myri10ge_fw_aligned;
2314                 }
2315         } else {
2316                 if (myri10ge_force_firmware == 1) {
2317                         dev_info(&mgp->pdev->dev,
2318                                  "Assuming aligned completions (forced)\n");
2319                         mgp->tx.boundary = 4096;
2320                         mgp->fw_name = myri10ge_fw_aligned;
2321                 } else {
2322                         dev_info(&mgp->pdev->dev,
2323                                  "Assuming unaligned completions (forced)\n");
2324                         mgp->tx.boundary = 2048;
2325                         mgp->fw_name = myri10ge_fw_unaligned;
2326                 }
2327         }
2328         if (myri10ge_fw_name != NULL) {
2329                 dev_info(&mgp->pdev->dev, "overriding firmware to %s\n",
2330                          myri10ge_fw_name);
2331                 mgp->fw_name = myri10ge_fw_name;
2332         }
2333 }
2334
2335 static void myri10ge_save_state(struct myri10ge_priv *mgp)
2336 {
2337         struct pci_dev *pdev = mgp->pdev;
2338         int cap;
2339
2340         pci_save_state(pdev);
2341         /* now save PCIe and MSI state that Linux will not
2342          * save for us */
2343         cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
2344         pci_read_config_dword(pdev, cap + PCI_EXP_DEVCTL, &mgp->devctl);
2345         cap = pci_find_capability(pdev, PCI_CAP_ID_MSI);
2346         pci_read_config_word(pdev, cap + PCI_MSI_FLAGS, &mgp->msi_flags);
2347 }
2348
2349 static void myri10ge_restore_state(struct myri10ge_priv *mgp)
2350 {
2351         struct pci_dev *pdev = mgp->pdev;
2352         int cap;
2353
2354         /* restore PCIe and MSI state that linux will not */
2355         cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
2356         pci_write_config_dword(pdev, cap + PCI_CAP_ID_EXP, mgp->devctl);
2357         cap = pci_find_capability(pdev, PCI_CAP_ID_MSI);
2358         pci_write_config_word(pdev, cap + PCI_MSI_FLAGS, mgp->msi_flags);
2359
2360         pci_restore_state(pdev);
2361 }
2362
2363 #ifdef CONFIG_PM
2364
2365 static int myri10ge_suspend(struct pci_dev *pdev, pm_message_t state)
2366 {
2367         struct myri10ge_priv *mgp;
2368         struct net_device *netdev;
2369
2370         mgp = pci_get_drvdata(pdev);
2371         if (mgp == NULL)
2372                 return -EINVAL;
2373         netdev = mgp->dev;
2374
2375         netif_device_detach(netdev);
2376         if (netif_running(netdev)) {
2377                 printk(KERN_INFO "myri10ge: closing %s\n", netdev->name);
2378                 rtnl_lock();
2379                 myri10ge_close(netdev);
2380                 rtnl_unlock();
2381         }
2382         myri10ge_dummy_rdma(mgp, 0);
2383         free_irq(pdev->irq, mgp);
2384         myri10ge_save_state(mgp);
2385         pci_disable_device(pdev);
2386         pci_set_power_state(pdev, pci_choose_state(pdev, state));
2387         return 0;
2388 }
2389
2390 static int myri10ge_resume(struct pci_dev *pdev)
2391 {
2392         struct myri10ge_priv *mgp;
2393         struct net_device *netdev;
2394         int status;
2395         u16 vendor;
2396
2397         mgp = pci_get_drvdata(pdev);
2398         if (mgp == NULL)
2399                 return -EINVAL;
2400         netdev = mgp->dev;
2401         pci_set_power_state(pdev, 0);   /* zeros conf space as a side effect */
2402         msleep(5);              /* give card time to respond */
2403         pci_read_config_word(mgp->pdev, PCI_VENDOR_ID, &vendor);
2404         if (vendor == 0xffff) {
2405                 printk(KERN_ERR "myri10ge: %s: device disappeared!\n",
2406                        mgp->dev->name);
2407                 return -EIO;
2408         }
2409         myri10ge_restore_state(mgp);
2410         pci_enable_device(pdev);
2411         pci_set_master(pdev);
2412
2413         status = request_irq(pdev->irq, myri10ge_intr, IRQF_SHARED,
2414                              netdev->name, mgp);
2415         if (status != 0) {
2416                 dev_err(&pdev->dev, "failed to allocate IRQ\n");
2417                 goto abort_with_msi;
2418         }
2419
2420         myri10ge_reset(mgp);
2421         myri10ge_dummy_rdma(mgp, mgp->tx.boundary != 4096);
2422
2423         /* Save configuration space to be restored if the
2424          * nic resets due to a parity error */
2425         myri10ge_save_state(mgp);
2426
2427         if (netif_running(netdev)) {
2428                 rtnl_lock();
2429                 myri10ge_open(netdev);
2430                 rtnl_unlock();
2431         }
2432         netif_device_attach(netdev);
2433
2434         return 0;
2435
2436 abort_with_msi:
2437         return -EIO;
2438
2439 }
2440
2441 #endif                          /* CONFIG_PM */
2442
2443 static u32 myri10ge_read_reboot(struct myri10ge_priv *mgp)
2444 {
2445         struct pci_dev *pdev = mgp->pdev;
2446         int vs = mgp->vendor_specific_offset;
2447         u32 reboot;
2448
2449         /*enter read32 mode */
2450         pci_write_config_byte(pdev, vs + 0x10, 0x3);
2451
2452         /*read REBOOT_STATUS (0xfffffff0) */
2453         pci_write_config_dword(pdev, vs + 0x18, 0xfffffff0);
2454         pci_read_config_dword(pdev, vs + 0x14, &reboot);
2455         return reboot;
2456 }
2457
2458 /*
2459  * This watchdog is used to check whether the board has suffered
2460  * from a parity error and needs to be recovered.
2461  */
2462 static void myri10ge_watchdog(void *arg)
2463 {
2464         struct myri10ge_priv *mgp = arg;
2465         u32 reboot;
2466         int status;
2467         u16 cmd, vendor;
2468
2469         mgp->watchdog_resets++;
2470         pci_read_config_word(mgp->pdev, PCI_COMMAND, &cmd);
2471         if ((cmd & PCI_COMMAND_MASTER) == 0) {
2472                 /* Bus master DMA disabled?  Check to see
2473                  * if the card rebooted due to a parity error
2474                  * For now, just report it */
2475                 reboot = myri10ge_read_reboot(mgp);
2476                 printk(KERN_ERR
2477                        "myri10ge: %s: NIC rebooted (0x%x), resetting\n",
2478                        mgp->dev->name, reboot);
2479                 /*
2480                  * A rebooted nic will come back with config space as
2481                  * it was after power was applied to PCIe bus.
2482                  * Attempt to restore config space which was saved
2483                  * when the driver was loaded, or the last time the
2484                  * nic was resumed from power saving mode.
2485                  */
2486                 myri10ge_restore_state(mgp);
2487         } else {
2488                 /* if we get back -1's from our slot, perhaps somebody
2489                  * powered off our card.  Don't try to reset it in
2490                  * this case */
2491                 if (cmd == 0xffff) {
2492                         pci_read_config_word(mgp->pdev, PCI_VENDOR_ID, &vendor);
2493                         if (vendor == 0xffff) {
2494                                 printk(KERN_ERR
2495                                        "myri10ge: %s: device disappeared!\n",
2496                                        mgp->dev->name);
2497                                 return;
2498                         }
2499                 }
2500                 /* Perhaps it is a software error.  Try to reset */
2501
2502                 printk(KERN_ERR "myri10ge: %s: device timeout, resetting\n",
2503                        mgp->dev->name);
2504                 printk(KERN_INFO "myri10ge: %s: %d %d %d %d %d\n",
2505                        mgp->dev->name, mgp->tx.req, mgp->tx.done,
2506                        mgp->tx.pkt_start, mgp->tx.pkt_done,
2507                        (int)ntohl(mgp->fw_stats->send_done_count));
2508                 msleep(2000);
2509                 printk(KERN_INFO "myri10ge: %s: %d %d %d %d %d\n",
2510                        mgp->dev->name, mgp->tx.req, mgp->tx.done,
2511                        mgp->tx.pkt_start, mgp->tx.pkt_done,
2512                        (int)ntohl(mgp->fw_stats->send_done_count));
2513         }
2514         rtnl_lock();
2515         myri10ge_close(mgp->dev);
2516         status = myri10ge_load_firmware(mgp);
2517         if (status != 0)
2518                 printk(KERN_ERR "myri10ge: %s: failed to load firmware\n",
2519                        mgp->dev->name);
2520         else
2521                 myri10ge_open(mgp->dev);
2522         rtnl_unlock();
2523 }
2524
2525 /*
2526  * We use our own timer routine rather than relying upon
2527  * netdev->tx_timeout because we have a very large hardware transmit
2528  * queue.  Due to the large queue, the netdev->tx_timeout function
2529  * cannot detect a NIC with a parity error in a timely fashion if the
2530  * NIC is lightly loaded.
2531  */
2532 static void myri10ge_watchdog_timer(unsigned long arg)
2533 {
2534         struct myri10ge_priv *mgp;
2535
2536         mgp = (struct myri10ge_priv *)arg;
2537         if (mgp->tx.req != mgp->tx.done &&
2538             mgp->tx.done == mgp->watchdog_tx_done)
2539                 /* nic seems like it might be stuck.. */
2540                 schedule_work(&mgp->watchdog_work);
2541         else
2542                 /* rearm timer */
2543                 mod_timer(&mgp->watchdog_timer,
2544                           jiffies + myri10ge_watchdog_timeout * HZ);
2545
2546         mgp->watchdog_tx_done = mgp->tx.done;
2547 }
2548
2549 static int myri10ge_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
2550 {
2551         struct net_device *netdev;
2552         struct myri10ge_priv *mgp;
2553         struct device *dev = &pdev->dev;
2554         size_t bytes;
2555         int i;
2556         int status = -ENXIO;
2557         int cap;
2558         int dac_enabled;
2559         u16 val;
2560
2561         netdev = alloc_etherdev(sizeof(*mgp));
2562         if (netdev == NULL) {
2563                 dev_err(dev, "Could not allocate ethernet device\n");
2564                 return -ENOMEM;
2565         }
2566
2567         mgp = netdev_priv(netdev);
2568         memset(mgp, 0, sizeof(*mgp));
2569         mgp->dev = netdev;
2570         mgp->pdev = pdev;
2571         mgp->csum_flag = MXGEFW_FLAGS_CKSUM;
2572         mgp->pause = myri10ge_flow_control;
2573         mgp->intr_coal_delay = myri10ge_intr_coal_delay;
2574         init_waitqueue_head(&mgp->down_wq);
2575
2576         if (pci_enable_device(pdev)) {
2577                 dev_err(&pdev->dev, "pci_enable_device call failed\n");
2578                 status = -ENODEV;
2579                 goto abort_with_netdev;
2580         }
2581         myri10ge_select_firmware(mgp);
2582
2583         /* Find the vendor-specific cap so we can check
2584          * the reboot register later on */
2585         mgp->vendor_specific_offset
2586             = pci_find_capability(pdev, PCI_CAP_ID_VNDR);
2587
2588         /* Set our max read request to 4KB */
2589         cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
2590         if (cap < 64) {
2591                 dev_err(&pdev->dev, "Bad PCI_CAP_ID_EXP location %d\n", cap);
2592                 goto abort_with_netdev;
2593         }
2594         status = pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &val);
2595         if (status != 0) {
2596                 dev_err(&pdev->dev, "Error %d reading PCI_EXP_DEVCTL\n",
2597                         status);
2598                 goto abort_with_netdev;
2599         }
2600         val = (val & ~PCI_EXP_DEVCTL_READRQ) | (5 << 12);
2601         status = pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, val);
2602         if (status != 0) {
2603                 dev_err(&pdev->dev, "Error %d writing PCI_EXP_DEVCTL\n",
2604                         status);
2605                 goto abort_with_netdev;
2606         }
2607
2608         pci_set_master(pdev);
2609         dac_enabled = 1;
2610         status = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
2611         if (status != 0) {
2612                 dac_enabled = 0;
2613                 dev_err(&pdev->dev,
2614                         "64-bit pci address mask was refused, trying 32-bit");
2615                 status = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
2616         }
2617         if (status != 0) {
2618                 dev_err(&pdev->dev, "Error %d setting DMA mask\n", status);
2619                 goto abort_with_netdev;
2620         }
2621         mgp->cmd = dma_alloc_coherent(&pdev->dev, sizeof(*mgp->cmd),
2622                                       &mgp->cmd_bus, GFP_KERNEL);
2623         if (mgp->cmd == NULL)
2624                 goto abort_with_netdev;
2625
2626         mgp->fw_stats = dma_alloc_coherent(&pdev->dev, sizeof(*mgp->fw_stats),
2627                                            &mgp->fw_stats_bus, GFP_KERNEL);
2628         if (mgp->fw_stats == NULL)
2629                 goto abort_with_cmd;
2630
2631         mgp->board_span = pci_resource_len(pdev, 0);
2632         mgp->iomem_base = pci_resource_start(pdev, 0);
2633         mgp->mtrr = -1;
2634 #ifdef CONFIG_MTRR
2635         mgp->mtrr = mtrr_add(mgp->iomem_base, mgp->board_span,
2636                              MTRR_TYPE_WRCOMB, 1);
2637 #endif
2638         /* Hack.  need to get rid of these magic numbers */
2639         mgp->sram_size =
2640             2 * 1024 * 1024 - (2 * (48 * 1024) + (32 * 1024)) - 0x100;
2641         if (mgp->sram_size > mgp->board_span) {
2642                 dev_err(&pdev->dev, "board span %ld bytes too small\n",
2643                         mgp->board_span);
2644                 goto abort_with_wc;
2645         }
2646         mgp->sram = ioremap(mgp->iomem_base, mgp->board_span);
2647         if (mgp->sram == NULL) {
2648                 dev_err(&pdev->dev, "ioremap failed for %ld bytes at 0x%lx\n",
2649                         mgp->board_span, mgp->iomem_base);
2650                 status = -ENXIO;
2651                 goto abort_with_wc;
2652         }
2653         memcpy_fromio(mgp->eeprom_strings,
2654                       mgp->sram + mgp->sram_size - MYRI10GE_EEPROM_STRINGS_SIZE,
2655                       MYRI10GE_EEPROM_STRINGS_SIZE);
2656         memset(mgp->eeprom_strings + MYRI10GE_EEPROM_STRINGS_SIZE - 2, 0, 2);
2657         status = myri10ge_read_mac_addr(mgp);
2658         if (status)
2659                 goto abort_with_ioremap;
2660
2661         for (i = 0; i < ETH_ALEN; i++)
2662                 netdev->dev_addr[i] = mgp->mac_addr[i];
2663
2664         /* allocate rx done ring */
2665         bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
2666         mgp->rx_done.entry = dma_alloc_coherent(&pdev->dev, bytes,
2667                                                 &mgp->rx_done.bus, GFP_KERNEL);
2668         if (mgp->rx_done.entry == NULL)
2669                 goto abort_with_ioremap;
2670         memset(mgp->rx_done.entry, 0, bytes);
2671
2672         status = myri10ge_load_firmware(mgp);
2673         if (status != 0) {
2674                 dev_err(&pdev->dev, "failed to load firmware\n");
2675                 goto abort_with_rx_done;
2676         }
2677
2678         status = myri10ge_reset(mgp);
2679         if (status != 0) {
2680                 dev_err(&pdev->dev, "failed reset\n");
2681                 goto abort_with_firmware;
2682         }
2683
2684         if (myri10ge_msi) {
2685                 status = pci_enable_msi(pdev);
2686                 if (status != 0)
2687                         dev_err(&pdev->dev,
2688                                 "Error %d setting up MSI; falling back to xPIC\n",
2689                                 status);
2690                 else
2691                         mgp->msi_enabled = 1;
2692         }
2693
2694         status = request_irq(pdev->irq, myri10ge_intr, IRQF_SHARED,
2695                              netdev->name, mgp);
2696         if (status != 0) {
2697                 dev_err(&pdev->dev, "failed to allocate IRQ\n");
2698                 goto abort_with_firmware;
2699         }
2700
2701         pci_set_drvdata(pdev, mgp);
2702         if ((myri10ge_initial_mtu + ETH_HLEN) > MYRI10GE_MAX_ETHER_MTU)
2703                 myri10ge_initial_mtu = MYRI10GE_MAX_ETHER_MTU - ETH_HLEN;
2704         if ((myri10ge_initial_mtu + ETH_HLEN) < 68)
2705                 myri10ge_initial_mtu = 68;
2706         netdev->mtu = myri10ge_initial_mtu;
2707         netdev->open = myri10ge_open;
2708         netdev->stop = myri10ge_close;
2709         netdev->hard_start_xmit = myri10ge_xmit;
2710         netdev->get_stats = myri10ge_get_stats;
2711         netdev->base_addr = mgp->iomem_base;
2712         netdev->irq = pdev->irq;
2713         netdev->change_mtu = myri10ge_change_mtu;
2714         netdev->set_multicast_list = myri10ge_set_multicast_list;
2715         netdev->set_mac_address = myri10ge_set_mac_address;
2716         netdev->features = NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_TSO;
2717         if (dac_enabled)
2718                 netdev->features |= NETIF_F_HIGHDMA;
2719         netdev->poll = myri10ge_poll;
2720         netdev->weight = myri10ge_napi_weight;
2721
2722         /* Save configuration space to be restored if the
2723          * nic resets due to a parity error */
2724         myri10ge_save_state(mgp);
2725
2726         /* Setup the watchdog timer */
2727         setup_timer(&mgp->watchdog_timer, myri10ge_watchdog_timer,
2728                     (unsigned long)mgp);
2729
2730         SET_ETHTOOL_OPS(netdev, &myri10ge_ethtool_ops);
2731         INIT_WORK(&mgp->watchdog_work, myri10ge_watchdog, mgp);
2732         status = register_netdev(netdev);
2733         if (status != 0) {
2734                 dev_err(&pdev->dev, "register_netdev failed: %d\n", status);
2735                 goto abort_with_irq;
2736         }
2737         dev_info(dev, "%s IRQ %d, tx bndry %d, fw %s, WC %s\n",
2738                  (mgp->msi_enabled ? "MSI" : "xPIC"),
2739                  pdev->irq, mgp->tx.boundary, mgp->fw_name,
2740                  (mgp->mtrr >= 0 ? "Enabled" : "Disabled"));
2741
2742         return 0;
2743
2744 abort_with_irq:
2745         free_irq(pdev->irq, mgp);
2746         if (mgp->msi_enabled)
2747                 pci_disable_msi(pdev);
2748
2749 abort_with_firmware:
2750         myri10ge_dummy_rdma(mgp, 0);
2751
2752 abort_with_rx_done:
2753         bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
2754         dma_free_coherent(&pdev->dev, bytes,
2755                           mgp->rx_done.entry, mgp->rx_done.bus);
2756
2757 abort_with_ioremap:
2758         iounmap(mgp->sram);
2759
2760 abort_with_wc:
2761 #ifdef CONFIG_MTRR
2762         if (mgp->mtrr >= 0)
2763                 mtrr_del(mgp->mtrr, mgp->iomem_base, mgp->board_span);
2764 #endif
2765         dma_free_coherent(&pdev->dev, sizeof(*mgp->fw_stats),
2766                           mgp->fw_stats, mgp->fw_stats_bus);
2767
2768 abort_with_cmd:
2769         dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
2770                           mgp->cmd, mgp->cmd_bus);
2771
2772 abort_with_netdev:
2773
2774         free_netdev(netdev);
2775         return status;
2776 }
2777
2778 /*
2779  * myri10ge_remove
2780  *
2781  * Does what is necessary to shutdown one Myrinet device. Called
2782  *   once for each Myrinet card by the kernel when a module is
2783  *   unloaded.
2784  */
2785 static void myri10ge_remove(struct pci_dev *pdev)
2786 {
2787         struct myri10ge_priv *mgp;
2788         struct net_device *netdev;
2789         size_t bytes;
2790
2791         mgp = pci_get_drvdata(pdev);
2792         if (mgp == NULL)
2793                 return;
2794
2795         flush_scheduled_work();
2796         netdev = mgp->dev;
2797         unregister_netdev(netdev);
2798         free_irq(pdev->irq, mgp);
2799         if (mgp->msi_enabled)
2800                 pci_disable_msi(pdev);
2801
2802         myri10ge_dummy_rdma(mgp, 0);
2803
2804         bytes = myri10ge_max_intr_slots * sizeof(*mgp->rx_done.entry);
2805         dma_free_coherent(&pdev->dev, bytes,
2806                           mgp->rx_done.entry, mgp->rx_done.bus);
2807
2808         iounmap(mgp->sram);
2809
2810 #ifdef CONFIG_MTRR
2811         if (mgp->mtrr >= 0)
2812                 mtrr_del(mgp->mtrr, mgp->iomem_base, mgp->board_span);
2813 #endif
2814         dma_free_coherent(&pdev->dev, sizeof(*mgp->fw_stats),
2815                           mgp->fw_stats, mgp->fw_stats_bus);
2816
2817         dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
2818                           mgp->cmd, mgp->cmd_bus);
2819
2820         free_netdev(netdev);
2821         pci_set_drvdata(pdev, NULL);
2822 }
2823
2824 #define PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E      0x0008
2825
2826 static struct pci_device_id myri10ge_pci_tbl[] = {
2827         {PCI_DEVICE(PCI_VENDOR_ID_MYRICOM, PCI_DEVICE_ID_MYRICOM_MYRI10GE_Z8E)},
2828         {0},
2829 };
2830
2831 static struct pci_driver myri10ge_driver = {
2832         .name = "myri10ge",
2833         .probe = myri10ge_probe,
2834         .remove = myri10ge_remove,
2835         .id_table = myri10ge_pci_tbl,
2836 #ifdef CONFIG_PM
2837         .suspend = myri10ge_suspend,
2838         .resume = myri10ge_resume,
2839 #endif
2840 };
2841
2842 static __init int myri10ge_init_module(void)
2843 {
2844         printk(KERN_INFO "%s: Version %s\n", myri10ge_driver.name,
2845                MYRI10GE_VERSION_STR);
2846         return pci_register_driver(&myri10ge_driver);
2847 }
2848
2849 module_init(myri10ge_init_module);
2850
2851 static __exit void myri10ge_cleanup_module(void)
2852 {
2853         pci_unregister_driver(&myri10ge_driver);
2854 }
2855
2856 module_exit(myri10ge_cleanup_module);