ethdev: allow returning error on VLAN offload ops
[dpdk.git] / drivers / net / mlx5 / mlx5_vlan.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2015 6WIND S.A.
5  *   Copyright 2015 Mellanox.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
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
16  *       distribution.
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.
20  *
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.
32  */
33
34 #include <stddef.h>
35 #include <errno.h>
36 #include <assert.h>
37 #include <stdint.h>
38
39 #include <rte_ethdev.h>
40 #include <rte_common.h>
41
42 #include "mlx5_utils.h"
43 #include "mlx5.h"
44 #include "mlx5_autoconf.h"
45
46 /**
47  * DPDK callback to configure a VLAN filter.
48  *
49  * @param dev
50  *   Pointer to Ethernet device structure.
51  * @param vlan_id
52  *   VLAN ID to filter.
53  * @param on
54  *   Toggle filter.
55  *
56  * @return
57  *   0 on success, negative errno value on failure.
58  */
59 int
60 mlx5_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
61 {
62         struct priv *priv = dev->data->dev_private;
63         unsigned int i;
64
65         priv_lock(priv);
66         DEBUG("%p: %s VLAN filter ID %" PRIu16,
67               (void *)dev, (on ? "enable" : "disable"), vlan_id);
68         assert(priv->vlan_filter_n <= RTE_DIM(priv->vlan_filter));
69         for (i = 0; (i != priv->vlan_filter_n); ++i)
70                 if (priv->vlan_filter[i] == vlan_id)
71                         break;
72         if (i < priv->vlan_filter_n) {
73                 assert(priv->vlan_filter_n != 0);
74                 /* Enabling an existing VLAN filter has no effect. */
75                 if (on)
76                         goto out;
77                 /* Remove VLAN filter from list. */
78                 --priv->vlan_filter_n;
79                 memmove(&priv->vlan_filter[i],
80                         &priv->vlan_filter[i + 1],
81                         sizeof(priv->vlan_filter[i]) *
82                         (priv->vlan_filter_n - i));
83                 priv->vlan_filter[priv->vlan_filter_n] = 0;
84         } else {
85                 assert(i == priv->vlan_filter_n);
86                 /* Disabling an unknown VLAN filter has no effect. */
87                 if (!on)
88                         goto out;
89                 /* Add new VLAN filter. */
90                 priv->vlan_filter[priv->vlan_filter_n] = vlan_id;
91                 ++priv->vlan_filter_n;
92         }
93         if (dev->data->dev_started)
94                 priv_dev_traffic_restart(priv, dev);
95 out:
96         priv_unlock(priv);
97         return 0;
98 }
99
100 /**
101  * Set/reset VLAN stripping for a specific queue.
102  *
103  * @param priv
104  *   Pointer to private structure.
105  * @param idx
106  *   RX queue index.
107  * @param on
108  *   Enable/disable VLAN stripping.
109  */
110 static void
111 priv_vlan_strip_queue_set(struct priv *priv, uint16_t idx, int on)
112 {
113         struct mlx5_rxq_data *rxq = (*priv->rxqs)[idx];
114         struct mlx5_rxq_ctrl *rxq_ctrl =
115                 container_of(rxq, struct mlx5_rxq_ctrl, rxq);
116         struct ibv_wq_attr mod;
117         uint16_t vlan_offloads =
118                 (on ? IBV_WQ_FLAGS_CVLAN_STRIPPING : 0) |
119                 0;
120         int err;
121
122         DEBUG("set VLAN offloads 0x%x for port %d queue %d",
123               vlan_offloads, rxq->port_id, idx);
124         mod = (struct ibv_wq_attr){
125                 .attr_mask = IBV_WQ_ATTR_FLAGS,
126                 .flags_mask = IBV_WQ_FLAGS_CVLAN_STRIPPING,
127                 .flags = vlan_offloads,
128         };
129
130         err = ibv_modify_wq(rxq_ctrl->ibv->wq, &mod);
131         if (err) {
132                 ERROR("%p: failed to modified stripping mode: %s",
133                       (void *)priv, strerror(err));
134                 return;
135         }
136
137         /* Update related bits in RX queue. */
138         rxq->vlan_strip = !!on;
139 }
140
141 /**
142  * Callback to set/reset VLAN stripping for a specific queue.
143  *
144  * @param dev
145  *   Pointer to Ethernet device structure.
146  * @param queue
147  *   RX queue index.
148  * @param on
149  *   Enable/disable VLAN stripping.
150  */
151 void
152 mlx5_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
153 {
154         struct priv *priv = dev->data->dev_private;
155
156         /* Validate hw support */
157         if (!priv->hw_vlan_strip) {
158                 ERROR("VLAN stripping is not supported");
159                 return;
160         }
161
162         /* Validate queue number */
163         if (queue >= priv->rxqs_n) {
164                 ERROR("VLAN stripping, invalid queue number %d", queue);
165                 return;
166         }
167
168         priv_lock(priv);
169         priv_vlan_strip_queue_set(priv, queue, on);
170         priv_unlock(priv);
171 }
172
173 /**
174  * Callback to set/reset VLAN offloads for a port.
175  *
176  * @param dev
177  *   Pointer to Ethernet device structure.
178  * @param mask
179  *   VLAN offload bit mask.
180  */
181 int
182 mlx5_vlan_offload_set(struct rte_eth_dev *dev, int mask)
183 {
184         struct priv *priv = dev->data->dev_private;
185         unsigned int i;
186
187         if (mask & ETH_VLAN_STRIP_MASK) {
188                 int hw_vlan_strip = !!dev->data->dev_conf.rxmode.hw_vlan_strip;
189
190                 if (!priv->hw_vlan_strip) {
191                         ERROR("VLAN stripping is not supported");
192                         return 0;
193                 }
194
195                 /* Run on every RX queue and set/reset VLAN stripping. */
196                 priv_lock(priv);
197                 for (i = 0; (i != priv->rxqs_n); i++)
198                         priv_vlan_strip_queue_set(priv, i, hw_vlan_strip);
199                 priv_unlock(priv);
200         }
201
202         return 0;
203 }