Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux driver for VMware's vmxnet3 ethernet NIC. |
| 3 | * |
Shrikrishna Khare | 190af10 | 2016-06-16 10:51:53 -0700 | [diff] [blame] | 4 | * Copyright (C) 2008-2016, VMware, Inc. All Rights Reserved. |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; version 2 of the License and no later version. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, but |
| 11 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or |
| 13 | * NON INFRINGEMENT. See the GNU General Public License for more |
| 14 | * details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 19 | * |
| 20 | * The full GNU General Public License is included in this distribution in |
| 21 | * the file called "COPYING". |
| 22 | * |
Shrikrishna Khare | 190af10 | 2016-06-16 10:51:53 -0700 | [diff] [blame] | 23 | * Maintained by: pv-drivers@vmware.com |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 24 | * |
| 25 | */ |
| 26 | |
| 27 | #ifndef _VMXNET3_INT_H |
| 28 | #define _VMXNET3_INT_H |
| 29 | |
Jesse Gross | 72e85c4 | 2011-06-23 13:04:39 +0000 | [diff] [blame] | 30 | #include <linux/bitops.h> |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 31 | #include <linux/ethtool.h> |
| 32 | #include <linux/delay.h> |
| 33 | #include <linux/netdevice.h> |
| 34 | #include <linux/pci.h> |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 35 | #include <linux/compiler.h> |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 36 | #include <linux/slab.h> |
| 37 | #include <linux/spinlock.h> |
| 38 | #include <linux/ioport.h> |
| 39 | #include <linux/highmem.h> |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 40 | #include <linux/timer.h> |
| 41 | #include <linux/skbuff.h> |
| 42 | #include <linux/interrupt.h> |
| 43 | #include <linux/workqueue.h> |
| 44 | #include <linux/uaccess.h> |
| 45 | #include <asm/dma.h> |
| 46 | #include <asm/page.h> |
| 47 | |
| 48 | #include <linux/tcp.h> |
| 49 | #include <linux/udp.h> |
| 50 | #include <linux/ip.h> |
| 51 | #include <linux/ipv6.h> |
| 52 | #include <linux/in.h> |
| 53 | #include <linux/etherdevice.h> |
| 54 | #include <asm/checksum.h> |
| 55 | #include <linux/if_vlan.h> |
| 56 | #include <linux/if_arp.h> |
| 57 | #include <linux/inetdevice.h> |
Shreyas Bhatewara | eebb02b | 2011-07-07 00:25:52 -0700 | [diff] [blame] | 58 | #include <linux/log2.h> |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 59 | |
| 60 | #include "vmxnet3_defs.h" |
| 61 | |
| 62 | #ifdef DEBUG |
| 63 | # define VMXNET3_DRIVER_VERSION_REPORT VMXNET3_DRIVER_VERSION_STRING"-NAPI(debug)" |
| 64 | #else |
| 65 | # define VMXNET3_DRIVER_VERSION_REPORT VMXNET3_DRIVER_VERSION_STRING"-NAPI" |
| 66 | #endif |
| 67 | |
| 68 | |
| 69 | /* |
| 70 | * Version numbers |
| 71 | */ |
Shrikrishna Khare | ff2e7d5 | 2016-08-19 10:33:42 -0700 | [diff] [blame] | 72 | #define VMXNET3_DRIVER_VERSION_STRING "1.4.a.0-k" |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 73 | |
| 74 | /* a 32-bit int, each byte encode a verion number in VMXNET3_DRIVER_VERSION */ |
Shrikrishna Khare | ff2e7d5 | 2016-08-19 10:33:42 -0700 | [diff] [blame] | 75 | #define VMXNET3_DRIVER_VERSION_NUM 0x01040a00 |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 76 | |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 77 | #if defined(CONFIG_PCI_MSI) |
| 78 | /* RSS only makes sense if MSI-X is supported. */ |
| 79 | #define VMXNET3_RSS |
| 80 | #endif |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 81 | |
Shrikrishna Khare | 190af10 | 2016-06-16 10:51:53 -0700 | [diff] [blame] | 82 | #define VMXNET3_REV_3 2 /* Vmxnet3 Rev. 3 */ |
| 83 | #define VMXNET3_REV_2 1 /* Vmxnet3 Rev. 2 */ |
| 84 | #define VMXNET3_REV_1 0 /* Vmxnet3 Rev. 1 */ |
| 85 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 86 | /* |
| 87 | * Capabilities |
| 88 | */ |
| 89 | |
| 90 | enum { |
| 91 | VMNET_CAP_SG = 0x0001, /* Can do scatter-gather transmits. */ |
| 92 | VMNET_CAP_IP4_CSUM = 0x0002, /* Can checksum only TCP/UDP over |
| 93 | * IPv4 */ |
| 94 | VMNET_CAP_HW_CSUM = 0x0004, /* Can checksum all packets. */ |
| 95 | VMNET_CAP_HIGH_DMA = 0x0008, /* Can DMA to high memory. */ |
| 96 | VMNET_CAP_TOE = 0x0010, /* Supports TCP/IP offload. */ |
| 97 | VMNET_CAP_TSO = 0x0020, /* Supports TCP Segmentation |
| 98 | * offload */ |
| 99 | VMNET_CAP_SW_TSO = 0x0040, /* Supports SW TCP Segmentation */ |
| 100 | VMNET_CAP_VMXNET_APROM = 0x0080, /* Vmxnet APROM support */ |
| 101 | VMNET_CAP_HW_TX_VLAN = 0x0100, /* Can we do VLAN tagging in HW */ |
| 102 | VMNET_CAP_HW_RX_VLAN = 0x0200, /* Can we do VLAN untagging in HW */ |
| 103 | VMNET_CAP_SW_VLAN = 0x0400, /* VLAN tagging/untagging in SW */ |
| 104 | VMNET_CAP_WAKE_PCKT_RCV = 0x0800, /* Can wake on network packet recv? */ |
| 105 | VMNET_CAP_ENABLE_INT_INLINE = 0x1000, /* Enable Interrupt Inline */ |
| 106 | VMNET_CAP_ENABLE_HEADER_COPY = 0x2000, /* copy header for vmkernel */ |
| 107 | VMNET_CAP_TX_CHAIN = 0x4000, /* Guest can use multiple tx entries |
| 108 | * for a pkt */ |
| 109 | VMNET_CAP_RX_CHAIN = 0x8000, /* pkt can span multiple rx entries */ |
| 110 | VMNET_CAP_LPD = 0x10000, /* large pkt delivery */ |
| 111 | VMNET_CAP_BPF = 0x20000, /* BPF Support in VMXNET Virtual HW*/ |
| 112 | VMNET_CAP_SG_SPAN_PAGES = 0x40000, /* Scatter-gather can span multiple*/ |
| 113 | /* pages transmits */ |
| 114 | VMNET_CAP_IP6_CSUM = 0x80000, /* Can do IPv6 csum offload. */ |
| 115 | VMNET_CAP_TSO6 = 0x100000, /* TSO seg. offload for IPv6 pkts. */ |
| 116 | VMNET_CAP_TSO256k = 0x200000, /* Can do TSO seg offload for */ |
| 117 | /* pkts up to 256kB. */ |
| 118 | VMNET_CAP_UPT = 0x400000 /* Support UPT */ |
| 119 | }; |
| 120 | |
| 121 | /* |
Adit Ranadive | b1226c7 | 2016-10-02 19:10:21 -0700 | [diff] [blame] | 122 | * Maximum devices supported. |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 123 | */ |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 124 | #define MAX_ETHERNET_CARDS 10 |
| 125 | #define MAX_PCI_PASSTHRU_DEVICE 6 |
| 126 | |
| 127 | struct vmxnet3_cmd_ring { |
| 128 | union Vmxnet3_GenericDesc *base; |
| 129 | u32 size; |
| 130 | u32 next2fill; |
| 131 | u32 next2comp; |
| 132 | u8 gen; |
| 133 | dma_addr_t basePA; |
| 134 | }; |
| 135 | |
| 136 | static inline void |
| 137 | vmxnet3_cmd_ring_adv_next2fill(struct vmxnet3_cmd_ring *ring) |
| 138 | { |
| 139 | ring->next2fill++; |
| 140 | if (unlikely(ring->next2fill == ring->size)) { |
| 141 | ring->next2fill = 0; |
| 142 | VMXNET3_FLIP_RING_GEN(ring->gen); |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | static inline void |
| 147 | vmxnet3_cmd_ring_adv_next2comp(struct vmxnet3_cmd_ring *ring) |
| 148 | { |
| 149 | VMXNET3_INC_RING_IDX_ONLY(ring->next2comp, ring->size); |
| 150 | } |
| 151 | |
| 152 | static inline int |
| 153 | vmxnet3_cmd_ring_desc_avail(struct vmxnet3_cmd_ring *ring) |
| 154 | { |
| 155 | return (ring->next2comp > ring->next2fill ? 0 : ring->size) + |
| 156 | ring->next2comp - ring->next2fill - 1; |
| 157 | } |
| 158 | |
| 159 | struct vmxnet3_comp_ring { |
| 160 | union Vmxnet3_GenericDesc *base; |
| 161 | u32 size; |
| 162 | u32 next2proc; |
| 163 | u8 gen; |
| 164 | u8 intr_idx; |
| 165 | dma_addr_t basePA; |
| 166 | }; |
| 167 | |
| 168 | static inline void |
| 169 | vmxnet3_comp_ring_adv_next2proc(struct vmxnet3_comp_ring *ring) |
| 170 | { |
| 171 | ring->next2proc++; |
| 172 | if (unlikely(ring->next2proc == ring->size)) { |
| 173 | ring->next2proc = 0; |
| 174 | VMXNET3_FLIP_RING_GEN(ring->gen); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | struct vmxnet3_tx_data_ring { |
| 179 | struct Vmxnet3_TxDataDesc *base; |
| 180 | u32 size; |
| 181 | dma_addr_t basePA; |
| 182 | }; |
| 183 | |
| 184 | enum vmxnet3_buf_map_type { |
| 185 | VMXNET3_MAP_INVALID = 0, |
| 186 | VMXNET3_MAP_NONE, |
| 187 | VMXNET3_MAP_SINGLE, |
| 188 | VMXNET3_MAP_PAGE, |
| 189 | }; |
| 190 | |
| 191 | struct vmxnet3_tx_buf_info { |
| 192 | u32 map_type; |
| 193 | u16 len; |
| 194 | u16 sop_idx; |
| 195 | dma_addr_t dma_addr; |
| 196 | struct sk_buff *skb; |
| 197 | }; |
| 198 | |
| 199 | struct vmxnet3_tq_driver_stats { |
| 200 | u64 drop_total; /* # of pkts dropped by the driver, the |
| 201 | * counters below track droppings due to |
| 202 | * different reasons |
| 203 | */ |
| 204 | u64 drop_too_many_frags; |
| 205 | u64 drop_oversized_hdr; |
| 206 | u64 drop_hdr_inspect_err; |
| 207 | u64 drop_tso; |
| 208 | |
| 209 | u64 tx_ring_full; |
| 210 | u64 linearized; /* # of pkts linearized */ |
| 211 | u64 copy_skb_header; /* # of times we have to copy skb header */ |
| 212 | u64 oversized_hdr; |
| 213 | }; |
| 214 | |
| 215 | struct vmxnet3_tx_ctx { |
| 216 | bool ipv4; |
Shrikrishna Khare | 759c935 | 2015-02-28 20:33:09 -0800 | [diff] [blame] | 217 | bool ipv6; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 218 | u16 mss; |
| 219 | u32 eth_ip_hdr_size; /* only valid for pkts requesting tso or csum |
| 220 | * offloading |
| 221 | */ |
| 222 | u32 l4_hdr_size; /* only valid if mss != 0 */ |
| 223 | u32 copy_size; /* # of bytes copied into the data ring */ |
| 224 | union Vmxnet3_GenericDesc *sop_txd; |
| 225 | union Vmxnet3_GenericDesc *eop_txd; |
| 226 | }; |
| 227 | |
| 228 | struct vmxnet3_tx_queue { |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 229 | char name[IFNAMSIZ+8]; /* To identify interrupt */ |
| 230 | struct vmxnet3_adapter *adapter; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 231 | spinlock_t tx_lock; |
| 232 | struct vmxnet3_cmd_ring tx_ring; |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 233 | struct vmxnet3_tx_buf_info *buf_info; |
Andy King | b0eb57c | 2013-08-23 09:33:49 -0700 | [diff] [blame] | 234 | dma_addr_t buf_info_pa; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 235 | struct vmxnet3_tx_data_ring data_ring; |
| 236 | struct vmxnet3_comp_ring comp_ring; |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 237 | struct Vmxnet3_TxQueueCtrl *shared; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 238 | struct vmxnet3_tq_driver_stats stats; |
| 239 | bool stopped; |
| 240 | int num_stop; /* # of times the queue is |
| 241 | * stopped */ |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 242 | int qid; |
Shrikrishna Khare | 3c8b3ef | 2016-06-16 10:51:55 -0700 | [diff] [blame] | 243 | u16 txdata_desc_size; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 244 | } __attribute__((__aligned__(SMP_CACHE_BYTES))); |
| 245 | |
| 246 | enum vmxnet3_rx_buf_type { |
| 247 | VMXNET3_RX_BUF_NONE = 0, |
| 248 | VMXNET3_RX_BUF_SKB = 1, |
| 249 | VMXNET3_RX_BUF_PAGE = 2 |
| 250 | }; |
| 251 | |
| 252 | struct vmxnet3_rx_buf_info { |
| 253 | enum vmxnet3_rx_buf_type buf_type; |
| 254 | u16 len; |
| 255 | union { |
| 256 | struct sk_buff *skb; |
| 257 | struct page *page; |
| 258 | }; |
| 259 | dma_addr_t dma_addr; |
| 260 | }; |
| 261 | |
| 262 | struct vmxnet3_rx_ctx { |
| 263 | struct sk_buff *skb; |
| 264 | u32 sop_idx; |
| 265 | }; |
| 266 | |
| 267 | struct vmxnet3_rq_driver_stats { |
| 268 | u64 drop_total; |
| 269 | u64 drop_err; |
| 270 | u64 drop_fcs; |
| 271 | u64 rx_buf_alloc_failure; |
| 272 | }; |
| 273 | |
Shrikrishna Khare | 50a5ce3 | 2016-06-16 10:51:56 -0700 | [diff] [blame] | 274 | struct vmxnet3_rx_data_ring { |
| 275 | Vmxnet3_RxDataDesc *base; |
| 276 | dma_addr_t basePA; |
| 277 | u16 desc_size; |
| 278 | }; |
| 279 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 280 | struct vmxnet3_rx_queue { |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 281 | char name[IFNAMSIZ + 8]; /* To identify interrupt */ |
| 282 | struct vmxnet3_adapter *adapter; |
| 283 | struct napi_struct napi; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 284 | struct vmxnet3_cmd_ring rx_ring[2]; |
Shrikrishna Khare | 50a5ce3 | 2016-06-16 10:51:56 -0700 | [diff] [blame] | 285 | struct vmxnet3_rx_data_ring data_ring; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 286 | struct vmxnet3_comp_ring comp_ring; |
| 287 | struct vmxnet3_rx_ctx rx_ctx; |
| 288 | u32 qid; /* rqID in RCD for buffer from 1st ring */ |
| 289 | u32 qid2; /* rqID in RCD for buffer from 2nd ring */ |
Shrikrishna Khare | 50a5ce3 | 2016-06-16 10:51:56 -0700 | [diff] [blame] | 290 | u32 dataRingQid; /* rqID in RCD for buffer from data ring */ |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 291 | struct vmxnet3_rx_buf_info *buf_info[2]; |
Andy King | b0eb57c | 2013-08-23 09:33:49 -0700 | [diff] [blame] | 292 | dma_addr_t buf_info_pa; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 293 | struct Vmxnet3_RxQueueCtrl *shared; |
| 294 | struct vmxnet3_rq_driver_stats stats; |
| 295 | } __attribute__((__aligned__(SMP_CACHE_BYTES))); |
| 296 | |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 297 | #define VMXNET3_DEVICE_MAX_TX_QUEUES 8 |
| 298 | #define VMXNET3_DEVICE_MAX_RX_QUEUES 8 /* Keep this value as a power of 2 */ |
| 299 | |
| 300 | /* Should be less than UPT1_RSS_MAX_IND_TABLE_SIZE */ |
| 301 | #define VMXNET3_RSS_IND_TABLE_SIZE (VMXNET3_DEVICE_MAX_RX_QUEUES * 4) |
| 302 | |
| 303 | #define VMXNET3_LINUX_MAX_MSIX_VECT (VMXNET3_DEVICE_MAX_TX_QUEUES + \ |
| 304 | VMXNET3_DEVICE_MAX_RX_QUEUES + 1) |
Shreyas Bhatewara | 7e96fbf | 2011-01-14 15:00:03 +0000 | [diff] [blame] | 305 | #define VMXNET3_LINUX_MIN_MSIX_VECT 2 /* 1 for tx-rx pair and 1 for event */ |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 306 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 307 | |
| 308 | struct vmxnet3_intr { |
| 309 | enum vmxnet3_intr_mask_mode mask_mode; |
| 310 | enum vmxnet3_intr_type type; /* MSI-X, MSI, or INTx? */ |
| 311 | u8 num_intrs; /* # of intr vectors */ |
| 312 | u8 event_intr_idx; /* idx of the intr vector for event */ |
| 313 | u8 mod_levels[VMXNET3_LINUX_MAX_MSIX_VECT]; /* moderation level */ |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 314 | char event_msi_vector_name[IFNAMSIZ+11]; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 315 | #ifdef CONFIG_PCI_MSI |
| 316 | struct msix_entry msix_entries[VMXNET3_LINUX_MAX_MSIX_VECT]; |
| 317 | #endif |
| 318 | }; |
| 319 | |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 320 | /* Interrupt sharing schemes, share_intr */ |
| 321 | #define VMXNET3_INTR_BUDDYSHARE 0 /* Corresponding tx,rx queues share irq */ |
| 322 | #define VMXNET3_INTR_TXSHARE 1 /* All tx queues share one irq */ |
| 323 | #define VMXNET3_INTR_DONTSHARE 2 /* each queue has its own irq */ |
| 324 | |
| 325 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 326 | #define VMXNET3_STATE_BIT_RESETTING 0 |
| 327 | #define VMXNET3_STATE_BIT_QUIESCED 1 |
| 328 | struct vmxnet3_adapter { |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 329 | struct vmxnet3_tx_queue tx_queue[VMXNET3_DEVICE_MAX_TX_QUEUES]; |
| 330 | struct vmxnet3_rx_queue rx_queue[VMXNET3_DEVICE_MAX_RX_QUEUES]; |
Jesse Gross | 72e85c4 | 2011-06-23 13:04:39 +0000 | [diff] [blame] | 331 | unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)]; |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 332 | struct vmxnet3_intr intr; |
Shreyas Bhatewara | 83d0fef | 2011-01-14 14:59:57 +0000 | [diff] [blame] | 333 | spinlock_t cmd_lock; |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 334 | struct Vmxnet3_DriverShared *shared; |
| 335 | struct Vmxnet3_PMConf *pm_conf; |
| 336 | struct Vmxnet3_TxQueueDesc *tqd_start; /* all tx queue desc */ |
| 337 | struct Vmxnet3_RxQueueDesc *rqd_start; /* all rx queue desc */ |
| 338 | struct net_device *netdev; |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 339 | struct pci_dev *pdev; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 340 | |
Harvey Harrison | 81e8e56 | 2010-10-21 18:05:33 +0000 | [diff] [blame] | 341 | u8 __iomem *hw_addr0; /* for BAR 0 */ |
| 342 | u8 __iomem *hw_addr1; /* for BAR 1 */ |
Shreyas Bhatewara | 45dac1d | 2015-06-19 13:38:29 -0700 | [diff] [blame] | 343 | u8 version; |
| 344 | |
| 345 | bool rxcsum; |
| 346 | bool lro; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 347 | |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 348 | #ifdef VMXNET3_RSS |
| 349 | struct UPT1_RSSConf *rss_conf; |
| 350 | bool rss; |
| 351 | #endif |
| 352 | u32 num_rx_queues; |
| 353 | u32 num_tx_queues; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 354 | |
| 355 | /* rx buffer related */ |
| 356 | unsigned skb_buf_size; |
| 357 | int rx_buf_per_pkt; /* only apply to the 1st ring */ |
| 358 | dma_addr_t shared_pa; |
| 359 | dma_addr_t queue_desc_pa; |
Shrikrishna Khare | 4edef40e | 2016-06-16 10:51:57 -0700 | [diff] [blame] | 360 | dma_addr_t coal_conf_pa; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 361 | |
| 362 | /* Wake-on-LAN */ |
| 363 | u32 wol; |
| 364 | |
| 365 | /* Link speed */ |
| 366 | u32 link_speed; /* in mbps */ |
| 367 | |
| 368 | u64 tx_timeout_count; |
Neil Horman | f00e2b0 | 2014-06-13 10:03:21 -0400 | [diff] [blame] | 369 | |
| 370 | /* Ring sizes */ |
| 371 | u32 tx_ring_size; |
| 372 | u32 rx_ring_size; |
Shrikrishna Khare | 53831aa | 2015-01-06 09:20:15 -0800 | [diff] [blame] | 373 | u32 rx_ring2_size; |
Neil Horman | f00e2b0 | 2014-06-13 10:03:21 -0400 | [diff] [blame] | 374 | |
Shrikrishna Khare | 3c8b3ef | 2016-06-16 10:51:55 -0700 | [diff] [blame] | 375 | /* Size of buffer in the data ring */ |
| 376 | u16 txdata_desc_size; |
Shrikrishna Khare | 50a5ce3 | 2016-06-16 10:51:56 -0700 | [diff] [blame] | 377 | u16 rxdata_desc_size; |
| 378 | |
| 379 | bool rxdataring_enabled; |
Shrikrishna Khare | 3c8b3ef | 2016-06-16 10:51:55 -0700 | [diff] [blame] | 380 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 381 | struct work_struct work; |
| 382 | |
| 383 | unsigned long state; /* VMXNET3_STATE_BIT_xxx */ |
| 384 | |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 385 | int share_intr; |
Andy King | b0eb57c | 2013-08-23 09:33:49 -0700 | [diff] [blame] | 386 | |
Shrikrishna Khare | 4edef40e | 2016-06-16 10:51:57 -0700 | [diff] [blame] | 387 | struct Vmxnet3_CoalesceScheme *coal_conf; |
| 388 | bool default_coal_mode; |
| 389 | |
Andy King | b0eb57c | 2013-08-23 09:33:49 -0700 | [diff] [blame] | 390 | dma_addr_t adapter_pa; |
| 391 | dma_addr_t pm_conf_pa; |
| 392 | dma_addr_t rss_conf_pa; |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 393 | }; |
| 394 | |
| 395 | #define VMXNET3_WRITE_BAR0_REG(adapter, reg, val) \ |
Harvey Harrison | b8744ca | 2010-10-30 16:19:18 -0700 | [diff] [blame] | 396 | writel((val), (adapter)->hw_addr0 + (reg)) |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 397 | #define VMXNET3_READ_BAR0_REG(adapter, reg) \ |
Harvey Harrison | b8744ca | 2010-10-30 16:19:18 -0700 | [diff] [blame] | 398 | readl((adapter)->hw_addr0 + (reg)) |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 399 | |
| 400 | #define VMXNET3_WRITE_BAR1_REG(adapter, reg, val) \ |
Harvey Harrison | b8744ca | 2010-10-30 16:19:18 -0700 | [diff] [blame] | 401 | writel((val), (adapter)->hw_addr1 + (reg)) |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 402 | #define VMXNET3_READ_BAR1_REG(adapter, reg) \ |
Harvey Harrison | b8744ca | 2010-10-30 16:19:18 -0700 | [diff] [blame] | 403 | readl((adapter)->hw_addr1 + (reg)) |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 404 | |
| 405 | #define VMXNET3_WAKE_QUEUE_THRESHOLD(tq) (5) |
| 406 | #define VMXNET3_RX_ALLOC_THRESHOLD(rq, ring_idx, adapter) \ |
| 407 | ((rq)->rx_ring[ring_idx].size >> 3) |
| 408 | |
| 409 | #define VMXNET3_GET_ADDR_LO(dma) ((u32)(dma)) |
| 410 | #define VMXNET3_GET_ADDR_HI(dma) ((u32)(((u64)(dma)) >> 32)) |
| 411 | |
Shrikrishna Khare | 190af10 | 2016-06-16 10:51:53 -0700 | [diff] [blame] | 412 | #define VMXNET3_VERSION_GE_2(adapter) \ |
| 413 | (adapter->version >= VMXNET3_REV_2 + 1) |
| 414 | #define VMXNET3_VERSION_GE_3(adapter) \ |
| 415 | (adapter->version >= VMXNET3_REV_3 + 1) |
| 416 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 417 | /* must be a multiple of VMXNET3_RING_SIZE_ALIGN */ |
| 418 | #define VMXNET3_DEF_TX_RING_SIZE 512 |
| 419 | #define VMXNET3_DEF_RX_RING_SIZE 256 |
Shrikrishna Khare | 53831aa | 2015-01-06 09:20:15 -0800 | [diff] [blame] | 420 | #define VMXNET3_DEF_RX_RING2_SIZE 128 |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 421 | |
Shrikrishna Khare | 50a5ce3 | 2016-06-16 10:51:56 -0700 | [diff] [blame] | 422 | #define VMXNET3_DEF_RXDATA_DESC_SIZE 128 |
| 423 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 424 | #define VMXNET3_MAX_ETH_HDR_SIZE 22 |
| 425 | #define VMXNET3_MAX_SKB_BUF_SIZE (3*1024) |
| 426 | |
Shrikrishna Khare | 50a5ce3 | 2016-06-16 10:51:56 -0700 | [diff] [blame] | 427 | #define VMXNET3_GET_RING_IDX(adapter, rqID) \ |
| 428 | ((rqID >= adapter->num_rx_queues && \ |
| 429 | rqID < 2 * adapter->num_rx_queues) ? 1 : 0) \ |
| 430 | |
| 431 | #define VMXNET3_RX_DATA_RING(adapter, rqID) \ |
| 432 | (rqID >= 2 * adapter->num_rx_queues && \ |
| 433 | rqID < 3 * adapter->num_rx_queues) \ |
| 434 | |
Shrikrishna Khare | 4edef40e | 2016-06-16 10:51:57 -0700 | [diff] [blame] | 435 | #define VMXNET3_COAL_STATIC_DEFAULT_DEPTH 64 |
| 436 | |
| 437 | #define VMXNET3_COAL_RBC_RATE(usecs) (1000000 / usecs) |
| 438 | #define VMXNET3_COAL_RBC_USECS(rbc_rate) (1000000 / rbc_rate) |
| 439 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 440 | int |
| 441 | vmxnet3_quiesce_dev(struct vmxnet3_adapter *adapter); |
| 442 | |
| 443 | int |
| 444 | vmxnet3_activate_dev(struct vmxnet3_adapter *adapter); |
| 445 | |
| 446 | void |
| 447 | vmxnet3_force_close(struct vmxnet3_adapter *adapter); |
| 448 | |
| 449 | void |
| 450 | vmxnet3_reset_dev(struct vmxnet3_adapter *adapter); |
| 451 | |
| 452 | void |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 453 | vmxnet3_tq_destroy_all(struct vmxnet3_adapter *adapter); |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 454 | |
| 455 | void |
Shreyas Bhatewara | 09c5088 | 2010-11-19 10:55:24 +0000 | [diff] [blame] | 456 | vmxnet3_rq_destroy_all(struct vmxnet3_adapter *adapter); |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 457 | |
| 458 | int |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 459 | vmxnet3_set_features(struct net_device *netdev, netdev_features_t features); |
Michał Mirosław | a0d2730 | 2011-04-18 13:31:21 +0000 | [diff] [blame] | 460 | |
| 461 | int |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 462 | vmxnet3_create_queues(struct vmxnet3_adapter *adapter, |
Shrikrishna Khare | 3c8b3ef | 2016-06-16 10:51:55 -0700 | [diff] [blame] | 463 | u32 tx_ring_size, u32 rx_ring_size, u32 rx_ring2_size, |
Shrikrishna Khare | 50a5ce3 | 2016-06-16 10:51:56 -0700 | [diff] [blame] | 464 | u16 txdata_desc_size, u16 rxdata_desc_size); |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 465 | |
Joe Perches | d8dea1e | 2013-09-23 11:37:59 -0700 | [diff] [blame] | 466 | void vmxnet3_set_ethtool_ops(struct net_device *netdev); |
stephen hemminger | 95305f6 | 2011-06-08 14:53:57 +0000 | [diff] [blame] | 467 | |
stephen hemminger | bc1f447 | 2017-01-06 19:12:52 -0800 | [diff] [blame^] | 468 | void vmxnet3_get_stats64(struct net_device *dev, |
| 469 | struct rtnl_link_stats64 *stats); |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 470 | |
| 471 | extern char vmxnet3_driver_name[]; |
| 472 | #endif |