]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.c
ipmi: remove trydefaults parameter and default init
[mirror_ubuntu-artful-kernel.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 enum mlx5_port_status ps;
199 u8 curr_pfc_en;
200 int ret;
201
202 mlx5_query_port_pfc(mdev, &curr_pfc_en, NULL);
203
204 if (pfc->pfc_en == curr_pfc_en)
205 return 0;
206
207 mlx5_query_port_admin_status(mdev, &ps);
208 if (ps == MLX5_PORT_UP)
209 mlx5_set_port_admin_status(mdev, MLX5_PORT_DOWN);
210
211 ret = mlx5_set_port_pfc(mdev, pfc->pfc_en, pfc->pfc_en);
212
213 if (ps == MLX5_PORT_UP)
214 mlx5_set_port_admin_status(mdev, MLX5_PORT_UP);
215
216 return ret;
217 }
218
219 static u8 mlx5e_dcbnl_getdcbx(struct net_device *dev)
220 {
221 return DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_IEEE;
222 }
223
224 static u8 mlx5e_dcbnl_setdcbx(struct net_device *dev, u8 mode)
225 {
226 if ((mode & DCB_CAP_DCBX_LLD_MANAGED) ||
227 (mode & DCB_CAP_DCBX_VER_CEE) ||
228 !(mode & DCB_CAP_DCBX_VER_IEEE) ||
229 !(mode & DCB_CAP_DCBX_HOST))
230 return 1;
231
232 return 0;
233 }
234
235 static int mlx5e_dcbnl_ieee_getmaxrate(struct net_device *netdev,
236 struct ieee_maxrate *maxrate)
237 {
238 struct mlx5e_priv *priv = netdev_priv(netdev);
239 struct mlx5_core_dev *mdev = priv->mdev;
240 u8 max_bw_value[IEEE_8021QAZ_MAX_TCS];
241 u8 max_bw_unit[IEEE_8021QAZ_MAX_TCS];
242 int err;
243 int i;
244
245 err = mlx5_query_port_ets_rate_limit(mdev, max_bw_value, max_bw_unit);
246 if (err)
247 return err;
248
249 memset(maxrate->tc_maxrate, 0, sizeof(maxrate->tc_maxrate));
250
251 for (i = 0; i <= mlx5_max_tc(mdev); i++) {
252 switch (max_bw_unit[i]) {
253 case MLX5_100_MBPS_UNIT:
254 maxrate->tc_maxrate[i] = max_bw_value[i] * MLX5E_100MB;
255 break;
256 case MLX5_GBPS_UNIT:
257 maxrate->tc_maxrate[i] = max_bw_value[i] * MLX5E_1GB;
258 break;
259 case MLX5_BW_NO_LIMIT:
260 break;
261 default:
262 WARN(true, "non-supported BW unit");
263 break;
264 }
265 }
266
267 return 0;
268 }
269
270 static int mlx5e_dcbnl_ieee_setmaxrate(struct net_device *netdev,
271 struct ieee_maxrate *maxrate)
272 {
273 struct mlx5e_priv *priv = netdev_priv(netdev);
274 struct mlx5_core_dev *mdev = priv->mdev;
275 u8 max_bw_value[IEEE_8021QAZ_MAX_TCS];
276 u8 max_bw_unit[IEEE_8021QAZ_MAX_TCS];
277 __u64 upper_limit_mbps = roundup(255 * MLX5E_100MB, MLX5E_1GB);
278 int i;
279
280 memset(max_bw_value, 0, sizeof(max_bw_value));
281 memset(max_bw_unit, 0, sizeof(max_bw_unit));
282
283 for (i = 0; i <= mlx5_max_tc(mdev); i++) {
284 if (!maxrate->tc_maxrate[i]) {
285 max_bw_unit[i] = MLX5_BW_NO_LIMIT;
286 continue;
287 }
288 if (maxrate->tc_maxrate[i] < upper_limit_mbps) {
289 max_bw_value[i] = div_u64(maxrate->tc_maxrate[i],
290 MLX5E_100MB);
291 max_bw_value[i] = max_bw_value[i] ? max_bw_value[i] : 1;
292 max_bw_unit[i] = MLX5_100_MBPS_UNIT;
293 } else {
294 max_bw_value[i] = div_u64(maxrate->tc_maxrate[i],
295 MLX5E_1GB);
296 max_bw_unit[i] = MLX5_GBPS_UNIT;
297 }
298 }
299
300 return mlx5_modify_port_ets_rate_limit(mdev, max_bw_value, max_bw_unit);
301 }
302
303 const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops = {
304 .ieee_getets = mlx5e_dcbnl_ieee_getets,
305 .ieee_setets = mlx5e_dcbnl_ieee_setets,
306 .ieee_getmaxrate = mlx5e_dcbnl_ieee_getmaxrate,
307 .ieee_setmaxrate = mlx5e_dcbnl_ieee_setmaxrate,
308 .ieee_getpfc = mlx5e_dcbnl_ieee_getpfc,
309 .ieee_setpfc = mlx5e_dcbnl_ieee_setpfc,
310 .getdcbx = mlx5e_dcbnl_getdcbx,
311 .setdcbx = mlx5e_dcbnl_setdcbx,
312 };