1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2015 6WIND S.A.
3 * Copyright 2015 Mellanox Technologies, Ltd
11 #include <rte_ethdev_driver.h>
12 #include <rte_common.h>
13 #include <rte_malloc.h>
14 #include <rte_hypervisor.h>
17 #include "mlx5_autoconf.h"
18 #include "mlx5_rxtx.h"
19 #include "mlx5_utils.h"
20 #include "mlx5_devx.h"
23 * DPDK callback to configure a VLAN filter.
26 * Pointer to Ethernet device structure.
33 * 0 on success, a negative errno value otherwise and rte_errno is set.
36 mlx5_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
38 struct mlx5_priv *priv = dev->data->dev_private;
41 DRV_LOG(DEBUG, "port %u %s VLAN filter ID %" PRIu16,
42 dev->data->port_id, (on ? "enable" : "disable"), vlan_id);
43 MLX5_ASSERT(priv->vlan_filter_n <= RTE_DIM(priv->vlan_filter));
44 for (i = 0; (i != priv->vlan_filter_n); ++i)
45 if (priv->vlan_filter[i] == vlan_id)
47 /* Check if there's room for another VLAN filter. */
48 if (i == RTE_DIM(priv->vlan_filter)) {
52 if (i < priv->vlan_filter_n) {
53 MLX5_ASSERT(priv->vlan_filter_n != 0);
54 /* Enabling an existing VLAN filter has no effect. */
57 /* Remove VLAN filter from list. */
58 --priv->vlan_filter_n;
59 memmove(&priv->vlan_filter[i],
60 &priv->vlan_filter[i + 1],
61 sizeof(priv->vlan_filter[i]) *
62 (priv->vlan_filter_n - i));
63 priv->vlan_filter[priv->vlan_filter_n] = 0;
65 MLX5_ASSERT(i == priv->vlan_filter_n);
66 /* Disabling an unknown VLAN filter has no effect. */
69 /* Add new VLAN filter. */
70 priv->vlan_filter[priv->vlan_filter_n] = vlan_id;
71 ++priv->vlan_filter_n;
74 if (dev->data->dev_started)
75 return mlx5_traffic_restart(dev);
80 * Callback to set/reset VLAN stripping for a specific queue.
83 * Pointer to Ethernet device structure.
87 * Enable/disable VLAN stripping.
90 mlx5_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
92 struct mlx5_priv *priv = dev->data->dev_private;
93 struct mlx5_rxq_data *rxq = (*priv->rxqs)[queue];
94 struct mlx5_rxq_ctrl *rxq_ctrl =
95 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
98 /* Validate hw support */
99 if (!priv->config.hw_vlan_strip) {
100 DRV_LOG(ERR, "port %u VLAN stripping is not supported",
104 /* Validate queue number */
105 if (queue >= priv->rxqs_n) {
106 DRV_LOG(ERR, "port %u VLAN stripping, invalid queue number %d",
107 dev->data->port_id, queue);
110 DRV_LOG(DEBUG, "port %u set VLAN stripping offloads %d for port %uqueue %d",
111 dev->data->port_id, on, rxq->port_id, queue);
112 if (!rxq_ctrl->obj) {
113 /* Update related bits in RX queue. */
114 rxq->vlan_strip = !!on;
117 ret = priv->obj_ops->rxq_obj_modify_vlan_strip(rxq_ctrl->obj, on);
119 DRV_LOG(ERR, "port %u failed to modify object %d stripping "
120 "mode: %s", dev->data->port_id,
121 rxq_ctrl->obj->type, strerror(rte_errno));
124 /* Update related bits in RX queue. */
125 rxq->vlan_strip = !!on;
129 * Callback to set/reset VLAN offloads for a port.
132 * Pointer to Ethernet device structure.
134 * VLAN offload bit mask.
137 * 0 on success, a negative errno value otherwise and rte_errno is set.
140 mlx5_vlan_offload_set(struct rte_eth_dev *dev, int mask)
142 struct mlx5_priv *priv = dev->data->dev_private;
145 if (mask & ETH_VLAN_STRIP_MASK) {
146 int hw_vlan_strip = !!(dev->data->dev_conf.rxmode.offloads &
147 DEV_RX_OFFLOAD_VLAN_STRIP);
149 if (!priv->config.hw_vlan_strip) {
150 DRV_LOG(ERR, "port %u VLAN stripping is not supported",
154 /* Run on every RX queue and set/reset VLAN stripping. */
155 for (i = 0; (i != priv->rxqs_n); i++)
156 mlx5_vlan_strip_queue_set(dev, i, hw_vlan_strip);