net/mlx5e: Support DCBNL IEEE ETS
[deliverable/linux.git] / drivers / net / ethernet / mellanox / mlx5 / core / port.c
CommitLineData
e126ba97 1/*
302bdf68 2 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
e126ba97
EC
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
33#include <linux/module.h>
34#include <linux/mlx5/driver.h>
ada68c31 35#include <linux/mlx5/port.h>
e126ba97
EC
36#include <linux/mlx5/cmd.h>
37#include "mlx5_core.h"
38
39int mlx5_core_access_reg(struct mlx5_core_dev *dev, void *data_in,
40 int size_in, void *data_out, int size_out,
41 u16 reg_num, int arg, int write)
42{
43 struct mlx5_access_reg_mbox_in *in = NULL;
44 struct mlx5_access_reg_mbox_out *out = NULL;
45 int err = -ENOMEM;
46
47 in = mlx5_vzalloc(sizeof(*in) + size_in);
48 if (!in)
49 return -ENOMEM;
50
51 out = mlx5_vzalloc(sizeof(*out) + size_out);
52 if (!out)
53 goto ex1;
54
55 memcpy(in->data, data_in, size_in);
56 in->hdr.opcode = cpu_to_be16(MLX5_CMD_OP_ACCESS_REG);
57 in->hdr.opmod = cpu_to_be16(!write);
58 in->arg = cpu_to_be32(arg);
59 in->register_id = cpu_to_be16(reg_num);
60 err = mlx5_cmd_exec(dev, in, sizeof(*in) + size_in, out,
e08a8761 61 sizeof(*out) + size_out);
e126ba97
EC
62 if (err)
63 goto ex2;
64
65 if (out->hdr.status)
66 err = mlx5_cmd_status_to_err(&out->hdr);
67
68 if (!err)
69 memcpy(data_out, out->data, size_out);
70
71ex2:
479163f4 72 kvfree(out);
e126ba97 73ex1:
479163f4 74 kvfree(in);
e126ba97
EC
75 return err;
76}
77EXPORT_SYMBOL_GPL(mlx5_core_access_reg);
78
79
80struct mlx5_reg_pcap {
81 u8 rsvd0;
82 u8 port_num;
83 u8 rsvd1[2];
84 __be32 caps_127_96;
85 __be32 caps_95_64;
86 __be32 caps_63_32;
87 __be32 caps_31_0;
88};
89
f241e749 90int mlx5_set_port_caps(struct mlx5_core_dev *dev, u8 port_num, u32 caps)
e126ba97
EC
91{
92 struct mlx5_reg_pcap in;
93 struct mlx5_reg_pcap out;
e126ba97
EC
94
95 memset(&in, 0, sizeof(in));
96 in.caps_127_96 = cpu_to_be32(caps);
97 in.port_num = port_num;
98
6c3dbd2d
AS
99 return mlx5_core_access_reg(dev, &in, sizeof(in), &out,
100 sizeof(out), MLX5_REG_PCAP, 0, 1);
e126ba97
EC
101}
102EXPORT_SYMBOL_GPL(mlx5_set_port_caps);
adb0c954
SM
103
104int mlx5_query_port_ptys(struct mlx5_core_dev *dev, u32 *ptys,
a05bdefa 105 int ptys_size, int proto_mask, u8 local_port)
adb0c954
SM
106{
107 u32 in[MLX5_ST_SZ_DW(ptys_reg)];
adb0c954
SM
108
109 memset(in, 0, sizeof(in));
a05bdefa 110 MLX5_SET(ptys_reg, in, local_port, local_port);
adb0c954
SM
111 MLX5_SET(ptys_reg, in, proto_mask, proto_mask);
112
6c3dbd2d
AS
113 return mlx5_core_access_reg(dev, in, sizeof(in), ptys,
114 ptys_size, MLX5_REG_PTYS, 0, 0);
adb0c954
SM
115}
116EXPORT_SYMBOL_GPL(mlx5_query_port_ptys);
117
118int mlx5_query_port_proto_cap(struct mlx5_core_dev *dev,
119 u32 *proto_cap, int proto_mask)
120{
121 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
122 int err;
123
a05bdefa 124 err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1);
adb0c954
SM
125 if (err)
126 return err;
127
128 if (proto_mask == MLX5_PTYS_EN)
129 *proto_cap = MLX5_GET(ptys_reg, out, eth_proto_capability);
130 else
131 *proto_cap = MLX5_GET(ptys_reg, out, ib_proto_capability);
132
133 return 0;
134}
135EXPORT_SYMBOL_GPL(mlx5_query_port_proto_cap);
136
137int mlx5_query_port_proto_admin(struct mlx5_core_dev *dev,
138 u32 *proto_admin, int proto_mask)
139{
140 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
141 int err;
142
a05bdefa 143 err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1);
adb0c954
SM
144 if (err)
145 return err;
146
147 if (proto_mask == MLX5_PTYS_EN)
148 *proto_admin = MLX5_GET(ptys_reg, out, eth_proto_admin);
149 else
150 *proto_admin = MLX5_GET(ptys_reg, out, ib_proto_admin);
151
152 return 0;
153}
154EXPORT_SYMBOL_GPL(mlx5_query_port_proto_admin);
155
a124d13e
MD
156int mlx5_query_port_link_width_oper(struct mlx5_core_dev *dev,
157 u8 *link_width_oper, u8 local_port)
158{
159 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
160 int err;
161
162 err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_IB, local_port);
163 if (err)
164 return err;
165
166 *link_width_oper = MLX5_GET(ptys_reg, out, ib_link_width_oper);
167
168 return 0;
169}
170EXPORT_SYMBOL_GPL(mlx5_query_port_link_width_oper);
171
172int mlx5_query_port_proto_oper(struct mlx5_core_dev *dev,
173 u8 *proto_oper, int proto_mask,
174 u8 local_port)
175{
176 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
177 int err;
178
179 err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, local_port);
180 if (err)
181 return err;
182
183 if (proto_mask == MLX5_PTYS_EN)
184 *proto_oper = MLX5_GET(ptys_reg, out, eth_proto_oper);
185 else
186 *proto_oper = MLX5_GET(ptys_reg, out, ib_proto_oper);
187
188 return 0;
189}
190EXPORT_SYMBOL_GPL(mlx5_query_port_proto_oper);
191
adb0c954
SM
192int mlx5_set_port_proto(struct mlx5_core_dev *dev, u32 proto_admin,
193 int proto_mask)
194{
195 u32 in[MLX5_ST_SZ_DW(ptys_reg)];
196 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
adb0c954
SM
197
198 memset(in, 0, sizeof(in));
199
200 MLX5_SET(ptys_reg, in, local_port, 1);
201 MLX5_SET(ptys_reg, in, proto_mask, proto_mask);
202 if (proto_mask == MLX5_PTYS_EN)
203 MLX5_SET(ptys_reg, in, eth_proto_admin, proto_admin);
204 else
205 MLX5_SET(ptys_reg, in, ib_proto_admin, proto_admin);
206
6c3dbd2d
AS
207 return mlx5_core_access_reg(dev, in, sizeof(in), out,
208 sizeof(out), MLX5_REG_PTYS, 0, 1);
adb0c954
SM
209}
210EXPORT_SYMBOL_GPL(mlx5_set_port_proto);
4c916a79 211
6fa1bcab
AS
212int mlx5_set_port_admin_status(struct mlx5_core_dev *dev,
213 enum mlx5_port_status status)
4c916a79
RS
214{
215 u32 in[MLX5_ST_SZ_DW(paos_reg)];
216 u32 out[MLX5_ST_SZ_DW(paos_reg)];
217
218 memset(in, 0, sizeof(in));
219
6fa1bcab 220 MLX5_SET(paos_reg, in, local_port, 1);
4c916a79
RS
221 MLX5_SET(paos_reg, in, admin_status, status);
222 MLX5_SET(paos_reg, in, ase, 1);
223
224 return mlx5_core_access_reg(dev, in, sizeof(in), out,
225 sizeof(out), MLX5_REG_PAOS, 0, 1);
226}
6fa1bcab 227EXPORT_SYMBOL_GPL(mlx5_set_port_admin_status);
4c916a79 228
6fa1bcab
AS
229int mlx5_query_port_admin_status(struct mlx5_core_dev *dev,
230 enum mlx5_port_status *status)
4c916a79
RS
231{
232 u32 in[MLX5_ST_SZ_DW(paos_reg)];
233 u32 out[MLX5_ST_SZ_DW(paos_reg)];
234 int err;
235
236 memset(in, 0, sizeof(in));
237
6fa1bcab
AS
238 MLX5_SET(paos_reg, in, local_port, 1);
239
4c916a79
RS
240 err = mlx5_core_access_reg(dev, in, sizeof(in), out,
241 sizeof(out), MLX5_REG_PAOS, 0, 0);
242 if (err)
243 return err;
244
6fa1bcab 245 *status = MLX5_GET(paos_reg, out, admin_status);
6c3dbd2d 246 return 0;
4c916a79 247}
6fa1bcab 248EXPORT_SYMBOL_GPL(mlx5_query_port_admin_status);
e725440e 249
facc9699
SM
250static void mlx5_query_port_mtu(struct mlx5_core_dev *dev, int *admin_mtu,
251 int *max_mtu, int *oper_mtu, u8 port)
e725440e
SM
252{
253 u32 in[MLX5_ST_SZ_DW(pmtu_reg)];
254 u32 out[MLX5_ST_SZ_DW(pmtu_reg)];
e725440e
SM
255
256 memset(in, 0, sizeof(in));
257
facc9699 258 MLX5_SET(pmtu_reg, in, local_port, port);
e725440e 259
facc9699
SM
260 mlx5_core_access_reg(dev, in, sizeof(in), out,
261 sizeof(out), MLX5_REG_PMTU, 0, 0);
e725440e
SM
262
263 if (max_mtu)
264 *max_mtu = MLX5_GET(pmtu_reg, out, max_mtu);
265 if (oper_mtu)
266 *oper_mtu = MLX5_GET(pmtu_reg, out, oper_mtu);
267 if (admin_mtu)
268 *admin_mtu = MLX5_GET(pmtu_reg, out, admin_mtu);
e725440e
SM
269}
270
facc9699 271int mlx5_set_port_mtu(struct mlx5_core_dev *dev, int mtu, u8 port)
e725440e
SM
272{
273 u32 in[MLX5_ST_SZ_DW(pmtu_reg)];
274 u32 out[MLX5_ST_SZ_DW(pmtu_reg)];
275
276 memset(in, 0, sizeof(in));
277
278 MLX5_SET(pmtu_reg, in, admin_mtu, mtu);
facc9699 279 MLX5_SET(pmtu_reg, in, local_port, port);
e725440e 280
facc9699
SM
281 return mlx5_core_access_reg(dev, in, sizeof(in), out,
282 sizeof(out), MLX5_REG_PMTU, 0, 1);
e725440e
SM
283}
284EXPORT_SYMBOL_GPL(mlx5_set_port_mtu);
285
facc9699
SM
286void mlx5_query_port_max_mtu(struct mlx5_core_dev *dev, int *max_mtu,
287 u8 port)
e725440e 288{
facc9699 289 mlx5_query_port_mtu(dev, NULL, max_mtu, NULL, port);
e725440e
SM
290}
291EXPORT_SYMBOL_GPL(mlx5_query_port_max_mtu);
292
facc9699
SM
293void mlx5_query_port_oper_mtu(struct mlx5_core_dev *dev, int *oper_mtu,
294 u8 port)
e725440e 295{
facc9699 296 mlx5_query_port_mtu(dev, NULL, NULL, oper_mtu, port);
e725440e
SM
297}
298EXPORT_SYMBOL_GPL(mlx5_query_port_oper_mtu);
a124d13e
MD
299
300static int mlx5_query_port_pvlc(struct mlx5_core_dev *dev, u32 *pvlc,
301 int pvlc_size, u8 local_port)
302{
303 u32 in[MLX5_ST_SZ_DW(pvlc_reg)];
a124d13e
MD
304
305 memset(in, 0, sizeof(in));
13b79388 306 MLX5_SET(pvlc_reg, in, local_port, local_port);
a124d13e 307
6c3dbd2d
AS
308 return mlx5_core_access_reg(dev, in, sizeof(in), pvlc,
309 pvlc_size, MLX5_REG_PVLC, 0, 0);
a124d13e
MD
310}
311
312int mlx5_query_port_vl_hw_cap(struct mlx5_core_dev *dev,
313 u8 *vl_hw_cap, u8 local_port)
314{
315 u32 out[MLX5_ST_SZ_DW(pvlc_reg)];
316 int err;
317
318 err = mlx5_query_port_pvlc(dev, out, sizeof(out), local_port);
319 if (err)
320 return err;
321
322 *vl_hw_cap = MLX5_GET(pvlc_reg, out, vl_hw_cap);
323
324 return 0;
325}
326EXPORT_SYMBOL_GPL(mlx5_query_port_vl_hw_cap);
3c2d18ef
AS
327
328int mlx5_set_port_pause(struct mlx5_core_dev *dev, u32 rx_pause, u32 tx_pause)
329{
330 u32 in[MLX5_ST_SZ_DW(pfcc_reg)];
331 u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
3c2d18ef
AS
332
333 memset(in, 0, sizeof(in));
334 MLX5_SET(pfcc_reg, in, local_port, 1);
335 MLX5_SET(pfcc_reg, in, pptx, tx_pause);
336 MLX5_SET(pfcc_reg, in, pprx, rx_pause);
337
6c3dbd2d
AS
338 return mlx5_core_access_reg(dev, in, sizeof(in), out,
339 sizeof(out), MLX5_REG_PFCC, 0, 1);
3c2d18ef
AS
340}
341EXPORT_SYMBOL_GPL(mlx5_set_port_pause);
342
343int mlx5_query_port_pause(struct mlx5_core_dev *dev,
344 u32 *rx_pause, u32 *tx_pause)
345{
346 u32 in[MLX5_ST_SZ_DW(pfcc_reg)];
347 u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
348 int err;
349
350 memset(in, 0, sizeof(in));
351 MLX5_SET(pfcc_reg, in, local_port, 1);
352
353 err = mlx5_core_access_reg(dev, in, sizeof(in), out,
354 sizeof(out), MLX5_REG_PFCC, 0, 0);
355 if (err)
356 return err;
357
358 if (rx_pause)
359 *rx_pause = MLX5_GET(pfcc_reg, out, pprx);
360
361 if (tx_pause)
362 *tx_pause = MLX5_GET(pfcc_reg, out, pptx);
363
364 return 0;
365}
366EXPORT_SYMBOL_GPL(mlx5_query_port_pause);
ad909eb0
AS
367
368int mlx5_set_port_pfc(struct mlx5_core_dev *dev, u8 pfc_en_tx, u8 pfc_en_rx)
369{
370 u32 in[MLX5_ST_SZ_DW(pfcc_reg)];
371 u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
372
373 memset(in, 0, sizeof(in));
374 MLX5_SET(pfcc_reg, in, local_port, 1);
375 MLX5_SET(pfcc_reg, in, pfctx, pfc_en_tx);
376 MLX5_SET(pfcc_reg, in, pfcrx, pfc_en_rx);
377 MLX5_SET_TO_ONES(pfcc_reg, in, prio_mask_tx);
378 MLX5_SET_TO_ONES(pfcc_reg, in, prio_mask_rx);
379
380 return mlx5_core_access_reg(dev, in, sizeof(in), out,
381 sizeof(out), MLX5_REG_PFCC, 0, 1);
382}
383EXPORT_SYMBOL_GPL(mlx5_set_port_pfc);
384
385int mlx5_query_port_pfc(struct mlx5_core_dev *dev, u8 *pfc_en_tx, u8 *pfc_en_rx)
386{
387 u32 in[MLX5_ST_SZ_DW(pfcc_reg)];
388 u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
389 int err;
390
391 memset(in, 0, sizeof(in));
392 MLX5_SET(pfcc_reg, in, local_port, 1);
393
394 err = mlx5_core_access_reg(dev, in, sizeof(in), out,
395 sizeof(out), MLX5_REG_PFCC, 0, 0);
396 if (err)
397 return err;
398
399 if (pfc_en_tx)
400 *pfc_en_tx = MLX5_GET(pfcc_reg, out, pfctx);
401
402 if (pfc_en_rx)
403 *pfc_en_rx = MLX5_GET(pfcc_reg, out, pfcrx);
404
405 return 0;
406}
407EXPORT_SYMBOL_GPL(mlx5_query_port_pfc);
4f3961ee
SM
408
409int mlx5_max_tc(struct mlx5_core_dev *mdev)
410{
411 u8 num_tc = MLX5_CAP_GEN(mdev, max_tc) ? : 8;
412
413 return num_tc - 1;
414}
415
416int mlx5_set_port_prio_tc(struct mlx5_core_dev *mdev, u8 *prio_tc)
417{
418 u32 in[MLX5_ST_SZ_DW(qtct_reg)];
419 u32 out[MLX5_ST_SZ_DW(qtct_reg)];
420 int err;
421 int i;
422
423 memset(in, 0, sizeof(in));
424 for (i = 0; i < 8; i++) {
425 if (prio_tc[i] > mlx5_max_tc(mdev))
426 return -EINVAL;
427
428 MLX5_SET(qtct_reg, in, prio, i);
429 MLX5_SET(qtct_reg, in, tclass, prio_tc[i]);
430
431 err = mlx5_core_access_reg(mdev, in, sizeof(in), out,
432 sizeof(out), MLX5_REG_QTCT, 0, 1);
433 if (err)
434 return err;
435 }
436
437 return 0;
438}
439EXPORT_SYMBOL_GPL(mlx5_set_port_prio_tc);
440
441static int mlx5_set_port_qetcr_reg(struct mlx5_core_dev *mdev, u32 *in,
442 int inlen)
443{
444 u32 out[MLX5_ST_SZ_DW(qtct_reg)];
445
446 if (!MLX5_CAP_GEN(mdev, ets))
447 return -ENOTSUPP;
448
449 return mlx5_core_access_reg(mdev, in, inlen, out, sizeof(out),
450 MLX5_REG_QETCR, 0, 1);
451}
452
453int mlx5_set_port_tc_group(struct mlx5_core_dev *mdev, u8 *tc_group)
454{
455 u32 in[MLX5_ST_SZ_DW(qetc_reg)];
456 int i;
457
458 memset(in, 0, sizeof(in));
459
460 for (i = 0; i <= mlx5_max_tc(mdev); i++) {
461 MLX5_SET(qetc_reg, in, tc_configuration[i].g, 1);
462 MLX5_SET(qetc_reg, in, tc_configuration[i].group, tc_group[i]);
463 }
464
465 return mlx5_set_port_qetcr_reg(mdev, in, sizeof(in));
466}
467EXPORT_SYMBOL_GPL(mlx5_set_port_tc_group);
468
469int mlx5_set_port_tc_bw_alloc(struct mlx5_core_dev *mdev, u8 *tc_bw)
470{
471 u32 in[MLX5_ST_SZ_DW(qetc_reg)];
472 int i;
473
474 memset(in, 0, sizeof(in));
475
476 for (i = 0; i <= mlx5_max_tc(mdev); i++) {
477 MLX5_SET(qetc_reg, in, tc_configuration[i].b, 1);
478 MLX5_SET(qetc_reg, in, tc_configuration[i].bw_allocation, tc_bw[i]);
479 }
480
481 return mlx5_set_port_qetcr_reg(mdev, in, sizeof(in));
482}
483EXPORT_SYMBOL_GPL(mlx5_set_port_tc_bw_alloc);
This page took 0.278257 seconds and 5 git commands to generate.