1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Intel Corporation.
5 #include <rte_bus_pci.h>
6 #include <rte_ethdev.h>
8 #include <rte_malloc.h>
10 #include "base/i40e_type.h"
11 #include "base/virtchnl.h"
12 #include "i40e_ethdev.h"
13 #include "i40e_rxtx.h"
14 #include "rte_pmd_i40e.h"
17 i40e_vf_representor_link_update(struct rte_eth_dev *ethdev,
20 struct i40e_vf_representor *representor = ethdev->data->dev_private;
22 return i40e_dev_link_update(representor->adapter->eth_dev,
26 i40e_vf_representor_dev_infos_get(struct rte_eth_dev *ethdev,
27 struct rte_eth_dev_info *dev_info)
29 struct i40e_vf_representor *representor = ethdev->data->dev_private;
31 /* get dev info for the vdev */
32 dev_info->device = ethdev->device;
34 dev_info->max_rx_queues = ethdev->data->nb_rx_queues;
35 dev_info->max_tx_queues = ethdev->data->nb_tx_queues;
37 dev_info->min_rx_bufsize = I40E_BUF_SIZE_MIN;
38 dev_info->max_rx_pktlen = I40E_FRAME_SIZE_MAX;
39 dev_info->hash_key_size = (I40E_VFQF_HKEY_MAX_INDEX + 1) *
41 dev_info->reta_size = ETH_RSS_RETA_SIZE_64;
42 dev_info->flow_type_rss_offloads = I40E_RSS_OFFLOAD_ALL;
43 dev_info->max_mac_addrs = I40E_NUM_MACADDR_MAX;
44 dev_info->rx_offload_capa =
45 DEV_RX_OFFLOAD_VLAN_STRIP |
46 DEV_RX_OFFLOAD_QINQ_STRIP |
47 DEV_RX_OFFLOAD_IPV4_CKSUM |
48 DEV_RX_OFFLOAD_UDP_CKSUM |
49 DEV_RX_OFFLOAD_TCP_CKSUM;
50 dev_info->tx_offload_capa =
51 DEV_TX_OFFLOAD_MULTI_SEGS |
52 DEV_TX_OFFLOAD_VLAN_INSERT |
53 DEV_TX_OFFLOAD_QINQ_INSERT |
54 DEV_TX_OFFLOAD_IPV4_CKSUM |
55 DEV_TX_OFFLOAD_UDP_CKSUM |
56 DEV_TX_OFFLOAD_TCP_CKSUM |
57 DEV_TX_OFFLOAD_SCTP_CKSUM |
58 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
59 DEV_TX_OFFLOAD_TCP_TSO |
60 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
61 DEV_TX_OFFLOAD_GRE_TNL_TSO |
62 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
63 DEV_TX_OFFLOAD_GENEVE_TNL_TSO;
65 dev_info->default_rxconf = (struct rte_eth_rxconf) {
67 .pthresh = I40E_DEFAULT_RX_PTHRESH,
68 .hthresh = I40E_DEFAULT_RX_HTHRESH,
69 .wthresh = I40E_DEFAULT_RX_WTHRESH,
71 .rx_free_thresh = I40E_DEFAULT_RX_FREE_THRESH,
76 dev_info->default_txconf = (struct rte_eth_txconf) {
78 .pthresh = I40E_DEFAULT_TX_PTHRESH,
79 .hthresh = I40E_DEFAULT_TX_HTHRESH,
80 .wthresh = I40E_DEFAULT_TX_WTHRESH,
82 .tx_free_thresh = I40E_DEFAULT_TX_FREE_THRESH,
83 .tx_rs_thresh = I40E_DEFAULT_TX_RSBIT_THRESH,
87 dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
88 .nb_max = I40E_MAX_RING_DESC,
89 .nb_min = I40E_MIN_RING_DESC,
90 .nb_align = I40E_ALIGN_RING_DESC,
93 dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
94 .nb_max = I40E_MAX_RING_DESC,
95 .nb_min = I40E_MIN_RING_DESC,
96 .nb_align = I40E_ALIGN_RING_DESC,
99 dev_info->switch_info.name =
100 representor->adapter->eth_dev->device->name;
101 dev_info->switch_info.domain_id = representor->switch_domain_id;
102 dev_info->switch_info.port_id = representor->vf_id;
108 i40e_vf_representor_dev_configure(__rte_unused struct rte_eth_dev *dev)
114 i40e_vf_representor_dev_start(__rte_unused struct rte_eth_dev *dev)
120 i40e_vf_representor_dev_stop(__rte_unused struct rte_eth_dev *dev)
125 i40e_vf_representor_rx_queue_setup(__rte_unused struct rte_eth_dev *dev,
126 __rte_unused uint16_t rx_queue_id,
127 __rte_unused uint16_t nb_rx_desc,
128 __rte_unused unsigned int socket_id,
129 __rte_unused const struct rte_eth_rxconf *rx_conf,
130 __rte_unused struct rte_mempool *mb_pool)
136 i40e_vf_representor_tx_queue_setup(__rte_unused struct rte_eth_dev *dev,
137 __rte_unused uint16_t rx_queue_id,
138 __rte_unused uint16_t nb_rx_desc,
139 __rte_unused unsigned int socket_id,
140 __rte_unused const struct rte_eth_txconf *tx_conf)
146 i40evf_stat_update_48(uint64_t *offset,
149 if (*stat >= *offset)
150 *stat = *stat - *offset;
152 *stat = (uint64_t)((*stat +
153 ((uint64_t)1 << I40E_48_BIT_WIDTH)) - *offset);
155 *stat &= I40E_48_BIT_MASK;
159 i40evf_stat_update_32(uint64_t *offset,
162 if (*stat >= *offset)
163 *stat = (uint64_t)(*stat - *offset);
165 *stat = (uint64_t)((*stat +
166 ((uint64_t)1 << I40E_32_BIT_WIDTH)) - *offset);
170 rte_pmd_i40e_get_vf_native_stats(uint16_t port,
172 struct i40e_eth_stats *stats)
174 struct rte_eth_dev *dev;
176 struct i40e_vsi *vsi;
178 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
180 dev = &rte_eth_devices[port];
182 if (!is_i40e_supported(dev))
185 pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
187 if (vf_id >= pf->vf_num || !pf->vfs) {
188 PMD_DRV_LOG(ERR, "Invalid VF ID.");
192 vsi = pf->vfs[vf_id].vsi;
194 PMD_DRV_LOG(ERR, "Invalid VSI.");
198 i40e_update_vsi_stats(vsi);
199 memcpy(stats, &vsi->eth_stats, sizeof(vsi->eth_stats));
205 i40e_vf_representor_stats_get(struct rte_eth_dev *ethdev,
206 struct rte_eth_stats *stats)
208 struct i40e_vf_representor *representor = ethdev->data->dev_private;
209 struct i40e_eth_stats native_stats;
212 ret = rte_pmd_i40e_get_vf_native_stats(
213 representor->adapter->eth_dev->data->port_id,
214 representor->vf_id, &native_stats);
216 i40evf_stat_update_48(
217 &representor->stats_offset.rx_bytes,
218 &native_stats.rx_bytes);
219 i40evf_stat_update_48(
220 &representor->stats_offset.rx_unicast,
221 &native_stats.rx_unicast);
222 i40evf_stat_update_48(
223 &representor->stats_offset.rx_multicast,
224 &native_stats.rx_multicast);
225 i40evf_stat_update_48(
226 &representor->stats_offset.rx_broadcast,
227 &native_stats.rx_broadcast);
228 i40evf_stat_update_32(
229 &representor->stats_offset.rx_discards,
230 &native_stats.rx_discards);
231 i40evf_stat_update_32(
232 &representor->stats_offset.rx_unknown_protocol,
233 &native_stats.rx_unknown_protocol);
234 i40evf_stat_update_48(
235 &representor->stats_offset.tx_bytes,
236 &native_stats.tx_bytes);
237 i40evf_stat_update_48(
238 &representor->stats_offset.tx_unicast,
239 &native_stats.tx_unicast);
240 i40evf_stat_update_48(
241 &representor->stats_offset.tx_multicast,
242 &native_stats.tx_multicast);
243 i40evf_stat_update_48(
244 &representor->stats_offset.tx_broadcast,
245 &native_stats.tx_broadcast);
246 i40evf_stat_update_32(
247 &representor->stats_offset.tx_errors,
248 &native_stats.tx_errors);
249 i40evf_stat_update_32(
250 &representor->stats_offset.tx_discards,
251 &native_stats.tx_discards);
253 stats->ipackets = native_stats.rx_unicast +
254 native_stats.rx_multicast +
255 native_stats.rx_broadcast;
256 stats->opackets = native_stats.tx_unicast +
257 native_stats.tx_multicast +
258 native_stats.tx_broadcast;
259 stats->ibytes = native_stats.rx_bytes;
260 stats->obytes = native_stats.tx_bytes;
261 stats->ierrors = native_stats.rx_discards;
262 stats->oerrors = native_stats.tx_errors + native_stats.tx_discards;
268 i40e_vf_representor_stats_reset(struct rte_eth_dev *ethdev)
270 struct i40e_vf_representor *representor = ethdev->data->dev_private;
272 return rte_pmd_i40e_get_vf_native_stats(
273 representor->adapter->eth_dev->data->port_id,
274 representor->vf_id, &representor->stats_offset);
278 i40e_vf_representor_promiscuous_enable(struct rte_eth_dev *ethdev)
280 struct i40e_vf_representor *representor = ethdev->data->dev_private;
282 return rte_pmd_i40e_set_vf_unicast_promisc(
283 representor->adapter->eth_dev->data->port_id,
284 representor->vf_id, 1);
288 i40e_vf_representor_promiscuous_disable(struct rte_eth_dev *ethdev)
290 struct i40e_vf_representor *representor = ethdev->data->dev_private;
292 return rte_pmd_i40e_set_vf_unicast_promisc(
293 representor->adapter->eth_dev->data->port_id,
294 representor->vf_id, 0);
298 i40e_vf_representor_allmulticast_enable(struct rte_eth_dev *ethdev)
300 struct i40e_vf_representor *representor = ethdev->data->dev_private;
302 return rte_pmd_i40e_set_vf_multicast_promisc(
303 representor->adapter->eth_dev->data->port_id,
304 representor->vf_id, 1);
308 i40e_vf_representor_allmulticast_disable(struct rte_eth_dev *ethdev)
310 struct i40e_vf_representor *representor = ethdev->data->dev_private;
312 return rte_pmd_i40e_set_vf_multicast_promisc(
313 representor->adapter->eth_dev->data->port_id,
314 representor->vf_id, 0);
318 i40e_vf_representor_mac_addr_remove(struct rte_eth_dev *ethdev, uint32_t index)
320 struct i40e_vf_representor *representor = ethdev->data->dev_private;
322 rte_pmd_i40e_remove_vf_mac_addr(
323 representor->adapter->eth_dev->data->port_id,
324 representor->vf_id, ðdev->data->mac_addrs[index]);
328 i40e_vf_representor_mac_addr_set(struct rte_eth_dev *ethdev,
329 struct rte_ether_addr *mac_addr)
331 struct i40e_vf_representor *representor = ethdev->data->dev_private;
333 return rte_pmd_i40e_set_vf_mac_addr(
334 representor->adapter->eth_dev->data->port_id,
335 representor->vf_id, mac_addr);
339 i40e_vf_representor_vlan_filter_set(struct rte_eth_dev *ethdev,
340 uint16_t vlan_id, int on)
342 struct i40e_vf_representor *representor = ethdev->data->dev_private;
343 uint64_t vf_mask = 1ULL << representor->vf_id;
345 return rte_pmd_i40e_set_vf_vlan_filter(
346 representor->adapter->eth_dev->data->port_id,
347 vlan_id, vf_mask, on);
351 i40e_vf_representor_vlan_offload_set(struct rte_eth_dev *ethdev, int mask)
353 struct i40e_vf_representor *representor = ethdev->data->dev_private;
354 struct rte_eth_dev *pdev;
355 struct i40e_pf_vf *vf;
356 struct i40e_vsi *vsi;
360 pdev = representor->adapter->eth_dev;
361 vfid = representor->vf_id;
363 if (!is_i40e_supported(pdev)) {
364 PMD_DRV_LOG(ERR, "Invalid PF dev.");
368 pf = I40E_DEV_PRIVATE_TO_PF(pdev->data->dev_private);
370 if (vfid >= pf->vf_num || !pf->vfs) {
371 PMD_DRV_LOG(ERR, "Invalid VF ID.");
378 PMD_DRV_LOG(ERR, "Invalid VSI.");
382 if (mask & ETH_VLAN_FILTER_MASK) {
383 /* Enable or disable VLAN filtering offload */
384 if (ethdev->data->dev_conf.rxmode.offloads &
385 DEV_RX_OFFLOAD_VLAN_FILTER)
386 return i40e_vsi_config_vlan_filter(vsi, TRUE);
388 return i40e_vsi_config_vlan_filter(vsi, FALSE);
391 if (mask & ETH_VLAN_STRIP_MASK) {
392 /* Enable or disable VLAN stripping offload */
393 if (ethdev->data->dev_conf.rxmode.offloads &
394 DEV_RX_OFFLOAD_VLAN_STRIP)
395 return i40e_vsi_config_vlan_stripping(vsi, TRUE);
397 return i40e_vsi_config_vlan_stripping(vsi, FALSE);
404 i40e_vf_representor_vlan_strip_queue_set(struct rte_eth_dev *ethdev,
405 __rte_unused uint16_t rx_queue_id, int on)
407 struct i40e_vf_representor *representor = ethdev->data->dev_private;
409 rte_pmd_i40e_set_vf_vlan_stripq(
410 representor->adapter->eth_dev->data->port_id,
411 representor->vf_id, on);
415 i40e_vf_representor_vlan_pvid_set(struct rte_eth_dev *ethdev, uint16_t vlan_id,
418 struct i40e_vf_representor *representor = ethdev->data->dev_private;
420 return rte_pmd_i40e_set_vf_vlan_insert(
421 representor->adapter->eth_dev->data->port_id,
422 representor->vf_id, vlan_id);
425 static const struct eth_dev_ops i40e_representor_dev_ops = {
426 .dev_infos_get = i40e_vf_representor_dev_infos_get,
428 .dev_start = i40e_vf_representor_dev_start,
429 .dev_configure = i40e_vf_representor_dev_configure,
430 .dev_stop = i40e_vf_representor_dev_stop,
432 .rx_queue_setup = i40e_vf_representor_rx_queue_setup,
433 .tx_queue_setup = i40e_vf_representor_tx_queue_setup,
435 .link_update = i40e_vf_representor_link_update,
437 .stats_get = i40e_vf_representor_stats_get,
438 .stats_reset = i40e_vf_representor_stats_reset,
440 .promiscuous_enable = i40e_vf_representor_promiscuous_enable,
441 .promiscuous_disable = i40e_vf_representor_promiscuous_disable,
443 .allmulticast_enable = i40e_vf_representor_allmulticast_enable,
444 .allmulticast_disable = i40e_vf_representor_allmulticast_disable,
446 .mac_addr_remove = i40e_vf_representor_mac_addr_remove,
447 .mac_addr_set = i40e_vf_representor_mac_addr_set,
449 .vlan_filter_set = i40e_vf_representor_vlan_filter_set,
450 .vlan_offload_set = i40e_vf_representor_vlan_offload_set,
451 .vlan_strip_queue_set = i40e_vf_representor_vlan_strip_queue_set,
452 .vlan_pvid_set = i40e_vf_representor_vlan_pvid_set
457 i40e_vf_representor_rx_burst(__rte_unused void *rx_queue,
458 __rte_unused struct rte_mbuf **rx_pkts, __rte_unused uint16_t nb_pkts)
464 i40e_vf_representor_tx_burst(__rte_unused void *tx_queue,
465 __rte_unused struct rte_mbuf **tx_pkts, __rte_unused uint16_t nb_pkts)
471 i40e_vf_representor_init(struct rte_eth_dev *ethdev, void *init_params)
473 struct i40e_vf_representor *representor = ethdev->data->dev_private;
476 struct i40e_pf_vf *vf;
477 struct rte_eth_link *link;
480 ((struct i40e_vf_representor *)init_params)->vf_id;
481 representor->switch_domain_id =
482 ((struct i40e_vf_representor *)init_params)->switch_domain_id;
483 representor->adapter =
484 ((struct i40e_vf_representor *)init_params)->adapter;
486 pf = I40E_DEV_PRIVATE_TO_PF(
487 representor->adapter->eth_dev->data->dev_private);
489 if (representor->vf_id >= pf->vf_num)
492 /* Set representor device ops */
493 ethdev->dev_ops = &i40e_representor_dev_ops;
495 /* No data-path, but need stub Rx/Tx functions to avoid crash
496 * when testing with the likes of testpmd.
498 ethdev->rx_pkt_burst = i40e_vf_representor_rx_burst;
499 ethdev->tx_pkt_burst = i40e_vf_representor_tx_burst;
501 vf = &pf->vfs[representor->vf_id];
504 PMD_DRV_LOG(ERR, "Invalid VSI.");
508 ethdev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
509 ethdev->data->representor_id = representor->vf_id;
511 /* Setting the number queues allocated to the VF */
512 ethdev->data->nb_rx_queues = vf->vsi->nb_qps;
513 ethdev->data->nb_tx_queues = vf->vsi->nb_qps;
515 ethdev->data->mac_addrs = &vf->mac_addr;
517 /* Link state. Inherited from PF */
518 link = &representor->adapter->eth_dev->data->dev_link;
520 ethdev->data->dev_link.link_speed = link->link_speed;
521 ethdev->data->dev_link.link_duplex = link->link_duplex;
522 ethdev->data->dev_link.link_status = link->link_status;
523 ethdev->data->dev_link.link_autoneg = link->link_autoneg;
529 i40e_vf_representor_uninit(struct rte_eth_dev *ethdev)
531 /* mac_addrs must not be freed because part of i40e_pf_vf */
532 ethdev->data->mac_addrs = NULL;