vmxnet3: add per-queue stats
[dpdk.git] / lib / librte_pmd_vmxnet3 / vmxnet3_ethdev.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
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  *
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
16  *       distribution.
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.
20  *
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.
32  */
33
34 #include <sys/queue.h>
35 #include <stdio.h>
36 #include <errno.h>
37 #include <stdint.h>
38 #include <string.h>
39 #include <unistd.h>
40 #include <stdarg.h>
41 #include <fcntl.h>
42 #include <inttypes.h>
43 #include <rte_byteorder.h>
44 #include <rte_common.h>
45 #include <rte_cycles.h>
46
47 #include <rte_interrupts.h>
48 #include <rte_log.h>
49 #include <rte_debug.h>
50 #include <rte_pci.h>
51 #include <rte_atomic.h>
52 #include <rte_branch_prediction.h>
53 #include <rte_memory.h>
54 #include <rte_memzone.h>
55 #include <rte_tailq.h>
56 #include <rte_eal.h>
57 #include <rte_alarm.h>
58 #include <rte_ether.h>
59 #include <rte_ethdev.h>
60 #include <rte_atomic.h>
61 #include <rte_string_fns.h>
62 #include <rte_malloc.h>
63 #include <rte_dev.h>
64
65 #include "vmxnet3/vmxnet3_defs.h"
66
67 #include "vmxnet3_ring.h"
68 #include "vmxnet3_logs.h"
69 #include "vmxnet3_ethdev.h"
70
71 #define PROCESS_SYS_EVENTS 0
72
73 static int eth_vmxnet3_dev_init(struct eth_driver *eth_drv,
74                 struct rte_eth_dev *eth_dev);
75 static int vmxnet3_dev_configure(struct rte_eth_dev *dev);
76 static int vmxnet3_dev_start(struct rte_eth_dev *dev);
77 static void vmxnet3_dev_stop(struct rte_eth_dev *dev);
78 static void vmxnet3_dev_close(struct rte_eth_dev *dev);
79 static void vmxnet3_dev_set_rxmode(struct vmxnet3_hw *hw, uint32_t feature, int set);
80 static void vmxnet3_dev_promiscuous_enable(struct rte_eth_dev *dev);
81 static void vmxnet3_dev_promiscuous_disable(struct rte_eth_dev *dev);
82 static void vmxnet3_dev_allmulticast_enable(struct rte_eth_dev *dev);
83 static void vmxnet3_dev_allmulticast_disable(struct rte_eth_dev *dev);
84 static int vmxnet3_dev_link_update(struct rte_eth_dev *dev,
85                                 int wait_to_complete);
86 static void vmxnet3_dev_stats_get(struct rte_eth_dev *dev,
87                                 struct rte_eth_stats *stats);
88 static void vmxnet3_dev_info_get(struct rte_eth_dev *dev,
89                                 struct rte_eth_dev_info *dev_info);
90 #if PROCESS_SYS_EVENTS == 1
91 static void vmxnet3_process_events(struct vmxnet3_hw *);
92 #endif
93 /*
94  * The set of PCI devices this driver supports
95  */
96 static struct rte_pci_id pci_id_vmxnet3_map[] = {
97
98 #define RTE_PCI_DEV_ID_DECL_VMXNET3(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
99 #include "rte_pci_dev_ids.h"
100
101 { .vendor_id = 0, /* sentinel */ },
102 };
103
104 static struct eth_dev_ops vmxnet3_eth_dev_ops = {
105         .dev_configure        = vmxnet3_dev_configure,
106         .dev_start            = vmxnet3_dev_start,
107         .dev_stop             = vmxnet3_dev_stop,
108         .dev_close            = vmxnet3_dev_close,
109         .promiscuous_enable   = vmxnet3_dev_promiscuous_enable,
110         .promiscuous_disable  = vmxnet3_dev_promiscuous_disable,
111         .allmulticast_enable  = vmxnet3_dev_allmulticast_enable,
112         .allmulticast_disable = vmxnet3_dev_allmulticast_disable,
113         .link_update          = vmxnet3_dev_link_update,
114         .stats_get            = vmxnet3_dev_stats_get,
115         .dev_infos_get        = vmxnet3_dev_info_get,
116         .rx_queue_setup       = vmxnet3_dev_rx_queue_setup,
117         .rx_queue_release     = vmxnet3_dev_rx_queue_release,
118         .tx_queue_setup       = vmxnet3_dev_tx_queue_setup,
119         .tx_queue_release     = vmxnet3_dev_tx_queue_release,
120 };
121
122 static const struct rte_memzone *
123 gpa_zone_reserve(struct rte_eth_dev *dev, uint32_t size,
124                 const char *post_string, int socket_id, uint16_t align)
125 {
126         char z_name[RTE_MEMZONE_NAMESIZE];
127         const struct rte_memzone *mz;
128
129         snprintf(z_name, sizeof(z_name), "%s_%d_%s",
130                                         dev->driver->pci_drv.name, dev->data->port_id, post_string);
131
132         mz = rte_memzone_lookup(z_name);
133         if (mz)
134                 return mz;
135
136         return rte_memzone_reserve_aligned(z_name, size,
137                         socket_id, 0, align);
138 }
139
140 /**
141  * Atomically reads the link status information from global
142  * structure rte_eth_dev.
143  *
144  * @param dev
145  *   - Pointer to the structure rte_eth_dev to read from.
146  *   - Pointer to the buffer to be saved with the link status.
147  *
148  * @return
149  *   - On success, zero.
150  *   - On failure, negative value.
151  */
152 static inline int
153 rte_vmxnet3_dev_atomic_write_link_status(struct rte_eth_dev *dev,
154                                 struct rte_eth_link *link)
155 {
156         struct rte_eth_link *dst = &(dev->data->dev_link);
157         struct rte_eth_link *src = link;
158
159         if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
160                                         *(uint64_t *)src) == 0)
161                 return -1;
162
163         return 0;
164 }
165
166 /*
167  * This function is based on vmxnet3_disable_intr()
168  */
169 static void
170 vmxnet3_disable_intr(struct vmxnet3_hw *hw)
171 {
172         int i;
173
174         PMD_INIT_FUNC_TRACE();
175
176         hw->shared->devRead.intrConf.intrCtrl |= VMXNET3_IC_DISABLE_ALL;
177         for (i = 0; i < VMXNET3_MAX_INTRS; i++)
178                         VMXNET3_WRITE_BAR0_REG(hw, VMXNET3_REG_IMR + i * 8, 1);
179 }
180
181 /*
182  * It returns 0 on success.
183  */
184 static int
185 eth_vmxnet3_dev_init(__attribute__((unused)) struct eth_driver *eth_drv,
186                      struct rte_eth_dev *eth_dev)
187 {
188         struct rte_pci_device *pci_dev;
189         struct vmxnet3_hw *hw =
190                 VMXNET3_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
191         uint32_t mac_hi, mac_lo, ver;
192
193         PMD_INIT_FUNC_TRACE();
194
195         eth_dev->dev_ops = &vmxnet3_eth_dev_ops;
196         eth_dev->rx_pkt_burst = &vmxnet3_recv_pkts;
197         eth_dev->tx_pkt_burst = &vmxnet3_xmit_pkts;
198         pci_dev = eth_dev->pci_dev;
199
200         /*
201          * for secondary processes, we don't initialise any further as primary
202          * has already done this work.
203          */
204         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
205                 return 0;
206
207         /* Vendor and Device ID need to be set before init of shared code */
208         hw->device_id = pci_dev->id.device_id;
209         hw->vendor_id = pci_dev->id.vendor_id;
210         hw->hw_addr0 = (void *)pci_dev->mem_resource[0].addr;
211         hw->hw_addr1 = (void *)pci_dev->mem_resource[1].addr;
212
213         hw->num_rx_queues = 1;
214         hw->num_tx_queues = 1;
215         hw->cur_mtu = ETHER_MTU;
216         hw->bufs_per_pkt = 1;
217
218         /* Check h/w version compatibility with driver. */
219         ver = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_VRRS);
220         PMD_INIT_LOG(DEBUG, "Harware version : %d", ver);
221         if (ver & 0x1)
222                 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_VRRS, 1);
223         else {
224                 PMD_INIT_LOG(ERR, "Uncompatiable h/w version, should be 0x1");
225                 return -EIO;
226         }
227
228         /* Check UPT version compatibility with driver. */
229         ver = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_UVRS);
230         PMD_INIT_LOG(DEBUG, "UPT harware version : %d", ver);
231         if (ver & 0x1)
232                 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_UVRS, 1);
233         else {
234                 PMD_INIT_LOG(ERR, "Incompatiable UPT version.");
235                 return -EIO;
236         }
237
238         /* Getting MAC Address */
239         mac_lo = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_MACL);
240         mac_hi = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_MACH);
241         memcpy(hw->perm_addr  , &mac_lo, 4);
242         memcpy(hw->perm_addr+4, &mac_hi, 2);
243
244         /* Allocate memory for storing MAC addresses */
245         eth_dev->data->mac_addrs = rte_zmalloc("vmxnet3", ETHER_ADDR_LEN *
246                                                VMXNET3_MAX_MAC_ADDRS, 0);
247         if (eth_dev->data->mac_addrs == NULL) {
248                 PMD_INIT_LOG(ERR,
249                              "Failed to allocate %d bytes needed to store MAC addresses",
250                              ETHER_ADDR_LEN * VMXNET3_MAX_MAC_ADDRS);
251                 return -ENOMEM;
252         }
253         /* Copy the permanent MAC address */
254         ether_addr_copy((struct ether_addr *) hw->perm_addr,
255                         &eth_dev->data->mac_addrs[0]);
256
257         PMD_INIT_LOG(DEBUG, "MAC Address : %02x:%02x:%02x:%02x:%02x:%02x",
258                      hw->perm_addr[0], hw->perm_addr[1], hw->perm_addr[2],
259                      hw->perm_addr[3], hw->perm_addr[4], hw->perm_addr[5]);
260
261         /* Put device in Quiesce Mode */
262         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_QUIESCE_DEV);
263
264         return 0;
265 }
266
267 static struct eth_driver rte_vmxnet3_pmd = {
268         {
269                 .name = "rte_vmxnet3_pmd",
270                 .id_table = pci_id_vmxnet3_map,
271                 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
272         },
273         .eth_dev_init = eth_vmxnet3_dev_init,
274         .dev_private_size = sizeof(struct vmxnet3_adapter),
275 };
276
277 /*
278  * Driver initialization routine.
279  * Invoked once at EAL init time.
280  * Register itself as the [Poll Mode] Driver of Virtual PCI VMXNET3 devices.
281  */
282 static int
283 rte_vmxnet3_pmd_init(const char *name __rte_unused, const char *param __rte_unused)
284 {
285         PMD_INIT_FUNC_TRACE();
286
287         rte_eth_driver_register(&rte_vmxnet3_pmd);
288         return 0;
289 }
290
291 static int
292 vmxnet3_dev_configure(struct rte_eth_dev *dev)
293 {
294         const struct rte_memzone *mz;
295         struct vmxnet3_hw *hw =
296                 VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
297         size_t size;
298
299         PMD_INIT_FUNC_TRACE();
300
301         if (dev->data->nb_rx_queues > UINT8_MAX ||
302             dev->data->nb_tx_queues > UINT8_MAX)
303                 return -EINVAL;
304
305         size = dev->data->nb_rx_queues * sizeof(struct Vmxnet3_TxQueueDesc) +
306                 dev->data->nb_tx_queues * sizeof(struct Vmxnet3_RxQueueDesc);
307
308         if (size > UINT16_MAX)
309                 return -EINVAL;
310
311         hw->num_rx_queues = (uint8_t)dev->data->nb_rx_queues;
312         hw->num_tx_queues = (uint8_t)dev->data->nb_tx_queues;
313
314         /*
315          * Allocate a memzone for Vmxnet3_DriverShared - Vmxnet3_DSDevRead
316          * on current socket
317          */
318         mz = gpa_zone_reserve(dev, sizeof(struct Vmxnet3_DriverShared),
319                               "shared", rte_socket_id(), 8);
320
321         if (mz == NULL) {
322                 PMD_INIT_LOG(ERR, "ERROR: Creating shared zone");
323                 return -ENOMEM;
324         }
325         memset(mz->addr, 0, mz->len);
326
327         hw->shared = mz->addr;
328         hw->sharedPA = mz->phys_addr;
329
330         /*
331          * Allocate a memzone for Vmxnet3_RxQueueDesc - Vmxnet3_TxQueueDesc
332          * on current socket
333          */
334         mz = gpa_zone_reserve(dev, size, "queuedesc",
335                               rte_socket_id(), VMXNET3_QUEUE_DESC_ALIGN);
336         if (mz == NULL) {
337                 PMD_INIT_LOG(ERR, "ERROR: Creating queue descriptors zone");
338                 return -ENOMEM;
339         }
340         memset(mz->addr, 0, mz->len);
341
342         hw->tqd_start = (Vmxnet3_TxQueueDesc *)mz->addr;
343         hw->rqd_start = (Vmxnet3_RxQueueDesc *)(hw->tqd_start + hw->num_tx_queues);
344
345         hw->queueDescPA = mz->phys_addr;
346         hw->queue_desc_len = (uint16_t)size;
347
348         if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_RSS) {
349
350                 /* Allocate memory structure for UPT1_RSSConf and configure */
351                 mz = gpa_zone_reserve(dev, sizeof(struct VMXNET3_RSSConf), "rss_conf",
352                                       rte_socket_id(), CACHE_LINE_SIZE);
353                 if (mz == NULL) {
354                         PMD_INIT_LOG(ERR,
355                                      "ERROR: Creating rss_conf structure zone");
356                         return -ENOMEM;
357                 }
358                 memset(mz->addr, 0, mz->len);
359
360                 hw->rss_conf = mz->addr;
361                 hw->rss_confPA = mz->phys_addr;
362         }
363
364         return 0;
365 }
366
367 static int
368 vmxnet3_setup_driver_shared(struct rte_eth_dev *dev)
369 {
370         struct rte_eth_conf port_conf = dev->data->dev_conf;
371         struct vmxnet3_hw *hw = VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
372         Vmxnet3_DriverShared *shared = hw->shared;
373         Vmxnet3_DSDevRead *devRead = &shared->devRead;
374         uint32_t *mac_ptr;
375         uint32_t val, i;
376         int ret;
377
378         shared->magic = VMXNET3_REV1_MAGIC;
379         devRead->misc.driverInfo.version = VMXNET3_DRIVER_VERSION_NUM;
380
381         /* Setting up Guest OS information */
382         devRead->misc.driverInfo.gos.gosBits   = sizeof(void *) == 4 ?
383                 VMXNET3_GOS_BITS_32 :
384                 VMXNET3_GOS_BITS_64;
385         devRead->misc.driverInfo.gos.gosType   = VMXNET3_GOS_TYPE_LINUX;
386         devRead->misc.driverInfo.vmxnet3RevSpt = 1;
387         devRead->misc.driverInfo.uptVerSpt     = 1;
388
389         devRead->misc.queueDescPA  = hw->queueDescPA;
390         devRead->misc.queueDescLen = hw->queue_desc_len;
391         devRead->misc.mtu          = hw->cur_mtu;
392         devRead->misc.numTxQueues  = hw->num_tx_queues;
393         devRead->misc.numRxQueues  = hw->num_rx_queues;
394
395         /*
396          * Set number of interrupts to 1
397          * PMD disables all the interrupts but this is MUST to activate device
398          * It needs at least one interrupt for link events to handle
399          * So we'll disable it later after device activation if needed
400          */
401         devRead->intrConf.numIntrs = 1;
402         devRead->intrConf.intrCtrl |= VMXNET3_IC_DISABLE_ALL;
403
404         for (i = 0; i < hw->num_tx_queues; i++) {
405                 Vmxnet3_TxQueueDesc *tqd = &hw->tqd_start[i];
406                 vmxnet3_tx_queue_t *txq   = dev->data->tx_queues[i];
407
408                 tqd->ctrl.txNumDeferred  = 0;
409                 tqd->ctrl.txThreshold    = 1;
410                 tqd->conf.txRingBasePA   = txq->cmd_ring.basePA;
411                 tqd->conf.compRingBasePA = txq->comp_ring.basePA;
412
413                 tqd->conf.txRingSize   = txq->cmd_ring.size;
414                 tqd->conf.compRingSize = txq->comp_ring.size;
415                 tqd->conf.intrIdx      = txq->comp_ring.intr_idx;
416                 tqd->status.stopped    = TRUE;
417                 tqd->status.error      = 0;
418                 memset(&tqd->stats, 0, sizeof(tqd->stats));
419         }
420
421         for (i = 0; i < hw->num_rx_queues; i++) {
422                 Vmxnet3_RxQueueDesc *rqd  = &hw->rqd_start[i];
423                 vmxnet3_rx_queue_t *rxq    = dev->data->rx_queues[i];
424
425                 rqd->conf.rxRingBasePA[0] = rxq->cmd_ring[0].basePA;
426                 rqd->conf.rxRingBasePA[1] = rxq->cmd_ring[1].basePA;
427                 rqd->conf.compRingBasePA  = rxq->comp_ring.basePA;
428
429                 rqd->conf.rxRingSize[0]   = rxq->cmd_ring[0].size;
430                 rqd->conf.rxRingSize[1]   = rxq->cmd_ring[1].size;
431                 rqd->conf.compRingSize    = rxq->comp_ring.size;
432                 rqd->conf.intrIdx         = rxq->comp_ring.intr_idx;
433                 rqd->status.stopped       = TRUE;
434                 rqd->status.error         = 0;
435                 memset(&rqd->stats, 0, sizeof(rqd->stats));
436         }
437
438         /* RxMode set to 0 of VMXNET3_RXM_xxx */
439         devRead->rxFilterConf.rxMode = 0;
440
441         /* Setting up feature flags */
442         if (dev->data->dev_conf.rxmode.hw_ip_checksum)
443                 devRead->misc.uptFeatures |= VMXNET3_F_RXCSUM;
444
445         if (dev->data->dev_conf.rxmode.hw_vlan_strip)
446                 devRead->misc.uptFeatures |= VMXNET3_F_RXVLAN;
447
448         if (port_conf.rxmode.mq_mode == ETH_MQ_RX_RSS) {
449                 ret = vmxnet3_rss_configure(dev);
450                 if (ret != VMXNET3_SUCCESS)
451                         return ret;
452
453                 devRead->misc.uptFeatures |= VMXNET3_F_RSS;
454                 devRead->rssConfDesc.confVer = 1;
455                 devRead->rssConfDesc.confLen = sizeof(struct VMXNET3_RSSConf);
456                 devRead->rssConfDesc.confPA  = hw->rss_confPA;
457         }
458
459         if (dev->data->dev_conf.rxmode.hw_vlan_filter) {
460                 ret = vmxnet3_vlan_configure(dev);
461                 if (ret != VMXNET3_SUCCESS)
462                         return ret;
463         }
464
465         PMD_INIT_LOG(DEBUG,
466                      "Writing MAC Address : %02x:%02x:%02x:%02x:%02x:%02x",
467                      hw->perm_addr[0], hw->perm_addr[1], hw->perm_addr[2],
468                      hw->perm_addr[3], hw->perm_addr[4], hw->perm_addr[5]);
469
470         /* Write MAC Address back to device */
471         mac_ptr = (uint32_t *)hw->perm_addr;
472         val = *mac_ptr;
473         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_MACL, val);
474
475         val = (hw->perm_addr[5] << 8) | hw->perm_addr[4];
476         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_MACH, val);
477
478         return VMXNET3_SUCCESS;
479 }
480
481 /*
482  * Configure device link speed and setup link.
483  * Must be called after eth_vmxnet3_dev_init. Other wise it might fail
484  * It returns 0 on success.
485  */
486 static int
487 vmxnet3_dev_start(struct rte_eth_dev *dev)
488 {
489         int status, ret;
490         struct vmxnet3_hw *hw = VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
491
492         PMD_INIT_FUNC_TRACE();
493
494         ret = vmxnet3_setup_driver_shared(dev);
495         if (ret != VMXNET3_SUCCESS)
496                 return ret;
497
498         /* Exchange shared data with device */
499         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_DSAL,
500                                VMXNET3_GET_ADDR_LO(hw->sharedPA));
501         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_DSAH,
502                                VMXNET3_GET_ADDR_HI(hw->sharedPA));
503
504         /* Activate device by register write */
505         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_ACTIVATE_DEV);
506         status = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_CMD);
507
508         if (status != 0) {
509                 PMD_INIT_LOG(ERR, "Device activation in %s(): UNSUCCESSFUL", __func__);
510                 return -1;
511         }
512
513         /* Disable interrupts */
514         vmxnet3_disable_intr(hw);
515
516         /*
517          * Load RX queues with blank mbufs and update next2fill index for device
518          * Update RxMode of the device
519          */
520         ret = vmxnet3_dev_rxtx_init(dev);
521         if (ret != VMXNET3_SUCCESS) {
522                 PMD_INIT_LOG(ERR, "Device receive init in %s: UNSUCCESSFUL", __func__);
523                 return ret;
524         }
525
526         /* Setting proper Rx Mode and issue Rx Mode Update command */
527         vmxnet3_dev_set_rxmode(hw, VMXNET3_RXM_UCAST | VMXNET3_RXM_ALL_MULTI, 1);
528
529         /*
530          * Don't need to handle events for now
531          */
532 #if PROCESS_SYS_EVENTS == 1
533         events = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_ECR);
534         PMD_INIT_LOG(DEBUG, "Reading events: 0x%X", events);
535         vmxnet3_process_events(hw);
536 #endif
537         return status;
538 }
539
540 /*
541  * Stop device: disable rx and tx functions to allow for reconfiguring.
542  */
543 static void
544 vmxnet3_dev_stop(struct rte_eth_dev *dev)
545 {
546         struct rte_eth_link link;
547         struct vmxnet3_hw *hw =
548                 VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
549
550         PMD_INIT_FUNC_TRACE();
551
552         if (hw->adapter_stopped == TRUE) {
553                 PMD_INIT_LOG(DEBUG, "Device already closed.");
554                 return;
555         }
556
557         /* disable interrupts */
558         vmxnet3_disable_intr(hw);
559
560         /* quiesce the device first */
561         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_QUIESCE_DEV);
562         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_DSAL, 0);
563         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_DSAH, 0);
564
565         /* reset the device */
566         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_RESET_DEV);
567         PMD_INIT_LOG(DEBUG, "Device reset.");
568         hw->adapter_stopped = FALSE;
569
570         vmxnet3_dev_clear_queues(dev);
571
572         /* Clear recorded link status */
573         memset(&link, 0, sizeof(link));
574         rte_vmxnet3_dev_atomic_write_link_status(dev, &link);
575 }
576
577 /*
578  * Reset and stop device.
579  */
580 static void
581 vmxnet3_dev_close(struct rte_eth_dev *dev)
582 {
583         struct vmxnet3_hw *hw =
584                 VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
585
586         PMD_INIT_FUNC_TRACE();
587
588         vmxnet3_dev_stop(dev);
589         hw->adapter_stopped = TRUE;
590
591 }
592
593 static void
594 vmxnet3_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
595 {
596         unsigned int i;
597         struct vmxnet3_hw *hw = VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
598
599         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_GET_STATS);
600
601         RTE_BUILD_BUG_ON(RTE_ETHDEV_QUEUE_STAT_CNTRS < VMXNET3_MAX_TX_QUEUES);
602         for (i = 0; i < hw->num_tx_queues; i++) {
603                 struct UPT1_TxStats *txStats = &hw->tqd_start[i].stats;
604
605                 stats->q_opackets[i] = txStats->ucastPktsTxOK +
606                         txStats->mcastPktsTxOK +
607                         txStats->bcastPktsTxOK;
608                 stats->q_obytes[i] = txStats->ucastBytesTxOK +
609                         txStats->mcastBytesTxOK +
610                         txStats->bcastBytesTxOK;
611
612                 stats->opackets += stats->q_opackets[i];
613                 stats->obytes += stats->q_obytes[i];
614                 stats->oerrors += txStats->pktsTxError +
615                         txStats->pktsTxDiscard;
616         }
617
618         RTE_BUILD_BUG_ON(RTE_ETHDEV_QUEUE_STAT_CNTRS < VMXNET3_MAX_RX_QUEUES);
619         for (i = 0; i < hw->num_rx_queues; i++) {
620                 struct UPT1_RxStats *rxStats = &hw->rqd_start[i].stats;
621
622                 stats->q_ipackets[i] = rxStats->ucastPktsRxOK +
623                         rxStats->mcastPktsRxOK +
624                         rxStats->bcastPktsRxOK;
625
626                 stats->q_ibytes[i] = rxStats->ucastBytesRxOK +
627                         rxStats->mcastBytesRxOK +
628                         rxStats->bcastBytesRxOK;
629
630                 stats->ipackets += stats->q_ipackets[i];
631                 stats->ibytes += stats->q_ibytes[i];
632
633                 stats->q_errors[i] = rxStats->pktsRxError;
634                 stats->ierrors += rxStats->pktsRxError;
635                 stats->imcasts += rxStats->mcastPktsRxOK;
636                 stats->rx_nombuf += rxStats->pktsRxOutOfBuf;
637         }
638 }
639
640 static void
641 vmxnet3_dev_info_get(__attribute__((unused))struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
642 {
643         dev_info->max_rx_queues = VMXNET3_MAX_RX_QUEUES;
644         dev_info->max_tx_queues = VMXNET3_MAX_TX_QUEUES;
645         dev_info->min_rx_bufsize = 1518 + RTE_PKTMBUF_HEADROOM;
646         dev_info->max_rx_pktlen = 16384; /* includes CRC, cf MAXFRS register */
647         dev_info->max_mac_addrs = VMXNET3_MAX_MAC_ADDRS;
648 }
649
650 /* return 0 means link status changed, -1 means not changed */
651 static int
652 vmxnet3_dev_link_update(struct rte_eth_dev *dev, __attribute__((unused)) int wait_to_complete)
653 {
654         struct vmxnet3_hw *hw = VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
655         struct rte_eth_link link;
656         uint32_t ret;
657
658         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_GET_LINK);
659         ret = VMXNET3_READ_BAR1_REG(hw, VMXNET3_REG_CMD);
660
661         if (!ret) {
662                 PMD_INIT_LOG(ERR, "Link Status Negative : %s()", __func__);
663                 return -1;
664         }
665
666         if (ret & 0x1) {
667                 link.link_status = 1;
668                 link.link_duplex = ETH_LINK_FULL_DUPLEX;
669                 link.link_speed = ETH_LINK_SPEED_10000;
670
671                 rte_vmxnet3_dev_atomic_write_link_status(dev, &link);
672
673                 return 0;
674         }
675
676         return -1;
677 }
678
679 /* Updating rxmode through Vmxnet3_DriverShared structure in adapter */
680 static void
681 vmxnet3_dev_set_rxmode(struct vmxnet3_hw *hw, uint32_t feature, int set) {
682
683         struct Vmxnet3_RxFilterConf *rxConf = &hw->shared->devRead.rxFilterConf;
684
685         if (set)
686                 rxConf->rxMode = rxConf->rxMode | feature;
687         else
688                 rxConf->rxMode = rxConf->rxMode & (~feature);
689
690         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_UPDATE_RX_MODE);
691 }
692
693 /* Promiscuous supported only if Vmxnet3_DriverShared is initialized in adapter */
694 static void
695 vmxnet3_dev_promiscuous_enable(struct rte_eth_dev *dev)
696 {
697         struct vmxnet3_hw *hw = VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
698
699         vmxnet3_dev_set_rxmode(hw, VMXNET3_RXM_PROMISC, 1);
700 }
701
702 /* Promiscuous supported only if Vmxnet3_DriverShared is initialized in adapter */
703 static void
704 vmxnet3_dev_promiscuous_disable(struct rte_eth_dev *dev)
705 {
706         struct vmxnet3_hw *hw = VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
707
708         vmxnet3_dev_set_rxmode(hw, VMXNET3_RXM_PROMISC, 0);
709 }
710
711 /* Allmulticast supported only if Vmxnet3_DriverShared is initialized in adapter */
712 static void
713 vmxnet3_dev_allmulticast_enable(struct rte_eth_dev *dev)
714 {
715         struct vmxnet3_hw *hw = VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
716
717         vmxnet3_dev_set_rxmode(hw, VMXNET3_RXM_ALL_MULTI, 1);
718 }
719
720 /* Allmulticast supported only if Vmxnet3_DriverShared is initialized in adapter */
721 static void
722 vmxnet3_dev_allmulticast_disable(struct rte_eth_dev *dev)
723 {
724         struct vmxnet3_hw *hw = VMXNET3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
725
726         vmxnet3_dev_set_rxmode(hw, VMXNET3_RXM_ALL_MULTI, 0);
727 }
728
729 #if PROCESS_SYS_EVENTS == 1
730 static void
731 vmxnet3_process_events(struct vmxnet3_hw *hw)
732 {
733         uint32_t events = hw->shared->ecr;
734
735         if (!events) {
736                 PMD_INIT_LOG(ERR, "No events to process in %s()", __func__);
737                 return;
738         }
739
740         /*
741          * ECR bits when written with 1b are cleared. Hence write
742          * events back to ECR so that the bits which were set will be reset.
743          */
744         VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_ECR, events);
745
746         /* Check if link state has changed */
747         if (events & VMXNET3_ECR_LINK)
748                 PMD_INIT_LOG(ERR,
749                              "Process events in %s(): VMXNET3_ECR_LINK event", __func__);
750
751         /* Check if there is an error on xmit/recv queues */
752         if (events & (VMXNET3_ECR_TQERR | VMXNET3_ECR_RQERR)) {
753                 VMXNET3_WRITE_BAR1_REG(hw, VMXNET3_REG_CMD, VMXNET3_CMD_GET_QUEUE_STATUS);
754
755                 if (hw->tqd_start->status.stopped)
756                         PMD_INIT_LOG(ERR, "tq error 0x%x",
757                                      hw->tqd_start->status.error);
758
759                 if (hw->rqd_start->status.stopped)
760                         PMD_INIT_LOG(ERR, "rq error 0x%x",
761                                      hw->rqd_start->status.error);
762
763                 /* Reset the device */
764                 /* Have to reset the device */
765         }
766
767         if (events & VMXNET3_ECR_DIC)
768                 PMD_INIT_LOG(ERR, "Device implementation change event.");
769
770         if (events & VMXNET3_ECR_DEBUG)
771                 PMD_INIT_LOG(ERR, "Debug event generated by device.");
772
773 }
774 #endif
775
776 static struct rte_driver rte_vmxnet3_driver = {
777         .type = PMD_PDEV,
778         .init = rte_vmxnet3_pmd_init,
779 };
780
781 PMD_REGISTER_DRIVER(rte_vmxnet3_driver);