]>
Commit | Line | Data |
---|---|---|
779e6e1c JG |
1 | /* |
2 | * drivers/s390/cio/qdio_debug.c | |
3 | * | |
3f09bb89 | 4 | * Copyright IBM Corp. 2008,2009 |
779e6e1c JG |
5 | * |
6 | * Author: Jan Glauber (jang@linux.vnet.ibm.com) | |
7 | */ | |
779e6e1c JG |
8 | #include <linux/seq_file.h> |
9 | #include <linux/debugfs.h> | |
3a4c5d59 HC |
10 | #include <linux/uaccess.h> |
11 | #include <linux/export.h> | |
779e6e1c JG |
12 | #include <asm/debug.h> |
13 | #include "qdio_debug.h" | |
14 | #include "qdio.h" | |
15 | ||
16 | debug_info_t *qdio_dbf_setup; | |
22f99347 | 17 | debug_info_t *qdio_dbf_error; |
779e6e1c JG |
18 | |
19 | static struct dentry *debugfs_root; | |
3f09bb89 | 20 | #define QDIO_DEBUGFS_NAME_LEN 10 |
779e6e1c | 21 | |
22f99347 JG |
22 | void qdio_allocate_dbf(struct qdio_initialize *init_data, |
23 | struct qdio_irq *irq_ptr) | |
779e6e1c | 24 | { |
22f99347 JG |
25 | char text[20]; |
26 | ||
27 | DBF_EVENT("qfmt:%1d", init_data->q_format); | |
28 | DBF_HEX(init_data->adapter_name, 8); | |
29 | DBF_EVENT("qpff%4x", init_data->qib_param_field_format); | |
30 | DBF_HEX(&init_data->qib_param_field, sizeof(void *)); | |
31 | DBF_HEX(&init_data->input_slib_elements, sizeof(void *)); | |
32 | DBF_HEX(&init_data->output_slib_elements, sizeof(void *)); | |
33 | DBF_EVENT("niq:%1d noq:%1d", init_data->no_input_qs, | |
34 | init_data->no_output_qs); | |
35 | DBF_HEX(&init_data->input_handler, sizeof(void *)); | |
36 | DBF_HEX(&init_data->output_handler, sizeof(void *)); | |
37 | DBF_HEX(&init_data->int_parm, sizeof(long)); | |
22f99347 JG |
38 | DBF_HEX(&init_data->input_sbal_addr_array, sizeof(void *)); |
39 | DBF_HEX(&init_data->output_sbal_addr_array, sizeof(void *)); | |
40 | DBF_EVENT("irq:%8lx", (unsigned long)irq_ptr); | |
41 | ||
42 | /* allocate trace view for the interface */ | |
43 | snprintf(text, 20, "qdio_%s", dev_name(&init_data->cdev->dev)); | |
44 | irq_ptr->debug_area = debug_register(text, 2, 1, 16); | |
45 | debug_register_view(irq_ptr->debug_area, &debug_hex_ascii_view); | |
46 | debug_set_level(irq_ptr->debug_area, DBF_WARN); | |
47 | DBF_DEV_EVENT(DBF_ERR, irq_ptr, "dbf created"); | |
779e6e1c JG |
48 | } |
49 | ||
50 | static int qstat_show(struct seq_file *m, void *v) | |
51 | { | |
52 | unsigned char state; | |
53 | struct qdio_q *q = m->private; | |
54 | int i; | |
55 | ||
56 | if (!q) | |
57 | return 0; | |
58 | ||
6486cda6 JG |
59 | seq_printf(m, "DSCI: %d nr_used: %d\n", |
60 | *(u32 *)q->irq_ptr->dsci, atomic_read(&q->nr_buf_used)); | |
d36deae7 JG |
61 | seq_printf(m, "ftc: %d last_move: %d\n", |
62 | q->first_to_check, q->last_move); | |
63 | if (q->is_input_q) { | |
64 | seq_printf(m, "polling: %d ack start: %d ack count: %d\n", | |
65 | q->u.in.polling, q->u.in.ack_start, | |
66 | q->u.in.ack_count); | |
67 | seq_printf(m, "IRQs disabled: %u\n", | |
68 | test_bit(QDIO_QUEUE_IRQS_DISABLED, | |
69 | &q->u.in.queue_irq_state)); | |
70 | } | |
d307297f | 71 | seq_printf(m, "SBAL states:\n"); |
50f769df | 72 | seq_printf(m, "|0 |8 |16 |24 |32 |40 |48 |56 63|\n"); |
779e6e1c | 73 | |
779e6e1c | 74 | for (i = 0; i < QDIO_MAX_BUFFERS_PER_Q; i++) { |
60b5df2f | 75 | debug_get_buf_state(q, i, &state); |
779e6e1c JG |
76 | switch (state) { |
77 | case SLSB_P_INPUT_NOT_INIT: | |
78 | case SLSB_P_OUTPUT_NOT_INIT: | |
79 | seq_printf(m, "N"); | |
80 | break; | |
104ea556 | 81 | case SLSB_P_OUTPUT_PENDING: |
82 | seq_printf(m, "P"); | |
83 | break; | |
779e6e1c JG |
84 | case SLSB_P_INPUT_PRIMED: |
85 | case SLSB_CU_OUTPUT_PRIMED: | |
86 | seq_printf(m, "+"); | |
87 | break; | |
88 | case SLSB_P_INPUT_ACK: | |
89 | seq_printf(m, "A"); | |
90 | break; | |
91 | case SLSB_P_INPUT_ERROR: | |
92 | case SLSB_P_OUTPUT_ERROR: | |
93 | seq_printf(m, "x"); | |
94 | break; | |
95 | case SLSB_CU_INPUT_EMPTY: | |
96 | case SLSB_P_OUTPUT_EMPTY: | |
97 | seq_printf(m, "-"); | |
98 | break; | |
99 | case SLSB_P_INPUT_HALTED: | |
100 | case SLSB_P_OUTPUT_HALTED: | |
101 | seq_printf(m, "."); | |
102 | break; | |
103 | default: | |
104 | seq_printf(m, "?"); | |
105 | } | |
106 | if (i == 63) | |
107 | seq_printf(m, "\n"); | |
108 | } | |
109 | seq_printf(m, "\n"); | |
50f769df | 110 | seq_printf(m, "|64 |72 |80 |88 |96 |104 |112 | 127|\n"); |
d307297f JG |
111 | |
112 | seq_printf(m, "\nSBAL statistics:"); | |
113 | if (!q->irq_ptr->perf_stat_enabled) { | |
114 | seq_printf(m, " disabled\n"); | |
115 | return 0; | |
116 | } | |
117 | ||
118 | seq_printf(m, "\n1 2.. 4.. 8.. " | |
119 | "16.. 32.. 64.. 127\n"); | |
120 | for (i = 0; i < ARRAY_SIZE(q->q_stats.nr_sbals); i++) | |
121 | seq_printf(m, "%-10u ", q->q_stats.nr_sbals[i]); | |
122 | seq_printf(m, "\nError NOP Total\n%-10u %-10u %-10u\n\n", | |
123 | q->q_stats.nr_sbal_error, q->q_stats.nr_sbal_nop, | |
124 | q->q_stats.nr_sbal_total); | |
779e6e1c JG |
125 | return 0; |
126 | } | |
127 | ||
779e6e1c JG |
128 | static int qstat_seq_open(struct inode *inode, struct file *filp) |
129 | { | |
130 | return single_open(filp, qstat_show, | |
131 | filp->f_path.dentry->d_inode->i_private); | |
132 | } | |
133 | ||
828c0950 | 134 | static const struct file_operations debugfs_fops = { |
779e6e1c JG |
135 | .owner = THIS_MODULE, |
136 | .open = qstat_seq_open, | |
137 | .read = seq_read, | |
779e6e1c JG |
138 | .llseek = seq_lseek, |
139 | .release = single_release, | |
140 | }; | |
141 | ||
6486cda6 JG |
142 | static char *qperf_names[] = { |
143 | "Assumed adapter interrupts", | |
144 | "QDIO interrupts", | |
145 | "Requested PCIs", | |
146 | "Inbound tasklet runs", | |
147 | "Inbound tasklet resched", | |
148 | "Inbound tasklet resched2", | |
149 | "Outbound tasklet runs", | |
150 | "SIGA read", | |
151 | "SIGA write", | |
152 | "SIGA sync", | |
153 | "Inbound calls", | |
154 | "Inbound handler", | |
155 | "Inbound stop_polling", | |
156 | "Inbound queue full", | |
157 | "Outbound calls", | |
158 | "Outbound handler", | |
0195843b | 159 | "Outbound queue full", |
6486cda6 JG |
160 | "Outbound fast_requeue", |
161 | "Outbound target_full", | |
162 | "QEBSM eqbs", | |
163 | "QEBSM eqbs partial", | |
164 | "QEBSM sqbs", | |
d36deae7 JG |
165 | "QEBSM sqbs partial", |
166 | "Discarded interrupts" | |
6486cda6 JG |
167 | }; |
168 | ||
169 | static int qperf_show(struct seq_file *m, void *v) | |
170 | { | |
171 | struct qdio_irq *irq_ptr = m->private; | |
172 | unsigned int *stat; | |
173 | int i; | |
174 | ||
175 | if (!irq_ptr) | |
176 | return 0; | |
177 | if (!irq_ptr->perf_stat_enabled) { | |
178 | seq_printf(m, "disabled\n"); | |
179 | return 0; | |
180 | } | |
181 | stat = (unsigned int *)&irq_ptr->perf_stat; | |
182 | ||
183 | for (i = 0; i < ARRAY_SIZE(qperf_names); i++) | |
184 | seq_printf(m, "%26s:\t%u\n", | |
185 | qperf_names[i], *(stat + i)); | |
186 | return 0; | |
187 | } | |
188 | ||
189 | static ssize_t qperf_seq_write(struct file *file, const char __user *ubuf, | |
190 | size_t count, loff_t *off) | |
191 | { | |
192 | struct seq_file *seq = file->private_data; | |
193 | struct qdio_irq *irq_ptr = seq->private; | |
d307297f | 194 | struct qdio_q *q; |
6486cda6 | 195 | unsigned long val; |
d307297f | 196 | int ret, i; |
6486cda6 JG |
197 | |
198 | if (!irq_ptr) | |
199 | return 0; | |
af6df871 PH |
200 | |
201 | ret = kstrtoul_from_user(ubuf, count, 10, &val); | |
202 | if (ret) | |
6486cda6 JG |
203 | return ret; |
204 | ||
205 | switch (val) { | |
206 | case 0: | |
207 | irq_ptr->perf_stat_enabled = 0; | |
208 | memset(&irq_ptr->perf_stat, 0, sizeof(irq_ptr->perf_stat)); | |
d307297f JG |
209 | for_each_input_queue(irq_ptr, q, i) |
210 | memset(&q->q_stats, 0, sizeof(q->q_stats)); | |
211 | for_each_output_queue(irq_ptr, q, i) | |
212 | memset(&q->q_stats, 0, sizeof(q->q_stats)); | |
6486cda6 JG |
213 | break; |
214 | case 1: | |
215 | irq_ptr->perf_stat_enabled = 1; | |
216 | break; | |
217 | } | |
218 | return count; | |
219 | } | |
220 | ||
221 | static int qperf_seq_open(struct inode *inode, struct file *filp) | |
222 | { | |
223 | return single_open(filp, qperf_show, | |
224 | filp->f_path.dentry->d_inode->i_private); | |
225 | } | |
226 | ||
227 | static struct file_operations debugfs_perf_fops = { | |
228 | .owner = THIS_MODULE, | |
229 | .open = qperf_seq_open, | |
230 | .read = seq_read, | |
231 | .write = qperf_seq_write, | |
232 | .llseek = seq_lseek, | |
233 | .release = single_release, | |
234 | }; | |
779e6e1c JG |
235 | static void setup_debugfs_entry(struct qdio_q *q, struct ccw_device *cdev) |
236 | { | |
2c780914 | 237 | char name[QDIO_DEBUGFS_NAME_LEN]; |
779e6e1c | 238 | |
3f09bb89 | 239 | snprintf(name, QDIO_DEBUGFS_NAME_LEN, "%s_%d", |
2c780914 JG |
240 | q->is_input_q ? "input" : "output", |
241 | q->nr); | |
3f09bb89 JG |
242 | q->debugfs_q = debugfs_create_file(name, S_IFREG | S_IRUGO | S_IWUSR, |
243 | q->irq_ptr->debugfs_dev, q, &debugfs_fops); | |
244 | if (IS_ERR(q->debugfs_q)) | |
245 | q->debugfs_q = NULL; | |
779e6e1c JG |
246 | } |
247 | ||
248 | void qdio_setup_debug_entries(struct qdio_irq *irq_ptr, struct ccw_device *cdev) | |
249 | { | |
250 | struct qdio_q *q; | |
251 | int i; | |
252 | ||
3f09bb89 JG |
253 | irq_ptr->debugfs_dev = debugfs_create_dir(dev_name(&cdev->dev), |
254 | debugfs_root); | |
255 | if (IS_ERR(irq_ptr->debugfs_dev)) | |
256 | irq_ptr->debugfs_dev = NULL; | |
6486cda6 JG |
257 | |
258 | irq_ptr->debugfs_perf = debugfs_create_file("statistics", | |
259 | S_IFREG | S_IRUGO | S_IWUSR, | |
260 | irq_ptr->debugfs_dev, irq_ptr, | |
261 | &debugfs_perf_fops); | |
262 | if (IS_ERR(irq_ptr->debugfs_perf)) | |
263 | irq_ptr->debugfs_perf = NULL; | |
264 | ||
779e6e1c JG |
265 | for_each_input_queue(irq_ptr, q, i) |
266 | setup_debugfs_entry(q, cdev); | |
267 | for_each_output_queue(irq_ptr, q, i) | |
268 | setup_debugfs_entry(q, cdev); | |
779e6e1c JG |
269 | } |
270 | ||
271 | void qdio_shutdown_debug_entries(struct qdio_irq *irq_ptr, struct ccw_device *cdev) | |
272 | { | |
273 | struct qdio_q *q; | |
274 | int i; | |
275 | ||
779e6e1c | 276 | for_each_input_queue(irq_ptr, q, i) |
3f09bb89 | 277 | debugfs_remove(q->debugfs_q); |
779e6e1c | 278 | for_each_output_queue(irq_ptr, q, i) |
3f09bb89 | 279 | debugfs_remove(q->debugfs_q); |
6486cda6 | 280 | debugfs_remove(irq_ptr->debugfs_perf); |
3f09bb89 | 281 | debugfs_remove(irq_ptr->debugfs_dev); |
779e6e1c JG |
282 | } |
283 | ||
284 | int __init qdio_debug_init(void) | |
285 | { | |
3f09bb89 | 286 | debugfs_root = debugfs_create_dir("qdio", NULL); |
22f99347 JG |
287 | |
288 | qdio_dbf_setup = debug_register("qdio_setup", 16, 1, 16); | |
289 | debug_register_view(qdio_dbf_setup, &debug_hex_ascii_view); | |
290 | debug_set_level(qdio_dbf_setup, DBF_INFO); | |
291 | DBF_EVENT("dbf created\n"); | |
292 | ||
293 | qdio_dbf_error = debug_register("qdio_error", 4, 1, 16); | |
294 | debug_register_view(qdio_dbf_error, &debug_hex_ascii_view); | |
295 | debug_set_level(qdio_dbf_error, DBF_INFO); | |
296 | DBF_ERROR("dbf created\n"); | |
297 | return 0; | |
779e6e1c JG |
298 | } |
299 | ||
300 | void qdio_debug_exit(void) | |
301 | { | |
302 | debugfs_remove(debugfs_root); | |
22f99347 JG |
303 | if (qdio_dbf_setup) |
304 | debug_unregister(qdio_dbf_setup); | |
305 | if (qdio_dbf_error) | |
306 | debug_unregister(qdio_dbf_error); | |
779e6e1c | 307 | } |