2 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
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:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
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.
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
33 #include <linux/module.h>
34 #include <linux/mlx5/driver.h>
35 #include <linux/mlx5/port.h>
36 #include <linux/mlx5/cmd.h>
37 #include "mlx5_core.h"
39 int 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_id, int arg, int write)
43 int outlen = MLX5_ST_SZ_BYTES(access_register_out) + size_out;
44 int inlen = MLX5_ST_SZ_BYTES(access_register_in) + size_in;
50 in = kvzalloc(inlen, GFP_KERNEL);
51 out = kvzalloc(outlen, GFP_KERNEL);
55 data = MLX5_ADDR_OF(access_register_in, in, register_data);
56 memcpy(data, data_in, size_in);
58 MLX5_SET(access_register_in, in, opcode, MLX5_CMD_OP_ACCESS_REG);
59 MLX5_SET(access_register_in, in, op_mod, !write);
60 MLX5_SET(access_register_in, in, argument, arg);
61 MLX5_SET(access_register_in, in, register_id, reg_id);
63 err = mlx5_cmd_exec(dev, in, inlen, out, outlen);
67 data = MLX5_ADDR_OF(access_register_out, out, register_data);
68 memcpy(data_out, data, size_out);
75 EXPORT_SYMBOL_GPL(mlx5_core_access_reg);
77 int mlx5_query_pcam_reg(struct mlx5_core_dev *dev, u32 *pcam, u8 feature_group,
80 u32 in[MLX5_ST_SZ_DW(pcam_reg)] = {0};
81 int sz = MLX5_ST_SZ_BYTES(pcam_reg);
83 MLX5_SET(pcam_reg, in, feature_group, feature_group);
84 MLX5_SET(pcam_reg, in, access_reg_group, access_reg_group);
86 return mlx5_core_access_reg(dev, in, sz, pcam, sz, MLX5_REG_PCAM, 0, 0);
89 int mlx5_query_mcam_reg(struct mlx5_core_dev *dev, u32 *mcam, u8 feature_group,
92 u32 in[MLX5_ST_SZ_DW(mcam_reg)] = {0};
93 int sz = MLX5_ST_SZ_BYTES(mcam_reg);
95 MLX5_SET(mcam_reg, in, feature_group, feature_group);
96 MLX5_SET(mcam_reg, in, access_reg_group, access_reg_group);
98 return mlx5_core_access_reg(dev, in, sz, mcam, sz, MLX5_REG_MCAM, 0, 0);
101 struct mlx5_reg_pcap {
111 int mlx5_set_port_caps(struct mlx5_core_dev *dev, u8 port_num, u32 caps)
113 struct mlx5_reg_pcap in;
114 struct mlx5_reg_pcap out;
116 memset(&in, 0, sizeof(in));
117 in.caps_127_96 = cpu_to_be32(caps);
118 in.port_num = port_num;
120 return mlx5_core_access_reg(dev, &in, sizeof(in), &out,
121 sizeof(out), MLX5_REG_PCAP, 0, 1);
123 EXPORT_SYMBOL_GPL(mlx5_set_port_caps);
125 int mlx5_query_port_ptys(struct mlx5_core_dev *dev, u32 *ptys,
126 int ptys_size, int proto_mask, u8 local_port)
128 u32 in[MLX5_ST_SZ_DW(ptys_reg)] = {0};
130 MLX5_SET(ptys_reg, in, local_port, local_port);
131 MLX5_SET(ptys_reg, in, proto_mask, proto_mask);
132 return mlx5_core_access_reg(dev, in, sizeof(in), ptys,
133 ptys_size, MLX5_REG_PTYS, 0, 0);
135 EXPORT_SYMBOL_GPL(mlx5_query_port_ptys);
137 int mlx5_set_port_beacon(struct mlx5_core_dev *dev, u16 beacon_duration)
139 u32 in[MLX5_ST_SZ_DW(mlcr_reg)] = {0};
140 u32 out[MLX5_ST_SZ_DW(mlcr_reg)];
142 MLX5_SET(mlcr_reg, in, local_port, 1);
143 MLX5_SET(mlcr_reg, in, beacon_duration, beacon_duration);
144 return mlx5_core_access_reg(dev, in, sizeof(in), out,
145 sizeof(out), MLX5_REG_MLCR, 0, 1);
148 int mlx5_query_port_proto_cap(struct mlx5_core_dev *dev,
149 u32 *proto_cap, int proto_mask)
151 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
154 err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1);
158 if (proto_mask == MLX5_PTYS_EN)
159 *proto_cap = MLX5_GET(ptys_reg, out, eth_proto_capability);
161 *proto_cap = MLX5_GET(ptys_reg, out, ib_proto_capability);
165 EXPORT_SYMBOL_GPL(mlx5_query_port_proto_cap);
167 int mlx5_query_port_proto_admin(struct mlx5_core_dev *dev,
168 u32 *proto_admin, int proto_mask)
170 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
173 err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1);
177 if (proto_mask == MLX5_PTYS_EN)
178 *proto_admin = MLX5_GET(ptys_reg, out, eth_proto_admin);
180 *proto_admin = MLX5_GET(ptys_reg, out, ib_proto_admin);
184 EXPORT_SYMBOL_GPL(mlx5_query_port_proto_admin);
186 int mlx5_query_port_link_width_oper(struct mlx5_core_dev *dev,
187 u8 *link_width_oper, u8 local_port)
189 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
192 err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_IB, local_port);
196 *link_width_oper = MLX5_GET(ptys_reg, out, ib_link_width_oper);
200 EXPORT_SYMBOL_GPL(mlx5_query_port_link_width_oper);
202 int mlx5_query_port_eth_proto_oper(struct mlx5_core_dev *dev,
203 u32 *proto_oper, u8 local_port)
205 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
208 err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_EN,
213 *proto_oper = MLX5_GET(ptys_reg, out, eth_proto_oper);
217 EXPORT_SYMBOL(mlx5_query_port_eth_proto_oper);
219 int mlx5_query_port_ib_proto_oper(struct mlx5_core_dev *dev,
220 u8 *proto_oper, u8 local_port)
222 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
225 err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_IB,
230 *proto_oper = MLX5_GET(ptys_reg, out, ib_proto_oper);
234 EXPORT_SYMBOL(mlx5_query_port_ib_proto_oper);
236 int mlx5_set_port_ptys(struct mlx5_core_dev *dev, bool an_disable,
237 u32 proto_admin, int proto_mask)
239 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
240 u32 in[MLX5_ST_SZ_DW(ptys_reg)];
245 mlx5_query_port_autoneg(dev, proto_mask, &an_status,
246 &an_disable_cap, &an_disable_admin);
247 if (!an_disable_cap && an_disable)
250 memset(in, 0, sizeof(in));
252 MLX5_SET(ptys_reg, in, local_port, 1);
253 MLX5_SET(ptys_reg, in, an_disable_admin, an_disable);
254 MLX5_SET(ptys_reg, in, proto_mask, proto_mask);
255 if (proto_mask == MLX5_PTYS_EN)
256 MLX5_SET(ptys_reg, in, eth_proto_admin, proto_admin);
258 MLX5_SET(ptys_reg, in, ib_proto_admin, proto_admin);
260 return mlx5_core_access_reg(dev, in, sizeof(in), out,
261 sizeof(out), MLX5_REG_PTYS, 0, 1);
263 EXPORT_SYMBOL_GPL(mlx5_set_port_ptys);
265 /* This function should be used after setting a port register only */
266 void mlx5_toggle_port_link(struct mlx5_core_dev *dev)
268 enum mlx5_port_status ps;
270 mlx5_query_port_admin_status(dev, &ps);
271 mlx5_set_port_admin_status(dev, MLX5_PORT_DOWN);
272 if (ps == MLX5_PORT_UP)
273 mlx5_set_port_admin_status(dev, MLX5_PORT_UP);
275 EXPORT_SYMBOL_GPL(mlx5_toggle_port_link);
277 int mlx5_set_port_admin_status(struct mlx5_core_dev *dev,
278 enum mlx5_port_status status)
280 u32 in[MLX5_ST_SZ_DW(paos_reg)] = {0};
281 u32 out[MLX5_ST_SZ_DW(paos_reg)];
283 MLX5_SET(paos_reg, in, local_port, 1);
284 MLX5_SET(paos_reg, in, admin_status, status);
285 MLX5_SET(paos_reg, in, ase, 1);
286 return mlx5_core_access_reg(dev, in, sizeof(in), out,
287 sizeof(out), MLX5_REG_PAOS, 0, 1);
289 EXPORT_SYMBOL_GPL(mlx5_set_port_admin_status);
291 int mlx5_query_port_admin_status(struct mlx5_core_dev *dev,
292 enum mlx5_port_status *status)
294 u32 in[MLX5_ST_SZ_DW(paos_reg)] = {0};
295 u32 out[MLX5_ST_SZ_DW(paos_reg)];
298 MLX5_SET(paos_reg, in, local_port, 1);
299 err = mlx5_core_access_reg(dev, in, sizeof(in), out,
300 sizeof(out), MLX5_REG_PAOS, 0, 0);
303 *status = MLX5_GET(paos_reg, out, admin_status);
306 EXPORT_SYMBOL_GPL(mlx5_query_port_admin_status);
308 static void mlx5_query_port_mtu(struct mlx5_core_dev *dev, u16 *admin_mtu,
309 u16 *max_mtu, u16 *oper_mtu, u8 port)
311 u32 in[MLX5_ST_SZ_DW(pmtu_reg)] = {0};
312 u32 out[MLX5_ST_SZ_DW(pmtu_reg)];
314 MLX5_SET(pmtu_reg, in, local_port, port);
315 mlx5_core_access_reg(dev, in, sizeof(in), out,
316 sizeof(out), MLX5_REG_PMTU, 0, 0);
319 *max_mtu = MLX5_GET(pmtu_reg, out, max_mtu);
321 *oper_mtu = MLX5_GET(pmtu_reg, out, oper_mtu);
323 *admin_mtu = MLX5_GET(pmtu_reg, out, admin_mtu);
326 int mlx5_set_port_mtu(struct mlx5_core_dev *dev, u16 mtu, u8 port)
328 u32 in[MLX5_ST_SZ_DW(pmtu_reg)] = {0};
329 u32 out[MLX5_ST_SZ_DW(pmtu_reg)];
331 MLX5_SET(pmtu_reg, in, admin_mtu, mtu);
332 MLX5_SET(pmtu_reg, in, local_port, port);
333 return mlx5_core_access_reg(dev, in, sizeof(in), out,
334 sizeof(out), MLX5_REG_PMTU, 0, 1);
336 EXPORT_SYMBOL_GPL(mlx5_set_port_mtu);
338 void mlx5_query_port_max_mtu(struct mlx5_core_dev *dev, u16 *max_mtu,
341 mlx5_query_port_mtu(dev, NULL, max_mtu, NULL, port);
343 EXPORT_SYMBOL_GPL(mlx5_query_port_max_mtu);
345 void mlx5_query_port_oper_mtu(struct mlx5_core_dev *dev, u16 *oper_mtu,
348 mlx5_query_port_mtu(dev, NULL, NULL, oper_mtu, port);
350 EXPORT_SYMBOL_GPL(mlx5_query_port_oper_mtu);
352 static int mlx5_query_module_num(struct mlx5_core_dev *dev, int *module_num)
354 u32 in[MLX5_ST_SZ_DW(pmlp_reg)] = {0};
355 u32 out[MLX5_ST_SZ_DW(pmlp_reg)];
359 MLX5_SET(pmlp_reg, in, local_port, 1);
360 err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out),
361 MLX5_REG_PMLP, 0, 0);
365 module_mapping = MLX5_GET(pmlp_reg, out, lane0_module_mapping);
366 *module_num = module_mapping & MLX5_EEPROM_IDENTIFIER_BYTE_MASK;
371 int mlx5_query_module_eeprom(struct mlx5_core_dev *dev,
372 u16 offset, u16 size, u8 *data)
374 u32 out[MLX5_ST_SZ_DW(mcia_reg)];
375 u32 in[MLX5_ST_SZ_DW(mcia_reg)];
380 void *ptr = MLX5_ADDR_OF(mcia_reg, out, dword_0);
382 err = mlx5_query_module_num(dev, &module_num);
386 memset(in, 0, sizeof(in));
387 size = min_t(int, size, MLX5_EEPROM_MAX_BYTES);
389 if (offset < MLX5_EEPROM_PAGE_LENGTH &&
390 offset + size > MLX5_EEPROM_PAGE_LENGTH)
391 /* Cross pages read, read until offset 256 in low page */
392 size -= offset + size - MLX5_EEPROM_PAGE_LENGTH;
394 i2c_addr = MLX5_I2C_ADDR_LOW;
396 MLX5_SET(mcia_reg, in, l, 0);
397 MLX5_SET(mcia_reg, in, module, module_num);
398 MLX5_SET(mcia_reg, in, i2c_device_address, i2c_addr);
399 MLX5_SET(mcia_reg, in, page_number, 0);
400 MLX5_SET(mcia_reg, in, device_address, offset);
401 MLX5_SET(mcia_reg, in, size, size);
403 err = mlx5_core_access_reg(dev, in, sizeof(in), out,
404 sizeof(out), MLX5_REG_MCIA, 0, 0);
408 status = MLX5_GET(mcia_reg, out, status);
410 mlx5_core_err(dev, "query_mcia_reg failed: status: 0x%x\n",
415 memcpy(data, ptr, size);
419 EXPORT_SYMBOL_GPL(mlx5_query_module_eeprom);
421 static int mlx5_query_port_pvlc(struct mlx5_core_dev *dev, u32 *pvlc,
422 int pvlc_size, u8 local_port)
424 u32 in[MLX5_ST_SZ_DW(pvlc_reg)] = {0};
426 MLX5_SET(pvlc_reg, in, local_port, local_port);
427 return mlx5_core_access_reg(dev, in, sizeof(in), pvlc,
428 pvlc_size, MLX5_REG_PVLC, 0, 0);
431 int mlx5_query_port_vl_hw_cap(struct mlx5_core_dev *dev,
432 u8 *vl_hw_cap, u8 local_port)
434 u32 out[MLX5_ST_SZ_DW(pvlc_reg)];
437 err = mlx5_query_port_pvlc(dev, out, sizeof(out), local_port);
441 *vl_hw_cap = MLX5_GET(pvlc_reg, out, vl_hw_cap);
445 EXPORT_SYMBOL_GPL(mlx5_query_port_vl_hw_cap);
447 int mlx5_core_query_ib_ppcnt(struct mlx5_core_dev *dev,
448 u8 port_num, void *out, size_t sz)
453 in = kvzalloc(sz, GFP_KERNEL);
459 MLX5_SET(ppcnt_reg, in, local_port, port_num);
461 MLX5_SET(ppcnt_reg, in, grp, MLX5_INFINIBAND_PORT_COUNTERS_GROUP);
462 err = mlx5_core_access_reg(dev, in, sz, out,
463 sz, MLX5_REG_PPCNT, 0, 0);
468 EXPORT_SYMBOL_GPL(mlx5_core_query_ib_ppcnt);
470 int mlx5_set_port_pause(struct mlx5_core_dev *dev, u32 rx_pause, u32 tx_pause)
472 u32 in[MLX5_ST_SZ_DW(pfcc_reg)] = {0};
473 u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
475 MLX5_SET(pfcc_reg, in, local_port, 1);
476 MLX5_SET(pfcc_reg, in, pptx, tx_pause);
477 MLX5_SET(pfcc_reg, in, pprx, rx_pause);
479 return mlx5_core_access_reg(dev, in, sizeof(in), out,
480 sizeof(out), MLX5_REG_PFCC, 0, 1);
482 EXPORT_SYMBOL_GPL(mlx5_set_port_pause);
484 int mlx5_query_port_pause(struct mlx5_core_dev *dev,
485 u32 *rx_pause, u32 *tx_pause)
487 u32 in[MLX5_ST_SZ_DW(pfcc_reg)] = {0};
488 u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
491 MLX5_SET(pfcc_reg, in, local_port, 1);
492 err = mlx5_core_access_reg(dev, in, sizeof(in), out,
493 sizeof(out), MLX5_REG_PFCC, 0, 0);
498 *rx_pause = MLX5_GET(pfcc_reg, out, pprx);
501 *tx_pause = MLX5_GET(pfcc_reg, out, pptx);
505 EXPORT_SYMBOL_GPL(mlx5_query_port_pause);
507 int mlx5_set_port_pfc(struct mlx5_core_dev *dev, u8 pfc_en_tx, u8 pfc_en_rx)
509 u32 in[MLX5_ST_SZ_DW(pfcc_reg)] = {0};
510 u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
512 MLX5_SET(pfcc_reg, in, local_port, 1);
513 MLX5_SET(pfcc_reg, in, pfctx, pfc_en_tx);
514 MLX5_SET(pfcc_reg, in, pfcrx, pfc_en_rx);
515 MLX5_SET_TO_ONES(pfcc_reg, in, prio_mask_tx);
516 MLX5_SET_TO_ONES(pfcc_reg, in, prio_mask_rx);
518 return mlx5_core_access_reg(dev, in, sizeof(in), out,
519 sizeof(out), MLX5_REG_PFCC, 0, 1);
521 EXPORT_SYMBOL_GPL(mlx5_set_port_pfc);
523 int mlx5_query_port_pfc(struct mlx5_core_dev *dev, u8 *pfc_en_tx, u8 *pfc_en_rx)
525 u32 in[MLX5_ST_SZ_DW(pfcc_reg)] = {0};
526 u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
529 MLX5_SET(pfcc_reg, in, local_port, 1);
530 err = mlx5_core_access_reg(dev, in, sizeof(in), out,
531 sizeof(out), MLX5_REG_PFCC, 0, 0);
536 *pfc_en_tx = MLX5_GET(pfcc_reg, out, pfctx);
539 *pfc_en_rx = MLX5_GET(pfcc_reg, out, pfcrx);
543 EXPORT_SYMBOL_GPL(mlx5_query_port_pfc);
545 void mlx5_query_port_autoneg(struct mlx5_core_dev *dev, int proto_mask,
547 u8 *an_disable_cap, u8 *an_disable_admin)
549 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
553 *an_disable_admin = 0;
555 if (mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1))
558 *an_status = MLX5_GET(ptys_reg, out, an_status);
559 *an_disable_cap = MLX5_GET(ptys_reg, out, an_disable_cap);
560 *an_disable_admin = MLX5_GET(ptys_reg, out, an_disable_admin);
562 EXPORT_SYMBOL_GPL(mlx5_query_port_autoneg);
564 int mlx5_max_tc(struct mlx5_core_dev *mdev)
566 u8 num_tc = MLX5_CAP_GEN(mdev, max_tc) ? : 8;
571 int mlx5_query_port_dcbx_param(struct mlx5_core_dev *mdev, u32 *out)
573 u32 in[MLX5_ST_SZ_DW(dcbx_param)] = {0};
575 MLX5_SET(dcbx_param, in, port_number, 1);
577 return mlx5_core_access_reg(mdev, in, sizeof(in), out,
578 sizeof(in), MLX5_REG_DCBX_PARAM, 0, 0);
581 int mlx5_set_port_dcbx_param(struct mlx5_core_dev *mdev, u32 *in)
583 u32 out[MLX5_ST_SZ_DW(dcbx_param)];
585 MLX5_SET(dcbx_param, in, port_number, 1);
587 return mlx5_core_access_reg(mdev, in, sizeof(out), out,
588 sizeof(out), MLX5_REG_DCBX_PARAM, 0, 1);
591 int mlx5_set_port_prio_tc(struct mlx5_core_dev *mdev, u8 *prio_tc)
593 u32 in[MLX5_ST_SZ_DW(qtct_reg)] = {0};
594 u32 out[MLX5_ST_SZ_DW(qtct_reg)];
598 for (i = 0; i < 8; i++) {
599 if (prio_tc[i] > mlx5_max_tc(mdev))
602 MLX5_SET(qtct_reg, in, prio, i);
603 MLX5_SET(qtct_reg, in, tclass, prio_tc[i]);
605 err = mlx5_core_access_reg(mdev, in, sizeof(in), out,
606 sizeof(out), MLX5_REG_QTCT, 0, 1);
613 EXPORT_SYMBOL_GPL(mlx5_set_port_prio_tc);
615 int mlx5_query_port_prio_tc(struct mlx5_core_dev *mdev,
618 u32 in[MLX5_ST_SZ_DW(qtct_reg)];
619 u32 out[MLX5_ST_SZ_DW(qtct_reg)];
622 memset(in, 0, sizeof(in));
623 memset(out, 0, sizeof(out));
625 MLX5_SET(qtct_reg, in, port_number, 1);
626 MLX5_SET(qtct_reg, in, prio, prio);
628 err = mlx5_core_access_reg(mdev, in, sizeof(in), out,
629 sizeof(out), MLX5_REG_QTCT, 0, 0);
631 *tc = MLX5_GET(qtct_reg, out, tclass);
635 EXPORT_SYMBOL_GPL(mlx5_query_port_prio_tc);
637 static int mlx5_set_port_qetcr_reg(struct mlx5_core_dev *mdev, u32 *in,
640 u32 out[MLX5_ST_SZ_DW(qetc_reg)];
642 if (!MLX5_CAP_GEN(mdev, ets))
645 return mlx5_core_access_reg(mdev, in, inlen, out, sizeof(out),
646 MLX5_REG_QETCR, 0, 1);
649 static int mlx5_query_port_qetcr_reg(struct mlx5_core_dev *mdev, u32 *out,
652 u32 in[MLX5_ST_SZ_DW(qetc_reg)];
654 if (!MLX5_CAP_GEN(mdev, ets))
657 memset(in, 0, sizeof(in));
658 return mlx5_core_access_reg(mdev, in, sizeof(in), out, outlen,
659 MLX5_REG_QETCR, 0, 0);
662 int mlx5_set_port_tc_group(struct mlx5_core_dev *mdev, u8 *tc_group)
664 u32 in[MLX5_ST_SZ_DW(qetc_reg)] = {0};
667 for (i = 0; i <= mlx5_max_tc(mdev); i++) {
668 MLX5_SET(qetc_reg, in, tc_configuration[i].g, 1);
669 MLX5_SET(qetc_reg, in, tc_configuration[i].group, tc_group[i]);
672 return mlx5_set_port_qetcr_reg(mdev, in, sizeof(in));
674 EXPORT_SYMBOL_GPL(mlx5_set_port_tc_group);
676 int mlx5_query_port_tc_group(struct mlx5_core_dev *mdev,
679 u32 out[MLX5_ST_SZ_DW(qetc_reg)];
683 err = mlx5_query_port_qetcr_reg(mdev, out, sizeof(out));
687 ets_tcn_conf = MLX5_ADDR_OF(qetc_reg, out,
688 tc_configuration[tc]);
690 *tc_group = MLX5_GET(ets_tcn_config_reg, ets_tcn_conf,
695 EXPORT_SYMBOL_GPL(mlx5_query_port_tc_group);
697 int mlx5_set_port_tc_bw_alloc(struct mlx5_core_dev *mdev, u8 *tc_bw)
699 u32 in[MLX5_ST_SZ_DW(qetc_reg)] = {0};
702 for (i = 0; i <= mlx5_max_tc(mdev); i++) {
703 MLX5_SET(qetc_reg, in, tc_configuration[i].b, 1);
704 MLX5_SET(qetc_reg, in, tc_configuration[i].bw_allocation, tc_bw[i]);
707 return mlx5_set_port_qetcr_reg(mdev, in, sizeof(in));
709 EXPORT_SYMBOL_GPL(mlx5_set_port_tc_bw_alloc);
711 int mlx5_query_port_tc_bw_alloc(struct mlx5_core_dev *mdev,
714 u32 out[MLX5_ST_SZ_DW(qetc_reg)];
718 err = mlx5_query_port_qetcr_reg(mdev, out, sizeof(out));
722 ets_tcn_conf = MLX5_ADDR_OF(qetc_reg, out,
723 tc_configuration[tc]);
725 *bw_pct = MLX5_GET(ets_tcn_config_reg, ets_tcn_conf,
730 EXPORT_SYMBOL_GPL(mlx5_query_port_tc_bw_alloc);
732 int mlx5_modify_port_ets_rate_limit(struct mlx5_core_dev *mdev,
736 u32 in[MLX5_ST_SZ_DW(qetc_reg)] = {0};
740 MLX5_SET(qetc_reg, in, port_number, 1);
742 for (i = 0; i <= mlx5_max_tc(mdev); i++) {
743 ets_tcn_conf = MLX5_ADDR_OF(qetc_reg, in, tc_configuration[i]);
745 MLX5_SET(ets_tcn_config_reg, ets_tcn_conf, r, 1);
746 MLX5_SET(ets_tcn_config_reg, ets_tcn_conf, max_bw_units,
748 MLX5_SET(ets_tcn_config_reg, ets_tcn_conf, max_bw_value,
752 return mlx5_set_port_qetcr_reg(mdev, in, sizeof(in));
754 EXPORT_SYMBOL_GPL(mlx5_modify_port_ets_rate_limit);
756 int mlx5_query_port_ets_rate_limit(struct mlx5_core_dev *mdev,
760 u32 out[MLX5_ST_SZ_DW(qetc_reg)];
765 err = mlx5_query_port_qetcr_reg(mdev, out, sizeof(out));
769 for (i = 0; i <= mlx5_max_tc(mdev); i++) {
770 ets_tcn_conf = MLX5_ADDR_OF(qetc_reg, out, tc_configuration[i]);
772 max_bw_value[i] = MLX5_GET(ets_tcn_config_reg, ets_tcn_conf,
774 max_bw_units[i] = MLX5_GET(ets_tcn_config_reg, ets_tcn_conf,
780 EXPORT_SYMBOL_GPL(mlx5_query_port_ets_rate_limit);
782 int mlx5_set_port_wol(struct mlx5_core_dev *mdev, u8 wol_mode)
784 u32 in[MLX5_ST_SZ_DW(set_wol_rol_in)] = {0};
785 u32 out[MLX5_ST_SZ_DW(set_wol_rol_out)] = {0};
787 MLX5_SET(set_wol_rol_in, in, opcode, MLX5_CMD_OP_SET_WOL_ROL);
788 MLX5_SET(set_wol_rol_in, in, wol_mode_valid, 1);
789 MLX5_SET(set_wol_rol_in, in, wol_mode, wol_mode);
790 return mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
792 EXPORT_SYMBOL_GPL(mlx5_set_port_wol);
794 int mlx5_query_port_wol(struct mlx5_core_dev *mdev, u8 *wol_mode)
796 u32 in[MLX5_ST_SZ_DW(query_wol_rol_in)] = {0};
797 u32 out[MLX5_ST_SZ_DW(query_wol_rol_out)] = {0};
800 MLX5_SET(query_wol_rol_in, in, opcode, MLX5_CMD_OP_QUERY_WOL_ROL);
801 err = mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
803 *wol_mode = MLX5_GET(query_wol_rol_out, out, wol_mode);
807 EXPORT_SYMBOL_GPL(mlx5_query_port_wol);
809 static int mlx5_query_ports_check(struct mlx5_core_dev *mdev, u32 *out,
812 u32 in[MLX5_ST_SZ_DW(pcmr_reg)] = {0};
814 MLX5_SET(pcmr_reg, in, local_port, 1);
815 return mlx5_core_access_reg(mdev, in, sizeof(in), out,
816 outlen, MLX5_REG_PCMR, 0, 0);
819 static int mlx5_set_ports_check(struct mlx5_core_dev *mdev, u32 *in, int inlen)
821 u32 out[MLX5_ST_SZ_DW(pcmr_reg)];
823 return mlx5_core_access_reg(mdev, in, inlen, out,
824 sizeof(out), MLX5_REG_PCMR, 0, 1);
827 int mlx5_set_port_fcs(struct mlx5_core_dev *mdev, u8 enable)
829 u32 in[MLX5_ST_SZ_DW(pcmr_reg)] = {0};
831 MLX5_SET(pcmr_reg, in, local_port, 1);
832 MLX5_SET(pcmr_reg, in, fcs_chk, enable);
833 return mlx5_set_ports_check(mdev, in, sizeof(in));
836 void mlx5_query_port_fcs(struct mlx5_core_dev *mdev, bool *supported,
839 u32 out[MLX5_ST_SZ_DW(pcmr_reg)];
840 /* Default values for FW which do not support MLX5_REG_PCMR */
844 if (!MLX5_CAP_GEN(mdev, ports_check))
847 if (mlx5_query_ports_check(mdev, out, sizeof(out)))
850 *supported = !!(MLX5_GET(pcmr_reg, out, fcs_cap));
851 *enabled = !!(MLX5_GET(pcmr_reg, out, fcs_chk));
854 static const char *mlx5_pme_status[MLX5_MODULE_STATUS_NUM] = {
855 "Cable plugged", /* MLX5_MODULE_STATUS_PLUGGED = 0x1 */
856 "Cable unplugged", /* MLX5_MODULE_STATUS_UNPLUGGED = 0x2 */
857 "Cable error", /* MLX5_MODULE_STATUS_ERROR = 0x3 */
860 static const char *mlx5_pme_error[MLX5_MODULE_EVENT_ERROR_NUM] = {
861 "Power budget exceeded",
862 "Long Range for non MLNX cable",
863 "Bus stuck(I2C or data shorted)",
864 "No EEPROM/retry timeout",
865 "Enforce part number list",
866 "Unknown identifier",
868 "Bad or shorted cable/module",
872 void mlx5_port_module_event(struct mlx5_core_dev *dev, struct mlx5_eqe *eqe)
874 enum port_module_event_status_type module_status;
875 enum port_module_event_error_type error_type;
876 struct mlx5_eqe_port_module *module_event_eqe;
877 struct mlx5_priv *priv = &dev->priv;
880 module_event_eqe = &eqe->data.port_module;
881 module_num = module_event_eqe->module;
882 module_status = module_event_eqe->module_status &
883 PORT_MODULE_EVENT_MODULE_STATUS_MASK;
884 error_type = module_event_eqe->error_type &
885 PORT_MODULE_EVENT_ERROR_TYPE_MASK;
887 if (module_status < MLX5_MODULE_STATUS_ERROR) {
888 priv->pme_stats.status_counters[module_status - 1]++;
889 } else if (module_status == MLX5_MODULE_STATUS_ERROR) {
890 if (error_type >= MLX5_MODULE_EVENT_ERROR_UNKNOWN)
891 /* Unknown error type */
892 error_type = MLX5_MODULE_EVENT_ERROR_UNKNOWN;
893 priv->pme_stats.error_counters[error_type]++;
896 if (!printk_ratelimit())
899 if (module_status < MLX5_MODULE_STATUS_ERROR)
901 "Port module event: module %u, %s\n",
902 module_num, mlx5_pme_status[module_status - 1]);
904 else if (module_status == MLX5_MODULE_STATUS_ERROR)
906 "Port module event[error]: module %u, %s, %s\n",
907 module_num, mlx5_pme_status[module_status - 1],
908 mlx5_pme_error[error_type]);
911 int mlx5_query_mtpps(struct mlx5_core_dev *mdev, u32 *mtpps, u32 mtpps_size)
913 u32 in[MLX5_ST_SZ_DW(mtpps_reg)] = {0};
915 return mlx5_core_access_reg(mdev, in, sizeof(in), mtpps,
916 mtpps_size, MLX5_REG_MTPPS, 0, 0);
919 int mlx5_set_mtpps(struct mlx5_core_dev *mdev, u32 *mtpps, u32 mtpps_size)
921 u32 out[MLX5_ST_SZ_DW(mtpps_reg)] = {0};
923 return mlx5_core_access_reg(mdev, mtpps, mtpps_size, out,
924 sizeof(out), MLX5_REG_MTPPS, 0, 1);
927 int mlx5_query_mtppse(struct mlx5_core_dev *mdev, u8 pin, u8 *arm, u8 *mode)
929 u32 out[MLX5_ST_SZ_DW(mtppse_reg)] = {0};
930 u32 in[MLX5_ST_SZ_DW(mtppse_reg)] = {0};
933 MLX5_SET(mtppse_reg, in, pin, pin);
935 err = mlx5_core_access_reg(mdev, in, sizeof(in), out,
936 sizeof(out), MLX5_REG_MTPPSE, 0, 0);
940 *arm = MLX5_GET(mtppse_reg, in, event_arm);
941 *mode = MLX5_GET(mtppse_reg, in, event_generation_mode);
946 int mlx5_set_mtppse(struct mlx5_core_dev *mdev, u8 pin, u8 arm, u8 mode)
948 u32 out[MLX5_ST_SZ_DW(mtppse_reg)] = {0};
949 u32 in[MLX5_ST_SZ_DW(mtppse_reg)] = {0};
951 MLX5_SET(mtppse_reg, in, pin, pin);
952 MLX5_SET(mtppse_reg, in, event_arm, arm);
953 MLX5_SET(mtppse_reg, in, event_generation_mode, mode);
955 return mlx5_core_access_reg(mdev, in, sizeof(in), out,
956 sizeof(out), MLX5_REG_MTPPSE, 0, 1);