Merge tag 'perf-for-bpf-2020-05-06' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / drivers / net / ethernet / mellanox / mlx5 / core / debugfs.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/debugfs.h>
35 #include <linux/mlx5/qp.h>
36 #include <linux/mlx5/cq.h>
37 #include <linux/mlx5/driver.h>
38 #include "mlx5_core.h"
39 #include "lib/eq.h"
40
41 enum {
42         QP_PID,
43         QP_STATE,
44         QP_XPORT,
45         QP_MTU,
46         QP_N_RECV,
47         QP_RECV_SZ,
48         QP_N_SEND,
49         QP_LOG_PG_SZ,
50         QP_RQPN,
51 };
52
53 static char *qp_fields[] = {
54         [QP_PID]        = "pid",
55         [QP_STATE]      = "state",
56         [QP_XPORT]      = "transport",
57         [QP_MTU]        = "mtu",
58         [QP_N_RECV]     = "num_recv",
59         [QP_RECV_SZ]    = "rcv_wqe_sz",
60         [QP_N_SEND]     = "num_send",
61         [QP_LOG_PG_SZ]  = "log2_page_sz",
62         [QP_RQPN]       = "remote_qpn",
63 };
64
65 enum {
66         EQ_NUM_EQES,
67         EQ_INTR,
68         EQ_LOG_PG_SZ,
69 };
70
71 static char *eq_fields[] = {
72         [EQ_NUM_EQES]   = "num_eqes",
73         [EQ_INTR]       = "intr",
74         [EQ_LOG_PG_SZ]  = "log_page_size",
75 };
76
77 enum {
78         CQ_PID,
79         CQ_NUM_CQES,
80         CQ_LOG_PG_SZ,
81 };
82
83 static char *cq_fields[] = {
84         [CQ_PID]        = "pid",
85         [CQ_NUM_CQES]   = "num_cqes",
86         [CQ_LOG_PG_SZ]  = "log_page_size",
87 };
88
89 struct dentry *mlx5_debugfs_root;
90 EXPORT_SYMBOL(mlx5_debugfs_root);
91
92 void mlx5_register_debugfs(void)
93 {
94         mlx5_debugfs_root = debugfs_create_dir("mlx5", NULL);
95 }
96
97 void mlx5_unregister_debugfs(void)
98 {
99         debugfs_remove(mlx5_debugfs_root);
100 }
101
102 void mlx5_qp_debugfs_init(struct mlx5_core_dev *dev)
103 {
104         dev->priv.qp_debugfs = debugfs_create_dir("QPs",  dev->priv.dbg_root);
105 }
106 EXPORT_SYMBOL(mlx5_qp_debugfs_init);
107
108 void mlx5_qp_debugfs_cleanup(struct mlx5_core_dev *dev)
109 {
110         debugfs_remove_recursive(dev->priv.qp_debugfs);
111 }
112 EXPORT_SYMBOL(mlx5_qp_debugfs_cleanup);
113
114 void mlx5_eq_debugfs_init(struct mlx5_core_dev *dev)
115 {
116         dev->priv.eq_debugfs = debugfs_create_dir("EQs",  dev->priv.dbg_root);
117 }
118
119 void mlx5_eq_debugfs_cleanup(struct mlx5_core_dev *dev)
120 {
121         debugfs_remove_recursive(dev->priv.eq_debugfs);
122 }
123
124 static ssize_t average_read(struct file *filp, char __user *buf, size_t count,
125                             loff_t *pos)
126 {
127         struct mlx5_cmd_stats *stats;
128         u64 field = 0;
129         int ret;
130         char tbuf[22];
131
132         stats = filp->private_data;
133         spin_lock_irq(&stats->lock);
134         if (stats->n)
135                 field = div64_u64(stats->sum, stats->n);
136         spin_unlock_irq(&stats->lock);
137         ret = snprintf(tbuf, sizeof(tbuf), "%llu\n", field);
138         return simple_read_from_buffer(buf, count, pos, tbuf, ret);
139 }
140
141 static ssize_t average_write(struct file *filp, const char __user *buf,
142                              size_t count, loff_t *pos)
143 {
144         struct mlx5_cmd_stats *stats;
145
146         stats = filp->private_data;
147         spin_lock_irq(&stats->lock);
148         stats->sum = 0;
149         stats->n = 0;
150         spin_unlock_irq(&stats->lock);
151
152         *pos += count;
153
154         return count;
155 }
156
157 static const struct file_operations stats_fops = {
158         .owner  = THIS_MODULE,
159         .open   = simple_open,
160         .read   = average_read,
161         .write  = average_write,
162 };
163
164 void mlx5_cmdif_debugfs_init(struct mlx5_core_dev *dev)
165 {
166         struct mlx5_cmd_stats *stats;
167         struct dentry **cmd;
168         const char *namep;
169         int i;
170
171         cmd = &dev->priv.cmdif_debugfs;
172         *cmd = debugfs_create_dir("commands", dev->priv.dbg_root);
173
174         for (i = 0; i < ARRAY_SIZE(dev->cmd.stats); i++) {
175                 stats = &dev->cmd.stats[i];
176                 namep = mlx5_command_str(i);
177                 if (strcmp(namep, "unknown command opcode")) {
178                         stats->root = debugfs_create_dir(namep, *cmd);
179
180                         debugfs_create_file("average", 0400, stats->root, stats,
181                                             &stats_fops);
182                         debugfs_create_u64("n", 0400, stats->root, &stats->n);
183                 }
184         }
185 }
186
187 void mlx5_cmdif_debugfs_cleanup(struct mlx5_core_dev *dev)
188 {
189         debugfs_remove_recursive(dev->priv.cmdif_debugfs);
190 }
191
192 void mlx5_cq_debugfs_init(struct mlx5_core_dev *dev)
193 {
194         dev->priv.cq_debugfs = debugfs_create_dir("CQs",  dev->priv.dbg_root);
195 }
196
197 void mlx5_cq_debugfs_cleanup(struct mlx5_core_dev *dev)
198 {
199         debugfs_remove_recursive(dev->priv.cq_debugfs);
200 }
201
202 static u64 qp_read_field(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp,
203                          int index, int *is_str)
204 {
205         u32 out[MLX5_ST_SZ_BYTES(query_qp_out)] = {};
206         u32 in[MLX5_ST_SZ_DW(query_qp_in)] = {};
207         u64 param = 0;
208         int state;
209         u32 *qpc;
210         int err;
211
212         MLX5_SET(query_qp_in, in, opcode, MLX5_CMD_OP_QUERY_QP);
213         MLX5_SET(query_qp_in, in, qpn, qp->qpn);
214         err = mlx5_cmd_exec_inout(dev, query_qp, in, out);
215         if (err)
216                 return 0;
217
218         *is_str = 0;
219
220         qpc = MLX5_ADDR_OF(query_qp_out, out, qpc);
221         switch (index) {
222         case QP_PID:
223                 param = qp->pid;
224                 break;
225         case QP_STATE:
226                 state = MLX5_GET(qpc, qpc, state);
227                 param = (unsigned long)mlx5_qp_state_str(state);
228                 *is_str = 1;
229                 break;
230         case QP_XPORT:
231                 param = (unsigned long)mlx5_qp_type_str(MLX5_GET(qpc, qpc, st));
232                 *is_str = 1;
233                 break;
234         case QP_MTU:
235                 switch (MLX5_GET(qpc, qpc, mtu)) {
236                 case IB_MTU_256:
237                         param = 256;
238                         break;
239                 case IB_MTU_512:
240                         param = 512;
241                         break;
242                 case IB_MTU_1024:
243                         param = 1024;
244                         break;
245                 case IB_MTU_2048:
246                         param = 2048;
247                         break;
248                 case IB_MTU_4096:
249                         param = 4096;
250                         break;
251                 default:
252                         param = 0;
253                 }
254                 break;
255         case QP_N_RECV:
256                 param = 1 << MLX5_GET(qpc, qpc, log_rq_size);
257                 break;
258         case QP_RECV_SZ:
259                 param = 1 << (MLX5_GET(qpc, qpc, log_rq_stride) + 4);
260                 break;
261         case QP_N_SEND:
262                 if (!MLX5_GET(qpc, qpc, no_sq))
263                         param = 1 << MLX5_GET(qpc, qpc, log_sq_size);
264                 break;
265         case QP_LOG_PG_SZ:
266                 param = MLX5_GET(qpc, qpc, log_page_size) + 12;
267                 break;
268         case QP_RQPN:
269                 param = MLX5_GET(qpc, qpc, remote_qpn);
270                 break;
271         }
272
273         return param;
274 }
275
276 static u64 eq_read_field(struct mlx5_core_dev *dev, struct mlx5_eq *eq,
277                          int index)
278 {
279         int outlen = MLX5_ST_SZ_BYTES(query_eq_out);
280         u32 in[MLX5_ST_SZ_DW(query_eq_in)] = {};
281         u64 param = 0;
282         void *ctx;
283         u32 *out;
284         int err;
285
286         out = kzalloc(outlen, GFP_KERNEL);
287         if (!out)
288                 return param;
289
290         MLX5_SET(query_eq_in, in, opcode, MLX5_CMD_OP_QUERY_EQ);
291         MLX5_SET(query_eq_in, in, eq_number, eq->eqn);
292         err = mlx5_cmd_exec_inout(dev, query_eq, in, out);
293         if (err) {
294                 mlx5_core_warn(dev, "failed to query eq\n");
295                 goto out;
296         }
297         ctx = MLX5_ADDR_OF(query_eq_out, out, eq_context_entry);
298
299         switch (index) {
300         case EQ_NUM_EQES:
301                 param = 1 << MLX5_GET(eqc, ctx, log_eq_size);
302                 break;
303         case EQ_INTR:
304                 param = MLX5_GET(eqc, ctx, intr);
305                 break;
306         case EQ_LOG_PG_SZ:
307                 param = MLX5_GET(eqc, ctx, log_page_size) + 12;
308                 break;
309         }
310
311 out:
312         kfree(out);
313         return param;
314 }
315
316 static u64 cq_read_field(struct mlx5_core_dev *dev, struct mlx5_core_cq *cq,
317                          int index)
318 {
319         int outlen = MLX5_ST_SZ_BYTES(query_cq_out);
320         u64 param = 0;
321         void *ctx;
322         u32 *out;
323         int err;
324
325         out = kvzalloc(outlen, GFP_KERNEL);
326         if (!out)
327                 return param;
328
329         err = mlx5_core_query_cq(dev, cq, out);
330         if (err) {
331                 mlx5_core_warn(dev, "failed to query cq\n");
332                 goto out;
333         }
334         ctx = MLX5_ADDR_OF(query_cq_out, out, cq_context);
335
336         switch (index) {
337         case CQ_PID:
338                 param = cq->pid;
339                 break;
340         case CQ_NUM_CQES:
341                 param = 1 << MLX5_GET(cqc, ctx, log_cq_size);
342                 break;
343         case CQ_LOG_PG_SZ:
344                 param = MLX5_GET(cqc, ctx, log_page_size);
345                 break;
346         }
347
348 out:
349         kvfree(out);
350         return param;
351 }
352
353 static ssize_t dbg_read(struct file *filp, char __user *buf, size_t count,
354                         loff_t *pos)
355 {
356         struct mlx5_field_desc *desc;
357         struct mlx5_rsc_debug *d;
358         char tbuf[18];
359         int is_str = 0;
360         u64 field;
361         int ret;
362
363         desc = filp->private_data;
364         d = (void *)(desc - desc->i) - sizeof(*d);
365         switch (d->type) {
366         case MLX5_DBG_RSC_QP:
367                 field = qp_read_field(d->dev, d->object, desc->i, &is_str);
368                 break;
369
370         case MLX5_DBG_RSC_EQ:
371                 field = eq_read_field(d->dev, d->object, desc->i);
372                 break;
373
374         case MLX5_DBG_RSC_CQ:
375                 field = cq_read_field(d->dev, d->object, desc->i);
376                 break;
377
378         default:
379                 mlx5_core_warn(d->dev, "invalid resource type %d\n", d->type);
380                 return -EINVAL;
381         }
382
383         if (is_str)
384                 ret = snprintf(tbuf, sizeof(tbuf), "%s\n", (const char *)(unsigned long)field);
385         else
386                 ret = snprintf(tbuf, sizeof(tbuf), "0x%llx\n", field);
387
388         return simple_read_from_buffer(buf, count, pos, tbuf, ret);
389 }
390
391 static const struct file_operations fops = {
392         .owner  = THIS_MODULE,
393         .open   = simple_open,
394         .read   = dbg_read,
395 };
396
397 static int add_res_tree(struct mlx5_core_dev *dev, enum dbg_rsc_type type,
398                         struct dentry *root, struct mlx5_rsc_debug **dbg,
399                         int rsn, char **field, int nfile, void *data)
400 {
401         struct mlx5_rsc_debug *d;
402         char resn[32];
403         int i;
404
405         d = kzalloc(struct_size(d, fields, nfile), GFP_KERNEL);
406         if (!d)
407                 return -ENOMEM;
408
409         d->dev = dev;
410         d->object = data;
411         d->type = type;
412         sprintf(resn, "0x%x", rsn);
413         d->root = debugfs_create_dir(resn,  root);
414
415         for (i = 0; i < nfile; i++) {
416                 d->fields[i].i = i;
417                 debugfs_create_file(field[i], 0400, d->root, &d->fields[i],
418                                     &fops);
419         }
420         *dbg = d;
421
422         return 0;
423 }
424
425 static void rem_res_tree(struct mlx5_rsc_debug *d)
426 {
427         debugfs_remove_recursive(d->root);
428         kfree(d);
429 }
430
431 int mlx5_debug_qp_add(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp)
432 {
433         int err;
434
435         if (!mlx5_debugfs_root)
436                 return 0;
437
438         err = add_res_tree(dev, MLX5_DBG_RSC_QP, dev->priv.qp_debugfs,
439                            &qp->dbg, qp->qpn, qp_fields,
440                            ARRAY_SIZE(qp_fields), qp);
441         if (err)
442                 qp->dbg = NULL;
443
444         return err;
445 }
446 EXPORT_SYMBOL(mlx5_debug_qp_add);
447
448 void mlx5_debug_qp_remove(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp)
449 {
450         if (!mlx5_debugfs_root)
451                 return;
452
453         if (qp->dbg)
454                 rem_res_tree(qp->dbg);
455 }
456 EXPORT_SYMBOL(mlx5_debug_qp_remove);
457
458 int mlx5_debug_eq_add(struct mlx5_core_dev *dev, struct mlx5_eq *eq)
459 {
460         int err;
461
462         if (!mlx5_debugfs_root)
463                 return 0;
464
465         err = add_res_tree(dev, MLX5_DBG_RSC_EQ, dev->priv.eq_debugfs,
466                            &eq->dbg, eq->eqn, eq_fields,
467                            ARRAY_SIZE(eq_fields), eq);
468         if (err)
469                 eq->dbg = NULL;
470
471         return err;
472 }
473
474 void mlx5_debug_eq_remove(struct mlx5_core_dev *dev, struct mlx5_eq *eq)
475 {
476         if (!mlx5_debugfs_root)
477                 return;
478
479         if (eq->dbg)
480                 rem_res_tree(eq->dbg);
481 }
482
483 int mlx5_debug_cq_add(struct mlx5_core_dev *dev, struct mlx5_core_cq *cq)
484 {
485         int err;
486
487         if (!mlx5_debugfs_root)
488                 return 0;
489
490         err = add_res_tree(dev, MLX5_DBG_RSC_CQ, dev->priv.cq_debugfs,
491                            &cq->dbg, cq->cqn, cq_fields,
492                            ARRAY_SIZE(cq_fields), cq);
493         if (err)
494                 cq->dbg = NULL;
495
496         return err;
497 }
498
499 void mlx5_debug_cq_remove(struct mlx5_core_dev *dev, struct mlx5_core_cq *cq)
500 {
501         if (!mlx5_debugfs_root)
502                 return;
503
504         if (cq->dbg)
505                 rem_res_tree(cq->dbg);
506 }