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