net/mlx5e: Support DCBNL IEEE ETS
[deliverable/linux.git] / drivers / net / ethernet / mellanox / mlx5 / core / en_dcbnl.c
CommitLineData
08fb1dac
SM
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
38static int mlx5e_dcbnl_ieee_getets(struct net_device *netdev,
39 struct ieee_ets *ets)
40{
41 struct mlx5e_priv *priv = netdev_priv(netdev);
42
43 if (!MLX5_CAP_GEN(priv->mdev, ets))
44 return -ENOTSUPP;
45
46 memcpy(ets, &priv->params.ets, sizeof(*ets));
47 return 0;
48}
49
50enum {
51 MLX5E_VENDOR_TC_GROUP_NUM = 7,
52 MLX5E_ETS_TC_GROUP_NUM = 0,
53};
54
55static void mlx5e_build_tc_group(struct ieee_ets *ets, u8 *tc_group, int max_tc)
56{
57 bool any_tc_mapped_to_ets = false;
58 int strict_group;
59 int i;
60
61 for (i = 0; i <= max_tc; i++)
62 if (ets->tc_tsa[i] == IEEE_8021QAZ_TSA_ETS)
63 any_tc_mapped_to_ets = true;
64
65 strict_group = any_tc_mapped_to_ets ? 1 : 0;
66
67 for (i = 0; i <= max_tc; i++) {
68 switch (ets->tc_tsa[i]) {
69 case IEEE_8021QAZ_TSA_VENDOR:
70 tc_group[i] = MLX5E_VENDOR_TC_GROUP_NUM;
71 break;
72 case IEEE_8021QAZ_TSA_STRICT:
73 tc_group[i] = strict_group++;
74 break;
75 case IEEE_8021QAZ_TSA_ETS:
76 tc_group[i] = MLX5E_ETS_TC_GROUP_NUM;
77 break;
78 }
79 }
80}
81
82static void mlx5e_build_tc_tx_bw(struct ieee_ets *ets, u8 *tc_tx_bw,
83 u8 *tc_group, int max_tc)
84{
85 int i;
86
87 for (i = 0; i <= max_tc; i++) {
88 switch (ets->tc_tsa[i]) {
89 case IEEE_8021QAZ_TSA_VENDOR:
90 tc_tx_bw[i] = MLX5E_MAX_BW_ALLOC;
91 break;
92 case IEEE_8021QAZ_TSA_STRICT:
93 tc_tx_bw[i] = MLX5E_MAX_BW_ALLOC;
94 break;
95 case IEEE_8021QAZ_TSA_ETS:
96 tc_tx_bw[i] = ets->tc_tx_bw[i] ?: MLX5E_MIN_BW_ALLOC;
97 break;
98 }
99 }
100}
101
102int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets)
103{
104 struct mlx5_core_dev *mdev = priv->mdev;
105 u8 tc_tx_bw[IEEE_8021QAZ_MAX_TCS];
106 u8 tc_group[IEEE_8021QAZ_MAX_TCS];
107 int max_tc = mlx5_max_tc(mdev);
108 int err;
109
110 if (!MLX5_CAP_GEN(mdev, ets))
111 return -ENOTSUPP;
112
113 mlx5e_build_tc_group(ets, tc_group, max_tc);
114 mlx5e_build_tc_tx_bw(ets, tc_tx_bw, tc_group, max_tc);
115
116 err = mlx5_set_port_prio_tc(mdev, ets->prio_tc);
117 if (err)
118 return err;
119
120 err = mlx5_set_port_tc_group(mdev, tc_group);
121 if (err)
122 return err;
123
124 return mlx5_set_port_tc_bw_alloc(mdev, tc_tx_bw);
125}
126
127static int mlx5e_dbcnl_validate_ets(struct ieee_ets *ets)
128{
129 int bw_sum = 0;
130 int i;
131
132 /* Validate Priority */
133 for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) {
134 if (ets->prio_tc[i] >= MLX5E_MAX_PRIORITY)
135 return -EINVAL;
136 }
137
138 /* Validate Bandwidth Sum */
139 for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) {
140 if (ets->tc_tsa[i] == IEEE_8021QAZ_TSA_ETS)
141 bw_sum += ets->tc_tx_bw[i];
142 }
143
144 if (bw_sum != 0 && bw_sum != 100)
145 return -EINVAL;
146 return 0;
147}
148
149static int mlx5e_dcbnl_ieee_setets(struct net_device *netdev,
150 struct ieee_ets *ets)
151{
152 struct mlx5e_priv *priv = netdev_priv(netdev);
153 int err;
154
155 err = mlx5e_dbcnl_validate_ets(ets);
156 if (err)
157 return err;
158
159 err = mlx5e_dcbnl_ieee_setets_core(priv, ets);
160 if (err)
161 return err;
162
163 memcpy(&priv->params.ets, ets, sizeof(*ets));
164 priv->params.ets.ets_cap = mlx5_max_tc(priv->mdev) + 1;
165
166 return 0;
167}
168
169static u8 mlx5e_dcbnl_getdcbx(struct net_device *dev)
170{
171 return DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_IEEE;
172}
173
174static u8 mlx5e_dcbnl_setdcbx(struct net_device *dev, u8 mode)
175{
176 if ((mode & DCB_CAP_DCBX_LLD_MANAGED) ||
177 (mode & DCB_CAP_DCBX_VER_CEE) ||
178 !(mode & DCB_CAP_DCBX_VER_IEEE) ||
179 !(mode & DCB_CAP_DCBX_HOST))
180 return 1;
181
182 return 0;
183}
184
185const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops = {
186 .ieee_getets = mlx5e_dcbnl_ieee_getets,
187 .ieee_setets = mlx5e_dcbnl_ieee_setets,
188 .getdcbx = mlx5e_dcbnl_getdcbx,
189 .setdcbx = mlx5e_dcbnl_setdcbx,
190};
This page took 0.035697 seconds and 5 git commands to generate.