ethdev: fix max Rx packet length
[dpdk.git] / drivers / net / txgbe / txgbe_ethdev_vf.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2020 Beijing WangXun Technology Co., Ltd.
3  * Copyright(c) 2010-2017 Intel Corporation
4  */
5
6 #include <sys/queue.h>
7 #include <stdio.h>
8 #include <errno.h>
9 #include <stdint.h>
10 #include <string.h>
11 #include <rte_log.h>
12 #include <ethdev_pci.h>
13 #include <rte_alarm.h>
14
15 #include "txgbe_logs.h"
16 #include "base/txgbe.h"
17 #include "txgbe_ethdev.h"
18 #include "txgbe_rxtx.h"
19 #include "txgbe_regs_group.h"
20
21 static const struct reg_info txgbevf_regs_general[] = {
22         {TXGBE_VFRST, 1, 1, "TXGBE_VFRST"},
23         {TXGBE_VFSTATUS, 1, 1, "TXGBE_VFSTATUS"},
24         {TXGBE_VFMBCTL, 1, 1, "TXGBE_VFMAILBOX"},
25         {TXGBE_VFMBX, 16, 4, "TXGBE_VFMBX"},
26         {TXGBE_VFPBWRAP, 1, 1, "TXGBE_VFPBWRAP"},
27         {0, 0, 0, ""}
28 };
29
30 static const struct reg_info txgbevf_regs_interrupt[] = {
31         {0, 0, 0, ""}
32 };
33
34 static const struct reg_info txgbevf_regs_rxdma[] = {
35         {0, 0, 0, ""}
36 };
37
38 static const struct reg_info txgbevf_regs_tx[] = {
39         {0, 0, 0, ""}
40 };
41
42 /* VF registers */
43 static const struct reg_info *txgbevf_regs[] = {
44                                 txgbevf_regs_general,
45                                 txgbevf_regs_interrupt,
46                                 txgbevf_regs_rxdma,
47                                 txgbevf_regs_tx,
48                                 NULL};
49
50 static int txgbevf_dev_xstats_get(struct rte_eth_dev *dev,
51                                   struct rte_eth_xstat *xstats, unsigned int n);
52 static int txgbevf_dev_info_get(struct rte_eth_dev *dev,
53                                  struct rte_eth_dev_info *dev_info);
54 static int  txgbevf_dev_configure(struct rte_eth_dev *dev);
55 static int  txgbevf_dev_start(struct rte_eth_dev *dev);
56 static int txgbevf_dev_link_update(struct rte_eth_dev *dev,
57                                    int wait_to_complete);
58 static int txgbevf_dev_stop(struct rte_eth_dev *dev);
59 static int txgbevf_dev_close(struct rte_eth_dev *dev);
60 static void txgbevf_intr_disable(struct rte_eth_dev *dev);
61 static void txgbevf_intr_enable(struct rte_eth_dev *dev);
62 static int txgbevf_dev_stats_reset(struct rte_eth_dev *dev);
63 static int txgbevf_vlan_offload_config(struct rte_eth_dev *dev, int mask);
64 static void txgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on);
65 static void txgbevf_configure_msix(struct rte_eth_dev *dev);
66 static int txgbevf_dev_promiscuous_enable(struct rte_eth_dev *dev);
67 static int txgbevf_dev_promiscuous_disable(struct rte_eth_dev *dev);
68 static void txgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index);
69 static void txgbevf_dev_interrupt_handler(void *param);
70
71 /*
72  * The set of PCI devices this driver supports (for VF)
73  */
74 static const struct rte_pci_id pci_id_txgbevf_map[] = {
75         { RTE_PCI_DEVICE(PCI_VENDOR_ID_WANGXUN, TXGBE_DEV_ID_SP1000_VF) },
76         { RTE_PCI_DEVICE(PCI_VENDOR_ID_WANGXUN, TXGBE_DEV_ID_WX1820_VF) },
77         { .vendor_id = 0, /* sentinel */ },
78 };
79
80 static const struct rte_eth_desc_lim rx_desc_lim = {
81         .nb_max = TXGBE_RING_DESC_MAX,
82         .nb_min = TXGBE_RING_DESC_MIN,
83         .nb_align = TXGBE_RXD_ALIGN,
84 };
85
86 static const struct rte_eth_desc_lim tx_desc_lim = {
87         .nb_max = TXGBE_RING_DESC_MAX,
88         .nb_min = TXGBE_RING_DESC_MIN,
89         .nb_align = TXGBE_TXD_ALIGN,
90         .nb_seg_max = TXGBE_TX_MAX_SEG,
91         .nb_mtu_seg_max = TXGBE_TX_MAX_SEG,
92 };
93
94 static const struct eth_dev_ops txgbevf_eth_dev_ops;
95
96 static const struct rte_txgbe_xstats_name_off rte_txgbevf_stats_strings[] = {
97         {"rx_multicast_packets_0",
98                         offsetof(struct txgbevf_hw_stats, qp[0].vfmprc)},
99         {"rx_multicast_packets_1",
100                         offsetof(struct txgbevf_hw_stats, qp[1].vfmprc)},
101         {"rx_multicast_packets_2",
102                         offsetof(struct txgbevf_hw_stats, qp[2].vfmprc)},
103         {"rx_multicast_packets_3",
104                         offsetof(struct txgbevf_hw_stats, qp[3].vfmprc)},
105         {"rx_multicast_packets_4",
106                         offsetof(struct txgbevf_hw_stats, qp[4].vfmprc)},
107         {"rx_multicast_packets_5",
108                         offsetof(struct txgbevf_hw_stats, qp[5].vfmprc)},
109         {"rx_multicast_packets_6",
110                         offsetof(struct txgbevf_hw_stats, qp[6].vfmprc)},
111         {"rx_multicast_packets_7",
112                         offsetof(struct txgbevf_hw_stats, qp[7].vfmprc)}
113 };
114
115 #define TXGBEVF_NB_XSTATS (sizeof(rte_txgbevf_stats_strings) /  \
116                 sizeof(rte_txgbevf_stats_strings[0]))
117
118 /*
119  * Negotiate mailbox API version with the PF.
120  * After reset API version is always set to the basic one (txgbe_mbox_api_10).
121  * Then we try to negotiate starting with the most recent one.
122  * If all negotiation attempts fail, then we will proceed with
123  * the default one (txgbe_mbox_api_10).
124  */
125 static void
126 txgbevf_negotiate_api(struct txgbe_hw *hw)
127 {
128         int32_t i;
129
130         /* start with highest supported, proceed down */
131         static const int sup_ver[] = {
132                 txgbe_mbox_api_13,
133                 txgbe_mbox_api_12,
134                 txgbe_mbox_api_11,
135                 txgbe_mbox_api_10,
136         };
137
138         for (i = 0; i < ARRAY_SIZE(sup_ver); i++) {
139                 if (txgbevf_negotiate_api_version(hw, sup_ver[i]) == 0)
140                         break;
141         }
142 }
143
144 static void
145 generate_random_mac_addr(struct rte_ether_addr *mac_addr)
146 {
147         uint64_t random;
148
149         /* Set Organizationally Unique Identifier (OUI) prefix. */
150         mac_addr->addr_bytes[0] = 0x00;
151         mac_addr->addr_bytes[1] = 0x09;
152         mac_addr->addr_bytes[2] = 0xC0;
153         /* Force indication of locally assigned MAC address. */
154         mac_addr->addr_bytes[0] |= RTE_ETHER_LOCAL_ADMIN_ADDR;
155         /* Generate the last 3 bytes of the MAC address with a random number. */
156         random = rte_rand();
157         memcpy(&mac_addr->addr_bytes[3], &random, 3);
158 }
159
160 /*
161  * Virtual Function device init
162  */
163 static int
164 eth_txgbevf_dev_init(struct rte_eth_dev *eth_dev)
165 {
166         int err;
167         uint32_t tc, tcs;
168         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
169         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
170         struct txgbe_hw *hw = TXGBE_DEV_HW(eth_dev);
171         struct txgbe_vfta *shadow_vfta = TXGBE_DEV_VFTA(eth_dev);
172         struct txgbe_hwstrip *hwstrip = TXGBE_DEV_HWSTRIP(eth_dev);
173         struct rte_ether_addr *perm_addr =
174                         (struct rte_ether_addr *)hw->mac.perm_addr;
175
176         PMD_INIT_FUNC_TRACE();
177
178         eth_dev->dev_ops = &txgbevf_eth_dev_ops;
179         eth_dev->rx_descriptor_status = txgbe_dev_rx_descriptor_status;
180         eth_dev->tx_descriptor_status = txgbe_dev_tx_descriptor_status;
181         eth_dev->rx_pkt_burst = &txgbe_recv_pkts;
182         eth_dev->tx_pkt_burst = &txgbe_xmit_pkts;
183
184         /* for secondary processes, we don't initialise any further as primary
185          * has already done this work. Only check we don't need a different
186          * RX function
187          */
188         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
189                 struct txgbe_tx_queue *txq;
190                 uint16_t nb_tx_queues = eth_dev->data->nb_tx_queues;
191                 /* TX queue function in primary, set by last queue initialized
192                  * Tx queue may not initialized by primary process
193                  */
194                 if (eth_dev->data->tx_queues) {
195                         txq = eth_dev->data->tx_queues[nb_tx_queues - 1];
196                         txgbe_set_tx_function(eth_dev, txq);
197                 } else {
198                         /* Use default TX function if we get here */
199                         PMD_INIT_LOG(NOTICE,
200                                      "No TX queues configured yet. Using default TX function.");
201                 }
202
203                 txgbe_set_rx_function(eth_dev);
204
205                 return 0;
206         }
207
208         rte_eth_copy_pci_info(eth_dev, pci_dev);
209
210         hw->device_id = pci_dev->id.device_id;
211         hw->vendor_id = pci_dev->id.vendor_id;
212         hw->subsystem_device_id = pci_dev->id.subsystem_device_id;
213         hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
214         hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
215
216         /* initialize the vfta */
217         memset(shadow_vfta, 0, sizeof(*shadow_vfta));
218
219         /* initialize the hw strip bitmap*/
220         memset(hwstrip, 0, sizeof(*hwstrip));
221
222         /* Initialize the shared code (base driver) */
223         err = txgbe_init_shared_code(hw);
224         if (err != 0) {
225                 PMD_INIT_LOG(ERR,
226                         "Shared code init failed for txgbevf: %d", err);
227                 return -EIO;
228         }
229
230         /* init_mailbox_params */
231         hw->mbx.init_params(hw);
232
233         /* Reset the hw statistics */
234         txgbevf_dev_stats_reset(eth_dev);
235
236         /* Disable the interrupts for VF */
237         txgbevf_intr_disable(eth_dev);
238
239         hw->mac.num_rar_entries = 128; /* The MAX of the underlying PF */
240         err = hw->mac.reset_hw(hw);
241
242         /*
243          * The VF reset operation returns the TXGBE_ERR_INVALID_MAC_ADDR when
244          * the underlying PF driver has not assigned a MAC address to the VF.
245          * In this case, assign a random MAC address.
246          */
247         if (err != 0 && err != TXGBE_ERR_INVALID_MAC_ADDR) {
248                 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", err);
249                 /*
250                  * This error code will be propagated to the app by
251                  * rte_eth_dev_reset, so use a public error code rather than
252                  * the internal-only TXGBE_ERR_RESET_FAILED
253                  */
254                 return -EAGAIN;
255         }
256
257         /* negotiate mailbox API version to use with the PF. */
258         txgbevf_negotiate_api(hw);
259
260         /* Get Rx/Tx queue count via mailbox, which is ready after reset_hw */
261         txgbevf_get_queues(hw, &tcs, &tc);
262
263         /* Allocate memory for storing MAC addresses */
264         eth_dev->data->mac_addrs = rte_zmalloc("txgbevf", RTE_ETHER_ADDR_LEN *
265                                                hw->mac.num_rar_entries, 0);
266         if (eth_dev->data->mac_addrs == NULL) {
267                 PMD_INIT_LOG(ERR,
268                              "Failed to allocate %u bytes needed to store "
269                              "MAC addresses",
270                              RTE_ETHER_ADDR_LEN * hw->mac.num_rar_entries);
271                 return -ENOMEM;
272         }
273
274         /* Generate a random MAC address, if none was assigned by PF. */
275         if (rte_is_zero_ether_addr(perm_addr)) {
276                 generate_random_mac_addr(perm_addr);
277                 err = txgbe_set_rar_vf(hw, 1, perm_addr->addr_bytes, 0, 1);
278                 if (err) {
279                         rte_free(eth_dev->data->mac_addrs);
280                         eth_dev->data->mac_addrs = NULL;
281                         return err;
282                 }
283                 PMD_INIT_LOG(INFO, "\tVF MAC address not assigned by Host PF");
284                 PMD_INIT_LOG(INFO, "\tAssign randomly generated MAC address "
285                              RTE_ETHER_ADDR_PRT_FMT,
286                                  RTE_ETHER_ADDR_BYTES(perm_addr));
287         }
288
289         /* Copy the permanent MAC address */
290         rte_ether_addr_copy(perm_addr, &eth_dev->data->mac_addrs[0]);
291
292         /* reset the hardware with the new settings */
293         err = hw->mac.start_hw(hw);
294         if (err) {
295                 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", err);
296                 return -EIO;
297         }
298
299         /* enter promiscuous mode */
300         txgbevf_dev_promiscuous_enable(eth_dev);
301
302         rte_intr_callback_register(intr_handle,
303                                    txgbevf_dev_interrupt_handler, eth_dev);
304         rte_intr_enable(intr_handle);
305         txgbevf_intr_enable(eth_dev);
306
307         PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x mac.type=%s",
308                      eth_dev->data->port_id, pci_dev->id.vendor_id,
309                      pci_dev->id.device_id, "txgbe_mac_raptor_vf");
310
311         return 0;
312 }
313
314 /* Virtual Function device uninit */
315 static int
316 eth_txgbevf_dev_uninit(struct rte_eth_dev *eth_dev)
317 {
318         PMD_INIT_FUNC_TRACE();
319
320         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
321                 return 0;
322
323         txgbevf_dev_close(eth_dev);
324
325         return 0;
326 }
327
328 static int eth_txgbevf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
329         struct rte_pci_device *pci_dev)
330 {
331         return rte_eth_dev_pci_generic_probe(pci_dev,
332                 sizeof(struct txgbe_adapter), eth_txgbevf_dev_init);
333 }
334
335 static int eth_txgbevf_pci_remove(struct rte_pci_device *pci_dev)
336 {
337         return rte_eth_dev_pci_generic_remove(pci_dev, eth_txgbevf_dev_uninit);
338 }
339
340 /*
341  * virtual function driver struct
342  */
343 static struct rte_pci_driver rte_txgbevf_pmd = {
344         .id_table = pci_id_txgbevf_map,
345         .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
346         .probe = eth_txgbevf_pci_probe,
347         .remove = eth_txgbevf_pci_remove,
348 };
349
350 static int txgbevf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
351         struct rte_eth_xstat_name *xstats_names, unsigned int limit)
352 {
353         unsigned int i;
354
355         if (limit < TXGBEVF_NB_XSTATS && xstats_names != NULL)
356                 return -ENOMEM;
357
358         if (xstats_names != NULL)
359                 for (i = 0; i < TXGBEVF_NB_XSTATS; i++)
360                         snprintf(xstats_names[i].name,
361                                 sizeof(xstats_names[i].name),
362                                 "%s", rte_txgbevf_stats_strings[i].name);
363         return TXGBEVF_NB_XSTATS;
364 }
365
366 static void
367 txgbevf_update_stats(struct rte_eth_dev *dev)
368 {
369         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
370         struct txgbevf_hw_stats *hw_stats = (struct txgbevf_hw_stats *)
371                           TXGBE_DEV_STATS(dev);
372         unsigned int i;
373
374         for (i = 0; i < dev->data->nb_rx_queues; i++) {
375                 /* Good Rx packet, include VF loopback */
376                 TXGBE_UPDCNT32(TXGBE_QPRXPKT(i),
377                 hw_stats->qp[i].last_vfgprc, hw_stats->qp[i].vfgprc);
378
379                 /* Good Rx octets, include VF loopback */
380                 TXGBE_UPDCNT36(TXGBE_QPRXOCTL(i),
381                 hw_stats->qp[i].last_vfgorc, hw_stats->qp[i].vfgorc);
382
383                 /* Rx Multicst Packet */
384                 TXGBE_UPDCNT32(TXGBE_QPRXMPKT(i),
385                 hw_stats->qp[i].last_vfmprc, hw_stats->qp[i].vfmprc);
386         }
387         hw->rx_loaded = 0;
388
389         for (i = 0; i < dev->data->nb_tx_queues; i++) {
390                 /* Good Tx packet, include VF loopback */
391                 TXGBE_UPDCNT32(TXGBE_QPTXPKT(i),
392                 hw_stats->qp[i].last_vfgptc, hw_stats->qp[i].vfgptc);
393
394                 /* Good Tx octets, include VF loopback */
395                 TXGBE_UPDCNT36(TXGBE_QPTXOCTL(i),
396                 hw_stats->qp[i].last_vfgotc, hw_stats->qp[i].vfgotc);
397         }
398         hw->offset_loaded = 0;
399 }
400
401 static int
402 txgbevf_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
403                        unsigned int n)
404 {
405         struct txgbevf_hw_stats *hw_stats = (struct txgbevf_hw_stats *)
406                         TXGBE_DEV_STATS(dev);
407         unsigned int i;
408
409         if (n < TXGBEVF_NB_XSTATS)
410                 return TXGBEVF_NB_XSTATS;
411
412         txgbevf_update_stats(dev);
413
414         if (!xstats)
415                 return 0;
416
417         /* Extended stats */
418         for (i = 0; i < TXGBEVF_NB_XSTATS; i++) {
419                 xstats[i].id = i;
420                 xstats[i].value = *(uint64_t *)(((char *)hw_stats) +
421                         rte_txgbevf_stats_strings[i].offset);
422         }
423
424         return TXGBEVF_NB_XSTATS;
425 }
426
427 static int
428 txgbevf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
429 {
430         struct txgbevf_hw_stats *hw_stats = (struct txgbevf_hw_stats *)
431                           TXGBE_DEV_STATS(dev);
432         uint32_t i;
433
434         txgbevf_update_stats(dev);
435
436         if (stats == NULL)
437                 return -EINVAL;
438
439         stats->ipackets = 0;
440         stats->ibytes = 0;
441         stats->opackets = 0;
442         stats->obytes = 0;
443
444         for (i = 0; i < 8; i++) {
445                 stats->ipackets += hw_stats->qp[i].vfgprc;
446                 stats->ibytes += hw_stats->qp[i].vfgorc;
447                 stats->opackets += hw_stats->qp[i].vfgptc;
448                 stats->obytes += hw_stats->qp[i].vfgotc;
449         }
450
451         return 0;
452 }
453
454 static int
455 txgbevf_dev_stats_reset(struct rte_eth_dev *dev)
456 {
457         struct txgbevf_hw_stats *hw_stats = (struct txgbevf_hw_stats *)
458                         TXGBE_DEV_STATS(dev);
459         uint32_t i;
460
461         /* Sync HW register to the last stats */
462         txgbevf_dev_stats_get(dev, NULL);
463
464         /* reset HW current stats*/
465         for (i = 0; i < 8; i++) {
466                 hw_stats->qp[i].vfgprc = 0;
467                 hw_stats->qp[i].vfgorc = 0;
468                 hw_stats->qp[i].vfgptc = 0;
469                 hw_stats->qp[i].vfgotc = 0;
470         }
471
472         return 0;
473 }
474
475 static int
476 txgbevf_dev_info_get(struct rte_eth_dev *dev,
477                      struct rte_eth_dev_info *dev_info)
478 {
479         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
480         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
481
482         dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
483         dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
484         dev_info->min_rx_bufsize = 1024;
485         dev_info->max_rx_pktlen = TXGBE_FRAME_SIZE_MAX;
486         dev_info->max_mac_addrs = hw->mac.num_rar_entries;
487         dev_info->max_hash_mac_addrs = TXGBE_VMDQ_NUM_UC_MAC;
488         dev_info->max_vfs = pci_dev->max_vfs;
489         dev_info->max_vmdq_pools = ETH_64_POOLS;
490         dev_info->rx_queue_offload_capa = txgbe_get_rx_queue_offloads(dev);
491         dev_info->rx_offload_capa = (txgbe_get_rx_port_offloads(dev) |
492                                      dev_info->rx_queue_offload_capa);
493         dev_info->tx_queue_offload_capa = txgbe_get_tx_queue_offloads(dev);
494         dev_info->tx_offload_capa = txgbe_get_tx_port_offloads(dev);
495         dev_info->hash_key_size = TXGBE_HKEY_MAX_INDEX * sizeof(uint32_t);
496         dev_info->reta_size = ETH_RSS_RETA_SIZE_128;
497         dev_info->flow_type_rss_offloads = TXGBE_RSS_OFFLOAD_ALL;
498
499         dev_info->default_rxconf = (struct rte_eth_rxconf) {
500                 .rx_thresh = {
501                         .pthresh = TXGBE_DEFAULT_RX_PTHRESH,
502                         .hthresh = TXGBE_DEFAULT_RX_HTHRESH,
503                         .wthresh = TXGBE_DEFAULT_RX_WTHRESH,
504                 },
505                 .rx_free_thresh = TXGBE_DEFAULT_RX_FREE_THRESH,
506                 .rx_drop_en = 0,
507                 .offloads = 0,
508         };
509
510         dev_info->default_txconf = (struct rte_eth_txconf) {
511                 .tx_thresh = {
512                         .pthresh = TXGBE_DEFAULT_TX_PTHRESH,
513                         .hthresh = TXGBE_DEFAULT_TX_HTHRESH,
514                         .wthresh = TXGBE_DEFAULT_TX_WTHRESH,
515                 },
516                 .tx_free_thresh = TXGBE_DEFAULT_TX_FREE_THRESH,
517                 .offloads = 0,
518         };
519
520         dev_info->rx_desc_lim = rx_desc_lim;
521         dev_info->tx_desc_lim = tx_desc_lim;
522
523         return 0;
524 }
525
526 static int
527 txgbevf_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
528 {
529         return txgbe_dev_link_update_share(dev, wait_to_complete);
530 }
531
532 /*
533  * Virtual Function operations
534  */
535 static void
536 txgbevf_intr_disable(struct rte_eth_dev *dev)
537 {
538         struct txgbe_interrupt *intr = TXGBE_DEV_INTR(dev);
539         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
540
541         PMD_INIT_FUNC_TRACE();
542
543         /* Clear interrupt mask to stop from interrupts being generated */
544         wr32(hw, TXGBE_VFIMS, TXGBE_VFIMS_MASK);
545
546         txgbe_flush(hw);
547
548         /* Clear mask value. */
549         intr->mask_misc = TXGBE_VFIMS_MASK;
550 }
551
552 static void
553 txgbevf_intr_enable(struct rte_eth_dev *dev)
554 {
555         struct txgbe_interrupt *intr = TXGBE_DEV_INTR(dev);
556         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
557
558         PMD_INIT_FUNC_TRACE();
559
560         /* VF enable interrupt autoclean */
561         wr32(hw, TXGBE_VFIMC, TXGBE_VFIMC_MASK);
562
563         txgbe_flush(hw);
564
565         intr->mask_misc = 0;
566 }
567
568 static int
569 txgbevf_dev_configure(struct rte_eth_dev *dev)
570 {
571         struct rte_eth_conf *conf = &dev->data->dev_conf;
572         struct txgbe_adapter *adapter = TXGBE_DEV_ADAPTER(dev);
573
574         PMD_INIT_LOG(DEBUG, "Configured Virtual Function port id: %d",
575                      dev->data->port_id);
576
577         if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG)
578                 dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
579
580         /*
581          * VF has no ability to enable/disable HW CRC
582          * Keep the persistent behavior the same as Host PF
583          */
584 #ifndef RTE_LIBRTE_TXGBE_PF_DISABLE_STRIP_CRC
585         if (conf->rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC) {
586                 PMD_INIT_LOG(NOTICE, "VF can't disable HW CRC Strip");
587                 conf->rxmode.offloads &= ~DEV_RX_OFFLOAD_KEEP_CRC;
588         }
589 #else
590         if (!(conf->rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC)) {
591                 PMD_INIT_LOG(NOTICE, "VF can't enable HW CRC Strip");
592                 conf->rxmode.offloads |= DEV_RX_OFFLOAD_KEEP_CRC;
593         }
594 #endif
595
596         /*
597          * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
598          * allocation or vector Rx preconditions we will reset it.
599          */
600         adapter->rx_bulk_alloc_allowed = true;
601
602         return 0;
603 }
604
605 static int
606 txgbevf_dev_start(struct rte_eth_dev *dev)
607 {
608         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
609         uint32_t intr_vector = 0;
610         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
611         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
612
613         int err, mask = 0;
614
615         PMD_INIT_FUNC_TRACE();
616
617         /* Stop the link setup handler before resetting the HW. */
618         rte_eal_alarm_cancel(txgbe_dev_setup_link_alarm_handler, dev);
619
620         err = hw->mac.reset_hw(hw);
621         if (err) {
622                 PMD_INIT_LOG(ERR, "Unable to reset vf hardware (%d)", err);
623                 return err;
624         }
625         hw->mac.get_link_status = true;
626         hw->dev_start = true;
627
628         /* negotiate mailbox API version to use with the PF. */
629         txgbevf_negotiate_api(hw);
630
631         txgbevf_dev_tx_init(dev);
632
633         /* This can fail when allocating mbufs for descriptor rings */
634         err = txgbevf_dev_rx_init(dev);
635
636         /**
637          * In this case, reuses the MAC address assigned by VF
638          * initialization.
639          */
640         if (err != 0 && err != TXGBE_ERR_INVALID_MAC_ADDR) {
641                 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware (%d)", err);
642                 txgbe_dev_clear_queues(dev);
643                 return err;
644         }
645
646         /* Set vfta */
647         txgbevf_set_vfta_all(dev, 1);
648
649         /* Set HW strip */
650         mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
651                 ETH_VLAN_EXTEND_MASK;
652         err = txgbevf_vlan_offload_config(dev, mask);
653         if (err) {
654                 PMD_INIT_LOG(ERR, "Unable to set VLAN offload (%d)", err);
655                 txgbe_dev_clear_queues(dev);
656                 return err;
657         }
658
659         txgbevf_dev_rxtx_start(dev);
660
661         /* check and configure queue intr-vector mapping */
662         if (rte_intr_cap_multiple(intr_handle) &&
663             dev->data->dev_conf.intr_conf.rxq) {
664                 /* According to datasheet, only vector 0/1/2 can be used,
665                  * now only one vector is used for Rx queue
666                  */
667                 intr_vector = 1;
668                 if (rte_intr_efd_enable(intr_handle, intr_vector))
669                         return -1;
670         }
671
672         if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
673                 intr_handle->intr_vec =
674                         rte_zmalloc("intr_vec",
675                                     dev->data->nb_rx_queues * sizeof(int), 0);
676                 if (intr_handle->intr_vec == NULL) {
677                         PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
678                                      " intr_vec", dev->data->nb_rx_queues);
679                         return -ENOMEM;
680                 }
681         }
682         txgbevf_configure_msix(dev);
683
684         /* When a VF port is bound to VFIO-PCI, only miscellaneous interrupt
685          * is mapped to VFIO vector 0 in eth_txgbevf_dev_init( ).
686          * If previous VFIO interrupt mapping setting in eth_txgbevf_dev_init( )
687          * is not cleared, it will fail when following rte_intr_enable( ) tries
688          * to map Rx queue interrupt to other VFIO vectors.
689          * So clear uio/vfio intr/evevnfd first to avoid failure.
690          */
691         rte_intr_disable(intr_handle);
692
693         rte_intr_enable(intr_handle);
694
695         /* Re-enable interrupt for VF */
696         txgbevf_intr_enable(dev);
697
698         /*
699          * Update link status right before return, because it may
700          * start link configuration process in a separate thread.
701          */
702         txgbevf_dev_link_update(dev, 0);
703
704         hw->adapter_stopped = false;
705
706         return 0;
707 }
708
709 static int
710 txgbevf_dev_stop(struct rte_eth_dev *dev)
711 {
712         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
713         struct txgbe_adapter *adapter = TXGBE_DEV_ADAPTER(dev);
714         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
715         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
716
717         if (hw->adapter_stopped)
718                 return 0;
719
720         PMD_INIT_FUNC_TRACE();
721
722         rte_eal_alarm_cancel(txgbe_dev_setup_link_alarm_handler, dev);
723
724         txgbevf_intr_disable(dev);
725
726         hw->adapter_stopped = 1;
727         hw->mac.stop_hw(hw);
728
729         /*
730          * Clear what we set, but we still keep shadow_vfta to
731          * restore after device starts
732          */
733         txgbevf_set_vfta_all(dev, 0);
734
735         /* Clear stored conf */
736         dev->data->scattered_rx = 0;
737
738         txgbe_dev_clear_queues(dev);
739
740         /* Clean datapath event and queue/vec mapping */
741         rte_intr_efd_disable(intr_handle);
742         if (intr_handle->intr_vec != NULL) {
743                 rte_free(intr_handle->intr_vec);
744                 intr_handle->intr_vec = NULL;
745         }
746
747         adapter->rss_reta_updated = 0;
748         hw->dev_start = false;
749
750         return 0;
751 }
752
753 static int
754 txgbevf_dev_close(struct rte_eth_dev *dev)
755 {
756         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
757         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
758         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
759         int ret;
760
761         PMD_INIT_FUNC_TRACE();
762         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
763                 return 0;
764
765         hw->mac.reset_hw(hw);
766
767         ret = txgbevf_dev_stop(dev);
768
769         txgbe_dev_free_queues(dev);
770
771         /**
772          * Remove the VF MAC address ro ensure
773          * that the VF traffic goes to the PF
774          * after stop, close and detach of the VF
775          **/
776         txgbevf_remove_mac_addr(dev, 0);
777
778         dev->rx_pkt_burst = NULL;
779         dev->tx_pkt_burst = NULL;
780
781         /* Disable the interrupts for VF */
782         txgbevf_intr_disable(dev);
783
784         rte_free(dev->data->mac_addrs);
785         dev->data->mac_addrs = NULL;
786
787         rte_intr_disable(intr_handle);
788         rte_intr_callback_unregister(intr_handle,
789                                      txgbevf_dev_interrupt_handler, dev);
790
791         return ret;
792 }
793
794 /*
795  * Reset VF device
796  */
797 static int
798 txgbevf_dev_reset(struct rte_eth_dev *dev)
799 {
800         int ret;
801
802         ret = eth_txgbevf_dev_uninit(dev);
803         if (ret)
804                 return ret;
805
806         ret = eth_txgbevf_dev_init(dev);
807
808         return ret;
809 }
810
811 static void txgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on)
812 {
813         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
814         struct txgbe_vfta *shadow_vfta = TXGBE_DEV_VFTA(dev);
815         int i = 0, j = 0, vfta = 0, mask = 1;
816
817         for (i = 0; i < TXGBE_VFTA_SIZE; i++) {
818                 vfta = shadow_vfta->vfta[i];
819                 if (vfta) {
820                         mask = 1;
821                         for (j = 0; j < 32; j++) {
822                                 if (vfta & mask)
823                                         hw->mac.set_vfta(hw, (i << 5) + j, 0,
824                                                        on, false);
825                                 mask <<= 1;
826                         }
827                 }
828         }
829 }
830
831 static int
832 txgbevf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
833 {
834         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
835         struct txgbe_vfta *shadow_vfta = TXGBE_DEV_VFTA(dev);
836         uint32_t vid_idx = 0;
837         uint32_t vid_bit = 0;
838         int ret = 0;
839
840         PMD_INIT_FUNC_TRACE();
841
842         /* vind is not used in VF driver, set to 0, check txgbe_set_vfta_vf */
843         ret = hw->mac.set_vfta(hw, vlan_id, 0, !!on, false);
844         if (ret) {
845                 PMD_INIT_LOG(ERR, "Unable to set VF vlan");
846                 return ret;
847         }
848         vid_idx = (uint32_t)((vlan_id >> 5) & 0x7F);
849         vid_bit = (uint32_t)(1 << (vlan_id & 0x1F));
850
851         /* Save what we set and restore it after device reset */
852         if (on)
853                 shadow_vfta->vfta[vid_idx] |= vid_bit;
854         else
855                 shadow_vfta->vfta[vid_idx] &= ~vid_bit;
856
857         return 0;
858 }
859
860 static void
861 txgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
862 {
863         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
864         uint32_t ctrl;
865
866         PMD_INIT_FUNC_TRACE();
867
868         if (queue >= hw->mac.max_rx_queues)
869                 return;
870
871         ctrl = rd32(hw, TXGBE_RXCFG(queue));
872         txgbe_dev_save_rx_queue(hw, queue);
873         if (on)
874                 ctrl |= TXGBE_RXCFG_VLAN;
875         else
876                 ctrl &= ~TXGBE_RXCFG_VLAN;
877         wr32(hw, TXGBE_RXCFG(queue), 0);
878         msec_delay(100);
879         txgbe_dev_store_rx_queue(hw, queue);
880         wr32m(hw, TXGBE_RXCFG(queue),
881                 TXGBE_RXCFG_VLAN | TXGBE_RXCFG_ENA, ctrl);
882
883         txgbe_vlan_hw_strip_bitmap_set(dev, queue, on);
884 }
885
886 static int
887 txgbevf_vlan_offload_config(struct rte_eth_dev *dev, int mask)
888 {
889         struct txgbe_rx_queue *rxq;
890         uint16_t i;
891         int on = 0;
892
893         /* VF function only support hw strip feature, others are not support */
894         if (mask & ETH_VLAN_STRIP_MASK) {
895                 for (i = 0; i < dev->data->nb_rx_queues; i++) {
896                         rxq = dev->data->rx_queues[i];
897                         on = !!(rxq->offloads & DEV_RX_OFFLOAD_VLAN_STRIP);
898                         txgbevf_vlan_strip_queue_set(dev, i, on);
899                 }
900         }
901
902         return 0;
903 }
904
905 static int
906 txgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
907 {
908         txgbe_config_vlan_strip_on_all_queues(dev, mask);
909
910         txgbevf_vlan_offload_config(dev, mask);
911
912         return 0;
913 }
914
915 static int
916 txgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
917 {
918         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
919         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
920         struct txgbe_interrupt *intr = TXGBE_DEV_INTR(dev);
921         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
922         uint32_t vec = TXGBE_MISC_VEC_ID;
923
924         if (rte_intr_allow_others(intr_handle))
925                 vec = TXGBE_RX_VEC_START;
926         intr->mask_misc &= ~(1 << vec);
927         RTE_SET_USED(queue_id);
928         wr32(hw, TXGBE_VFIMC, ~intr->mask_misc);
929
930         rte_intr_enable(intr_handle);
931
932         return 0;
933 }
934
935 static int
936 txgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
937 {
938         struct txgbe_interrupt *intr = TXGBE_DEV_INTR(dev);
939         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
940         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
941         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
942         uint32_t vec = TXGBE_MISC_VEC_ID;
943
944         if (rte_intr_allow_others(intr_handle))
945                 vec = TXGBE_RX_VEC_START;
946         intr->mask_misc |= (1 << vec);
947         RTE_SET_USED(queue_id);
948         wr32(hw, TXGBE_VFIMS, intr->mask_misc);
949
950         return 0;
951 }
952
953 static void
954 txgbevf_set_ivar_map(struct txgbe_hw *hw, int8_t direction,
955                      uint8_t queue, uint8_t msix_vector)
956 {
957         uint32_t tmp, idx;
958
959         if (direction == -1) {
960                 /* other causes */
961                 msix_vector |= TXGBE_VFIVAR_VLD;
962                 tmp = rd32(hw, TXGBE_VFIVARMISC);
963                 tmp &= ~0xFF;
964                 tmp |= msix_vector;
965                 wr32(hw, TXGBE_VFIVARMISC, tmp);
966         } else {
967                 /* rx or tx cause */
968                 /* Workround for ICR lost */
969                 idx = ((16 * (queue & 1)) + (8 * direction));
970                 tmp = rd32(hw, TXGBE_VFIVAR(queue >> 1));
971                 tmp &= ~(0xFF << idx);
972                 tmp |= (msix_vector << idx);
973                 wr32(hw, TXGBE_VFIVAR(queue >> 1), tmp);
974         }
975 }
976
977 static void
978 txgbevf_configure_msix(struct rte_eth_dev *dev)
979 {
980         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
981         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
982         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
983         uint32_t q_idx;
984         uint32_t vector_idx = TXGBE_MISC_VEC_ID;
985         uint32_t base = TXGBE_MISC_VEC_ID;
986
987         /* Configure VF other cause ivar */
988         txgbevf_set_ivar_map(hw, -1, 1, vector_idx);
989
990         /* won't configure msix register if no mapping is done
991          * between intr vector and event fd.
992          */
993         if (!rte_intr_dp_is_en(intr_handle))
994                 return;
995
996         if (rte_intr_allow_others(intr_handle)) {
997                 base = TXGBE_RX_VEC_START;
998                 vector_idx = TXGBE_RX_VEC_START;
999         }
1000
1001         /* Configure all RX queues of VF */
1002         for (q_idx = 0; q_idx < dev->data->nb_rx_queues; q_idx++) {
1003                 /* Force all queue use vector 0,
1004                  * as TXGBE_VF_MAXMSIVECOTR = 1
1005                  */
1006                 txgbevf_set_ivar_map(hw, 0, q_idx, vector_idx);
1007                 intr_handle->intr_vec[q_idx] = vector_idx;
1008                 if (vector_idx < base + intr_handle->nb_efd - 1)
1009                         vector_idx++;
1010         }
1011
1012         /* As RX queue setting above show, all queues use the vector 0.
1013          * Set only the ITR value of TXGBE_MISC_VEC_ID.
1014          */
1015         wr32(hw, TXGBE_ITR(TXGBE_MISC_VEC_ID),
1016                 TXGBE_ITR_IVAL(TXGBE_QUEUE_ITR_INTERVAL_DEFAULT)
1017                 | TXGBE_ITR_WRDSA);
1018 }
1019
1020 static int
1021 txgbevf_add_mac_addr(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
1022                      __rte_unused uint32_t index,
1023                      __rte_unused uint32_t pool)
1024 {
1025         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
1026         int err;
1027
1028         /*
1029          * On a VF, adding again the same MAC addr is not an idempotent
1030          * operation. Trap this case to avoid exhausting the [very limited]
1031          * set of PF resources used to store VF MAC addresses.
1032          */
1033         if (memcmp(hw->mac.perm_addr, mac_addr,
1034                         sizeof(struct rte_ether_addr)) == 0)
1035                 return -1;
1036         err = txgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
1037         if (err != 0)
1038                 PMD_DRV_LOG(ERR, "Unable to add MAC address "
1039                             RTE_ETHER_ADDR_PRT_FMT " - err=%d",
1040                             RTE_ETHER_ADDR_BYTES(mac_addr), err);
1041         return err;
1042 }
1043
1044 static void
1045 txgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index)
1046 {
1047         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
1048         struct rte_ether_addr *perm_addr =
1049                         (struct rte_ether_addr *)hw->mac.perm_addr;
1050         struct rte_ether_addr *mac_addr;
1051         uint32_t i;
1052         int err;
1053
1054         /*
1055          * The TXGBE_VF_SET_MACVLAN command of the txgbe-pf driver does
1056          * not support the deletion of a given MAC address.
1057          * Instead, it imposes to delete all MAC addresses, then to add again
1058          * all MAC addresses with the exception of the one to be deleted.
1059          */
1060         (void)txgbevf_set_uc_addr_vf(hw, 0, NULL);
1061
1062         /*
1063          * Add again all MAC addresses, with the exception of the deleted one
1064          * and of the permanent MAC address.
1065          */
1066         for (i = 0, mac_addr = dev->data->mac_addrs;
1067              i < hw->mac.num_rar_entries; i++, mac_addr++) {
1068                 /* Skip the deleted MAC address */
1069                 if (i == index)
1070                         continue;
1071                 /* Skip NULL MAC addresses */
1072                 if (rte_is_zero_ether_addr(mac_addr))
1073                         continue;
1074                 /* Skip the permanent MAC address */
1075                 if (memcmp(perm_addr, mac_addr,
1076                                 sizeof(struct rte_ether_addr)) == 0)
1077                         continue;
1078                 err = txgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
1079                 if (err != 0)
1080                         PMD_DRV_LOG(ERR,
1081                                     "Adding again MAC address "
1082                                     RTE_ETHER_ADDR_PRT_FMT " failed "
1083                                     "err=%d",
1084                                     RTE_ETHER_ADDR_BYTES(mac_addr), err);
1085         }
1086 }
1087
1088 static int
1089 txgbevf_set_default_mac_addr(struct rte_eth_dev *dev,
1090                 struct rte_ether_addr *addr)
1091 {
1092         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
1093
1094         hw->mac.set_rar(hw, 0, (void *)addr, 0, 0);
1095
1096         return 0;
1097 }
1098
1099 static int
1100 txgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
1101 {
1102         struct txgbe_hw *hw;
1103         uint32_t max_frame = mtu + RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN;
1104         struct rte_eth_dev_data *dev_data = dev->data;
1105
1106         hw = TXGBE_DEV_HW(dev);
1107
1108         if (mtu < RTE_ETHER_MIN_MTU ||
1109                         max_frame > RTE_ETHER_MAX_JUMBO_FRAME_LEN)
1110                 return -EINVAL;
1111
1112         /* If device is started, refuse mtu that requires the support of
1113          * scattered packets when this feature has not been enabled before.
1114          */
1115         if (dev_data->dev_started && !dev_data->scattered_rx &&
1116             (max_frame + 2 * TXGBE_VLAN_TAG_SIZE >
1117              dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM)) {
1118                 PMD_INIT_LOG(ERR, "Stop port first.");
1119                 return -EINVAL;
1120         }
1121
1122         /*
1123          * When supported by the underlying PF driver, use the TXGBE_VF_SET_MTU
1124          * request of the version 2.0 of the mailbox API.
1125          * For now, use the TXGBE_VF_SET_LPE request of the version 1.0
1126          * of the mailbox API.
1127          */
1128         if (txgbevf_rlpml_set_vf(hw, max_frame))
1129                 return -EINVAL;
1130
1131         return 0;
1132 }
1133
1134 static int
1135 txgbevf_get_reg_length(struct rte_eth_dev *dev __rte_unused)
1136 {
1137         int count = 0;
1138         int g_ind = 0;
1139         const struct reg_info *reg_group;
1140
1141         while ((reg_group = txgbevf_regs[g_ind++]))
1142                 count += txgbe_regs_group_count(reg_group);
1143
1144         return count;
1145 }
1146
1147 static int
1148 txgbevf_get_regs(struct rte_eth_dev *dev,
1149                 struct rte_dev_reg_info *regs)
1150 {
1151         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
1152         uint32_t *data = regs->data;
1153         int g_ind = 0;
1154         int count = 0;
1155         const struct reg_info *reg_group;
1156
1157         if (data == NULL) {
1158                 regs->length = txgbevf_get_reg_length(dev);
1159                 regs->width = sizeof(uint32_t);
1160                 return 0;
1161         }
1162
1163         /* Support only full register dump */
1164         if (regs->length == 0 ||
1165             regs->length == (uint32_t)txgbevf_get_reg_length(dev)) {
1166                 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
1167                         hw->device_id;
1168                 while ((reg_group = txgbevf_regs[g_ind++]))
1169                         count += txgbe_read_regs_group(dev, &data[count],
1170                                                       reg_group);
1171                 return 0;
1172         }
1173
1174         return -ENOTSUP;
1175 }
1176
1177 static int
1178 txgbevf_dev_promiscuous_enable(struct rte_eth_dev *dev)
1179 {
1180         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
1181         int ret;
1182
1183         switch (hw->mac.update_xcast_mode(hw, TXGBEVF_XCAST_MODE_PROMISC)) {
1184         case 0:
1185                 ret = 0;
1186                 break;
1187         case TXGBE_ERR_FEATURE_NOT_SUPPORTED:
1188                 ret = -ENOTSUP;
1189                 break;
1190         default:
1191                 ret = -EAGAIN;
1192                 break;
1193         }
1194
1195         return ret;
1196 }
1197
1198 static int
1199 txgbevf_dev_promiscuous_disable(struct rte_eth_dev *dev)
1200 {
1201         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
1202         int ret;
1203
1204         switch (hw->mac.update_xcast_mode(hw, TXGBEVF_XCAST_MODE_NONE)) {
1205         case 0:
1206                 ret = 0;
1207                 break;
1208         case TXGBE_ERR_FEATURE_NOT_SUPPORTED:
1209                 ret = -ENOTSUP;
1210                 break;
1211         default:
1212                 ret = -EAGAIN;
1213                 break;
1214         }
1215
1216         return ret;
1217 }
1218
1219 static int
1220 txgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev)
1221 {
1222         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
1223         int ret;
1224
1225         switch (hw->mac.update_xcast_mode(hw, TXGBEVF_XCAST_MODE_ALLMULTI)) {
1226         case 0:
1227                 ret = 0;
1228                 break;
1229         case TXGBE_ERR_FEATURE_NOT_SUPPORTED:
1230                 ret = -ENOTSUP;
1231                 break;
1232         default:
1233                 ret = -EAGAIN;
1234                 break;
1235         }
1236
1237         return ret;
1238 }
1239
1240 static int
1241 txgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev)
1242 {
1243         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
1244         int ret;
1245
1246         switch (hw->mac.update_xcast_mode(hw, TXGBEVF_XCAST_MODE_MULTI)) {
1247         case 0:
1248                 ret = 0;
1249                 break;
1250         case TXGBE_ERR_FEATURE_NOT_SUPPORTED:
1251                 ret = -ENOTSUP;
1252                 break;
1253         default:
1254                 ret = -EAGAIN;
1255                 break;
1256         }
1257
1258         return ret;
1259 }
1260
1261 static void txgbevf_mbx_process(struct rte_eth_dev *dev)
1262 {
1263         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
1264         u32 in_msg = 0;
1265
1266         /* peek the message first */
1267         in_msg = rd32(hw, TXGBE_VFMBX);
1268
1269         /* PF reset VF event */
1270         if (in_msg == TXGBE_PF_CONTROL_MSG) {
1271                 /* dummy mbx read to ack pf */
1272                 if (txgbe_read_mbx(hw, &in_msg, 1, 0))
1273                         return;
1274                 rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RESET,
1275                                               NULL);
1276         }
1277 }
1278
1279 static int
1280 txgbevf_dev_interrupt_get_status(struct rte_eth_dev *dev)
1281 {
1282         uint32_t eicr;
1283         struct txgbe_hw *hw = TXGBE_DEV_HW(dev);
1284         struct txgbe_interrupt *intr = TXGBE_DEV_INTR(dev);
1285         txgbevf_intr_disable(dev);
1286
1287         /* read-on-clear nic registers here */
1288         eicr = rd32(hw, TXGBE_VFICR);
1289         intr->flags = 0;
1290
1291         /* only one misc vector supported - mailbox */
1292         eicr &= TXGBE_VFICR_MASK;
1293         /* Workround for ICR lost */
1294         intr->flags |= TXGBE_FLAG_MAILBOX;
1295
1296         return 0;
1297 }
1298
1299 static int
1300 txgbevf_dev_interrupt_action(struct rte_eth_dev *dev)
1301 {
1302         struct txgbe_interrupt *intr = TXGBE_DEV_INTR(dev);
1303
1304         if (intr->flags & TXGBE_FLAG_MAILBOX) {
1305                 txgbevf_mbx_process(dev);
1306                 intr->flags &= ~TXGBE_FLAG_MAILBOX;
1307         }
1308
1309         txgbevf_intr_enable(dev);
1310
1311         return 0;
1312 }
1313
1314 static void
1315 txgbevf_dev_interrupt_handler(void *param)
1316 {
1317         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1318
1319         txgbevf_dev_interrupt_get_status(dev);
1320         txgbevf_dev_interrupt_action(dev);
1321 }
1322
1323 /*
1324  * dev_ops for virtual function, bare necessities for basic vf
1325  * operation have been implemented
1326  */
1327 static const struct eth_dev_ops txgbevf_eth_dev_ops = {
1328         .dev_configure        = txgbevf_dev_configure,
1329         .dev_start            = txgbevf_dev_start,
1330         .dev_stop             = txgbevf_dev_stop,
1331         .link_update          = txgbevf_dev_link_update,
1332         .stats_get            = txgbevf_dev_stats_get,
1333         .xstats_get           = txgbevf_dev_xstats_get,
1334         .stats_reset          = txgbevf_dev_stats_reset,
1335         .xstats_reset         = txgbevf_dev_stats_reset,
1336         .xstats_get_names     = txgbevf_dev_xstats_get_names,
1337         .dev_close            = txgbevf_dev_close,
1338         .dev_reset            = txgbevf_dev_reset,
1339         .promiscuous_enable   = txgbevf_dev_promiscuous_enable,
1340         .promiscuous_disable  = txgbevf_dev_promiscuous_disable,
1341         .allmulticast_enable  = txgbevf_dev_allmulticast_enable,
1342         .allmulticast_disable = txgbevf_dev_allmulticast_disable,
1343         .dev_infos_get        = txgbevf_dev_info_get,
1344         .dev_supported_ptypes_get = txgbe_dev_supported_ptypes_get,
1345         .mtu_set              = txgbevf_dev_set_mtu,
1346         .vlan_filter_set      = txgbevf_vlan_filter_set,
1347         .vlan_strip_queue_set = txgbevf_vlan_strip_queue_set,
1348         .vlan_offload_set     = txgbevf_vlan_offload_set,
1349         .rx_queue_setup       = txgbe_dev_rx_queue_setup,
1350         .rx_queue_release     = txgbe_dev_rx_queue_release,
1351         .tx_queue_setup       = txgbe_dev_tx_queue_setup,
1352         .tx_queue_release     = txgbe_dev_tx_queue_release,
1353         .rx_queue_intr_enable = txgbevf_dev_rx_queue_intr_enable,
1354         .rx_queue_intr_disable = txgbevf_dev_rx_queue_intr_disable,
1355         .mac_addr_add         = txgbevf_add_mac_addr,
1356         .mac_addr_remove      = txgbevf_remove_mac_addr,
1357         .set_mc_addr_list     = txgbe_dev_set_mc_addr_list,
1358         .rxq_info_get         = txgbe_rxq_info_get,
1359         .txq_info_get         = txgbe_txq_info_get,
1360         .mac_addr_set         = txgbevf_set_default_mac_addr,
1361         .get_reg              = txgbevf_get_regs,
1362         .reta_update          = txgbe_dev_rss_reta_update,
1363         .reta_query           = txgbe_dev_rss_reta_query,
1364         .rss_hash_update      = txgbe_dev_rss_hash_update,
1365         .rss_hash_conf_get    = txgbe_dev_rss_hash_conf_get,
1366         .tx_done_cleanup      = txgbe_dev_tx_done_cleanup,
1367 };
1368
1369 RTE_PMD_REGISTER_PCI(net_txgbe_vf, rte_txgbevf_pmd);
1370 RTE_PMD_REGISTER_PCI_TABLE(net_txgbe_vf, pci_id_txgbevf_map);
1371 RTE_PMD_REGISTER_KMOD_DEP(net_txgbe_vf, "* igb_uio | vfio-pci");