Merge branch 'for-linus-4.10' of git://git.kernel.org/pub/scm/linux/kernel/git/mason...
[sfrench/cifs-2.6.git] / drivers / net / ethernet / mellanox / mlx5 / core / port.c
1 /*
2  * Copyright (c) 2013-2015, 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
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"
38
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)
42 {
43         int outlen = MLX5_ST_SZ_BYTES(access_register_out) + size_out;
44         int inlen = MLX5_ST_SZ_BYTES(access_register_in) + size_in;
45         int err = -ENOMEM;
46         u32 *out = NULL;
47         u32 *in = NULL;
48         void *data;
49
50         in = mlx5_vzalloc(inlen);
51         out = mlx5_vzalloc(outlen);
52         if (!in || !out)
53                 goto out;
54
55         data = MLX5_ADDR_OF(access_register_in, in, register_data);
56         memcpy(data, data_in, size_in);
57
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);
62
63         err = mlx5_cmd_exec(dev, in, inlen, out, outlen);
64         if (err)
65                 goto out;
66
67         data = MLX5_ADDR_OF(access_register_out, out, register_data);
68         memcpy(data_out, data, size_out);
69
70 out:
71         kvfree(out);
72         kvfree(in);
73         return err;
74 }
75 EXPORT_SYMBOL_GPL(mlx5_core_access_reg);
76
77 struct mlx5_reg_pcap {
78         u8                      rsvd0;
79         u8                      port_num;
80         u8                      rsvd1[2];
81         __be32                  caps_127_96;
82         __be32                  caps_95_64;
83         __be32                  caps_63_32;
84         __be32                  caps_31_0;
85 };
86
87 int mlx5_set_port_caps(struct mlx5_core_dev *dev, u8 port_num, u32 caps)
88 {
89         struct mlx5_reg_pcap in;
90         struct mlx5_reg_pcap out;
91
92         memset(&in, 0, sizeof(in));
93         in.caps_127_96 = cpu_to_be32(caps);
94         in.port_num = port_num;
95
96         return mlx5_core_access_reg(dev, &in, sizeof(in), &out,
97                                     sizeof(out), MLX5_REG_PCAP, 0, 1);
98 }
99 EXPORT_SYMBOL_GPL(mlx5_set_port_caps);
100
101 int mlx5_query_port_ptys(struct mlx5_core_dev *dev, u32 *ptys,
102                          int ptys_size, int proto_mask, u8 local_port)
103 {
104         u32 in[MLX5_ST_SZ_DW(ptys_reg)] = {0};
105
106         MLX5_SET(ptys_reg, in, local_port, local_port);
107         MLX5_SET(ptys_reg, in, proto_mask, proto_mask);
108         return mlx5_core_access_reg(dev, in, sizeof(in), ptys,
109                                     ptys_size, MLX5_REG_PTYS, 0, 0);
110 }
111 EXPORT_SYMBOL_GPL(mlx5_query_port_ptys);
112
113 int mlx5_set_port_beacon(struct mlx5_core_dev *dev, u16 beacon_duration)
114 {
115         u32 in[MLX5_ST_SZ_DW(mlcr_reg)]  = {0};
116         u32 out[MLX5_ST_SZ_DW(mlcr_reg)];
117
118         MLX5_SET(mlcr_reg, in, local_port, 1);
119         MLX5_SET(mlcr_reg, in, beacon_duration, beacon_duration);
120         return mlx5_core_access_reg(dev, in, sizeof(in), out,
121                                     sizeof(out), MLX5_REG_MLCR, 0, 1);
122 }
123
124 int mlx5_query_port_proto_cap(struct mlx5_core_dev *dev,
125                               u32 *proto_cap, int proto_mask)
126 {
127         u32 out[MLX5_ST_SZ_DW(ptys_reg)];
128         int err;
129
130         err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1);
131         if (err)
132                 return err;
133
134         if (proto_mask == MLX5_PTYS_EN)
135                 *proto_cap = MLX5_GET(ptys_reg, out, eth_proto_capability);
136         else
137                 *proto_cap = MLX5_GET(ptys_reg, out, ib_proto_capability);
138
139         return 0;
140 }
141 EXPORT_SYMBOL_GPL(mlx5_query_port_proto_cap);
142
143 int mlx5_query_port_proto_admin(struct mlx5_core_dev *dev,
144                                 u32 *proto_admin, int proto_mask)
145 {
146         u32 out[MLX5_ST_SZ_DW(ptys_reg)];
147         int err;
148
149         err = mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1);
150         if (err)
151                 return err;
152
153         if (proto_mask == MLX5_PTYS_EN)
154                 *proto_admin = MLX5_GET(ptys_reg, out, eth_proto_admin);
155         else
156                 *proto_admin = MLX5_GET(ptys_reg, out, ib_proto_admin);
157
158         return 0;
159 }
160 EXPORT_SYMBOL_GPL(mlx5_query_port_proto_admin);
161
162 int mlx5_query_port_link_width_oper(struct mlx5_core_dev *dev,
163                                     u8 *link_width_oper, u8 local_port)
164 {
165         u32 out[MLX5_ST_SZ_DW(ptys_reg)];
166         int err;
167
168         err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_IB, local_port);
169         if (err)
170                 return err;
171
172         *link_width_oper = MLX5_GET(ptys_reg, out, ib_link_width_oper);
173
174         return 0;
175 }
176 EXPORT_SYMBOL_GPL(mlx5_query_port_link_width_oper);
177
178 int mlx5_query_port_eth_proto_oper(struct mlx5_core_dev *dev,
179                                    u32 *proto_oper, u8 local_port)
180 {
181         u32 out[MLX5_ST_SZ_DW(ptys_reg)];
182         int err;
183
184         err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_EN,
185                                    local_port);
186         if (err)
187                 return err;
188
189         *proto_oper = MLX5_GET(ptys_reg, out, eth_proto_oper);
190
191         return 0;
192 }
193 EXPORT_SYMBOL(mlx5_query_port_eth_proto_oper);
194
195 int mlx5_query_port_ib_proto_oper(struct mlx5_core_dev *dev,
196                                   u8 *proto_oper, u8 local_port)
197 {
198         u32 out[MLX5_ST_SZ_DW(ptys_reg)];
199         int err;
200
201         err = mlx5_query_port_ptys(dev, out, sizeof(out), MLX5_PTYS_IB,
202                                    local_port);
203         if (err)
204                 return err;
205
206         *proto_oper = MLX5_GET(ptys_reg, out, ib_proto_oper);
207
208         return 0;
209 }
210 EXPORT_SYMBOL(mlx5_query_port_ib_proto_oper);
211
212 int mlx5_set_port_ptys(struct mlx5_core_dev *dev, bool an_disable,
213                        u32 proto_admin, int proto_mask)
214 {
215         u32 out[MLX5_ST_SZ_DW(ptys_reg)];
216         u32 in[MLX5_ST_SZ_DW(ptys_reg)];
217         u8 an_disable_admin;
218         u8 an_disable_cap;
219         u8 an_status;
220
221         mlx5_query_port_autoneg(dev, proto_mask, &an_status,
222                                 &an_disable_cap, &an_disable_admin);
223         if (!an_disable_cap && an_disable)
224                 return -EPERM;
225
226         memset(in, 0, sizeof(in));
227
228         MLX5_SET(ptys_reg, in, local_port, 1);
229         MLX5_SET(ptys_reg, in, an_disable_admin, an_disable);
230         MLX5_SET(ptys_reg, in, proto_mask, proto_mask);
231         if (proto_mask == MLX5_PTYS_EN)
232                 MLX5_SET(ptys_reg, in, eth_proto_admin, proto_admin);
233         else
234                 MLX5_SET(ptys_reg, in, ib_proto_admin, proto_admin);
235
236         return mlx5_core_access_reg(dev, in, sizeof(in), out,
237                                     sizeof(out), MLX5_REG_PTYS, 0, 1);
238 }
239 EXPORT_SYMBOL_GPL(mlx5_set_port_ptys);
240
241 /* This function should be used after setting a port register only */
242 void mlx5_toggle_port_link(struct mlx5_core_dev *dev)
243 {
244         enum mlx5_port_status ps;
245
246         mlx5_query_port_admin_status(dev, &ps);
247         mlx5_set_port_admin_status(dev, MLX5_PORT_DOWN);
248         if (ps == MLX5_PORT_UP)
249                 mlx5_set_port_admin_status(dev, MLX5_PORT_UP);
250 }
251 EXPORT_SYMBOL_GPL(mlx5_toggle_port_link);
252
253 int mlx5_set_port_admin_status(struct mlx5_core_dev *dev,
254                                enum mlx5_port_status status)
255 {
256         u32 in[MLX5_ST_SZ_DW(paos_reg)] = {0};
257         u32 out[MLX5_ST_SZ_DW(paos_reg)];
258
259         MLX5_SET(paos_reg, in, local_port, 1);
260         MLX5_SET(paos_reg, in, admin_status, status);
261         MLX5_SET(paos_reg, in, ase, 1);
262         return mlx5_core_access_reg(dev, in, sizeof(in), out,
263                                     sizeof(out), MLX5_REG_PAOS, 0, 1);
264 }
265 EXPORT_SYMBOL_GPL(mlx5_set_port_admin_status);
266
267 int mlx5_query_port_admin_status(struct mlx5_core_dev *dev,
268                                  enum mlx5_port_status *status)
269 {
270         u32 in[MLX5_ST_SZ_DW(paos_reg)] = {0};
271         u32 out[MLX5_ST_SZ_DW(paos_reg)];
272         int err;
273
274         MLX5_SET(paos_reg, in, local_port, 1);
275         err = mlx5_core_access_reg(dev, in, sizeof(in), out,
276                                    sizeof(out), MLX5_REG_PAOS, 0, 0);
277         if (err)
278                 return err;
279         *status = MLX5_GET(paos_reg, out, admin_status);
280         return 0;
281 }
282 EXPORT_SYMBOL_GPL(mlx5_query_port_admin_status);
283
284 static void mlx5_query_port_mtu(struct mlx5_core_dev *dev, u16 *admin_mtu,
285                                 u16 *max_mtu, u16 *oper_mtu, u8 port)
286 {
287         u32 in[MLX5_ST_SZ_DW(pmtu_reg)] = {0};
288         u32 out[MLX5_ST_SZ_DW(pmtu_reg)];
289
290         MLX5_SET(pmtu_reg, in, local_port, port);
291         mlx5_core_access_reg(dev, in, sizeof(in), out,
292                              sizeof(out), MLX5_REG_PMTU, 0, 0);
293
294         if (max_mtu)
295                 *max_mtu  = MLX5_GET(pmtu_reg, out, max_mtu);
296         if (oper_mtu)
297                 *oper_mtu = MLX5_GET(pmtu_reg, out, oper_mtu);
298         if (admin_mtu)
299                 *admin_mtu = MLX5_GET(pmtu_reg, out, admin_mtu);
300 }
301
302 int mlx5_set_port_mtu(struct mlx5_core_dev *dev, u16 mtu, u8 port)
303 {
304         u32 in[MLX5_ST_SZ_DW(pmtu_reg)] = {0};
305         u32 out[MLX5_ST_SZ_DW(pmtu_reg)];
306
307         MLX5_SET(pmtu_reg, in, admin_mtu, mtu);
308         MLX5_SET(pmtu_reg, in, local_port, port);
309         return mlx5_core_access_reg(dev, in, sizeof(in), out,
310                                    sizeof(out), MLX5_REG_PMTU, 0, 1);
311 }
312 EXPORT_SYMBOL_GPL(mlx5_set_port_mtu);
313
314 void mlx5_query_port_max_mtu(struct mlx5_core_dev *dev, u16 *max_mtu,
315                              u8 port)
316 {
317         mlx5_query_port_mtu(dev, NULL, max_mtu, NULL, port);
318 }
319 EXPORT_SYMBOL_GPL(mlx5_query_port_max_mtu);
320
321 void mlx5_query_port_oper_mtu(struct mlx5_core_dev *dev, u16 *oper_mtu,
322                               u8 port)
323 {
324         mlx5_query_port_mtu(dev, NULL, NULL, oper_mtu, port);
325 }
326 EXPORT_SYMBOL_GPL(mlx5_query_port_oper_mtu);
327
328 static int mlx5_query_module_num(struct mlx5_core_dev *dev, int *module_num)
329 {
330         u32 in[MLX5_ST_SZ_DW(pmlp_reg)] = {0};
331         u32 out[MLX5_ST_SZ_DW(pmlp_reg)];
332         int module_mapping;
333         int err;
334
335         MLX5_SET(pmlp_reg, in, local_port, 1);
336         err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out),
337                                    MLX5_REG_PMLP, 0, 0);
338         if (err)
339                 return err;
340
341         module_mapping = MLX5_GET(pmlp_reg, out, lane0_module_mapping);
342         *module_num = module_mapping & MLX5_EEPROM_IDENTIFIER_BYTE_MASK;
343
344         return 0;
345 }
346
347 int mlx5_query_module_eeprom(struct mlx5_core_dev *dev,
348                              u16 offset, u16 size, u8 *data)
349 {
350         u32 out[MLX5_ST_SZ_DW(mcia_reg)];
351         u32 in[MLX5_ST_SZ_DW(mcia_reg)];
352         int module_num;
353         u16 i2c_addr;
354         int status;
355         int err;
356         void *ptr = MLX5_ADDR_OF(mcia_reg, out, dword_0);
357
358         err = mlx5_query_module_num(dev, &module_num);
359         if (err)
360                 return err;
361
362         memset(in, 0, sizeof(in));
363         size = min_t(int, size, MLX5_EEPROM_MAX_BYTES);
364
365         if (offset < MLX5_EEPROM_PAGE_LENGTH &&
366             offset + size > MLX5_EEPROM_PAGE_LENGTH)
367                 /* Cross pages read, read until offset 256 in low page */
368                 size -= offset + size - MLX5_EEPROM_PAGE_LENGTH;
369
370         i2c_addr = MLX5_I2C_ADDR_LOW;
371         if (offset >= MLX5_EEPROM_PAGE_LENGTH) {
372                 i2c_addr = MLX5_I2C_ADDR_HIGH;
373                 offset -= MLX5_EEPROM_PAGE_LENGTH;
374         }
375
376         MLX5_SET(mcia_reg, in, l, 0);
377         MLX5_SET(mcia_reg, in, module, module_num);
378         MLX5_SET(mcia_reg, in, i2c_device_address, i2c_addr);
379         MLX5_SET(mcia_reg, in, page_number, 0);
380         MLX5_SET(mcia_reg, in, device_address, offset);
381         MLX5_SET(mcia_reg, in, size, size);
382
383         err = mlx5_core_access_reg(dev, in, sizeof(in), out,
384                                    sizeof(out), MLX5_REG_MCIA, 0, 0);
385         if (err)
386                 return err;
387
388         status = MLX5_GET(mcia_reg, out, status);
389         if (status) {
390                 mlx5_core_err(dev, "query_mcia_reg failed: status: 0x%x\n",
391                               status);
392                 return -EIO;
393         }
394
395         memcpy(data, ptr, size);
396
397         return size;
398 }
399 EXPORT_SYMBOL_GPL(mlx5_query_module_eeprom);
400
401 static int mlx5_query_port_pvlc(struct mlx5_core_dev *dev, u32 *pvlc,
402                                 int pvlc_size,  u8 local_port)
403 {
404         u32 in[MLX5_ST_SZ_DW(pvlc_reg)] = {0};
405
406         MLX5_SET(pvlc_reg, in, local_port, local_port);
407         return mlx5_core_access_reg(dev, in, sizeof(in), pvlc,
408                                     pvlc_size, MLX5_REG_PVLC, 0, 0);
409 }
410
411 int mlx5_query_port_vl_hw_cap(struct mlx5_core_dev *dev,
412                               u8 *vl_hw_cap, u8 local_port)
413 {
414         u32 out[MLX5_ST_SZ_DW(pvlc_reg)];
415         int err;
416
417         err = mlx5_query_port_pvlc(dev, out, sizeof(out), local_port);
418         if (err)
419                 return err;
420
421         *vl_hw_cap = MLX5_GET(pvlc_reg, out, vl_hw_cap);
422
423         return 0;
424 }
425 EXPORT_SYMBOL_GPL(mlx5_query_port_vl_hw_cap);
426
427 int mlx5_core_query_ib_ppcnt(struct mlx5_core_dev *dev,
428                              u8 port_num, void *out, size_t sz)
429 {
430         u32 *in;
431         int err;
432
433         in  = mlx5_vzalloc(sz);
434         if (!in) {
435                 err = -ENOMEM;
436                 return err;
437         }
438
439         MLX5_SET(ppcnt_reg, in, local_port, port_num);
440
441         MLX5_SET(ppcnt_reg, in, grp, MLX5_INFINIBAND_PORT_COUNTERS_GROUP);
442         err = mlx5_core_access_reg(dev, in, sz, out,
443                                    sz, MLX5_REG_PPCNT, 0, 0);
444
445         kvfree(in);
446         return err;
447 }
448 EXPORT_SYMBOL_GPL(mlx5_core_query_ib_ppcnt);
449
450 int mlx5_set_port_pause(struct mlx5_core_dev *dev, u32 rx_pause, u32 tx_pause)
451 {
452         u32 in[MLX5_ST_SZ_DW(pfcc_reg)] = {0};
453         u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
454
455         MLX5_SET(pfcc_reg, in, local_port, 1);
456         MLX5_SET(pfcc_reg, in, pptx, tx_pause);
457         MLX5_SET(pfcc_reg, in, pprx, rx_pause);
458
459         return mlx5_core_access_reg(dev, in, sizeof(in), out,
460                                     sizeof(out), MLX5_REG_PFCC, 0, 1);
461 }
462 EXPORT_SYMBOL_GPL(mlx5_set_port_pause);
463
464 int mlx5_query_port_pause(struct mlx5_core_dev *dev,
465                           u32 *rx_pause, u32 *tx_pause)
466 {
467         u32 in[MLX5_ST_SZ_DW(pfcc_reg)] = {0};
468         u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
469         int err;
470
471         MLX5_SET(pfcc_reg, in, local_port, 1);
472         err = mlx5_core_access_reg(dev, in, sizeof(in), out,
473                                    sizeof(out), MLX5_REG_PFCC, 0, 0);
474         if (err)
475                 return err;
476
477         if (rx_pause)
478                 *rx_pause = MLX5_GET(pfcc_reg, out, pprx);
479
480         if (tx_pause)
481                 *tx_pause = MLX5_GET(pfcc_reg, out, pptx);
482
483         return 0;
484 }
485 EXPORT_SYMBOL_GPL(mlx5_query_port_pause);
486
487 int mlx5_set_port_pfc(struct mlx5_core_dev *dev, u8 pfc_en_tx, u8 pfc_en_rx)
488 {
489         u32 in[MLX5_ST_SZ_DW(pfcc_reg)] = {0};
490         u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
491
492         MLX5_SET(pfcc_reg, in, local_port, 1);
493         MLX5_SET(pfcc_reg, in, pfctx, pfc_en_tx);
494         MLX5_SET(pfcc_reg, in, pfcrx, pfc_en_rx);
495         MLX5_SET_TO_ONES(pfcc_reg, in, prio_mask_tx);
496         MLX5_SET_TO_ONES(pfcc_reg, in, prio_mask_rx);
497
498         return mlx5_core_access_reg(dev, in, sizeof(in), out,
499                                     sizeof(out), MLX5_REG_PFCC, 0, 1);
500 }
501 EXPORT_SYMBOL_GPL(mlx5_set_port_pfc);
502
503 int mlx5_query_port_pfc(struct mlx5_core_dev *dev, u8 *pfc_en_tx, u8 *pfc_en_rx)
504 {
505         u32 in[MLX5_ST_SZ_DW(pfcc_reg)] = {0};
506         u32 out[MLX5_ST_SZ_DW(pfcc_reg)];
507         int err;
508
509         MLX5_SET(pfcc_reg, in, local_port, 1);
510         err = mlx5_core_access_reg(dev, in, sizeof(in), out,
511                                    sizeof(out), MLX5_REG_PFCC, 0, 0);
512         if (err)
513                 return err;
514
515         if (pfc_en_tx)
516                 *pfc_en_tx = MLX5_GET(pfcc_reg, out, pfctx);
517
518         if (pfc_en_rx)
519                 *pfc_en_rx = MLX5_GET(pfcc_reg, out, pfcrx);
520
521         return 0;
522 }
523 EXPORT_SYMBOL_GPL(mlx5_query_port_pfc);
524
525 void mlx5_query_port_autoneg(struct mlx5_core_dev *dev, int proto_mask,
526                              u8 *an_status,
527                              u8 *an_disable_cap, u8 *an_disable_admin)
528 {
529         u32 out[MLX5_ST_SZ_DW(ptys_reg)];
530
531         *an_status = 0;
532         *an_disable_cap = 0;
533         *an_disable_admin = 0;
534
535         if (mlx5_query_port_ptys(dev, out, sizeof(out), proto_mask, 1))
536                 return;
537
538         *an_status = MLX5_GET(ptys_reg, out, an_status);
539         *an_disable_cap = MLX5_GET(ptys_reg, out, an_disable_cap);
540         *an_disable_admin = MLX5_GET(ptys_reg, out, an_disable_admin);
541 }
542 EXPORT_SYMBOL_GPL(mlx5_query_port_autoneg);
543
544 int mlx5_max_tc(struct mlx5_core_dev *mdev)
545 {
546         u8 num_tc = MLX5_CAP_GEN(mdev, max_tc) ? : 8;
547
548         return num_tc - 1;
549 }
550
551 int mlx5_query_port_dcbx_param(struct mlx5_core_dev *mdev, u32 *out)
552 {
553         u32 in[MLX5_ST_SZ_DW(dcbx_param)] = {0};
554
555         MLX5_SET(dcbx_param, in, port_number, 1);
556
557         return  mlx5_core_access_reg(mdev, in, sizeof(in), out,
558                                     sizeof(in), MLX5_REG_DCBX_PARAM, 0, 0);
559 }
560
561 int mlx5_set_port_dcbx_param(struct mlx5_core_dev *mdev, u32 *in)
562 {
563         u32 out[MLX5_ST_SZ_DW(dcbx_param)];
564
565         MLX5_SET(dcbx_param, in, port_number, 1);
566
567         return mlx5_core_access_reg(mdev, in, sizeof(out), out,
568                                     sizeof(out), MLX5_REG_DCBX_PARAM, 0, 1);
569 }
570
571 int mlx5_set_port_prio_tc(struct mlx5_core_dev *mdev, u8 *prio_tc)
572 {
573         u32 in[MLX5_ST_SZ_DW(qtct_reg)] = {0};
574         u32 out[MLX5_ST_SZ_DW(qtct_reg)];
575         int err;
576         int i;
577
578         for (i = 0; i < 8; i++) {
579                 if (prio_tc[i] > mlx5_max_tc(mdev))
580                         return -EINVAL;
581
582                 MLX5_SET(qtct_reg, in, prio, i);
583                 MLX5_SET(qtct_reg, in, tclass, prio_tc[i]);
584
585                 err = mlx5_core_access_reg(mdev, in, sizeof(in), out,
586                                            sizeof(out), MLX5_REG_QTCT, 0, 1);
587                 if (err)
588                         return err;
589         }
590
591         return 0;
592 }
593 EXPORT_SYMBOL_GPL(mlx5_set_port_prio_tc);
594
595 int mlx5_query_port_prio_tc(struct mlx5_core_dev *mdev,
596                             u8 prio, u8 *tc)
597 {
598         u32 in[MLX5_ST_SZ_DW(qtct_reg)];
599         u32 out[MLX5_ST_SZ_DW(qtct_reg)];
600         int err;
601
602         memset(in, 0, sizeof(in));
603         memset(out, 0, sizeof(out));
604
605         MLX5_SET(qtct_reg, in, port_number, 1);
606         MLX5_SET(qtct_reg, in, prio, prio);
607
608         err = mlx5_core_access_reg(mdev, in, sizeof(in), out,
609                                    sizeof(out), MLX5_REG_QTCT, 0, 0);
610         if (!err)
611                 *tc = MLX5_GET(qtct_reg, out, tclass);
612
613         return err;
614 }
615 EXPORT_SYMBOL_GPL(mlx5_query_port_prio_tc);
616
617 static int mlx5_set_port_qetcr_reg(struct mlx5_core_dev *mdev, u32 *in,
618                                    int inlen)
619 {
620         u32 out[MLX5_ST_SZ_DW(qtct_reg)];
621
622         if (!MLX5_CAP_GEN(mdev, ets))
623                 return -ENOTSUPP;
624
625         return mlx5_core_access_reg(mdev, in, inlen, out, sizeof(out),
626                                     MLX5_REG_QETCR, 0, 1);
627 }
628
629 static int mlx5_query_port_qetcr_reg(struct mlx5_core_dev *mdev, u32 *out,
630                                      int outlen)
631 {
632         u32 in[MLX5_ST_SZ_DW(qtct_reg)];
633
634         if (!MLX5_CAP_GEN(mdev, ets))
635                 return -ENOTSUPP;
636
637         memset(in, 0, sizeof(in));
638         return mlx5_core_access_reg(mdev, in, sizeof(in), out, outlen,
639                                     MLX5_REG_QETCR, 0, 0);
640 }
641
642 int mlx5_set_port_tc_group(struct mlx5_core_dev *mdev, u8 *tc_group)
643 {
644         u32 in[MLX5_ST_SZ_DW(qetc_reg)] = {0};
645         int i;
646
647         for (i = 0; i <= mlx5_max_tc(mdev); i++) {
648                 MLX5_SET(qetc_reg, in, tc_configuration[i].g, 1);
649                 MLX5_SET(qetc_reg, in, tc_configuration[i].group, tc_group[i]);
650         }
651
652         return mlx5_set_port_qetcr_reg(mdev, in, sizeof(in));
653 }
654 EXPORT_SYMBOL_GPL(mlx5_set_port_tc_group);
655
656 int mlx5_set_port_tc_bw_alloc(struct mlx5_core_dev *mdev, u8 *tc_bw)
657 {
658         u32 in[MLX5_ST_SZ_DW(qetc_reg)] = {0};
659         int i;
660
661         for (i = 0; i <= mlx5_max_tc(mdev); i++) {
662                 MLX5_SET(qetc_reg, in, tc_configuration[i].b, 1);
663                 MLX5_SET(qetc_reg, in, tc_configuration[i].bw_allocation, tc_bw[i]);
664         }
665
666         return mlx5_set_port_qetcr_reg(mdev, in, sizeof(in));
667 }
668 EXPORT_SYMBOL_GPL(mlx5_set_port_tc_bw_alloc);
669
670 int mlx5_query_port_tc_bw_alloc(struct mlx5_core_dev *mdev,
671                                 u8 tc, u8 *bw_pct)
672 {
673         u32 out[MLX5_ST_SZ_DW(qetc_reg)];
674         void *ets_tcn_conf;
675         int err;
676
677         err = mlx5_query_port_qetcr_reg(mdev, out, sizeof(out));
678         if (err)
679                 return err;
680
681         ets_tcn_conf = MLX5_ADDR_OF(qetc_reg, out,
682                                     tc_configuration[tc]);
683
684         *bw_pct = MLX5_GET(ets_tcn_config_reg, ets_tcn_conf,
685                            bw_allocation);
686
687         return 0;
688 }
689 EXPORT_SYMBOL_GPL(mlx5_query_port_tc_bw_alloc);
690
691 int mlx5_modify_port_ets_rate_limit(struct mlx5_core_dev *mdev,
692                                     u8 *max_bw_value,
693                                     u8 *max_bw_units)
694 {
695         u32 in[MLX5_ST_SZ_DW(qetc_reg)] = {0};
696         void *ets_tcn_conf;
697         int i;
698
699         MLX5_SET(qetc_reg, in, port_number, 1);
700
701         for (i = 0; i <= mlx5_max_tc(mdev); i++) {
702                 ets_tcn_conf = MLX5_ADDR_OF(qetc_reg, in, tc_configuration[i]);
703
704                 MLX5_SET(ets_tcn_config_reg, ets_tcn_conf, r, 1);
705                 MLX5_SET(ets_tcn_config_reg, ets_tcn_conf, max_bw_units,
706                          max_bw_units[i]);
707                 MLX5_SET(ets_tcn_config_reg, ets_tcn_conf, max_bw_value,
708                          max_bw_value[i]);
709         }
710
711         return mlx5_set_port_qetcr_reg(mdev, in, sizeof(in));
712 }
713 EXPORT_SYMBOL_GPL(mlx5_modify_port_ets_rate_limit);
714
715 int mlx5_query_port_ets_rate_limit(struct mlx5_core_dev *mdev,
716                                    u8 *max_bw_value,
717                                    u8 *max_bw_units)
718 {
719         u32 out[MLX5_ST_SZ_DW(qetc_reg)];
720         void *ets_tcn_conf;
721         int err;
722         int i;
723
724         err = mlx5_query_port_qetcr_reg(mdev, out, sizeof(out));
725         if (err)
726                 return err;
727
728         for (i = 0; i <= mlx5_max_tc(mdev); i++) {
729                 ets_tcn_conf = MLX5_ADDR_OF(qetc_reg, out, tc_configuration[i]);
730
731                 max_bw_value[i] = MLX5_GET(ets_tcn_config_reg, ets_tcn_conf,
732                                            max_bw_value);
733                 max_bw_units[i] = MLX5_GET(ets_tcn_config_reg, ets_tcn_conf,
734                                            max_bw_units);
735         }
736
737         return 0;
738 }
739 EXPORT_SYMBOL_GPL(mlx5_query_port_ets_rate_limit);
740
741 int mlx5_set_port_wol(struct mlx5_core_dev *mdev, u8 wol_mode)
742 {
743         u32 in[MLX5_ST_SZ_DW(set_wol_rol_in)]   = {0};
744         u32 out[MLX5_ST_SZ_DW(set_wol_rol_out)] = {0};
745
746         MLX5_SET(set_wol_rol_in, in, opcode, MLX5_CMD_OP_SET_WOL_ROL);
747         MLX5_SET(set_wol_rol_in, in, wol_mode_valid, 1);
748         MLX5_SET(set_wol_rol_in, in, wol_mode, wol_mode);
749         return mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
750 }
751 EXPORT_SYMBOL_GPL(mlx5_set_port_wol);
752
753 int mlx5_query_port_wol(struct mlx5_core_dev *mdev, u8 *wol_mode)
754 {
755         u32 in[MLX5_ST_SZ_DW(query_wol_rol_in)]   = {0};
756         u32 out[MLX5_ST_SZ_DW(query_wol_rol_out)] = {0};
757         int err;
758
759         MLX5_SET(query_wol_rol_in, in, opcode, MLX5_CMD_OP_QUERY_WOL_ROL);
760         err = mlx5_cmd_exec(mdev, in, sizeof(in), out, sizeof(out));
761         if (!err)
762                 *wol_mode = MLX5_GET(query_wol_rol_out, out, wol_mode);
763
764         return err;
765 }
766 EXPORT_SYMBOL_GPL(mlx5_query_port_wol);
767
768 static int mlx5_query_ports_check(struct mlx5_core_dev *mdev, u32 *out,
769                                   int outlen)
770 {
771         u32 in[MLX5_ST_SZ_DW(pcmr_reg)] = {0};
772
773         MLX5_SET(pcmr_reg, in, local_port, 1);
774         return mlx5_core_access_reg(mdev, in, sizeof(in), out,
775                                     outlen, MLX5_REG_PCMR, 0, 0);
776 }
777
778 static int mlx5_set_ports_check(struct mlx5_core_dev *mdev, u32 *in, int inlen)
779 {
780         u32 out[MLX5_ST_SZ_DW(pcmr_reg)];
781
782         return mlx5_core_access_reg(mdev, in, inlen, out,
783                                     sizeof(out), MLX5_REG_PCMR, 0, 1);
784 }
785
786 int mlx5_set_port_fcs(struct mlx5_core_dev *mdev, u8 enable)
787 {
788         u32 in[MLX5_ST_SZ_DW(pcmr_reg)] = {0};
789
790         MLX5_SET(pcmr_reg, in, local_port, 1);
791         MLX5_SET(pcmr_reg, in, fcs_chk, enable);
792         return mlx5_set_ports_check(mdev, in, sizeof(in));
793 }
794
795 void mlx5_query_port_fcs(struct mlx5_core_dev *mdev, bool *supported,
796                          bool *enabled)
797 {
798         u32 out[MLX5_ST_SZ_DW(pcmr_reg)];
799         /* Default values for FW which do not support MLX5_REG_PCMR */
800         *supported = false;
801         *enabled = true;
802
803         if (!MLX5_CAP_GEN(mdev, ports_check))
804                 return;
805
806         if (mlx5_query_ports_check(mdev, out, sizeof(out)))
807                 return;
808
809         *supported = !!(MLX5_GET(pcmr_reg, out, fcs_cap));
810         *enabled = !!(MLX5_GET(pcmr_reg, out, fcs_chk));
811 }
812
813 static const char *mlx5_pme_status[MLX5_MODULE_STATUS_NUM] = {
814         "Cable plugged",   /* MLX5_MODULE_STATUS_PLUGGED    = 0x1 */
815         "Cable unplugged", /* MLX5_MODULE_STATUS_UNPLUGGED  = 0x2 */
816         "Cable error",     /* MLX5_MODULE_STATUS_ERROR      = 0x3 */
817 };
818
819 static const char *mlx5_pme_error[MLX5_MODULE_EVENT_ERROR_NUM] = {
820         "Power budget exceeded",
821         "Long Range for non MLNX cable",
822         "Bus stuck(I2C or data shorted)",
823         "No EEPROM/retry timeout",
824         "Enforce part number list",
825         "Unknown identifier",
826         "High Temperature",
827         "Bad or shorted cable/module",
828         "Unknown status",
829 };
830
831 void mlx5_port_module_event(struct mlx5_core_dev *dev, struct mlx5_eqe *eqe)
832 {
833         enum port_module_event_status_type module_status;
834         enum port_module_event_error_type error_type;
835         struct mlx5_eqe_port_module *module_event_eqe;
836         struct mlx5_priv *priv = &dev->priv;
837         u8 module_num;
838
839         module_event_eqe = &eqe->data.port_module;
840         module_num = module_event_eqe->module;
841         module_status = module_event_eqe->module_status &
842                         PORT_MODULE_EVENT_MODULE_STATUS_MASK;
843         error_type = module_event_eqe->error_type &
844                      PORT_MODULE_EVENT_ERROR_TYPE_MASK;
845
846         if (module_status < MLX5_MODULE_STATUS_ERROR) {
847                 priv->pme_stats.status_counters[module_status - 1]++;
848         } else if (module_status == MLX5_MODULE_STATUS_ERROR) {
849                 if (error_type >= MLX5_MODULE_EVENT_ERROR_UNKNOWN)
850                         /* Unknown error type */
851                         error_type = MLX5_MODULE_EVENT_ERROR_UNKNOWN;
852                 priv->pme_stats.error_counters[error_type]++;
853         }
854
855         if (!printk_ratelimit())
856                 return;
857
858         if (module_status < MLX5_MODULE_STATUS_ERROR)
859                 mlx5_core_info(dev,
860                                "Port module event: module %u, %s\n",
861                                module_num, mlx5_pme_status[module_status - 1]);
862
863         else if (module_status == MLX5_MODULE_STATUS_ERROR)
864                 mlx5_core_info(dev,
865                                "Port module event[error]: module %u, %s, %s\n",
866                                module_num, mlx5_pme_status[module_status - 1],
867                                mlx5_pme_error[error_type]);
868 }