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