4 * Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include <sys/queue.h>
43 #include <rte_byteorder.h>
44 #include <rte_common.h>
45 #include <rte_cycles.h>
47 #include <rte_interrupts.h>
49 #include <rte_debug.h>
51 #include <rte_atomic.h>
52 #include <rte_branch_prediction.h>
53 #include <rte_memory.h>
54 #include <rte_memzone.h>
56 #include <rte_alarm.h>
57 #include <rte_ether.h>
58 #include <rte_ethdev.h>
59 #include <rte_ethdev_pci.h>
60 #include <rte_string_fns.h>
61 #include <rte_malloc.h>
64 #include "base/vmxnet3_defs.h"
66 #include "vmxnet3_ring.h"
67 #include "vmxnet3_logs.h"
68 #include "vmxnet3_ethdev.h"
70 #define PROCESS_SYS_EVENTS 0
72 #define VMXNET3_TX_MAX_SEG UINT8_MAX
74 static int eth_vmxnet3_dev_init(struct rte_eth_dev *eth_dev);
75 static int eth_vmxnet3_dev_uninit(struct rte_eth_dev *eth_dev);
76 static int vmxnet3_dev_configure(struct rte_eth_dev *dev);
77 static int vmxnet3_dev_start(struct rte_eth_dev *dev);
78 static void vmxnet3_dev_stop(struct rte_eth_dev *dev);
79 static void vmxnet3_dev_close(struct rte_eth_dev *dev);
80 static void vmxnet3_dev_set_rxmode(struct vmxnet3_hw *hw, uint32_t feature, int set);
81 static void vmxnet3_dev_promiscuous_enable(struct rte_eth_dev *dev);
82 static void vmxnet3_dev_promiscuous_disable(struct rte_eth_dev *dev);
83 static void vmxnet3_dev_allmulticast_enable(struct rte_eth_dev *dev);
84 static void vmxnet3_dev_allmulticast_disable(struct rte_eth_dev *dev);
85 static int __vmxnet3_dev_link_update(struct rte_eth_dev *dev,
86 int wait_to_complete);
87 static int vmxnet3_dev_link_update(struct rte_eth_dev *dev,
88 int wait_to_complete);
89 static void vmxnet3_hw_stats_save(struct vmxnet3_hw *hw);
90 static void vmxnet3_dev_stats_get(struct rte_eth_dev *dev,
91 struct rte_eth_stats *stats);
92 static int vmxnet3_dev_xstats_get_names(struct rte_eth_dev *dev,
93 struct rte_eth_xstat_name *xstats,
95 static int vmxnet3_dev_xstats_get(struct rte_eth_dev *dev,
96 struct rte_eth_xstat *xstats, unsigned int n);
97 static void vmxnet3_dev_info_get(struct rte_eth_dev *dev,
98 struct rte_eth_dev_info *dev_info);
99 static const uint32_t *
100 vmxnet3_dev_supported_ptypes_get(struct rte_eth_dev *dev);
101 static int vmxnet3_dev_vlan_filter_set(struct rte_eth_dev *dev,
102 uint16_t vid, int on);
103 static void vmxnet3_dev_vlan_offload_set(struct rte_eth_dev *dev, int mask);
104 static void vmxnet3_mac_addr_set(struct rte_eth_dev *dev,
105 struct ether_addr *mac_addr);
106 static void vmxnet3_interrupt_handler(void *param);
109 * The set of PCI devices this driver supports
111 #define VMWARE_PCI_VENDOR_ID 0x15AD
112 #define VMWARE_DEV_ID_VMXNET3 0x07B0
113 static const struct rte_pci_id pci_id_vmxnet3_map[] = {
114 { RTE_PCI_DEVICE(VMWARE_PCI_VENDOR_ID, VMWARE_DEV_ID_VMXNET3) },
115 { .vendor_id = 0, /* sentinel */ },
118 static const struct eth_dev_ops vmxnet3_eth_dev_ops = {
119 .dev_configure = vmxnet3_dev_configure,
120 .dev_start = vmxnet3_dev_start,
121 .dev_stop = vmxnet3_dev_stop,
122 .dev_close = vmxnet3_dev_close,
123 .promiscuous_enable = vmxnet3_dev_promiscuous_enable,
124 .promiscuous_disable = vmxnet3_dev_promiscuous_disable,
125 .allmulticast_enable = vmxnet3_dev_allmulticast_enable,
126 .allmulticast_disable = vmxnet3_dev_allmulticast_disable,
127 .link_update = vmxnet3_dev_link_update,
128 .stats_get = vmxnet3_dev_stats_get,
129 .xstats_get_names = vmxnet3_dev_xstats_get_names,
130 .xstats_get = vmxnet3_dev_xstats_get,
131 .mac_addr_set = vmxnet3_mac_addr_set,
132 .dev_infos_get = vmxnet3_dev_info_get,
133 .dev_supported_ptypes_get = vmxnet3_dev_supported_ptypes_get,
134 .vlan_filter_set = vmxnet3_dev_vlan_filter_set,
135 .vlan_offload_set = vmxnet3_dev_vlan_offload_set,
136 .rx_queue_setup = vmxnet3_dev_rx_queue_setup,
137 .rx_queue_release = vmxnet3_dev_rx_queue_release,
138 .tx_queue_setup = vmxnet3_dev_tx_queue_setup,
139 .tx_queue_release = vmxnet3_dev_tx_queue_release,
142 struct vmxnet3_xstats_name_off {
143 char name[RTE_ETH_XSTATS_NAME_SIZE];
147 /* tx_qX_ is prepended to the name string here */
148 static const struct vmxnet3_xstats_name_off vmxnet3_txq_stat_strings[] = {
149 {"drop_total", offsetof(struct vmxnet3_txq_stats, drop_total)},
150 {"drop_too_many_segs", offsetof(struct vmxnet3_txq_stats, drop_too_many_segs)},
151 {"drop_tso", offsetof(struct vmxnet3_txq_stats, drop_tso)},
152 {"tx_ring_full", offsetof(struct vmxnet3_txq_stats, tx_ring_full)},
155 /* rx_qX_ is prepended to the name string here */
156 static const struct vmxnet3_xstats_name_off vmxnet3_rxq_stat_strings[] = {
157 {"drop_total", offsetof(struct vmxnet3_rxq_stats, drop_total)},
158 {"drop_err", offsetof(struct vmxnet3_rxq_stats, drop_err)},
159 {"drop_fcs", offsetof(struct vmxnet3_rxq_stats, drop_fcs)},
160 {"rx_buf_alloc_failure", offsetof(struct vmxnet3_rxq_stats, rx_buf_alloc_failure)},
163 static const struct rte_memzone *
164 gpa_zone_reserve(struct rte_eth_dev *dev, uint32_t size,
165 const char *post_string, int socket_id,
166 uint16_t align, bool reuse)
168 char z_name[RTE_MEMZONE_NAMESIZE];
169 const struct rte_memzone *mz;
171 snprintf(z_name, sizeof(z_name), "%s_%d_%s",
172 dev->device->driver->name, dev->data->port_id, post_string);
174 mz = rte_memzone_lookup(z_name);
177 rte_memzone_free(mz);
178 return rte_memzone_reserve_aligned(z_name, size, socket_id,
185 return rte_memzone_reserve_aligned(z_name, size, socket_id, 0, align);
189 * Atomically reads the link status information from global
190 * structure rte_eth_dev.
193 * - Pointer to the structure rte_eth_dev to read from.
194 * - Pointer to the buffer to be saved with the link status.
197 * - On success, zero.
198 * - On failure, negative value.
202 vmxnet3_dev_atomic_read_link_status(struct rte_eth_dev *dev,
203 struct rte_eth_link *link)
205 struct rte_eth_link *dst = link;
206 struct rte_eth_link *src = &(dev->data->dev_link);
208 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
209 *(uint64_t *)src) == 0)
216 * Atomically writes the link status information into global
217 * structure rte_eth_dev.
220 * - Pointer to the structure rte_eth_dev to write to.
221 * - Pointer to the buffer to be saved with the link status.
224 * - On success, zero.
225 * - On failure, negative value.
228 vmxnet3_dev_atomic_write_link_status(struct rte_eth_dev *dev,
229 struct rte_eth_link *link)
231 struct rte_eth_link *dst = &(dev->data->dev_link);
232 struct rte_eth_link *src = link;
234 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
235 *(uint64_t *)src) == 0)
242 * This function is based on vmxnet3_disable_intr()
245 vmxnet3_disable_intr(struct vmxnet3_hw *hw)
249 PMD_INIT_FUNC_TRACE();
251 hw->shared->devRead.intrConf.intrCtrl |= VMXNET3_IC_DISABLE_ALL;
252 for (i = 0; i < hw->num_intrs; i++)
253 VMXNET3_WRITE_BAR0_REG(hw, VMXNET3_REG_IMR + i * 8, 1);
257 vmxnet3_enable_intr(struct vmxnet3_hw *hw)
261 PMD_INIT_FUNC_TRACE();
263 hw->shared->devRead.intrConf.intrCtrl &= ~VMXNET3_IC_DISABLE_ALL;
264 for (i = 0; i < hw->num_intrs; i++)
265 VMXNET3_WRITE_BAR0_REG(hw, VMXNET3_REG_IMR + i * 8, 0);
269 * Gets tx data ring descriptor size.
272 eth_vmxnet3_txdata_get(struct vmxnet3_hw *hw)
274 uint16 txdata_desc_size;
276 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD,
277 VMXNET3_CMD_GET_TXDATA_DESC_SIZE);
278 txdata_desc_size = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_CMD);
280 return (txdata_desc_size < VMXNET3_TXDATA_DESC_MIN_SIZE ||
281 txdata_desc_size > VMXNET3_TXDATA_DESC_MAX_SIZE ||
282 txdata_desc_size & VMXNET3_TXDATA_DESC_SIZE_MASK) ?
283 sizeof(struct Vmxnet3_TxDataDesc) : txdata_desc_size;
287 * It returns 0 on success.
290 eth_vmxnet3_dev_init(struct rte_eth_dev *eth_dev)
292 struct rte_pci_device *pci_dev;
293 struct vmxnet3_hw *hw = eth_dev->data->dev_private;
294 uint32_t mac_hi, mac_lo, ver;
296 PMD_INIT_FUNC_TRACE();
298 eth_dev->dev_ops = &vmxnet3_eth_dev_ops;
299 eth_dev->rx_pkt_burst = &vmxnet3_recv_pkts;
300 eth_dev->tx_pkt_burst = &vmxnet3_xmit_pkts;
301 eth_dev->tx_pkt_prepare = vmxnet3_prep_pkts;
302 pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
305 * for secondary processes, we don't initialize any further as primary
306 * has already done this work.
308 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
311 rte_eth_copy_pci_info(eth_dev, pci_dev);
312 eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
314 /* Vendor and Device ID need to be set before init of shared code */
315 hw->device_id = pci_dev->id.device_id;
316 hw->vendor_id = pci_dev->id.vendor_id;
317 hw->hw_addr0 = (void *)pci_dev->mem_resource[0].addr;
318 hw->hw_addr1 = (void *)pci_dev->mem_resource[1].addr;
320 hw->num_rx_queues = 1;
321 hw->num_tx_queues = 1;
322 hw->bufs_per_pkt = 1;
324 /* Check h/w version compatibility with driver. */
325 ver = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_VRRS);
326 PMD_INIT_LOG(DEBUG, "Hardware version : %d", ver);
328 if (ver & (1 << VMXNET3_REV_3)) {
329 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_VRRS,
331 hw->version = VMXNET3_REV_3 + 1;
332 } else if (ver & (1 << VMXNET3_REV_2)) {
333 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_VRRS,
335 hw->version = VMXNET3_REV_2 + 1;
336 } else if (ver & (1 << VMXNET3_REV_1)) {
337 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_VRRS,
339 hw->version = VMXNET3_REV_1 + 1;
341 PMD_INIT_LOG(ERR, "Incompatible hardware version: %d", ver);
345 PMD_INIT_LOG(DEBUG, "Using device version %d\n", hw->version);
347 /* Check UPT version compatibility with driver. */
348 ver = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_UVRS);
349 PMD_INIT_LOG(DEBUG, "UPT hardware version : %d", ver);
351 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_UVRS, 1);
353 PMD_INIT_LOG(ERR, "Incompatible UPT version.");
357 /* Getting MAC Address */
358 mac_lo = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_MACL);
359 mac_hi = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_MACH);
360 memcpy(hw->perm_addr, &mac_lo, 4);
361 memcpy(hw->perm_addr + 4, &mac_hi, 2);
363 /* Allocate memory for storing MAC addresses */
364 eth_dev->data->mac_addrs = rte_zmalloc("vmxnet3", ETHER_ADDR_LEN *
365 VMXNET3_MAX_MAC_ADDRS, 0);
366 if (eth_dev->data->mac_addrs == NULL) {
368 "Failed to allocate %d bytes needed to store MAC addresses",
369 ETHER_ADDR_LEN * VMXNET3_MAX_MAC_ADDRS);
372 /* Copy the permanent MAC address */
373 ether_addr_copy((struct ether_addr *) hw->perm_addr,
374 ð_dev->data->mac_addrs[0]);
376 PMD_INIT_LOG(DEBUG, "MAC Address : %02x:%02x:%02x:%02x:%02x:%02x",
377 hw->perm_addr[0], hw->perm_addr[1], hw->perm_addr[2],
378 hw->perm_addr[3], hw->perm_addr[4], hw->perm_addr[5]);
380 /* Put device in Quiesce Mode */
381 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_QUIESCE_DEV);
383 /* allow untagged pkts */
384 VMXNET3_SET_VFTABLE_ENTRY(hw->shadow_vfta, 0);
386 hw->txdata_desc_size = VMXNET3_VERSION_GE_3(hw) ?
387 eth_vmxnet3_txdata_get(hw) : sizeof(struct Vmxnet3_TxDataDesc);
389 hw->rxdata_desc_size = VMXNET3_VERSION_GE_3(hw) ?
390 VMXNET3_DEF_RXDATA_DESC_SIZE : 0;
391 RTE_ASSERT((hw->rxdata_desc_size & ~VMXNET3_RXDATA_DESC_SIZE_MASK) ==
392 hw->rxdata_desc_size);
394 /* clear shadow stats */
395 memset(hw->saved_tx_stats, 0, sizeof(hw->saved_tx_stats));
396 memset(hw->saved_rx_stats, 0, sizeof(hw->saved_rx_stats));
402 eth_vmxnet3_dev_uninit(struct rte_eth_dev *eth_dev)
404 struct vmxnet3_hw *hw = eth_dev->data->dev_private;
406 PMD_INIT_FUNC_TRACE();
408 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
411 if (hw->adapter_stopped == 0)
412 vmxnet3_dev_close(eth_dev);
414 eth_dev->dev_ops = NULL;
415 eth_dev->rx_pkt_burst = NULL;
416 eth_dev->tx_pkt_burst = NULL;
417 eth_dev->tx_pkt_prepare = NULL;
419 rte_free(eth_dev->data->mac_addrs);
420 eth_dev->data->mac_addrs = NULL;
425 static int eth_vmxnet3_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
426 struct rte_pci_device *pci_dev)
428 return rte_eth_dev_pci_generic_probe(pci_dev,
429 sizeof(struct vmxnet3_hw), eth_vmxnet3_dev_init);
432 static int eth_vmxnet3_pci_remove(struct rte_pci_device *pci_dev)
434 return rte_eth_dev_pci_generic_remove(pci_dev, eth_vmxnet3_dev_uninit);
437 static struct rte_pci_driver rte_vmxnet3_pmd = {
438 .id_table = pci_id_vmxnet3_map,
439 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
440 .probe = eth_vmxnet3_pci_probe,
441 .remove = eth_vmxnet3_pci_remove,
445 vmxnet3_dev_configure(struct rte_eth_dev *dev)
447 const struct rte_memzone *mz;
448 struct vmxnet3_hw *hw = dev->data->dev_private;
451 PMD_INIT_FUNC_TRACE();
453 if (dev->data->nb_tx_queues > VMXNET3_MAX_TX_QUEUES ||
454 dev->data->nb_rx_queues > VMXNET3_MAX_RX_QUEUES) {
455 PMD_INIT_LOG(ERR, "ERROR: Number of queues not supported");
459 if (!rte_is_power_of_2(dev->data->nb_rx_queues)) {
460 PMD_INIT_LOG(ERR, "ERROR: Number of rx queues not power of 2");
464 size = dev->data->nb_rx_queues * sizeof(struct Vmxnet3_TxQueueDesc) +
465 dev->data->nb_tx_queues * sizeof(struct Vmxnet3_RxQueueDesc);
467 if (size > UINT16_MAX)
470 hw->num_rx_queues = (uint8_t)dev->data->nb_rx_queues;
471 hw->num_tx_queues = (uint8_t)dev->data->nb_tx_queues;
474 * Allocate a memzone for Vmxnet3_DriverShared - Vmxnet3_DSDevRead
477 mz = gpa_zone_reserve(dev, sizeof(struct Vmxnet3_DriverShared),
478 "shared", rte_socket_id(), 8, 1);
481 PMD_INIT_LOG(ERR, "ERROR: Creating shared zone");
484 memset(mz->addr, 0, mz->len);
486 hw->shared = mz->addr;
487 hw->sharedPA = mz->phys_addr;
490 * Allocate a memzone for Vmxnet3_RxQueueDesc - Vmxnet3_TxQueueDesc
493 * We cannot reuse this memzone from previous allocation as its size
494 * depends on the number of tx and rx queues, which could be different
495 * from one config to another.
497 mz = gpa_zone_reserve(dev, size, "queuedesc", rte_socket_id(),
498 VMXNET3_QUEUE_DESC_ALIGN, 0);
500 PMD_INIT_LOG(ERR, "ERROR: Creating queue descriptors zone");
503 memset(mz->addr, 0, mz->len);
505 hw->tqd_start = (Vmxnet3_TxQueueDesc *)mz->addr;
506 hw->rqd_start = (Vmxnet3_RxQueueDesc *)(hw->tqd_start + hw->num_tx_queues);
508 hw->queueDescPA = mz->phys_addr;
509 hw->queue_desc_len = (uint16_t)size;
511 if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_RSS) {
512 /* Allocate memory structure for UPT1_RSSConf and configure */
513 mz = gpa_zone_reserve(dev, sizeof(struct VMXNET3_RSSConf),
514 "rss_conf", rte_socket_id(),
515 RTE_CACHE_LINE_SIZE, 1);
518 "ERROR: Creating rss_conf structure zone");
521 memset(mz->addr, 0, mz->len);
523 hw->rss_conf = mz->addr;
524 hw->rss_confPA = mz->phys_addr;
531 vmxnet3_write_mac(struct vmxnet3_hw *hw, const uint8_t *addr)
536 "Writing MAC Address : %02x:%02x:%02x:%02x:%02x:%02x",
537 addr[0], addr[1], addr[2],
538 addr[3], addr[4], addr[5]);
540 memcpy(&val, addr, 4);
541 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_MACL, val);
543 memcpy(&val, addr + 4, 2);
544 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_MACH, val);
548 vmxnet3_dev_setup_memreg(struct rte_eth_dev *dev)
550 struct vmxnet3_hw *hw = dev->data->dev_private;
551 Vmxnet3_DriverShared *shared = hw->shared;
552 Vmxnet3_CmdInfo *cmdInfo;
553 struct rte_mempool *mp[VMXNET3_MAX_RX_QUEUES];
554 uint8_t index[VMXNET3_MAX_RX_QUEUES + VMXNET3_MAX_TX_QUEUES];
555 uint32_t num, i, j, size;
557 if (hw->memRegsPA == 0) {
558 const struct rte_memzone *mz;
560 size = sizeof(Vmxnet3_MemRegs) +
561 (VMXNET3_MAX_RX_QUEUES + VMXNET3_MAX_TX_QUEUES) *
562 sizeof(Vmxnet3_MemoryRegion);
564 mz = gpa_zone_reserve(dev, size, "memRegs", rte_socket_id(), 8,
567 PMD_INIT_LOG(ERR, "ERROR: Creating memRegs zone");
570 memset(mz->addr, 0, mz->len);
571 hw->memRegs = mz->addr;
572 hw->memRegsPA = mz->phys_addr;
575 num = hw->num_rx_queues;
577 for (i = 0; i < num; i++) {
578 vmxnet3_rx_queue_t *rxq = dev->data->rx_queues[i];
585 * The same mempool could be used by multiple queues. In such a case,
586 * remove duplicate mempool entries. Only one entry is kept with
587 * bitmask indicating queues that are using this mempool.
589 for (i = 1; i < num; i++) {
590 for (j = 0; j < i; j++) {
591 if (mp[i] == mp[j]) {
600 for (i = 0; i < num; i++) {
604 Vmxnet3_MemoryRegion *mr = &hw->memRegs->memRegs[j];
607 (uintptr_t)STAILQ_FIRST(&mp[i]->mem_list)->phys_addr;
608 mr->length = STAILQ_FIRST(&mp[i]->mem_list)->len <= INT32_MAX ?
609 STAILQ_FIRST(&mp[i]->mem_list)->len : INT32_MAX;
610 mr->txQueueBits = index[i];
611 mr->rxQueueBits = index[i];
614 "index: %u startPA: %" PRIu64 " length: %u, "
616 j, mr->startPA, mr->length, mr->rxQueueBits);
619 hw->memRegs->numRegs = j;
620 PMD_INIT_LOG(INFO, "numRegs: %u", j);
622 size = sizeof(Vmxnet3_MemRegs) +
623 (j - 1) * sizeof(Vmxnet3_MemoryRegion);
625 cmdInfo = &shared->cu.cmdInfo;
626 cmdInfo->varConf.confVer = 1;
627 cmdInfo->varConf.confLen = size;
628 cmdInfo->varConf.confPA = hw->memRegsPA;
634 vmxnet3_setup_driver_shared(struct rte_eth_dev *dev)
636 struct rte_eth_conf port_conf = dev->data->dev_conf;
637 struct vmxnet3_hw *hw = dev->data->dev_private;
638 uint32_t mtu = dev->data->mtu;
639 Vmxnet3_DriverShared *shared = hw->shared;
640 Vmxnet3_DSDevRead *devRead = &shared->devRead;
644 shared->magic = VMXNET3_REV1_MAGIC;
645 devRead->misc.driverInfo.version = VMXNET3_DRIVER_VERSION_NUM;
647 /* Setting up Guest OS information */
648 devRead->misc.driverInfo.gos.gosBits = sizeof(void *) == 4 ?
649 VMXNET3_GOS_BITS_32 : VMXNET3_GOS_BITS_64;
650 devRead->misc.driverInfo.gos.gosType = VMXNET3_GOS_TYPE_LINUX;
651 devRead->misc.driverInfo.vmxnet3RevSpt = 1;
652 devRead->misc.driverInfo.uptVerSpt = 1;
654 devRead->misc.mtu = rte_le_to_cpu_32(mtu);
655 devRead->misc.queueDescPA = hw->queueDescPA;
656 devRead->misc.queueDescLen = hw->queue_desc_len;
657 devRead->misc.numTxQueues = hw->num_tx_queues;
658 devRead->misc.numRxQueues = hw->num_rx_queues;
661 * Set number of interrupts to 1
662 * PMD by default disables all the interrupts but this is MUST
663 * to activate device. It needs at least one interrupt for
664 * link events to handle
666 hw->num_intrs = devRead->intrConf.numIntrs = 1;
667 devRead->intrConf.intrCtrl |= VMXNET3_IC_DISABLE_ALL;
669 for (i = 0; i < hw->num_tx_queues; i++) {
670 Vmxnet3_TxQueueDesc *tqd = &hw->tqd_start[i];
671 vmxnet3_tx_queue_t *txq = dev->data->tx_queues[i];
673 tqd->ctrl.txNumDeferred = 0;
674 tqd->ctrl.txThreshold = 1;
675 tqd->conf.txRingBasePA = txq->cmd_ring.basePA;
676 tqd->conf.compRingBasePA = txq->comp_ring.basePA;
677 tqd->conf.dataRingBasePA = txq->data_ring.basePA;
679 tqd->conf.txRingSize = txq->cmd_ring.size;
680 tqd->conf.compRingSize = txq->comp_ring.size;
681 tqd->conf.dataRingSize = txq->data_ring.size;
682 tqd->conf.txDataRingDescSize = txq->txdata_desc_size;
683 tqd->conf.intrIdx = txq->comp_ring.intr_idx;
684 tqd->status.stopped = TRUE;
685 tqd->status.error = 0;
686 memset(&tqd->stats, 0, sizeof(tqd->stats));
689 for (i = 0; i < hw->num_rx_queues; i++) {
690 Vmxnet3_RxQueueDesc *rqd = &hw->rqd_start[i];
691 vmxnet3_rx_queue_t *rxq = dev->data->rx_queues[i];
693 rqd->conf.rxRingBasePA[0] = rxq->cmd_ring[0].basePA;
694 rqd->conf.rxRingBasePA[1] = rxq->cmd_ring[1].basePA;
695 rqd->conf.compRingBasePA = rxq->comp_ring.basePA;
697 rqd->conf.rxRingSize[0] = rxq->cmd_ring[0].size;
698 rqd->conf.rxRingSize[1] = rxq->cmd_ring[1].size;
699 rqd->conf.compRingSize = rxq->comp_ring.size;
700 rqd->conf.intrIdx = rxq->comp_ring.intr_idx;
701 if (VMXNET3_VERSION_GE_3(hw)) {
702 rqd->conf.rxDataRingBasePA = rxq->data_ring.basePA;
703 rqd->conf.rxDataRingDescSize = rxq->data_desc_size;
705 rqd->status.stopped = TRUE;
706 rqd->status.error = 0;
707 memset(&rqd->stats, 0, sizeof(rqd->stats));
710 /* RxMode set to 0 of VMXNET3_RXM_xxx */
711 devRead->rxFilterConf.rxMode = 0;
713 /* Setting up feature flags */
714 if (dev->data->dev_conf.rxmode.hw_ip_checksum)
715 devRead->misc.uptFeatures |= VMXNET3_F_RXCSUM;
717 if (dev->data->dev_conf.rxmode.enable_lro) {
718 devRead->misc.uptFeatures |= VMXNET3_F_LRO;
719 devRead->misc.maxNumRxSG = 0;
722 if (port_conf.rxmode.mq_mode == ETH_MQ_RX_RSS) {
723 ret = vmxnet3_rss_configure(dev);
724 if (ret != VMXNET3_SUCCESS)
727 devRead->misc.uptFeatures |= VMXNET3_F_RSS;
728 devRead->rssConfDesc.confVer = 1;
729 devRead->rssConfDesc.confLen = sizeof(struct VMXNET3_RSSConf);
730 devRead->rssConfDesc.confPA = hw->rss_confPA;
733 vmxnet3_dev_vlan_offload_set(dev,
734 ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK);
736 vmxnet3_write_mac(hw, dev->data->mac_addrs->addr_bytes);
738 return VMXNET3_SUCCESS;
742 * Configure device link speed and setup link.
743 * Must be called after eth_vmxnet3_dev_init. Other wise it might fail
744 * It returns 0 on success.
747 vmxnet3_dev_start(struct rte_eth_dev *dev)
750 struct vmxnet3_hw *hw = dev->data->dev_private;
752 PMD_INIT_FUNC_TRACE();
754 /* Save stats before it is reset by CMD_ACTIVATE */
755 vmxnet3_hw_stats_save(hw);
757 ret = vmxnet3_setup_driver_shared(dev);
758 if (ret != VMXNET3_SUCCESS)
761 /* check if lsc interrupt feature is enabled */
762 if (dev->data->dev_conf.intr_conf.lsc) {
763 struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev->device);
765 /* Setup interrupt callback */
766 rte_intr_callback_register(&pci_dev->intr_handle,
767 vmxnet3_interrupt_handler, dev);
769 if (rte_intr_enable(&pci_dev->intr_handle) < 0) {
770 PMD_INIT_LOG(ERR, "interrupt enable failed");
775 /* Exchange shared data with device */
776 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_DSAL,
777 VMXNET3_GET_ADDR_LO(hw->sharedPA));
778 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_DSAH,
779 VMXNET3_GET_ADDR_HI(hw->sharedPA));
781 /* Activate device by register write */
782 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_ACTIVATE_DEV);
783 ret = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_CMD);
786 PMD_INIT_LOG(ERR, "Device activation: UNSUCCESSFUL");
790 /* Setup memory region for rx buffers */
791 ret = vmxnet3_dev_setup_memreg(dev);
793 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD,
794 VMXNET3_CMD_REGISTER_MEMREGS);
795 ret = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_CMD);
798 "Failed in setup memory region cmd\n");
801 PMD_INIT_LOG(DEBUG, "Failed to setup memory region\n");
804 /* Disable interrupts */
805 vmxnet3_disable_intr(hw);
808 * Load RX queues with blank mbufs and update next2fill index for device
809 * Update RxMode of the device
811 ret = vmxnet3_dev_rxtx_init(dev);
812 if (ret != VMXNET3_SUCCESS) {
813 PMD_INIT_LOG(ERR, "Device queue init: UNSUCCESSFUL");
817 hw->adapter_stopped = FALSE;
819 /* Setting proper Rx Mode and issue Rx Mode Update command */
820 vmxnet3_dev_set_rxmode(hw, VMXNET3_RXM_UCAST | VMXNET3_RXM_BCAST, 1);
822 if (dev->data->dev_conf.intr_conf.lsc) {
823 vmxnet3_enable_intr(hw);
826 * Update link state from device since this won't be
827 * done upon starting with lsc in use. This is done
828 * only after enabling interrupts to avoid any race
829 * where the link state could change without an
830 * interrupt being fired.
832 __vmxnet3_dev_link_update(dev, 0);
835 return VMXNET3_SUCCESS;
839 * Stop device: disable rx and tx functions to allow for reconfiguring.
842 vmxnet3_dev_stop(struct rte_eth_dev *dev)
844 struct rte_eth_link link;
845 struct vmxnet3_hw *hw = dev->data->dev_private;
847 PMD_INIT_FUNC_TRACE();
849 if (hw->adapter_stopped == 1) {
850 PMD_INIT_LOG(DEBUG, "Device already closed.");
854 /* disable interrupts */
855 vmxnet3_disable_intr(hw);
857 if (dev->data->dev_conf.intr_conf.lsc) {
858 struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev->device);
860 rte_intr_disable(&pci_dev->intr_handle);
862 rte_intr_callback_unregister(&pci_dev->intr_handle,
863 vmxnet3_interrupt_handler, dev);
866 /* quiesce the device first */
867 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_QUIESCE_DEV);
868 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_DSAL, 0);
869 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_DSAH, 0);
871 /* reset the device */
872 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_RESET_DEV);
873 PMD_INIT_LOG(DEBUG, "Device reset.");
874 hw->adapter_stopped = 0;
876 vmxnet3_dev_clear_queues(dev);
878 /* Clear recorded link status */
879 memset(&link, 0, sizeof(link));
880 vmxnet3_dev_atomic_write_link_status(dev, &link);
884 * Reset and stop device.
887 vmxnet3_dev_close(struct rte_eth_dev *dev)
889 struct vmxnet3_hw *hw = dev->data->dev_private;
891 PMD_INIT_FUNC_TRACE();
893 vmxnet3_dev_stop(dev);
894 hw->adapter_stopped = 1;
898 vmxnet3_hw_tx_stats_get(struct vmxnet3_hw *hw, unsigned int q,
899 struct UPT1_TxStats *res)
901 #define VMXNET3_UPDATE_TX_STAT(h, i, f, r) \
902 ((r)->f = (h)->tqd_start[(i)].stats.f + \
903 (h)->saved_tx_stats[(i)].f)
905 VMXNET3_UPDATE_TX_STAT(hw, q, ucastPktsTxOK, res);
906 VMXNET3_UPDATE_TX_STAT(hw, q, mcastPktsTxOK, res);
907 VMXNET3_UPDATE_TX_STAT(hw, q, bcastPktsTxOK, res);
908 VMXNET3_UPDATE_TX_STAT(hw, q, ucastBytesTxOK, res);
909 VMXNET3_UPDATE_TX_STAT(hw, q, mcastBytesTxOK, res);
910 VMXNET3_UPDATE_TX_STAT(hw, q, bcastBytesTxOK, res);
911 VMXNET3_UPDATE_TX_STAT(hw, q, pktsTxError, res);
912 VMXNET3_UPDATE_TX_STAT(hw, q, pktsTxDiscard, res);
914 #undef VMXNET3_UPDATE_TX_STAT
918 vmxnet3_hw_rx_stats_get(struct vmxnet3_hw *hw, unsigned int q,
919 struct UPT1_RxStats *res)
921 #define VMXNET3_UPDATE_RX_STAT(h, i, f, r) \
922 ((r)->f = (h)->rqd_start[(i)].stats.f + \
923 (h)->saved_rx_stats[(i)].f)
925 VMXNET3_UPDATE_RX_STAT(hw, q, ucastPktsRxOK, res);
926 VMXNET3_UPDATE_RX_STAT(hw, q, mcastPktsRxOK, res);
927 VMXNET3_UPDATE_RX_STAT(hw, q, bcastPktsRxOK, res);
928 VMXNET3_UPDATE_RX_STAT(hw, q, ucastBytesRxOK, res);
929 VMXNET3_UPDATE_RX_STAT(hw, q, mcastBytesRxOK, res);
930 VMXNET3_UPDATE_RX_STAT(hw, q, bcastBytesRxOK, res);
931 VMXNET3_UPDATE_RX_STAT(hw, q, pktsRxError, res);
932 VMXNET3_UPDATE_RX_STAT(hw, q, pktsRxOutOfBuf, res);
934 #undef VMXNET3_UPDATE_RX_STATS
938 vmxnet3_hw_stats_save(struct vmxnet3_hw *hw)
942 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_GET_STATS);
944 RTE_BUILD_BUG_ON(RTE_ETHDEV_QUEUE_STAT_CNTRS < VMXNET3_MAX_TX_QUEUES);
946 for (i = 0; i < hw->num_tx_queues; i++)
947 vmxnet3_hw_tx_stats_get(hw, i, &hw->saved_tx_stats[i]);
948 for (i = 0; i < hw->num_rx_queues; i++)
949 vmxnet3_hw_rx_stats_get(hw, i, &hw->saved_rx_stats[i]);
953 vmxnet3_dev_xstats_get_names(struct rte_eth_dev *dev,
954 struct rte_eth_xstat_name *xstats_names,
957 unsigned int i, t, count = 0;
958 unsigned int nstats =
959 dev->data->nb_tx_queues * RTE_DIM(vmxnet3_txq_stat_strings) +
960 dev->data->nb_rx_queues * RTE_DIM(vmxnet3_rxq_stat_strings);
962 if (!xstats_names || n < nstats)
965 for (i = 0; i < dev->data->nb_rx_queues; i++) {
966 if (!dev->data->rx_queues[i])
969 for (t = 0; t < RTE_DIM(vmxnet3_rxq_stat_strings); t++) {
970 snprintf(xstats_names[count].name,
971 sizeof(xstats_names[count].name),
973 vmxnet3_rxq_stat_strings[t].name);
978 for (i = 0; i < dev->data->nb_tx_queues; i++) {
979 if (!dev->data->tx_queues[i])
982 for (t = 0; t < RTE_DIM(vmxnet3_txq_stat_strings); t++) {
983 snprintf(xstats_names[count].name,
984 sizeof(xstats_names[count].name),
986 vmxnet3_txq_stat_strings[t].name);
995 vmxnet3_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
998 unsigned int i, t, count = 0;
999 unsigned int nstats =
1000 dev->data->nb_tx_queues * RTE_DIM(vmxnet3_txq_stat_strings) +
1001 dev->data->nb_rx_queues * RTE_DIM(vmxnet3_rxq_stat_strings);
1006 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1007 struct vmxnet3_rx_queue *rxq = dev->data->rx_queues[i];
1012 for (t = 0; t < RTE_DIM(vmxnet3_rxq_stat_strings); t++) {
1013 xstats[count].value = *(uint64_t *)(((char *)&rxq->stats) +
1014 vmxnet3_rxq_stat_strings[t].offset);
1015 xstats[count].id = count;
1020 for (i = 0; i < dev->data->nb_tx_queues; i++) {
1021 struct vmxnet3_tx_queue *txq = dev->data->tx_queues[i];
1026 for (t = 0; t < RTE_DIM(vmxnet3_txq_stat_strings); t++) {
1027 xstats[count].value = *(uint64_t *)(((char *)&txq->stats) +
1028 vmxnet3_txq_stat_strings[t].offset);
1029 xstats[count].id = count;
1038 vmxnet3_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
1041 struct vmxnet3_hw *hw = dev->data->dev_private;
1042 struct UPT1_TxStats txStats;
1043 struct UPT1_RxStats rxStats;
1045 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_GET_STATS);
1047 RTE_BUILD_BUG_ON(RTE_ETHDEV_QUEUE_STAT_CNTRS < VMXNET3_MAX_TX_QUEUES);
1048 for (i = 0; i < hw->num_tx_queues; i++) {
1049 vmxnet3_hw_tx_stats_get(hw, i, &txStats);
1051 stats->q_opackets[i] = txStats.ucastPktsTxOK +
1052 txStats.mcastPktsTxOK +
1053 txStats.bcastPktsTxOK;
1055 stats->q_obytes[i] = txStats.ucastBytesTxOK +
1056 txStats.mcastBytesTxOK +
1057 txStats.bcastBytesTxOK;
1059 stats->opackets += stats->q_opackets[i];
1060 stats->obytes += stats->q_obytes[i];
1061 stats->oerrors += txStats.pktsTxError + txStats.pktsTxDiscard;
1064 RTE_BUILD_BUG_ON(RTE_ETHDEV_QUEUE_STAT_CNTRS < VMXNET3_MAX_RX_QUEUES);
1065 for (i = 0; i < hw->num_rx_queues; i++) {
1066 vmxnet3_hw_rx_stats_get(hw, i, &rxStats);
1068 stats->q_ipackets[i] = rxStats.ucastPktsRxOK +
1069 rxStats.mcastPktsRxOK +
1070 rxStats.bcastPktsRxOK;
1072 stats->q_ibytes[i] = rxStats.ucastBytesRxOK +
1073 rxStats.mcastBytesRxOK +
1074 rxStats.bcastBytesRxOK;
1076 stats->ipackets += stats->q_ipackets[i];
1077 stats->ibytes += stats->q_ibytes[i];
1079 stats->q_errors[i] = rxStats.pktsRxError;
1080 stats->ierrors += rxStats.pktsRxError;
1081 stats->rx_nombuf += rxStats.pktsRxOutOfBuf;
1086 vmxnet3_dev_info_get(struct rte_eth_dev *dev,
1087 struct rte_eth_dev_info *dev_info)
1089 dev_info->pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1091 dev_info->max_rx_queues = VMXNET3_MAX_RX_QUEUES;
1092 dev_info->max_tx_queues = VMXNET3_MAX_TX_QUEUES;
1093 dev_info->min_rx_bufsize = 1518 + RTE_PKTMBUF_HEADROOM;
1094 dev_info->max_rx_pktlen = 16384; /* includes CRC, cf MAXFRS register */
1095 dev_info->speed_capa = ETH_LINK_SPEED_10G;
1096 dev_info->max_mac_addrs = VMXNET3_MAX_MAC_ADDRS;
1098 dev_info->default_txconf.txq_flags = ETH_TXQ_FLAGS_NOXSUMSCTP;
1099 dev_info->flow_type_rss_offloads = VMXNET3_RSS_OFFLOAD_ALL;
1101 dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
1102 .nb_max = VMXNET3_RX_RING_MAX_SIZE,
1103 .nb_min = VMXNET3_DEF_RX_RING_SIZE,
1107 dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
1108 .nb_max = VMXNET3_TX_RING_MAX_SIZE,
1109 .nb_min = VMXNET3_DEF_TX_RING_SIZE,
1111 .nb_seg_max = VMXNET3_TX_MAX_SEG,
1112 .nb_mtu_seg_max = VMXNET3_MAX_TXD_PER_PKT,
1115 dev_info->rx_offload_capa =
1116 DEV_RX_OFFLOAD_VLAN_STRIP |
1117 DEV_RX_OFFLOAD_UDP_CKSUM |
1118 DEV_RX_OFFLOAD_TCP_CKSUM |
1119 DEV_RX_OFFLOAD_TCP_LRO;
1121 dev_info->tx_offload_capa =
1122 DEV_TX_OFFLOAD_VLAN_INSERT |
1123 DEV_TX_OFFLOAD_TCP_CKSUM |
1124 DEV_TX_OFFLOAD_UDP_CKSUM |
1125 DEV_TX_OFFLOAD_TCP_TSO;
1128 static const uint32_t *
1129 vmxnet3_dev_supported_ptypes_get(struct rte_eth_dev *dev)
1131 static const uint32_t ptypes[] = {
1132 RTE_PTYPE_L3_IPV4_EXT,
1137 if (dev->rx_pkt_burst == vmxnet3_recv_pkts)
1143 vmxnet3_mac_addr_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr)
1145 struct vmxnet3_hw *hw = dev->data->dev_private;
1147 ether_addr_copy(mac_addr, (struct ether_addr *)(hw->perm_addr));
1148 ether_addr_copy(mac_addr, &dev->data->mac_addrs[0]);
1149 vmxnet3_write_mac(hw, mac_addr->addr_bytes);
1152 /* return 0 means link status changed, -1 means not changed */
1154 __vmxnet3_dev_link_update(struct rte_eth_dev *dev,
1155 __rte_unused int wait_to_complete)
1157 struct vmxnet3_hw *hw = dev->data->dev_private;
1158 struct rte_eth_link old = { 0 }, link;
1161 memset(&link, 0, sizeof(link));
1162 vmxnet3_dev_atomic_read_link_status(dev, &old);
1164 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_GET_LINK);
1165 ret = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_CMD);
1168 link.link_status = ETH_LINK_UP;
1169 link.link_duplex = ETH_LINK_FULL_DUPLEX;
1170 link.link_speed = ETH_SPEED_NUM_10G;
1171 link.link_autoneg = ETH_LINK_SPEED_FIXED;
1174 vmxnet3_dev_atomic_write_link_status(dev, &link);
1176 return (old.link_status == link.link_status) ? -1 : 0;
1180 vmxnet3_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
1182 /* Link status doesn't change for stopped dev */
1183 if (dev->data->dev_started == 0)
1186 return __vmxnet3_dev_link_update(dev, wait_to_complete);
1189 /* Updating rxmode through Vmxnet3_DriverShared structure in adapter */
1191 vmxnet3_dev_set_rxmode(struct vmxnet3_hw *hw, uint32_t feature, int set)
1193 struct Vmxnet3_RxFilterConf *rxConf = &hw->shared->devRead.rxFilterConf;
1196 rxConf->rxMode = rxConf->rxMode | feature;
1198 rxConf->rxMode = rxConf->rxMode & (~feature);
1200 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_UPDATE_RX_MODE);
1203 /* Promiscuous supported only if Vmxnet3_DriverShared is initialized in adapter */
1205 vmxnet3_dev_promiscuous_enable(struct rte_eth_dev *dev)
1207 struct vmxnet3_hw *hw = dev->data->dev_private;
1208 uint32_t *vf_table = hw->shared->devRead.rxFilterConf.vfTable;
1210 memset(vf_table, 0, VMXNET3_VFT_TABLE_SIZE);
1211 vmxnet3_dev_set_rxmode(hw, VMXNET3_RXM_PROMISC, 1);
1213 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD,
1214 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
1217 /* Promiscuous supported only if Vmxnet3_DriverShared is initialized in adapter */
1219 vmxnet3_dev_promiscuous_disable(struct rte_eth_dev *dev)
1221 struct vmxnet3_hw *hw = dev->data->dev_private;
1222 uint32_t *vf_table = hw->shared->devRead.rxFilterConf.vfTable;
1224 if (dev->data->dev_conf.rxmode.hw_vlan_filter)
1225 memcpy(vf_table, hw->shadow_vfta, VMXNET3_VFT_TABLE_SIZE);
1227 memset(vf_table, 0xff, VMXNET3_VFT_TABLE_SIZE);
1228 vmxnet3_dev_set_rxmode(hw, VMXNET3_RXM_PROMISC, 0);
1229 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD,
1230 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
1233 /* Allmulticast supported only if Vmxnet3_DriverShared is initialized in adapter */
1235 vmxnet3_dev_allmulticast_enable(struct rte_eth_dev *dev)
1237 struct vmxnet3_hw *hw = dev->data->dev_private;
1239 vmxnet3_dev_set_rxmode(hw, VMXNET3_RXM_ALL_MULTI, 1);
1242 /* Allmulticast supported only if Vmxnet3_DriverShared is initialized in adapter */
1244 vmxnet3_dev_allmulticast_disable(struct rte_eth_dev *dev)
1246 struct vmxnet3_hw *hw = dev->data->dev_private;
1248 vmxnet3_dev_set_rxmode(hw, VMXNET3_RXM_ALL_MULTI, 0);
1251 /* Enable/disable filter on vlan */
1253 vmxnet3_dev_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vid, int on)
1255 struct vmxnet3_hw *hw = dev->data->dev_private;
1256 struct Vmxnet3_RxFilterConf *rxConf = &hw->shared->devRead.rxFilterConf;
1257 uint32_t *vf_table = rxConf->vfTable;
1259 /* save state for restore */
1261 VMXNET3_SET_VFTABLE_ENTRY(hw->shadow_vfta, vid);
1263 VMXNET3_CLEAR_VFTABLE_ENTRY(hw->shadow_vfta, vid);
1265 /* don't change active filter if in promiscuous mode */
1266 if (rxConf->rxMode & VMXNET3_RXM_PROMISC)
1269 /* set in hardware */
1271 VMXNET3_SET_VFTABLE_ENTRY(vf_table, vid);
1273 VMXNET3_CLEAR_VFTABLE_ENTRY(vf_table, vid);
1275 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD,
1276 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
1281 vmxnet3_dev_vlan_offload_set(struct rte_eth_dev *dev, int mask)
1283 struct vmxnet3_hw *hw = dev->data->dev_private;
1284 Vmxnet3_DSDevRead *devRead = &hw->shared->devRead;
1285 uint32_t *vf_table = devRead->rxFilterConf.vfTable;
1287 if (mask & ETH_VLAN_STRIP_MASK) {
1288 if (dev->data->dev_conf.rxmode.hw_vlan_strip)
1289 devRead->misc.uptFeatures |= UPT1_F_RXVLAN;
1291 devRead->misc.uptFeatures &= ~UPT1_F_RXVLAN;
1293 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD,
1294 VMXNET3_CMD_UPDATE_FEATURE);
1297 if (mask & ETH_VLAN_FILTER_MASK) {
1298 if (dev->data->dev_conf.rxmode.hw_vlan_filter)
1299 memcpy(vf_table, hw->shadow_vfta, VMXNET3_VFT_TABLE_SIZE);
1301 memset(vf_table, 0xff, VMXNET3_VFT_TABLE_SIZE);
1303 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD,
1304 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
1309 vmxnet3_process_events(struct rte_eth_dev *dev)
1311 struct vmxnet3_hw *hw = dev->data->dev_private;
1312 uint32_t events = hw->shared->ecr;
1318 * ECR bits when written with 1b are cleared. Hence write
1319 * events back to ECR so that the bits which were set will be reset.
1321 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_ECR, events);
1323 /* Check if link state has changed */
1324 if (events & VMXNET3_ECR_LINK) {
1325 PMD_DRV_LOG(DEBUG, "Process events: VMXNET3_ECR_LINK event");
1326 if (vmxnet3_dev_link_update(dev, 0) == 0)
1327 _rte_eth_dev_callback_process(dev,
1328 RTE_ETH_EVENT_INTR_LSC,
1332 /* Check if there is an error on xmit/recv queues */
1333 if (events & (VMXNET3_ECR_TQERR | VMXNET3_ECR_RQERR)) {
1334 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD,
1335 VMXNET3_CMD_GET_QUEUE_STATUS);
1337 if (hw->tqd_start->status.stopped)
1338 PMD_DRV_LOG(ERR, "tq error 0x%x",
1339 hw->tqd_start->status.error);
1341 if (hw->rqd_start->status.stopped)
1342 PMD_DRV_LOG(ERR, "rq error 0x%x",
1343 hw->rqd_start->status.error);
1345 /* Reset the device */
1346 /* Have to reset the device */
1349 if (events & VMXNET3_ECR_DIC)
1350 PMD_DRV_LOG(DEBUG, "Device implementation change event.");
1352 if (events & VMXNET3_ECR_DEBUG)
1353 PMD_DRV_LOG(DEBUG, "Debug event generated by device.");
1357 vmxnet3_interrupt_handler(void *param)
1359 struct rte_eth_dev *dev = param;
1360 struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev->device);
1362 vmxnet3_process_events(dev);
1364 if (rte_intr_enable(&pci_dev->intr_handle) < 0)
1365 PMD_DRV_LOG(ERR, "interrupt enable failed");
1368 RTE_PMD_REGISTER_PCI(net_vmxnet3, rte_vmxnet3_pmd);
1369 RTE_PMD_REGISTER_PCI_TABLE(net_vmxnet3, pci_id_vmxnet3_map);
1370 RTE_PMD_REGISTER_KMOD_DEP(net_vmxnet3, "* igb_uio | uio_pci_generic | vfio-pci");