ethdev: change allmulticast callbacks to return status
[dpdk.git] / drivers / net / iavf / iavf_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017 Intel Corporation
3  */
4
5 #include <sys/queue.h>
6 #include <stdio.h>
7 #include <errno.h>
8 #include <stdint.h>
9 #include <string.h>
10 #include <unistd.h>
11 #include <stdarg.h>
12 #include <inttypes.h>
13 #include <rte_byteorder.h>
14 #include <rte_common.h>
15
16 #include <rte_interrupts.h>
17 #include <rte_debug.h>
18 #include <rte_pci.h>
19 #include <rte_atomic.h>
20 #include <rte_eal.h>
21 #include <rte_ether.h>
22 #include <rte_ethdev_driver.h>
23 #include <rte_ethdev_pci.h>
24 #include <rte_malloc.h>
25 #include <rte_memzone.h>
26 #include <rte_dev.h>
27
28 #include "iavf_log.h"
29 #include "base/iavf_prototype.h"
30 #include "base/iavf_adminq_cmd.h"
31 #include "base/iavf_type.h"
32
33 #include "iavf.h"
34 #include "iavf_rxtx.h"
35
36 static int iavf_dev_configure(struct rte_eth_dev *dev);
37 static int iavf_dev_start(struct rte_eth_dev *dev);
38 static void iavf_dev_stop(struct rte_eth_dev *dev);
39 static void iavf_dev_close(struct rte_eth_dev *dev);
40 static int iavf_dev_info_get(struct rte_eth_dev *dev,
41                              struct rte_eth_dev_info *dev_info);
42 static const uint32_t *iavf_dev_supported_ptypes_get(struct rte_eth_dev *dev);
43 static int iavf_dev_stats_get(struct rte_eth_dev *dev,
44                              struct rte_eth_stats *stats);
45 static int iavf_dev_stats_reset(struct rte_eth_dev *dev);
46 static int iavf_dev_promiscuous_enable(struct rte_eth_dev *dev);
47 static int iavf_dev_promiscuous_disable(struct rte_eth_dev *dev);
48 static int iavf_dev_allmulticast_enable(struct rte_eth_dev *dev);
49 static int iavf_dev_allmulticast_disable(struct rte_eth_dev *dev);
50 static int iavf_dev_add_mac_addr(struct rte_eth_dev *dev,
51                                 struct rte_ether_addr *addr,
52                                 uint32_t index,
53                                 uint32_t pool);
54 static void iavf_dev_del_mac_addr(struct rte_eth_dev *dev, uint32_t index);
55 static int iavf_dev_vlan_filter_set(struct rte_eth_dev *dev,
56                                    uint16_t vlan_id, int on);
57 static int iavf_dev_vlan_offload_set(struct rte_eth_dev *dev, int mask);
58 static int iavf_dev_rss_reta_update(struct rte_eth_dev *dev,
59                                    struct rte_eth_rss_reta_entry64 *reta_conf,
60                                    uint16_t reta_size);
61 static int iavf_dev_rss_reta_query(struct rte_eth_dev *dev,
62                                   struct rte_eth_rss_reta_entry64 *reta_conf,
63                                   uint16_t reta_size);
64 static int iavf_dev_rss_hash_update(struct rte_eth_dev *dev,
65                                    struct rte_eth_rss_conf *rss_conf);
66 static int iavf_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
67                                      struct rte_eth_rss_conf *rss_conf);
68 static int iavf_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
69 static int iavf_dev_set_default_mac_addr(struct rte_eth_dev *dev,
70                                          struct rte_ether_addr *mac_addr);
71 static int iavf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
72                                         uint16_t queue_id);
73 static int iavf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
74                                          uint16_t queue_id);
75
76 int iavf_logtype_init;
77 int iavf_logtype_driver;
78
79 static const struct rte_pci_id pci_id_iavf_map[] = {
80         { RTE_PCI_DEVICE(IAVF_INTEL_VENDOR_ID, IAVF_DEV_ID_ADAPTIVE_VF) },
81         { .vendor_id = 0, /* sentinel */ },
82 };
83
84 static const struct eth_dev_ops iavf_eth_dev_ops = {
85         .dev_configure              = iavf_dev_configure,
86         .dev_start                  = iavf_dev_start,
87         .dev_stop                   = iavf_dev_stop,
88         .dev_close                  = iavf_dev_close,
89         .dev_infos_get              = iavf_dev_info_get,
90         .dev_supported_ptypes_get   = iavf_dev_supported_ptypes_get,
91         .link_update                = iavf_dev_link_update,
92         .stats_get                  = iavf_dev_stats_get,
93         .stats_reset                = iavf_dev_stats_reset,
94         .promiscuous_enable         = iavf_dev_promiscuous_enable,
95         .promiscuous_disable        = iavf_dev_promiscuous_disable,
96         .allmulticast_enable        = iavf_dev_allmulticast_enable,
97         .allmulticast_disable       = iavf_dev_allmulticast_disable,
98         .mac_addr_add               = iavf_dev_add_mac_addr,
99         .mac_addr_remove            = iavf_dev_del_mac_addr,
100         .vlan_filter_set            = iavf_dev_vlan_filter_set,
101         .vlan_offload_set           = iavf_dev_vlan_offload_set,
102         .rx_queue_start             = iavf_dev_rx_queue_start,
103         .rx_queue_stop              = iavf_dev_rx_queue_stop,
104         .tx_queue_start             = iavf_dev_tx_queue_start,
105         .tx_queue_stop              = iavf_dev_tx_queue_stop,
106         .rx_queue_setup             = iavf_dev_rx_queue_setup,
107         .rx_queue_release           = iavf_dev_rx_queue_release,
108         .tx_queue_setup             = iavf_dev_tx_queue_setup,
109         .tx_queue_release           = iavf_dev_tx_queue_release,
110         .mac_addr_set               = iavf_dev_set_default_mac_addr,
111         .reta_update                = iavf_dev_rss_reta_update,
112         .reta_query                 = iavf_dev_rss_reta_query,
113         .rss_hash_update            = iavf_dev_rss_hash_update,
114         .rss_hash_conf_get          = iavf_dev_rss_hash_conf_get,
115         .rxq_info_get               = iavf_dev_rxq_info_get,
116         .txq_info_get               = iavf_dev_txq_info_get,
117         .rx_queue_count             = iavf_dev_rxq_count,
118         .rx_descriptor_status       = iavf_dev_rx_desc_status,
119         .tx_descriptor_status       = iavf_dev_tx_desc_status,
120         .mtu_set                    = iavf_dev_mtu_set,
121         .rx_queue_intr_enable       = iavf_dev_rx_queue_intr_enable,
122         .rx_queue_intr_disable      = iavf_dev_rx_queue_intr_disable,
123 };
124
125 static int
126 iavf_dev_configure(struct rte_eth_dev *dev)
127 {
128         struct iavf_adapter *ad =
129                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
130         struct iavf_info *vf =  IAVF_DEV_PRIVATE_TO_VF(ad);
131         struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
132
133         ad->rx_bulk_alloc_allowed = true;
134 #ifdef RTE_LIBRTE_IAVF_INC_VECTOR
135         /* Initialize to TRUE. If any of Rx queues doesn't meet the
136          * vector Rx/Tx preconditions, it will be reset.
137          */
138         ad->rx_vec_allowed = true;
139         ad->tx_vec_allowed = true;
140 #else
141         ad->rx_vec_allowed = false;
142         ad->tx_vec_allowed = false;
143 #endif
144
145         /* Vlan stripping setting */
146         if (vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN) {
147                 if (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
148                         iavf_enable_vlan_strip(ad);
149                 else
150                         iavf_disable_vlan_strip(ad);
151         }
152         return 0;
153 }
154
155 static int
156 iavf_init_rss(struct iavf_adapter *adapter)
157 {
158         struct iavf_info *vf =  IAVF_DEV_PRIVATE_TO_VF(adapter);
159         struct rte_eth_rss_conf *rss_conf;
160         uint8_t i, j, nb_q;
161         int ret;
162
163         rss_conf = &adapter->eth_dev->data->dev_conf.rx_adv_conf.rss_conf;
164         nb_q = RTE_MIN(adapter->eth_dev->data->nb_rx_queues,
165                        IAVF_MAX_NUM_QUEUES);
166
167         if (!(vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF)) {
168                 PMD_DRV_LOG(DEBUG, "RSS is not supported");
169                 return -ENOTSUP;
170         }
171         if (adapter->eth_dev->data->dev_conf.rxmode.mq_mode != ETH_MQ_RX_RSS) {
172                 PMD_DRV_LOG(WARNING, "RSS is enabled by PF by default");
173                 /* set all lut items to default queue */
174                 for (i = 0; i < vf->vf_res->rss_lut_size; i++)
175                         vf->rss_lut[i] = 0;
176                 ret = iavf_configure_rss_lut(adapter);
177                 return ret;
178         }
179
180         /* In IAVF, RSS enablement is set by PF driver. It is not supported
181          * to set based on rss_conf->rss_hf.
182          */
183
184         /* configure RSS key */
185         if (!rss_conf->rss_key) {
186                 /* Calculate the default hash key */
187                 for (i = 0; i <= vf->vf_res->rss_key_size; i++)
188                         vf->rss_key[i] = (uint8_t)rte_rand();
189         } else
190                 rte_memcpy(vf->rss_key, rss_conf->rss_key,
191                            RTE_MIN(rss_conf->rss_key_len,
192                                    vf->vf_res->rss_key_size));
193
194         /* init RSS LUT table */
195         for (i = 0, j = 0; i < vf->vf_res->rss_lut_size; i++, j++) {
196                 if (j >= nb_q)
197                         j = 0;
198                 vf->rss_lut[i] = j;
199         }
200         /* send virtchnnl ops to configure rss*/
201         ret = iavf_configure_rss_lut(adapter);
202         if (ret)
203                 return ret;
204         ret = iavf_configure_rss_key(adapter);
205         if (ret)
206                 return ret;
207
208         return 0;
209 }
210
211 static int
212 iavf_init_rxq(struct rte_eth_dev *dev, struct iavf_rx_queue *rxq)
213 {
214         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
215         struct rte_eth_dev_data *dev_data = dev->data;
216         uint16_t buf_size, max_pkt_len, len;
217
218         buf_size = rte_pktmbuf_data_room_size(rxq->mp) - RTE_PKTMBUF_HEADROOM;
219
220         /* Calculate the maximum packet length allowed */
221         len = rxq->rx_buf_len * IAVF_MAX_CHAINED_RX_BUFFERS;
222         max_pkt_len = RTE_MIN(len, dev->data->dev_conf.rxmode.max_rx_pkt_len);
223
224         /* Check if the jumbo frame and maximum packet length are set
225          * correctly.
226          */
227         if (dev->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
228                 if (max_pkt_len <= RTE_ETHER_MAX_LEN ||
229                     max_pkt_len > IAVF_FRAME_SIZE_MAX) {
230                         PMD_DRV_LOG(ERR, "maximum packet length must be "
231                                     "larger than %u and smaller than %u, "
232                                     "as jumbo frame is enabled",
233                                     (uint32_t)RTE_ETHER_MAX_LEN,
234                                     (uint32_t)IAVF_FRAME_SIZE_MAX);
235                         return -EINVAL;
236                 }
237         } else {
238                 if (max_pkt_len < RTE_ETHER_MIN_LEN ||
239                     max_pkt_len > RTE_ETHER_MAX_LEN) {
240                         PMD_DRV_LOG(ERR, "maximum packet length must be "
241                                     "larger than %u and smaller than %u, "
242                                     "as jumbo frame is disabled",
243                                     (uint32_t)RTE_ETHER_MIN_LEN,
244                                     (uint32_t)RTE_ETHER_MAX_LEN);
245                         return -EINVAL;
246                 }
247         }
248
249         rxq->max_pkt_len = max_pkt_len;
250         if ((dev_data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_SCATTER) ||
251             (rxq->max_pkt_len + 2 * IAVF_VLAN_TAG_SIZE) > buf_size) {
252                 dev_data->scattered_rx = 1;
253         }
254         IAVF_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
255         IAVF_WRITE_FLUSH(hw);
256
257         return 0;
258 }
259
260 static int
261 iavf_init_queues(struct rte_eth_dev *dev)
262 {
263         struct iavf_rx_queue **rxq =
264                 (struct iavf_rx_queue **)dev->data->rx_queues;
265         int i, ret = IAVF_SUCCESS;
266
267         for (i = 0; i < dev->data->nb_rx_queues; i++) {
268                 if (!rxq[i] || !rxq[i]->q_set)
269                         continue;
270                 ret = iavf_init_rxq(dev, rxq[i]);
271                 if (ret != IAVF_SUCCESS)
272                         break;
273         }
274         /* set rx/tx function to vector/scatter/single-segment
275          * according to parameters
276          */
277         iavf_set_rx_function(dev);
278         iavf_set_tx_function(dev);
279
280         return ret;
281 }
282
283 static int iavf_config_rx_queues_irqs(struct rte_eth_dev *dev,
284                                      struct rte_intr_handle *intr_handle)
285 {
286         struct iavf_adapter *adapter =
287                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
288         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
289         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(adapter);
290         uint16_t interval, i;
291         int vec;
292
293         if (rte_intr_cap_multiple(intr_handle) &&
294             dev->data->dev_conf.intr_conf.rxq) {
295                 if (rte_intr_efd_enable(intr_handle, dev->data->nb_rx_queues))
296                         return -1;
297         }
298
299         if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
300                 intr_handle->intr_vec =
301                         rte_zmalloc("intr_vec",
302                                     dev->data->nb_rx_queues * sizeof(int), 0);
303                 if (!intr_handle->intr_vec) {
304                         PMD_DRV_LOG(ERR, "Failed to allocate %d rx intr_vec",
305                                     dev->data->nb_rx_queues);
306                         return -1;
307                 }
308         }
309
310         if (!dev->data->dev_conf.intr_conf.rxq ||
311             !rte_intr_dp_is_en(intr_handle)) {
312                 /* Rx interrupt disabled, Map interrupt only for writeback */
313                 vf->nb_msix = 1;
314                 if (vf->vf_res->vf_cap_flags &
315                     VIRTCHNL_VF_OFFLOAD_WB_ON_ITR) {
316                         /* If WB_ON_ITR supports, enable it */
317                         vf->msix_base = IAVF_RX_VEC_START;
318                         IAVF_WRITE_REG(hw, IAVFINT_DYN_CTLN1(vf->msix_base - 1),
319                                       IAVFINT_DYN_CTLN1_ITR_INDX_MASK |
320                                       IAVFINT_DYN_CTLN1_WB_ON_ITR_MASK);
321                 } else {
322                         /* If no WB_ON_ITR offload flags, need to set
323                          * interrupt for descriptor write back.
324                          */
325                         vf->msix_base = IAVF_MISC_VEC_ID;
326
327                         /* set ITR to max */
328                         interval = iavf_calc_itr_interval(
329                                         IAVF_QUEUE_ITR_INTERVAL_MAX);
330                         IAVF_WRITE_REG(hw, IAVFINT_DYN_CTL01,
331                                       IAVFINT_DYN_CTL01_INTENA_MASK |
332                                       (IAVF_ITR_INDEX_DEFAULT <<
333                                        IAVFINT_DYN_CTL01_ITR_INDX_SHIFT) |
334                                       (interval <<
335                                        IAVFINT_DYN_CTL01_INTERVAL_SHIFT));
336                 }
337                 IAVF_WRITE_FLUSH(hw);
338                 /* map all queues to the same interrupt */
339                 for (i = 0; i < dev->data->nb_rx_queues; i++)
340                         vf->rxq_map[vf->msix_base] |= 1 << i;
341         } else {
342                 if (!rte_intr_allow_others(intr_handle)) {
343                         vf->nb_msix = 1;
344                         vf->msix_base = IAVF_MISC_VEC_ID;
345                         for (i = 0; i < dev->data->nb_rx_queues; i++) {
346                                 vf->rxq_map[vf->msix_base] |= 1 << i;
347                                 intr_handle->intr_vec[i] = IAVF_MISC_VEC_ID;
348                         }
349                         PMD_DRV_LOG(DEBUG,
350                                     "vector %u are mapping to all Rx queues",
351                                     vf->msix_base);
352                 } else {
353                         /* If Rx interrupt is reuquired, and we can use
354                          * multi interrupts, then the vec is from 1
355                          */
356                         vf->nb_msix = RTE_MIN(vf->vf_res->max_vectors,
357                                               intr_handle->nb_efd);
358                         vf->msix_base = IAVF_RX_VEC_START;
359                         vec = IAVF_RX_VEC_START;
360                         for (i = 0; i < dev->data->nb_rx_queues; i++) {
361                                 vf->rxq_map[vec] |= 1 << i;
362                                 intr_handle->intr_vec[i] = vec++;
363                                 if (vec >= vf->nb_msix)
364                                         vec = IAVF_RX_VEC_START;
365                         }
366                         PMD_DRV_LOG(DEBUG,
367                                     "%u vectors are mapping to %u Rx queues",
368                                     vf->nb_msix, dev->data->nb_rx_queues);
369                 }
370         }
371
372         if (iavf_config_irq_map(adapter)) {
373                 PMD_DRV_LOG(ERR, "config interrupt mapping failed");
374                 return -1;
375         }
376         return 0;
377 }
378
379 static int
380 iavf_start_queues(struct rte_eth_dev *dev)
381 {
382         struct iavf_rx_queue *rxq;
383         struct iavf_tx_queue *txq;
384         int i;
385
386         for (i = 0; i < dev->data->nb_tx_queues; i++) {
387                 txq = dev->data->tx_queues[i];
388                 if (txq->tx_deferred_start)
389                         continue;
390                 if (iavf_dev_tx_queue_start(dev, i) != 0) {
391                         PMD_DRV_LOG(ERR, "Fail to start queue %u", i);
392                         return -1;
393                 }
394         }
395
396         for (i = 0; i < dev->data->nb_rx_queues; i++) {
397                 rxq = dev->data->rx_queues[i];
398                 if (rxq->rx_deferred_start)
399                         continue;
400                 if (iavf_dev_rx_queue_start(dev, i) != 0) {
401                         PMD_DRV_LOG(ERR, "Fail to start queue %u", i);
402                         return -1;
403                 }
404         }
405
406         return 0;
407 }
408
409 static int
410 iavf_dev_start(struct rte_eth_dev *dev)
411 {
412         struct iavf_adapter *adapter =
413                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
414         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
415         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
416         struct rte_intr_handle *intr_handle = dev->intr_handle;
417
418         PMD_INIT_FUNC_TRACE();
419
420         hw->adapter_stopped = 0;
421
422         vf->max_pkt_len = dev->data->dev_conf.rxmode.max_rx_pkt_len;
423         vf->num_queue_pairs = RTE_MAX(dev->data->nb_rx_queues,
424                                       dev->data->nb_tx_queues);
425
426         if (iavf_init_queues(dev) != 0) {
427                 PMD_DRV_LOG(ERR, "failed to do Queue init");
428                 return -1;
429         }
430
431         if (vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF) {
432                 if (iavf_init_rss(adapter) != 0) {
433                         PMD_DRV_LOG(ERR, "configure rss failed");
434                         goto err_rss;
435                 }
436         }
437
438         if (iavf_configure_queues(adapter) != 0) {
439                 PMD_DRV_LOG(ERR, "configure queues failed");
440                 goto err_queue;
441         }
442
443         if (iavf_config_rx_queues_irqs(dev, intr_handle) != 0) {
444                 PMD_DRV_LOG(ERR, "configure irq failed");
445                 goto err_queue;
446         }
447         /* re-enable intr again, because efd assign may change */
448         if (dev->data->dev_conf.intr_conf.rxq != 0) {
449                 rte_intr_disable(intr_handle);
450                 rte_intr_enable(intr_handle);
451         }
452
453         /* Set all mac addrs */
454         iavf_add_del_all_mac_addr(adapter, TRUE);
455
456         if (iavf_start_queues(dev) != 0) {
457                 PMD_DRV_LOG(ERR, "enable queues failed");
458                 goto err_mac;
459         }
460
461         return 0;
462
463 err_mac:
464         iavf_add_del_all_mac_addr(adapter, FALSE);
465 err_queue:
466 err_rss:
467         return -1;
468 }
469
470 static void
471 iavf_dev_stop(struct rte_eth_dev *dev)
472 {
473         struct iavf_adapter *adapter =
474                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
475         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
476         struct rte_intr_handle *intr_handle = dev->intr_handle;
477
478         PMD_INIT_FUNC_TRACE();
479
480         if (hw->adapter_stopped == 1)
481                 return;
482
483         iavf_stop_queues(dev);
484
485         /* Disable the interrupt for Rx */
486         rte_intr_efd_disable(intr_handle);
487         /* Rx interrupt vector mapping free */
488         if (intr_handle->intr_vec) {
489                 rte_free(intr_handle->intr_vec);
490                 intr_handle->intr_vec = NULL;
491         }
492
493         /* remove all mac addrs */
494         iavf_add_del_all_mac_addr(adapter, FALSE);
495         hw->adapter_stopped = 1;
496 }
497
498 static int
499 iavf_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
500 {
501         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
502
503         dev_info->max_rx_queues = vf->vsi_res->num_queue_pairs;
504         dev_info->max_tx_queues = vf->vsi_res->num_queue_pairs;
505         dev_info->min_rx_bufsize = IAVF_BUF_SIZE_MIN;
506         dev_info->max_rx_pktlen = IAVF_FRAME_SIZE_MAX;
507         dev_info->hash_key_size = vf->vf_res->rss_key_size;
508         dev_info->reta_size = vf->vf_res->rss_lut_size;
509         dev_info->flow_type_rss_offloads = IAVF_RSS_OFFLOAD_ALL;
510         dev_info->max_mac_addrs = IAVF_NUM_MACADDR_MAX;
511         dev_info->rx_offload_capa =
512                 DEV_RX_OFFLOAD_VLAN_STRIP |
513                 DEV_RX_OFFLOAD_QINQ_STRIP |
514                 DEV_RX_OFFLOAD_IPV4_CKSUM |
515                 DEV_RX_OFFLOAD_UDP_CKSUM |
516                 DEV_RX_OFFLOAD_TCP_CKSUM |
517                 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
518                 DEV_RX_OFFLOAD_SCATTER |
519                 DEV_RX_OFFLOAD_JUMBO_FRAME |
520                 DEV_RX_OFFLOAD_VLAN_FILTER;
521         dev_info->tx_offload_capa =
522                 DEV_TX_OFFLOAD_VLAN_INSERT |
523                 DEV_TX_OFFLOAD_QINQ_INSERT |
524                 DEV_TX_OFFLOAD_IPV4_CKSUM |
525                 DEV_TX_OFFLOAD_UDP_CKSUM |
526                 DEV_TX_OFFLOAD_TCP_CKSUM |
527                 DEV_TX_OFFLOAD_SCTP_CKSUM |
528                 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
529                 DEV_TX_OFFLOAD_TCP_TSO |
530                 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
531                 DEV_TX_OFFLOAD_GRE_TNL_TSO |
532                 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
533                 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
534                 DEV_TX_OFFLOAD_MULTI_SEGS;
535
536         dev_info->default_rxconf = (struct rte_eth_rxconf) {
537                 .rx_free_thresh = IAVF_DEFAULT_RX_FREE_THRESH,
538                 .rx_drop_en = 0,
539                 .offloads = 0,
540         };
541
542         dev_info->default_txconf = (struct rte_eth_txconf) {
543                 .tx_free_thresh = IAVF_DEFAULT_TX_FREE_THRESH,
544                 .tx_rs_thresh = IAVF_DEFAULT_TX_RS_THRESH,
545                 .offloads = 0,
546         };
547
548         dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
549                 .nb_max = IAVF_MAX_RING_DESC,
550                 .nb_min = IAVF_MIN_RING_DESC,
551                 .nb_align = IAVF_ALIGN_RING_DESC,
552         };
553
554         dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
555                 .nb_max = IAVF_MAX_RING_DESC,
556                 .nb_min = IAVF_MIN_RING_DESC,
557                 .nb_align = IAVF_ALIGN_RING_DESC,
558         };
559
560         return 0;
561 }
562
563 static const uint32_t *
564 iavf_dev_supported_ptypes_get(struct rte_eth_dev *dev __rte_unused)
565 {
566         static const uint32_t ptypes[] = {
567                 RTE_PTYPE_L2_ETHER,
568                 RTE_PTYPE_L3_IPV4_EXT_UNKNOWN,
569                 RTE_PTYPE_L4_FRAG,
570                 RTE_PTYPE_L4_ICMP,
571                 RTE_PTYPE_L4_NONFRAG,
572                 RTE_PTYPE_L4_SCTP,
573                 RTE_PTYPE_L4_TCP,
574                 RTE_PTYPE_L4_UDP,
575                 RTE_PTYPE_UNKNOWN
576         };
577         return ptypes;
578 }
579
580 int
581 iavf_dev_link_update(struct rte_eth_dev *dev,
582                     __rte_unused int wait_to_complete)
583 {
584         struct rte_eth_link new_link;
585         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
586
587         /* Only read status info stored in VF, and the info is updated
588          *  when receive LINK_CHANGE evnet from PF by Virtchnnl.
589          */
590         switch (vf->link_speed) {
591         case 10:
592                 new_link.link_speed = ETH_SPEED_NUM_10M;
593                 break;
594         case 100:
595                 new_link.link_speed = ETH_SPEED_NUM_100M;
596                 break;
597         case 1000:
598                 new_link.link_speed = ETH_SPEED_NUM_1G;
599                 break;
600         case 10000:
601                 new_link.link_speed = ETH_SPEED_NUM_10G;
602                 break;
603         case 20000:
604                 new_link.link_speed = ETH_SPEED_NUM_20G;
605                 break;
606         case 25000:
607                 new_link.link_speed = ETH_SPEED_NUM_25G;
608                 break;
609         case 40000:
610                 new_link.link_speed = ETH_SPEED_NUM_40G;
611                 break;
612         case 50000:
613                 new_link.link_speed = ETH_SPEED_NUM_50G;
614                 break;
615         case 100000:
616                 new_link.link_speed = ETH_SPEED_NUM_100G;
617                 break;
618         default:
619                 new_link.link_speed = ETH_SPEED_NUM_NONE;
620                 break;
621         }
622
623         new_link.link_duplex = ETH_LINK_FULL_DUPLEX;
624         new_link.link_status = vf->link_up ? ETH_LINK_UP :
625                                              ETH_LINK_DOWN;
626         new_link.link_autoneg = !(dev->data->dev_conf.link_speeds &
627                                 ETH_LINK_SPEED_FIXED);
628
629         if (rte_atomic64_cmpset((uint64_t *)&dev->data->dev_link,
630                                 *(uint64_t *)&dev->data->dev_link,
631                                 *(uint64_t *)&new_link) == 0)
632                 return -1;
633
634         return 0;
635 }
636
637 static int
638 iavf_dev_promiscuous_enable(struct rte_eth_dev *dev)
639 {
640         struct iavf_adapter *adapter =
641                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
642         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
643         int ret;
644
645         if (vf->promisc_unicast_enabled)
646                 return 0;
647
648         ret = iavf_config_promisc(adapter, TRUE, vf->promisc_multicast_enabled);
649         if (!ret)
650                 vf->promisc_unicast_enabled = TRUE;
651         else
652                 ret = -EAGAIN;
653
654         return ret;
655 }
656
657 static int
658 iavf_dev_promiscuous_disable(struct rte_eth_dev *dev)
659 {
660         struct iavf_adapter *adapter =
661                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
662         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
663         int ret;
664
665         if (!vf->promisc_unicast_enabled)
666                 return 0;
667
668         ret = iavf_config_promisc(adapter, FALSE, vf->promisc_multicast_enabled);
669         if (!ret)
670                 vf->promisc_unicast_enabled = FALSE;
671         else
672                 ret = -EAGAIN;
673
674         return ret;
675 }
676
677 static int
678 iavf_dev_allmulticast_enable(struct rte_eth_dev *dev)
679 {
680         struct iavf_adapter *adapter =
681                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
682         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
683         int ret;
684
685         if (vf->promisc_multicast_enabled)
686                 return 0;
687
688         ret = iavf_config_promisc(adapter, vf->promisc_unicast_enabled, TRUE);
689         if (!ret)
690                 vf->promisc_multicast_enabled = TRUE;
691         else
692                 ret = -EAGAIN;
693
694         return ret;
695 }
696
697 static int
698 iavf_dev_allmulticast_disable(struct rte_eth_dev *dev)
699 {
700         struct iavf_adapter *adapter =
701                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
702         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
703         int ret;
704
705         if (!vf->promisc_multicast_enabled)
706                 return 0;
707
708         ret = iavf_config_promisc(adapter, vf->promisc_unicast_enabled, FALSE);
709         if (!ret)
710                 vf->promisc_multicast_enabled = FALSE;
711         else
712                 ret = -EAGAIN;
713
714         return ret;
715 }
716
717 static int
718 iavf_dev_add_mac_addr(struct rte_eth_dev *dev, struct rte_ether_addr *addr,
719                      __rte_unused uint32_t index,
720                      __rte_unused uint32_t pool)
721 {
722         struct iavf_adapter *adapter =
723                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
724         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
725         int err;
726
727         if (rte_is_zero_ether_addr(addr)) {
728                 PMD_DRV_LOG(ERR, "Invalid Ethernet Address");
729                 return -EINVAL;
730         }
731
732         err = iavf_add_del_eth_addr(adapter, addr, TRUE);
733         if (err) {
734                 PMD_DRV_LOG(ERR, "fail to add MAC address");
735                 return -EIO;
736         }
737
738         vf->mac_num++;
739
740         return 0;
741 }
742
743 static void
744 iavf_dev_del_mac_addr(struct rte_eth_dev *dev, uint32_t index)
745 {
746         struct iavf_adapter *adapter =
747                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
748         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
749         struct rte_ether_addr *addr;
750         int err;
751
752         addr = &dev->data->mac_addrs[index];
753
754         err = iavf_add_del_eth_addr(adapter, addr, FALSE);
755         if (err)
756                 PMD_DRV_LOG(ERR, "fail to delete MAC address");
757
758         vf->mac_num--;
759 }
760
761 static int
762 iavf_dev_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
763 {
764         struct iavf_adapter *adapter =
765                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
766         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
767         int err;
768
769         if (!(vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN))
770                 return -ENOTSUP;
771
772         err = iavf_add_del_vlan(adapter, vlan_id, on);
773         if (err)
774                 return -EIO;
775         return 0;
776 }
777
778 static int
779 iavf_dev_vlan_offload_set(struct rte_eth_dev *dev, int mask)
780 {
781         struct iavf_adapter *adapter =
782                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
783         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
784         struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
785         int err;
786
787         if (!(vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN))
788                 return -ENOTSUP;
789
790         /* Vlan stripping setting */
791         if (mask & ETH_VLAN_STRIP_MASK) {
792                 /* Enable or disable VLAN stripping */
793                 if (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
794                         err = iavf_enable_vlan_strip(adapter);
795                 else
796                         err = iavf_disable_vlan_strip(adapter);
797
798                 if (err)
799                         return -EIO;
800         }
801         return 0;
802 }
803
804 static int
805 iavf_dev_rss_reta_update(struct rte_eth_dev *dev,
806                         struct rte_eth_rss_reta_entry64 *reta_conf,
807                         uint16_t reta_size)
808 {
809         struct iavf_adapter *adapter =
810                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
811         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
812         uint8_t *lut;
813         uint16_t i, idx, shift;
814         int ret;
815
816         if (!(vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF))
817                 return -ENOTSUP;
818
819         if (reta_size != vf->vf_res->rss_lut_size) {
820                 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
821                         "(%d) doesn't match the number of hardware can "
822                         "support (%d)", reta_size, vf->vf_res->rss_lut_size);
823                 return -EINVAL;
824         }
825
826         lut = rte_zmalloc("rss_lut", reta_size, 0);
827         if (!lut) {
828                 PMD_DRV_LOG(ERR, "No memory can be allocated");
829                 return -ENOMEM;
830         }
831         /* store the old lut table temporarily */
832         rte_memcpy(lut, vf->rss_lut, reta_size);
833
834         for (i = 0; i < reta_size; i++) {
835                 idx = i / RTE_RETA_GROUP_SIZE;
836                 shift = i % RTE_RETA_GROUP_SIZE;
837                 if (reta_conf[idx].mask & (1ULL << shift))
838                         lut[i] = reta_conf[idx].reta[shift];
839         }
840
841         rte_memcpy(vf->rss_lut, lut, reta_size);
842         /* send virtchnnl ops to configure rss*/
843         ret = iavf_configure_rss_lut(adapter);
844         if (ret) /* revert back */
845                 rte_memcpy(vf->rss_lut, lut, reta_size);
846         rte_free(lut);
847
848         return ret;
849 }
850
851 static int
852 iavf_dev_rss_reta_query(struct rte_eth_dev *dev,
853                        struct rte_eth_rss_reta_entry64 *reta_conf,
854                        uint16_t reta_size)
855 {
856         struct iavf_adapter *adapter =
857                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
858         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
859         uint16_t i, idx, shift;
860
861         if (!(vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF))
862                 return -ENOTSUP;
863
864         if (reta_size != vf->vf_res->rss_lut_size) {
865                 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
866                         "(%d) doesn't match the number of hardware can "
867                         "support (%d)", reta_size, vf->vf_res->rss_lut_size);
868                 return -EINVAL;
869         }
870
871         for (i = 0; i < reta_size; i++) {
872                 idx = i / RTE_RETA_GROUP_SIZE;
873                 shift = i % RTE_RETA_GROUP_SIZE;
874                 if (reta_conf[idx].mask & (1ULL << shift))
875                         reta_conf[idx].reta[shift] = vf->rss_lut[i];
876         }
877
878         return 0;
879 }
880
881 static int
882 iavf_dev_rss_hash_update(struct rte_eth_dev *dev,
883                         struct rte_eth_rss_conf *rss_conf)
884 {
885         struct iavf_adapter *adapter =
886                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
887         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
888
889         if (!(vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF))
890                 return -ENOTSUP;
891
892         /* HENA setting, it is enabled by default, no change */
893         if (!rss_conf->rss_key || rss_conf->rss_key_len == 0) {
894                 PMD_DRV_LOG(DEBUG, "No key to be configured");
895                 return 0;
896         } else if (rss_conf->rss_key_len != vf->vf_res->rss_key_size) {
897                 PMD_DRV_LOG(ERR, "The size of hash key configured "
898                         "(%d) doesn't match the size of hardware can "
899                         "support (%d)", rss_conf->rss_key_len,
900                         vf->vf_res->rss_key_size);
901                 return -EINVAL;
902         }
903
904         rte_memcpy(vf->rss_key, rss_conf->rss_key, rss_conf->rss_key_len);
905
906         return iavf_configure_rss_key(adapter);
907 }
908
909 static int
910 iavf_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
911                           struct rte_eth_rss_conf *rss_conf)
912 {
913         struct iavf_adapter *adapter =
914                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
915         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(adapter);
916
917         if (!(vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF))
918                 return -ENOTSUP;
919
920          /* Just set it to default value now. */
921         rss_conf->rss_hf = IAVF_RSS_OFFLOAD_ALL;
922
923         if (!rss_conf->rss_key)
924                 return 0;
925
926         rss_conf->rss_key_len = vf->vf_res->rss_key_size;
927         rte_memcpy(rss_conf->rss_key, vf->rss_key, rss_conf->rss_key_len);
928
929         return 0;
930 }
931
932 static int
933 iavf_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
934 {
935         uint32_t frame_size = mtu + IAVF_ETH_OVERHEAD;
936         int ret = 0;
937
938         if (mtu < RTE_ETHER_MIN_MTU || frame_size > IAVF_FRAME_SIZE_MAX)
939                 return -EINVAL;
940
941         /* mtu setting is forbidden if port is start */
942         if (dev->data->dev_started) {
943                 PMD_DRV_LOG(ERR, "port must be stopped before configuration");
944                 return -EBUSY;
945         }
946
947         if (frame_size > RTE_ETHER_MAX_LEN)
948                 dev->data->dev_conf.rxmode.offloads |=
949                                 DEV_RX_OFFLOAD_JUMBO_FRAME;
950         else
951                 dev->data->dev_conf.rxmode.offloads &=
952                                 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
953
954         dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
955
956         return ret;
957 }
958
959 static int
960 iavf_dev_set_default_mac_addr(struct rte_eth_dev *dev,
961                              struct rte_ether_addr *mac_addr)
962 {
963         struct iavf_adapter *adapter =
964                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
965         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(adapter);
966         struct rte_ether_addr *perm_addr, *old_addr;
967         int ret;
968
969         old_addr = (struct rte_ether_addr *)hw->mac.addr;
970         perm_addr = (struct rte_ether_addr *)hw->mac.perm_addr;
971
972         if (rte_is_same_ether_addr(mac_addr, old_addr))
973                 return 0;
974
975         /* If the MAC address is configured by host, skip the setting */
976         if (rte_is_valid_assigned_ether_addr(perm_addr))
977                 return -EPERM;
978
979         ret = iavf_add_del_eth_addr(adapter, old_addr, FALSE);
980         if (ret)
981                 PMD_DRV_LOG(ERR, "Fail to delete old MAC:"
982                             " %02X:%02X:%02X:%02X:%02X:%02X",
983                             old_addr->addr_bytes[0],
984                             old_addr->addr_bytes[1],
985                             old_addr->addr_bytes[2],
986                             old_addr->addr_bytes[3],
987                             old_addr->addr_bytes[4],
988                             old_addr->addr_bytes[5]);
989
990         ret = iavf_add_del_eth_addr(adapter, mac_addr, TRUE);
991         if (ret)
992                 PMD_DRV_LOG(ERR, "Fail to add new MAC:"
993                             " %02X:%02X:%02X:%02X:%02X:%02X",
994                             mac_addr->addr_bytes[0],
995                             mac_addr->addr_bytes[1],
996                             mac_addr->addr_bytes[2],
997                             mac_addr->addr_bytes[3],
998                             mac_addr->addr_bytes[4],
999                             mac_addr->addr_bytes[5]);
1000
1001         if (ret)
1002                 return -EIO;
1003
1004         rte_ether_addr_copy(mac_addr, (struct rte_ether_addr *)hw->mac.addr);
1005         return 0;
1006 }
1007
1008 static void
1009 iavf_stat_update_48(uint64_t *offset, uint64_t *stat)
1010 {
1011         if (*stat >= *offset)
1012                 *stat = *stat - *offset;
1013         else
1014                 *stat = (uint64_t)((*stat +
1015                         ((uint64_t)1 << IAVF_48_BIT_WIDTH)) - *offset);
1016
1017         *stat &= IAVF_48_BIT_MASK;
1018 }
1019
1020 static void
1021 iavf_stat_update_32(uint64_t *offset, uint64_t *stat)
1022 {
1023         if (*stat >= *offset)
1024                 *stat = (uint64_t)(*stat - *offset);
1025         else
1026                 *stat = (uint64_t)((*stat +
1027                         ((uint64_t)1 << IAVF_32_BIT_WIDTH)) - *offset);
1028 }
1029
1030 static void
1031 iavf_update_stats(struct iavf_vsi *vsi, struct virtchnl_eth_stats *nes)
1032 {
1033         struct virtchnl_eth_stats *oes = &vsi->eth_stats_offset;
1034
1035         iavf_stat_update_48(&oes->rx_bytes, &nes->rx_bytes);
1036         iavf_stat_update_48(&oes->rx_unicast, &nes->rx_unicast);
1037         iavf_stat_update_48(&oes->rx_multicast, &nes->rx_multicast);
1038         iavf_stat_update_48(&oes->rx_broadcast, &nes->rx_broadcast);
1039         iavf_stat_update_32(&oes->rx_discards, &nes->rx_discards);
1040         iavf_stat_update_48(&oes->tx_bytes, &nes->tx_bytes);
1041         iavf_stat_update_48(&oes->tx_unicast, &nes->tx_unicast);
1042         iavf_stat_update_48(&oes->tx_multicast, &nes->tx_multicast);
1043         iavf_stat_update_48(&oes->tx_broadcast, &nes->tx_broadcast);
1044         iavf_stat_update_32(&oes->tx_errors, &nes->tx_errors);
1045         iavf_stat_update_32(&oes->tx_discards, &nes->tx_discards);
1046 }
1047
1048 static int
1049 iavf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
1050 {
1051         struct iavf_adapter *adapter =
1052                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1053         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1054         struct iavf_vsi *vsi = &vf->vsi;
1055         struct virtchnl_eth_stats *pstats = NULL;
1056         int ret;
1057
1058         ret = iavf_query_stats(adapter, &pstats);
1059         if (ret == 0) {
1060                 iavf_update_stats(vsi, pstats);
1061                 stats->ipackets = pstats->rx_unicast + pstats->rx_multicast +
1062                                                 pstats->rx_broadcast;
1063                 stats->opackets = pstats->tx_broadcast + pstats->tx_multicast +
1064                                                 pstats->tx_unicast;
1065                 stats->imissed = pstats->rx_discards;
1066                 stats->oerrors = pstats->tx_errors + pstats->tx_discards;
1067                 stats->ibytes = pstats->rx_bytes;
1068                 stats->ibytes -= stats->ipackets * RTE_ETHER_CRC_LEN;
1069                 stats->obytes = pstats->tx_bytes;
1070         } else {
1071                 PMD_DRV_LOG(ERR, "Get statistics failed");
1072         }
1073         return -EIO;
1074 }
1075
1076 static int
1077 iavf_dev_stats_reset(struct rte_eth_dev *dev)
1078 {
1079         int ret;
1080         struct iavf_adapter *adapter =
1081                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1082         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1083         struct iavf_vsi *vsi = &vf->vsi;
1084         struct virtchnl_eth_stats *pstats = NULL;
1085
1086         /* read stat values to clear hardware registers */
1087         ret = iavf_query_stats(adapter, &pstats);
1088         if (ret != 0)
1089                 return ret;
1090
1091         /* set stats offset base on current values */
1092         vsi->eth_stats_offset = *pstats;
1093
1094         return 0;
1095 }
1096
1097 static int
1098 iavf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
1099 {
1100         struct iavf_adapter *adapter =
1101                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1102         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1103         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(adapter);
1104         uint16_t msix_intr;
1105
1106         msix_intr = pci_dev->intr_handle.intr_vec[queue_id];
1107         if (msix_intr == IAVF_MISC_VEC_ID) {
1108                 PMD_DRV_LOG(INFO, "MISC is also enabled for control");
1109                 IAVF_WRITE_REG(hw, IAVFINT_DYN_CTL01,
1110                               IAVFINT_DYN_CTL01_INTENA_MASK |
1111                               IAVFINT_DYN_CTL01_CLEARPBA_MASK |
1112                               IAVFINT_DYN_CTL01_ITR_INDX_MASK);
1113         } else {
1114                 IAVF_WRITE_REG(hw,
1115                               IAVFINT_DYN_CTLN1(msix_intr - IAVF_RX_VEC_START),
1116                               IAVFINT_DYN_CTLN1_INTENA_MASK |
1117                               IAVFINT_DYN_CTL01_CLEARPBA_MASK |
1118                               IAVFINT_DYN_CTLN1_ITR_INDX_MASK);
1119         }
1120
1121         IAVF_WRITE_FLUSH(hw);
1122
1123         rte_intr_ack(&pci_dev->intr_handle);
1124
1125         return 0;
1126 }
1127
1128 static int
1129 iavf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
1130 {
1131         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1132         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1133         uint16_t msix_intr;
1134
1135         msix_intr = pci_dev->intr_handle.intr_vec[queue_id];
1136         if (msix_intr == IAVF_MISC_VEC_ID) {
1137                 PMD_DRV_LOG(ERR, "MISC is used for control, cannot disable it");
1138                 return -EIO;
1139         }
1140
1141         IAVF_WRITE_REG(hw,
1142                       IAVFINT_DYN_CTLN1(msix_intr - IAVF_RX_VEC_START),
1143                       0);
1144
1145         IAVF_WRITE_FLUSH(hw);
1146         return 0;
1147 }
1148
1149 static int
1150 iavf_check_vf_reset_done(struct iavf_hw *hw)
1151 {
1152         int i, reset;
1153
1154         for (i = 0; i < IAVF_RESET_WAIT_CNT; i++) {
1155                 reset = IAVF_READ_REG(hw, IAVFGEN_RSTAT) &
1156                         IAVFGEN_RSTAT_VFR_STATE_MASK;
1157                 reset = reset >> IAVFGEN_RSTAT_VFR_STATE_SHIFT;
1158                 if (reset == VIRTCHNL_VFR_VFACTIVE ||
1159                     reset == VIRTCHNL_VFR_COMPLETED)
1160                         break;
1161                 rte_delay_ms(20);
1162         }
1163
1164         if (i >= IAVF_RESET_WAIT_CNT)
1165                 return -1;
1166
1167         return 0;
1168 }
1169
1170 static int
1171 iavf_init_vf(struct rte_eth_dev *dev)
1172 {
1173         int err, bufsz;
1174         struct iavf_adapter *adapter =
1175                 IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1176         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1177         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1178
1179         err = iavf_set_mac_type(hw);
1180         if (err) {
1181                 PMD_INIT_LOG(ERR, "set_mac_type failed: %d", err);
1182                 goto err;
1183         }
1184
1185         err = iavf_check_vf_reset_done(hw);
1186         if (err) {
1187                 PMD_INIT_LOG(ERR, "VF is still resetting");
1188                 goto err;
1189         }
1190
1191         iavf_init_adminq_parameter(hw);
1192         err = iavf_init_adminq(hw);
1193         if (err) {
1194                 PMD_INIT_LOG(ERR, "init_adminq failed: %d", err);
1195                 goto err;
1196         }
1197
1198         vf->aq_resp = rte_zmalloc("vf_aq_resp", IAVF_AQ_BUF_SZ, 0);
1199         if (!vf->aq_resp) {
1200                 PMD_INIT_LOG(ERR, "unable to allocate vf_aq_resp memory");
1201                 goto err_aq;
1202         }
1203         if (iavf_check_api_version(adapter) != 0) {
1204                 PMD_INIT_LOG(ERR, "check_api version failed");
1205                 goto err_api;
1206         }
1207
1208         bufsz = sizeof(struct virtchnl_vf_resource) +
1209                 (IAVF_MAX_VF_VSI * sizeof(struct virtchnl_vsi_resource));
1210         vf->vf_res = rte_zmalloc("vf_res", bufsz, 0);
1211         if (!vf->vf_res) {
1212                 PMD_INIT_LOG(ERR, "unable to allocate vf_res memory");
1213                 goto err_api;
1214         }
1215         if (iavf_get_vf_resource(adapter) != 0) {
1216                 PMD_INIT_LOG(ERR, "iavf_get_vf_config failed");
1217                 goto err_alloc;
1218         }
1219         /* Allocate memort for RSS info */
1220         if (vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF) {
1221                 vf->rss_key = rte_zmalloc("rss_key",
1222                                           vf->vf_res->rss_key_size, 0);
1223                 if (!vf->rss_key) {
1224                         PMD_INIT_LOG(ERR, "unable to allocate rss_key memory");
1225                         goto err_rss;
1226                 }
1227                 vf->rss_lut = rte_zmalloc("rss_lut",
1228                                           vf->vf_res->rss_lut_size, 0);
1229                 if (!vf->rss_lut) {
1230                         PMD_INIT_LOG(ERR, "unable to allocate rss_lut memory");
1231                         goto err_rss;
1232                 }
1233         }
1234         return 0;
1235 err_rss:
1236         rte_free(vf->rss_key);
1237         rte_free(vf->rss_lut);
1238 err_alloc:
1239         rte_free(vf->vf_res);
1240         vf->vsi_res = NULL;
1241 err_api:
1242         rte_free(vf->aq_resp);
1243 err_aq:
1244         iavf_shutdown_adminq(hw);
1245 err:
1246         return -1;
1247 }
1248
1249 /* Enable default admin queue interrupt setting */
1250 static inline void
1251 iavf_enable_irq0(struct iavf_hw *hw)
1252 {
1253         /* Enable admin queue interrupt trigger */
1254         IAVF_WRITE_REG(hw, IAVFINT_ICR0_ENA1, IAVFINT_ICR0_ENA1_ADMINQ_MASK);
1255
1256         IAVF_WRITE_REG(hw, IAVFINT_DYN_CTL01, IAVFINT_DYN_CTL01_INTENA_MASK |
1257                 IAVFINT_DYN_CTL01_CLEARPBA_MASK | IAVFINT_DYN_CTL01_ITR_INDX_MASK);
1258
1259         IAVF_WRITE_FLUSH(hw);
1260 }
1261
1262 static inline void
1263 iavf_disable_irq0(struct iavf_hw *hw)
1264 {
1265         /* Disable all interrupt types */
1266         IAVF_WRITE_REG(hw, IAVFINT_ICR0_ENA1, 0);
1267         IAVF_WRITE_REG(hw, IAVFINT_DYN_CTL01,
1268                       IAVFINT_DYN_CTL01_ITR_INDX_MASK);
1269         IAVF_WRITE_FLUSH(hw);
1270 }
1271
1272 static void
1273 iavf_dev_interrupt_handler(void *param)
1274 {
1275         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1276         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1277
1278         iavf_disable_irq0(hw);
1279
1280         iavf_handle_virtchnl_msg(dev);
1281
1282         iavf_enable_irq0(hw);
1283 }
1284
1285 static int
1286 iavf_dev_init(struct rte_eth_dev *eth_dev)
1287 {
1288         struct iavf_adapter *adapter =
1289                 IAVF_DEV_PRIVATE_TO_ADAPTER(eth_dev->data->dev_private);
1290         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(adapter);
1291         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1292
1293         PMD_INIT_FUNC_TRACE();
1294
1295         /* assign ops func pointer */
1296         eth_dev->dev_ops = &iavf_eth_dev_ops;
1297         eth_dev->rx_pkt_burst = &iavf_recv_pkts;
1298         eth_dev->tx_pkt_burst = &iavf_xmit_pkts;
1299         eth_dev->tx_pkt_prepare = &iavf_prep_pkts;
1300
1301         /* For secondary processes, we don't initialise any further as primary
1302          * has already done this work. Only check if we need a different RX
1303          * and TX function.
1304          */
1305         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1306                 iavf_set_rx_function(eth_dev);
1307                 iavf_set_tx_function(eth_dev);
1308                 return 0;
1309         }
1310         rte_eth_copy_pci_info(eth_dev, pci_dev);
1311
1312         hw->vendor_id = pci_dev->id.vendor_id;
1313         hw->device_id = pci_dev->id.device_id;
1314         hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
1315         hw->subsystem_device_id = pci_dev->id.subsystem_device_id;
1316         hw->bus.bus_id = pci_dev->addr.bus;
1317         hw->bus.device = pci_dev->addr.devid;
1318         hw->bus.func = pci_dev->addr.function;
1319         hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1320         hw->back = IAVF_DEV_PRIVATE_TO_ADAPTER(eth_dev->data->dev_private);
1321         adapter->eth_dev = eth_dev;
1322
1323         if (iavf_init_vf(eth_dev) != 0) {
1324                 PMD_INIT_LOG(ERR, "Init vf failed");
1325                 return -1;
1326         }
1327
1328         /* copy mac addr */
1329         eth_dev->data->mac_addrs = rte_zmalloc(
1330                 "iavf_mac", RTE_ETHER_ADDR_LEN * IAVF_NUM_MACADDR_MAX, 0);
1331         if (!eth_dev->data->mac_addrs) {
1332                 PMD_INIT_LOG(ERR, "Failed to allocate %d bytes needed to"
1333                              " store MAC addresses",
1334                              RTE_ETHER_ADDR_LEN * IAVF_NUM_MACADDR_MAX);
1335                 return -ENOMEM;
1336         }
1337         /* If the MAC address is not configured by host,
1338          * generate a random one.
1339          */
1340         if (!rte_is_valid_assigned_ether_addr(
1341                         (struct rte_ether_addr *)hw->mac.addr))
1342                 rte_eth_random_addr(hw->mac.addr);
1343         rte_ether_addr_copy((struct rte_ether_addr *)hw->mac.addr,
1344                         &eth_dev->data->mac_addrs[0]);
1345
1346         /* register callback func to eal lib */
1347         rte_intr_callback_register(&pci_dev->intr_handle,
1348                                    iavf_dev_interrupt_handler,
1349                                    (void *)eth_dev);
1350
1351         /* enable uio intr after callback register */
1352         rte_intr_enable(&pci_dev->intr_handle);
1353
1354         /* configure and enable device interrupt */
1355         iavf_enable_irq0(hw);
1356
1357         return 0;
1358 }
1359
1360 static void
1361 iavf_dev_close(struct rte_eth_dev *dev)
1362 {
1363         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1364         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1365         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1366
1367         iavf_dev_stop(dev);
1368         iavf_shutdown_adminq(hw);
1369         /* disable uio intr before callback unregister */
1370         rte_intr_disable(intr_handle);
1371
1372         /* unregister callback func from eal lib */
1373         rte_intr_callback_unregister(intr_handle,
1374                                      iavf_dev_interrupt_handler, dev);
1375         iavf_disable_irq0(hw);
1376 }
1377
1378 static int
1379 iavf_dev_uninit(struct rte_eth_dev *dev)
1380 {
1381         struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1382         struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1383
1384         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1385                 return -EPERM;
1386
1387         dev->dev_ops = NULL;
1388         dev->rx_pkt_burst = NULL;
1389         dev->tx_pkt_burst = NULL;
1390         if (hw->adapter_stopped == 0)
1391                 iavf_dev_close(dev);
1392
1393         rte_free(vf->vf_res);
1394         vf->vsi_res = NULL;
1395         vf->vf_res = NULL;
1396
1397         rte_free(vf->aq_resp);
1398         vf->aq_resp = NULL;
1399
1400         if (vf->rss_lut) {
1401                 rte_free(vf->rss_lut);
1402                 vf->rss_lut = NULL;
1403         }
1404         if (vf->rss_key) {
1405                 rte_free(vf->rss_key);
1406                 vf->rss_key = NULL;
1407         }
1408
1409         return 0;
1410 }
1411
1412 static int eth_iavf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1413                              struct rte_pci_device *pci_dev)
1414 {
1415         return rte_eth_dev_pci_generic_probe(pci_dev,
1416                 sizeof(struct iavf_adapter), iavf_dev_init);
1417 }
1418
1419 static int eth_iavf_pci_remove(struct rte_pci_device *pci_dev)
1420 {
1421         return rte_eth_dev_pci_generic_remove(pci_dev, iavf_dev_uninit);
1422 }
1423
1424 /* Adaptive virtual function driver struct */
1425 static struct rte_pci_driver rte_iavf_pmd = {
1426         .id_table = pci_id_iavf_map,
1427         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
1428         .probe = eth_iavf_pci_probe,
1429         .remove = eth_iavf_pci_remove,
1430 };
1431
1432 RTE_PMD_REGISTER_PCI(net_iavf, rte_iavf_pmd);
1433 RTE_PMD_REGISTER_PCI_TABLE(net_iavf, pci_id_iavf_map);
1434 RTE_PMD_REGISTER_KMOD_DEP(net_iavf, "* igb_uio | vfio-pci");
1435 RTE_INIT(iavf_init_log)
1436 {
1437         iavf_logtype_init = rte_log_register("pmd.net.iavf.init");
1438         if (iavf_logtype_init >= 0)
1439                 rte_log_set_level(iavf_logtype_init, RTE_LOG_NOTICE);
1440         iavf_logtype_driver = rte_log_register("pmd.net.iavf.driver");
1441         if (iavf_logtype_driver >= 0)
1442                 rte_log_set_level(iavf_logtype_driver, RTE_LOG_NOTICE);
1443 }
1444
1445 /* memory func for base code */
1446 enum iavf_status_code
1447 iavf_allocate_dma_mem_d(__rte_unused struct iavf_hw *hw,
1448                        struct iavf_dma_mem *mem,
1449                        u64 size,
1450                        u32 alignment)
1451 {
1452         const struct rte_memzone *mz = NULL;
1453         char z_name[RTE_MEMZONE_NAMESIZE];
1454
1455         if (!mem)
1456                 return IAVF_ERR_PARAM;
1457
1458         snprintf(z_name, sizeof(z_name), "iavf_dma_%"PRIu64, rte_rand());
1459         mz = rte_memzone_reserve_bounded(z_name, size, SOCKET_ID_ANY,
1460                         RTE_MEMZONE_IOVA_CONTIG, alignment, RTE_PGSIZE_2M);
1461         if (!mz)
1462                 return IAVF_ERR_NO_MEMORY;
1463
1464         mem->size = size;
1465         mem->va = mz->addr;
1466         mem->pa = mz->phys_addr;
1467         mem->zone = (const void *)mz;
1468         PMD_DRV_LOG(DEBUG,
1469                     "memzone %s allocated with physical address: %"PRIu64,
1470                     mz->name, mem->pa);
1471
1472         return IAVF_SUCCESS;
1473 }
1474
1475 enum iavf_status_code
1476 iavf_free_dma_mem_d(__rte_unused struct iavf_hw *hw,
1477                    struct iavf_dma_mem *mem)
1478 {
1479         if (!mem)
1480                 return IAVF_ERR_PARAM;
1481
1482         PMD_DRV_LOG(DEBUG,
1483                     "memzone %s to be freed with physical address: %"PRIu64,
1484                     ((const struct rte_memzone *)mem->zone)->name, mem->pa);
1485         rte_memzone_free((const struct rte_memzone *)mem->zone);
1486         mem->zone = NULL;
1487         mem->va = NULL;
1488         mem->pa = (u64)0;
1489
1490         return IAVF_SUCCESS;
1491 }
1492
1493 enum iavf_status_code
1494 iavf_allocate_virt_mem_d(__rte_unused struct iavf_hw *hw,
1495                         struct iavf_virt_mem *mem,
1496                         u32 size)
1497 {
1498         if (!mem)
1499                 return IAVF_ERR_PARAM;
1500
1501         mem->size = size;
1502         mem->va = rte_zmalloc("iavf", size, 0);
1503
1504         if (mem->va)
1505                 return IAVF_SUCCESS;
1506         else
1507                 return IAVF_ERR_NO_MEMORY;
1508 }
1509
1510 enum iavf_status_code
1511 iavf_free_virt_mem_d(__rte_unused struct iavf_hw *hw,
1512                     struct iavf_virt_mem *mem)
1513 {
1514         if (!mem)
1515                 return IAVF_ERR_PARAM;
1516
1517         rte_free(mem->va);
1518         mem->va = NULL;
1519
1520         return IAVF_SUCCESS;
1521 }