2 * Copyright (c) 2013 - 2017 Intel Corporation. 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
32 #include <linux/debugfs.h>
33 #include <linux/seq_file.h>
34 #include <linux/kernel.h>
35 #include <linux/export.h>
38 #include "qib_verbs.h"
39 #include "qib_debugfs.h"
41 static struct dentry
*qib_dbg_root
;
43 #define DEBUGFS_FILE(name) \
44 static const struct seq_operations _##name##_seq_ops = { \
45 .start = _##name##_seq_start, \
46 .next = _##name##_seq_next, \
47 .stop = _##name##_seq_stop, \
48 .show = _##name##_seq_show \
50 static int _##name##_open(struct inode *inode, struct file *s) \
52 struct seq_file *seq; \
54 ret = seq_open(s, &_##name##_seq_ops); \
57 seq = s->private_data; \
58 seq->private = inode->i_private; \
61 static const struct file_operations _##name##_file_ops = { \
62 .owner = THIS_MODULE, \
63 .open = _##name##_open, \
65 .llseek = seq_lseek, \
66 .release = seq_release \
69 #define DEBUGFS_FILE_CREATE(name) \
72 ent = debugfs_create_file(#name , 0400, ibd->qib_ibdev_dbg, \
73 ibd, &_##name##_file_ops); \
75 pr_warn("create of " #name " failed\n"); \
78 static void *_opcode_stats_seq_start(struct seq_file
*s
, loff_t
*pos
)
80 struct qib_opcode_stats_perctx
*opstats
;
82 if (*pos
>= ARRAY_SIZE(opstats
->stats
))
87 static void *_opcode_stats_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
89 struct qib_opcode_stats_perctx
*opstats
;
92 if (*pos
>= ARRAY_SIZE(opstats
->stats
))
98 static void _opcode_stats_seq_stop(struct seq_file
*s
, void *v
)
100 /* nothing allocated */
103 static int _opcode_stats_seq_show(struct seq_file
*s
, void *v
)
107 u64 n_packets
= 0, n_bytes
= 0;
108 struct qib_ibdev
*ibd
= (struct qib_ibdev
*)s
->private;
109 struct qib_devdata
*dd
= dd_from_dev(ibd
);
111 for (j
= 0; j
< dd
->first_user_ctxt
; j
++) {
114 n_packets
+= dd
->rcd
[j
]->opstats
->stats
[i
].n_packets
;
115 n_bytes
+= dd
->rcd
[j
]->opstats
->stats
[i
].n_bytes
;
117 if (!n_packets
&& !n_bytes
)
119 seq_printf(s
, "%02llx %llu/%llu\n", i
,
120 (unsigned long long) n_packets
,
121 (unsigned long long) n_bytes
);
126 DEBUGFS_FILE(opcode_stats
)
128 static void *_ctx_stats_seq_start(struct seq_file
*s
, loff_t
*pos
)
130 struct qib_ibdev
*ibd
= (struct qib_ibdev
*)s
->private;
131 struct qib_devdata
*dd
= dd_from_dev(ibd
);
134 return SEQ_START_TOKEN
;
135 if (*pos
>= dd
->first_user_ctxt
)
140 static void *_ctx_stats_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
142 struct qib_ibdev
*ibd
= (struct qib_ibdev
*)s
->private;
143 struct qib_devdata
*dd
= dd_from_dev(ibd
);
145 if (v
== SEQ_START_TOKEN
)
149 if (*pos
>= dd
->first_user_ctxt
)
154 static void _ctx_stats_seq_stop(struct seq_file
*s
, void *v
)
156 /* nothing allocated */
159 static int _ctx_stats_seq_show(struct seq_file
*s
, void *v
)
164 struct qib_ibdev
*ibd
= (struct qib_ibdev
*)s
->private;
165 struct qib_devdata
*dd
= dd_from_dev(ibd
);
167 if (v
== SEQ_START_TOKEN
) {
168 seq_puts(s
, "Ctx:npkts\n");
178 for (j
= 0; j
< ARRAY_SIZE(dd
->rcd
[i
]->opstats
->stats
); j
++)
179 n_packets
+= dd
->rcd
[i
]->opstats
->stats
[j
].n_packets
;
184 seq_printf(s
, " %llu:%llu\n", i
, n_packets
);
188 DEBUGFS_FILE(ctx_stats
)
190 static void *_qp_stats_seq_start(struct seq_file
*s
, loff_t
*pos
)
193 struct rvt_qp_iter
*iter
;
196 iter
= rvt_qp_iter_init(s
->private, 0, NULL
);
198 /* stop calls rcu_read_unlock */
205 if (rvt_qp_iter_next(iter
)) {
214 static void *_qp_stats_seq_next(struct seq_file
*s
, void *iter_ptr
,
218 struct rvt_qp_iter
*iter
= iter_ptr
;
222 if (rvt_qp_iter_next(iter
)) {
230 static void _qp_stats_seq_stop(struct seq_file
*s
, void *iter_ptr
)
236 static int _qp_stats_seq_show(struct seq_file
*s
, void *iter_ptr
)
238 struct rvt_qp_iter
*iter
= iter_ptr
;
243 qib_qp_iter_print(s
, iter
);
248 DEBUGFS_FILE(qp_stats
)
250 void qib_dbg_ibdev_init(struct qib_ibdev
*ibd
)
254 snprintf(name
, sizeof(name
), "qib%d", dd_from_dev(ibd
)->unit
);
255 ibd
->qib_ibdev_dbg
= debugfs_create_dir(name
, qib_dbg_root
);
256 if (!ibd
->qib_ibdev_dbg
) {
257 pr_warn("create of %s failed\n", name
);
260 DEBUGFS_FILE_CREATE(opcode_stats
);
261 DEBUGFS_FILE_CREATE(ctx_stats
);
262 DEBUGFS_FILE_CREATE(qp_stats
);
265 void qib_dbg_ibdev_exit(struct qib_ibdev
*ibd
)
269 debugfs_remove_recursive(ibd
->qib_ibdev_dbg
);
271 ibd
->qib_ibdev_dbg
= NULL
;
274 void qib_dbg_init(void)
276 qib_dbg_root
= debugfs_create_dir(QIB_DRV_NAME
, NULL
);
278 pr_warn("init of debugfs failed\n");
281 void qib_dbg_exit(void)
283 debugfs_remove_recursive(qib_dbg_root
);