[media] cx23885/saa7134: assign q->dev to the PCI device
[cascardo/linux.git] / drivers / net / ethernet / mellanox / mlx5 / core / en_dcbnl.c
1 /*
2  * Copyright (c) 2016, Mellanox Technologies. All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  */
32 #include <linux/device.h>
33 #include <linux/netdevice.h>
34 #include "en.h"
35
36 #define MLX5E_MAX_PRIORITY 8
37
38 #define MLX5E_100MB (100000)
39 #define MLX5E_1GB   (1000000)
40
41 static int mlx5e_dcbnl_ieee_getets(struct net_device *netdev,
42                                    struct ieee_ets *ets)
43 {
44         struct mlx5e_priv *priv = netdev_priv(netdev);
45
46         if (!MLX5_CAP_GEN(priv->mdev, ets))
47                 return -ENOTSUPP;
48
49         memcpy(ets, &priv->params.ets, sizeof(*ets));
50         return 0;
51 }
52
53 enum {
54         MLX5E_VENDOR_TC_GROUP_NUM = 7,
55         MLX5E_ETS_TC_GROUP_NUM    = 0,
56 };
57
58 static void mlx5e_build_tc_group(struct ieee_ets *ets, u8 *tc_group, int max_tc)
59 {
60         bool any_tc_mapped_to_ets = false;
61         int strict_group;
62         int i;
63
64         for (i = 0; i <= max_tc; i++)
65                 if (ets->tc_tsa[i] == IEEE_8021QAZ_TSA_ETS)
66                         any_tc_mapped_to_ets = true;
67
68         strict_group = any_tc_mapped_to_ets ? 1 : 0;
69
70         for (i = 0; i <= max_tc; i++) {
71                 switch (ets->tc_tsa[i]) {
72                 case IEEE_8021QAZ_TSA_VENDOR:
73                         tc_group[i] = MLX5E_VENDOR_TC_GROUP_NUM;
74                         break;
75                 case IEEE_8021QAZ_TSA_STRICT:
76                         tc_group[i] = strict_group++;
77                         break;
78                 case IEEE_8021QAZ_TSA_ETS:
79                         tc_group[i] = MLX5E_ETS_TC_GROUP_NUM;
80                         break;
81                 }
82         }
83 }
84
85 static void mlx5e_build_tc_tx_bw(struct ieee_ets *ets, u8 *tc_tx_bw,
86                                  u8 *tc_group, int max_tc)
87 {
88         int i;
89
90         for (i = 0; i <= max_tc; i++) {
91                 switch (ets->tc_tsa[i]) {
92                 case IEEE_8021QAZ_TSA_VENDOR:
93                         tc_tx_bw[i] = MLX5E_MAX_BW_ALLOC;
94                         break;
95                 case IEEE_8021QAZ_TSA_STRICT:
96                         tc_tx_bw[i] = MLX5E_MAX_BW_ALLOC;
97                         break;
98                 case IEEE_8021QAZ_TSA_ETS:
99                         tc_tx_bw[i] = ets->tc_tx_bw[i];
100                         break;
101                 }
102         }
103 }
104
105 int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets)
106 {
107         struct mlx5_core_dev *mdev = priv->mdev;
108         u8 tc_tx_bw[IEEE_8021QAZ_MAX_TCS];
109         u8 tc_group[IEEE_8021QAZ_MAX_TCS];
110         int max_tc = mlx5_max_tc(mdev);
111         int err;
112
113         if (!MLX5_CAP_GEN(mdev, ets))
114                 return -ENOTSUPP;
115
116         mlx5e_build_tc_group(ets, tc_group, max_tc);
117         mlx5e_build_tc_tx_bw(ets, tc_tx_bw, tc_group, max_tc);
118
119         err = mlx5_set_port_prio_tc(mdev, ets->prio_tc);
120         if (err)
121                 return err;
122
123         err = mlx5_set_port_tc_group(mdev, tc_group);
124         if (err)
125                 return err;
126
127         return mlx5_set_port_tc_bw_alloc(mdev, tc_tx_bw);
128 }
129
130 static int mlx5e_dbcnl_validate_ets(struct ieee_ets *ets)
131 {
132         int bw_sum = 0;
133         int i;
134
135         /* Validate Priority */
136         for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) {
137                 if (ets->prio_tc[i] >= MLX5E_MAX_PRIORITY)
138                         return -EINVAL;
139         }
140
141         /* Validate Bandwidth Sum */
142         for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) {
143                 if (ets->tc_tsa[i] == IEEE_8021QAZ_TSA_ETS) {
144                         if (!ets->tc_tx_bw[i])
145                                 return -EINVAL;
146
147                         bw_sum += ets->tc_tx_bw[i];
148                 }
149         }
150
151         if (bw_sum != 0 && bw_sum != 100)
152                 return -EINVAL;
153         return 0;
154 }
155
156 static int mlx5e_dcbnl_ieee_setets(struct net_device *netdev,
157                                    struct ieee_ets *ets)
158 {
159         struct mlx5e_priv *priv = netdev_priv(netdev);
160         int err;
161
162         err = mlx5e_dbcnl_validate_ets(ets);
163         if (err)
164                 return err;
165
166         err = mlx5e_dcbnl_ieee_setets_core(priv, ets);
167         if (err)
168                 return err;
169
170         memcpy(&priv->params.ets, ets, sizeof(*ets));
171         priv->params.ets.ets_cap = mlx5_max_tc(priv->mdev) + 1;
172
173         return 0;
174 }
175
176 static int mlx5e_dcbnl_ieee_getpfc(struct net_device *dev,
177                                    struct ieee_pfc *pfc)
178 {
179         struct mlx5e_priv *priv = netdev_priv(dev);
180         struct mlx5_core_dev *mdev = priv->mdev;
181         struct mlx5e_pport_stats *pstats = &priv->stats.pport;
182         int i;
183
184         pfc->pfc_cap = mlx5_max_tc(mdev) + 1;
185         for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) {
186                 pfc->requests[i]    = PPORT_PER_PRIO_GET(pstats, i, tx_pause);
187                 pfc->indications[i] = PPORT_PER_PRIO_GET(pstats, i, rx_pause);
188         }
189
190         return mlx5_query_port_pfc(mdev, &pfc->pfc_en, NULL);
191 }
192
193 static int mlx5e_dcbnl_ieee_setpfc(struct net_device *dev,
194                                    struct ieee_pfc *pfc)
195 {
196         struct mlx5e_priv *priv = netdev_priv(dev);
197         struct mlx5_core_dev *mdev = priv->mdev;
198         u8 curr_pfc_en;
199         int ret;
200
201         mlx5_query_port_pfc(mdev, &curr_pfc_en, NULL);
202
203         if (pfc->pfc_en == curr_pfc_en)
204                 return 0;
205
206         ret = mlx5_set_port_pfc(mdev, pfc->pfc_en, pfc->pfc_en);
207         mlx5_toggle_port_link(mdev);
208
209         return ret;
210 }
211
212 static u8 mlx5e_dcbnl_getdcbx(struct net_device *dev)
213 {
214         return DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_IEEE;
215 }
216
217 static u8 mlx5e_dcbnl_setdcbx(struct net_device *dev, u8 mode)
218 {
219         if ((mode & DCB_CAP_DCBX_LLD_MANAGED) ||
220             (mode & DCB_CAP_DCBX_VER_CEE) ||
221             !(mode & DCB_CAP_DCBX_VER_IEEE) ||
222             !(mode & DCB_CAP_DCBX_HOST))
223                 return 1;
224
225         return 0;
226 }
227
228 static int mlx5e_dcbnl_ieee_getmaxrate(struct net_device *netdev,
229                                        struct ieee_maxrate *maxrate)
230 {
231         struct mlx5e_priv *priv    = netdev_priv(netdev);
232         struct mlx5_core_dev *mdev = priv->mdev;
233         u8 max_bw_value[IEEE_8021QAZ_MAX_TCS];
234         u8 max_bw_unit[IEEE_8021QAZ_MAX_TCS];
235         int err;
236         int i;
237
238         err = mlx5_query_port_ets_rate_limit(mdev, max_bw_value, max_bw_unit);
239         if (err)
240                 return err;
241
242         memset(maxrate->tc_maxrate, 0, sizeof(maxrate->tc_maxrate));
243
244         for (i = 0; i <= mlx5_max_tc(mdev); i++) {
245                 switch (max_bw_unit[i]) {
246                 case MLX5_100_MBPS_UNIT:
247                         maxrate->tc_maxrate[i] = max_bw_value[i] * MLX5E_100MB;
248                         break;
249                 case MLX5_GBPS_UNIT:
250                         maxrate->tc_maxrate[i] = max_bw_value[i] * MLX5E_1GB;
251                         break;
252                 case MLX5_BW_NO_LIMIT:
253                         break;
254                 default:
255                         WARN(true, "non-supported BW unit");
256                         break;
257                 }
258         }
259
260         return 0;
261 }
262
263 static int mlx5e_dcbnl_ieee_setmaxrate(struct net_device *netdev,
264                                        struct ieee_maxrate *maxrate)
265 {
266         struct mlx5e_priv *priv    = netdev_priv(netdev);
267         struct mlx5_core_dev *mdev = priv->mdev;
268         u8 max_bw_value[IEEE_8021QAZ_MAX_TCS];
269         u8 max_bw_unit[IEEE_8021QAZ_MAX_TCS];
270         __u64 upper_limit_mbps = roundup(255 * MLX5E_100MB, MLX5E_1GB);
271         int i;
272
273         memset(max_bw_value, 0, sizeof(max_bw_value));
274         memset(max_bw_unit, 0, sizeof(max_bw_unit));
275
276         for (i = 0; i <= mlx5_max_tc(mdev); i++) {
277                 if (!maxrate->tc_maxrate[i]) {
278                         max_bw_unit[i]  = MLX5_BW_NO_LIMIT;
279                         continue;
280                 }
281                 if (maxrate->tc_maxrate[i] < upper_limit_mbps) {
282                         max_bw_value[i] = div_u64(maxrate->tc_maxrate[i],
283                                                   MLX5E_100MB);
284                         max_bw_value[i] = max_bw_value[i] ? max_bw_value[i] : 1;
285                         max_bw_unit[i]  = MLX5_100_MBPS_UNIT;
286                 } else {
287                         max_bw_value[i] = div_u64(maxrate->tc_maxrate[i],
288                                                   MLX5E_1GB);
289                         max_bw_unit[i]  = MLX5_GBPS_UNIT;
290                 }
291         }
292
293         return mlx5_modify_port_ets_rate_limit(mdev, max_bw_value, max_bw_unit);
294 }
295
296 const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops = {
297         .ieee_getets    = mlx5e_dcbnl_ieee_getets,
298         .ieee_setets    = mlx5e_dcbnl_ieee_setets,
299         .ieee_getmaxrate = mlx5e_dcbnl_ieee_getmaxrate,
300         .ieee_setmaxrate = mlx5e_dcbnl_ieee_setmaxrate,
301         .ieee_getpfc    = mlx5e_dcbnl_ieee_getpfc,
302         .ieee_setpfc    = mlx5e_dcbnl_ieee_setpfc,
303         .getdcbx        = mlx5e_dcbnl_getdcbx,
304         .setdcbx        = mlx5e_dcbnl_setdcbx,
305 };