4 * Copyright 2015 6WIND S.A.
5 * Copyright 2015 Mellanox.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of 6WIND S.A. nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 /* DPDK headers don't like -pedantic. */
41 #pragma GCC diagnostic ignored "-Wpedantic"
43 #include <rte_ethdev.h>
44 #include <rte_common.h>
46 #pragma GCC diagnostic error "-Wpedantic"
49 #include "mlx5_utils.h"
51 #include "mlx5_autoconf.h"
54 * Configure a VLAN filter.
57 * Pointer to Ethernet device structure.
64 * 0 on success, errno value on failure.
67 vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
69 struct priv *priv = dev->data->dev_private;
72 DEBUG("%p: %s VLAN filter ID %" PRIu16,
73 (void *)dev, (on ? "enable" : "disable"), vlan_id);
74 assert(priv->vlan_filter_n <= RTE_DIM(priv->vlan_filter));
75 for (i = 0; (i != priv->vlan_filter_n); ++i)
76 if (priv->vlan_filter[i] == vlan_id)
78 /* Check if there's room for another VLAN filter. */
79 if (i == RTE_DIM(priv->vlan_filter))
81 if (i < priv->vlan_filter_n) {
82 assert(priv->vlan_filter_n != 0);
83 /* Enabling an existing VLAN filter has no effect. */
86 /* Remove VLAN filter from list. */
87 --priv->vlan_filter_n;
88 memmove(&priv->vlan_filter[i],
89 &priv->vlan_filter[i + 1],
90 sizeof(priv->vlan_filter[i]) *
91 (priv->vlan_filter_n - i));
92 priv->vlan_filter[priv->vlan_filter_n] = 0;
94 assert(i == priv->vlan_filter_n);
95 /* Disabling an unknown VLAN filter has no effect. */
98 /* Add new VLAN filter. */
99 priv->vlan_filter[priv->vlan_filter_n] = vlan_id;
100 ++priv->vlan_filter_n;
102 /* Rehash flows in all hash RX queues. */
103 priv_mac_addrs_disable(priv);
104 priv_special_flow_disable_all(priv);
105 return priv_rehash_flows(priv);
109 * DPDK callback to configure a VLAN filter.
112 * Pointer to Ethernet device structure.
119 * 0 on success, negative errno value on failure.
122 mlx5_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
124 struct priv *priv = dev->data->dev_private;
128 ret = vlan_filter_set(dev, vlan_id, on);
135 * Set/reset VLAN stripping for a specific queue.
138 * Pointer to private structure.
142 * Enable/disable VLAN stripping.
145 priv_vlan_strip_queue_set(struct priv *priv, uint16_t idx, int on)
147 struct rxq *rxq = (*priv->rxqs)[idx];
148 struct rxq_ctrl *rxq_ctrl = container_of(rxq, struct rxq_ctrl, rxq);
149 struct ibv_exp_wq_attr mod;
150 uint16_t vlan_offloads =
151 (on ? IBV_EXP_RECEIVE_WQ_CVLAN_STRIP : 0) |
155 DEBUG("set VLAN offloads 0x%x for port %d queue %d",
156 vlan_offloads, rxq->port_id, idx);
157 mod = (struct ibv_exp_wq_attr){
158 .attr_mask = IBV_EXP_WQ_ATTR_VLAN_OFFLOADS,
159 .vlan_offloads = vlan_offloads,
162 err = ibv_exp_modify_wq(rxq_ctrl->wq, &mod);
164 ERROR("%p: failed to modified stripping mode: %s",
165 (void *)priv, strerror(err));
169 /* Update related bits in RX queue. */
170 rxq->vlan_strip = !!on;
174 * Callback to set/reset VLAN stripping for a specific queue.
177 * Pointer to Ethernet device structure.
181 * Enable/disable VLAN stripping.
184 mlx5_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
186 struct priv *priv = dev->data->dev_private;
188 /* Validate hw support */
189 if (!priv->hw_vlan_strip) {
190 ERROR("VLAN stripping is not supported");
194 /* Validate queue number */
195 if (queue >= priv->rxqs_n) {
196 ERROR("VLAN stripping, invalid queue number %d", queue);
201 priv_vlan_strip_queue_set(priv, queue, on);
206 * Callback to set/reset VLAN offloads for a port.
209 * Pointer to Ethernet device structure.
211 * VLAN offload bit mask.
214 mlx5_vlan_offload_set(struct rte_eth_dev *dev, int mask)
216 struct priv *priv = dev->data->dev_private;
219 if (mask & ETH_VLAN_STRIP_MASK) {
220 int hw_vlan_strip = !!dev->data->dev_conf.rxmode.hw_vlan_strip;
222 if (!priv->hw_vlan_strip) {
223 ERROR("VLAN stripping is not supported");
227 /* Run on every RX queue and set/reset VLAN stripping. */
229 for (i = 0; (i != priv->rxqs_n); i++)
230 priv_vlan_strip_queue_set(priv, i, hw_vlan_strip);